/* ==========================================================================
   RESET & SYSTEM BASICS
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  background-color: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  border: none;
  background: none;
}

button {
  cursor: pointer;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

ul {
  list-style: none;
}

/* Custom Scrollbar for Luxury Feeling */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--secondary);
}

/* ==========================================================================
   UTILITY CLASSES & GRID LAYOUTS
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--spacing-md);
  padding-right: var(--spacing-md);
}

.section-padding {
  padding-top: var(--spacing-xxl);
  padding-bottom: var(--spacing-xxl);
}

@media (max-width: 768px) {
  .section-padding {
    padding-top: var(--spacing-xl);
    padding-bottom: var(--spacing-xl);
  }
}

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

.serif-title {
  font-family: var(--font-headings);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.2;
  color: var(--secondary);
  margin-bottom: var(--spacing-sm);
}

.subtitle {
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: var(--spacing-lg);
  opacity: 0.8;
}

/* ==========================================================================
   NAVIGATION BAR (GLASSMORPHISM STICKY)
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: var(--transition-smooth);
  border-bottom: 1px solid transparent;
}

.header.scrolled {
  background: rgba(248, 248, 246, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  height: 70px;
  box-shadow: var(--shadow-glass);
  border-bottom: 1px solid var(--border);
}

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

.logo {
  font-family: var(--font-headings);
  font-size: 1.8rem;
  letter-spacing: 0.15em;
  font-weight: 600;
  color: var(--secondary);
}

.logo span {
  font-weight: 300;
  font-size: 1rem;
  vertical-align: middle;
  margin-left: var(--spacing-xxs);
  letter-spacing: 0.05em;
}

.nav-links {
  display: flex;
  gap: var(--spacing-lg);
}

.nav-link {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 4px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1px;
  background: var(--secondary);
  transition: var(--transition-fast);
  transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Burger menu for Mobile navigation */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  z-index: 1100;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 1.5px;
  background-color: var(--secondary);
  transition: var(--transition-fast);
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--bg);
    box-shadow: var(--shadow-lg);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-xl);
    transition: var(--transition-smooth);
    z-index: 1050;
  }

  .nav-links.open {
    right: 0;
  }

  .menu-toggle.open span:nth-child(1) {
    transform: translateY(8.5px) rotate(45deg);
  }
  .menu-toggle.open span:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.open span:nth-child(3) {
    transform: translateY(-8.5px) rotate(-45deg);
  }
}

/* ==========================================================================
   IMMERSIVE HERO SECTION
   ========================================================================== */
.hero {
  position: relative;
  width: 100%;
  height: 95vh;
  min-height: 600px;
  background-color: var(--muted);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  transform: scale(1.03);
  transition: transform 10s ease-out;
  z-index: 1;
}

.hero:hover .hero-bg {
  transform: scale(1.07);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(108, 79, 55, 0.25) 0%,
    rgba(108, 79, 55, 0.1) 40%,
    rgba(248, 248, 246, 0.95) 95%,
    var(--bg) 100%
  );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  color: var(--white);
  max-width: 650px;
  padding-top: var(--header-height);
  opacity: 0;
  transform: translateY(30px);
  animation: heroFadeUp 1.2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.hero-pretitle {
  font-size: 0.9rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: var(--spacing-sm);
  color: var(--white);
  text-shadow: 0 2px 4px rgba(108, 79, 55, 0.15);
}

.hero-title {
  font-family: var(--font-headings);
  font-weight: 400;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.1;
  margin-bottom: var(--spacing-md);
  text-shadow: 0 4px 12px rgba(108, 79, 55, 0.2);
}

.hero-desc {
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: var(--spacing-lg);
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 2px 4px rgba(108, 79, 55, 0.1);
}

.btn-luxury {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-sm) var(--spacing-xl);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--secondary);
  background-color: var(--white);
  border: 1px solid var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-luxury::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300px;
  height: 300px;
  background: var(--secondary);
  border-radius: var(--radius-full);
  transform: translate(-50%, -50%) scale(0);
  transition: transform var(--transition-smooth);
  z-index: -1;
}

