/** Shopify CDN: Minification failed

Line 669:0 All "@import" rules must come first

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:agri-hero-banner (INDEX:1) */
/* ============================================================
   AGRI HERO BANNER
   Single background image. Solid colour overlay on left zone
   fades to transparent so the farm photo shows on the right.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500&display=swap');

/* ---------- Section shell ---------- */
.ahb {
  position: relative;
  width: 100%;
  /* Matches screenshot: ~200px tall relative to its content,
     clamp keeps it proportional on wide screens */
  height: clamp(220px, 50vw, 620px);
  overflow: hidden;
  /* Single background image covers the whole section */
  background-image: var(--ahb-bg, none);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  /* Fallback colour when no image is uploaded */
  background-color: #d8efc4;
}

/* ---------- Overlay: solid left → transparent right ----------
   This is the key fix. The overlay is a gradient that:
   - Is fully solid (opaque) from 0 → ~45% (hides the bg image, gives clean text zone)
   - Fades out between 45% → 65% (smooth blend into the photo)
   - Is fully transparent from 65% onwards (photo shows fully)
   The colour is controlled by the theme-editor setting --ahb-ovr.
*/
.ahb__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    var(--ahb-ovr, #dff2c2)       0%,
    var(--ahb-ovr, #dff2c2)      45%,
    color-mix(in srgb, var(--ahb-ovr, #dff2c2) 60%, transparent) 55%,
    color-mix(in srgb, var(--ahb-ovr, #dff2c2) 20%, transparent) 63%,
    transparent                  72%
  );
  pointer-events: none;
  z-index: 1;
}

/* ---------- Inner wrapper ---------- */
.ahb__inner {
  position: relative;
  z-index: 2;
  height: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

/* ---------- Text content ---------- */
.ahb__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* Text block takes left ~42% — matches screenshot proportion */
  width: 42%;
  padding: 0 0 0 28px;
  gap: 6px;
}

/* Eyebrow */
.ahb__eyebrow {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: #1a1a1a;
  margin: 0 0 6px;
  opacity: 1;
}

/* Main heading — large, light weight, tight line-height */
.ahb__heading {
  font-size: clamp(1.9rem, 3.2vw, 3rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: #111111;
  margin: 0 0 10px;
}

/* Paragraph */
.ahb__para {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.55;
  color: #1a1a1a;
  margin: 0 0 18px;
  opacity: 1;
}

/* Outline pill button */
.ahb__btn {
  display: inline-block;
  width: fit-content;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-decoration: none;
  color: #111111;
  background: transparent;
  border: 1.5px solid #333333;
  border-radius: 50px;
  padding: 10px 24px;
  line-height: 1;
  cursor: pointer;
  transition:
    background 0.22s ease,
    color 0.22s ease,
    border-color 0.22s ease;
}

.ahb__btn:hover,
.ahb__btn:focus-visible {
  background: #1e4d1e;
  color: #ffffff;
  border-color: #1e4d1e;
  outline: none;
}

.ahb__btn:focus-visible {
  outline: 2px solid #1e4d1e;
  outline-offset: 3px;
}

/* ============================================================
   TABLET  769px – 1024px
   ============================================================ */
@media (max-width: 1024px) {
  .ahb {
    height: clamp(220px, 30vw, 320px);
  }
  .ahb__content {
    width: 48%;
    padding-left: 24px;
  }
  .ahb__heading {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
  }
  .ahb__overlay {
    background: linear-gradient(
      to right,
      var(--ahb-ovr, #dff2c2)       0%,
      var(--ahb-ovr, #dff2c2)      50%,
      color-mix(in srgb, var(--ahb-ovr, #dff2c2) 55%, transparent) 62%,
      transparent                  76%
    );
  }
}

/* ============================================================
   MOBILE  ≤ 768px
   ============================================================ */
@media (max-width: 768px) {
  .ahb {
    /* Let height grow naturally with content on mobile */
    height: auto;
    min-height: unset;
    /* On mobile, position the bg image to the right so the farmer stays visible below */
    background-position: right bottom;
    background-size: cover;
  }

  /* On mobile: overlay covers full section top-to-bottom with a gentle vertical fade */
  .ahb__overlay {
    background: linear-gradient(
      to bottom,
      var(--ahb-ovr, #dff2c2)       0%,
      var(--ahb-ovr, #dff2c2)      60%,
      color-mix(in srgb, var(--ahb-ovr, #dff2c2) 50%, transparent) 78%,
      transparent                  100%
    );
  }

  .ahb__inner {
    align-items: flex-start;
  }

  .ahb__content {
    width: 100%;
    padding: 28px 20px 160px 20px; /* bottom padding creates space to see the bg image/farmer below */
    gap: 8px;
  }

  .ahb__heading {
    font-size: clamp(1.7rem, 7.5vw, 2.2rem);
  }

  .ahb__para {
    max-width: 100%;
    font-size: 13px;
  }

  .ahb__btn {
    margin-top: 4px;
  }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  .ahb__btn { transition: none; }
}
/* END_SECTION:agri-hero-banner */

/* START_SECTION:category-carousel (INDEX:12) */
/* ============================================================
   Category Carousel — clean minimal design
   ============================================================ */

/* ── Custom properties ───────────────────────────────────── */
:root {
  /* Image size fallbacks (overridden per-section via inline style) */
  --cc-img-sz-desktop: 140px;
  --cc-img-sz-tablet:  110px;
  --cc-img-sz-mobile:  80px;

  /* Active size — desktop default */
  --cc-img-sz: var(--cc-img-sz-desktop);

  /* Typography */
  --cc-lbl-size:  clamp(0.8rem, 1.4vw, 1.8rem);
  --cc-lbl-wt:    500;
  --cc-lbl-color: inherit;

  /* Arrows */
  --cc-arrow-sz:  38px;
  --cc-arrow-bg:  #ffffff;
  --cc-arrow-fg:  #1a1a1a;
  --cc-arrow-bd:  rgba(0, 0, 0, 0.12);
  --cc-arrow-shadow: 0 2px 10px rgba(0, 0, 0, 0.10);

  /* Dots */
  --cc-dot-off:   rgba(0, 0, 0, 0.20);
  --cc-dot-on:    #1a1a1a;

  /* Badge */
  --cc-badge-bg:  #E53935;
  --cc-badge-fg:  #ffffff;

  /* Transitions */
  --cc-ease:      cubic-bezier(0.4, 0, 0.2, 1);
  --cc-dur:       0.28s;
}

/* ── Section shell ───────────────────────────────────────── */
.cc-section {
  position: relative;
  padding: clamp(28px, 5vw, 60px) 0 clamp(24px, 4vw, 48px);
  box-sizing: border-box;
  --cc-img-sz: var(--cc-img-sz-desktop);
}
.cc-section--pattern {
  background-image: radial-gradient(circle, rgba(0,0,0,0.035) 1px, transparent 1px);
  background-size: 22px 22px;
}
.cc-gradient-bar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  pointer-events: none;
  z-index: 2;
}

/* ── Section inner ───────────────────────────────────────── */
.cc-section__inner {
  max-width: 1440px;
  margin: 0 auto;
  /* FIX: was clamp(16px, 4vw, 10px) — min was larger than max */
  padding: 0 clamp(16px, 4vw, 60px);
}

/* ── Header ──────────────────────────────────────────────── */
.cc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: clamp(16px, 2.5vw, 32px);
}
.cc-header__left {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.cc-header__title {
  font-size: clamp(1.2rem, 2.6vw, 3.0rem);
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.cc-header__sub {
  font-size: clamp(0.8rem, 1.3vw, 0.9rem);
  opacity: 0.50;
  margin: 0;
}
.cc-header__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  border-radius: 6px;
  font-size: clamp(0.78rem, 1.1vw, 1.4rem);
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: opacity var(--cc-dur) var(--cc-ease),
              transform var(--cc-dur) var(--cc-ease);
}
.cc-header__btn:hover,
.cc-header__btn:focus-visible {
  opacity: 0.85;
  transform: translateY(-1px);
}

/* ── Track ───────────────────────────────────────────────── */
.cc-track {
  position: relative;
  isolation: isolate;
  padding: 0 calc(var(--cc-arrow-sz) + 8px);
}

/* ── Swiper ──────────────────────────────────────────────── */
.cc-swiper {
  width: 100%;
  overflow: hidden;
  padding: 6px 4px !important; /* room for focus rings */
}

/* ── Slide ───────────────────────────────────────────────── */
.cc-slide {
  height: auto !important;
  display: flex !important;
  align-items: stretch;
  justify-content: center;
}

/* ── Item ────────────────────────────────────────────────── */
.cc-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(8px, 1.2vw, 14px);
  text-decoration: none;
  color: var(--cc-lbl-color);
  width: 100%;
  min-width: 0;
  outline-offset: 4px;
  -webkit-tap-highlight-color: transparent;
}

/* ── Image wrapper ───────────────────────────────────────── */
.cc-img-wrap {
  position: relative;
  width: var(--cc-img-sz);
  height: var(--cc-img-sz);
  flex-shrink: 0;
  overflow: hidden;
  background: #f4f4f4;
  transition: transform var(--cc-dur) var(--cc-ease),
              box-shadow var(--cc-dur) var(--cc-ease);
}

/* Shape variants */
.cc-item--circle  .cc-img-wrap { border-radius: 50%; }
.cc-item--rounded .cc-img-wrap { border-radius: clamp(8px, 1.5vw, 18px); }
.cc-item--square  .cc-img-wrap { border-radius: 0; }

.cc-item:hover .cc-img-wrap,
.cc-item:focus-visible .cc-img-wrap {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  transform: translateY(-3px);
}

/* ── Image ───────────────────────────────────────────────── */
.cc-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--cc-dur) var(--cc-ease);
}

.cc-item--zoom:hover .cc-img,
.cc-item--zoom:focus-visible .cc-img {
  transform: scale(1.07);
}

/* ── Placeholder ─────────────────────────────────────────── */
.cc-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: rgba(0, 0, 0, 0.22);
}

/* ── Badge ───────────────────────────────────────────────── */
.cc-badge {
  position: absolute;
  top: 7%;
  right: 5%;
  background: var(--cc-badge-bg);
  color: var(--cc-badge-fg);
  font-size: 0.55rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 2px 7px;
  border-radius: 20px;
  line-height: 1.6;
  white-space: nowrap;
  z-index: 5;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.18);
}

/* ── Label ───────────────────────────────────────────────── */
.cc-label {
  display: block;
  font-size: var(--cc-lbl-size);
  font-weight: var(--cc-lbl-wt);
  text-align: center;
  line-height: 1.35;
  max-width: var(--cc-img-sz);
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: opacity var(--cc-dur) var(--cc-ease);
}
.cc-item:hover .cc-label,
.cc-item:focus-visible .cc-label {
  opacity: 0.55;
}

/* ── Arrow buttons ───────────────────────────────────────── */
.cc-arrow {
  position: absolute;
  top: calc(var(--cc-img-sz) / 2);
  transform: translateY(-50%);
  z-index: 10;
  width: var(--cc-arrow-sz);
  height: var(--cc-arrow-sz);
  border-radius: 50%;
  background: var(--cc-arrow-bg);
  border: 1px solid var(--cc-arrow-bd);
  color: var(--cc-arrow-fg);
  box-shadow: var(--cc-arrow-shadow);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: box-shadow var(--cc-dur) var(--cc-ease),
              transform var(--cc-dur) var(--cc-ease),
              background-color var(--cc-dur) var(--cc-ease),
              opacity var(--cc-dur) var(--cc-ease);
  outline-offset: 3px;
  -webkit-tap-highlight-color: transparent;
}
.cc-arrow--prev { left: 0; }
.cc-arrow--next { right: 0; }

.cc-arrow:hover,
.cc-arrow:focus-visible {
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.16);
  transform: translateY(-50%) scale(1.08);
  background: #fafafa;
}
.cc-arrow:active {
  transform: translateY(-50%) scale(0.93);
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.10);
}
.cc-arrow.swiper-button-disabled {
  opacity: 0.28;
  pointer-events: none;
}

/* ── Pagination dots ─────────────────────────────────────── */
.cc-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-top: clamp(14px, 2vw, 24px);
  min-height: 14px;
  position: static !important;
  bottom: auto !important;
}
.cc-dots .swiper-pagination-bullet {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cc-dot-off);
  opacity: 1;
  margin: 0 !important;
  cursor: pointer;
  transition: background var(--cc-dur) var(--cc-ease),
              width     var(--cc-dur) var(--cc-ease),
              border-radius var(--cc-dur) var(--cc-ease);
}
.cc-dots .swiper-pagination-bullet-active {
  background: var(--cc-dot-on);
  width: 22px;
  border-radius: 4px;
}

/* ── Tablet (600px – 1023px) ─────────────────────────────── */
@media (min-width: 600px) and (max-width: 1023px) {
  .cc-section {
    /* FIX: moved from :root so the custom property resolves correctly */
    --cc-img-sz: var(--cc-img-sz-tablet);
    --cc-arrow-sz: 36px;
  }
  :root {
    --cc-lbl-size: clamp(0.78rem, 1.5vw, 1.4rem)!important;
  }
}

/* ── Mobile (<600px) ─────────────────────────────────────── */
@media (max-width: 599px) {
  .cc-section {
    /* FIX: moved from :root so the custom property resolves correctly */
    --cc-img-sz: var(--cc-img-sz-mobile);
    --cc-arrow-sz: 32px;
  }
  :root {
    /* FIX: was clamp(0.82rem, 4.4vw, 4.82rem) — max was 4.82rem (enormous) */
    --cc-lbl-size: clamp(0.78rem, 1.5vw, 1.4rem)!important;
  }

  .cc-track {
    padding: 0 calc(var(--cc-arrow-sz) + 4px);
  }

  .cc-item--zoom:hover .cc-img,
  .cc-item--zoom:focus-visible .cc-img {
    transform: scale(1.04);
  }

  .cc-item:hover .cc-img-wrap,
  .cc-item:focus-visible .cc-img-wrap {
    transform: translateY(-2px);
  }

  .cc-dots { margin-top: 12px; }

  .cc-header__btn {
    padding: 8px 16px;
    font-size: 1.1rem;
  }
}

/*-------------------------------------------Mobile Media Query Start-----------------------------------------------------------------*/
@media only screen and (min-width:320px) and (max-width: 374px)
{
  .sbc-card__title{
    font-size: clamp(1.28rem, 1.3vw, 1.5rem)!important;
  }
  .sbc-card__price{    
    font-size: clamp(1.28rem, 1.3vw, 1.5rem)!important;
  }
  .cc-header__title{
    font-size: clamp(1.6rem, 2.6vw, 3.0rem)!important;
  }
  .cc-label{
    font-size: clamp(1.48rem, 1.5vw, 1.4rem)!important;
  }
}
@media only screen and (min-width:375px) and (max-width: 405px)
{
  .sbc-card__title{
    font-size: clamp(1.28rem, 1.3vw, 1.5rem)!important;
  }
  .sbc-card__price{    
    font-size: clamp(1.28rem, 1.3vw, 1.5rem)!important;
  }
  .cc-header__title{
    font-size: clamp(1.6rem, 2.6vw, 3.0rem)!important;
  }
  .cc-label{
    font-size: clamp(1.48rem, 1.5vw, 1.4rem)!important;
  }
}
@media only screen and (min-width:406px) and (max-width: 459px)
{
  .sbc-card__title{
    font-size: clamp(1.28rem, 1.3vw, 1.5rem)!important;
  }
  .sbc-card__price{    
    font-size: clamp(1.28rem, 1.3vw, 1.5rem)!important;
  }
  .cc-header__title{
    font-size: clamp(1.6rem, 2.6vw, 3.0rem)!important;
  }
  .cc-label{
    font-size: clamp(1.48rem, 1.5vw, 1.4rem)!important;
  }
}
@media only screen and (min-width: 460px) and (max-width: 540px)
{
  .sbc-card__title{
    font-size: clamp(1.28rem, 1.3vw, 1.5rem)!important;
  }
  .sbc-card__price{    
    font-size: clamp(1.28rem, 1.3vw, 1.5rem)!important;
  }
  .cc-header__title{
    font-size: clamp(1.6rem, 2.6vw, 3.0rem)!important;
  }
  .cc-label{
    font-size: clamp(1.48rem, 1.5vw, 1.4rem)!important;
  }
}
@media only screen and (min-width: 541px)  and (max-width: 767px)
{
  .sbc-card__title{
    font-size: clamp(1.28rem, 1.3vw, 1.5rem)!important;
  }
  .sbc-card__price{    
    font-size: clamp(1.28rem, 1.3vw, 1.5rem)!important;
  }
  .cc-header__title{
    font-size: clamp(1.6rem, 2.6vw, 3.0rem)!important;
  }
  .cc-label{
    font-size: clamp(1.48rem, 1.5vw, 1.4rem)!important;
  }
}
/*-----------------------------------------------Mobile Media Query End---------------------------------------------------------------*/

/* ── Reduced motion ──────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .cc-img,
  .cc-img-wrap,
  .cc-label,
  .cc-arrow,
  .cc-header__btn { transition: none !important; }
  .swiper-wrapper { transition-duration: 0ms !important; }
}
/* END_SECTION:category-carousel */

/* START_SECTION:footer (INDEX:30) */
/* ============================================================
   ORGANIC FOOTER  —  Styles
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');

/* ---- Utility ---- */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ---- Root variables ---- */
.of {
  --of-bg:    #ffffff;
  --of-green: #315525;
  --of-font:  'Montserrat', -apple-system, 'Helvetica Neue', Arial, sans-serif;

  background-color: var(--of-bg);
  color: var(--of-green);
  font-family: var(--of-font);
  width: 100%;
}

/* ============================================================
   TOP SECTION — 3 columns
   ============================================================ */
.of__top {
  display: grid;
  grid-template-columns: 1fr 1.8fr 1.4fr;
  gap: 32px 48px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 48px 40px 32px;
  align-items: start;
  position: relative;
  z-index: 3;
}

/* ---- Col 1: Logo ---- */
.of__col--logo {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding-top: 8px;
}

.of__logo-link { display: inline-block; }

.of__logo-img {
  display: block;
  max-width: 180px;
  height: auto;
}

.of__logo-text {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--of-green);
  text-decoration: none;
  letter-spacing: -0.02em;
}

/* ---- Col 2: Center ---- */
.of__col--center {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

/* Download Catalog */
.of__catalog {
  width: 100%;
  max-width: 380px;
}

.of__catalog-heading {
  margin: 0 0 6px;
  color: var(--of-green);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
}

.of__catalog-text {
  margin: 0 0 12px;
  color: var(--of-green);
  font-size: 11.5px;
  font-weight: 400;
  line-height: 1.55;
  opacity: 0.8;
}

.of__catalog-button {
  width: 100%;
  min-height: 48px;
  padding: 11px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;

  border: 1.5px solid var(--of-catalog-btn-bg);
  border-radius: 999px;

  background: var(--of-catalog-btn-bg);
  color: var(--of-catalog-btn-text);

  font-family: var(--of-font);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;

  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.10);

  transition:
    background-color .2s ease,
    border-color .2s ease,
    color .2s ease,
    transform .2s ease,
    box-shadow .2s ease;
}

.of__catalog-button:hover {
  background: var(--of-catalog-btn-hover);
  border-color: var(--of-catalog-btn-hover);
  color: var(--of-catalog-btn-text);
  transform: translateY(-2px);
  box-shadow: 0 7px 18px rgba(0, 0, 0, 0.14);
}

.of__catalog-button--disabled {
  cursor: default;
  opacity: 0.55;
}

.of__catalog-button--disabled:hover {
  background: var(--of-catalog-btn-bg);
  border-color: var(--of-catalog-btn-bg);
  color: var(--of-catalog-btn-text);
  transform: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.10);
}

.of__catalog-icon {
  flex-shrink: 0;
}

/* Footer navigation columns */
.of__nav {
  width: 100%;
}

.of__nav-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  width: 100%;
  align-items: start;
}

