/* ============================================================
   JKLS Agriculture Spares – Main Stylesheet
   Structure:
   1.  CSS Variables & Reset
   2.  Typography
   3.  Utility Classes
   4.  Top Bar
   5.  Header / Navbar
   6.  Mobile Menu
   7.  Hero Section
   8.  About Section
   9.  Stats Strip
   10. Clients Carousel
   11. Why Choose Us
   12. Categories
   13. Best Sellers / Products
   14. FAQs
   15. Testimonials Carousel
   16. Contact / Enquiry
   17. Footer
   18. Custom Cursor
   19. Animations & Reveal
   20. Responsive Breakpoints
   21. Prefers Reduced Motion
============================================================ */

/* ============================================================
   1. CSS VARIABLES & RESET
============================================================ */
:root {
  /* Brand Colors */
  --color-cream:        #F6F4F1;
  --color-soft-cream:   #ECE2CE;
  --color-vanilla:      #F5EAB9;
  --color-jonquil:      #EAC800;
  --color-golden:       #F2B635;
  --color-olive:        #7E8407;
  --color-dark-moss:    #254E06;
  --color-deep-green:   #073F32;
  --color-text-green:   #173C31;
  --color-muted:        #66766D;
  --color-white:        #FFFFFF;

  /* Semantic Roles */
  --bg-primary:         var(--color-cream);
  --bg-section-alt:     var(--color-soft-cream);
  --text-primary:       var(--color-text-green);
  --text-muted:         var(--color-muted);
  --accent:             var(--color-jonquil);
  --accent-warm:        var(--color-golden);

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  /* Sizing & Spacing */
  --container-max:  1200px;
  --section-py:     5rem;
  --section-py-sm:  3rem;
  --radius-card:    16px;
  --radius-sm:      8px;
  --radius-pill:    999px;

  /* Shadows */
  --shadow-card:    0 4px 24px rgba(7, 63, 50, 0.08);
  --shadow-hover:   0 12px 40px rgba(7, 63, 50, 0.15);
  --shadow-btn:     0 4px 16px rgba(234, 200, 0, 0.3);

  /* Transitions */
  --transition-fast:   150ms ease;
  --transition-base:   250ms ease;
  --transition-slow:   400ms ease;

  /* Z-index Scale */
  --z-topbar:   10;
  --z-header:   20;
  --z-mobile:   30;
  --z-cursor:   9999;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  overflow-x: hidden;
}

img, video {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

ul { list-style: none; }

button {
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
  background: none;
}

input, select, textarea {
  font-family: var(--font-body);
}

svg {
  display: inline-block;
  flex-shrink: 0;
}

/* ============================================================
   2. TYPOGRAPHY
============================================================ */
.heading-1 {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.heading-2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

.heading-3 {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 600;
  line-height: 1.3;
  color: var(--text-primary);
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-olive);
  margin-bottom: 0.75rem;
}

.body-text {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--text-muted);
}

/* ============================================================
   3. UTILITY CLASSES
============================================================ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.section {
  padding-block: var(--section-py);
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: 3.5rem;
}

.section-desc {
  font-size: 1.0625rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-top: 1rem;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-pill);
  transition: background var(--transition-base),
              color var(--transition-base),
              box-shadow var(--transition-base),
              transform var(--transition-fast);
  cursor: pointer;
  white-space: nowrap;
}

.btn svg { width: 18px; height: 18px; transition: transform var(--transition-fast); }
.btn:hover svg { transform: translateX(3px); }

.btn--primary {
  background: var(--color-text-green);
  color: var(--color-white);
}
.btn--primary:hover {
  background: var(--color-deep-green);
  box-shadow: 0 6px 24px rgba(23, 60, 49, 0.3);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--color-text-green);
  border: 1.5px solid var(--color-text-green);
}
.btn--outline:hover {
  background: var(--color-text-green);
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn--large {
  font-size: 1rem;
  padding: 0.9rem 2.25rem;
}

.btn--full { width: 100%; justify-content: center; }

/* ---- IMAGE PLACEHOLDERS ---- */
.img-placeholder {
  background: var(--color-soft-cream);
  border: 2px dashed var(--color-golden);
  border-radius: var(--radius-card);
  overflow: hidden;
  position: relative;
}

.img-placeholder__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 2rem;
  height: 100%;
  color: var(--color-muted);
  text-align: center;
}

.img-placeholder__inner svg {
  width: 48px;
  height: 48px;
  opacity: 0.45;
}

.img-placeholder__inner span {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--color-muted);
  letter-spacing: 0.03em;
}

/* ============================================================
   4. TOP BAR
============================================================ */
.top-bar {
  background: #F6F4F1;
  color: #073F32;
  font-size: 0.8125rem;
  font-weight: 500;
  padding-block: 0.5rem;
  position: relative;
  z-index: var(--z-topbar);
  border-bottom: 1px solid rgba(7, 63, 50, 0.12);
}

.top-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.top-bar__item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: #073F32;
  transition: color var(--transition-fast);
}

.top-bar__item:hover { color: #F2B635; }

.top-bar__icon {
  width: 14px;
  height: 14px;
  opacity: 0.75;
}

/* Top-strip announcement extras */
.top-bar__message { font-weight: 500; gap: 0.45rem; }
.top-bar__msg-icon { font-size: 0.95rem; }
.top-bar__msg-sub { opacity: 0.75; font-weight: 400; }
.top-bar__link { text-decoration: underline; text-underline-offset: 3px; }
.top-bar__btn {
  background: #F2B635;
  color: #073F32 !important;
  padding: 4px 12px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.82rem;
  transition: background 0.15s ease, transform 0.05s ease;
}
.top-bar__btn:hover { background: #e6a91d; }
.top-bar__btn:active { transform: translateY(1px); }

/* ============================================================
   5. HEADER / NAVBAR
============================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  background: #073F32;
  border-bottom: 1px solid rgba(246, 244, 241, 0.14);
  box-shadow: 0 2px 20px rgba(7, 63, 50, 0.25);
  transform: translateY(-100%);
  animation: headerSlideDown 0.6s 0.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes headerSlideDown {
  to { transform: translateY(0); }
}

.header__inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  height: 72px;
}

/* Logo */
.header__logo { flex-shrink: 0; }

.logo-placeholder {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-placeholder__text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: #F6F4F1;
  letter-spacing: -0.02em;
}

.logo-placeholder__sub {
  font-family: var(--font-body);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(242, 182, 53, 0.75);
}

.logo-placeholder--footer .logo-placeholder__text { color: var(--color-vanilla); }
.logo-placeholder--footer .logo-placeholder__sub  { color: rgba(245, 234, 185, 0.6); }

/* Nav */
.header__nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav__link {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(246, 244, 241, 0.82);
  padding: 0.45rem 0.65rem;
  border-radius: var(--radius-sm);
  transition: color var(--transition-fast), background var(--transition-fast);
  white-space: nowrap;
}

.nav__link:hover {
  color: #F6F4F1;
  background: rgba(246, 244, 241, 0.1);
}
.nav__link.active {
  color: #F2B635;
  background: rgba(242, 182, 53, 0.15);
}

/* CTA */
.header__cta {
  flex-shrink: 0;
  font-size: 0.875rem;
  padding: 0.6rem 1.25rem;
  background: #F2B635;
  color: #073F32;
  border: none;
}

.header__cta:hover {
  background: #F6F4F1;
  color: #073F32;
  box-shadow: 0 4px 18px rgba(242, 182, 53, 0.35);
  transform: translateY(-2px);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  margin-left: auto;
  flex-shrink: 0;
}

.hamburger__line {
  display: block;
  width: 24px;
  height: 2px;
  background: #F6F4F1;
  border-radius: 2px;
  transition: transform var(--transition-base), opacity var(--transition-base);
  transform-origin: center;
}

.hamburger.is-open .hamburger__line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open .hamburger__line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.is-open .hamburger__line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   6. MOBILE MENU / SIDEBAR
============================================================ */

/* Semi-transparent overlay behind sidebar */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: calc(var(--z-mobile) - 1);
  opacity: 0;
  transition: opacity var(--transition-slow);
}

.mobile-overlay.is-active {
  display: block;
  opacity: 1;
}

/* Sidebar panel */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(320px, 85vw);
  background: #073F32;
  z-index: var(--z-mobile);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem 1.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: opacity var(--transition-slow),
              visibility var(--transition-slow),
              transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: -12px 0 40px rgba(0, 0, 0, 0.22);
  border-left: 1px solid rgba(246, 244, 241, 0.14);
  overflow-y: auto;
}

.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* Close button inside sidebar */
.mobile-menu__close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(246, 244, 241, 0.12);
  border-radius: 50%;
  color: #F6F4F1;
  border: none;
  cursor: pointer;
  transition: background var(--transition-fast);
}

.mobile-menu__close:hover {
  background: rgba(246, 244, 241, 0.22);
}

.mobile-menu__close svg {
  width: 18px;
  height: 18px;
}

.mobile-nav__list {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 2rem;
  width: 100%;
}

.mobile-nav__link {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 4.5vw, 1.6rem);
  font-weight: 600;
  color: rgba(246, 244, 241, 0.85);
  padding: 0.6rem 1rem;
  display: block;
  border-radius: var(--radius-sm);
  transition: color var(--transition-fast), background var(--transition-fast);
}

.mobile-nav__link:hover {
  color: #F2B635;
  background: rgba(246, 244, 241, 0.08);
}

.mobile-nav__cta { margin-top: 0.75rem; }

/* ============================================================
   7. HERO SECTION
============================================================ */
.hero {
  position: relative;
  width: 100%;
  height: 90vh;
  overflow: hidden;
}

.hero__video-wrap {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Scroll indicator */
.hero__scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: scrollBounce 2s infinite ease-in-out;
}

.hero__scroll-text {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-white);
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.9), rgba(255,255,255,0));
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ============================================================
   8. ABOUT SECTION
============================================================ */
.about {
  background: #FFF6DA;
}

/* Desktop: image spans left column across both rows; text stacks in right column */
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    "img top"
    "img bottom";
  column-gap: 4.5rem;
  row-gap: 1.75rem;
  align-items: start;
}

.about__image-wrap {
  grid-area: img;
  align-self: center;
  position: relative;
}

.about__text-top    { grid-area: top; }
.about__text-bottom { grid-area: bottom; }

.img-placeholder--about {
  aspect-ratio: 4 / 5;
}

.about__accent {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 48%;
  aspect-ratio: 1;
  background: var(--color-vanilla);
  border-radius: var(--radius-card);
  z-index: -1;
}

.about__desc {
  margin-top: 1.25rem;
  margin-bottom: 2rem;
}

.about__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.about__feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.about__feature-item strong {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.2rem;
}

.about__feature-item p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.feature-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-vanilla);
  border-radius: var(--radius-sm);
  color: var(--color-dark-moss);
}

.feature-icon svg { width: 20px; height: 20px; }

/* ============================================================
   9. STATS STRIP
============================================================ */
.stats {
  background: var(--color-deep-green);
  padding-block: 4rem;
}

.stats__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.stat-item {
  text-align: center;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 50%;
  width: 1px;
  background: rgba(255, 255, 255, 0.15);
}

.stat-item__number {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--color-jonquil);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-item__label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.03em;
}

