/* ═══════════════════════════════════════════════════════════════
   NIKITES SARL U — Static Website Stylesheet
   Pure CSS • No framework dependencies
   ═══════════════════════════════════════════════════════════════ */

/* ──────────────────────────────────────── */
/* CSS CUSTOM PROPERTIES                   */
/* ──────────────────────────────────────── */
:root {
  /* Brand Colors */
  --nikites-purple: #2E1A47;
  --nikites-gold: #C5A059;
  --nikites-gold-light: #D4B87A;
  --nikites-silver: #E0DCD3;
  --nikites-dark: #1A1019;
  --nikites-warm-gray: #F5F3F0;
  --nikites-text: #2D2D2D;
  --nikites-muted: #6B6B6B;

  /* White */
  --white: #ffffff;

  /* Semantic */
  --color-error: #ef4444;
  --color-success: #16a34a;
  --color-whatsapp: #25D366;
  --color-whatsapp-hover: #20BA59;

  /* Typography */
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Spacing */
  --header-height: 80px;

  /* Transitions */
  --transition-fast: 200ms ease;
  --transition-base: 300ms ease;
  --transition-slow: 500ms ease;
  --transition-spring: 500ms cubic-bezier(0.16, 1, 0.3, 1);

  /* Focus ring */
  --focus-ring: 2px solid var(--nikites-gold);
  --focus-ring-offset: 2px;
}

/* ──────────────────────────────────────── */
/* CSS RESET / NORMALIZE                    */
/* ──────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 1.5;
  color: var(--nikites-text);
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

input, button, textarea, select {
  font: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

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

ul, ol {
  list-style: none;
}

fieldset {
  border: none;
}

/* ──────────────────────────────────────── */
/* PREMIUM SCROLLBAR                        */
/* ──────────────────────────────────────── */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: var(--nikites-warm-gray);
}
::-webkit-scrollbar-thumb {
  background: var(--nikites-silver);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--nikites-muted);
}

/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--nikites-silver) var(--nikites-warm-gray);
}

/* ──────────────────────────────────────── */
/* UTILITIES                                */
/* ──────────────────────────────────────── */
.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.no-scrollbar::-webkit-scrollbar {
  display: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ──────────────────────────────────────── */
/* APP WRAPPER                              */
/* ──────────────────────────────────────── */
.app-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ──────────────────────────────────────── */
/* SKIP TO CONTENT                          */
/* ──────────────────────────────────────── */
.skip-to-content {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  z-index: 100;
}
.skip-to-content:focus {
  position: fixed;
  top: 1rem;
  left: 1rem;
  width: auto;
  height: auto;
  padding: 0.5rem 1rem;
  margin: 0;
  overflow: visible;
  clip: auto;
  white-space: normal;
  background-color: var(--nikites-gold);
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 500;
  outline: var(--focus-ring);
  outline-offset: var(--focus-ring-offset);
  z-index: 200;
}

/* ──────────────────────────────────────── */
/* FOCUS VISIBLE                            */
/* ──────────────────────────────────────── */
:focus-visible {
  outline: var(--focus-ring);
  outline-offset: var(--focus-ring-offset);
}
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: var(--focus-ring);
  outline-offset: var(--focus-ring-offset);
}

