/* Import elegant Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
  /* Color Palette */
  --bg-cream: #faf7f2;
  --bg-cream-pure: #fefdfb;
  --color-charcoal: #2d2724;
  --color-charcoal-light: #5a524e;
  
  /* Soft Pastel Accents */
  --accent-blush: #ebd8d6;
  --accent-blush-light: #f4ebea;
  --accent-blush-hover: #e2c6c4;
  --accent-beige: #f3ece3;
  --accent-beige-dark: #eae2d5;
  --accent-gold: #c9b097;
  --accent-gold-dark: #b39a82;
  --accent-gold-light: #dfd1c4;
  
  /* Sage Green Additions */
  --accent-sage: #e2ebe0;
  --accent-sage-dark: #b8c5b0;
  --accent-sage-light: #f1f6f0;

  /* Shadows (Soft UI - diffuses & expanding) */
  --shadow-flat: 0 2px 8px rgba(45, 39, 36, 0.02);
  --shadow-soft: 0 15px 35px rgba(45, 39, 36, 0.04), 0 5px 15px rgba(0, 0, 0, 0.01);
  --shadow-floating: 0 25px 50px rgba(45, 39, 36, 0.06), 0 8px 20px rgba(45, 39, 36, 0.02);
  --shadow-elevated: 0 45px 80px rgba(45, 39, 36, 0.12), 0 15px 30px rgba(45, 39, 36, 0.04);
  --shadow-inner: inset 2px 2px 6px rgba(45, 39, 36, 0.04), inset -2px -2px 6px rgba(255, 255, 255, 0.8);

  /* Borders & Radius */
  --border-soft: 1px solid rgba(45, 39, 36, 0.06);
  --border-glass: 1px solid rgba(255, 255, 255, 0.6);
  --radius-pill: 9999px;
  --radius-lg: 30px;
  --radius-md: 20px;
  --radius-sm: 12px;

  /* Physics Transitions */
  --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-elastic: all 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition-fast: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Reset and Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background-color: var(--bg-cream);
  color: var(--color-charcoal);
  font-family: 'Plus Jakarta Sans', sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body {
  min-height: 100vh;
  position: relative;
  background: radial-gradient(circle at 10% 20%, rgba(244, 235, 234, 0.4) 0%, rgba(250, 247, 242, 1) 90%);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-cream);
}
::-webkit-scrollbar-thumb {
  background: var(--accent-beige-dark);
  border-radius: var(--radius-pill);
  border: 3px solid var(--bg-cream);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-gold);
}

/* Custom Glowing Soft Cursor (Desktop Only) */
@media (min-width: 993px) {
  .custom-cursor {
    width: 8px;
    height: 8px;
    background: var(--color-charcoal);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease, background-color 0.3s ease;
    display: block;
  }

  .custom-cursor-glow {
    width: 32px;
    height: 32px;
    border: 1px solid var(--accent-gold);
    background: rgba(201, 176, 151, 0.05);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease-out, width 0.3s ease, height 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
    display: block;
  }
}

@media (max-width: 992px) {
  .custom-cursor, .custom-cursor-glow {
    display: none !important;
  }
}

/* Global Mobile Component Hidden Defaults */
.hamburger-btn {
  display: none;
}
.mobile-menu-overlay {
  display: none;
}
.btn-close-sidebar {
  display: none;
}
.mobile-filter-trigger-container {
  display: none;
}
.sidebar-overlay {
  display: none;
}

/* Cursor Expand State on Hover */
body.cursor-active .custom-cursor {
  width: 4px;
  height: 4px;
  background: var(--accent-gold-dark);
}

body.cursor-active .custom-cursor-glow {
  width: 60px;
  height: 60px;
  background: rgba(235, 216, 214, 0.25);
  border-color: var(--accent-blush);
}

/* Anti-Gravity Continuous Hovering Keyframes */
@keyframes float-gentle {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(0.5deg); }
}

@keyframes float-medium {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-18px) rotate(-1deg); }
}

@keyframes float-subtle {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-8px) rotate(0.3deg); }
}

@keyframes pulse-soft {
  0% { box-shadow: 0 0 0 0 rgba(235, 216, 214, 0.6); }
  70% { box-shadow: 0 0 0 15px rgba(235, 216, 214, 0); }
  100% { box-shadow: 0 0 0 0 rgba(235, 216, 214, 0); }
}

@keyframes glow-text {
  0%, 100% { text-shadow: 0 0 20px rgba(235, 216, 214, 0.2), 0 0 2px rgba(201, 176, 151, 0.1); }
  50% { text-shadow: 0 0 35px rgba(235, 216, 214, 0.5), 0 0 8px rgba(201, 176, 151, 0.3); }
}

/* Floating Helper Classes */
.float-1 { animation: float-gentle 7s infinite ease-in-out; }
.float-2 { animation: float-medium 9s infinite ease-in-out; }
.float-3 { animation: float-subtle 6s infinite ease-in-out; }

/* SPA Routing Transitions */
.page-container {
  position: relative;
  min-height: 100vh;
}

.page-section {
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.page-section.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* Typography styles */
h1, h2, h3, h4, .brand-logo {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.15;
}

p {
  line-height: 1.6;
  color: var(--color-charcoal-light);
  font-weight: 300;
  font-size: 1.05rem;
}

/* Container Utility */
.container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2.5rem;
}

/* ==========================================================================
   GLOBAL COMPONENTS: HEADER & MEGA MENU
   ========================================================================== */
.header-wrapper {
  position: fixed;
  top: 1.8rem;
  left: 0;
  width: 100%;
  z-index: 1000;
  pointer-events: none;
}

.navbar {
  pointer-events: auto;
  margin: 0 auto;
  max-width: 90%;
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 3.5rem;
  padding: 0.8rem 2.2rem;
  background: rgba(254, 253, 251, 0.65);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border-radius: var(--radius-pill);
  border: var(--border-glass);
  box-shadow: var(--shadow-floating);
  transition: var(--transition-smooth);
}

.navbar:hover {
  background: rgba(254, 253, 251, 0.85);
  box-shadow: var(--shadow-elevated);
}

.brand-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
}