/* ============================================================
   10. CLIENTS CAROUSEL
============================================================ */
.clients {
  background: #EFF7EF;
  overflow: hidden;
}

.carousel {
  overflow: hidden;
  position: relative;
  padding-bottom: 0.5rem;
}

.carousel__track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
}

/* Clients Carousel */
.clients-carousel .carousel__track {
  animation: scrollLeft 32s linear infinite;
}

.clients-carousel:hover .carousel__track {
  animation-play-state: paused;
}

/* =======================================================
   ABOUT → FEATURED PRODUCTS CAROUSEL
   Smooth infinite marquee. Items rendered twice in markup;
   the track translates -50% so the loop is seamless.
   ======================================================= */
.about-products__head {
  text-align: center;
  margin-top: 3.5rem;
  margin-bottom: 1.25rem;
}
.about-products__title {
  margin: 0.25rem 0 0;
}

.about-products-carousel {
  --ap-card-w: 240px;
  --ap-gap:    1.25rem;
  overflow: hidden;
  position: relative;
  padding: 0.75rem 0 1rem;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}
.about-products-carousel .carousel__track {
  display: flex;
  gap: var(--ap-gap);
  width: max-content;
  animation: scrollLeft 38s linear infinite;
  will-change: transform;
}
.about-products-carousel:hover .carousel__track {
  animation-play-state: paused;
}

/* Outlined product card */
.ap-card {
  flex-shrink: 0;
  width: var(--ap-card-w);
  background: #fff;
  border: 1.5px solid var(--c-brand, #2e7d32);
  border-radius: var(--radius-card, 14px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 2px rgba(15, 23, 42, .04);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.ap-card:hover {
  transform: translateY(-4px);
  border-color: #f59e0b;
  box-shadow: 0 14px 30px rgba(46, 125, 50, .14);
}
.ap-card__media {
  aspect-ratio: 4 / 3;
  background: #f6f8f6;
  overflow: hidden;
  border-bottom: 1px solid rgba(46, 125, 50, .12);
}
.ap-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.ap-card:hover .ap-card__media img {
  transform: scale(1.06);
}
.ap-card__body {
  padding: 0.85rem 1rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.ap-card__name {
  margin: 0;
  font-size: 0.98rem;
  font-weight: 600;
  color: #1f2a37;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.55em;
}
.ap-card__link {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #2e7d32;
  text-decoration: none;
  padding: 6px 12px;
  border: 1.5px solid #2e7d32;
  border-radius: 999px;
  transition: background .2s ease, color .2s ease;
}
.ap-card__link svg { width: 14px; height: 14px; }
.ap-card__link:hover {
  background: #2e7d32;
  color: #fff;
}

.about-products__foot {
  text-align: center;
  margin-top: 1.25rem;
}

/* Respect reduced motion: stop the marquee. */
@media (prefers-reduced-motion: reduce) {
  .about-products-carousel .carousel__track { animation: none; }
}

@media (max-width: 600px) {
  .about-products-carousel { --ap-card-w: 200px; --ap-gap: 1rem; }
  .about-products-carousel .carousel__track { animation-duration: 28s; }
}

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

.client-card {
  flex-shrink: 0;
  width: 240px;
  border-radius: var(--radius-card);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-card);
  cursor: pointer;
}

.client-card:hover .img-placeholder--client {
  transform: scale(1.03);
}

.img-placeholder--client {
  aspect-ratio: 3 / 4;
  border-radius: 0;
  border: none;
  transition: transform var(--transition-slow);
}

.client-card__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(7, 63, 50, 0.88) 0%, transparent 100%);
  padding: 2rem 1rem 1rem;
  border-radius: 0;
}

.client-card__role {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-white);
  letter-spacing: 0.03em;
}

/* ============================================================
   11. WHY CHOOSE US
============================================================ */
.why-choose {
  background: #FFE6A6;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.why-card {
  background: #F6F4F1;
  border-radius: var(--radius-card);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(7, 63, 50, 0.10);
  cursor: default;
  transition: transform 0.35s ease-out, box-shadow 0.35s ease-out;
}

/* Expanding dark green circle from top-right corner */
.why-card::before {
  content: '';
  position: absolute;
  z-index: 0;
  top: -16px;
  right: -16px;
  background: #073F32;
  height: 36px;
  width: 36px;
  border-radius: 50%;
  transform: scale(1);
  transform-origin: center center;
  transition: transform 0.45s ease-out;
}

/* Golden arrow indicator sitting on top of circle */
.why-card::after {
  content: '↗';
  position: absolute;
  top: 3px;
  right: 8px;
  color: #F2B635;
  font-size: 0.75rem;
  font-weight: 700;
  z-index: 2;
  line-height: 1;
}

.why-card:hover::before,
.why-card:focus-within::before {
  transform: scale(5);
}

.why-card:hover,
.why-card:focus-within {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

/* All card content above the expanding circle */
.why-card__icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-vanilla);
  border-radius: var(--radius-sm);
  color: var(--color-dark-moss);
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
  transition: background 0.35s ease, color 0.35s ease;
}

.why-card__icon svg {
  width: 26px;
  height: 26px;
  transition: transform 0.35s ease;
}

.why-card:hover .why-card__icon,
.why-card:focus-within .why-card__icon {
  background: #F2B635;
  color: #073F32;
}

.why-card:hover .why-card__icon svg,
.why-card:focus-within .why-card__icon svg {
  transform: scale(1.08);
}

.why-card__title {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.625rem;
  position: relative;
  z-index: 1;
}

.why-card__desc {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.65;
  position: relative;
  z-index: 1;
}

/* Mobile why carousel – hidden on desktop */
.why-carousel { display: none; }

/* ============================================================
   12. CATEGORIES
============================================================ */
.categories {
  background: #C3E6C7;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.cat-card {
  border-radius: var(--radius-card);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-card);
  cursor: pointer;
}

.cat-card:hover .img-placeholder--category {
  transform: scale(1.05);
}

.cat-card__image-wrap {
  overflow: hidden;
  border-radius: var(--radius-card);
}

.img-placeholder--category {
  aspect-ratio: 16 / 9;
  border-radius: 0;
  border: none;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.cat-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(7, 63, 50, 0.82) 0%,
    rgba(7, 63, 50, 0.25) 50%,
    transparent 100%
  );
  border-radius: var(--radius-card);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
  transition: background var(--transition-base);
}

.cat-card:hover .cat-card__overlay {
  background: linear-gradient(
    to top,
    rgba(7, 63, 50, 0.92) 0%,
    rgba(7, 63, 50, 0.4) 55%,
    transparent 100%
  );
}

.cat-card__overlay-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.cat-card__name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-white);
}

.cat-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-jonquil);
  letter-spacing: 0.04em;
  transition: gap var(--transition-fast), color var(--transition-fast);
  cursor: pointer;
}

.cat-card__cta svg { width: 16px; height: 16px; }
.cat-card:hover .cat-card__cta { gap: 0.55rem; color: var(--color-vanilla); }

/* ============================================================
   13. BEST SELLERS / PRODUCTS
============================================================ */
.best-sellers {
  background: #FFF6DA;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

/* (product-card styles moved to final block at end of file) */

.best-sellers__cta-wrap {
  text-align: center;
}

/* ============================================================
   14. FAQs
============================================================ */
.faqs {
  background: #EFF7EF;
}

.faqs__inner .section-header {
  margin-bottom: 3rem;
}

.faq-list {
  max-width: 780px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(246, 244, 241, 0.12);
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.faq-item.is-open {
  border-color: rgba(242, 182, 53, 0.5);
  box-shadow: 0 6px 28px rgba(7, 63, 50, 0.15);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: #F6F4F1;
  cursor: pointer;
  background: #073F32;
  border: 1px solid rgba(246, 244, 241, 0.12);
  transition: background var(--transition-base), color var(--transition-fast);
}

.faq-question:hover {
  background: #0D5442;
  color: #F6F4F1;
}

.faq-item.is-open .faq-question {
  background: #073F32;
  color: #F6F4F1;
}

.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  position: relative;
}

.faq-icon svg {
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transition: opacity var(--transition-fast), transform var(--transition-fast);
  color: #F2B635;
  stroke: #F2B635;
}

.icon-plus  { transform: translate(-50%, -50%) rotate(0deg); }
.icon-minus { transform: translate(-50%, -50%) rotate(0deg); opacity: 0; }

.faq-item.is-open .icon-plus  { opacity: 0; transform: translate(-50%, -50%) rotate(45deg); }
.faq-item.is-open .icon-minus { opacity: 1; }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1),
              padding var(--transition-slow);
}

.faq-answer {
  background: #F6F4F1;
}

.faq-answer p {
  padding: 1rem 1.5rem 1.5rem;
  font-size: 0.9375rem;
  color: #173C31;
  line-height: 1.7;
  border-top: 1px solid rgba(7, 63, 50, 0.10);
}

.faq-item.is-open .faq-answer { max-height: 300px; }

/* ============================================================
   15. TESTIMONIALS CAROUSEL
============================================================ */
.testimonials {
  background: var(--color-deep-green);
  padding-block: var(--section-py);
  overflow: hidden;
}

.testimonials .eyebrow { color: var(--color-jonquil); }
.testimonials .heading-2 { color: var(--color-white); }
.testimonials .section-desc { color: rgba(255,255,255,0.65); }

.testimonials-carousel .carousel__track {
  animation: scrollLeft 48s linear infinite;
}

.testimonials-carousel:hover .carousel__track {
  animation-play-state: paused;
}

/* ── Testimonial Card – Conic-gradient comet border ──────── */
/* Replaces the old spinning-bar approach with an elegant
   "chasing light" that sweeps around the card perimeter.
   Uses @property for smooth CSS animation of the angle.     */

.testimonial-card {
  flex-shrink: 0;
  width: 340px;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: #0C4238;
  border: 1.5px solid rgba(242, 182, 53, 0.16);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
              border-color 0.4s ease,
              box-shadow 0.4s ease;
}

/* Animated conic-gradient "comet" sweeping the card border */
.testimonial-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 1.5px;                 /* border thickness */
  background: conic-gradient(
    from var(--tc-angle, 0deg),
    transparent      0deg,
    rgba(242,182,53,.08)  22deg,
    rgba(242,182,53,.55)  45deg,
    #FFF6DA              65deg,   /* bright comet head */
    rgba(242,182,53,.55)  85deg,
    rgba(242,182,53,.08) 108deg,
    transparent     148deg
  );
  /* Mask technique: show only the border ring, not the fill */
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  animation: tcBorderChase 5s linear infinite;
  pointer-events: none;
  z-index: 0;
}

/* Remove old ::after inner background */
.testimonial-card::after { content: none; }

.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: rgba(242, 182, 53, 0.42);
  box-shadow: 0 18px 52px rgba(7, 63, 50, 0.42);
}

/* Content wrapper stays above the border pseudo-element */
.testimonial-inner {
  position: relative;
  z-index: 2;
  padding: 1.75rem;
}

.testimonial-card__header {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin-bottom: 0.875rem;
}

.avatar-placeholder {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 1px dashed rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: rgba(255,255,255,0.6);
}

.avatar-placeholder svg { width: 28px; height: 28px; }

.testimonial-card__name {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #F6F4F1;
}