/* ──────────────────────────────────────── */
/* CONTAINERS                               */
/* ──────────────────────────────────────── */
.container-narrow {
  max-width: 48rem;
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.container-standard {
  max-width: 64rem;
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.container-wide {
  max-width: 80rem;
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

@media (min-width: 768px) {
  .container-narrow,
  .container-standard,
  .container-wide {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}

/* ──────────────────────────────────────── */
/* PAGE SECTIONS                            */
/* ──────────────────────────────────────── */
.page-section {
  display: none;
}
.page-section.active {
  display: block;
}

.site-main {
  flex: 1;
}

/* ──────────────────────────────────────── */
/* HEADER                                   */
/* ──────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all var(--transition-slow);
  background: transparent;
  padding: 1.25rem 0;
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  padding: 0.75rem 0;
}

.header-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (min-width: 640px) {
  .header-inner {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .header-inner {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

/* Logo */
.header-logo {
  flex-shrink: 0;
}
.logo-img {
  height: 3rem;
  width: auto;
  transition: all var(--transition-slow);
}
.site-header.scrolled .logo-img {
  height: 2.5rem;
}

/* Desktop Nav */
.desktop-nav {
  display: none;
  align-items: center;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .desktop-nav {
    display: flex;
  }
}

.nav-link {
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--nikites-text);
  padding: 0.25rem 0;
  position: relative;
  transition: color var(--transition-base);
}
.nav-link:hover,
.nav-link.active {
  color: var(--nikites-purple);
  font-weight: 500;
}
/* Gold underline */
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  background: var(--nikites-gold);
  transition: width var(--transition-base);
  width: 0;
}
.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Language Switcher */
.lang-switcher {
  display: flex;
  align-items: center;
}
.lang-btn {
  padding: 0.25rem 0.625rem;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all var(--transition-base);
  border-radius: 2px;
  color: var(--nikites-muted);
}
.lang-btn:hover {
  color: var(--nikites-purple);
}
.lang-btn.active {
  background: var(--nikites-purple);
  color: var(--white);
  font-weight: 500;
}

/* Header CTA */
.header-cta {
  display: none;
  align-items: center;
  padding: 0.625rem 1.25rem;
  background: var(--nikites-gold);
  color: var(--white);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  transition: background var(--transition-base);
  border-radius: 2px;
}
.header-cta:hover {
  background: var(--nikites-gold-light);
}
@media (min-width: 1024px) {
  .header-cta {
    display: inline-flex;
  }
}

/* Mobile Toggle */
.mobile-toggle {
  display: flex;
  padding: 0.5rem;
  color: var(--nikites-text);
  transition: color var(--transition-base);
}
.mobile-toggle:hover {
  color: var(--nikites-purple);
}
@media (min-width: 1024px) {
  .mobile-toggle {
    display: none;
  }
}

/* ──────────────────────────────────────── */
/* MOBILE MENU                              */
/* ──────────────────────────────────────── */
.mobile-menu {
  position: fixed;
  inset: 0;
  top: 0;
  background: var(--white);
  z-index: 60;
  transform: translateX(100%);
  transition: transform var(--transition-spring);
}
.mobile-menu.open {
  transform: translateX(0);
}

@media (min-width: 1024px) {
  .mobile-menu {
    display: none;
  }
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1rem;
}
.logo-img-mobile {
  height: 2.5rem;
  width: auto;
}
.mobile-close-btn {
  display: flex;
  padding: 0.5rem;
  color: var(--nikites-text);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  padding: 2rem 1.5rem 0;
  gap: 0.25rem;
}
.mobile-nav-link {
  text-align: left;
  font-size: 1.125rem;
  letter-spacing: 0.04em;
  padding: 1rem 0;
  border-bottom: 1px solid var(--nikites-warm-gray);
  color: var(--nikites-text);
  transition: color var(--transition-base);
}
.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--nikites-purple);
  font-weight: 500;
}

.mobile-cta {
  margin-top: 2rem;
  width: 100%;
  padding: 0.875rem;
  background: var(--nikites-gold);
  color: var(--white);
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  transition: background var(--transition-base);
  border-radius: 2px;
  text-align: center;
}
.mobile-cta:hover {
  background: var(--nikites-gold-light);
}