.of__nav-column {
  min-width: 0;
  text-align: left;
}

.of__nav-heading {
  margin: 0 0 14px;
  color: var(--of-green);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.of__nav-column-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.of__nav-column-item {
  margin: 0 0 8px;
  padding: 0;
}

.of__nav-column-item:last-child {
  margin-bottom: 0;
}

.of__nav-column-link {
  display: inline-block;
  color: var(--of-green);
  font-size: 11.5px;
  font-weight: 500;
  line-height: 1.5;
  text-decoration: none;
  transition: opacity .2s ease;
}

.of__nav-column-link:hover {
  opacity: 0.65;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Social icons */
.of__social {
  display: flex;
  align-items: center;
  gap: 14px;
}

.of__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--of-green);
  transition: opacity .2s ease, transform .2s ease;
}

.of__social-link:hover {
  opacity: 0.65;
  transform: translateY(-2px);
}

/* App badges */
.of__apps {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.of__app-link { display: inline-block; }
.of__app-img  { display: block; height: 36px; width: auto; }

/* Fallback badge (when no image uploaded) */
.of__app-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border: 1.5px solid var(--of-green);
  border-radius: 6px;
  color: var(--of-green);
  text-decoration: none;
  font-family: var(--of-font);
  line-height: 1.3;
  transition: background .2s ease, color .2s ease;
}

