/* ==========================================================================
   ORGOBASCKET — PRODUCTS PAGE
   Design tokens, navbar and button styles are duplicated from index.css /
   about.css (each page is self-contained). Values are kept identical to
   the Home and About pages so this page matches them exactly.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. DESIGN TOKENS
-------------------------------------------------------------------------- */
:root {
  /* Brand Colors */
  --color-brown: #422A1C;
  --color-green: #4E8B2C;
  --color-green-soft: #6C8F6A;
  --color-bg: #FAF8F5;
  --color-bg-alt: #E6D7B8;
  --color-bg-soft-white: #FCFBF8;
  --color-surface-soft: #F7F6F3;
  --color-border-light: #E9E2D8;
  --color-text: #2E2E2E;
  --color-text-muted: #6B6B6B;
  --color-white: #FFFFFF;

  /* Typography */
  --font-heading: 'Gilroy', 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;

  --fs-xs: 0.75rem;
  --fs-sm: 0.875rem;
  --fs-base: 1rem;
  --fs-md: 1.125rem;
  --fs-lg: 1.375rem;
  --fs-xl: 1.75rem;
  --fs-2xl: 2.25rem;
  --fs-3xl: 3rem;
  --fs-4xl: 3.75rem;

  --lh-tight: 1.15;
  --lh-normal: 1.5;
  --lh-relaxed: 1.75;

  /* Spacing Scale (4px base) */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-8: 3rem;
  --space-10: 4rem;
  --space-12: 6rem;

  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-pill: 999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(46, 46, 46, 0.06);
  --shadow-md: 0 8px 24px rgba(46, 46, 46, 0.08);
  --shadow-lg: 0 20px 40px rgba(46, 46, 46, 0.12);

  /* Transitions */
  --duration-base: 250ms;
  --duration-slow: 450ms;
  --ease-standard: cubic-bezier(0.4, 0, 0.2, 1);

  /* Layout */
  --container-max: 1280px;
  --header-height: 88px;
  --header-height-scrolled: 72px;

  /* Z-Index */
  --z-header: 1000;
  --z-overlay: 1100;
}

/* --------------------------------------------------------------------------
   2. GLOBAL RESET
-------------------------------------------------------------------------- */
*,
*::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: var(--fs-base);
  line-height: var(--lh-normal);
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3 {
  font-family: var(--font-heading);
  line-height: var(--lh-tight);
  color: var(--color-brown);
  font-weight: 700;
}

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

ul, ol {
  list-style: none;
}

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

::selection {
  background-color: var(--color-green);
  color: var(--color-white);
}

/* Visually hidden but still announced by screen readers */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* --------------------------------------------------------------------------
   3. LAYOUT UTILITIES
-------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--space-6);
}

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

@media (max-width: 768px) {
  .container {
    padding-inline: 24px;
  }

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

@media (max-width: 480px) {
  .container {
    padding-inline: 20px;
  }
}

/* --------------------------------------------------------------------------
   4. BUTTONS
-------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-pill);
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition: transform var(--duration-base) var(--ease-standard),
              box-shadow var(--duration-base) var(--ease-standard),
              background-color var(--duration-base) var(--ease-standard);
}

.btn-primary {
  background-color: var(--color-green);
  color: var(--color-white);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: var(--shadow-sm);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-brown);
  border: 2px solid var(--color-brown);
  padding: calc(var(--space-3) - 2px) calc(var(--space-6) - 2px);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background-color: var(--color-brown);
  color: var(--color-white);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.btn-secondary:active {
  transform: translateY(0);
  box-shadow: none;
}

@media (max-width: 480px) {
  .btn {
    width: 100%;
    min-height: 44px;
  }
}

/* --------------------------------------------------------------------------
   5. SITE HEADER / NAVBAR
-------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: var(--z-header);
  height: var(--header-height);
  display: flex;
  align-items: center;
  background-color: transparent;
  box-shadow: none;
  transition: background-color 450ms var(--ease-standard),
              box-shadow 450ms var(--ease-standard),
              height 450ms var(--ease-standard);
}

.site-header.is-scrolled {
  height: var(--header-height-scrolled);
  background-color: var(--color-white);
  box-shadow: var(--shadow-md);
}

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

.logo {
  display: inline-flex;
  align-items: center;
}

.logo-img {
  height: 40px;
  width: auto;
  transition: height 450ms var(--ease-standard);
}

.site-header.is-scrolled .logo-img {
  height: 34px;
}

@media (min-width: 900px) {
  .logo-img {
    height: 55px;
  }

  .site-header.is-scrolled .logo-img {
    height: 46px;
  }
}

.nav-desktop {
  display: none;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--space-6);
}

.nav-link {
  position: relative;
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--color-text);
  padding-block: var(--space-2);
  transition: color var(--duration-base) var(--ease-standard);
}

.nav-link::after {
  content: '';
  position: absolute;
  inset-inline-start: 0;
  inset-block-end: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color-green);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--duration-base) var(--ease-standard);
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link.is-active {
  color: var(--color-green);
}

.nav-link:hover::after,
.nav-link:focus-visible::after,
.nav-link.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-5);
}

.header-cta {
  display: none;
}

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
}

.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-brown);
  border-radius: 2px;
}

@media (min-width: 900px) {
  .nav-desktop {
    display: block;
  }

  .header-cta {
    display: inline-flex;
  }

  .hamburger {
    display: none;
  }

  .mobile-nav {
    display: none;
  }
}

/* --------------------------------------------------------------------------
   6. MOBILE NAVIGATION OVERLAY
-------------------------------------------------------------------------- */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: var(--z-overlay);
  background-color: var(--color-bg);
  display: flex;
  flex-direction: column;
  padding: var(--space-5) var(--space-5) var(--space-8);
  transform: translateX(100%);
  opacity: 0;
  visibility: hidden;
  transition: transform 450ms var(--ease-standard),
              opacity 450ms var(--ease-standard),
              visibility 0s linear 450ms;
}