.mobile-lang {
  position: absolute;
  bottom: 2rem;
  left: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

/* ──────────────────────────────────────── */
/* BUTTONS                                  */
/* ──────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 3rem;
  border: 2px solid var(--nikites-gold);
  background: var(--nikites-gold);
  padding: 0 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--white);
  transition: all var(--transition-base);
}
.btn-primary:hover {
  background: var(--nikites-gold-light);
  border-color: var(--nikites-gold-light);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 3rem;
  border: 2px solid rgba(255, 255, 255, 0.4);
  background: transparent;
  padding: 0 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--white);
  transition: all var(--transition-base);
}
.btn-secondary:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  border: 1px solid var(--nikites-purple);
  padding: 0.75rem 1.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--nikites-purple);
  transition: all var(--transition-base);
}
.btn-outline:hover {
  background: var(--nikites-purple);
  color: var(--white);
}

.btn-primary-dark {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  border: 2px solid var(--nikites-purple);
  background: var(--nikites-purple);
  padding: 0.875rem 2rem;
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--white);
  transition: all var(--transition-base);
}
.btn-primary-dark:hover {
  background: rgba(46, 26, 71, 0.9);
}

/* ──────────────────────────────────────── */
/* HERO SECTION                             */
/* ──────────────────────────────────────── */
.hero-section {
  position: relative;
  display: flex;
  min-height: 100vh;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-image-container {
  position: absolute;
  inset: 0;
}
.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 56rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
}
@media (min-width: 1024px) {
  .hero-content {
    padding: 0 2rem;
  }
}

.hero-eyebrow {
  margin-bottom: 1.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--nikites-gold);
  opacity: 0;
  transform: translateY(1rem);
  transition: all 1000ms ease-out;
}
.hero-eyebrow.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-headline {
  margin-bottom: 1.5rem;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  opacity: 0;
  transform: translateY(1.5rem);
  transition: all 1000ms ease-out 150ms;
}
@media (min-width: 640px) {
  .hero-headline { font-size: 2.25rem; }
}
@media (min-width: 768px) {
  .hero-headline { font-size: 3rem; }
}
@media (min-width: 1024px) {
  .hero-headline { font-size: 3.75rem; }
}
@media (min-width: 1280px) {
  .hero-headline { font-size: 4.5rem; }
}
.hero-headline.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-supporting {
  margin: 0 auto 2.5rem;
  max-width: 36rem;
  font-size: 1rem;
  line-height: 1.625;
  color: rgba(255, 255, 255, 0.7);
  opacity: 0;
  transform: translateY(1.5rem);
  transition: all 1000ms ease-out 300ms;
}
@media (min-width: 640px) {
  .hero-supporting { font-size: 1.125rem; }
}
@media (min-width: 768px) {
  .hero-supporting { font-size: 1.25rem; }
}
.hero-supporting.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  opacity: 0;
  transform: translateY(1.5rem);
  transition: all 1000ms ease-out 500ms;
}
@media (min-width: 640px) {
  .hero-actions {
    flex-direction: row;
  }
}
.hero-actions.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}
.scroll-mouse {
  display: flex;
  width: 1.5rem;
  height: 2.5rem;
  align-items: flex-start;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 9999px;
  padding: 0.375rem;
}
.scroll-dot {
  width: 2px;
  height: 0.5rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.6);
  animation: scroll-bounce 2s ease-in-out infinite;
}

@keyframes scroll-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(0.375rem); }
}

/* ──────────────────────────────────────── */
/* BRAND INTRODUCTION                       */
/* ──────────────────────────────────────── */
.brand-section {
  background: var(--white);
  padding: 6rem 0;
}
@media (min-width: 768px) {
  .brand-section { padding: 8rem 0; }
}
@media (min-width: 1024px) {
  .brand-section { padding: 10rem 0; }
}

.section-eyebrow {
  margin-bottom: 2.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--nikites-gold);
  text-align: center;
}

.brand-sentences {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  text-align: center;
}
.brand-sentences p {
  font-size: 1rem;
  line-height: 1.625;
  color: var(--nikites-muted);
}
@media (min-width: 768px) {
  .brand-sentences p { font-size: 1.125rem; }
}

/* ──────────────────────────────────────── */
/* EXPERTISE SECTION                        */
/* ──────────────────────────────────────── */
.expertise-section {
  position: relative;
  padding: 6rem 0;
}
@media (min-width: 768px) {
  .expertise-section { padding: 8rem 0; }
}
@media (min-width: 1024px) {
  .expertise-section { padding: 10rem 0; }
}

.expertise-bg {
  position: absolute;
  inset: 0;
}
.expertise-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.expertise-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
}

.expertise-content {
  position: relative;
  z-index: 10;
  text-align: center;
}

.expertise-title {
  margin-bottom: 1rem;
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--white);
}
@media (min-width: 640px) {
  .expertise-title { font-size: 2.25rem; }
}
@media (min-width: 768px) {
  .expertise-title { font-size: 3rem; }
}