.brand-logo-img {
  height: 40px;
  width: auto;
  display: block;
  filter: drop-shadow(0 2px 6px rgba(45,39,36,0.06));
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.2rem;
  align-items: center;
}

.nav-links a.nav-link {
  text-decoration: none;
  color: var(--color-charcoal-light);
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition-fast);
  position: relative;
  padding: 1.2rem 0; /* Expanded hit area for hover triggers */
  display: inline-block;
}

.nav-links a.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0.8rem;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--accent-gold);
  border-radius: var(--radius-pill);
  transition: var(--transition-fast);
  transform: translateX(-50%);
}

.nav-links a.nav-link:hover,
.nav-links a.nav-link.active {
  color: var(--color-charcoal);
}

.nav-links a.nav-link.active::after {
  width: 80%;
}

/* Mega Menu Dropdown Setup */
.nav-item-dropdown {
  position: relative;
}

.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  width: 480px;
  background: rgba(254, 253, 251, 0.85);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: var(--border-glass);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-elevated);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  margin-top: 1rem;
}

.nav-item-dropdown:hover .mega-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

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

.mega-menu-item {
  position: relative;
  height: 100px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--bg-cream-pure);
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 600;
  box-shadow: var(--shadow-flat);
  transition: var(--transition-smooth);
}

.mega-menu-img {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s ease;
  z-index: 1;
}

.mega-menu-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(45, 39, 36, 0.4);
  transition: background 0.4s ease;
  z-index: 2;
}

.mega-menu-item span {
  position: relative;
  z-index: 3;
  text-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.mega-menu-item:hover {
  transform: scale(1.03);
}

.mega-menu-item:hover .mega-menu-img {
  transform: scale(1.08);
}

.mega-menu-item:hover .mega-menu-overlay {
  background: rgba(201, 176, 151, 0.6); /* Gold-accented tint */
}

/* Nav Actions & Magnetic Cart */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.magnetic-wrap {
  display: inline-block;
  position: relative;
  transition: transform 0.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.cart-btn {
  background: var(--accent-beige);
  border: var(--border-soft);
  color: var(--color-charcoal);
  padding: 0.8rem 1.4rem;
  border-radius: var(--radius-pill);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-soft);
}

.cart-btn:hover {
  background: var(--accent-blush);
  box-shadow: var(--shadow-floating);
  transform: scale(1.03);
}

.cart-icon {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2px;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cart-badge {
  background: var(--accent-gold);
  color: var(--bg-cream-pure);
  font-size: 0.75rem;
  font-weight: 600;
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 0.2rem;
  box-shadow: 0 3px 8px rgba(201,176,151,0.4);
}

.cart-badge.bump {
  animation: bump 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes bump {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.4); }
}

/* Ethereal background aura blobs */
.aura-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.35;
  z-index: 0;
  pointer-events: none;
}

.aura-1 { width: 500px; height: 500px; background: var(--accent-blush); top: -100px; right: -100px; }
.aura-2 { width: 400px; height: 400px; background: var(--accent-beige-dark); bottom: 0px; left: -100px; }
.aura-3 { width: 350px; height: 350px; background: var(--accent-sage); top: 50%; left: 50%; transform: translate(-50%, -50%); }

/* ==========================================================================
   SECTION 1: HOME PAGE STYLES
   ========================================================================== */
.hero {
  padding-top: 10rem;
  padding-bottom: 6rem;
  min-height: 95vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(254, 253, 251, 0.8);
  border: var(--border-soft);
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--accent-gold-dark);
  box-shadow: var(--shadow-flat);
  backdrop-filter: blur(5px);
}

.hero-tag span {
  width: 6px;
  height: 6px;
  background: var(--accent-gold);
  border-radius: 50%;
  display: inline-block;
}

.hero-title {
  color: var(--color-charcoal);
  animation: glow-text 8s infinite ease-in-out;
}

.hero-title span {
  font-style: italic;
  font-family: 'Playfair Display', serif;
  color: var(--accent-gold-dark);
}

.hero-description {
  font-size: 1.15rem;
  max-width: 540px;
  color: var(--color-charcoal-light);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 1rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-charcoal) 0%, #3e3632 100%);
  color: var(--bg-cream-pure);
  border: none;
  padding: 1.2rem 2.6rem;
  border-radius: var(--radius-pill);
  font-size: 1.05rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: 0 10px 25px rgba(45, 39, 36, 0.15);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  animation: pulse-soft 2.5s infinite;
}

.btn-primary:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 20px 40px rgba(45, 39, 36, 0.25);
  background: linear-gradient(135deg, var(--accent-gold-dark) 0%, var(--accent-gold) 100%);
  animation: none;
}

.btn-primary svg { transition: transform 0.3s ease; }
.btn-primary:hover svg { transform: translateX(5px); }

.btn-secondary {
  background: transparent;
  color: var(--color-charcoal);
  border: 1px solid var(--accent-gold-light);
  padding: 1.2rem 2rem;
  border-radius: var(--radius-pill);
  font-size: 1.05rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-smooth);
  text-decoration: none;
}

.btn-secondary:hover {
  background: var(--bg-cream-pure);
  border-color: var(--color-charcoal);
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

/* Hero Interactive Image Area */
.hero-image-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-image-wrapper {
  position: relative;
  width: 90%;
  max-width: 450px;
  background: linear-gradient(145deg, var(--bg-cream-pure), var(--accent-beige));
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-floating);
  border: var(--border-glass);
  transition: var(--transition-smooth);
}

.hero-image-wrapper::before {
  content: '';
  position: absolute;
  top: -10px; left: -10px; right: -10px; bottom: -10px;
  border: 1px solid rgba(201, 176, 151, 0.15);
  border-radius: calc(var(--radius-lg) + 10px);
  pointer-events: none;
}

.hero-image-wrapper img {
  width: 100%;
  height: auto;
  border-radius: calc(var(--radius-lg) - 8px);
  object-fit: cover;
  transition: var(--transition-smooth);
}

.hero-image-wrapper:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-elevated);
}