.mobile-nav.is-open {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
  transition: transform 450ms var(--ease-standard),
              opacity 450ms var(--ease-standard),
              visibility 0s linear 0s;
}

.mobile-nav-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-10);
}

.mobile-nav-close {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
}

.mobile-nav-close span {
  position: absolute;
  inset-inline-start: 10px;
  inset-block-start: 21px;
  width: 24px;
  height: 2px;
  background-color: var(--color-brown);
  border-radius: 2px;
}

.mobile-nav-close span:first-child {
  transform: rotate(45deg);
}

.mobile-nav-close span:last-child {
  transform: rotate(-45deg);
}

.mobile-nav-menu {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  margin-bottom: var(--space-10);
}

.mobile-nav-link {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: var(--fs-xl);
  font-weight: 700;
  color: var(--color-brown);
  transition: color var(--duration-base) var(--ease-standard);
}

.mobile-nav-link:hover,
.mobile-nav-link.is-active {
  color: var(--color-green);
}

.mobile-nav-cta {
  align-self: flex-start;
}

/* --------------------------------------------------------------------------
   7. PRODUCTS HERO (Section 1) — BEM: products-hero__element--modifier
-------------------------------------------------------------------------- */
.products-hero {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  background-color: var(--color-bg);
  padding-block: calc(var(--header-height) + var(--space-8)) var(--space-10);
}

.products-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.products-hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  background-color: var(--color-green-soft);
}

.products-hero__glow--1 {
  width: 420px;
  height: 420px;
  top: -140px;
  left: -120px;
  opacity: 0.14;
}

.products-hero__glow--2 {
  width: 380px;
  height: 380px;
  bottom: -160px;
  right: -100px;
  background-color: var(--color-bg-alt);
  opacity: 0.5;
}

.products-hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
}

.products-hero__layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-8);
}

.products-hero__content {
  width: 100%;
}

.products-hero__label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--fs-sm);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-green);
  margin-bottom: var(--space-5);
}

.products-hero__label::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 2px;
  background-color: var(--color-green);
}

.products-hero__heading {
  font-size: clamp(var(--fs-3xl), 4vw + 1rem, var(--fs-4xl));
  letter-spacing: -0.01em;
  margin-bottom: var(--space-5);
}

.products-hero__highlight {
  color: var(--color-green);
}

.products-hero__text {
  font-size: var(--fs-md);
  line-height: var(--lh-relaxed);
  color: var(--color-text);
  max-width: 540px;
  margin-bottom: var(--space-8);
}

.products-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-bottom: var(--space-8);
}

/* Trust highlights */
.products-hero__trust-list {
  display: flex;
  flex-wrap: wrap;
  column-gap: var(--space-6);
  row-gap: var(--space-4);
}

.products-hero__trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.products-hero__trust-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--color-surface-soft);
  color: var(--color-green);
}

.products-hero__trust-icon svg {
  width: 19px;
  height: 19px;
}

.products-hero__trust-label {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--color-brown);
}

.products-hero__media {
  width: 100%;
}

.products-hero__image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  will-change: transform;
}

/* --------------------------------------------------------------------------
   8. PRODUCTS HERO ANIMATIONS — subtle fade-up only, pure CSS.
   Always above the fold, so it autoplays on load with a short stagger
   rather than waiting on a scroll trigger (same technique as the Home
   and About Heroes).
-------------------------------------------------------------------------- */
@keyframes productsHeroFadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Very gentle continuous float on the hero image only — kept on a
   separate element from the entrance animation (.products-hero__media)
   so the two transforms never compete on the same element, and delayed
   until the entrance has settled so there is no visible hand-off. */
@keyframes productsHeroImageFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

.products-hero__label,
.products-hero__heading,
.products-hero__text,
.products-hero__actions,
.products-hero__trust-list,
.products-hero__media {
  opacity: 0;
  animation: productsHeroFadeUp 0.8s var(--ease-standard) forwards;
}

.products-hero__label       { animation-delay: 0.1s; }
.products-hero__heading     { animation-delay: 0.2s; }
.products-hero__text        { animation-delay: 0.3s; }
.products-hero__actions     { animation-delay: 0.4s; }
.products-hero__trust-list  { animation-delay: 0.5s; }
.products-hero__media       { animation-delay: 0.3s; }

.products-hero__image {
  animation: productsHeroImageFloat 6s ease-in-out infinite;
  animation-delay: 1.3s;
}