.btn-luxury:hover {
  color: var(--white);
  border-color: var(--secondary);
  box-shadow: var(--shadow-md);
}

.btn-luxury:hover::after {
  transform: translate(-50%, -50%) scale(1);
}

@keyframes heroFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================================================================
   COLLECTION PILL SELECTORS
   ========================================================================== */
.collections-nav-container {
  display: flex;
  justify-content: center;
  margin-bottom: var(--spacing-xl);
  position: relative;
}

.collections-nav {
  display: flex;
  background: var(--muted-light);
  padding: 6px;
  border-radius: var(--radius-full);
  gap: var(--spacing-xxs);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  overflow-x: auto;
  max-width: 100%;
  scrollbar-width: none; /* Hide scrollbar for Firefox */
}

.collections-nav::-webkit-scrollbar {
  display: none; /* Hide scrollbar for Chrome/Safari */
}

.collection-pill {
  padding: 10px 24px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  color: var(--fg);
  opacity: 0.7;
  transition: var(--transition-fast);
  white-space: nowrap;
}

.collection-pill.active {
  background: var(--secondary);
  color: var(--white);
  opacity: 1;
  box-shadow: var(--shadow-sm);
}

.collection-pill:hover:not(.active) {
  opacity: 1;
  background: rgba(108, 79, 55, 0.05);
}

/* ==========================================================================
   PRODUCT CATALOG GRID & PREMIUM CARDS
   ========================================================================== */
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--spacing-xl) var(--spacing-lg);
  opacity: 1;
  transition: var(--transition-smooth);
}

.product-card {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(108, 79, 55, 0.03);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  cursor: pointer;
  position: relative;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}

.product-image-container {
  aspect-ratio: 3 / 4;
  width: 100%;
  overflow: hidden;
  background: var(--muted);
  position: relative;
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform var(--transition-smooth);
}

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

.product-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--secondary);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  z-index: 10;
}

/* Hover Quick view indicator overlay */
.product-hover-overlay {
  position: absolute;
  inset: 0;
  background: rgba(108, 79, 55, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-fast);
  z-index: 5;
}

.product-card:hover .product-hover-overlay {
  opacity: 1;
}

.quick-view-btn {
  background: var(--white);
  color: var(--secondary);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  transform: translateY(15px);
  transition: var(--transition-smooth);
}

.product-card:hover .quick-view-btn {
  transform: translateY(0);
}

.product-info {
  padding: var(--spacing-md);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-collection {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: var(--spacing-xxs);
}

.product-name {
  font-family: var(--font-headings);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--secondary);
  margin-bottom: var(--spacing-xs);
  line-height: 1.3;
}

.product-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.product-price {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--secondary);
}

.product-sizes-badge {
  font-size: 0.75rem;
  color: var(--fg);
  opacity: 0.6;
  border: 1.5px solid var(--border);
  padding: 1px 6px;
  border-radius: var(--radius-sm);
  font-weight: 500;
}