/* Hero Badge Overlays */
.hero-badge {
  position: absolute;
  background: rgba(254, 253, 251, 0.85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: var(--border-glass);
  border-radius: var(--radius-md);
  padding: 1rem 1.4rem;
  box-shadow: var(--shadow-floating);
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 5;
  transition: var(--transition-smooth);
}

.hero-badge.badge-top-left { top: 15%; left: -10%; animation: float-gentle 6s infinite ease-in-out; }
.hero-badge.badge-bottom-right { bottom: 12%; right: -5%; animation: float-medium 8s infinite ease-in-out; }

.hero-badge:hover {
  transform: scale(1.05) translateY(-5px);
  background: rgba(254, 253, 251, 0.95);
  box-shadow: var(--shadow-elevated);
}

.badge-icon {
  width: 40px;
  height: 40px;
  background: var(--accent-blush);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-charcoal);
}

.badge-info h4 { font-size: 1rem; font-weight: 600; color: var(--color-charcoal); }
.badge-info p { font-size: 0.8rem; }

/* Infinite Marquee Styling */
.marquee-section {
  padding: 2.5rem 0;
  background: linear-gradient(90deg, var(--accent-beige) 0%, var(--accent-blush-light) 100%);
  overflow: hidden;
  border-top: var(--border-soft);
  border-bottom: var(--border-soft);
  position: relative;
  z-index: 2;
}

.marquee-wrapper {
  display: flex;
  width: 100%;
}

.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marquee-anim 25s linear infinite;
}

.marquee-track span {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--color-charcoal);
  margin-right: 2rem;
  letter-spacing: 0.05em;
}

@keyframes marquee-anim {
  0% { transform: translateX(0); }
  100% { transform: translateX(-33.33%); }
}

/* Bestsellers Section Base Layout */
.bestsellers {
  padding: 8rem 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 5rem;
  position: relative;
}

.section-subtitle {
  color: var(--accent-gold-dark);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.6rem;
  display: block;
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--color-charcoal);
}

.section-desc {
  max-width: 600px;
  margin: 1rem auto 0;
  font-size: 1.05rem;
}

.grid-showcase {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.2rem;
  perspective: 1000px;
}

/* Product Card Base styling */
.product-card {
  background: var(--bg-cream-pure);
  border-radius: var(--radius-lg);
  border: var(--border-soft);
  box-shadow: var(--shadow-floating);
  overflow: hidden;
  position: relative;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.4);
  pointer-events: none;
  z-index: 2;
}

.product-card:nth-child(1) { animation: float-gentle 8s infinite ease-in-out; }
.product-card:nth-child(2) { animation: float-medium 7.5s infinite ease-in-out; animation-delay: 1.5s; }
.product-card:nth-child(3) { animation: float-subtle 6.5s infinite ease-in-out; animation-delay: 0.5s; }
.product-card:nth-child(4) { animation: float-gentle 9s infinite ease-in-out; animation-delay: 2s; }

.product-card:hover {
  transform: translateY(-25px) scale(1.04) rotateX(1deg) rotateY(1deg);
  box-shadow: var(--shadow-elevated);
  animation-play-state: paused;
}

.product-img-box {
  position: relative;
  background: linear-gradient(135deg, var(--bg-cream-pure), var(--accent-beige));
  width: 100%;
  aspect-ratio: 0.95;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-img-box img {
  width: 85%;
  height: 85%;
  object-fit: cover;
  border-radius: var(--radius-md);
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .product-img-box img {
  transform: scale(1.08) translateY(-5px);
}

.product-badge {
  position: absolute;
  top: 1.2rem; left: 1.2rem;
  background: var(--bg-cream-pure);
  color: var(--accent-gold-dark);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-flat);
  z-index: 3;
}

.product-wishlist {
  position: absolute;
  top: 1.2rem; right: 1.2rem;
  width: 36px; height: 36px;
  background: var(--bg-cream-pure);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
  box-shadow: var(--shadow-flat);
  z-index: 3;
}

.product-wishlist:hover {
  background: var(--accent-blush-light);
  transform: scale(1.1);
}

.product-wishlist svg {
  width: 16px; height: 16px;
  fill: none;
  stroke: var(--color-charcoal-light);
  stroke-width: 2px;
}

.product-wishlist.active svg,
.product-wishlist:hover svg {
  stroke: var(--color-charcoal);
  fill: var(--color-charcoal);
}

.product-details {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  position: relative;
  z-index: 4;
  background: var(--bg-cream-pure);
}

.product-cat {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--accent-gold-dark);
  letter-spacing: 0.05em;
  font-weight: 500;
  margin-bottom: 0.4rem;
}

.product-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: var(--color-charcoal);
  margin-bottom: 0.6rem;
  text-decoration: none;
  transition: var(--transition-fast);
}

.product-name:hover {
  color: var(--accent-gold-dark);
}

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

.product-price {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--color-charcoal);
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  font-size: 0.85rem;
  color: var(--accent-gold);
}

.product-rating svg { width: 14px; height: 14px; fill: currentColor; }

/* Add Cart sliding drawer details */
.add-cart-drawer {
  position: absolute;
  bottom: 0; left: 0; width: 100%;
  padding: 1.2rem 1.5rem;
  background: linear-gradient(to top, var(--bg-cream-pure) 80%, rgba(254, 253, 251, 0));
  transform: translateY(102%);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  display: flex;
  gap: 0.5rem;
  z-index: 5;
}

.product-card:hover .add-cart-drawer { transform: translateY(0); }
.product-card:hover .product-meta-row { opacity: 0; transform: translateY(-10px); }

.btn-quick-view {
  background: var(--accent-beige);
  color: var(--color-charcoal);
  border: var(--border-soft);
  padding: 0.9rem 1rem;
  border-radius: var(--radius-pill);
  font-weight: 500;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  flex-grow: 1;
}

.btn-quick-view:hover {
  background: var(--accent-blush);
  transform: translateY(-2px);
}

.btn-add-cart {
  background: var(--color-charcoal);
  color: var(--bg-cream-pure);
  border: none;
  padding: 0.9rem 1.2rem;
  border-radius: var(--radius-pill);
  font-weight: 500;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 12px rgba(45,39,36,0.15);
}

.btn-add-cart:hover {
  background: var(--accent-gold-dark);
  transform: translateY(-2px);
}