@media (prefers-reduced-motion: reduce) {
  .products-hero__label,
  .products-hero__heading,
  .products-hero__text,
  .products-hero__actions,
  .products-hero__trust-list,
  .products-hero__media,
  .products-hero__image {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* --------------------------------------------------------------------------
   9. PRODUCTS HERO RESPONSIVE
-------------------------------------------------------------------------- */
@media (max-width: 599px) {
  .products-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .products-hero__actions .btn {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .products-hero {
    padding-block: calc(var(--header-height) + var(--space-5)) var(--space-8);
  }

  .products-hero__layout {
    gap: var(--space-6);
  }

  .products-hero__heading {
    font-size: clamp(1.75rem, 5vw + 1rem, 2.75rem);
  }

  .products-hero__text {
    margin-bottom: var(--space-6);
  }

  .products-hero__image {
    aspect-ratio: 16 / 10;
  }
}

@media (min-width: 900px) {
  .products-hero {
    min-height: 80vh;
  }

  .products-hero__layout {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-10);
  }

  .products-hero__content {
    flex: 0 0 48%;
  }

  .products-hero__media {
    flex: 0 0 46%;
  }
}

/* --------------------------------------------------------------------------
   10. PRODUCT COLLECTION (Section 2) — BEM: products-collection__element
   Large, editorial "showcase" cards rather than an e-commerce grid — no
   prices, ratings, stock labels or cart affordances. Reuses the exact
   card DNA (24px radius, shadow-sm/lg, image-zoom-on-hover) already
   established by the Home page's Featured Products cards.
-------------------------------------------------------------------------- */
.products-collection {
  background-color: var(--color-white);
  padding-block-start: 40px;
}

@media (min-width: 640px) {
  .products-collection {
    padding-block-start: 64px;
  }
}

@media (min-width: 900px) {
  .products-collection {
    padding-block-start: 90px;
  }
}

.products-collection__intro {
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: var(--space-10);
  text-align: center;
}

.products-collection__label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--fs-sm);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-green);
  margin-bottom: var(--space-4);
}

.products-collection__label::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 2px;
  background-color: var(--color-green);
}

.products-collection__heading {
  font-size: clamp(var(--fs-2xl), 2.5vw + 1rem, var(--fs-3xl));
  margin-bottom: var(--space-5);
}

.products-collection__description {
  font-size: var(--fs-md);
  line-height: var(--lh-relaxed);
  color: var(--color-text);
}

/* Grid */
.products-collection__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

.products-collection__card {
  opacity: 0;
}

/* Surface holds all visual styling + hover feedback, kept separate from
   .products-collection__card (which only carries the entrance animation)
   so the two transforms never compete on the same element. */
.products-collection__card-surface {
  display: flex;
  flex-direction: column;
  height: 100%;
  background-color: var(--color-white);
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform var(--duration-base) var(--ease-standard),
              box-shadow var(--duration-base) var(--ease-standard);
}

.products-collection__card-surface:hover,
.products-collection__card-surface:focus-within {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.products-collection__card-media {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.products-collection__card-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-standard);
}

.products-collection__card-surface:hover .products-collection__card-image,
.products-collection__card-surface:focus-within .products-collection__card-image {
  transform: scale(1.05);
}

.products-collection__card-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-grow: 1;
  padding: var(--space-6) var(--space-5);
}

.products-collection__card-title {
  font-size: var(--fs-lg);
  color: var(--color-brown);
  margin-bottom: var(--space-2);
}

.products-collection__card-text {
  font-size: var(--fs-sm);
  line-height: var(--lh-relaxed);
  color: var(--color-text);
  margin-bottom: var(--space-4);
}

.products-collection__variant-label {
  font-size: var(--fs-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  margin-bottom: var(--space-2);
}

.products-collection__variant-list {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: var(--space-6);
}

.products-collection__variant-list li {
  font-size: var(--fs-sm);
  color: var(--color-text);
}

.products-collection__variant-list li:not(:last-child)::after {
  content: '\2022';
  margin-inline: var(--space-2);
  color: var(--color-bg-alt);
}

.products-collection__card-cta {
  margin-top: auto;
}

.products-collection__card-cta-arrow {
  width: 18px;
  height: 18px;
  transition: transform var(--duration-base) var(--ease-standard);
}

.products-collection__card-surface:hover .products-collection__card-cta-arrow,
.products-collection__card-surface:focus-within .products-collection__card-cta-arrow {
  transform: translateX(4px);
}

/* --------------------------------------------------------------------------
   11. PRODUCT COLLECTION ANIMATIONS
   Reveal gated behind .products-collection.is-visible (IntersectionObserver
   in products.js) — below the fold, so an autoplay-on-load animation
   would already be finished by the time the user scrolls to it. Reuses
   the productsHeroFadeUp keyframe from Section 1.
-------------------------------------------------------------------------- */
.products-collection__label,
.products-collection__heading,
.products-collection__description {
  opacity: 0;
}

.products-collection.is-visible .products-collection__label {
  animation: productsHeroFadeUp 0.7s var(--ease-standard) forwards;
}

.products-collection.is-visible .products-collection__heading {
  animation: productsHeroFadeUp 0.8s var(--ease-standard) forwards;
  animation-delay: 0.1s;
}

.products-collection.is-visible .products-collection__description {
  animation: productsHeroFadeUp 0.8s var(--ease-standard) forwards;
  animation-delay: 0.2s;
}

.products-collection.is-visible .products-collection__card {
  animation: productsHeroFadeUp 0.7s var(--ease-standard) forwards;
}

.products-collection.is-visible .products-collection__card:nth-child(1) { animation-delay: 0.3s; }
.products-collection.is-visible .products-collection__card:nth-child(2) { animation-delay: 0.38s; }
.products-collection.is-visible .products-collection__card:nth-child(3) { animation-delay: 0.46s; }
.products-collection.is-visible .products-collection__card:nth-child(4) { animation-delay: 0.54s; }

@media (prefers-reduced-motion: reduce) {
  .products-collection__label,
  .products-collection__heading,
  .products-collection__description,
  .products-collection__card,
  .products-collection__card-surface,
  .products-collection__card-image,
  .products-collection__card-cta-arrow {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* --------------------------------------------------------------------------
   12. PRODUCT COLLECTION RESPONSIVE
-------------------------------------------------------------------------- */
@media (min-width: 640px) {
  .products-collection__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .products-collection__grid {
    gap: var(--space-8);
  }

  .products-collection__card-body {
    padding: var(--space-8);
  }
}

/* --------------------------------------------------------------------------
   13. FEATURED PRODUCT SHOWCASE (Section 3) — BEM: products-showcase__element
   Three alternating image/content blocks. A premium editorial
   presentation, not a catalog grid — no pricing, ratings or shopping
   affordances. Reuses the exact two-column split (48%/46%, row layout
   from 900px) already established by About Story.
-------------------------------------------------------------------------- */
.products-showcase {
  background-color: var(--color-bg);
  padding-block-start: 40px;
}

@media (min-width: 640px) {
  .products-showcase {
    padding-block-start: 64px;
  }
}

@media (min-width: 900px) {
  .products-showcase {
    padding-block-start: 90px;
  }
}

.products-showcase__intro {
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: var(--space-10);
  text-align: center;
}

.products-showcase__label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--fs-sm);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-green);
  margin-bottom: var(--space-4);
}