.of__app-badge span {
  display: flex;
  flex-direction: column;
  font-size: 11px;
  font-weight: 600;
}

.of__app-badge small {
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.of__app-badge:hover {
  background: var(--of-green);
  color: #fff;
}

/* ---- Col 3: Company info ---- */
.of__col--company {
  padding-top: 8px;
}

.of__company-info {
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--of-green);
}

.of__company-info p { margin: 0 0 4px; }

.of__company-name {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.of__company-sub {
  font-size: 11px;
  font-weight: 500;
  margin-bottom: 6px !important;
}

.of__company-cin {
  font-size: 10.5px;
  opacity: 0.75;
  margin-bottom: 8px !important;
}

.of__company-addr {
  font-size: 11px;
  margin-bottom: 10px !important;
  line-height: 1.65;
}

.of__company-contact a {
  color: var(--of-green);
  text-decoration: none;
}

.of__company-contact a:hover {
  text-decoration: underline;
}

/* ============================================================
   BOTTOM ILLUSTRATION
   ============================================================ */
.of__illus-wrap {
  width: 100%;
  line-height: 0;
  overflow: hidden;
  margin-top: 0px; /* moved here from .of__illus-img so it isn't clipped */
  position: relative;
  z-index: 2;
}

.of__illus-img {
  display: block;
  width: 100%;
  height: auto;
}

.of__illus-svg {
  display: block;
  width: 100%;
  height: auto;
  min-height: 120px;
}

/* ============================================================
   COPYRIGHT BAR
   ============================================================ */
.of__copy {
  background: var(--of-green);
  color: #fff;
  text-align: center;
  padding: 10px 20px;
  font-size: 11px;
  font-family: var(--of-font);
  letter-spacing: 0.02em;
}

.of__copy p { margin: 0; }

/* ============================================================
   TABLET  769px – 1024px
   ============================================================ */
@media (max-width: 1024px) {
  .of__top {
    grid-template-columns: 1fr 1.6fr;
    gap: 28px 36px;
    padding: 36px 28px 28px;
  }

  /* Logo spans first cell, company info wraps to second row */
  .of__col--logo    { grid-column: 1; grid-row: 1; }
  .of__col--center  { grid-column: 2; grid-row: 1 / 3; }
  .of__col--company { grid-column: 1; grid-row: 2; }
}

/* ============================================================
   MOBILE  ≤ 768px
   ============================================================ */
@media (max-width: 768px) {
  .of__top {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 32px 20px 24px;
    text-align: center;
  }

  /* Stacking order: logo → center → company */
  .of__col--logo    { grid-column: 1; grid-row: 1; justify-content: center; }
  .of__col--center  { grid-column: 1; grid-row: 2; align-items: center; }
  .of__col--company { grid-column: 1; grid-row: 3; text-align: left; }

  .of__logo-img { max-width: 140px; margin: 0 auto; }

  .of__catalog {
    max-width: 100%;
  }

  .of__catalog-heading,
  .of__catalog-text {
    text-align: center;
  }
  .of__nav {
    width: 100%;
  }

  .of__nav-columns {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    width: 100%;
  }

  .of__nav-column {
    text-align: left;
  }

  .of__nav-heading {
    font-size: 11px;
    margin-bottom: 10px;
  }

  .of__nav-column-link {
    font-size: 11px;
  }


  .of__social { justify-content: center; }

  .of__apps { justify-content: center; }

  .of__company-info { font-size: 12px; }

  .of__illus-svg { min-height: 90px; }
}

/* ============================================================
   SMALL MOBILE  ≤ 480px
   ============================================================ */
@media (max-width: 480px) {
  .of__top { padding: 28px 16px 20px; }

  .of__nav-columns {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .of__nav-column {
    text-align: center;
  }

  .of__apps { flex-direction: column; align-items: center; gap: 10px; }
  .of__app-badge { width: 100%; max-width: 240px; justify-content: center; }
  .of__app-img { height: 40px; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  .of__catalog-button,
  .of__social-link,
  .of__app-badge { transition: none; }
}
/* END_SECTION:footer */

/* START_SECTION:most-loved (INDEX:53) */
/* ============================================================
   Most Loved — Product Carousel
   ============================================================ */

/* ── Tokens ──────────────────────────────────────────────── */
:root {
  --ml-heading-font:  inherit;
  --ml-body-font:     inherit;
  --ml-green:         #a12b8a;
  --ml-green-light:   #000000;
  --ml-black:         #0b0320;
  --ml-orange:        #E07820;
  --ml-star:          #F5A623;
  --ml-text:          #1a1a1a;
  --ml-muted:         #6b6b6b;
  --ml-border:        #e8e8e8;
  --ml-bg-card:       #ffffff;
  --ml-bg-section:    #fafaf8;
  --ml-radius-card:   12px;
  --ml-radius-btn:    8px;
  --ml-arrow-sz:      42px;
  --ml-ease:          cubic-bezier(0.4, 0, 0.2, 1);
  --ml-dur:           0.26s;
}

/* ── Section ─────────────────────────────────────────────── */
.ml-section {
  background: var(--ml-bg-section);
  padding: clamp(28px, 4vw, 52px) 0 clamp(24px, 3vw, 44px);
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}
/* Decorative wave bg (mirrors reference design) */
.ml-section::before {
  content: '';
  position: absolute;
  top: -60px; right: -40px;
  width: clamp(200px, 40vw, 480px);
  height: clamp(120px, 20vw, 260px);
  background: radial-gradient(ellipse at 70% 40%, rgba(255,200,180,0.35) 0%, transparent 70%);
  pointer-events: none;
}

/* ── Inner ───────────────────────────────────────────────── */
.ml-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(16px, 3vw, 20px);
}

/* ── Header ──────────────────────────────────────────────── */
.ml-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: clamp(16px, 2.5vw, 28px);
  gap: 16px;
}
.ml-heading {
  font-family: var(--ml-heading-font);
  font-size: clamp(1.6rem, 3.5vw, 3.0rem);
  font-weight: 600;
  color: var(--ml-black);
  margin: 0;
  line-height: 1.1;
  letter-spacing: 0.2px;
}
.ml-shop-btn {
  display: inline-flex;
  align-items: center;
  line-height: 24px;
  gap: 6px;
  background: var(--ml-green);
  color: #fff;
  font-size: clamp(1.1rem, 1.2vw, 1.4rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  padding: 8px 22px;
  border-radius: var(--ml-radius-btn);
  white-space: nowrap;
  transition: background var(--ml-dur) var(--ml-ease),
              transform var(--ml-dur) var(--ml-ease),
              box-shadow var(--ml-dur) var(--ml-ease);
  box-shadow: 0 2px 8px rgba(46,107,62,0.20);
}
.ml-shop-btn:hover {
  background: var(--ml-green-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(46,107,62,0.28);
}

/* ── Track (wraps arrows + swiper) ──────────────────────── */
.ml-track {
  position: relative;
  padding: 0 calc(var(--ml-arrow-sz) + 10px);
}

/* ── Swiper ──────────────────────────────────────────────── */
.ml-swiper {
  width: 100%;
  overflow: hidden;
  /* Extra bottom room so card box-shadows are visible */
  padding-bottom: 12px !important;
}

/* ── Slide ───────────────────────────────────────────────── */
.ml-slide {
  height: auto !important;
  display: flex !important;
  align-items: stretch;
}

/* ── Card ────────────────────────────────────────────────── */
.ml-card {
  display: flex;
  flex-direction: column;
  background: var(--ml-bg-card);
  border-radius: var(--ml-radius-card);
  border: 1px solid var(--ml-border);
  overflow: hidden;
  width: 100%;
  text-decoration: none;
  color: var(--ml-text);
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
  transition: box-shadow var(--ml-dur) var(--ml-ease),
              transform var(--ml-dur) var(--ml-ease);
}
.ml-card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.10);
  transform: translateY(-2px);
}

/* ── Card image area ─────────────────────────────────────── */
.ml-card__img-wrap {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #f5f3ef;
  flex-shrink: 0;
}
.ml-card__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.38s var(--ml-ease);
}
.ml-card:hover .ml-card__img {
  transform: scale(1.04);
}
.ml-card__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: rgba(0,0,0,0.20);
}

/* ── Badge ───────────────────────────────────────────────── */
.ml-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 4px 10px 4px 8px;
  border-radius: 4px;
  line-height: 1.5;
  white-space: nowrap;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 5px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}