/* Video Story Layout */
.video-story-section {
  padding: 6rem 0;
  background: linear-gradient(180deg, var(--bg-cream) 0%, var(--bg-cream-pure) 100%);
}

.story-video-container {
  border-radius: var(--radius-lg);
  height: 520px;
  overflow: hidden;
  position: relative;
  border: var(--border-glass);
  box-shadow: var(--shadow-floating);
  display: flex;
  align-items: center;
  justify-content: center;
}

.story-video-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 130%;
  background-size: cover;
  background-position: center;
  z-index: 1;
  transform: translateY(var(--parallax-y, -10%));
  will-change: transform;
}

.story-video-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: radial-gradient(circle, rgba(45, 39, 36, 0.35) 0%, rgba(45, 39, 36, 0.65) 100%);
  z-index: 2;
}

.story-video-content {
  position: relative;
  z-index: 3;
  color: var(--bg-cream-pure);
  text-align: center;
  max-width: 680px;
  padding: 2.5rem;
}

.story-video-tag {
  color: var(--accent-blush);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.8rem;
  display: block;
}

.story-video-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.story-video-content p {
  color: rgba(254, 253, 251, 0.9);
  font-size: 1.1rem;
  margin-bottom: 2.2rem;
}

.btn-play-story {
  background: var(--bg-cream-pure);
  color: var(--color-charcoal);
  border: none;
  padding: 1.1rem 2.2rem;
  border-radius: var(--radius-pill);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.btn-play-story:hover {
  background: var(--accent-blush);
  transform: scale(1.05) translateY(-3px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

/* Brand Values */
.values-section {
  padding: 6rem 0;
  background: var(--bg-cream-pure);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.value-card {
  padding: 2.5rem;
  background: rgba(250, 247, 242, 0.5);
  border-radius: var(--radius-md);
  border: var(--border-soft);
  box-shadow: var(--shadow-soft);
  text-align: center;
  transition: var(--transition-smooth);
}

.value-card:hover {
  transform: translateY(-10px);
  background: var(--bg-cream-pure);
  box-shadow: var(--shadow-floating);
}

.value-icon-container {
  width: 60px;
  height: 60px;
  background: var(--accent-beige);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--accent-gold-dark);
  transition: var(--transition-smooth);
}

.value-card:hover .value-icon-container {
  background: var(--accent-blush);
  color: var(--color-charcoal);
  transform: rotate(360deg);
}

.value-icon-container svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 2px; }
.value-card h3 { font-size: 1.3rem; margin-bottom: 0.8rem; color: var(--color-charcoal); }
.value-card p { font-size: 0.95rem; }

/* ==========================================================================
   SECTION 2: SHOP PAGE STYLES
   ========================================================================== */
.shop-header {
  padding-top: 10rem;
  padding-bottom: 4rem;
  text-align: center;
  background: linear-gradient(180deg, var(--accent-beige-dark) -50%, rgba(250, 247, 242, 0) 100%);
}

.shop-main {
  padding-bottom: 8rem;
}

.shop-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3rem;
  align-items: start;
}

/* Glassmorphism sidebar */
.shop-sidebar {
  background: rgba(254, 253, 251, 0.45);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  border: var(--border-glass);
  box-shadow: var(--shadow-floating);
  padding: 2rem 1.8rem;
  position: sticky;
  top: 8rem;
}

.filter-card h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(45, 39, 36, 0.08);
  padding-bottom: 0.8rem;
}

.filter-group {
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(45, 39, 36, 0.05);
  padding-bottom: 1.2rem;
}

.filter-header-btn {
  background: none;
  border: none;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--color-charcoal);
  cursor: pointer;
  padding: 0.5rem 0;
  outline: none;
}

.filter-header-btn svg.chevron {
  transition: transform 0.3s ease;
}

.filter-header-btn.active svg.chevron {
  transform: rotate(180deg);
}

.filter-content {
  display: none;
  flex-direction: column;
  gap: 0.8rem;
  padding-top: 1rem;
}

.filter-header-btn.active + .filter-content {
  display: flex;
}

/* Custom Checkboxes */
.custom-checkbox {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  cursor: pointer;
  font-size: 0.95rem;
  color: var(--color-charcoal-light);
  user-select: none;
}

.custom-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0; width: 0;
}

.checkmark {
  height: 20px;
  width: 20px;
  background: var(--bg-cream-pure);
  border: var(--border-soft);
  border-radius: var(--radius-sm);
  display: inline-block;
  position: relative;
  transition: var(--transition-fast);
  box-shadow: var(--shadow-inner);
}

.custom-checkbox:hover input ~ .checkmark {
  background: var(--accent-beige);
}

.custom-checkbox input:checked ~ .checkmark {
  background: var(--accent-blush);
  border-color: var(--accent-blush-hover);
}

.checkmark::after {
  content: "";
  position: absolute;
  display: none;
  left: 7px; top: 3px;
  width: 5px; height: 10px;
  border: solid var(--color-charcoal);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.custom-checkbox input:checked ~ .checkmark::after {
  display: block;
}

/* Range Slider */
.price-slider-container {
  padding: 0.5rem 0;
}

.price-range-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  border-radius: var(--radius-pill);
  background: var(--accent-beige-dark);
  outline: none;
  transition: background 0.3s;
}

.price-range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent-gold-dark);
  cursor: pointer;
  box-shadow: var(--shadow-flat);
  transition: transform 0.1s ease;
}

.price-range-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.price-values {
  margin-top: 0.8rem;
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
}

.reset-filter-btn {
  width: 100%;
  background: transparent;
  color: var(--color-charcoal);
  border: 1px solid var(--accent-gold-light);
  padding: 0.8rem;
  margin-top: 1rem;
  animation: none;
}

.reset-filter-btn:hover {
  background: var(--color-charcoal);
  color: var(--bg-cream-pure);
}