.products-showcase__label::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 2px;
  background-color: var(--color-green);
}

.products-showcase__heading {
  font-size: clamp(var(--fs-2xl), 2.5vw + 1rem, var(--fs-3xl));
  margin-bottom: var(--space-5);
}

.products-showcase__description {
  font-size: var(--fs-md);
  line-height: var(--lh-relaxed);
  color: var(--color-text);
}

/* List of showcase blocks */
.products-showcase__list {
  display: flex;
  flex-direction: column;
}

.products-showcase__block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-8);
  padding-block-end: var(--space-10);
  margin-block-end: var(--space-10);
  border-block-end: 1px solid var(--color-border-light);
}

.products-showcase__block:last-child {
  padding-block-end: 0;
  margin-block-end: 0;
  border-block-end: none;
}

.products-showcase__media {
  width: 100%;
}

.products-showcase__image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.products-showcase__content {
  width: 100%;
}

.products-showcase__title {
  font-size: var(--fs-xl);
  margin-bottom: var(--space-3);
}

.products-showcase__text {
  font-size: var(--fs-md);
  line-height: var(--lh-relaxed);
  color: var(--color-text);
  margin-bottom: var(--space-5);
}

.products-showcase__specs {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
}

.products-showcase__spec {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
}

.products-showcase__spec-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  margin-block-start: 1px;
  color: var(--color-green);
}

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

.products-showcase__spec-text {
  font-size: var(--fs-sm);
  line-height: var(--lh-relaxed);
  color: var(--color-text);
}

.products-showcase__spec-text strong {
  color: var(--color-brown);
  font-weight: 600;
}

/* --------------------------------------------------------------------------
   14. FEATURED PRODUCT SHOWCASE ANIMATIONS
   Reveal gated behind .products-showcase.is-visible (IntersectionObserver
   in products.js) — below the fold. Images reuse the vertical
   productsHeroFadeUp keyframe (same treatment as About Story's media);
   content blocks get a subtly different horizontal slide-in so the two
   sides of each showcase don't read as identical motion. The reverse
   modifier flips --slide-x so content always slides in from its outer
   edge, never through the image.
-------------------------------------------------------------------------- */
@keyframes productsShowcaseSlideIn {
  from { opacity: 0; transform: translateX(var(--slide-x, -24px)); }
  to   { opacity: 1; transform: translateX(0); }
}

.products-showcase__media,
.products-showcase__content {
  opacity: 0;
}

.products-showcase__block--reverse .products-showcase__content {
  --slide-x: 24px;
}

.products-showcase.is-visible .products-showcase__media {
  animation: productsHeroFadeUp 0.8s var(--ease-standard) forwards;
}

.products-showcase.is-visible .products-showcase__content {
  animation: productsShowcaseSlideIn 0.8s var(--ease-standard) forwards;
  animation-delay: 0.15s;
}

.products-showcase.is-visible .products-showcase__block:nth-child(2) .products-showcase__media,
.products-showcase.is-visible .products-showcase__block:nth-child(2) .products-showcase__content {
  animation-delay: 0.1s;
}

.products-showcase.is-visible .products-showcase__block:nth-child(3) .products-showcase__media,
.products-showcase.is-visible .products-showcase__block:nth-child(3) .products-showcase__content {
  animation-delay: 0.2s;
}

.products-showcase.is-visible .products-showcase__block:nth-child(2) .products-showcase__content {
  animation-delay: 0.25s;
}

.products-showcase.is-visible .products-showcase__block:nth-child(3) .products-showcase__content {
  animation-delay: 0.35s;
}

@media (prefers-reduced-motion: reduce) {
  .products-showcase__media,
  .products-showcase__content {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* --------------------------------------------------------------------------
   15. FEATURED PRODUCT SHOWCASE RESPONSIVE
-------------------------------------------------------------------------- */
@media (min-width: 900px) {
  .products-showcase__block {
    flex-direction: row;
    align-items: center;
    gap: var(--space-10);
  }

  .products-showcase__block--reverse {
    flex-direction: row-reverse;
  }

  .products-showcase__media {
    flex: 0 0 46%;
  }

  .products-showcase__content {
    flex: 0 0 48%;
  }
}

/* --------------------------------------------------------------------------
   16. EXPORT & QUALITY STANDARDS (Section 4) — BEM: export-quality__element
   Five icon-on-top feature cards. Same card DNA as About's icon cards
   (about-difference / about-global): border + shadow-sm, hover lift to
   shadow-lg, icon scale on hover.
-------------------------------------------------------------------------- */
.export-quality {
  background-color: var(--color-white);
  padding-block-start: 40px;
}

@media (min-width: 640px) {
  .export-quality {
    padding-block-start: 64px;
  }
}

@media (min-width: 900px) {
  .export-quality {
    padding-block-start: 90px;
  }
}

.export-quality__intro {
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: var(--space-10);
  text-align: center;
}

.export-quality__label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--fs-sm);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-green);
  margin-bottom: var(--space-4);
}