.ml-badge::before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.85;
  flex-shrink: 0;
}
.ml-badge--new-launch  { background: #1E4D2B; color: #fff; }
.ml-badge--trending    { background: var(--ml-orange); color: #fff; }
.ml-badge--best-seller { background: #1E4D2B; color: #fff; }
.ml-badge--must-try    { background: #7B3FA0; color: #fff; }
.ml-badge--sale        { background: #B02A1F; color: #fff; }

/* ── Favourite heart ─────────────────────────────────────── */
.ml-fav {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 5;
  background: rgba(255,255,255,0.92);
  border: none;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0,0,0,0.12);
  transition: transform var(--ml-dur) var(--ml-ease),
              box-shadow var(--ml-dur) var(--ml-ease),
              background var(--ml-dur) var(--ml-ease);
  -webkit-tap-highlight-color: transparent;
  padding: 0;
}
.ml-fav:hover {
  transform: scale(1.12);
  box-shadow: 0 3px 10px rgba(0,0,0,0.16);
}
.ml-fav:active { transform: scale(0.92); }
.ml-fav svg { pointer-events: none; }
.ml-fav .ml-fav__icon {
  fill: none;
  stroke: #999;
  stroke-width: 1.8;
  transition: fill var(--ml-dur) var(--ml-ease),
              stroke var(--ml-dur) var(--ml-ease);
}
.ml-fav.is-fav .ml-fav__icon {
  fill: #e63946;
  stroke: #e63946;
}
/* Pop animation on toggle */
@keyframes ml-heart-pop {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.35); }
  70%  { transform: scale(0.90); }
  100% { transform: scale(1); }
}
.ml-fav.pop { animation: ml-heart-pop 0.36s var(--ml-ease) both; }

/* ── Card body ───────────────────────────────────────────── */
.ml-card__body {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 14px 14px 0;
  flex: 1;
}

/* ── Title + price row ───────────────────────────────────── */
.ml-card__title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 4px;
}
.ml-card__title {
  font-size: clamp(.88rem,1.3vw,1.5rem);
  font-weight: 600;
  line-height: 1.3;
  color: var(--ml-text);
  margin: 0;
  /* allow up to 2 lines then ellipsis */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  letter-spacing: 0.3px;
}
.ml-card__price {
  font-size: clamp(.88rem,1.2vw,1.4rem);
  font-weight: 600;
  color: var(--ml-text);
  white-space: nowrap;
  flex-shrink: 0;
}
.ml-card__price--compare {
  text-decoration: line-through;
  color: var(--ml-muted);
  font-weight: 400;
  font-size: 0.82em;
  margin-right: 4px;
}

/* ── Sub-description ─────────────────────────────────────── */
.ml-card__desc {
  font-size: clamp(0.73rem, 1vw, 0.8rem);
  color: var(--ml-muted);
  margin: 0 0 6px;
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ── Rating ──────────────────────────────────────────────── */
.ml-card__rating {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 10px;
}
.ml-stars {
  display: flex;
  gap: 1px;
}
.ml-stars svg {
  display: block;
}
.ml-card__rating-text {
  font-size: 1.32rem;
  color: var(--ml-muted);
  line-height: 1.2;
}

/* ── Card footer (variant + ATC) ─────────────────────────── */
.ml-card__footer {
  padding: 10px 14px 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: auto;
}

/* ── Variant select ──────────────────────────────────────── */
.ml-variant-wrap {
  position: relative;
}
.ml-variant-select {
  width: -webkit-fill-available;
  appearance: none;
  -webkit-appearance: none;
  background: #fff;
  border: 1.5px solid var(--ml-border);
  border-radius: var(--ml-radius-btn);
  padding: 9px 34px 9px 12px;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--ml-text);
  cursor: pointer;
  outline: none;
  transition: border-color var(--ml-dur) var(--ml-ease);
  letter-spacing: 0.21px;
}
.ml-variant-select:focus { border-color: var(--ml-green); }
.ml-variant-wrap::after {
  content: '';
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 4.5px solid transparent;
  border-right: 4.5px solid transparent;
  border-top: 5px solid var(--ml-muted);
  pointer-events: none;
}

/* ── Add to Cart button ──────────────────────────────────── */
.ml-atc-wrap {
  position: relative;
  height: 42px;
}
.ml-atc-btn,
.ml-qty-row {
  position: absolute;
  inset: 0;
  border-radius: var(--ml-radius-btn);
  overflow: hidden;
  transition: opacity 0.22s var(--ml-ease), transform 0.22s var(--ml-ease);
}

/* Add to Cart button */
.ml-atc-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: -webkit-fill-available;
  height: 100%;
  background: var(--ml-green);
  color: #fff;
  font-size: 1.42rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  gap: 7px;
  -webkit-tap-highlight-color: transparent;
  transition: background var(--ml-dur) var(--ml-ease),
              opacity 0.22s var(--ml-ease),
              transform 0.22s var(--ml-ease);
}
.ml-atc-btn:hover  { background: var(--ml-green-light); }
.ml-atc-btn:active { transform: scale(0.97); }
.ml-atc-btn.loading { opacity: 0.7; pointer-events: none; }

/* ── Spinner inside ATC ──────────────────────────────────── */
.ml-spinner {
  width: 16px; height: 16px;
  border: 2px solid rgba(255,255,255,0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: ml-spin 0.6s linear infinite;
  display: none;
}
.ml-atc-btn.loading .ml-spinner { display: block; }
.ml-atc-btn.loading .ml-atc-label { display: none; }
@keyframes ml-spin { to { transform: rotate(360deg); } }

/* ── Quantity row (replaces ATC after click) ─────────────── */
.ml-qty-row {
  display: flex;
  align-items: stretch;
  background: #fff;
  border: 1.5px solid var(--ml-green);
  opacity: 0;
  transform: scale(0.96);
  pointer-events: none;
}
.ml-qty-row.visible {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}
.ml-atc-btn.hidden {
  opacity: 0;
  transform: scale(0.96);
  pointer-events: none;
}
.ml-qty-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  flex-shrink: 0;
  background: none;
  border: none;
  font-size: 2.1rem;
  font-weight: 400;
  line-height: 1;
  color: var(--ml-green);
  cursor: pointer;
  padding: 0;
  transition: background var(--ml-dur) var(--ml-ease);
  -webkit-tap-highlight-color: transparent;
}
.ml-qty-btn:hover { background: #f0f8f2; }
.ml-qty-btn:active { background: #dff0e5; }
.ml-qty-display {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.52rem;
  font-weight: 700;
  color: var(--ml-text);
  border-left: 1px solid var(--ml-border);
  border-right: 1px solid var(--ml-border);
  min-width: 0;
}

/* ── Arrows ──────────────────────────────────────────────── */
.ml-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: var(--ml-arrow-sz);
  height: var(--ml-arrow-sz);
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid var(--ml-border);
  color: var(--ml-text);
  box-shadow: 0 2px 10px rgba(0,0,0,0.09);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: box-shadow var(--ml-dur) var(--ml-ease),
              transform var(--ml-dur) var(--ml-ease),
              opacity var(--ml-dur) var(--ml-ease);
  outline-offset: 3px;
  -webkit-tap-highlight-color: transparent;
}
.ml-arrow--prev { left: 0; }
.ml-arrow--next { right: 0; }
.ml-arrow:hover {
  box-shadow: 0 4px 18px rgba(0,0,0,0.15);
  transform: translateY(-50%) scale(1.08);
}
.ml-arrow:active { transform: translateY(-50%) scale(0.92); }
.ml-arrow.swiper-button-disabled { opacity: 0.28; pointer-events: none; }

/* ── Dots ────────────────────────────────────────────────── */
.ml-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-top: clamp(14px, 2vw, 22px);
  min-height: 14px;
  position: static !important;
  bottom: auto !important;
}
.ml-dots .swiper-pagination-bullet {
  width: 7px; height: 7px;
  background: rgba(0,0,0,0.20);
  opacity: 1;
  margin: 0 !important;
  cursor: pointer;
  transition: background var(--ml-dur) var(--ml-ease),
              width     var(--ml-dur) var(--ml-ease),
              border-radius var(--ml-dur) var(--ml-ease);
}
.ml-dots .swiper-pagination-bullet-active {
  background: var(--ml-green);
  width: 22px;
  border-radius: 4px;
}

/* ── Responsive ──────────────────────────────────────────── */

/* Tablet */
@media (min-width: 600px) and (max-width: 1023px) {
  :root { --ml-arrow-sz: 38px; }
  .ml-track { padding: 0 calc(var(--ml-arrow-sz) + 8px); }
}