/* Advanced Catalog Grid */
.shop-content-panel {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.shop-catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* Pulsing skeleton loaders styling */
.shop-skeleton-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.skeleton-card {
  background: var(--bg-cream-pure);
  border-radius: var(--radius-lg);
  border: var(--border-soft);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 380px;
}

.skeleton-img {
  width: 100%;
  height: 60%;
  background: var(--accent-beige);
  border-radius: var(--radius-md);
}

.skeleton-text {
  height: 15px;
  background: var(--accent-beige);
  border-radius: var(--radius-pill);
}

.skeleton-text.short { width: 40%; }
.skeleton-text.long { width: 80%; }
.skeleton-text.price { width: 25%; margin-top: auto; }

.pulse-skeleton {
  animation: pulse-skeleton-anim 1.5s infinite ease-in-out;
}

@keyframes pulse-skeleton-anim {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

/* 3D Flip-On-Hover Cards styling */
.flip-card-container {
  perspective: 1000px;
  height: 420px;
  cursor: pointer;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  transform-style: preserve-3d;
}

.flip-card-container:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden; /* Safari */
  backface-visibility: hidden;
  border-radius: var(--radius-lg);
  border: var(--border-soft);
  box-shadow: var(--shadow-floating);
  overflow: hidden;
}

.flip-card-front {
  background-color: var(--bg-cream-pure);
  display: flex;
  flex-direction: column;
}

.flip-card-back {
  background-color: var(--accent-beige-dark);
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
}

.flip-card-container:hover {
  /* Elevate shadow on main container on hover */
  filter: drop-shadow(0 25px 35px rgba(45,39,36,0.06));
}

.back-img-box {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.back-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.back-overlay-info {
  position: absolute;
  bottom: 0; left: 0; width: 100%;
  padding: 2rem 1.5rem;
  background: linear-gradient(to top, rgba(45,39,36,0.9) 30%, rgba(45,39,36,0) 100%);
  color: var(--bg-cream-pure);
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.back-overlay-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
}

.back-overlay-info p {
  color: rgba(254, 253, 251, 0.85);
  font-size: 0.85rem;
}

.btn-view-details-back {
  background: var(--bg-cream-pure);
  color: var(--color-charcoal);
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 600;
  width: fit-content;
  margin-top: 0.5rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.btn-view-details-back:hover {
  background: var(--accent-blush);
  transform: translateY(-2px);
}

/* Pagination pills */
.pagination-container {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 2rem;
}

.pagination-pill {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: var(--border-soft);
  background: var(--bg-cream-pure);
  color: var(--color-charcoal-light);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-flat);
}

.pagination-pill:hover,
.pagination-pill.active {
  background: var(--color-charcoal);
  color: var(--bg-cream-pure);
  box-shadow: var(--shadow-soft);
  transform: scale(1.05);
}

/* ==========================================================================
   SECTION 3: ABOUT US PAGE STYLES
   ========================================================================== */
.about-hero-section {
  padding-top: 10rem;
  padding-bottom: 6rem;
}

.about-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
}

.about-hero-image-box {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: var(--border-glass);
  box-shadow: var(--shadow-floating);
}

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

.about-hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-hero-headline {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--color-charcoal);
  position: relative;
  overflow: hidden;
}

.about-hero-headline.slide-up {
  animation: text-slide-up-anim 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes text-slide-up-anim {
  0% { transform: translateY(100%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

/* Scroll Journey Timeline */
.timeline-section {
  padding: 6rem 0;
  background: linear-gradient(180deg, var(--bg-cream-pure) 0%, var(--bg-cream) 100%);
  position: relative;
}

.timeline-wrapper {
  max-width: 800px;
  margin: 4rem auto 0;
  position: relative;
}

/* Central vertical connecting line */
.timeline-line {
  position: absolute;
  top: 0; bottom: 0; left: 50%;
  width: 4px;
  background: var(--accent-beige-dark);
  transform: translateX(-50%);
  border-radius: var(--radius-pill);
}

.timeline-line-fill {
  width: 100%;
  height: 0%; /* Filled dynamically by scroll heights */
  background: linear-gradient(to bottom, var(--accent-blush) 0%, var(--accent-gold) 100%);
  border-radius: var(--radius-pill);
  transition: height 0.1s ease-out;
}

.timeline-item {
  position: relative;
  width: 100%;
  margin-bottom: 5rem;
  display: flex;
  justify-content: flex-end; /* Odd cards on the right */
}

.timeline-item:nth-child(even) {
  justify-content: flex-start; /* Even cards on the left */
}

/* Timeline center dot markers */
.timeline-marker {
  position: absolute;
  top: 1.5rem; left: 50%;
  width: 20px; height: 20px;
  background: var(--bg-cream-pure);
  border: 4px solid var(--accent-gold);
  border-radius: 50%;
  transform: translateX(-50%);
  z-index: 5;
  box-shadow: var(--shadow-flat);
  transition: background-color 0.4s ease;
}

.timeline-item.active-marker .timeline-marker {
  background-color: var(--accent-blush);
}

.timeline-card {
  width: 45%;
  background: var(--bg-cream-pure);
  padding: 2.2rem;
  border-radius: var(--radius-lg);
  border: var(--border-soft);
  box-shadow: var(--shadow-floating);
  position: relative;
  transition: var(--transition-smooth);
}

.timeline-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-elevated);
}

.timeline-year {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-gold-dark);
  margin-bottom: 0.5rem;
  display: block;
}

.timeline-card h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--color-charcoal);
  margin-bottom: 0.8rem;
}

.timeline-card p {
  font-size: 0.95rem;
  color: var(--color-charcoal-light);
}

/* Floating Team Profiles */
.team-section {
  padding: 6rem 0;
  background: var(--bg-cream-pure);
}

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

.team-card {
  background: var(--bg-cream);
  border-radius: var(--radius-lg);
  border: var(--border-soft);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
}

.team-card:hover {
  background: var(--bg-cream-pure);
  transform: translateY(-15px);
  box-shadow: var(--shadow-elevated);
}

.team-img-box {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  overflow: hidden;
  box-shadow: var(--shadow-inner);
  border: 3px solid var(--bg-cream-pure);
}

.team-placeholder-avatar {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--accent-blush) 0%, var(--accent-gold-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--color-charcoal);
}

.team-info h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--color-charcoal);
  margin-bottom: 0.4rem;
}