/* ==========================================================================
   PRODUCT POPUP DETAIL MODAL
   ========================================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(108, 79, 55, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  width: 90%;
  max-width: 900px;
  background: var(--bg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  position: relative;
  max-height: 90vh;
  display: flex;
  transform: scale(0.9) translateY(20px);
  transition: var(--transition-smooth);
}

.modal-overlay.open .modal-card {
  transform: scale(1) translateY(0);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background: var(--white);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  font-size: 1.2rem;
  box-shadow: var(--shadow-sm);
  z-index: 100;
  transition: var(--transition-fast);
}

.modal-close:hover {
  background: var(--secondary);
  color: var(--white);
  transform: rotate(90deg);
}

.modal-gallery {
  width: 50%;
  background: var(--muted);
  aspect-ratio: 3 / 4;
  overflow: hidden;
  position: relative;
}

.modal-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.modal-details {
  width: 50%;
  padding: var(--spacing-xl) var(--spacing-lg);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

@media (max-width: 768px) {
  .modal-card {
    flex-direction: column;
    max-height: 85vh;
  }
  .modal-gallery, .modal-details {
    width: 100%;
  }
  .modal-gallery {
    height: 35vh;
    aspect-ratio: auto;
  }
  .modal-details {
    padding: var(--spacing-md);
  }
}

.modal-brand {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: var(--spacing-xxs);
}

.modal-title {
  font-family: var(--font-headings);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 400;
  color: var(--secondary);
  line-height: 1.2;
  margin-bottom: var(--spacing-xs);
}

.modal-price-row {
  display: flex;
  align-items: baseline;
  gap: var(--spacing-xs);
  margin-bottom: var(--spacing-md);
}

.modal-price {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--secondary);
}

.modal-description {
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.6;
  opacity: 0.8;
  margin-bottom: var(--spacing-md);
  border-bottom: 1px solid var(--border);
  padding-bottom: var(--spacing-md);
}

/* Size and Color Pill Selectors inside Modal */
.selector-group {
  margin-bottom: var(--spacing-md);
}

.selector-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: var(--spacing-xs);
}

.pill-container {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-xs);
}

.pill-option {
  padding: 8px 18px;
  font-size: 0.8rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  color: var(--fg);
  transition: var(--transition-fast);
}

.pill-option.selected {
  border-color: var(--secondary);
  background: var(--secondary);
  color: var(--white);
  font-weight: 600;
}

.pill-option:hover:not(.selected) {
  border-color: var(--secondary);
}

/* Beautiful Glowing WhatsApp Order Button */
.btn-whatsapp-order {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-xs);
  background-color: #25d366;
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: var(--spacing-sm) var(--spacing-md);
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
  margin-top: auto;
  transition: var(--transition-smooth);
}

.btn-whatsapp-order svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.btn-whatsapp-order:hover {
  background-color: #20ba5a;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
  transform: translateY(-2px);
}

/* ==========================================================================
   FLOATING WHATSAPP CTA
   ========================================================================== */
.floating-whatsapp {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 56px;
  height: 56px;
  background-color: #25d366;
  color: var(--white);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  z-index: 999;
  transition: var(--transition-smooth);
}

.floating-whatsapp svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.floating-whatsapp:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}

/* ==========================================================================
   ELEGANT FOOTER
   ========================================================================== */
.footer {
  background-color: var(--secondary);
  color: var(--white);
  padding-top: var(--spacing-xxl);
  padding-bottom: var(--spacing-lg);
  font-size: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--spacing-xxl);
  margin-bottom: var(--spacing-xl);
}

@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
  }
}

.footer-brand .logo {
  color: var(--white);
  margin-bottom: var(--spacing-sm);
}

.footer-brand p {
  opacity: 0.7;
  line-height: 1.7;
  max-width: 320px;
}

.footer-heading {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: var(--spacing-md);
  position: relative;
  padding-bottom: var(--spacing-xxs);
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 1px;
  background: var(--primary);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
}

.footer-link {
  opacity: 0.7;
}

.footer-link:hover {
  opacity: 1;
  color: var(--primary);
  transform: translateX(3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: var(--spacing-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--spacing-sm);
}

.footer-bottom p {
  opacity: 0.5;
  font-size: 0.8rem;
}

.social-links {
  display: flex;
  gap: var(--spacing-md);
}

.social-link svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  opacity: 0.7;
  transition: var(--transition-fast);
}

.social-link:hover svg {
  opacity: 1;
  color: var(--primary);
  transform: translateY(-2px);
}

/* ==========================================================================
   UTILITY CLASSES (ADDITIONAL)
   ========================================================================== */
.hidden {
  display: none !important;
}

.container-narrow {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--spacing-md);
  padding-right: var(--spacing-md);
}

/* ==========================================================================
   BRAND NARRATIVE SECTION
   ========================================================================== */
.brand-narrative-section {
  background-color: var(--bg);
}

.narrative-container {
  display: flex;
  align-items: center;
  gap: var(--spacing-xxl);
}