/* Mobile */
@media (max-width: 599px) {
  :root { --ml-arrow-sz: 34px; }
  .ml-track { padding: 0 calc(var(--ml-arrow-sz) + 4px); }
  .ml-card__body { padding: 11px 11px 0; }
  .ml-card__footer { padding: 8px 11px 11px; gap: 7px; }
  .ml-heading { font-size: clamp(1.4rem, 7vw, 1.9rem); }
  .ml-atc-wrap { height: 40px; }
  .ml-qty-btn { width: 38px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .ml-card, .ml-card__img, .ml-atc-btn,
  .ml-qty-row, .ml-fav, .ml-arrow { transition: none !important; }
  .swiper-wrapper { transition-duration: 0ms !important; }
}

/* ── Wishlist Toast Notification ─────────────────────────── */
.ml-wishlist-toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(16px);
  z-index: 9999;
  background: #1a1a1a;
  color: #fff;
  font-family: var(--ml-body-font, inherit);
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.4;
  padding: 12px 20px;
  border-radius: 10px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.22);
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.28s ease, transform 0.28s ease;
  max-width: calc(100vw - 32px);
}
.ml-wishlist-toast--visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.ml-wishlist-toast--added   { background: #1E4D2B; }
.ml-wishlist-toast--removed { background: #444; }
.ml-wishlist-toast--info    { background: #1a1a1a; }
.ml-wishlist-toast strong   { font-weight: 700; }
.ml-toast-icon {
  font-style: normal;
  flex-shrink: 0;
  font-size: 1rem;
}
@media (max-width: 599px) {
  .ml-wishlist-toast {
    bottom: 16px;
    font-size: 0.82rem;
    padding: 10px 16px;
  }
}

/*-------------------------------------------Mobile Media Query Start-----------------------------------------------------------------*/
@media only screen and (min-width:320px) and (max-width: 374px)
{
  .ml-card__title {
    font-size: clamp(1.42rem, 1.3vw, 2.5rem);
    font-weight: 600;
    line-height: 1.3;
    color: var(--ml-text);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    letter-spacing: 0.3px;
  }
  .ml-card__price {
    font-size: clamp(1.38rem, 1.2vw, 1.4rem);
    font-weight: 600;
    color: var(--ml-text);
    white-space: nowrap;
    flex-shrink: 0;
  }
}
@media only screen and (min-width:375px) and (max-width: 405px)
{
  .ml-card__title {
    font-size: clamp(1.42rem, 1.3vw, 2.5rem);
    font-weight: 600;
    line-height: 1.3;
    color: var(--ml-text);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    letter-spacing: 0.3px;
  }
  .ml-card__price {
    font-size: clamp(1.38rem, 1.2vw, 1.4rem);
    font-weight: 600;
    color: var(--ml-text);
    white-space: nowrap;
    flex-shrink: 0;
  }
}
@media only screen and (min-width:406px) and (max-width: 459px)
{
  .ml-card__title {
    font-size: clamp(1.42rem, 1.3vw, 2.5rem);
    font-weight: 600;
    line-height: 1.3;
    color: var(--ml-text);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    letter-spacing: 0.3px;
  }
  .ml-card__price {
    font-size: clamp(1.38rem, 1.2vw, 1.4rem);
    font-weight: 600;
    color: var(--ml-text);
    white-space: nowrap;
    flex-shrink: 0;
  }
}
@media only screen and (min-width: 460px) and (max-width: 540px)
{
  .ml-card__title {
    font-size: clamp(1.42rem, 1.3vw, 2.5rem);
    font-weight: 600;
    line-height: 1.3;
    color: var(--ml-text);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    letter-spacing: 0.3px;
  }
  .ml-card__price {
    font-size: clamp(1.38rem, 1.2vw, 1.4rem);
    font-weight: 600;
    color: var(--ml-text);
    white-space: nowrap;
    flex-shrink: 0;
  }
}
@media only screen and (min-width: 541px)  and (max-width: 767px)
{
  .ml-card__title {
    font-size: clamp(1.42rem, 1.3vw, 2.5rem);
    font-weight: 600;
    line-height: 1.3;
    color: var(--ml-text);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    letter-spacing: 0.3px;
  }
  .ml-card__price {
    font-size: clamp(1.38rem, 1.2vw, 1.4rem);
    font-weight: 600;
    color: var(--ml-text);
    white-space: nowrap;
    flex-shrink: 0;
  }
}
/*-----------------------------------------------Mobile Media Query End---------------------------------------------------------------*/
/* END_SECTION:most-loved */

/* START_SECTION:seasonal-buying (INDEX:68) */
/* ─── Reset / Scope ─────────────────────────────────────────── */
.seasonal-buying *,
.seasonal-buying *::before,
.seasonal-buying *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ─── Section wrapper ───────────────────────────────────────── */
.seasonal-buying {
  padding: 60px 20px 72px;
  background: #fff;
}

.seasonal-buying__inner {
  max-width: 1440px;
  margin: 0 auto;
}

/* ─── Heading ───────────────────────────────────────────────── */
.seasonal-buying__heading {
  font-size: clamp(1.4rem, 2.6vw, 3.0rem);
  font-weight: 600;
  color: #111;
  letter-spacing: 0.3px;
  margin-bottom: 12px;
  line-height: 1.2;
  text-align: center;
}

/* ─── Section Description ───────────────────────────────────── */
.seasonal-buying__desc {
  font-size: clamp(0.95rem, 1.4vw, 1.6rem);
  color: #555;
  text-align: center;
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.6;
}

/* ─── Carousel shell ────────────────────────────────────────── */
.seasonal-carousel {
  position: relative;
}

/* ─── Viewport ───────────────────────────────────────────────── */
.seasonal-carousel__viewport {
  overflow: hidden;
  border-radius: 20px;
}

/* ─── Track ─────────────────────────────────────────────────── */
.seasonal-carousel__track {
  display: flex;
  list-style: none;
  gap: 20px;
  transition: transform 0.45s cubic-bezier(.25,.8,.25,1);
  will-change: transform;
  padding: 4px 2px 8px;
}

/* ─── Slides ─────────────────────────────────────────────────── */
.seasonal-carousel__slide {
  flex: 0 0 calc((100% - 40px) / 3);
  min-width: 0;
}

@media (max-width: 900px) {
  .seasonal-carousel__slide {
    flex: 0 0 calc((100% - 20px) / 2);
  }
}

@media (max-width: 560px) {
  .seasonal-carousel__slide {
    flex: 0 0 100%;
  }
}

/* ─── Card ──────────────────────────────────────────────────── */
/*
  KEY: no padding on the card itself.
  Padding is only on the body (.seasonal-card__body) below the image.
  This lets the image bleed flush to the card edges (top, left, right).
*/
.seasonal-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;        /* stretch so image-wrap fills full width */
  background-color: var(--card-bg, #f5f5f5);
  border-radius: 20px;
  overflow: hidden;            /* clips image to card's rounded corners */
  padding: 0;                  /* NO card-level padding — image bleeds to edges */
  height: 100%;
  transition:
    transform 0.28s cubic-bezier(.22,.61,.36,1),
    box-shadow 0.28s cubic-bezier(.22,.61,.36,1);
}

.seasonal-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,.10);
}

.seasonal-card__link-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* ─── Image wrap — full bleed, flush top ────────────────────── */
.seasonal-card__image-wrap {
  width: 100%;
  aspect-ratio: var(--img-ratio, 1/1);
  overflow: hidden;
  flex-shrink: 0;
  background-color: var(--card-bg, #f5f5f5); /* fills empty space around image */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ─── Image — contain: full image always visible, no crop ───── */
.seasonal-card__img {
  display: block;
  width: 100%;
  height: 100% !important;
  max-width: none;
  object-fit: contain;           /* never crops — full image always shown */
  object-position: center center;
  transition: transform 0.38s cubic-bezier(.22,.61,.36,1);
}

.seasonal-card:hover .seasonal-card__img {
  transform: scale(1.04);
}

.seasonal-card__img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.4;
}

.seasonal-card__placeholder-svg {
  width: 120px;
  height: 120px;
}

/* ─── Body — padded text area below image ───────────────────── */
.seasonal-card__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  gap: 8px;
  padding: 24px 20px 28px;   /* padding lives here, not on the card */
  position: relative;
  z-index: 2;
  flex: 1;                    /* pushes button to bottom if cards vary in height */
}

.seasonal-card__label {
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.2px;
  color: #666;
}

.seasonal-card__title {
  font-size: clamp(1.2rem, 2.2vw, 2.01rem);
  font-weight: 600;
  color: #111;
  letter-spacing: 0.2px;
  line-height: 1.2;
  margin-bottom: 4px;
}

.seasonal-card__desc {
  font-size: 1.4rem;
  color: #666;
  line-height: 1.6;
  margin: 0 auto;
}

.seasonal-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
  padding: 12px 36px;
  border: 1.5px solid #111;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: #111;
  background: transparent;
  text-decoration: none;
  position: relative;
  z-index: 3;
  transition: background .22s ease, color .22s ease, transform .18s ease;
  white-space: nowrap;
}

.seasonal-card__btn:hover {
  background: #111;
  color: #fff;
  transform: scale(1.03);
}

.seasonal-card__btn--filled {
  background: #111;
  color: #fff;
}

.seasonal-card__btn--filled:hover {
  background: #333;
  color: #fff;
}

/* ─── Arrows ────────────────────────────────────────────────── */
.seasonal-carousel__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-60%);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid #ddd;
  background: #fff;
  color: #111;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
  transition: background .2s, box-shadow .2s, transform .2s;
}

.seasonal-carousel__arrow:hover {
  background: #111;
  color: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,.18);
}

.seasonal-carousel__arrow--prev { left: -22px; }
.seasonal-carousel__arrow--next { right: -22px; }

.seasonal-carousel__arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}

@media (max-width: 600px) {
  .seasonal-carousel__arrow--prev { left: 0; }
  .seasonal-carousel__arrow--next { right: 0; }
}

/* ─── Dots ──────────────────────────────────────────────────── */
.seasonal-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.seasonal-carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: #ccc;
  cursor: pointer;
  padding: 0;
  transition: background .25s, transform .25s, width .25s;
}

.seasonal-carousel__dot.is-active {
  background: #111;
  width: 24px;
  border-radius: 999px;
}

/* ─── Accessibility ─────────────────────────────────────────── */
.seasonal-carousel__arrow:focus-visible,
.seasonal-carousel__dot:focus-visible,
.seasonal-card__btn:focus-visible {
  outline: 3px solid #0057ff;
  outline-offset: 3px;
}

/*-------------------------------------------Mobile Media Query Start-----------------------------------------------------------------*/
@media only screen and (min-width:320px) and (max-width: 374px)
{
  .seasonal-buying__heading{
    font-size: clamp(2.0rem, 2.6vw, 3.0rem);
  }
  .seasonal-buying__desc{
    font-size: clamp(1.4rem, 1.4vw, 1.6rem);
  }
  .seasonal-card__title {
    font-size: clamp(1.6rem, 2.2vw, 2.01rem);
  }
}
@media only screen and (min-width:375px) and (max-width: 405px)
{
  .seasonal-buying__heading{
    font-size: clamp(2.0rem, 2.6vw, 3.0rem);
  }
  .seasonal-buying__desc{
    font-size: clamp(1.4rem, 1.4vw, 1.6rem);
  }
  .seasonal-card__title {
    font-size: clamp(1.6rem, 2.2vw, 2.01rem);
  }
}
@media only screen and (min-width:406px) and (max-width: 459px)
{
  .seasonal-buying__heading{
    font-size: clamp(2.0rem, 2.6vw, 3.0rem);
  }
  .seasonal-buying__desc{
    font-size: clamp(1.4rem, 1.4vw, 1.6rem);
  }
  .seasonal-card__title {
    font-size: clamp(1.6rem, 2.2vw, 2.01rem);
  }
}
@media only screen and (min-width: 460px) and (max-width: 540px)
{
  .seasonal-buying__heading{
    font-size: clamp(2.0rem, 2.6vw, 3.0rem);
  }
  .seasonal-buying__desc{
    font-size: clamp(1.4rem, 1.4vw, 1.6rem);
  }
  .seasonal-card__title {
    font-size: clamp(1.6rem, 2.2vw, 2.01rem);
  }
}
@media only screen and (min-width: 541px)  and (max-width: 767px)
{
  .seasonal-buying__heading{
    font-size: clamp(2.0rem, 2.6vw, 3.0rem);
  }
  .seasonal-buying__desc{
    font-size: clamp(1.4rem, 1.4vw, 1.6rem);
  }
  .seasonal-card__title {
    font-size: clamp(1.6rem, 2.2vw, 2.01rem);
  }
}
/*-----------------------------------------------Mobile Media Query End---------------------------------------------------------------*/
/* END_SECTION:seasonal-buying */

/* START_SECTION:split-banner-carousel (INDEX:71) */
/* ============================================================
   Split Banner + Product Carousel
   ============================================================ */

:root {
  --sbc-black:       #0b0320;
  --sbc-text:        #1a1a1a;
  --sbc-muted:       #6b6b6b;
  --sbc-border:      #e8e8e8;
  --sbc-bg-card:     #ffffff;
  --sbc-bg-section:  #ffffff;
  --sbc-radius-card: 14px;
  --sbc-radius-btn:  8px;
  --sbc-arrow-sz:    40px;
  --sbc-ease:        cubic-bezier(0.4, 0, 0.2, 1);
  --sbc-dur:         0.26s;
}

.sbc-section {
  background: var(--sbc-bg-section);
  padding: clamp(28px, 4vw, 56px) 0;
  box-sizing: border-box;
}
.sbc-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(16px, 3vw, 40px);
}
.sbc-heading {
  font-size: clamp(1.2rem, 2.4vw, 2.4rem);
  font-weight: 700;
  color: var(--sbc-black);
  margin: 0 0 clamp(14px, 2vw, 24px);
  letter-spacing: -0.01em;
  line-height: 1.2;
}

/* ── Two-column layout ───────────────────────────────────── */
.sbc-layout {
  display: grid;
  grid-template-columns: 38% 1fr;
  gap: clamp(14px, 2vw, 24px);
  align-items: stretch;
}