.team-info p {
  font-size: 0.85rem;
  color: var(--accent-gold-dark);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.2rem;
}

/* Slide-up social drawer links */
.team-social-drawer {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  height: 0;
  overflow: hidden;
  opacity: 0;
  transition: height 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
}

.team-card:hover .team-social-drawer {
  height: 35px;
  opacity: 1;
}

.team-social-drawer a {
  text-decoration: none;
  width: 32px; height: 32px;
  background: var(--bg-cream-pure);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-charcoal-light);
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: var(--shadow-flat);
  transition: var(--transition-fast);
}

.team-social-drawer a:hover {
  background: var(--accent-blush);
  color: var(--color-charcoal);
  transform: translateY(-2px);
}

/* Metric Counter Blocks */
.metrics-section {
  padding: 6rem 0;
  background: linear-gradient(180deg, var(--bg-cream-pure) 0%, var(--bg-cream) 100%);
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.metric-card {
  text-align: center;
  background: rgba(254, 253, 251, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 3rem 2rem;
  border-radius: var(--radius-lg);
  border: var(--border-glass);
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
}

.metric-card:hover {
  transform: translateY(-8px);
  background: var(--bg-cream-pure);
  box-shadow: var(--shadow-floating);
}

.metric-number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-charcoal);
  margin-bottom: 0.5rem;
}

.metric-card p {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-gold-dark);
  font-weight: 500;
}

/* ==========================================================================
   SECTION 4: CONTACT & SUPPORT PAGE STYLES
   ========================================================================== */
.contact-header {
  padding-top: 10rem;
  padding-bottom: 4rem;
  text-align: center;
}

.contact-main {
  padding-bottom: 6rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
}

/* Neumorphic support form */
.contact-form-container {
  background: rgba(254, 253, 251, 0.45);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border-radius: var(--radius-lg);
  border: var(--border-glass);
  box-shadow: var(--shadow-floating);
  padding: 3rem;
}

.neumorphic-form h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  margin-bottom: 2rem;
  color: var(--color-charcoal);
}

.input-group {
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.input-group label {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-charcoal-light);
}

.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

/* Neumorphic Input Fields */
.neumorphic-input {
  width: 100%;
  background: var(--bg-cream);
  border: 1px solid rgba(45, 39, 36, 0.04);
  padding: 1.1rem 1.4rem;
  border-radius: var(--radius-md);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--color-charcoal);
  box-shadow: var(--shadow-inner);
  transition: var(--transition-fast);
  outline: none;
}

.neumorphic-input:focus {
  border-color: var(--accent-gold-light);
  background: var(--bg-cream-pure);
  box-shadow: 0 0 0 4px rgba(201, 176, 151, 0.12), 0 4px 15px rgba(201,176,151,0.05);
}

textarea.neumorphic-input {
  resize: none;
}

/* Success Validation Checkmark */
.check-icon {
  position: absolute;
  right: 1.2rem;
  width: 18px; height: 18px;
  fill: none;
  stroke: var(--accent-sage-dark);
  stroke-width: 3px;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.input-wrapper.valid .check-icon {
  opacity: 1;
  transform: scale(1);
}

.form-submit-btn {
  width: 100%;
  padding: 1.2rem;
  justify-content: center;
  font-weight: 600;
  font-size: 1rem;
  margin-top: 1rem;
}

/* Right Side: Map & Address info */
.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
}

.glass-info-card {
  background: rgba(254, 253, 251, 0.65);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border-radius: var(--radius-lg);
  border: var(--border-glass);
  box-shadow: var(--shadow-floating);
  padding: 2.5rem;
}

.glass-info-card h3 {
  margin-bottom: 1.2rem;
  font-size: 1.4rem;
}

.glass-info-card p {
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
}

.glass-info-card p strong {
  font-weight: 600;
  color: var(--color-charcoal);
}

/* Stylized Abstract Map graphic with Pin */
.stylized-map-card {
  height: 300px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: var(--border-glass);
  box-shadow: var(--shadow-floating);
  position: relative;
  background: linear-gradient(135deg, var(--accent-beige) 0%, var(--accent-sage) 100%);
}

.map-illustration {
  position: absolute;
  width: 100%; height: 100%;
  top: 0; left: 0;
  overflow: hidden;
}

.map-contour {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(45, 39, 36, 0.15);
}

.contour-1 { width: 400px; height: 400px; top: -50px; left: -50px; }
.contour-2 { width: 300px; height: 300px; bottom: -50px; right: -50px; }
.contour-3 { width: 180px; height: 180px; top: 30%; left: 35%; }

.map-pin {
  position: absolute;
  top: 45%; left: 48%;
  color: var(--accent-gold-dark);
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.15));
}

.map-pin svg {
  width: 38px; height: 38px;
}

/* FAQ Accordions */
.faq-section {
  padding: 6rem 0 8rem;
}

.faq-accordion-container {
  max-width: 800px;
  margin: 3.5rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.faq-item {
  background: var(--bg-cream-pure);
  border-radius: var(--radius-md);
  border: var(--border-soft);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-item:hover {
  box-shadow: var(--shadow-floating);
  transform: translateY(-2px);
}

.faq-header-btn {
  background: none;
  border: none;
  width: 100%;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--color-charcoal);
  cursor: pointer;
  text-align: left;
  outline: none;
}

.faq-header-btn svg.chevron {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  color: var(--accent-gold-dark);
}

.faq-item.active .faq-header-btn svg.chevron {
  transform: rotate(180deg);
}

.faq-content {
  height: 0;
  overflow: hidden;
  transition: height 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-content p {
  padding: 0 2rem 1.8rem;
  font-size: 1rem;
  line-height: 1.7;
}

/* ==========================================================================
   GLOBAL COMPONENTS: FOOTER & CONTACT WIDGET
   ========================================================================== */
.footer {
  background: var(--accent-beige);
  padding: 5rem 0 3rem;
  border-top: var(--border-soft);
  position: relative;
  z-index: 2;
}

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

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.footer-brand p { font-size: 0.95rem; }

.footer-col h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
  color: var(--color-charcoal);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-links a {
  text-decoration: none;
  color: var(--color-charcoal-light);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--color-charcoal);
  padding-left: 4px;
}

/* Dedicated Follow Us social columns */
.brand-social-links {
  list-style: none;
  display: flex;
  gap: 0.8rem;
  margin-top: 0.5rem;
}

.social-icon-btn {
  width: 40px;
  height: 40px;
  background: var(--bg-cream-pure);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-charcoal-light);
  box-shadow: var(--shadow-flat);
  transition: var(--transition-elastic);
}