.export-quality__label::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 2px;
  background-color: var(--color-green);
}

.export-quality__heading {
  font-size: clamp(var(--fs-2xl), 2.5vw + 1rem, var(--fs-3xl));
  margin-bottom: var(--space-5);
}

.export-quality__description {
  font-size: var(--fs-md);
  line-height: var(--lh-relaxed);
  color: var(--color-text);
}

/* Grid — balanced 3+2 on desktop via a 6-column track (cards 1-3 span
   2 columns each filling row 1; cards 4-5 span 2 columns each, offset
   to sit centered on row 2). */
.export-quality__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
}

.export-quality__card {
  opacity: 0;
}

/* Surface holds all visual styling + hover feedback, kept separate from
   .export-quality__card (which only carries the entrance animation) so
   the two transforms never compete on the same element. */
.export-quality__card-surface {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
  background-color: var(--color-white);
  border: 1px solid var(--color-bg-alt);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: var(--space-6);
  transition: transform var(--duration-base) var(--ease-standard),
              box-shadow var(--duration-base) var(--ease-standard);
}

.export-quality__card-surface:hover,
.export-quality__card-surface:focus-within {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.export-quality__card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: var(--space-4);
  border-radius: 16px;
  background-color: var(--color-surface-soft);
  color: var(--color-green);
  transition: transform var(--duration-base) var(--ease-standard);
}

.export-quality__card-icon svg {
  width: 26px;
  height: 26px;
}

.export-quality__card-surface:hover .export-quality__card-icon {
  transform: scale(1.08);
}

.export-quality__card-title {
  font-size: var(--fs-md);
  margin-bottom: var(--space-2);
}

.export-quality__card-text {
  font-size: var(--fs-sm);
  line-height: var(--lh-relaxed);
  color: var(--color-text);
}

/* --------------------------------------------------------------------------
   17. EXPORT & QUALITY STANDARDS ANIMATIONS
   Reveal gated behind .export-quality.is-visible (IntersectionObserver in
   products.js). Reuses productsHeroFadeUp.
-------------------------------------------------------------------------- */
.export-quality__label,
.export-quality__heading,
.export-quality__description {
  opacity: 0;
}

.export-quality.is-visible .export-quality__label {
  animation: productsHeroFadeUp 0.7s var(--ease-standard) forwards;
}

.export-quality.is-visible .export-quality__heading {
  animation: productsHeroFadeUp 0.8s var(--ease-standard) forwards;
  animation-delay: 0.1s;
}

.export-quality.is-visible .export-quality__description {
  animation: productsHeroFadeUp 0.8s var(--ease-standard) forwards;
  animation-delay: 0.2s;
}

.export-quality.is-visible .export-quality__card {
  animation: productsHeroFadeUp 0.7s var(--ease-standard) forwards;
}

.export-quality.is-visible .export-quality__card:nth-child(1) { animation-delay: 0.3s; }
.export-quality.is-visible .export-quality__card:nth-child(2) { animation-delay: 0.38s; }
.export-quality.is-visible .export-quality__card:nth-child(3) { animation-delay: 0.46s; }
.export-quality.is-visible .export-quality__card:nth-child(4) { animation-delay: 0.54s; }
.export-quality.is-visible .export-quality__card:nth-child(5) { animation-delay: 0.62s; }

@media (prefers-reduced-motion: reduce) {
  .export-quality__label,
  .export-quality__heading,
  .export-quality__description,
  .export-quality__card,
  .export-quality__card-surface,
  .export-quality__card-icon {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* --------------------------------------------------------------------------
   18. EXPORT & QUALITY STANDARDS RESPONSIVE
-------------------------------------------------------------------------- */
@media (min-width: 640px) {
  .export-quality__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .export-quality__grid {
    grid-template-columns: repeat(6, 1fr);
    gap: var(--space-6);
  }

  .export-quality__card:nth-child(1),
  .export-quality__card:nth-child(2),
  .export-quality__card:nth-child(3) {
    grid-column: span 2;
  }

  .export-quality__card:nth-child(4) {
    grid-column: 2 / span 2;
  }

  .export-quality__card:nth-child(5) {
    grid-column: 4 / span 2;
  }
}

/* --------------------------------------------------------------------------
   19. GLOBAL PARTNERSHIP CTA (Section 5, final) — BEM: global-cta__element
   Same rounded dark-banner concept as the Home page's Final CTA
   (32px radius, color-brown fill, shadow-lg) — decoration trimmed to
   two soft glows only, no background photo/particles/mushroom icons,
   per "no decorative clutter."
-------------------------------------------------------------------------- */
.global-cta {
  background-color: var(--color-bg);
  padding-block-start: 40px;
  padding-block-end: 40px;
}

@media (min-width: 640px) {
  .global-cta {
    padding-block: 64px;
  }
}

@media (min-width: 900px) {
  .global-cta {
    padding-block: 90px;
  }
}

.global-cta__banner {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  background-color: var(--color-brown);
  box-shadow: var(--shadow-lg);
}

/* Decorative background — two soft blurred glows only */
.global-cta__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.global-cta__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  background-color: var(--color-green);
}

.global-cta__glow--1 {
  width: 420px;
  height: 420px;
  top: -140px;
  left: 6%;
  opacity: 0.25;
}

.global-cta__glow--2 {
  width: 360px;
  height: 360px;
  bottom: -140px;
  right: 4%;
  opacity: 0.18;
}

.global-cta__content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin-inline: auto;
  padding: var(--space-10) var(--space-6);
  text-align: center;
}