/* ── Banner ──────────────────────────────────────────────── */
.sbc-banner {
  border-radius: var(--sbc-radius-card);
  overflow: hidden;
  position: relative;
}
.sbc-banner__link {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
}
.sbc-banner__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: fill;
  border-radius: var(--sbc-radius-card);
  transition: transform 0.42s var(--sbc-ease);
}
.sbc-banner__link:hover .sbc-banner__img { transform: scale(1.02); }
.sbc-banner__placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  min-height: 340px;
  height: 100%;
  background: #f0ede8;
  border-radius: var(--sbc-radius-card);
  color: rgba(0,0,0,0.28);
  font-size: 0.85rem;
  text-align: center;
  padding: 24px;
  box-sizing: border-box;
}

/* ── Carousel ────────────────────────────────────────────── */
.sbc-carousel-wrap {
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.sbc-track {
  position: relative;
  padding: 0 calc(var(--sbc-arrow-sz) + 8px);
  flex: 1;
}
.sbc-swiper {
  width: 100%;
  overflow: hidden;
  padding-bottom: 10px !important;
}
.sbc-slide {
  height: auto !important;
  display: flex !important;
  align-items: stretch;
}

/* ── Card ────────────────────────────────────────────────── */
.sbc-card {
  display: flex;
  flex-direction: column;
  background: var(--sbc-bg-card);
  border-radius: var(--sbc-radius-card);
  border: 1px solid var(--sbc-border);
  overflow: hidden;
  width: 100%;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
  transition: box-shadow var(--sbc-dur) var(--sbc-ease),
              transform var(--sbc-dur) var(--sbc-ease);
}
.sbc-card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.10);
  transform: translateY(-2px);
}

/* ── Card image area ─────────────────────────────────────── */
.sbc-card__img-wrap {
  position: relative;
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #f5f3ef;
}
.sbc-card__img-wrap--adapt { aspect-ratio: var(--sbc-product-image-ratio, 1); }
.sbc-card__img-wrap--square { aspect-ratio: 1 / 1; }
.sbc-card__img-wrap--portrait { aspect-ratio: 4 / 5; }
.sbc-card__img-wrap--landscape { aspect-ratio: 4 / 3; }
.sbc-card__img-wrap--wide { aspect-ratio: 16 / 9; }

.sbc-card__img-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: inherit;
  text-decoration: none;
}
.sbc-card__image-stage {
  position: absolute;
  inset: var(--sbc-image-padding);
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 0;
}
.sbc-card__scale-stage {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  transform: scale(var(--sbc-product-scale, 1));
  transform-origin: center center;
}
.sbc-card__img,
.sbc-card__placeholder {
  display: block;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  margin: 0 !important;
  padding: 0 !important;
}
.sbc-card__img {
  position: absolute;
  inset: 0;
  object-fit: var(--sbc-image-fit) !important;
  object-position: var(--sbc-image-position) !important;
  opacity: 1;
  transition: opacity 0.3s var(--sbc-ease), transform 0.38s var(--sbc-ease);
}
.sbc-card__img--secondary { opacity: 0; }
.sbc-card__img-wrap:not(.has-secondary-image):hover .sbc-card__img--primary {
  transform: scale(1.035);
}
.sbc-card__img-wrap.has-secondary-image:hover .sbc-card__img--primary {
  opacity: 0;
  transform: scale(1.025);
}
.sbc-card__img-wrap.has-secondary-image:hover .sbc-card__img--secondary {
  opacity: 1;
  transform: scale(1.025);
}
.sbc-card__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(0,0,0,0.20);
}

/* ── Badge ───────────────────────────────────────────────── */
.sbc-badge {
  position: absolute;
  top: 10px; left: 10px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  line-height: 1.5;
  white-space: nowrap;
  z-index: 4;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}