@keyframes bounce-soft-gravity {
  0%, 100% { transform: translateY(0); }
  40% { transform: translateY(-8px); }
  70% { transform: translateY(-2px); }
}

.social-icon-btn:hover {
  animation: bounce-soft-gravity 0.6s ease;
}

.social-icon-btn svg {
  width: 18px; height: 18px;
  transition: var(--transition-fast);
}

/* Authentic social hover shadows */
.social-icon-btn.tiktok:hover {
  background: #000000; color: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 242, 254, 0.4), 0 -4px 15px rgba(254, 9, 121, 0.4);
}

.social-icon-btn.youtube:hover {
  background: #FF0000; color: #ffffff;
  box-shadow: 0 6px 16px rgba(255, 0, 0, 0.35);
}

.social-icon-btn.instagram:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #ffffff;
  box-shadow: 0 6px 16px rgba(220, 39, 67, 0.35);
}

.social-icon-btn.linkedin:hover {
  background: #0077B5; color: #ffffff;
  box-shadow: 0 6px 16px rgba(0, 119, 181, 0.35);
}

.social-icon-btn.twitter-x:hover {
  background: #000000; color: #ffffff;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(45, 39, 36, 0.08);
  font-size: 0.85rem;
  color: var(--color-charcoal-light);
}

.footer-legal { display: flex; gap: 2rem; }
.footer-legal a { text-decoration: none; color: var(--color-charcoal-light); transition: var(--transition-fast); }
.footer-legal a:hover { color: var(--color-charcoal); }

/* Premium Agency Credit Card */
.agency-credit-card {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 4px 20px rgba(45, 39, 36, 0.03);
  transition: var(--transition-smooth);
}

.agency-credit-card:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 10px 25px rgba(45, 39, 36, 0.06);
  border-color: var(--accent-gold-light);
}

.agency-credit-tag {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-charcoal-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.agency-credit-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  background: var(--color-charcoal);
  color: var(--bg-cream-pure);
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition-fast);
  box-shadow: 0 4px 10px rgba(45, 39, 36, 0.15);
}

.agency-credit-badge:hover {
  background: var(--accent-gold-dark);
  color: var(--bg-cream-pure);
  box-shadow: 0 6px 15px rgba(179, 154, 130, 0.4);
}

.agency-credit-badge .pulse-dot {
  width: 6px;
  height: 6px;
  background: #a3e635; /* Vibrant lime green */
  border-radius: 50%;
  position: relative;
}

.agency-credit-badge .pulse-dot::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: 50%;
  background: inherit;
  animation: pulse-soft-gravity 2s infinite ease-in-out;
}

@keyframes pulse-soft-gravity {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(2.5); opacity: 0; }
}

.agency-credit-badge .agency-name {
  letter-spacing: 0.02em;
}

.agency-credit-badge svg.external-icon {
  stroke: currentColor;
  stroke-width: 2.5px;
  transition: transform 0.3s ease;
}

.agency-credit-badge:hover svg.external-icon {
  transform: translate(1px, -1px);
}

/* Premium text links style for details/FAQ */
.premium-text-link {
  color: var(--accent-gold-dark);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px dashed var(--accent-gold);
  transition: var(--transition-fast);
  padding-bottom: 1px;
}

.premium-text-link:hover {
  color: var(--color-charcoal);
  border-bottom-style: solid;
  border-bottom-color: var(--color-charcoal);
}

/* Floating Contact Widget (Bottom Right) */
.floating-contact-widget {
  position: fixed;
  bottom: 2rem; right: 2rem;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  padding: 0.8rem;
  background: rgba(254, 253, 251, 0.45);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: var(--border-glass);
  border-radius: 50px;
  box-shadow: var(--shadow-floating);
  transition: var(--transition-smooth);
}

.floating-contact-widget:hover {
  background: rgba(254, 253, 251, 0.7);
  box-shadow: var(--shadow-elevated);
}

.contact-link {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-elastic);
  cursor: pointer;
}

.contact-link.whatsapp {
  background: #ffffff;
  color: #25D366;
  border: 1px solid rgba(37, 211, 102, 0.15);
}

.contact-link.email {
  background: var(--accent-beige);
  color: var(--color-charcoal);
  border: var(--border-soft);
}

.contact-link:hover { transform: scale(1.15); }

.contact-link.whatsapp:hover {
  background: #25D366; color: #ffffff;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
}

.contact-link.email:hover {
  background: var(--accent-blush); color: var(--color-charcoal);
  box-shadow: 0 8px 20px rgba(235, 216, 214, 0.4);
}

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

/* Toast Notifications */
.toast-msg {
  position: fixed;
  bottom: 2rem; right: 2rem;
  background: var(--bg-cream-pure);
  border: 1px solid var(--accent-gold-light);
  padding: 1.1rem 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-elevated);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  transform: translateY(150%) scale(0.9);
  opacity: 0;
  z-index: 2000;
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.4s ease;
}

.toast-msg.show { transform: translateY(0) scale(1); opacity: 1; }

.toast-check {
  width: 20px; height: 20px;
  background: var(--accent-blush);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-charcoal);
}

.toast-check svg { width: 10px; height: 10px; fill: none; stroke: currentColor; stroke-width: 3px; }

/* ==========================================================================
   QUICK VIEW MODAL STYLING
   ========================================================================== */
.quick-view-overlay {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(45, 39, 36, 0.4);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  z-index: 5000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.quick-view-overlay.show {
  opacity: 1;
  pointer-events: auto;
}

.quick-view-modal {
  background: rgba(254, 253, 251, 0.85);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: var(--border-glass);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-elevated);
  width: 90%;
  max-width: 800px;
  padding: 3rem;
  position: relative;
  transform: scale(0.9) translateY(30px);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.quick-view-overlay.show .quick-view-modal {
  transform: scale(1) translateY(0);
}

.btn-close-modal {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  background: var(--accent-beige);
  border: var(--border-soft);
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--color-charcoal);
  transition: var(--transition-fast);
}