.expertise-subtitle {
  margin: 0 auto;
  max-width: 42rem;
  font-size: 1rem;
  line-height: 1.625;
  color: rgba(255, 255, 255, 0.7);
}
@media (min-width: 768px) {
  .expertise-subtitle { font-size: 1.125rem; }
}

/* Expertise Steps */
.expertise-steps {
  margin-top: 4rem;
  margin-bottom: 4rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 640px) {
  .expertise-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}
@media (min-width: 1024px) {
  .expertise-steps {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }
}

.expertise-step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.expertise-step-number {
  margin-bottom: 0.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--nikites-gold);
  letter-spacing: 0.2em;
}

.expertise-step-label {
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--white);
}

.expertise-step-desc {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

.expertise-step-arrow {
  display: none;
  position: absolute;
  right: -0.75rem;
  top: 0.75rem;
  color: rgba(197, 160, 89, 0.5);
  font-size: 1.25rem;
  font-weight: 300;
}
@media (min-width: 1024px) {
  .expertise-step-arrow {
    display: block;
  }
}

/* ──────────────────────────────────────── */
/* SECTION TITLES                           */
/* ──────────────────────────────────────── */
.section-title {
  margin-bottom: 1rem;
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--nikites-purple);
  text-align: center;
}
@media (min-width: 640px) {
  .section-title { font-size: 2.25rem; }
}
@media (min-width: 768px) {
  .section-title { font-size: 3rem; }
}

.section-subtitle {
  margin: 0 auto;
  max-width: 36rem;
  font-size: 1rem;
  color: var(--nikites-muted);
  text-align: center;
}
@media (min-width: 768px) {
  .section-subtitle { font-size: 1.125rem; }
}

/* ──────────────────────────────────────── */
/* PRODUCT HIGHLIGHTS                       */
/* ──────────────────────────────────────── */
.highlights-section {
  background: var(--nikites-warm-gray);
  padding: 6rem 0;
}
@media (min-width: 768px) {
  .highlights-section { padding: 8rem 0; }
}

.highlights-section .reveal {
  margin-bottom: 4rem;
}
@media (min-width: 768px) {
  .highlights-section .reveal { margin-bottom: 5rem; }
}

.highlights-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) {
  .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .highlights-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ──────────────────────────────────────── */
/* PRODUCT CARD (shared: highlights + catalogue) */
/* ──────────────────────────────────────── */
.product-card {
  display: block;
  width: 100%;
  background: var(--white);
  text-align: left;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
}

.product-card-image {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--nikites-warm-gray);
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}
.product-card:hover .product-card-image img {
  transform: scale(1.05);
}

/* Hover overlay for highlights (square cards) */
.product-card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 1.5rem;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: opacity var(--transition-base);
}
.product-card:hover .product-card-overlay {
  opacity: 1;
}

.product-card-cta-text {
  border-bottom: 2px solid var(--nikites-gold);
  padding-bottom: 0.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--white);
}

.product-card-info {
  padding: 1rem;
}
.product-card-category {
  margin-bottom: 0.25rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--nikites-gold);
}
.product-card-name {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--nikites-text);
  line-height: 1.4;
}

/* ──────────────────────────────────────── */
/* CATALOGUE PRODUCT CARD (4:5 ratio)       */
/* ──────────────────────────────────────── */
.catalogue-product-card {
  cursor: pointer;
  transition: all 500ms ease-out;
}
.catalogue-product-card.hidden {
  pointer-events: none;
  position: absolute;
  transform: translateY(1rem);
  opacity: 0;
}
.catalogue-product-card.visible {
  position: relative;
  transform: translateY(0);
  opacity: 1;
}

.catalogue-product-image {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 2px;
  background: var(--nikites-warm-gray);
}
.catalogue-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}
.catalogue-product-card:hover .catalogue-product-image img {
  transform: scale(1.05);
}

