@import "tailwindcss";

:root {
  --background: #ffffff;
  --foreground: #171717;
}




@theme inline {
  --color-background: var(--background);
  --color-foreground: var(--foreground);
  --font-sans: var(--font-geist-sans);
  --font-mono: var(--font-geist-mono);
}

@media (prefers-color-scheme: dark) {
  :root {
    --background: #0a0a0a;
    --foreground: #ededed;
  }
}

body {
  background: var(--background);
  color: var(--foreground);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
}


.heroSwiper .swiper-pagination {
  bottom: 25px !important;
}

.heroSwiper .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgba(255,255,255,0.5);
  opacity: 1;
  transition: 0.3s;
}

.heroSwiper .swiper-pagination-bullet-active {
  width: 28px;
  border-radius: 999px;
  background: #22c55e;
}

.heroSwiper .swiper-button-prev,
.heroSwiper .swiper-button-next {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(255,255,255,0.16);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.18);
  color: white;
  transition: all 0.25s ease;
}

.heroSwiper .swiper-button-prev:hover,
.heroSwiper .swiper-button-next:hover {
  background: #22c55e;
}

.heroSwiper .swiper-button-prev::after,
.heroSwiper .swiper-button-next::after {
  font-size: 12px !important;
  font-weight: 900;
}

.heroSwiper .swiper-button-prev {
  left: 18px;
}

.heroSwiper .swiper-button-next {
  right: 18px;
}

.scrollbar-hide::-webkit-scrollbar {
  display: none;
}

.scrollbar-hide {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.swiper-wrapper {
  transition-timing-function: linear !important;
}
/*========================promo slider======================*/
@keyframes marquee-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes marquee-right {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

.marquee {
  display: flex;
  width: max-content;
  white-space: nowrap;
}

.animate-left {
  animation: marquee-left 25s linear infinite;
}

.animate-right {
  animation: marquee-right 25s linear infinite;
}

/*=============section title=============================*/
/*============= section title =============================*/

.section-title {
  position: relative !important;
  left: auto !important;
  transform: none !important;
  white-space: normal !important;
  font-weight: 900 !important;
  line-height: 1.15 !important;
  letter-spacing: -0.04em !important;
  text-align: center !important;
  font-size: clamp(2rem, 4vw, 3.4rem) !important;
}

/*==================================================
  SECTION HEADER
==================================================*/

.section-header {
  position: relative;
  z-index: 20;

  text-align: center;

  margin-bottom: 70px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  background: #ffffff;

  border: 1px solid #dcfce7;

  padding: 10px 22px;

  border-radius: 999px;

  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);

  margin-bottom: 22px;
}

.section-badge-text {
  color: #16a34a;

  font-size: 12px;

  font-weight: 900;

  letter-spacing: 0.25em;

  text-transform: uppercase;
}

.section-title {
  position: relative;

  display: block;

  width: 100%;

  text-align: center;

  font-weight: 900;

  line-height: 1.15;

  letter-spacing: -0.04em;

  color: #0f172a;

  margin: 0 auto;
}

.section-title-dark {
  color: #0f172a;
}

.section-title-gradient {
  background: linear-gradient(
    to right,
    #22c55e,
    #15803d
  );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-line {
  width: 110px;

  height: 6px;

  margin: 24px auto 0;

  border-radius: 999px;

  background: linear-gradient(
    to right,
    #4ade80,
    #15803d
  );
}

.section-description {
  max-width: 680px;

  margin: 24px auto 0;

  color: #64748b;

  line-height: 1.9;

  font-size: 16px;
}

/*=======================================
producat page design
===================================*/

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
  background: #22c55e;
  border-radius: 20px;
}

::-webkit-scrollbar-thumb:hover {
  background: #16a34a;
}

.range-thumb {
  pointer-events: none;
}

.range-thumb::-webkit-slider-thumb {
  appearance: none;
  pointer-events: auto;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: white;
  border: 4px solid #22c55e;
  cursor: pointer;
}

.range-thumb::-moz-range-thumb {
  pointer-events: auto;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: white;
  border: 4px solid #22c55e;
  cursor: pointer;
}
/*==================================================
  RESPONSIVE
==================================================*/

/* Mobile */
@media (max-width: 640px) {
  .section-header {
    margin-bottom: 50px;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .section-description {
    font-size: 14px;
    line-height: 1.8;
  }

  .section-line {
    width: 80px;
    height: 5px;
  }
}

/* Tablet */
@media (min-width: 641px) and (max-width: 1024px) {
  .section-title {
    font-size: 3rem;
  }
}

/* Desktop */
@media (min-width: 1025px) {
  .section-title {
    font-size: 4rem;
  }
}

@media (max-width: 640px) {
  .heroSwiper .swiper-button-prev,
  .heroSwiper .swiper-button-next {
    display: none;
  }

  .heroSwiper .swiper-pagination {
    bottom: 20px !important;
  }

  .heroSwiper .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
  }

  .heroSwiper .swiper-pagination-bullet-active {
    width: 22px;
  }
}