.narrative-visual-wrapper {
  flex: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  aspect-ratio: 4 / 5;
}

.narrative-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 6s cubic-bezier(0.25, 1, 0.5, 1);
}

.narrative-visual-wrapper:hover .narrative-img {
  transform: scale(1.08);
}

.narrative-text-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.narrative-para {
  font-size: 0.95rem;
  line-height: 1.8;
  opacity: 0.85;
  margin-bottom: var(--spacing-md);
  font-weight: 300;
}

.narrative-para:last-of-type {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .narrative-container {
    flex-direction: column;
    gap: var(--spacing-xl);
  }
  .narrative-visual-wrapper {
    width: 100%;
    aspect-ratio: 4 / 3;
  }
  .narrative-text-wrapper {
    width: 100%;
  }
}

/* ==========================================================================
   BRAND PACKAGING EXPERIENCE
   ========================================================================== */
.packaging-section {
  background-color: var(--bg);
}

.section-lead-desc {
  font-weight: 300;
  line-height: 1.7;
}

.packaging-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xl);
}

.packaging-card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(108, 79, 55, 0.04);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.packaging-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: hsla(var(--color-primary-raw), 0.3);
}

.packaging-icon-wrapper {
  aspect-ratio: 16 / 9;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--muted-light);
  border-bottom: 1px solid rgba(108, 79, 55, 0.05);
  font-family: var(--font-headings);
  font-size: 3rem;
  font-weight: 300;
  color: var(--primary);
  opacity: 0.65;
  transition: var(--transition-smooth);
}

.packaging-card:hover .packaging-icon-wrapper {
  background-color: var(--card-bg);
  opacity: 0.95;
  color: var(--primary);
}

.packaging-info {
  padding: var(--spacing-md);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
  flex-grow: 1;
}

.packaging-card-title {
  font-family: var(--font-headings);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--secondary);
  line-height: 1.3;
}

.packaging-card-text {
  font-size: 0.88rem;
  line-height: 1.6;
  opacity: 0.75;
  font-weight: 300;
}

@media (max-width: 992px) {
  .packaging-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .packaging-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }
}

/* ==========================================================================
   WAITLIST & LEADS CAPTURE
   ========================================================================== */
.waitlist-section {
  position: relative;
  overflow: hidden;
}

.glass-card {
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-glass), 0 20px 40px rgba(108, 79, 55, 0.05);
  padding: var(--spacing-xl) var(--spacing-lg);
  position: relative;
  z-index: 2;
  transition: var(--transition-smooth);
}

.waitlist-form {
  margin-top: var(--spacing-lg);
  width: 100%;
}

.form-row-three {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-md);
}

.form-input {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 400;
  background-color: var(--white);
  color: var(--fg);
  transition: var(--transition-fast);
}

.form-input::placeholder {
  color: var(--fg);
  opacity: 0.4;
}

.form-input:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 4px rgba(108, 79, 55, 0.08);
  background-color: var(--white);
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-xs);
  cursor: pointer;
}

.form-checkbox {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background-color: var(--white);
  cursor: pointer;
  position: relative;
  transition: var(--transition-fast);
  margin-top: 2px;
  flex-shrink: 0;
}

.form-checkbox:checked {
  background-color: var(--secondary);
  border-color: var(--secondary);
}

.form-checkbox:checked::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 6px;
  width: 4px;
  height: 9px;
  border: solid var(--white);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.checkbox-label {
  line-height: 1.5;
  user-select: none;
}

.waitlist-success-container {
  padding: var(--spacing-md) 0;
  animation: successFadeIn 0.6s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.success-glow-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: var(--spacing-lg);
  box-shadow: 0 10px 30px rgba(197, 182, 160, 0.25);
  border: 1px solid var(--primary-light);
  max-width: 600px;
  margin: 0 auto;
}

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

@media (max-width: 768px) {
  .glass-card {
    padding: var(--spacing-lg) var(--spacing-sm);
  }
  .form-row-three {
    grid-template-columns: 1fr;
    gap: var(--spacing-xs);
  }
}