/* Catalogue hover overlay (desktop only) */
.catalogue-product-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 2rem;
  background: linear-gradient(to top, rgba(46, 26, 71, 0.7) 0%, rgba(46, 26, 71, 0.2) 50%, transparent 100%);
  opacity: 0;
  transition: opacity var(--transition-base);
}
.catalogue-product-card:hover .catalogue-product-overlay {
  opacity: 1;
}
@media (max-width: 767px) {
  .catalogue-product-overlay {
    display: none;
  }
}

.catalogue-product-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.6);
  padding: 0.625rem 1.25rem;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--white);
  transition: all var(--transition-base);
}
.catalogue-product-cta:hover {
  background: var(--white);
  color: var(--nikites-purple);
}

/* Mobile always-visible indicator */
.catalogue-product-mobile-cta {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 0.75rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.3) 0%, transparent 100%);
}
@media (min-width: 768px) {
  .catalogue-product-mobile-cta {
    display: none;
  }
}
.catalogue-product-mobile-cta span {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.6875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.9);
}

.catalogue-product-info {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}
.catalogue-product-name {
  font-weight: 500;
  color: var(--nikites-text);
}
.catalogue-product-category-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--nikites-muted);
}

/* ──────────────────────────────────────── */
/* CATEGORIES                               */
/* ──────────────────────────────────────── */
.categories-section {
  background: var(--white);
  padding: 6rem 0;
}
@media (min-width: 768px) {
  .categories-section { padding: 8rem 0; }
}

.categories-section .reveal {
  margin-bottom: 4rem;
}
@media (min-width: 768px) {
  .categories-section .reveal { margin-bottom: 5rem; }
}

.categories-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) {
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 768px) {
  .categories-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1280px) {
  .categories-grid { grid-template-columns: repeat(4, 1fr); }
}

/* Category Card */
.category-card {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  cursor: pointer;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}
.category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
}

.category-card-bg {
  position: absolute;
  inset: 0;
}
.category-card-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}
.category-card:hover .category-card-bg img {
  transform: scale(1.06);
}

.category-card-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.1) 40%, rgba(0, 0, 0, 0.2) 100%);
}

.category-card-text {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
}
.category-card-name {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}
@media (min-width: 640px) {
  .category-card-name { font-size: 1.25rem; }
}
.category-card-desc {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.category-card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity var(--transition-base);
}
.category-card:hover .category-card-overlay {
  opacity: 1;
}
.category-card-discover {
  border-bottom: 2px solid var(--nikites-gold);
  padding-bottom: 0.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--white);
}

/* ──────────────────────────────────────── */
/* CTA SECTION                              */
/* ──────────────────────────────────────── */
.cta-section {
  position: relative;
  padding: 8rem 0;
}
@media (min-width: 768px) {
  .cta-section { padding: 10rem 0; }
}

.cta-bg {
  position: absolute;
  inset: 0;
}
.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
}

.cta-content {
  position: relative;
  z-index: 10;
  text-align: center;
}

.cta-title {
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.2;
  color: var(--white);
}
@media (min-width: 640px) {
  .cta-title { font-size: 1.875rem; }
}
@media (min-width: 768px) {
  .cta-title { font-size: 2.25rem; }
}
@media (min-width: 1024px) {
  .cta-title { font-size: 3rem; }
}

.cta-subtitle {
  margin: 0 auto 2.5rem;
  max-width: 36rem;
  font-size: 1rem;
  line-height: 1.625;
  color: rgba(255, 255, 255, 0.7);
}
@media (min-width: 768px) {
  .cta-subtitle { font-size: 1.125rem; }
}

.cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
@media (min-width: 640px) {
  .cta-actions { flex-direction: row; }
}

/* ──────────────────────────────────────── */
/* CATALOGUE PAGE                           */
/* ──────────────────────────────────────── */
.page-catalogue {
  min-height: 100vh;
  background: var(--white);
}

.catalogue-header {
  padding: 8rem 1.5rem 4rem;
}
@media (min-width: 768px) {
  .catalogue-header {
    padding: 8rem 3rem 4rem;
  }
}
@media (min-width: 1024px) {
  .catalogue-header {
    padding: 8rem 5rem 4rem;
  }
}

.catalogue-header-inner {
  text-align: center;
}