.sbc-badge--new-launch  { background: #1E4D2B; color: #fff; }
.sbc-badge--trending    { background: #E07820; color: #fff; }
.sbc-badge--best-seller { background: #1E4D2B; color: #fff; }
.sbc-badge--must-try    { background: #7B3FA0; color: #fff; }
.sbc-badge--sale        { background: #B02A1F; color: #fff; }

/* ── Favourite heart ─────────────────────────────────────── */
.sbc-fav {
  position: absolute;
  top: 8px; right: 8px;
  z-index: 5;
  background: rgba(255,255,255,0.92);
  border: none;
  border-radius: 50%;
  width: 34px; height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0,0,0,0.12);
  transition: transform var(--sbc-dur) var(--sbc-ease),
              box-shadow var(--sbc-dur) var(--sbc-ease);
  -webkit-tap-highlight-color: transparent;
  padding: 0;
}
.sbc-fav:hover {
  transform: scale(1.12);
  box-shadow: 0 3px 10px rgba(0,0,0,0.16);
}
.sbc-fav:active { transform: scale(0.92); }
.sbc-fav svg { pointer-events: none; }
.sbc-fav .sbc-fav__icon {
  fill: none;
  stroke: #999;
  stroke-width: 1.8;
  transition: fill var(--sbc-dur) var(--sbc-ease),
              stroke var(--sbc-dur) var(--sbc-ease);
}
.sbc-fav.is-fav .sbc-fav__icon {
  fill: #e63946;
  stroke: #e63946;
}
@keyframes sbc-heart-pop {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.35); }
  70%  { transform: scale(0.90); }
  100% { transform: scale(1); }
}
.sbc-fav.pop { animation: sbc-heart-pop 0.36s var(--sbc-ease) both; }

/* ── Card body ───────────────────────────────────────────── */
.sbc-card__body {
  padding: 14px 14px 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 4px;
  flex: 1;
}
.sbc-card__title {
  font-size: clamp(.88rem,1.3vw,1.5rem);
  font-weight: 600;
  line-height: 1.3;
  color: var(--sbc-text);
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  letter-spacing: 0.3px;
}
.sbc-card__title:hover { text-decoration: underline; }
.sbc-card__price {
  font-size: clamp(.88rem,1.2vw,1.4rem);
  font-weight: 600;
  color: var(--sbc-text);
  white-space: nowrap;
}
.sbc-card__price--compare {
  text-decoration: line-through;
  color: var(--sbc-muted);
  font-weight: 400;
  font-size: 0.82em;
  margin-right: 4px;
}

/* ── Card footer ─────────────────────────────────────────── */
.sbc-card__footer {
  padding: 12px 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: auto;
}

/* ── Variant select ──────────────────────────────────────── */
.sbc-variant-wrap { position: relative; }
.sbc-variant-select {
  width: -webkit-fill-available;
  appearance: none;
  -webkit-appearance: none;
  background: #fff;
  border: 1.5px solid var(--sbc-border);
  border-radius: var(--sbc-radius-btn);
  padding: 9px 34px 9px 12px;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--sbc-text);
  cursor: pointer;
  outline: none;
  transition: border-color var(--sbc-dur) var(--sbc-ease);
  letter-spacing: 0.21px;
}
.sbc-variant-select:focus { border-color: var(--sbc-black); }
.sbc-variant-wrap::after {
  content: '';
  position: absolute;
  right: 12px; top: 50%;
  transform: translateY(-50%);
  width: 0; height: 0;
  border-left: 4.5px solid transparent;
  border-right: 4.5px solid transparent;
  border-top: 5px solid var(--sbc-muted);
  pointer-events: none;
}

/* ── ATC + Qty ───────────────────────────────────────────── */
.sbc-atc-wrap {
  position: relative;
  height: 42px;
}
.sbc-atc-btn,
.sbc-qty-row {
  position: absolute;
  inset: 0;
  border-radius: var(--sbc-radius-btn);
  overflow: hidden;
  transition: opacity 0.22s var(--sbc-ease), transform 0.22s var(--sbc-ease);
}
.sbc-atc-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: -webkit-fill-available;
  height: 100%;
  background: #a12b8a;
  color: #fff;
  font-size: 1.42rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  gap: 7px;
  -webkit-tap-highlight-color: transparent;
  transition: background var(--sbc-dur) var(--sbc-ease),
              opacity 0.22s var(--sbc-ease),
              transform 0.22s var(--sbc-ease);
}
.sbc-atc-btn:hover  { background: #1a1035; }
.sbc-atc-btn:active { transform: scale(0.97); }
.sbc-atc-btn.loading { opacity: 0.7; pointer-events: none; }

/* Spinner */
.sbc-spinner {
  width: 16px; height: 16px;
  border: 2px solid rgba(255,255,255,0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: sbc-spin 0.6s linear infinite;
  display: none;
}
.sbc-atc-btn.loading .sbc-spinner { display: block; }
.sbc-atc-btn.loading .sbc-atc-label { display: none; }
@keyframes sbc-spin { to { transform: rotate(360deg); } }

/* Qty row */
.sbc-qty-row {
  display: flex;
  align-items: stretch;
  background: #fff;
  border: 1.5px solid var(--sbc-black);
  opacity: 0;
  transform: scale(0.96);
  pointer-events: none;
}
.sbc-qty-row.visible {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}
.sbc-atc-btn.hidden {
  opacity: 0;
  transform: scale(0.96);
  pointer-events: none;
}
.sbc-qty-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  flex-shrink: 0;
  background: none;
  border: none;
  font-size: 2.1rem;
  font-weight: 400;
  line-height: 1;
  color: var(--sbc-black);
  cursor: pointer;
  padding: 0;
  transition: background var(--sbc-dur) var(--sbc-ease);
  -webkit-tap-highlight-color: transparent;
}
.sbc-qty-btn:hover  { background: #f0f0f5; }
.sbc-qty-btn:active { background: #e0e0eb; }
.sbc-qty-display {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.52rem;
  font-weight: 700;
  color: var(--sbc-text);
  border-left: 1px solid var(--sbc-border);
  border-right: 1px solid var(--sbc-border);
  min-width: 0;
}

/* ── Arrows ──────────────────────────────────────────────── */
.sbc-arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  z-index: 10;
  width: var(--sbc-arrow-sz);
  height: var(--sbc-arrow-sz);
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid var(--sbc-border);
  color: var(--sbc-text);
  box-shadow: 0 2px 10px rgba(0,0,0,0.09);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: box-shadow var(--sbc-dur) var(--sbc-ease),
              transform var(--sbc-dur) var(--sbc-ease),
              opacity var(--sbc-dur) var(--sbc-ease);
  outline-offset: 3px;
  -webkit-tap-highlight-color: transparent;
}
.sbc-arrow--prev { left: 0; }
.sbc-arrow--next { right: 0; }
.sbc-arrow:hover {
  box-shadow: 0 4px 18px rgba(0,0,0,0.15);
  transform: translateY(-50%) scale(1.08);
}
.sbc-arrow:active { transform: translateY(-50%) scale(0.92); }
.sbc-arrow.swiper-button-disabled { opacity: 0.28; pointer-events: none; }

/* ── Dots ────────────────────────────────────────────────── */
.sbc-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-top: clamp(12px, 1.8vw, 20px);
  min-height: 14px;
  position: static !important;
  bottom: auto !important;
}
.sbc-dots .swiper-pagination-bullet {
  width: 7px; height: 7px;
  background: rgba(0,0,0,0.20);
  opacity: 1;
  margin: 0 !important;
  cursor: pointer;
  border-radius: 50%;
  transition: background var(--sbc-dur) var(--sbc-ease),
              width var(--sbc-dur) var(--sbc-ease),
              border-radius var(--sbc-dur) var(--sbc-ease);
}
.sbc-dots .swiper-pagination-bullet-active {
  background: var(--sbc-black);
  width: 22px;
  border-radius: 4px;
}

/* ── Tablet ──────────────────────────────────────────────── */
@media (min-width: 600px) and (max-width: 1023px) {
  .sbc-layout { grid-template-columns: 40% 1fr; gap: 16px; }
  .sbc-track { padding: 0 calc(var(--sbc-arrow-sz) + 6px); }
}

/* ── Mobile: stack vertically ────────────────────────────── */
@media (max-width: 599px) {
  .sbc-layout { grid-template-columns: 1fr; }
  .sbc-banner { aspect-ratio: 4 / 3; }
  .sbc-banner__img { height: 100%; }
  .sbc-section { --sbc-arrow-sz: 34px; }
  .sbc-track { padding: 0 calc(var(--sbc-arrow-sz) + 4px); }
  .sbc-card__body   { padding: 11px 11px 0; }
  .sbc-card__footer { padding: 10px 11px 12px; }
  .sbc-atc-wrap { height: 40px; }
  .sbc-qty-btn { width: 38px; }
}

/* ── Reduced motion ──────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .sbc-card, .sbc-card__img, .sbc-banner__img,
  .sbc-atc-btn, .sbc-qty-row, .sbc-fav,
  .sbc-arrow { transition: none !important; }
  .swiper-wrapper { transition-duration: 0ms !important; }
}

/* ── Wishlist Toast ──────────────────────────────────────── */
.sbc-wishlist-toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(16px);
  z-index: 9999;
  background: #1a1a1a;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.4;
  padding: 12px 20px;
  border-radius: 10px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.22);
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.28s ease, transform 0.28s ease;
  max-width: calc(100vw - 32px);
}
.sbc-wishlist-toast--visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.sbc-wishlist-toast--added   { background: #1E4D2B; }
.sbc-wishlist-toast--removed { background: #444; }
.sbc-wishlist-toast--info    { background: #1a1a1a; }
.sbc-wishlist-toast strong   { font-weight: 700; }
@media (max-width: 599px) {
  .sbc-wishlist-toast { bottom: 16px; font-size: 0.82rem; padding: 10px 16px; }
}
/* END_SECTION:split-banner-carousel */

/* START_SECTION:spotlight-carousel (INDEX:72) */
/* ============================================================
   SPOTLIGHT LOOPING CAROUSEL — STYLES
   ============================================================ */

.spotlight-carousel-section {
  --cream:       #ffffff;
  --orange:      #FFA94D;
  --black:       #000000;
  --green:       #4C7040;
  --green-light: #5A834D;
  --white:       #ffffff;
  --radius:      12px;
  --shadow:      0 4px 24px rgba(0,0,0,0.10);
  --transition:  0.45s cubic-bezier(0.4, 0, 0.2, 1);
  /* CSS-var card counts — set inline by Liquid */
  --cards-desktop: 4;
  --cards-tablet:  2;
  --cards-mobile:  2;
  --gap: 16px;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

/* ── Wave ── */
.spotlight-wave {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  line-height: 0;
  pointer-events: none;
  z-index: 0;
}
.spotlight-wave svg { display: block; width: 100%; height: 60px; }

/* ── Inner ── */
.spotlight-inner {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ── Heading ── */
.spotlight-heading-wrap { margin-bottom: 32px; padding-left: 4px; }
.spotlight-heading {
  display: block;
  align-items: center;
  gap: 10px;
  font-size: clamp(1.8rem, 3.5vw, 3.0rem);
  font-weight: 800;
  color: var(--black);
  margin: 0;
  letter-spacing: 0.3px;
  text-align: center;
}
.spotlight-stars {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  position: relative;
  top: -6px;
}
.star { display: inline-block; }
.star--small      { width: 16px; height: 16px; }
.star--large      { width: 32px; height: 32px; }
.star--top-right  { transform: translateY(-8px); }

/* ── Carousel wrapper ── */
.spotlight-carousel-wrapper {
  display: flex;
  align-items: center;
}

/* ── Track container ── */
.spotlight-track-container {
  overflow: hidden;
  width: 100%;
  cursor: grab;
  -webkit-user-select: none;
  user-select: none;
}
.spotlight-track-container:active { cursor: grabbing; }

/* ── Track ── */
.spotlight-track {
  display: flex;
  gap: var(--gap);
  transition: transform var(--transition);
  will-change: transform;
  margin: 0;
  padding: 10px 2px 18px;
  list-style: none;
}
.spotlight-track.no-transition { transition: none !important; }

/* ── Card base ──
   Width = (100% − gap × (N−1)) / N
   Using CSS custom properties for each breakpoint.
*/
.spotlight-card {
  /* Desktop default: var(--cards-desktop) */
  flex: 0 0 calc(
    (100% - var(--gap) * (var(--cards-desktop) - 1)) / var(--cards-desktop)
  );
  min-width: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.spotlight-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}

/* ── Image card ── */
.spotlight-card--image {
  background: #f0ede5;
  aspect-ratio: 1 / 1;
}
.spotlight-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.spotlight-card--image:hover .spotlight-card__image { transform: scale(1.04); }
.spotlight-card__image-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: #e8e2d6;
}
.spotlight-placeholder-svg { width: 55%; height: 55%; opacity: 0.4; }

/* ── Content card ── */
.spotlight-card--content {
  background: var(--card-bg, #4C7040);
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
}
.spotlight-card__content-inner {
  padding: clamp(16px, 4%, 32px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100%;
  gap: 14px;
}
.spotlight-card__product-name {
  font-size: clamp(0.8rem, 1.6vw, 1.7rem);
  font-weight: 500;
  color: #fff;
  margin: 0;
  line-height: 1.3;
}
.spotlight-card__review {
  font-size: clamp(0.7rem, 1.2vw, 1.3rem);
  color: rgba(255,255,255,0.90);
  margin: 0;
  line-height: 1.65;
  font-style: normal;
}
.spotlight-card__customer {
  font-size: clamp(0.65rem, 1vw, 1.4rem);
  color: rgba(255,255,255,0.90);
  font-weight: 500;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  font-style: normal;
  display: block;
}

/* ── Nav buttons ── */
.spotlight-nav {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 2px solid rgba(76,112,64,0.3);
  background: #fff;
  color: var(--green);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 5;
}
.spotlight-nav svg { width: 18px; height: 18px; }
.spotlight-nav--prev { margin-right: 10px; }
.spotlight-nav--next { margin-left:  10px; }
.spotlight-nav:hover {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
  transform: scale(1.08);
}
.spotlight-nav:focus-visible { outline: 3px solid var(--orange); outline-offset: 2px; }

/* ── Dots ── */
.spotlight-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}
.spotlight-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(76,112,64,0.25);
  border: none; cursor: pointer; padding: 0;
  transition: all 0.25s ease;
}
.spotlight-dot.is-active {
  background: var(--orange);
  width: 24px;
  border-radius: 4px;
}
.spotlight-dot:hover    { background: var(--green-light); }
.spotlight-dot:focus-visible { outline: 3px solid var(--orange); outline-offset: 2px; }

/* ── RESPONSIVE ──
   Override the card flex-basis using the tablet/mobile CSS vars
*/
@media (max-width: 1023px) {
  .spotlight-card {
    flex: 0 0 calc(
      (100% - var(--gap) * (var(--cards-tablet) - 1)) / var(--cards-tablet)
    );
  }
  .spotlight-inner { padding: 0 14px; }
  .spotlight-nav { width: 36px; height: 36px; }
}

@media (max-width: 767px) {
  .spotlight-card {
    flex: 0 0 calc(
      (100% - var(--gap) * (var(--cards-mobile) - 1)) / var(--cards-mobile)
    );
  }
  .spotlight-inner { padding: 0 10px; }
  .spotlight-heading-wrap { margin-bottom: 20px; }
  .spotlight-track { gap: 10px; padding: 6px 2px 14px; }
  .spotlight-nav { width: 30px; height: 30px; }
  .spotlight-nav svg { width: 14px; height: 14px; }
  .spotlight-nav--prev { margin-right: 6px; }
  .spotlight-nav--next { margin-left:  6px; }
  .spotlight-card__content-inner { gap: 8px; }
}

/* Native scroll fallback for very small screens */
@media (max-width: 380px) {
  .spotlight-nav { display: none; }
  .spotlight-track-container {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .spotlight-track-container::-webkit-scrollbar { display: none; }
  .spotlight-track { transition: none; }
  .spotlight-card { scroll-snap-align: start; }
}


/*-------------------------------------------Mobile Media Query Start-----------------------------------------------------------------*/
@media only screen and (min-width:320px) and (max-width: 374px)
{
  .tc-card__text{
    font-size: clamp(1.40rem, 1.3vw, 1.6rem);
  }
}
@media only screen and (min-width:375px) and (max-width: 405px)
{
  .tc-card__text{
    font-size: clamp(1.40rem, 1.3vw, 1.6rem);
  }
}
@media only screen and (min-width:406px) and (max-width: 459px)
{
  .tc-card__text{
    font-size: clamp(1.40rem, 1.3vw, 1.6rem);
  }
}
@media only screen and (min-width: 460px) and (max-width: 540px)
{
  .tc-card__text{
    font-size: clamp(1.40rem, 1.3vw, 1.6rem);
  }
}
@media only screen and (min-width: 541px)  and (max-width: 767px)
{
  .tc-card__text{
    font-size: clamp(1.40rem, 1.3vw, 1.6rem);
  }
}
/*-----------------------------------------------Mobile Media Query End---------------------------------------------------------------*/
/* END_SECTION:spotlight-carousel */

/* START_SECTION:testimonials-carousel (INDEX:74) */
/* ============================================================
   TESTIMONIAL CAROUSEL — SWIPER EDITION
   ============================================================ */

.tc-section {
  --orange:       #FFA94D;
  --black:        #000000;
  --avatar-size:  90px;
  --avatar-bleed: 30px;   /* exactly half of avatar, bleeds above card */
  --radius:       14px;
  --shadow:       0 6px 28px rgba(0,0,0,0.10);
  --center-shadow: 0 14px 44px rgba(255,181,98,0.45);

  position: relative;
  overflow: hidden;
}

/* ── Inner container ── */
.tc-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Heading ── */
.tc-heading-wrap { margin-bottom: 48px; text-align: center; }
.tc-heading {
  display: inline-flex;
  align-items: center;
  font-size: clamp(1.8rem, 3.5vw, 3.0rem);
  font-weight: 800;
  color: var(--black);
  margin: 0;
  letter-spacing: 0.2px;
}

/* ── Swiper overrides ── */
.tc-swiper {
  /* Give room above each slide so the avatar bleed is not clipped */
  padding-top: var(--avatar-bleed) !important;
  padding-bottom: 52px !important; /* room for pagination dots */
  overflow: visible !important;    /* allow avatar to poke above */
}

/* Clip horizontally only — use a parent mask */
.tc-inner {
  /* We rely on the inner max-width + hidden overflow from body */
}

/* ── Slide outer: stacks header + card ── */
.tc-slide { height: auto; }

.tc-slide__outer {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* ── Floating header row (stars / avatar / info) ──
   Lives above the card. Avatar protrudes down into the card
   via negative margin on the card.
── */
.tc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  position: relative;
  z-index: 2;
  margin-bottom: calc(-1 * var(--avatar-bleed));
  padding: 0 12px;

  /* Ensure full width */
  width: -webkit-fill-available;
}


/* ── Stars ── */
.tc-stars {
    display: flex;
    gap: 3px;
    align-items: center;
    flex: 1; /* Give equal width to left section */
    min-width: 0;
    margin-bottom: 20px;
}
.tc-star        { width: 22px; height: 22px; flex-shrink: 0; }
.tc-star--empty { opacity: 0.3; }

/* ── Avatar circle ── */
.tc-avatar-wrap {
  width: var(--avatar-size);
  height: var(--avatar-size);
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 4px 16px #00000026;
  background: #e8e0d5;
  flex-shrink: 0;
  position: relative;
  z-index: 3;
  /* Center avatar absolutely if needed */
  margin: 0 auto;
}
.tc-avatar {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.tc-avatar--placeholder {
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.08);
}
.tc-avatar--placeholder svg { width: 60%; height: 60%; }

/* ── Client info ── */
.tc-client-info {
    text-align: right;
    flex: 1;              /* Give equal width to right section */
    min-width: 0;
}
.tc-client-name {
  font-size: clamp(0.75rem, 1.2vw, 1.5rem);
  font-weight: 800;
  color: #3a3a3a;
  margin: 0 0 2px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1;
}
.tc-client-desig {
  font-size: clamp(0.65rem, 1vw, 1.1rem);
  color: #777;
  margin: 0;  
  margin-bottom: 20px !important;
  line-height: 1.3;
  letter-spacing: 0.3px;
}
/* ── Card ── */
.tc-card {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  /* Top padding accommodates the avatar that bleeds in from above */
  padding: calc(var(--avatar-bleed) + 18px) 22px 26px;
  flex: 1;
  display: flex;
  align-items: flex-start;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  position: relative;
  z-index: 1;
  min-height: 180px;
}

.tc-card__text {
  font-size: clamp(0.80rem, 1.3vw, 1.6rem);
  color: #000000;
  font-weight: 500;
  line-height: 1.72;
  margin: 0;
  padding: 0;
  border: none;
  text-align: left;
  letter-spacing: 0.2px;
}

/* ── Center slide highlight (Swiper active) ── */
.swiper-slide-active   .tc-card { box-shadow: var(--center-shadow); }
.swiper-slide-active   .tc-card { transform: none; }

/* On desktop with centeredSlides, lift the active card */
@media (min-width: 1024px) {
  .swiper-slide-active .tc-card {
    transform: translateY(-6px);
    box-shadow: var(--center-shadow);
  }
}

/* ── Swiper nav arrows ── */
.tc-btn-prev,
.tc-btn-next {
  width: 42px !important;
  height: 42px !important;
  border-radius: 50% !important;
  background: #fff !important;
  border: 2px solid rgba(255,165,77,0.35) !important;
  color: var(--orange) !important;
  transition: all 0.2s ease !important;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08) !important;
  top: calc(50% + var(--avatar-bleed) / 2) !important; /* vertically centered on card */
}
.tc-btn-prev::after,
.tc-btn-next::after {
  font-size: 14px !important;
  font-weight: 900 !important;
  color: var(--orange) !important;
}
.tc-btn-prev:hover,
.tc-btn-next:hover {
  background: var(--orange) !important;
  border-color: var(--orange) !important;
}
.tc-btn-prev:hover::after,
.tc-btn-next:hover::after { color: #fff !important; }

.tc-btn-prev { left: -4px !important; }
.tc-btn-next { right: -4px !important; }

/* ── Pagination dots ── */
.tc-pagination { bottom: 6px !important; }
.tc-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: rgba(255,165,77,0.35);
  opacity: 1;
  transition: all 0.25s ease;
}
.tc-pagination .swiper-pagination-bullet-active {
  background: var(--orange);
  width: 26px;
  border-radius: 4px;
}

/* ═══════════════════════════════════
   TABLET
═══════════════════════════════════ */
@media (max-width: 1023px) {
  .tc-inner  { padding: 0 14px; }
  .tc-btn-prev { left: 0 !important; }
  .tc-btn-next { right: 0 !important; }
  .swiper-slide-active .tc-card { transform: none; }
}

/* ═══════════════════════════════════
   MOBILE
═══════════════════════════════════ */
@media (max-width: 767px) {
  :root {
    --avatar-size:  84px;
    --avatar-bleed: 42px;
  }
  .tc-inner         { padding: 0 10px; }
  .tc-heading-wrap  { margin-bottom: 10px; }

  /* Mobile: center everything in the header */
  .tc-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
    margin-bottom: calc(-1 * var(--avatar-bleed));
    padding: 0 8px;
  }
  .tc-client-info   { text-align: center; }
  .tc-client-name,
  .tc-client-desig  { text-align: center; }
  .tc-stars         { justify-content: center; }
  .tc-card__text    { text-align: center; }

  .tc-btn-prev,
  .tc-btn-next {
    width: 36px !important;
    height: 36px !important;
  }
  .tc-btn-prev { left: 0 !important; }
  .tc-btn-next { right: 0 !important; }
  .tc-btn-prev::after,
  .tc-btn-next::after { font-size: 12px !important; }
}

/*-------------------------------------------Mobile Media Query Start-----------------------------------------------------------------*/
@media only screen and (min-width:320px) and (max-width: 374px)
{
  .tc-card__text{
    font-size: clamp(1.40rem, 1.3vw, 1.6rem);
  }
  .tc-client-name{
    font-size: clamp(1.6rem, 1.2vw, 1.5rem);
  }
  .tc-client-desig{
    font-size: clamp(1.4rem, 1vw, 1.1rem);
    margin-bottom: 40px !important
  }
  .tc-avatar-wrap{
    order: 1;
  }
  .tc-client-info{
    order: 2;
  }
  .tc-stars{
    order: 2;
    margin-bottom: 10px;
    margin-top: 10px;
  }
  .tc-swiper{
    margin-top: 10px!important;
  }
}
@media only screen and (min-width:375px) and (max-width: 405px)
{
  .tc-card__text{
    font-size: clamp(1.40rem, 1.3vw, 1.6rem);
  }
  .tc-client-name{
    font-size: clamp(1.6rem, 1.2vw, 1.5rem);
  }
  .tc-client-desig{
    font-size: clamp(1.4rem, 1vw, 1.1rem);
    margin-bottom: 40px !important
  }
  .tc-avatar-wrap{
    order: 1;
  }
  .tc-client-info{
    order: 2;
  }
  .tc-stars{
    order: 2;
    margin-bottom: 10px;
    margin-top: 10px;
  }
  .tc-swiper{
    margin-top: 10px!important;
  }
}
@media only screen and (min-width:406px) and (max-width: 459px)
{
  
  .tc-card__text{
    font-size: clamp(1.40rem, 1.3vw, 1.6rem);
  }
  .tc-client-name{
    font-size: clamp(1.6rem, 1.2vw, 1.5rem);
  }
  .tc-client-desig{
    font-size: clamp(1.4rem, 1vw, 1.1rem);
    margin-bottom: 40px !important
  }
  .tc-avatar-wrap{
    order: 1;
  }
  .tc-client-info{
    order: 2;
  }
  .tc-stars{
    order: 2;
    margin-bottom: 10px;
    margin-top: 10px;
  }
  .tc-swiper{
    margin-top: 10px!important;
  }
}
@media only screen and (min-width: 460px) and (max-width: 540px)
{
  .tc-card__text{
    font-size: clamp(1.40rem, 1.3vw, 1.6rem);
  }
  .tc-client-name{
    font-size: clamp(1.6rem, 1.2vw, 1.5rem);
  }
  .tc-client-desig{
    font-size: clamp(1.4rem, 1vw, 1.1rem);
    margin-bottom: 40px !important
  }
  .tc-avatar-wrap{
    order: 1;
  }
  .tc-client-info{
    order: 2;
  }
  .tc-stars{
    order: 2;
    margin-bottom: 10px;
    margin-top: 10px;
  }
  .tc-swiper{
    margin-top: 10px!important;
  }
}
@media only screen and (min-width: 541px)  and (max-width: 767px)
{
  .tc-card__text{
    font-size: clamp(1.40rem, 1.3vw, 1.6rem);
  }
  .tc-client-name{
    font-size: clamp(1.6rem, 1.2vw, 1.5rem);
  }
  .tc-client-desig{
    font-size: clamp(1.4rem, 1vw, 1.1rem);
    margin-bottom: 40px !important
  }
  .tc-avatar-wrap{
    order: 1;
  }
  .tc-client-info{
    order: 2;
  }
  .tc-stars{
    order: 2;
    margin-bottom: 10px;
    margin-top: 10px;
  }
  .tc-swiper{
    margin-top: 10px!important;
  }
}
/*-----------------------------------------------Mobile Media Query End---------------------------------------------------------------*/
/* END_SECTION:testimonials-carousel */