.global-cta__label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--fs-sm);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-green-soft);
  margin-bottom: var(--space-4);
}

.global-cta__label::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 2px;
  background-color: var(--color-green-soft);
}

.global-cta__heading {
  font-size: clamp(var(--fs-3xl), 4vw + 1rem, var(--fs-4xl));
  line-height: var(--lh-tight);
  color: var(--color-white);
  margin-bottom: var(--space-5);
}

.global-cta__text {
  font-size: var(--fs-md);
  line-height: var(--lh-relaxed);
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: var(--space-8);
}

.global-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-4);
  margin-bottom: var(--space-8);
}

.global-cta__actions a.btn:hover,
.global-cta__actions a.btn:focus-visible {
  transform: scale(1.05);
}

.global-cta__btn-secondary {
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--color-white);
}

.global-cta__btn-secondary:hover,
.global-cta__btn-secondary:focus-visible {
  background-color: var(--color-white);
  color: var(--color-brown);
  border-color: var(--color-white);
}

/* Trust row — frosted glass pills, same treatment as the Home CTA */
.global-cta__trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-4);
}

.global-cta__trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-5);
  background-color: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-pill);
  transition: transform var(--duration-base) var(--ease-standard),
              background-color var(--duration-base) var(--ease-standard);
}

.global-cta__trust-item:hover {
  transform: translateY(-4px);
  background-color: rgba(255, 255, 255, 0.2);
}

.global-cta__trust-icon {
  width: 18px;
  height: 18px;
  color: var(--color-green-soft);
  flex-shrink: 0;
}

.global-cta__trust-label {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--color-white);
  white-space: nowrap;
}

/* --------------------------------------------------------------------------
   20. GLOBAL PARTNERSHIP CTA ANIMATIONS
   Reveal gated behind .global-cta.is-visible (IntersectionObserver in
   products.js). Reuses productsHeroFadeUp.
-------------------------------------------------------------------------- */
.global-cta__label,
.global-cta__heading,
.global-cta__text,
.global-cta__actions {
  opacity: 0;
}

.global-cta__trust-item {
  opacity: 0;
}

.global-cta.is-visible .global-cta__label {
  animation: productsHeroFadeUp 0.7s var(--ease-standard) forwards;
}

.global-cta.is-visible .global-cta__heading {
  animation: productsHeroFadeUp 0.8s var(--ease-standard) forwards;
  animation-delay: 0.1s;
}

.global-cta.is-visible .global-cta__text {
  animation: productsHeroFadeUp 0.8s var(--ease-standard) forwards;
  animation-delay: 0.2s;
}

.global-cta.is-visible .global-cta__actions {
  animation: productsHeroFadeUp 0.8s var(--ease-standard) forwards;
  animation-delay: 0.3s;
}

.global-cta.is-visible .global-cta__trust-item {
  animation: productsHeroFadeUp 0.7s var(--ease-standard) forwards;
}

.global-cta.is-visible .global-cta__trust-item:nth-child(1) { animation-delay: 0.4s; }
.global-cta.is-visible .global-cta__trust-item:nth-child(2) { animation-delay: 0.48s; }
.global-cta.is-visible .global-cta__trust-item:nth-child(3) { animation-delay: 0.56s; }