.testimonial-card__role {
  display: block;
  font-size: 0.8125rem;
  color: rgba(246, 244, 241, 0.6);
  margin-top: 0.1rem;
}

.testimonial-card__stars {
  color: #F2B635;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.875rem;
}

.testimonial-card__text {
  font-size: 0.9375rem;
  color: rgba(246, 244, 241, 0.85);
  line-height: 1.7;
  font-style: italic;
}

/* ============================================================
   16. CONTACT / ENQUIRY FORM
============================================================ */
.contact {
  background: #FFE6A6;
}

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.contact__desc {
  margin-top: 1rem;
  margin-bottom: 2.5rem;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #F6F4F1;
  border-radius: var(--radius-card);
  padding: 1.125rem 1.5rem;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  cursor: pointer;
}

.contact-card--static { cursor: default; }

.contact-card:not(.contact-card--static):hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.contact-card__icon {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-deep-green);
  border-radius: var(--radius-sm);
  color: var(--color-jonquil);
  flex-shrink: 0;
}

.contact-card__icon svg { width: 22px; height: 22px; }

.contact-card__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 0.2rem;
}

.contact-card__value {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-primary);
}

/* Form */
.enquiry-form {
  background: #F6F4F1;
  border-radius: var(--radius-card);
  padding: 2.5rem;
  box-shadow: 0 8px 40px rgba(7, 63, 50, 0.12);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  border: 1px solid rgba(7, 63, 50, 0.10);
}

.enquiry-form__title {
  grid-column: 1 / -1;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.form-group--full { grid-column: 1 / -1; }

.form-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
}

.form-label span { color: var(--color-dark-moss); }

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(7, 63, 50, 0.14);
  border-radius: var(--radius-sm);
  background: #FFFFFF;
  color: #173C31;
  font-size: 0.9375rem;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  outline: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-muted);
  opacity: 0.7;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--color-deep-green);
  box-shadow: 0 0 0 3px rgba(7, 63, 50, 0.1);
}

.form-select-wrap {
  position: relative;
}

.form-select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-select__arrow {
  position: absolute;
  right: 0.9rem;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: var(--text-muted);
  pointer-events: none;
}

.form-textarea { resize: vertical; min-height: 110px; }

.enquiry-form .btn { grid-column: 1 / -1; }

/* ============================================================
   17. FOOTER
============================================================ */
.footer {
  background: var(--color-deep-green);
  padding-top: 5rem;
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__desc {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-top: 1.25rem;
  max-width: 280px;
}

.footer__social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.social-icon {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.7);
  transition: background var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
}

.social-icon svg { width: 18px; height: 18px; }

.social-icon:hover {
  background: var(--color-jonquil);
  color: var(--color-deep-green);
  transform: translateY(-3px);
}

.footer__col-title {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-jonquil);
  margin-bottom: 1.25rem;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer__link {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.65);
  transition: color var(--transition-fast), padding-left var(--transition-fast);
}

.footer__link:hover { color: var(--color-white); padding-left: 4px; }

.footer__contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.footer__contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.65);
}

.footer__contact-list li svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--color-jonquil);
}

.footer__contact-list a {
  transition: color var(--transition-fast);
}
.footer__contact-list a:hover { color: var(--color-white); }

.footer__bottom {
  padding-block: 1.5rem;
}

.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer__bottom p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.45);
}

.footer__bottom-tagline {
  font-style: italic;
  color: rgba(255, 255, 255, 0.35) !important;
}

/* Discreet admin login entry in the footer bottom bar */
.footer__admin-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  padding: 6px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  transition: color .2s ease, background .2s ease, border-color .2s ease;
}
.footer__admin-link svg {
  width: 14px;
  height: 14px;
  display: block;
}
.footer__admin-link:hover,
.footer__admin-link:focus-visible {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.35);
  outline: none;
}

/* ============================================================
   18. CUSTOM CURSOR (desktop only)
============================================================ */
.cursor-glow {
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(
    circle at center,
    rgba(234, 200, 0, 0.07) 0%,
    transparent 70%
  );
  pointer-events: none;
  transform: translate(-50%, -50%);
  top: 0;
  left: 0;
  z-index: var(--z-cursor);
  transition: opacity 0.3s ease;
  opacity: 0;
}

/* ============================================================
   19. ANIMATIONS & REVEAL
============================================================ */