.btn-close-modal:hover {
  background: var(--accent-blush);
  transform: rotate(90deg);
}

.modal-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: center;
}

.modal-left {
  background: linear-gradient(135deg, var(--bg-cream-pure), var(--accent-beige));
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-img-container img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-sm);
  object-fit: cover;
  mix-blend-mode: multiply;
}

.modal-right {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.modal-cat {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--accent-gold-dark);
  font-weight: 600;
  letter-spacing: 0.05em;
}

.modal-title {
  font-size: 2rem;
  color: var(--color-charcoal);
}

.modal-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(45,39,36,0.08);
  padding-bottom: 1rem;
}

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

.modal-rating {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  color: var(--accent-gold);
  font-weight: 500;
}

.modal-desc {
  font-size: 0.95rem;
  line-height: 1.6;
}

.modal-quantity-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin: 0.5rem 0 1rem;
}

.modal-quantity-row label {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--color-charcoal-light);
}

.quantity-selector {
  display: flex;
  align-items: center;
  border: var(--border-soft);
  background: var(--bg-cream);
  border-radius: var(--radius-pill);
  overflow: hidden;
}

.quantity-selector button {
  background: none;
  border: none;
  width: 36px; height: 36px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--color-charcoal);
  transition: background-color 0.2s;
}

.quantity-selector button:hover { background-color: var(--accent-beige); }

.quantity-selector span {
  width: 40px;
  text-align: center;
  font-weight: 500;
}

.modal-add-cart-btn {
  width: 100%;
  justify-content: center;
  font-size: 1rem;
  padding: 1.1rem;
}

/* ==========================================================================
   RESPONSIVE DESIGN BREAKPOINTS
   ========================================================================== */
/* ==========================================================================
   RESPONSIVE DESIGN BREAKPOINTS
   ========================================================================== */
@media (max-width: 1200px) {
  .grid-showcase { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .shop-catalog-grid, .shop-skeleton-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { gap: 1.5rem; }
  .about-hero-grid { gap: 3rem; }
}

@media (max-width: 992px) {
  .hero-grid { grid-template-columns: 1fr; gap: 4rem; text-align: center; }
  .hero-content { align-items: center; }
  .hero-image-container { margin-top: 2rem; }
  .hero-badge.badge-top-left { left: 0; }
  .hero-badge.badge-bottom-right { right: 0; }
  .shop-layout { grid-template-columns: 1fr; }
  .shop-sidebar { position: static; width: 100%; }
  .about-hero-grid { grid-template-columns: 1fr; text-align: center; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .metrics-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }

  /* Hamburger & Mobile Navigation Menu */
  .hamburger-btn {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    outline: none;
  }

  .hamburger-btn .line {
    width: 100%;
    height: 2px;
    background-color: var(--color-charcoal);
    border-radius: var(--radius-pill);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease, width 0.3s ease;
  }

  .hamburger-btn.open .line-1 { transform: translateY(8px) rotate(45deg); }
  .hamburger-btn.open .line-2 { opacity: 0; width: 0; }
  .hamburger-btn.open .line-3 { transform: translateY(-8px) rotate(-45deg); }

  .mobile-menu-overlay {
    display: flex;
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    background: rgba(254, 253, 251, 0.96);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    z-index: 999;
    align-items: center;
    justify-content: center;
    transform: translateY(-100%);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .mobile-menu-overlay.open {
    transform: translateY(0);
  }

  .mobile-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    text-align: center;
  }

  .mobile-nav-links a.mobile-nav-link {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--color-charcoal-light);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-fast);
    display: inline-block;
  }

  .mobile-nav-links a.mobile-nav-link:hover,
  .mobile-nav-links a.mobile-nav-link.active {
    color: var(--color-charcoal);
    transform: scale(1.05);
  }
}

@media (max-width: 768px) {
  .navbar { gap: 1.5rem; padding: 0.8rem 1.5rem; }
  .nav-links { display: none; }
  .shop-catalog-grid, .shop-skeleton-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .timeline-line { left: 1rem; }
  .timeline-item { justify-content: flex-end; }
  .timeline-item:nth-child(even) { justify-content: flex-end; }
  .timeline-card { width: calc(100% - 3rem); }
  .timeline-marker { left: 1rem; }
  .modal-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 1.5rem; text-align: center; }
  .footer-legal { justify-content: center; }

  /* Bestsellers Swipeable Horizontal Carousel snap rules */
  .grid-showcase {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1.5rem;
    padding: 1.5rem 1.5rem 3rem;
    margin: 0 -2.5rem;
    -webkit-overflow-scrolling: touch;
  }

  .grid-showcase::-webkit-scrollbar {
    display: none;
  }

  .grid-showcase .product-card {
    flex: 0 0 82%;
    scroll-snap-align: start;
    animation: none !important;
    transform: none !important;
  }

  .grid-showcase .product-card:hover {
    transform: none !important;
  }

  /* Mobile Filters Bottom Sheet */
  .shop-sidebar {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    width: 100%;
    max-height: 80vh;
    background: rgba(254, 253, 251, 0.95);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    border: var(--border-glass);
    border-bottom: none;
    box-shadow: 0 -15px 40px rgba(45, 39, 36, 0.12);
    z-index: 1010;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    overflow-y: auto;
    padding: 3.5rem 2.2rem 2.2rem;
  }

  .shop-sidebar.open {
    transform: translateY(0);
  }

  .btn-close-sidebar {
    display: flex;
  }

  /* Sticky filters button container */
  .mobile-filter-trigger-container {
    display: flex;
  }

  /* Backdrop Overlay active */
  .sidebar-overlay {
    display: block;
  }
  .sidebar-overlay.show {
    opacity: 1;
    pointer-events: auto;
  }

  /* Scaling contact widget on mobile */
  .floating-contact-widget {
    transform: scale(0.82);
    bottom: 1.5rem;
    right: 1.5rem;
  }
}