@media (prefers-reduced-motion: reduce) {
  .global-cta__label,
  .global-cta__heading,
  .global-cta__text,
  .global-cta__actions,
  .global-cta__trust-item {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* --------------------------------------------------------------------------
   21. GLOBAL PARTNERSHIP CTA RESPONSIVE
-------------------------------------------------------------------------- */
@media (max-width: 599px) {
  .global-cta__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .global-cta__actions .btn {
    width: 100%;
  }
}

@media (min-width: 900px) {
  .global-cta__content {
    padding: var(--space-12) var(--space-8);
  }
}

/* --------------------------------------------------------------------------
   22. SITE FOOTER
   Reused verbatim from index.css (same markup, same classes) so the
   footer is pixel-identical across pages. Reveal gated behind
   .site-footer.is-visible (IntersectionObserver in products.js); reuses
   the productsHeroFadeUp keyframe already defined for this page instead
   of redeclaring the homepage's heroFadeUp.
-------------------------------------------------------------------------- */
.site-footer {
  position: relative;
  overflow: hidden;
  background-color: var(--color-bg-soft-white);
  border-block-start: 1px solid var(--color-border-light);
  padding-block-start: var(--space-10);
}

.footer__container {
  position: relative;
  z-index: 1;
}

/* Decorative background */
.footer__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.footer__grid-texture {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(66, 42, 28, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(66, 42, 28, 0.04) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: linear-gradient(to bottom, black, transparent);
  mask-image: linear-gradient(to bottom, black, transparent);
}

.footer__blur {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  background-color: var(--color-green-soft);
  opacity: 0.08;
}

.footer__blur--1 {
  width: 380px;
  height: 380px;
  top: -100px;
  right: 8%;
}

.footer__blur--2 {
  width: 320px;
  height: 320px;
  bottom: -100px;
  left: 4%;
}

.footer__leaf {
  position: absolute;
  width: 160px;
  height: 160px;
  color: var(--color-green);
  opacity: 0.05;
}

.footer__leaf--tl {
  top: -30px;
  left: -30px;
  transform: rotate(20deg);
}

.footer__leaf--br {
  bottom: -30px;
  right: -30px;
  transform: rotate(-160deg);
}

/* Grid */
.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  padding-bottom: var(--space-8);
  text-align: center;
}

.footer__column {
  opacity: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Column 1: Brand */
.footer__logo {
  display: inline-flex;
  margin-bottom: var(--space-4);
}

.footer__logo-img {
  height: 38px;
  width: auto;
}

.footer__tagline {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--fs-md);
  color: var(--color-brown);
  margin-bottom: var(--space-3);
}

.footer__description {
  font-size: var(--fs-sm);
  line-height: var(--lh-relaxed);
  color: var(--color-text);
  max-width: 320px;
  margin-bottom: var(--space-6);
}

.footer__social-heading {
  font-size: var(--fs-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-brown);
  margin-bottom: var(--space-4);
}

.footer__social-list {
  display: flex;
  justify-content: center;
  gap: var(--space-3);
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--color-border-light);
  color: var(--color-brown);
  transition: color var(--duration-base) var(--ease-standard),
              border-color var(--duration-base) var(--ease-standard),
              transform var(--duration-base) var(--ease-standard);
}

.footer__social-link svg {
  width: 18px;
  height: 18px;
}

.footer__social-link:hover,
.footer__social-link:focus-visible {
  color: var(--color-green);
  border-color: var(--color-green);
  transform: scale(1.1);
}

/* Columns 2 & 3: Link lists */
.footer__heading {
  font-size: var(--fs-md);
  color: var(--color-brown);
  margin-bottom: var(--space-5);
}

.footer__link-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
}

.footer__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding-block-end: 2px;
  font-size: var(--fs-sm);
  color: var(--color-text);
  transition: color var(--duration-base) var(--ease-standard);
}

.footer__link::after {
  content: '';
  position: absolute;
  inset-inline-start: 0;
  inset-block-end: 0;
  width: 100%;
  height: 1px;
  background-color: var(--color-green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--duration-base) var(--ease-standard);
}

.footer__link:hover,
.footer__link:focus-visible {
  color: var(--color-green);
}

.footer__link:hover::after,
.footer__link:focus-visible::after {
  transform: scaleX(1);
}

.footer__link-arrow {
  width: 14px;
  height: 14px;
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity var(--duration-base) var(--ease-standard),
              transform var(--duration-base) var(--ease-standard);
}

.footer__link:hover .footer__link-arrow,
.footer__link:focus-visible .footer__link-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* Column 4: Contact */
.footer__address {
  font-style: normal;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}

.footer__contact-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.footer__contact-label {
  font-size: var(--fs-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-green);
}

.footer__contact-value {
  font-size: var(--fs-sm);
  line-height: var(--lh-relaxed);
  color: var(--color-text);
}

a.footer__contact-value {
  transition: color var(--duration-base) var(--ease-standard);
}

a.footer__contact-value:hover,
a.footer__contact-value:focus-visible {
  color: var(--color-green);
}

.footer__cta-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  width: 100%;
  max-width: 280px;
}

.footer__cta-btn {
  justify-content: center;
  text-align: center;
}

/* Trust Strip */
.footer__trust-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
  padding-block: var(--space-8);
  border-block: 1px solid var(--color-border-light);
}

.footer__trust-item {
  opacity: 0;
}

.footer__trust-item-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  text-align: center;
  transition: transform var(--duration-base) var(--ease-standard);
}

.footer__trust-item-inner:hover {
  transform: translateY(-4px);
}

.footer__trust-icon {
  width: 26px;
  height: 26px;
  color: var(--color-green);
}

.footer__trust-title {
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--color-brown);
}

/* Copyright + Developer Signature — merged into one centered line */
.footer__bottom {
  display: flex;
  justify-content: center;
  text-align: center;
  padding-block: var(--space-5);
  opacity: 0;
}