/* ---- Base: Fade Up ---- */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Slide From Left ---- */
.reveal-left {
  opacity: 0;
  transform: translateX(-48px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-left.is-visible {
  opacity: 1;
  transform: translateX(0);
}

/* ---- Slide From Right ---- */
.reveal-right {
  opacity: 0;
  transform: translateX(48px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-right.is-visible {
  opacity: 1;
  transform: translateX(0);
}

/* ---- Scale Up ---- */
.reveal-scale {
  opacity: 0;
  transform: scale(0.88) translateY(20px);
  transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-scale.is-visible {
  opacity: 1;
  transform: scale(1) translateY(0);
}

/* ---- Shared stagger delay support ---- */
.reveal,
.reveal-left,
.reveal-right,
.reveal-scale {
  transition-delay: var(--reveal-delay, 0s);
}

/* Class-based delays (override variable for explicit items) */
.reveal--delay-1 { --reveal-delay: 0.1s; }
.reveal--delay-2 { --reveal-delay: 0.2s; }
.reveal--delay-3 { --reveal-delay: 0.3s; }

/* ---- Icon hover (why-card handled in section 11 + 23) ---- */
.why-card__icon svg {
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.feature-icon:hover svg,
.contact-card:hover .contact-card__icon svg {
  transform: scale(1.18) rotate(-8deg);
}
.feature-icon svg,
.contact-card__icon svg {
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---- Image placeholder zoom on hover ---- */
.img-placeholder--about {
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  overflow: hidden;
}
.about__image-wrap:hover .img-placeholder--about {
  transform: scale(1.025);
}

/* ---- Product card image placeholder zoom ---- */
.product-card:hover .img-placeholder--product {
  transform: scale(1.04);
}
.img-placeholder--product {
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---- Btn arrow pulse on hover ---- */
@keyframes arrowPulse {
  0%   { transform: translateX(0); }
  50%  { transform: translateX(5px); }
  100% { transform: translateX(0); }
}
.btn:hover svg {
  animation: arrowPulse 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

/* ============================================================
   20. RESPONSIVE BREAKPOINTS
============================================================ */

/* ---- Large Desktop: 1200px ---- */
@media (max-width: 1200px) {
  .header__nav { display: none; }
  .header__cta { display: none; }
  .hamburger   { display: flex; }
}

/* ---- Tablet: 1024px ---- */
@media (max-width: 1024px) {
  :root { --section-py: 4rem; }

  .about__inner {
    grid-template-columns: 1fr;
    grid-template-areas:
      "img"
      "top"
      "bottom";
    gap: 2.5rem;
  }
  .about__features { grid-template-columns: 1fr 1fr; }
  .about__accent   { display: none; }

  .stats__inner { grid-template-columns: repeat(2, 1fr); gap: 2rem 1rem; }
  .stat-item:nth-child(2)::after { display: none; }
  .stat-item:nth-child(3)::after { display: none; }

  .why-grid { grid-template-columns: repeat(2, 1fr); }

  .categories-grid { grid-template-columns: repeat(2, 1fr); }

  .products-grid { grid-template-columns: repeat(2, 1fr); }

  .contact__inner { grid-template-columns: 1fr; gap: 3rem; }

  .footer__inner { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer__brand { grid-column: 1 / -1; }
}

/* ---- Tablet: 768px ---- */
@media (max-width: 768px) {
  :root { --section-py: 3.5rem; }

  .hero { height: 75vh; }

  .top-bar__inner { gap: 0.875rem; font-size: 0.75rem; }
  .top-bar__location { display: none; }

  /* Mobile: flex order so image sits BETWEEN heading and paragraph */
  .about__inner {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .about__text-top {
    order: 1;
    margin-bottom: 0;
  }
  .about__image-wrap {
    order: 2;
    margin-top: 18px;
    margin-bottom: 22px;
    width: 100%;
  }
  .about__text-bottom {
    order: 3;
  }
  .about__features { grid-template-columns: 1fr; }

  /* Why Choose – switch to carousel on mobile */
  .why-grid    { display: none; }
  .why-carousel { display: block; overflow: hidden; position: relative; }

  .why-carousel__track {
    display: flex;
    gap: 1rem;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .why-card--slide {
    flex-shrink: 0;
    width: 100%;
  }

  .why-carousel__dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
  }

  .why-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(23, 60, 49, 0.25);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background var(--transition-fast), transform var(--transition-fast);
  }

  .why-dot.is-active {
    background: var(--color-deep-green);
    transform: scale(1.3);
  }

  .products-grid { grid-template-columns: repeat(2, 1fr); }

  .enquiry-form {
    grid-template-columns: 1fr;
    padding: 2rem;
  }
  .enquiry-form__title { grid-column: 1; }
  .form-group--full    { grid-column: 1; }
  .enquiry-form .btn   { grid-column: 1; }

  .footer__inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer__brand { grid-column: 1; }

  .footer__bottom-inner { flex-direction: column; text-align: center; }
}

/* ---- Mobile: 480px ---- */
@media (max-width: 480px) {
  :root { --section-py: 3rem; }

  .header__inner { height: 64px; }

  .logo-placeholder__text { font-size: 1.25rem; }

  .hero { height: 70vh; }
  .hero__scroll-indicator { display: none; }

  .stats__inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item::after { display: none !important; }

  .categories-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .products-grid   { grid-template-columns: repeat(2, 1fr); gap: 1rem; }

  .product-card__body { padding: 1rem; }
  .product-card__name { font-size: 0.9375rem; }

  .client-card { width: 200px; }
  .testimonial-card { width: 290px; }

  .enquiry-form { padding: 1.5rem; }
  .contact-card { padding: 1rem; }
  .contact-card__value { font-size: 0.875rem; word-break: break-all; }
}

/* ---- Very Small: 360px ---- */
@media (max-width: 360px) {
  .categories-grid { grid-template-columns: 1fr; }
  .products-grid   { grid-template-columns: 1fr; }

  .top-bar__inner { flex-direction: column; gap: 0.4rem; padding-block: 0.75rem; }
}

/* ============================================================
   21. PREFERS REDUCED MOTION
============================================================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal,
  .reveal-left,
  .reveal-right,
  .reveal-scale {
    opacity: 1;
    transform: none;
  }

  .clients-carousel .carousel__track,
  .testimonials-carousel .carousel__track {
    animation: none;
  }
}

/* ============================================================
   22. MOBILE BOTTOM NAVIGATION – Full-width flat bar
============================================================ */
.bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  animation: bottomNavIn 0.55s 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes bottomNavIn {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

.bottom-nav__inner {
  display: flex;
  align-items: stretch;
  justify-content: space-around;
  height: 68px;
  background: #073F32;
  border-top: 1px solid rgba(246, 244, 241, 0.14);
  border-radius: 0;
  box-shadow: 0 -8px 28px rgba(7, 63, 50, 0.18);
  padding-inline: 0;
  padding-bottom: env(safe-area-inset-bottom, 0px);
}

.bottom-nav__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  flex: 1;
  padding: 0.5rem 0.25rem;
  border-radius: 0;
  position: relative;
  transition: background var(--transition-base),
              transform 0.18s cubic-bezier(0.22, 1, 0.36, 1);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  text-decoration: none;
}

/* Top accent line on active */
.bottom-nav__item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 20%;
  right: 20%;
  height: 2.5px;
  border-radius: 0 0 3px 3px;
  background: transparent;
  transition: background var(--transition-base);
}

.bottom-nav__item.is-active::before {
  background: #F2B635;
}

.bottom-nav__item:active {
  transform: scale(0.9);
}

.bottom-nav__icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.bottom-nav__icon-wrap svg {
  width: 22px;
  height: 22px;
  stroke: rgba(246, 244, 241, 0.55);
  fill: none;
  transition: stroke var(--transition-base),
              transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.bottom-nav__label {
  font-family: var(--font-body);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(246, 244, 241, 0.55);
  transition: color var(--transition-base);
  white-space: nowrap;
}

/* Active state */
.bottom-nav__item.is-active {
  background: rgba(242, 182, 53, 0.12);
}

.bottom-nav__item.is-active .bottom-nav__icon-wrap svg {
  stroke: #F2B635;
  transform: scale(1.1) translateY(-1px);
}

.bottom-nav__item.is-active .bottom-nav__label {
  color: #F2B635;
  font-weight: 700;
}

/* Active item top accent line */
.bottom-nav__item.is-active::before {
  background: #F2B635;
}

/* Hover on non-touch devices */
@media (hover: hover) {
  .bottom-nav__item:not(.is-active):hover {
    background: rgba(246, 244, 241, 0.08);
  }
  .bottom-nav__item:not(.is-active):hover .bottom-nav__icon-wrap svg {
    stroke: #F6F4F1;
    transform: translateY(-2px);
  }
  .bottom-nav__item:not(.is-active):hover .bottom-nav__label {
    color: #F6F4F1;
  }
}

/* Show bottom nav on mobile/tablet only */
@media (max-width: 768px) {
  .bottom-nav { display: block; }

  /* Prevent content hiding behind bottom nav */
  .footer__bottom {
    padding-bottom: calc(1.5rem + 80px + env(safe-area-inset-bottom, 0px));
  }
}

@media (max-width: 480px) {
  .bottom-nav__inner { height: 64px; }
  .bottom-nav__icon-wrap svg { width: 20px; height: 20px; }
  .bottom-nav__label { font-size: 0.5625rem; }
}

/* ============================================================
   23. ANIMATED BORDER – Why Cards & Testimonial Cards
============================================================ */

/* ============================================================
   23. KEYFRAMES – Rotating bar animations
============================================================ */

/* (productBarRotate keyframe removed – replaced by pcBorderSpin) */

/* Testimonial card: register animatable CSS property for angle */
@property --tc-angle {
  syntax: '<angle>';
  inherits: false;
  initial-value: 0deg;
}

/* Comet chasing the border perimeter */
@keyframes tcBorderChase {
  to { --tc-angle: 360deg; }
}

/* ---- Submit Button – Form Override ---- */
.enquiry-form .btn--primary {
  background: #073F32;
  color: #F6F4F1;
}

.enquiry-form .btn--primary:hover {
  background: #F2B635;
  color: #073F32;
  box-shadow: 0 6px 24px rgba(242, 182, 53, 0.35);
}

/* ============================================================
   24. PREFERS REDUCED MOTION
============================================================ */
@media (prefers-reduced-motion: reduce) {
  .product-card::before,
  .testimonial-card::before {
    animation: none !important;
  }
  .why-card::before {
    transition: none !important;
  }
  .reveal,
  .reveal-left,
  .reveal-right,
  .reveal-scale {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ============================================================
   25. LOGO IMAGES (Header & Footer)
============================================================ */
.header__logo-img {
  height: 44px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  display: block;
}

.footer__logo-img {
  height: 52px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  display: block;
  margin-bottom: 1rem;
}

/* ============================================================
   26. ABOUT SECTION – REAL IMAGE & FEATURE CARDS
============================================================ */
.about__img {
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: contain;
  object-position: center;
  display: block;
  border-radius: var(--radius-card);
}

/* Feature cards – 4 in a row on desktop */
.about__features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
  list-style: none;
}

.about__feature-item {
  background: #F6F4F1;
  border: 1px solid rgba(7, 63, 50, 0.10);
  border-radius: var(--radius-card);
  padding: 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.625rem;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.about__feature-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.about__feature-item .feature-icon {
  width: 44px;
  height: 44px;
  background: var(--color-vanilla);
  border-radius: var(--radius-sm);
  color: var(--color-dark-moss);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about__feature-item .feature-icon svg {
  width: 22px;
  height: 22px;
}

.about__feature-title {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 700;
  color: #073F32;
  display: block;
  line-height: 1.3;
}

.about__feature-desc {
  font-size: 0.8125rem;
  color: #173C31;
  line-height: 1.55;
  opacity: 0.8;
}

/* ============================================================
   27. CATEGORY IMAGES (real photos)
============================================================ */
.cat-card__img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.cat-card:hover .cat-card__img {
  transform: scale(1.05);
}

/* ============================================================
   28. CLIENT CARD IMAGES (real photos)
============================================================ */
.client-card__img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform var(--transition-slow);
}

.client-card:hover .client-card__img {
  transform: scale(1.03);
}

/* Placeholder when no client image is available */
.client-card__img--placeholder {
  width: 100%;
  aspect-ratio: 3 / 4;
  background: var(--color-soft-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-muted);
}

.client-card__img--placeholder svg {
  width: 56px;
  height: 56px;
  opacity: 0.4;
}

/* ============================================================
   29. PRODUCT CARD IMAGES (real product shots)
============================================================ */
/* (product-card__img and ::before width override moved to final block) */

/* ============================================================
   31. FLOATING BUTTONS – AI Chatbot & WhatsApp
============================================================ */

/* Shared base */
.float-btn {
  position: fixed;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 900;
  border: none;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.25s ease;
}

.float-btn:hover {
  transform: translateY(-4px) scale(1.06);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

/* AI Chatbot – left side */
.float-btn--ai {
  left: 24px;
  bottom: 28px;
  background: #073F32;
  flex-direction: column;
  gap: 2px;
}

.float-btn__icon {
  width: 24px;
  height: 24px;
  stroke: #F6F4F1;
  flex-shrink: 0;
}

/* Pulsing dot on AI button */
.float-btn__dot {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #F2B635;
  border: 2px solid #073F32;
  animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.55; transform: scale(0.75); }
}

/* WhatsApp – right side */
.float-btn--wa {
  right: 24px;
  bottom: 28px;
  background: #25D366;
  color: #ffffff;
}

.float-btn--wa svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

/* On mobile: raise above the bottom nav */
@media (max-width: 768px) {
  .float-btn--ai {
    left: 16px;
    bottom: 88px;
  }

  .float-btn--wa {
    right: 16px;
    bottom: 88px;
  }
}

/* ============================================================
   32. ABOUT FEATURES RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
  .about__features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .about__features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .header__logo-img { height: 36px; }
  .footer__logo-img { height: 44px; }
}

/* ============================================================
   33. HEADER & FOOTER BRAND TEXT (JKLS Agro Tech)
============================================================ */

/* Header logo + brand text side-by-side */
.header__logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  text-decoration: none;
}

.header__brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.header__brand-name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: #F6F4F1;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.header__brand-sub {
  font-family: var(--font-body);
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(242, 182, 53, 0.8);
  white-space: nowrap;
}

/* Footer logo + brand text */
.footer__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer__brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.footer__brand-name {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: #F5EAB9;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.footer__brand-sub {
  font-family: var(--font-body);
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245, 234, 185, 0.55);
  white-space: nowrap;
}

/* Hide old logo placeholder if still present */
.logo-placeholder { display: none; }

/* Responsive: hide brand text on very small screens */
@media (max-width: 360px) {
  .header__brand-text { display: none; }
}

/* ============================================================
   34. AI CHATBOT PANEL
============================================================ */
.ai-chat-panel {
  position: fixed;
  left: 24px;
  bottom: 92px;
  width: 340px;
  max-width: calc(100vw - 32px);
  background: #F6F4F1;
  border-radius: 18px;
  box-shadow: 0 16px 56px rgba(7, 63, 50, 0.28), 0 4px 16px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(7, 63, 50, 0.12);
  z-index: 950;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  /* Hidden by default */
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px) scale(0.97);
  transform-origin: bottom left;
  transition: opacity 0.28s cubic-bezier(0.22, 1, 0.36, 1),
              visibility 0.28s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.ai-chat-panel.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

/* Header */
.ai-chat__header {
  background: #073F32;
  padding: 1rem 1.125rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-shrink: 0;
}

.ai-chat__header-info {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  min-width: 0;
}

.ai-chat__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(242, 182, 53, 0.18);
  border: 1.5px solid rgba(242, 182, 53, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #F2B635;
}

.ai-chat__avatar svg { width: 18px; height: 18px; }

.ai-chat__header-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.ai-chat__title {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 700;
  color: #F6F4F1;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ai-chat__subtitle {
  font-size: 0.6875rem;
  color: rgba(246, 244, 241, 0.6);
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ai-chat__close {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(246, 244, 241, 0.12);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(246, 244, 241, 0.8);
  flex-shrink: 0;
  transition: background var(--transition-fast), color var(--transition-fast);
}

.ai-chat__close:hover {
  background: rgba(246, 244, 241, 0.22);
  color: #F6F4F1;
}

.ai-chat__close svg { width: 15px; height: 15px; }

/* Messages area */
.ai-chat__messages {
  flex: 1;
  min-height: 200px;
  max-height: 280px;
  overflow-y: auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  background: #F6F4F1;
  scroll-behavior: smooth;
}

.ai-chat__messages::-webkit-scrollbar { width: 4px; }
.ai-chat__messages::-webkit-scrollbar-track { background: transparent; }
.ai-chat__messages::-webkit-scrollbar-thumb {
  background: rgba(7, 63, 50, 0.18);
  border-radius: 4px;
}

/* Message bubbles */
.ai-chat__msg {
  max-width: 85%;
  display: flex;
}

.ai-chat__msg--bot { align-self: flex-start; }
.ai-chat__msg--user { align-self: flex-end; }

.ai-chat__msg p {
  font-size: 0.875rem;
  line-height: 1.55;
  padding: 0.625rem 0.875rem;
  border-radius: 14px;
  margin: 0;
  word-break: break-word;
}

.ai-chat__msg--bot p {
  background: #FFFFFF;
  color: #173C31;
  border: 1px solid rgba(7, 63, 50, 0.1);
  border-radius: 4px 14px 14px 14px;
}

.ai-chat__msg--user p {
  background: #073F32;
  color: #F6F4F1;
  border-radius: 14px 4px 14px 14px;
}

/* Input row */
.ai-chat__input-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border-top: 1px solid rgba(7, 63, 50, 0.1);
  background: #F6F4F1;
  flex-shrink: 0;
}

.ai-chat__input {
  flex: 1;
  border: 1.5px solid rgba(7, 63, 50, 0.18);
  border-radius: 20px;
  padding: 0.5rem 0.875rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: #173C31;
  background: #FFFFFF;
  outline: none;
  transition: border-color var(--transition-fast);
}

.ai-chat__input::placeholder { color: #66766D; }

.ai-chat__input:focus {
  border-color: #073F32;
  box-shadow: 0 0 0 2px rgba(7, 63, 50, 0.1);
}

.ai-chat__send {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #073F32;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #F6F4F1;
  flex-shrink: 0;
  transition: background var(--transition-fast), transform var(--transition-fast);
}

.ai-chat__send:hover {
  background: #F2B635;
  color: #073F32;
  transform: scale(1.06);
}

.ai-chat__send svg { width: 16px; height: 16px; }

/* Mobile positioning */
@media (max-width: 768px) {
  .ai-chat-panel {
    left: 8px;
    right: 8px;
    width: auto;
    max-width: none;
    bottom: 96px;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .ai-chat-panel {
    transition: opacity 0.15s ease, visibility 0.15s ease;
    transform: none !important;
  }
}

/* ============================================================
   35. PREMIUM ANIMATION LAYER
   New reveal classes, keyframes, hover improvements,
   FAQ fade, form focus, floating pulse, hero load.
============================================================ */

/* A. Keyframes */

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(36px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeLeft {
  from { opacity: 0; transform: translateX(-36px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeRight {
  from { opacity: 0; transform: translateX(36px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.88) translateY(18px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
@keyframes blurIn {
  from { opacity: 0; filter: blur(8px); transform: translateY(14px); }
  to   { opacity: 1; filter: blur(0px); transform: translateY(0); }
}
@keyframes softPulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(0,0,0,0.18); }
  50%       { box-shadow: 0 10px 32px rgba(0,0,0,0.28); }
}
@keyframes heroFadeIn {
  from { opacity: 0.3; transform: scale(1.04); }
  to   { opacity: 1;   transform: scale(1); }
}
@keyframes topBarSlideIn {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* B. New Reveal Classes */

.reveal-up {
  opacity: 0;
  transform: translateY(38px);
  transition: opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0s);
}
.reveal-up.is-visible { opacity: 1; transform: translateY(0); }

.reveal-down {
  opacity: 0;
  transform: translateY(-28px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0s);
}
.reveal-down.is-visible { opacity: 1; transform: translateY(0); }

.reveal-blur {
  opacity: 0;
  filter: blur(7px);
  transform: translateY(14px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
              filter 0.9s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0s);
}
.reveal-blur.is-visible { opacity: 1; filter: blur(0px); transform: translateY(0); }

.reveal-fade {
  opacity: 0;
  transition: opacity 1s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0s);
}
.reveal-fade.is-visible { opacity: 1; }

.stagger-item {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0s);
}
.stagger-item.is-visible { opacity: 1; transform: translateY(0); }

/* C. Hero & Top Bar Load Animations */

.hero__video-wrap {
  animation: heroFadeIn 1.4s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.top-bar {
  animation: topBarSlideIn 0.7s 0.1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

/* D. FAQ Answer Opacity Fade */
.faq-answer {
  opacity: 0;
}
.faq-item.is-open .faq-answer {
  opacity: 1;
}
/* Extend the existing max-height transition to also include opacity */
.faq-item.is-open .faq-answer {
  transition: max-height 0.42s cubic-bezier(0.22, 1, 0.36, 1),
              opacity 0.35s ease 0.08s;
}

/* E. Form Input Golden Focus */
.form-input,
.form-select,
.form-textarea {
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: #F2B635 !important;
  box-shadow: 0 0 0 3px rgba(242, 182, 53, 0.18) !important;
  outline: none;
}

/* F. Floating Button Pulse */
.float-btn--ai { animation: softPulse 3s ease-in-out 2.5s infinite; }
.float-btn--ai:hover, .float-btn--ai:focus { animation-play-state: paused; }
.float-btn--wa { animation: softPulse 3s ease-in-out 3.2s infinite; }
.float-btn--wa:hover, .float-btn--wa:focus { animation-play-state: paused; }

/* G. Enhanced Card Hover Depths */
.client-card {
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}
.client-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 40px rgba(7, 63, 50, 0.18);
}
.product-card:hover {
  box-shadow: 0 20px 50px rgba(7, 63, 50, 0.26) !important;
}

/* H. Contact Card Icon Hover */
.contact-card__icon svg {
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.contact-card:hover .contact-card__icon svg {
  transform: rotate(-8deg) scale(1.1);
}

/* I. About Image Hover Zoom */
.about__image-wrap {
  overflow: hidden;
  border-radius: var(--radius-card);
}
.about__img {
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  display: block;
}
.about__image-wrap:hover .about__img { transform: scale(1.035); }

/* J. Category Card Overlay Slide */
.cat-card__overlay {
  transition: background 0.35s ease, padding-bottom 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.cat-card:hover .cat-card__overlay { padding-bottom: 1.75rem; }

/* K. Header Scroll Shadow */
.header.is-scrolled {
  box-shadow: 0 4px 36px rgba(7, 63, 50, 0.38) !important;
  transition: box-shadow 0.4s ease;
}

/* L. Bottom Nav Active Icon Scale */
.bottom-nav__icon-wrap {
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
  display: inline-flex;
}
.bottom-nav__item.is-active .bottom-nav__icon-wrap {
  transform: scale(1.14) translateY(-1px);
}
.bottom-nav__item:active .bottom-nav__icon-wrap { transform: scale(0.86); }

/* M. Why-Card Icon Hover */
.why-card__icon svg {
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}
.why-card:hover .why-card__icon svg,
.why-card:focus-within .why-card__icon svg { transform: scale(1.08); }

/* N. Social Icon Hover */
.social-icon {
  transition: background 0.22s ease, color 0.22s ease,
              transform 0.22s cubic-bezier(0.22, 1, 0.36, 1);
}

/* O. Button Arrow Enhanced */
.btn svg { transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1); }
.btn:hover svg { transform: translateX(4px) !important; }

/* P. Testimonial Extra Lift */
.testimonial-card { transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1) !important; }

/* Q. Reduced Motion – Disable All New Animations */
@media (prefers-reduced-motion: reduce) {
  .reveal-up, .reveal-down, .reveal-blur, .reveal-fade, .stagger-item {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }
  .hero__video-wrap, .top-bar {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .float-btn--ai, .float-btn--wa { animation: none !important; }
  .float-btn__dot { animation: none !important; }
  .faq-icon { transition: none !important; }
  .faq-item.is-open .faq-icon { transform: none; }
  .product-card::before, .testimonial-card::before { animation: none !important; }
  .why-card::before { transition: none !important; }
  .bottom-nav__icon-wrap { transition: none !important; }
}

/* ============================================================
   36. GLOBAL OVERFLOW FIX – kills horizontal scroll on mobile
============================================================ */
html {
  overflow-x: hidden;
  max-width: 100%;
}

body {
  overflow-x: hidden;
  max-width: 100%;
}

/* Ensure every direct section/div never bleeds past viewport */
section,
header,
footer,
.hero,
.stats,
.clients,
.why-choose,
.categories,
.best-sellers,
.our-videos,
.faqs,
.testimonials,
.contact,
.banner-placeholder-wrap {
  max-width: 100%;
  overflow-x: hidden;
}

/* ============================================================
   37. PRELOADER
============================================================ */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #073F32;
  transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
              visibility 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
  animation: preloaderFadeIn 0.6s ease forwards;
}

@keyframes preloaderFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.preloader__logo {
  height: 96px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  animation: preloaderPulse 1.8s ease-in-out infinite;
}

@keyframes preloaderPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.75; transform: scale(0.96); }
}

.preloader__brand-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}

.preloader__brand-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: #F6F4F1;
  letter-spacing: -0.01em;
}

.preloader__brand-sub {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(242, 182, 53, 0.8);
}

.preloader__bar {
  width: 160px;
  height: 3px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 99px;
  overflow: hidden;
  margin-top: 0.5rem;
}

.preloader__bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #F2B635, #EAC800);
  border-radius: 99px;
  animation: preloaderBar 1.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes preloaderBar {
  from { width: 0%; }
  to   { width: 100%; }
}

/* ============================================================
   38. BANNER PLACEHOLDERS
============================================================ */
.banner-placeholder-wrap {
  background: var(--color-cream);
  padding-block: 1.5rem;
}

.banner-placeholder {
  width: 100%;
  min-height: 220px;
  background: linear-gradient(135deg, #DCE4B8 0%, #F7EDDC 50%, #DCE4B8 100%);
  border-radius: var(--radius-card);
  border: 2px dashed rgba(107, 122, 79, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.banner-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 24px,
    rgba(107, 122, 79, 0.04) 24px,
    rgba(107, 122, 79, 0.04) 48px
  );
}

.banner-placeholder__text {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(107, 122, 79, 0.65);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 1rem;
}

@media (max-width: 768px) {
  .banner-placeholder { min-height: 150px; }
}

/* ============================================================
   39. OUR VIDEOS SECTION
============================================================ */
.our-videos {
  background: #F7EDDC;
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-bottom: 3rem;
}

.video-card {
  background: #FFFFFF;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(7, 63, 50, 0.08);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.video-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.video-placeholder {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, #073F32 0%, #0D5442 100%);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.video-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 20px,
    rgba(255, 255, 255, 0.02) 20px,
    rgba(255, 255, 255, 0.02) 40px
  );
}

.video-placeholder__inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.875rem;
  z-index: 1;
}

.video-placeholder__play {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(242, 182, 53, 0.18);
  border: 2px solid rgba(242, 182, 53, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #F2B635;
  transition: background var(--transition-base), transform var(--transition-base);
}

.video-placeholder__play svg {
  width: 22px;
  height: 22px;
  margin-left: 3px;
}

.video-card:hover .video-placeholder__play {
  background: rgba(242, 182, 53, 0.35);
  transform: scale(1.1);
}

.video-placeholder__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(246, 244, 241, 0.45);
}

.video-embed {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: inherit;
}

.video-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.video-card__info {
  padding: 1.25rem 1.5rem 1.5rem;
}

.video-card__title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.video-card__desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .videos-grid { grid-template-columns: 1fr; gap: 1.25rem; }
}

@media (max-width: 480px) {
  .videos-grid { gap: 1rem; }
}

/* ============================================================
   40. SECTION CTA WRAP (centered button below grids)
============================================================ */
.section-cta-wrap {
  text-align: center;
  margin-top: 2.5rem;
}

/* ============================================================
   41. CATEGORY MEDIA PLACEHOLDER
============================================================ */
.cat-card__media-placeholder {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, #DCE4B8 0%, #c8d9a0 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  color: rgba(37, 78, 6, 0.5);
}

.cat-card__media-placeholder svg {
  width: 36px;
  height: 36px;
  opacity: 0.5;
}

.cat-card__media-placeholder span {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  opacity: 0.6;
}

/* ============================================================
   42. STATS SECTION – PREMIUM LOOK
============================================================ */
.stats {
  background: linear-gradient(135deg, #064A38 0%, #073F32 50%, #0a4f3e 100%);
  padding-block: 4.5rem;
  position: relative;
  overflow: hidden;
}

.stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(234, 200, 0, 0.05) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 50%, rgba(242, 182, 53, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

.stats__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  text-align: center;
  padding: 1.5rem 1rem;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.stat-item__number {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4.5vw, 3.5rem);
  font-weight: 700;
  color: #EAC800;
  line-height: 1;
  margin-bottom: 0.6rem;
  letter-spacing: -0.02em;
}

.stat-item__label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .stats { padding-block: 3rem; }
  .stats__inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }
  .stat-item { padding: 1.5rem 0.75rem; }
  .stat-item:nth-child(1)::after { display: block; }
  .stat-item:nth-child(2)::after { display: none; }
  .stat-item:nth-child(3)::after { display: block; }
  .stat-item:nth-child(4)::after { display: none; }
  /* horizontal rule between rows */
  .stat-item:nth-child(3),
  .stat-item:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
}

@media (max-width: 480px) {
  .stat-item::after { display: none !important; }
  .stat-item:nth-child(3),
  .stat-item:nth-child(4) { border-top: 1px solid rgba(255, 255, 255, 0.1); }
  .stat-item__number { font-size: 2.2rem; }
}

/* ============================================================
   43. FAQ SECTION – WIDER ON DESKTOP
============================================================ */
.faq-list {
  max-width: 1100px !important;
  width: 85%;
}

@media (max-width: 1024px) {
  .faq-list { width: 92%; }
}

@media (max-width: 768px) {
  .faq-list { width: 100%; max-width: 100% !important; }
}

/* ============================================================
   44. CLIENTS SECTION – HEADER SPACING FIX
============================================================ */
.clients .section-header {
  padding-inline: 1.5rem;
  margin-bottom: 2.5rem;
}

/* ============================================================
   45. CATEGORIES – CARD NAME FONT SIZE ON MOBILE
============================================================ */
@media (max-width: 480px) {
  .cat-card__name { font-size: 1rem; }
  .cat-card__cta  { font-size: 0.75rem; }
  .categories-grid { gap: 0.875rem; }
}

/* ============================================================
   46. PRODUCT CARDS – EQUAL HEIGHT GRID
============================================================ */
/* (product-card flex layout moved to final block) */

/* ============================================================
   47. MOBILE PADDING – prevent content hidden behind bottom nav
============================================================ */
@media (max-width: 768px) {
  main > section:last-of-type,
  .contact {
    padding-bottom: calc(var(--section-py-sm) + 80px);
  }

  .float-btn--ai  { bottom: 92px; left: 16px; }
  .float-btn--wa  { bottom: 92px; right: 16px; }
}

/* ============================================================
   48. GENERAL OVERFLOW GUARDS – stop any child from overflowing
============================================================ */
.container {
  min-width: 0;
}

.carousel__track {
  min-width: 0;
}

img, video, iframe {
  max-width: 100%;
}

/* prevent wide absolute/fixed children inside sections */
.about__accent {
  z-index: -1;
  overflow: hidden;
}

@media (max-width: 768px) {
  .about__accent { display: none; }

  /* ensure about image does not create overflow */
  .about__image-wrap {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .about__img {
    width: 100%;
    max-width: 100%;
  }
}

/* ============================================================
   49. RESPONSIVE IMPROVEMENTS – 360 / 390 / 414px
============================================================ */
@media (max-width: 414px) {
  .header__inner { padding-inline: 1rem; }
  .container { padding-inline: 1rem; }

  .products-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .categories-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; }

  .product-card__name { font-size: 0.875rem; }
  .product-content-wrap { padding: 0.875rem 1rem 1.125rem; }

  .section-header { margin-bottom: 2rem; }

  .contact__inner { gap: 2rem; }
  .enquiry-form { padding: 1.25rem; }
}

@media (max-width: 360px) {
  .products-grid   { grid-template-columns: 1fr; }
  .categories-grid { grid-template-columns: 1fr; }
  .videos-grid     { grid-template-columns: 1fr; }

  .header__brand-text { display: none; }
  .top-bar__inner { flex-direction: column; gap: 0.3rem; padding-block: 0.5rem; }
}

/* ============================================================
   50. PREFERS REDUCED MOTION – new elements
============================================================ */
@media (prefers-reduced-motion: reduce) {
  .preloader__logo,
  .preloader__bar-fill,
  .preloader__inner {
    animation: none !important;
  }
  .preloader__bar-fill { width: 100%; }
}

/* ============================================================
   51. EARTHY PALETTE – COMPLETE THEME OVERRIDE
   Old teal/dark-green → Deep olive (#064A38) + Orange accents (#FD6F2F / #F0B24A)
   Cream backgrounds: #F7EDDC / #FFEAD1 / #DCE4B8
============================================================ */

/* ---- A. CSS Variable Override (cascades to all var() references) ---- */
:root {
  /* Brand Colors */
  --color-cream:       #F7EDDC;
  --color-soft-cream:  #FFEAD1;
  --color-vanilla:     #DCE4B8;
  --color-jonquil:     #F0B24A;   /* mustard — icons, active states */
  --color-golden:      #FD6F2F;   /* orange  — primary buttons     */
  --color-olive:       #6B7A4F;
  --color-dark-moss:   #064A38;
  --color-deep-green:  #064A38;
  --color-text-green:  #2A2A23;
  --color-muted:       #6B7A4F;

  /* Semantic Roles */
  --bg-primary:      #F7EDDC;
  --bg-section-alt:  #FFEAD1;
  --text-primary:    #2A2A23;
  --text-muted:      #6B7A4F;
  --accent:          #F0B24A;
  --accent-warm:     #FD6F2F;

  /* Shadows */
  --shadow-card:  0 4px 24px rgba(6, 74, 56, 0.1);
  --shadow-hover: 0 12px 40px rgba(6, 74, 56, 0.18);
  --shadow-btn:   0 4px 16px rgba(253, 111, 47, 0.32);
}

/* ---- B. Top Bar ---- */
.top-bar {
  background: #F7EDDC;
  color: #064A38;
  border-bottom-color: rgba(6, 74, 56, 0.14);
}
.top-bar__item { color: #064A38; }
.top-bar__item:hover { color: #FD6F2F; }

/* ---- C. Header / Navbar ---- */
.header {
  background: #064A38;
  border-bottom-color: rgba(247, 237, 220, 0.12);
  box-shadow: 0 2px 20px rgba(4, 47, 36, 0.28);
}
.header.is-scrolled {
  box-shadow: 0 4px 36px rgba(4, 47, 36, 0.42) !important;
}
.header__brand-name { color: #F7EDDC; }
.header__brand-sub  { color: rgba(240, 178, 74, 0.82); }

.nav__link { color: rgba(247, 237, 220, 0.82); }
.nav__link:hover {
  color: #F7EDDC;
  background: rgba(247, 237, 220, 0.1);
}
.nav__link.active {
  color: #F0B24A;
  background: rgba(240, 178, 74, 0.14);
}

.header__cta {
  background: #FD6F2F;
  color: #FFFFFF;
}
.header__cta:hover {
  background: #B34C2A;
  color: #FFFFFF;
  box-shadow: 0 4px 18px rgba(253, 111, 47, 0.38);
}

.hamburger__line { background: #F7EDDC; }

/* ---- D. Mobile Menu ---- */
.mobile-menu {
  background: #064A38;
  border-left-color: rgba(247, 237, 220, 0.12);
  box-shadow: -12px 0 40px rgba(4, 47, 36, 0.28);
}
.mobile-menu__close {
  background: rgba(247, 237, 220, 0.12);
  color: #F7EDDC;
}
.mobile-menu__close:hover { background: rgba(247, 237, 220, 0.22); }
.mobile-nav__link { color: rgba(247, 237, 220, 0.85); }
.mobile-nav__link:hover {
  color: #F0B24A;
  background: rgba(247, 237, 220, 0.08);
}
.mobile-overlay { background: rgba(4, 47, 36, 0.5); }

/* ---- E. Global Buttons ---- */
.btn--primary {
  background: #FD6F2F;
  color: #FFFFFF;
}
.btn--primary:hover {
  background: #B34C2A;
  box-shadow: 0 6px 24px rgba(253, 111, 47, 0.38);
}
.btn--outline {
  color: #064A38;
  border-color: #064A38;
}
.btn--outline:hover {
  background: #064A38;
  color: #F7EDDC;
}

/* ---- F. About Section ---- */
.about { background: #F7EDDC; }
.about__feature-item {
  background: #FFEAD1;
  border-color: rgba(6, 74, 56, 0.1);
}
.about__feature-item:hover {
  box-shadow: 0 12px 40px rgba(6, 74, 56, 0.14);
}
.feature-icon {
  background: #DCE4B8;
  color: #064A38;
}
.about__feature-title { color: #064A38; }
.about__feature-desc  { color: #6B7A4F; }
.about__accent        { background: #DCE4B8; }
.about__img           { border-color: rgba(6, 74, 56, 0.1); }

/* ---- G. Stats Strip ---- */
.stats {
  background: linear-gradient(145deg, #042F24 0%, #064A38 55%, #464C32 100%) !important;
}
.stats::before {
  background:
    radial-gradient(ellipse 55% 90% at 10% 50%, rgba(240, 178, 74, 0.10) 0%, transparent 100%),
    radial-gradient(ellipse 55% 90% at 90% 50%, rgba(253, 111, 47, 0.07) 0%, transparent 100%) !important;
}
.stat-item__number { color: #F0B24A !important; }
.stat-item__label  { color: rgba(247, 237, 220, 0.72) !important; }
.stat-item__icon {
  background: rgba(240, 178, 74, 0.14) !important;
  border-color: rgba(240, 178, 74, 0.26) !important;
  color: #F0B24A !important;
}
.stat-item:hover .stat-item__icon {
  background: rgba(240, 178, 74, 0.26) !important;
  border-color: rgba(240, 178, 74, 0.48) !important;
}
.stat-item::before {
  background: linear-gradient(90deg, transparent, #F0B24A, transparent) !important;
}
.stat-item:hover {
  background: rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 16px 40px rgba(4, 47, 36, 0.3),
              0 0 0 1px rgba(240, 178, 74, 0.2) !important;
}

/* ---- H. Clients Carousel ---- */
.clients { background: #DCE4B8; }
.client-card__overlay {
  background: linear-gradient(to top, rgba(6, 74, 56, 0.88) 0%, transparent 100%);
}

/* ---- I. Why Choose Us ---- */
.why-choose { background: #FFEAD1; }
.why-card {
  background: #F7EDDC;
  border-color: rgba(6, 74, 56, 0.1);
}
.why-card::before { background: #064A38; }
.why-card::after  { color: #F0B24A; }
.why-card:hover,
.why-card:focus-within {
  box-shadow: 0 12px 40px rgba(6, 74, 56, 0.18);
}
.why-card__icon {
  background: #DCE4B8;
  color: #064A38;
}
.why-card:hover .why-card__icon,
.why-card:focus-within .why-card__icon {
  background: #F0B24A;
  color: #064A38;
}
.why-card__title { color: #2A2A23; }
.why-card__desc  { color: #6B7A4F; }
.why-dot { background: rgba(6, 74, 56, 0.22); }
.why-dot.is-active {
  background: #064A38;
  transform: scale(1.3);
}

/* ---- J. Categories ---- */
.categories { background: #DCE4B8; }
.cat-card__overlay {
  background: linear-gradient(
    to top,
    rgba(6, 74, 56, 0.86) 0%,
    rgba(6, 74, 56, 0.22) 52%,
    transparent 100%
  );
}
.cat-card:hover .cat-card__overlay {
  background: linear-gradient(
    to top,
    rgba(6, 74, 56, 0.96) 0%,
    rgba(6, 74, 56, 0.42) 56%,
    transparent 100%
  );
}
.cat-card:hover .cat-card__overlay { padding-bottom: 1.75rem; }
.cat-card__cta  { color: #F0B24A; }
.cat-card:hover .cat-card__cta { color: #F7EDDC; }
.cat-card__media-placeholder {
  background: linear-gradient(135deg, #c8d9a0 0%, #DCE4B8 100%);
  color: rgba(6, 74, 56, 0.45);
}

/* ---- K. Best Sellers ---- */
.best-sellers { background: #F7EDDC; }

/* (product card theme colors moved to final block) */

/* ---- L. Our Videos ---- */
.our-videos { background: #FFEAD1; }
.video-card {
  background: #FFFFFF;
  border-color: rgba(6, 74, 56, 0.1);
}
.video-card:hover {
  box-shadow: 0 18px 44px rgba(6, 74, 56, 0.15);
}
.video-placeholder {
  background: linear-gradient(135deg, #064A38 0%, #042F24 100%);
}
.video-placeholder__play {
  background: rgba(240, 178, 74, 0.16);
  border-color: rgba(240, 178, 74, 0.5);
  color: #F0B24A;
}
.video-card:hover .video-placeholder__play {
  background: rgba(240, 178, 74, 0.32);
}
.video-placeholder__label { color: rgba(247, 237, 220, 0.45); }
.video-card__title { color: #2A2A23; }
.video-card__desc  { color: #6B7A4F; }

/* ---- M. FAQs ---- */
.faqs { background: #DCE4B8; }
.faq-item { border-color: rgba(6, 74, 56, 0.12); }
.faq-item.is-open {
  border-color: rgba(240, 178, 74, 0.5);
  box-shadow: 0 6px 28px rgba(6, 74, 56, 0.14);
}
.faq-question {
  background: #064A38;
  color: #F7EDDC;
  border-color: rgba(247, 237, 220, 0.1);
}
.faq-question:hover {
  background: #042F24;
  color: #F7EDDC;
}
.faq-item.is-open .faq-question { background: #064A38; color: #F7EDDC; }
.faq-icon svg { color: #F0B24A; stroke: #F0B24A; }
.faq-answer   { background: #F7EDDC; opacity: 1; }
.faq-answer p {
  color: #2A2A23;
  border-top-color: rgba(6, 74, 56, 0.1);
}
.faq-item.is-open .faq-answer { opacity: 1; }

/* ---- N. Testimonials ---- */
.testimonials { background: #064A38; }
.testimonials .eyebrow     { color: #F0B24A; }
.testimonials .heading-2   { color: #F7EDDC; }
.testimonials .section-desc{ color: rgba(247, 237, 220, 0.65); }

.testimonial-card {
  background: #0B3D2E;
  border-color: rgba(240, 178, 74, 0.16);
}
.testimonial-card:hover {
  border-color: rgba(240, 178, 74, 0.42);
  box-shadow: 0 18px 52px rgba(4, 47, 36, 0.4);
}
/* Recolor comet border from teal-gold to olive-orange */
.testimonial-card::before {
  background: conic-gradient(
    from var(--tc-angle, 0deg),
    transparent      0deg,
    rgba(240,178,74,.08)  22deg,
    rgba(240,178,74,.55)  45deg,
    #FFEAD1              65deg,
    rgba(240,178,74,.55)  85deg,
    rgba(240,178,74,.08) 108deg,
    transparent          148deg
  );
}
.testimonial-card__name  { color: #F7EDDC; }
.testimonial-card__role  { color: rgba(247, 237, 220, 0.6); }
.testimonial-card__stars { color: #F0B24A; }
.testimonial-card__text  { color: rgba(247, 237, 220, 0.85); }
.avatar-placeholder {
  background: rgba(247, 237, 220, 0.1);
  border-color: rgba(247, 237, 220, 0.28);
  color: rgba(247, 237, 220, 0.6);
}

/* ---- O. Contact Section ---- */
.contact { background: #FFEAD1; }
.contact-card {
  background: #F7EDDC;
  border-color: rgba(6, 74, 56, 0.08);
}
.contact-card:not(.contact-card--static):hover {
  box-shadow: 0 12px 40px rgba(6, 74, 56, 0.16);
}
.contact-card__icon {
  background: #064A38;
  color: #F0B24A;
}
.contact-card__label { color: #6B7A4F; }
.contact-card__value { color: #2A2A23; }

/* Enquiry Form */
.enquiry-form {
  background: #F7EDDC;
  border-color: rgba(6, 74, 56, 0.1);
  box-shadow: 0 8px 40px rgba(6, 74, 56, 0.12);
}
.enquiry-form__title { color: #2A2A23; }
.form-label          { color: #2A2A23; }
.form-label span     { color: #064A38; }
.form-input,
.form-select,
.form-textarea {
  background: #FFFFFF;
  color: #2A2A23;
  border-color: rgba(6, 74, 56, 0.15);
}
.form-input::placeholder,
.form-textarea::placeholder { color: #6B7A4F; opacity: 0.75; }
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: #FD6F2F !important;
  box-shadow: 0 0 0 3px rgba(253, 111, 47, 0.14) !important;
}
.form-select__arrow { color: #6B7A4F; }

/* Submit button inside form */
.enquiry-form .btn--primary {
  background: #064A38;
  color: #F7EDDC;
}
.enquiry-form .btn--primary:hover {
  background: #FD6F2F;
  color: #FFFFFF;
  box-shadow: 0 6px 24px rgba(253, 111, 47, 0.36);
}

/* ---- P. Footer ---- */
.footer { background: #064A38; }
.footer__inner { border-bottom-color: rgba(247, 237, 220, 0.1); }
.footer__brand-name  { color: #F7EDDC; }
.footer__brand-sub   { color: rgba(247, 237, 220, 0.52); }
.footer__desc        { color: rgba(247, 237, 220, 0.6); }
.footer__col-title   { color: #F0B24A; }
.footer__link        { color: rgba(247, 237, 220, 0.65); }
.footer__link:hover  { color: #F7EDDC; }
.footer__contact-list li     { color: rgba(247, 237, 220, 0.65); }
.footer__contact-list li svg { color: #F0B24A; }
.footer__contact-list a:hover { color: #F7EDDC; }
.social-icon { background: rgba(247, 237, 220, 0.09); color: rgba(247, 237, 220, 0.7); }
.social-icon:hover { background: #F0B24A; color: #064A38; }
.footer__bottom p { color: rgba(247, 237, 220, 0.45); }
.footer__bottom-tagline { color: rgba(247, 237, 220, 0.34) !important; }

/* ---- Q. Bottom Navigation ---- */
.bottom-nav__inner {
  background: #064A38;
  border-top-color: rgba(247, 237, 220, 0.13);
  box-shadow: 0 -8px 28px rgba(4, 47, 36, 0.2);
}
.bottom-nav__icon-wrap svg { stroke: rgba(247, 237, 220, 0.55); }
.bottom-nav__label         { color: rgba(247, 237, 220, 0.55); }
.bottom-nav__item.is-active { background: rgba(240, 178, 74, 0.14); }
.bottom-nav__item.is-active .bottom-nav__icon-wrap svg { stroke: #F0B24A; }
.bottom-nav__item.is-active .bottom-nav__label         { color: #F0B24A; }
.bottom-nav__item.is-active::before                    { background: #F0B24A; }

@media (hover: hover) {
  .bottom-nav__item:not(.is-active):hover { background: rgba(247, 237, 220, 0.08); }
  .bottom-nav__item:not(.is-active):hover .bottom-nav__icon-wrap svg { stroke: #F7EDDC; }
  .bottom-nav__item:not(.is-active):hover .bottom-nav__label         { color: #F7EDDC; }
}

/* ---- R. Floating Buttons ---- */
.float-btn--ai {
  background: #064A38;
  box-shadow: 0 6px 24px rgba(4, 47, 36, 0.24);
}
.float-btn__icon { stroke: #F7EDDC; }
.float-btn__dot  { background: #F0B24A; border-color: #064A38; }
/* WhatsApp keeps its brand green — no override */

/* ---- S. AI Chat Panel ---- */
.ai-chat-panel {
  background: #F7EDDC;
  border-color: rgba(6, 74, 56, 0.12);
  box-shadow: 0 16px 56px rgba(4, 47, 36, 0.26), 0 4px 16px rgba(0, 0, 0, 0.1);
}
.ai-chat__header { background: #064A38; }
.ai-chat__avatar {
  background: rgba(240, 178, 74, 0.16);
  border-color: rgba(240, 178, 74, 0.44);
  color: #F0B24A;
}
.ai-chat__title    { color: #F7EDDC; }
.ai-chat__subtitle { color: rgba(247, 237, 220, 0.6); }
.ai-chat__close {
  background: rgba(247, 237, 220, 0.12);
  color: rgba(247, 237, 220, 0.8);
}
.ai-chat__close:hover { background: rgba(247, 237, 220, 0.22); color: #F7EDDC; }
.ai-chat__messages { background: #F7EDDC; }
.ai-chat__messages::-webkit-scrollbar-thumb { background: rgba(6, 74, 56, 0.2); }
.ai-chat__msg--bot p {
  background: #FFFFFF;
  color: #2A2A23;
  border-color: rgba(6, 74, 56, 0.1);
}
.ai-chat__msg--user p { background: #064A38; color: #F7EDDC; }
.ai-chat__input-row {
  background: #F7EDDC;
  border-top-color: rgba(6, 74, 56, 0.1);
}
.ai-chat__input {
  background: #FFFFFF;
  color: #2A2A23;
  border-color: rgba(6, 74, 56, 0.18);
}
.ai-chat__input::placeholder { color: #6B7A4F; }
.ai-chat__input:focus {
  border-color: #064A38;
  box-shadow: 0 0 0 2px rgba(6, 74, 56, 0.12);
}
.ai-chat__send { background: #064A38; color: #F7EDDC; }
.ai-chat__send:hover { background: #F0B24A; color: #064A38; }

/* ---- T. Preloader ---- */
.preloader { background: #064A38; }
.preloader__bar { background: rgba(247, 237, 220, 0.14); }
.preloader__bar-fill { background: linear-gradient(90deg, #F0B24A, #FD6F2F); }
.preloader__brand-name { color: #F7EDDC; }
.preloader__brand-sub  { color: rgba(240, 178, 74, 0.82); }

/* ---- U. Custom Cursor Glow ---- */
.cursor-glow {
  background: radial-gradient(
    circle at center,
    rgba(253, 111, 47, 0.06) 0%,
    transparent 70%
  );
}

/* ---- V. Banner Placeholders ---- */
.banner-placeholder-wrap { background: #F7EDDC; }
.banner-placeholder {
  background: linear-gradient(135deg, #DCE4B8 0%, #FFEAD1 50%, #DCE4B8 100%);
  border-color: rgba(107, 122, 79, 0.32);
}
.banner-placeholder::before {
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 24px,
    rgba(107, 122, 79, 0.04) 24px,
    rgba(107, 122, 79, 0.04) 48px
  );
}
.banner-placeholder__text { color: rgba(107, 122, 79, 0.6); }

/* ---- W. Image Placeholders (generic) ---- */
.img-placeholder {
  background: #FFEAD1;
  border-color: #F0B24A;
}
.img-placeholder__inner { color: #6B7A4F; }

/* ---- X. Eyebrow label ---- */
.eyebrow { color: #6B7A4F; }
/* Eyebrow on dark olive backgrounds → use mustard */
.testimonials .eyebrow { color: #F0B24A; }

/* ---- Y. Section header text on all light sections ---- */
.heading-2   { color: #2A2A23; }
.section-desc{ color: #6B7A4F; }

/* ---- Z. Hero scroll indicator (no change, text is white on video) ---- */
/* kept intentionally unchanged */

/* ============================================================
   51. STATS STRIP – PREMIUM REDESIGN
============================================================ */

/* Section */
.stats {
  background: linear-gradient(145deg, #052E20 0%, #073F32 50%, #064A38 100%) !important;
  padding-block: 5rem !important;
  position: relative;
  overflow: hidden;
}

/* Ambient radial glows */
.stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 90% at 10% 50%, rgba(242, 182, 53, 0.08) 0%, transparent 100%),
    radial-gradient(ellipse 55% 90% at 90% 50%, rgba(234, 200, 0, 0.06)  0%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

/* Grid */
.stats__inner {
  position: relative;
  z-index: 1;
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 1.25rem !important;
  padding-block: 0;
}

/* Card */
.stat-item {
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 2rem 1.25rem 1.75rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.375rem;
  position: relative;
  overflow: hidden;
  cursor: default;
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
              background 0.32s ease,
              box-shadow 0.32s ease;
}

/* Kill old vertical pipe divider */
.stat-item::after {
  display: none !important;
}

/* Top golden shimmer on hover */
.stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 15%;
  right: 15%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #F2B635, transparent);
  border-radius: 99px;
  opacity: 0;
  transition: opacity 0.32s ease;
}

.stat-item:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28),
              0 0 0 1px rgba(242, 182, 53, 0.18);
}

.stat-item:hover::before {
  opacity: 1;
}

/* Icon container */
.stat-item__icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: rgba(242, 182, 53, 0.12);
  border: 1px solid rgba(242, 182, 53, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #F2B635;
  margin-bottom: 0.625rem;
  flex-shrink: 0;
  transition: background 0.3s ease,
              border-color 0.3s ease,
              transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.stat-item__icon svg {
  width: 22px;
  height: 22px;
}

.stat-item:hover .stat-item__icon {
  background: rgba(242, 182, 53, 0.22);
  border-color: rgba(242, 182, 53, 0.45);
  transform: scale(1.1) rotate(-4deg);
}

/* Number */
.stat-item__number {
  display: block !important;
  font-family: var(--font-heading) !important;
  font-size: clamp(2.4rem, 3.8vw, 3.25rem) !important;
  font-weight: 700 !important;
  color: #EAC800 !important;
  line-height: 1 !important;
  letter-spacing: -0.03em;
  margin-bottom: 0.25rem;
}

/* Label */
.stat-item__label {
  display: block !important;
  font-size: 0.8125rem !important;
  font-weight: 500 !important;
  color: rgba(246, 244, 241, 0.7) !important;
  letter-spacing: 0.04em;
  line-height: 1.4;
}

/* ---- Responsive ---- */

/* Tablet → still 4 col but tighter */
@media (max-width: 1024px) {
  .stats__inner { gap: 1rem !important; }
  .stat-item { padding: 1.75rem 1rem 1.5rem; }
}

/* Mobile → 2 × 2 */
@media (max-width: 768px) {
  .stats { padding-block: 3.5rem !important; }
  .stats__inner {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.875rem !important;
  }
  .stat-item {
    padding: 1.625rem 1rem 1.375rem;
    border-radius: 14px;
  }
  .stat-item__icon { width: 44px; height: 44px; border-radius: 12px; }
  .stat-item__icon svg { width: 20px; height: 20px; }
  /* disable lift on touch screens */
  .stat-item:hover { transform: none; }
}

@media (max-width: 480px) {
  .stats__inner { gap: 0.75rem !important; }
  .stat-item { padding: 1.375rem 0.875rem 1.25rem; }
  .stat-item__number { font-size: 2.2rem !important; }
  .stat-item__icon { width: 40px; height: 40px; margin-bottom: 0.5rem; }
}

@media (max-width: 360px) {
  .stats__inner { gap: 0.625rem !important; }
  .stat-item { padding: 1.25rem 0.75rem; border-radius: 12px; }
  .stat-item__number { font-size: 2rem !important; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .stat-item,
  .stat-item__icon { transition: none !important; }
  .stat-item:hover { transform: none !important; }
}

/* ============================================================
   CATEGORIES – 3 cards centered on desktop, 1 per row on mobile
============================================================ */
@media (min-width: 769px) {
  .categories-grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: 960px;
    margin-inline: auto;
  }
  .cat-card { border-radius: 8px; }
  .cat-card__image-wrap { border-radius: 8px; }
  .cat-card__overlay { border-radius: 8px; }
  .cat-card__img,
  .cat-card__media-placeholder { aspect-ratio: 4 / 3; }
}

@media (max-width: 768px) {
  .categories-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

/* ============================================================
   PRODUCT CARDS – ANIMATED BORDER (transform:rotate technique)
   Works in ALL browsers. No @property or mask-composite needed.

   How it works:
   1. Outer .product-card has 2px padding + overflow:hidden +
      border-radius. This is the "frame".
   2. ::before is an oversized square (150% x 150%) centered on
      the card, filled with a conic-gradient, and rotated via a
      plain transform:rotate() keyframe. overflow:hidden on the
      outer card clips it to the rounded-rect shape.
   3. .product-card__inner sits on top (z-index 1) with
      border-radius 2px smaller, covering the center. Only the
      2px gap between outer and inner shows the spinning gradient.
============================================================ */

@keyframes pcBorderSpin {
  to { transform: rotate(360deg); }
}

/* ── Grid ── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
  align-items: stretch;
}

/* ── Outer shell: the animated border frame ── */
.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 2px;
  border-radius: 18px;
  background: #064A38;
  border: none !important;
  box-shadow: none !important;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

.product-card::before {
  content: '' !important;
  display: block !important;
  position: absolute;
  width: 150%;
  height: 150%;
  top: -25%;
  left: -25%;
  background: conic-gradient(
    from 0deg,
    #064A38                  0deg,
    rgba(240, 178, 74, 0.12) 25deg,
    #F0B24A                  65deg,
    #FD6F2F                  105deg,
    rgba(240, 178, 74, 0.12) 145deg,
    #064A38                  180deg,
    #064A38                  360deg
  );
  animation: pcBorderSpin 4s linear infinite;
  z-index: 0;
  pointer-events: none;
}

.product-card::after {
  display: none !important;
}

.product-card:hover {
  transform: translateY(-6px);
}

/* ── Inner card: sits on top, masks the center ── */
.product-card__inner {
  position: relative;
  z-index: 1;
  border-radius: 16px;
  overflow: hidden;
  background: #FFFFFF;
  display: flex;
  flex-direction: column;
  flex: 1;
  box-shadow: 0 4px 20px rgba(6, 74, 56, 0.10);
  transition: box-shadow 0.32s ease;
}

.product-card:hover .product-card__inner {
  box-shadow: 0 16px 40px rgba(6, 74, 56, 0.18);
}

/* ── Image area ── */
.product-image-wrap {
  background: #FFFFFF;
  border-radius: 0;
  overflow: hidden;
  flex-shrink: 0;
}

.product-card__img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  object-position: center;
  background: #FFFFFF;
  display: block;
  padding: 0.75rem;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.product-card:hover .product-card__img {
  transform: scale(1.05);
}

/* ── Content area ── */
.product-content-wrap {
  background: #064A38;
  border-top: none;
  border-radius: 0;
  padding: 1.125rem 1.25rem 1.375rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.875rem;
  flex: 1;
}

.product-card__category { display: none; }
.product-card__desc { display: none; }

.product-card__name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: #F7EDDC;
  line-height: 1.35;
  margin-bottom: 0;
}

/* ── Enquire button ── */
.product-enquire-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0.7rem 1rem;
  border-radius: 8px;
  background: #FD6F2F;
  color: #FFFFFF;
  border: none;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  margin-top: auto;
  box-shadow: 0 2px 8px rgba(253, 111, 47, 0.25);
  transition: background 0.25s ease,
              color 0.25s ease,
              transform 0.2s ease,
              box-shadow 0.25s ease;
}

.product-enquire-btn:hover {
  background: #F0B24A;
  color: #064A38;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(240, 178, 74, 0.45);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .product-card__name { font-size: 0.9rem; }
  .product-content-wrap { padding: 1rem 1rem 1.25rem; gap: 0.75rem; }
}

@media (max-width: 360px) {
  .products-grid { grid-template-columns: 1fr; }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  .product-card::before { animation: none !important; }
  .product-card:hover .product-card__img { transform: none; }
  .product-card:hover { transform: none; }
}

/* ============================================================
   MOBILE MENU FIX
   Root cause: overlay + sidebar were children of position:sticky
   header, which creates a broken stacking context in mobile
   browsers and makes the page jump on open/close.
   Fix: both elements moved to body level in HTML; CSS here
   ensures they never affect document flow.
============================================================ */

/* Body scroll lock – class toggled by JS, not inline style */
.menu-open {
  overflow: hidden;
}

/* Full-screen overlay – always in render tree, hidden via
   visibility/opacity so toggling never causes layout reflow */
.mobile-overlay {
  display: block !important;        /* stay in render tree      */
  position: fixed !important;
  inset: 0 !important;
  background: rgba(4, 47, 36, 0.5) !important;
  z-index: 1050 !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transition: opacity 0.35s ease,
              visibility 0.35s ease !important;
}

.mobile-overlay.is-active {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
}

/* Sidebar – always rendered off-screen, slides in with transform
   only; no opacity/visibility toggle on the panel itself so
   there is no layout shift */
.mobile-menu {
  position: fixed !important;
  top: 0 !important;
  right: 0 !important;
  left: auto !important;
  bottom: auto !important;
  height: 100dvh !important;
  width: min(82vw, 340px) !important;
  background: #064A38 !important;
  z-index: 1100 !important;
  /* always visible in render tree, just translated off screen */
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateX(100%) !important;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1) !important;
  box-shadow: -6px 0 28px rgba(4, 47, 36, 0.35);
  overflow-y: auto;
  overflow-x: hidden;
}

.mobile-menu.is-open {
  transform: translateX(0) !important;
}

/* Ensure header and page content are unaffected */
.header { z-index: var(--z-header) !important; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .mobile-overlay { transition: none !important; }
  .mobile-menu    { transition: none !important; }
}

/* ============================================================
   PRODUCT CARDS – TESTIMONIAL-STYLE COMET OUTLINE + COLOURS
   Matches the exact technique used on "Voice of Trust" cards:
   transparent base conic-gradient + CSS mask = only the ring shows.
   Outer card background (#064A38) acts as the always-visible border.
============================================================ */

/* Outer card: dark green background fills the 2px padding gap,
   giving a permanent dark border; comet sweeps over it. */