.catalogue-page-title {
  font-size: 2.25rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--nikites-purple);
}
@media (min-width: 768px) {
  .catalogue-page-title { font-size: 3rem; }
}
@media (min-width: 1024px) {
  .catalogue-page-title { font-size: 3.75rem; }
}

.catalogue-page-subtitle {
  margin: 1.25rem auto 0;
  max-width: 36rem;
  font-size: 1rem;
  line-height: 1.625;
  color: var(--nikites-muted);
}
@media (min-width: 768px) {
  .catalogue-page-subtitle { font-size: 1.125rem; }
}

.catalogue-download {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.catalogue-download-desc {
  font-size: 0.75rem;
  color: var(--nikites-muted);
}

/* Filter Bar */
.filter-sentinel {
  height: 0;
}

.filter-bar {
  position: sticky;
  top: 64px;
  z-index: 30;
  border-bottom: 1px solid var(--nikites-warm-gray);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: box-shadow var(--transition-base);
}
.filter-bar.stuck {
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.filter-bar-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 768px) {
  .filter-bar-inner {
    padding: 0 3rem;
  }
}
@media (min-width: 1024px) {
  .filter-bar-inner {
    padding: 0 5rem;
  }
}

.filter-pills {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding: 1rem 0;
}
@media (min-width: 768px) {
  .filter-pills {
    gap: 0.75rem;
    padding: 1.25rem 0;
  }
}

.filter-pill {
  flex-shrink: 0;
  border: 1px solid var(--nikites-warm-gray);
  border-radius: 9999px;
  padding: 0.5rem 1.25rem;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: transparent;
  color: var(--nikites-muted);
  transition: all var(--transition-base);
}
@media (min-width: 768px) {
  .filter-pill {
    padding: 0.5rem 1.5rem;
    font-size: 0.875rem;
  }
}
.filter-pill:hover {
  border-color: rgba(46, 26, 71, 0.4);
  color: var(--nikites-text);
}
.filter-pill.active {
  border-color: var(--nikites-purple);
  background: var(--nikites-purple);
  color: var(--white);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

/* Product Grid */
.catalogue-products {
  padding: 3rem 0;
}
@media (min-width: 768px) {
  .catalogue-products { padding: 4rem 0; }
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  position: relative;
}
@media (min-width: 768px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}
@media (min-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Bottom CTA */
.catalogue-bottom-cta {
  border-top: 1px solid var(--nikites-warm-gray);
  background: var(--nikites-warm-gray);
  padding: 4rem 0;
}
@media (min-width: 768px) {
  .catalogue-bottom-cta { padding: 5rem 0; }
}
.catalogue-bottom-cta-inner {
  text-align: center;
}
.catalogue-bottom-title {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--nikites-purple);
}
@media (min-width: 768px) {
  .catalogue-bottom-title { font-size: 1.875rem; }
}
.catalogue-bottom-desc {
  margin: 1rem auto 0;
  max-width: 28rem;
  font-size: 1rem;
  color: var(--nikites-muted);
}

/* ──────────────────────────────────────── */
/* CONTACT PAGE                             */
/* ──────────────────────────────────────── */
.page-contact {
  min-height: 100vh;
  background: var(--white);
}

.contact-header {
  padding: 8rem 1.5rem 3rem;
}
@media (min-width: 768px) {
  .contact-header { padding: 8rem 3rem 4rem; }
}

.contact-page-title {
  font-size: 2.25rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--nikites-purple);
  line-height: 1.2;
}
@media (min-width: 768px) {
  .contact-page-title { font-size: 3rem; }
}
@media (min-width: 1024px) {
  .contact-page-title { font-size: 3.75rem; }
}

.contact-page-subtitle {
  margin-top: 1rem;
  max-width: 42rem;
  font-size: 1rem;
  line-height: 1.625;
  color: var(--nikites-muted);
}
@media (min-width: 768px) {
  .contact-page-subtitle { font-size: 1.125rem; }
}

/* Contact Body Grid */
.contact-body {
  padding: 0 1.5rem 6rem;
}
@media (min-width: 768px) {
  .contact-body { padding: 0 3rem 8rem; }
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 80rem;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 7fr 5fr;
    gap: 3rem;
  }
}