.footer__credit-line {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.footer__copyright {
  font-size: var(--fs-xs);
  color: var(--color-text);
}

.footer__dot {
  color: var(--color-border-light);
  font-size: var(--fs-xs);
}

/* --------------------------------------------------------------------------
   Developer Signature — inline text only. No pill, card, border or
   shadow box; the "premium" feel comes entirely from typography and
   motion. Pure CSS throughout (no JS): the animated gradient on
   "TechVahni" runs via background-position + animation-play-state, and
   the heartbeat's hover-triggered rotation is parameterized with a CSS
   custom property rather than swapping animations, so nothing ever
   fights over the same element's transform.
-------------------------------------------------------------------------- */
.footer__signature-line {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  transition: transform 300ms ease,
              filter 300ms ease;
}

.footer__signature-line:hover,
.footer__signature-line:focus-visible {
  transform: translateY(-3px);
  filter: brightness(1.1) drop-shadow(0 0 6px rgba(76, 154, 42, 0.28));
}

.footer__signature-text {
  font-size: 15px;
  font-weight: 500;
  color: var(--color-text-muted);
}

.footer__signature-heart {
  --heart-rotate: 0deg;
  width: 16px;
  height: 16px;
  color: #E2574C;
  flex-shrink: 0;
  transform-origin: center;
  animation: footerHeartBeat 1.8s ease-in-out infinite;
}

.footer__signature-line:hover .footer__signature-heart,
.footer__signature-line:focus-visible .footer__signature-heart {
  --heart-rotate: 8deg;
}

.footer__signature-name {
  position: relative;
  display: inline-block;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0;
  color: #4C9A2A;
  transition: transform 300ms ease,
              letter-spacing 300ms ease,
              filter 300ms ease;
}

.footer__signature-name::after {
  content: '';
  position: absolute;
  inset-inline-start: 50%;
  inset-block-end: -2px;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  transition: transform 300ms ease;
}

.footer__signature-line:hover .footer__signature-name,
.footer__signature-line:focus-visible .footer__signature-name {
  background-image: linear-gradient(90deg, #4C9A2A, #22C1C3, #2563EB, #8B5CF6, #4C9A2A);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: footerSignatureGradient 3s linear infinite;
  transform: scale(1.08);
  letter-spacing: 0.06em;
  filter: drop-shadow(0 0 8px rgba(76, 154, 42, 0.4));
}

.footer__signature-line:hover .footer__signature-name::after,
.footer__signature-line:focus-visible .footer__signature-name::after {
  transform: translateX(-50%) scaleX(1);
}

@keyframes footerHeartBeat {
  0%, 100% { transform: scale(1) rotate(var(--heart-rotate)); }
  50%      { transform: scale(1.25) rotate(var(--heart-rotate)); }
}

@keyframes footerSignatureGradient {
  0%   { background-position: 0% 50%; }
  100% { background-position: 300% 50%; }
}

/* --------------------------------------------------------------------------
   23. SITE FOOTER ANIMATIONS
   Reveal gated behind .site-footer.is-visible (IntersectionObserver in
   products.js). Reuses productsHeroFadeUp from Section 1.
-------------------------------------------------------------------------- */
.site-footer.is-visible .footer__column {
  animation: productsHeroFadeUp 0.7s var(--ease-standard) forwards;
}

.site-footer.is-visible .footer__column:nth-child(1) { animation-delay: 0.1s; }
.site-footer.is-visible .footer__column:nth-child(2) { animation-delay: 0.18s; }
.site-footer.is-visible .footer__column:nth-child(3) { animation-delay: 0.26s; }
.site-footer.is-visible .footer__column:nth-child(4) { animation-delay: 0.34s; }

.site-footer.is-visible .footer__trust-item {
  animation: productsHeroFadeUp 0.6s var(--ease-standard) forwards;
}

.site-footer.is-visible .footer__trust-item:nth-child(1) { animation-delay: 0.5s; }
.site-footer.is-visible .footer__trust-item:nth-child(2) { animation-delay: 0.58s; }
.site-footer.is-visible .footer__trust-item:nth-child(3) { animation-delay: 0.66s; }
.site-footer.is-visible .footer__trust-item:nth-child(4) { animation-delay: 0.74s; }

.site-footer.is-visible .footer__bottom {
  animation: productsHeroFadeUp 0.7s var(--ease-standard) forwards;
  animation-delay: 0.75s;
}

@media (prefers-reduced-motion: reduce) {
  .footer__column,
  .footer__trust-item,
  .footer__trust-item-inner,
  .footer__bottom,
  .footer__social-link,
  .footer__link,
  .footer__link-arrow,
  .footer__signature-line,
  .footer__signature-heart,
  .footer__signature-name {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }

  .footer__signature-name {
    background-image: none !important;
    color: #4C9A2A !important;
  }
}

/* --------------------------------------------------------------------------
   24. SITE FOOTER RESPONSIVE
-------------------------------------------------------------------------- */
@media (min-width: 640px) {
  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
    text-align: start;
  }

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

  .footer__social-list {
    justify-content: flex-start;
  }

  .footer__link-list {
    align-items: flex-start;
  }

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

  .footer__contact-group {
    align-items: flex-start;
  }

  .footer__trust-strip {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1000px) {
  .footer__grid {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
  }
}

@media (max-width: 420px) {
  .footer__credit-line {
    flex-direction: column;
    gap: 4px;
  }

  .footer__dot {
    display: none;
  }
}

@media (min-width: 1600px) {
  :root {
    --container-max: 1440px;
  }
}
/* Floating Contact Buttons */

.floating-contact{
    position: fixed;
    right: 24px;
    bottom: 90px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    z-index: 9999;
}

.float-btn{
    width:58px;
    height:58px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;

    color:#fff;
    font-size:24px;

    box-shadow:0 12px 35px rgba(0,0,0,.18);

    transition:.35s ease;
}

.phone-btn{
    background:#3F7D20;
}

.whatsapp-btn{
    background:#25D366;
}

.float-btn:hover{

    transform:translateY(-5px) scale(1.08);

    box-shadow:0 18px 40px rgba(0,0,0,.25);

}

.float-btn i{

    transition:.3s;

}

.float-btn:hover i{

    transform:scale(1.15);

}

/* Mobile */

@media(max-width:768px){

.floating-contact{

right:16px;

bottom:80px;

}

.float-btn{

width:52px;

height:52px;

font-size:22px;

}

}
@keyframes pulse{

0%{

box-shadow:0 0 0 0 rgba(63,125,32,.4);

}

70%{

box-shadow:0 0 0 12px rgba(63,125,32,0);

}

100%{

box-shadow:0 0 0 0 rgba(63,125,32,0);

}

}

.phone-btn{

animation:pulse 2.5s infinite;

}

.whatsapp-btn{

animation:pulse 2.5s infinite;

animation-delay:.8s;

}