/* Form */
.contact-fieldset {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .contact-fieldset { gap: 1.5rem; }
}

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

.form-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--nikites-muted);
  margin-bottom: 0.5rem;
  display: block;
}
.required-star {
  color: var(--color-error);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  border: 1px solid var(--nikites-warm-gray);
  border-radius: 2px;
  background: var(--white);
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  color: var(--nikites-text);
  transition: border-color var(--transition-fast);
  outline: none;
}
.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(107, 107, 107, 0.5);
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--nikites-gold);
}

.form-input.error,
.form-textarea.error {
  border-color: var(--color-error);
}

.form-select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236B6B6B' d='M1.41.59L6 5.17 4.59 6.59 1 3zM7 5.17L10.59 1.59 12 3 7.41 7.59z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-textarea {
  resize: vertical;
  min-height: 7.5rem;
}

.form-error {
  margin-top: 0.375rem;
  font-size: 0.75rem;
  color: var(--color-error);
}

.form-success {
  border: 1px solid #bbf7d0;
  background: #f0fdf4;
  padding: 1rem 1.25rem;
  border-radius: 2px;
  font-size: 0.875rem;
  color: #166534;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 640px) {
  .form-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

.form-submit {
  width: 100%;
  background: var(--nikites-gold);
  color: var(--white);
  padding: 0.875rem 2.5rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border-radius: 2px;
  transition: background var(--transition-base);
}
@media (min-width: 768px) {
  .form-submit { width: auto; }
}
.form-submit:hover {
  background: rgba(197, 160, 89, 0.9);
}

/* Contact Info Panel */
.contact-info-panel {
  background: var(--nikites-warm-gray);
  padding: 2rem;
}
@media (min-width: 768px) {
  .contact-info-panel { padding: 2.5rem; }
}

.contact-info-heading {
  font-size: 1.125rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--nikites-purple);
  font-weight: 300;
  margin-bottom: 2rem;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-info-icon {
  flex-shrink: 0;
  color: var(--nikites-gold);
  margin-top: 0.125rem;
}
.contact-info-label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--nikites-muted);
  margin-bottom: 0.25rem;
}
.contact-info-value {
  font-size: 0.875rem;
  color: var(--nikites-text);
  transition: color var(--transition-base);
}
.contact-info-value:hover {
  color: var(--nikites-gold);
}
.contact-info-placeholder {
  color: var(--nikites-muted);
}
.contact-info-whatsapp {
  color: #16a34a;
}
.contact-info-whatsapp:hover {
  color: #15803d;
}

/* Contact WhatsApp CTA */
.contact-whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  width: 100%;
  margin-top: 2.5rem;
  background: var(--color-whatsapp);
  color: var(--white);
  padding: 0.875rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border-radius: 2px;
  transition: background var(--transition-base);
}
.contact-whatsapp-btn:hover {
  background: var(--color-whatsapp-hover);
}

/* ──────────────────────────────────────── */
/* PRODUCT DETAIL MODAL                     */
/* ──────────────────────────────────────── */
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  animation: modal-fade-in 200ms ease;
}

.modal-backdrop.drawer-mode {
  align-items: flex-end;
  padding: 0;
  background: rgba(0, 0, 0, 0.4);
}

@keyframes modal-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal-content {
  position: relative;
  max-height: 90vh;
  max-width: 42rem;
  width: 100%;
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
  overflow-y: auto;
  animation: modal-slide-up 300ms ease;
}

.modal-backdrop.drawer-mode .modal-content {
  max-height: 92vh;
  border-radius: 1rem 1rem 0 0;
  animation: modal-drawer-up 300ms ease;
}

@keyframes modal-slide-up {
  from { transform: translateY(1rem); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes modal-drawer-up {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

.modal-close {
  position: absolute;
  right: 1rem;
  top: 1rem;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--nikites-text);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  transition: background var(--transition-fast);
}
.modal-close:hover {
  background: var(--white);
}

.modal-image-container {
  position: relative;
  aspect-ratio: 4 / 3;
  width: 100%;
  overflow: hidden;
  background: var(--nikites-warm-gray);
}
.modal-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-details {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 768px) {
  .modal-details { padding: 2rem; }
}

.modal-category {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--nikites-gold);
}

.modal-title {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--nikites-text);
}

.modal-description {
  font-size: 0.9375rem;
  line-height: 1.625;
  color: var(--nikites-muted);
}

.modal-specs {
  border-top: 1px solid var(--nikites-warm-gray);
  margin-top: 0.5rem;
  padding-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.modal-spec-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.modal-spec-icon {
  color: var(--nikites-gold);
  margin-top: 0.125rem;
  flex-shrink: 0;
}
.modal-spec-label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--nikites-muted);
}
.modal-spec-value {
  font-size: 0.875rem;
  color: var(--nikites-text);
}

.modal-cta {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  background: var(--nikites-gold);
  padding: 0.875rem;
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--white);
  transition: background var(--transition-base);
}
.modal-cta:hover {
  background: var(--nikites-gold-light);
}

/* ──────────────────────────────────────── */
/* FOOTER                                   */
/* ──────────────────────────────────────── */
.site-footer {
  background: var(--nikites-purple);
  color: var(--white);
  margin-top: auto;
}

.footer-main {
  padding: 4rem 0;
}
@media (min-width: 1024px) {
  .footer-main { padding: 5rem 0; }
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: repeat(4, 1fr); gap: 2rem; }
}

.footer-logo {
  height: 3.5rem;
  width: auto;
  margin-bottom: 1.5rem;
  filter: brightness(0) invert(1);
}

.footer-brand-text {
  font-size: 0.875rem;
  line-height: 1.625;
  color: rgba(255, 255, 255, 0.6);
  max-width: 20rem;
}

.footer-col-title {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--nikites-gold);
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition-base);
  text-align: left;
}
.footer-link:hover {
  color: var(--nikites-gold);
}

.footer-link-static {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-download {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--nikites-gold);
  transition: color var(--transition-base);
}
.footer-download:hover {
  color: var(--nikites-gold-light);
}
.footer-download svg {
  transition: transform var(--transition-base);
}
.footer-download:hover svg {
  transform: translateY(2px);
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-bottom-inner {
  padding: 1.25rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
@media (min-width: 640px) {
  .footer-bottom-inner {
    flex-direction: row;
  }
}

.footer-copyright {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.footer-legal-text {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ──────────────────────────────────────── */
/* WHATSAPP FLOATING CTA                    */
/* ──────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  background: var(--color-whatsapp);
  color: var(--white);
  border-radius: 9999px;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  transition: all var(--transition-base);
}
.whatsapp-float:hover {
  background: var(--color-whatsapp-hover);
  transform: scale(1.05);
}

/* ──────────────────────────────────────── */
/* SCROLL REVEAL ANIMATIONS                 */
/* ──────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 800ms ease, transform 800ms ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal.delay-1 {
  transition-delay: 150ms;
}
.reveal.delay-2 {
  transition-delay: 300ms;
}
.reveal.delay-3 {
  transition-delay: 450ms;
}
.reveal.delay-4 {
  transition-delay: 600ms;
}

/* ──────────────────────────────────────── */
/* 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 {
    opacity: 1;
    transform: none;
  }

  .hero-eyebrow,
  .hero-headline,
  .hero-supporting,
  .hero-actions {
    opacity: 1;
    transform: none;
    transition-duration: 0.01ms !important;
  }

  .product-card:hover,
  .category-card:hover {
    transform: none;
  }

  .product-card-image img,
  .catalogue-product-image img,
  .category-card-bg img,
  .hero-bg-img {
    transform: none !important;
  }

  .product-card-overlay,
  .catalogue-product-overlay,
  .category-card-overlay {
    opacity: 1;
  }

  .scroll-dot {
    animation: none;
  }

  .modal-backdrop,
  .modal-content {
    animation: none;
  }
}

/* ──────────────────────────────────────── */
/* BODY SCROLL LOCK (when mobile menu open) */
/* ──────────────────────────────────────── */
body.menu-open {
  overflow: hidden;
}
body.modal-open {
  overflow: hidden;
}
