/* ==========================================================================
   ORVÉLA Naturals — Ultra-Luxury Editorial Aesthetic Stylesheet
   Palette: Cream (#FAF7F2, #F4EFE6), Deep Botanical Green (#1C3322, #122216), 
   Sage (#8E9F88, #607559), Soft Warm Beige (#EADECF), Muted Foil Gold (#C5A869, #D9BE84)
   ========================================================================== */

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

:root {
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-display: 'Cinzel', 'Cormorant Garamond', serif;
  --font-editorial: 'Playfair Display', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Color System */
  --bg-primary: #FAF7F2;
  --bg-secondary: #F3EFE7;
  --bg-tertiary: #EBE5DB;
  --bg-dark: #16281B;
  --bg-darker: #0E1C12;
  --bg-card: #FFFFFF;
  --bg-glass: rgba(250, 247, 242, 0.88);
  --bg-glass-dark: rgba(22, 40, 27, 0.92);

  --text-primary: #182C1D;
  --text-secondary: #4A5B4C;
  --text-muted: #78897A;
  --text-on-dark: #FAF7F2;
  --text-on-dark-muted: #B8C8B9;

  --color-green-deep: #1B3521;
  --color-green-forest: #24462C;
  --color-green-sage: #81977D;
  --color-green-sage-light: #EBF0E9;
  --color-green-sage-subtle: #F2F5F1;

  --color-gold: #C5A869;
  --color-gold-light: #E0CFA4;
  --color-gold-bright: #D4AF37;
  --color-gold-dark: #9E8043;
  --color-gold-bg: rgba(197, 168, 105, 0.12);
  --color-gold-border: rgba(197, 168, 105, 0.35);
  --color-gold-glow: rgba(197, 168, 105, 0.25);

  --border-subtle: rgba(27, 53, 33, 0.08);
  --border-medium: rgba(27, 53, 33, 0.16);
  --border-gold: rgba(197, 168, 105, 0.4);

  --shadow-sm: 0 2px 8px rgba(22, 40, 27, 0.04);
  --shadow-md: 0 8px 24px rgba(22, 40, 27, 0.07);
  --shadow-lg: 0 16px 40px rgba(22, 40, 27, 0.1);
  --shadow-xl: 0 24px 60px rgba(22, 40, 27, 0.14);
  --shadow-gold: 0 10px 30px rgba(197, 168, 105, 0.18);
  --shadow-glow: 0 0 25px rgba(197, 168, 105, 0.3);

  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  background-image: radial-gradient(rgba(197, 168, 105, 0.04) 1px, transparent 0);
  background-size: 32px 32px;
}

/* Luxury Grain & Texture Overlay */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.025;
  z-index: 99999;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Selection */
::selection {
  background-color: var(--color-gold-light);
  color: var(--bg-dark);
}

/* Typography Helpers */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  color: var(--text-primary);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.15;
}

.font-display {
  font-family: var(--font-display);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.font-editorial {
  font-family: var(--font-editorial);
}

p {
  color: var(--text-secondary);
  font-size: 0.975rem;
  line-height: 1.7;
}

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

button {
  cursor: pointer;
  border: none;
  outline: none;
  font-family: inherit;
  transition: var(--transition-fast);
}

/* Standard Layout Containers */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 768px) {
  .container {
    padding: 0 2.5rem;
  }
}

@media (min-width: 1200px) {
  .container {
    padding: 0 3.5rem;
  }
}

/* Luxury Gold Details */
.gold-text {
  background: linear-gradient(135deg, #b89758 0%, #ecd9a2 45%, #9e7f3c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gold-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.9rem;
  background: var(--color-gold-bg);
  border: 1px solid var(--color-gold-border);
  border-radius: var(--radius-full);
  color: var(--color-gold-dark);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gold-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 1.5rem 0;
}

.gold-divider::before,
.gold-divider::after {
  content: '';
  height: 1px;
  width: 50px;
  background: linear-gradient(to right, transparent, var(--color-gold));
}
.gold-divider::after {
  background: linear-gradient(to left, transparent, var(--color-gold));
}

.gold-leaf-icon {
  color: var(--color-gold);
  display: inline-flex;
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.announcement-bar {
  background: linear-gradient(90deg, #142518 0%, #1c3522 50%, #142518 100%);
  color: #f7f3eb;
  padding: 0.55rem 1rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-align: center;
  border-bottom: 1px solid rgba(197, 168, 105, 0.25);
  position: relative;
  z-index: 101;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.announcement-bar span {
  font-weight: 500;
}

.announcement-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--color-gold);
}

.main-navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 242, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-subtle);
  transition: all 0.3s ease;
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 82px;
}

.nav-logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

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

@media (min-width: 992px) {
  .nav-links-desktop {
    display: flex;
  }
}

.nav-link-item {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-primary);
  position: relative;
  padding: 0.5rem 0;
  transition: color 0.25s ease;
}

.nav-link-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1.5px;
  background: var(--color-gold);
  transition: width 0.25s ease;
}

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

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn-icon {
  background: transparent;
  color: var(--text-primary);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border: 1px solid transparent;
  transition: var(--transition-fast);
}

.btn-icon:hover {
  background: rgba(27, 53, 33, 0.05);
  border-color: var(--border-subtle);
  color: var(--color-green-forest);
}

.cart-badge-count {
  position: absolute;
  top: 4px;
  right: 4px;
  background: var(--color-gold);
  color: #1a2e1d;
  font-size: 0.68rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.mobile-nav-toggle {
  display: flex;
  background: transparent;
  border: none;
  padding: 0.5rem;
  color: var(--text-primary);
}

@media (min-width: 992px) {
  .mobile-nav-toggle {
    display: none;
  }
}

/* Mobile Slide Navigation Drawer */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--bg-primary);
  z-index: 200;
  display: flex;
  flex-direction: column;
  padding: 2rem 1.5rem;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
}

.mobile-nav-drawer.open {
  transform: translateX(0);
}

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-subtle);
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.mobile-nav-item {
  font-family: var(--font-serif);
  font-size: 1.65rem;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-nav-footer {
  margin-top: auto;
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* ==========================================================================
   HERO SECTION (LUXURY BOTANICAL)
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: calc(90vh - 120px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1.5rem 6rem;
  overflow: hidden;
  background: radial-gradient(circle at 50% 30%, rgba(235, 240, 233, 0.8) 0%, rgba(250, 247, 242, 1) 75%);
}

.hero-bg-leaves {
  position: absolute;
  pointer-events: none;
  opacity: 0.18;
  z-index: 1;
}

.hero-bg-leaves-left {
  top: -40px;
  left: -80px;
  width: 320px;
  transform: rotate(-15deg);
}

.hero-bg-leaves-right {
  bottom: -60px;
  right: -80px;
  width: 360px;
  transform: rotate(25deg);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
}

.hero-emblem-wrap {
  margin-bottom: 2rem;
  animation: fadeInDown 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-emblem {
  width: 140px;
  height: 140px;
  margin: 0 auto;
  filter: drop-shadow(0 12px 24px rgba(22, 40, 27, 0.08));
  transition: transform 0.6s ease;
}

@media (min-width: 768px) {
  .hero-emblem {
    width: 170px;
    height: 170px;
  }
}

.hero-emblem:hover {
  transform: scale(1.03) rotate(1deg);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-green-sage);
  margin-bottom: 1.25rem;
  font-weight: 600;
}

.hero-title {
  font-size: 2.75rem;
  line-height: 1.12;
  margin-bottom: 1.5rem;
  color: var(--color-green-deep);
  font-weight: 400;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 4.25rem;
  }
}

.hero-title em {
  font-style: italic;
  font-family: var(--font-editorial);
  color: #2b5034;
}

.hero-description {
  font-size: 1.08rem;
  max-width: 620px;
  margin: 0 auto 2.5rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

@media (min-width: 576px) {
  .hero-buttons {
    flex-direction: row;
    gap: 1.5rem;
  }
}

/* Button Component Styles */
.btn-primary-luxury {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: var(--color-green-deep);
  color: #FAF7F2;
  padding: 1.05rem 2.4rem;
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  box-shadow: 0 8px 20px rgba(27, 53, 33, 0.22);
  border: 1px solid rgba(197, 168, 105, 0.4);
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-primary-luxury::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transition: left 0.6s ease;
}

.btn-primary-luxury:hover {
  background: #112215;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(27, 53, 33, 0.3);
  border-color: var(--color-gold-bright);
}

.btn-primary-luxury:hover::before {
  left: 100%;
}

.btn-secondary-luxury {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: transparent;
  color: var(--color-green-deep);
  padding: 1.05rem 2.2rem;
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-medium);
  transition: all 0.3s ease;
}

.btn-secondary-luxury:hover {
  background: rgba(27, 53, 33, 0.04);
  border-color: var(--color-gold);
  color: var(--color-gold-dark);
}

.btn-gold-action {
  background: linear-gradient(135deg, #c5a869 0%, #b3934f 100%);
  color: #122216;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.82rem;
  padding: 0.9rem 1.8rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-gold);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-gold-action:hover {
  background: linear-gradient(135deg, #d4ba7d 0%, #c5a869 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(197, 168, 105, 0.35);
}

.btn-whatsapp-direct {
  background: #25D366;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-weight: 600;
  font-size: 0.86rem;
  letter-spacing: 0.06em;
  padding: 0.9rem 1.6rem;
  border-radius: var(--radius-full);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.28);
}

.btn-whatsapp-direct:hover {
  background: #20BA5A;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.38);
}

/* Luxury Value Marquee / Pillars Bar */
.luxury-pillars-bar {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 1.75rem 0;
}

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

@media (min-width: 992px) {
  .pillars-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.pillar-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.pillar-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(197, 168, 105, 0.15);
  border: 1px solid var(--color-gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold-dark);
  flex-shrink: 0;
}

.pillar-text h4 {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.15rem;
}

.pillar-text p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.3;
}

/* ==========================================================================
   SECTION HEADERS
   ========================================================================== */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem;
}

.section-eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold-dark);
  margin-bottom: 0.75rem;
  display: block;
}

.section-title {
  font-size: 2.3rem;
  color: var(--color-green-deep);
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 3.1rem;
  }
}

.section-subtitle {
  font-size: 1.02rem;
  color: var(--text-secondary);
}

/* ==========================================================================
   PRODUCT CARDS & GRIDS
   ========================================================================== */
.products-section {
  padding: 6rem 0;
  background: var(--bg-primary);
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 640px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.product-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--shadow-sm);
  position: relative;
}

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

.product-image-container {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1.05;
  background: linear-gradient(135deg, #F8F5EE 0%, #EFE9DE 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  cursor: pointer;
}

.product-image-visual {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.product-badge-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(22, 40, 27, 0.85);
  backdrop-filter: blur(8px);
  color: #FAF7F2;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(197, 168, 105, 0.3);
  z-index: 3;
}

.product-quick-view-btn {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translate(-50%, 15px);
  opacity: 0;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  color: var(--color-green-deep);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  padding: 0.55rem 1.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 4px 14px rgba(0,0,0,0.12);
  transition: all 0.3s ease;
  z-index: 3;
}

.product-card:hover .product-quick-view-btn {
  opacity: 1;
  transform: translate(-50%, 0);
}

.product-info-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-category-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-green-sage);
  margin-bottom: 0.35rem;
}

.product-name-title {
  font-size: 1.35rem;
  color: var(--color-green-deep);
  margin-bottom: 0.45rem;
  line-height: 1.25;
  cursor: pointer;
  transition: color 0.2s ease;
}

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

.product-price-tag {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--color-green-forest);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.product-price-tag .inclusive {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--text-muted);
}

.product-short-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 1.25rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Variant Selector in Product Card */
.product-card-variants {
  margin-bottom: 1.25rem;
}

.variant-label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.variant-required-tag {
  font-size: 0.68rem;
  color: #C04A3E;
  font-weight: 500;
}

.variant-chips-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.variant-chip {
  padding: 0.4rem 0.75rem;
  font-size: 0.74rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.variant-chip:hover {
  border-color: var(--color-gold);
  background: #FFFFFF;
}

.variant-chip.selected {
  background: var(--color-green-deep);
  color: #FAF7F2;
  border-color: var(--color-green-deep);
  box-shadow: 0 2px 8px rgba(27, 53, 33, 0.25);
}

.variant-color-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  display: inline-block;
  border: 1px solid rgba(0,0,0,0.15);
}

.product-actions-footer {
  margin-top: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  padding-top: 0.5rem;
}

.btn-card-cart {
  background: var(--bg-secondary);
  color: var(--color-green-deep);
  border: 1px solid var(--border-medium);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.75rem 0.5rem;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

.btn-card-cart:hover {
  background: var(--color-green-deep);
  color: #FAF7F2;
  border-color: var(--color-green-deep);
}

.btn-card-buy {
  background: var(--color-gold);
  color: #16281B;
  border: 1px solid var(--color-gold-dark);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.75rem 0.5rem;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-card-buy:hover {
  background: var(--color-gold-bright);
  box-shadow: 0 4px 12px rgba(197, 168, 105, 0.4);
}

/* ==========================================================================
   NATURAL INGREDIENTS SECTION (PHILOSOPHY)
   ========================================================================== */
.ingredients-section {
  padding: 6.5rem 0;
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

.ingredients-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 640px) {
  .ingredients-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .ingredients-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.ingredient-card {
  background: var(--bg-primary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.5rem 1.75rem;
  text-align: center;
  position: relative;
  transition: all 0.4s ease;
}

.ingredient-card:hover {
  transform: translateY(-6px);
  border-color: var(--color-gold);
  box-shadow: var(--shadow-md);
}

.ingredient-icon-wrap {
  width: 68px;
  height: 68px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: rgba(197, 168, 105, 0.12);
  border: 1px solid var(--color-gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-green-forest);
  transition: transform 0.4s ease;
}

.ingredient-card:hover .ingredient-icon-wrap {
  transform: scale(1.1) rotate(5deg);
  background: var(--color-green-deep);
  color: var(--color-gold);
}

.ingredient-card h3 {
  font-size: 1.45rem;
  margin-bottom: 0.85rem;
  color: var(--color-green-deep);
}

.ingredient-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ==========================================================================
   WHY ORVÉLA SECTION ("Less noise. More ritual.")
   ========================================================================== */
.why-orvela-section {
  padding: 7rem 0;
  background: var(--bg-primary);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.2rem;
}

@media (min-width: 992px) {
  .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.why-card {
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 3rem 2.2rem;
  position: relative;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

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

.why-num {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-gold-dark);
  letter-spacing: 0.15em;
  margin-bottom: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.why-num::after {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--color-gold);
}

.why-card h3 {
  font-size: 1.85rem;
  margin-bottom: 1rem;
  color: var(--color-green-deep);
}

.why-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* ==========================================================================
   EDITORIAL FOUNDER SPOTLIGHT
   ========================================================================== */
.founder-section {
  padding: 6.5rem 0;
  background: var(--bg-dark);
  color: var(--text-on-dark);
  position: relative;
  overflow: hidden;
}

.founder-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(197, 168, 105, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.founder-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: center;
}

@media (min-width: 992px) {
  .founder-layout {
    grid-template-columns: 1fr 1.2fr;
  }
}

.founder-visual-frame {
  position: relative;
  max-width: 440px;
  margin: 0 auto;
}

.founder-image-card {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(197, 168, 105, 0.35);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
  background: linear-gradient(135deg, #24462C 0%, #15281B 100%);
  position: relative;
}

.founder-portrait-art {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2.5rem;
  text-align: center;
}

.founder-gold-seal {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 1.5px solid var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  background: rgba(197, 168, 105, 0.08);
}

.founder-text-col {
  display: flex;
  flex-direction: column;
}

.founder-eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.founder-heading {
  font-size: 2.5rem;
  color: #FAF7F2;
  margin-bottom: 1.5rem;
  line-height: 1.18;
}

@media (min-width: 768px) {
  .founder-heading {
    font-size: 3.2rem;
  }
}

.founder-quote {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-style: italic;
  color: #E8E2D6;
  line-height: 1.7;
  margin-bottom: 2rem;
  position: relative;
  padding-left: 1.5rem;
  border-left: 2px solid var(--color-gold);
}

.founder-bio {
  color: var(--text-on-dark-muted);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.founder-sign-block {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 1rem;
}

.founder-signature {
  font-family: 'Playfair Display', cursive, serif;
  font-style: italic;
  font-size: 1.85rem;
  color: var(--color-gold);
  letter-spacing: 0.02em;
}

.founder-title-badge {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #A3B5A5;
}

/* ==========================================================================
   INSTAGRAM / COMMUNITY SECTION
   ========================================================================== */
.instagram-section {
  padding: 6rem 0;
  background: var(--bg-primary);
}

.insta-header {
  text-align: center;
  margin-bottom: 3rem;
}

.insta-handle-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--color-gold-dark);
  letter-spacing: 0.06em;
  margin-top: 0.5rem;
}

.insta-handle-link:hover {
  color: var(--color-green-deep);
  text-decoration: underline;
}

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

@media (min-width: 992px) {
  .insta-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.insta-tile {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  display: block;
}

.insta-tile-art {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.insta-tile:hover .insta-tile-art {
  transform: scale(1.08);
}

.insta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(22, 40, 27, 0.75);
  backdrop-filter: blur(4px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #FAF7F2;
  opacity: 0;
  transition: opacity 0.3s ease;
  padding: 1.5rem;
  text-align: center;
}

.insta-tile:hover .insta-overlay {
  opacity: 1;
}

/* ==========================================================================
   WHATSAPP CHANNEL & GOOGLE REVIEWS BANNERS
   ========================================================================== */
.social-perks-section {
  padding: 4rem 0 6rem;
  background: var(--bg-primary);
}

.social-perks-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .social-perks-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.perk-banner-card {
  border-radius: var(--radius-xl);
  padding: 2.75rem 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--border-subtle);
  position: relative;
  overflow: hidden;
}

.perk-banner-wa {
  background: linear-gradient(135deg, #1C3824 0%, #0F2215 100%);
  color: #FAF7F2;
  border-color: rgba(37, 211, 102, 0.3);
}

.perk-banner-review {
  background: linear-gradient(135deg, #FAF4EB 0%, #EFE5D5 100%);
  color: var(--text-primary);
  border-color: var(--color-gold-border);
}

.perk-icon-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.perk-badge {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 0.8rem;
  border-radius: var(--radius-full);
}

.perk-badge-wa {
  background: rgba(37, 211, 102, 0.2);
  color: #4EED8B;
  border: 1px solid rgba(37, 211, 102, 0.35);
}

.perk-badge-rev {
  background: rgba(197, 168, 105, 0.2);
  color: var(--color-gold-dark);
  border: 1px solid var(--color-gold-border);
}

.perk-banner-card h3 {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}

.perk-banner-card p {
  font-size: 0.92rem;
  margin-bottom: 1.75rem;
}

.perk-banner-wa p {
  color: #B8C8B9;
}

/* ==========================================================================
   PRODUCT DETAIL VIEW / MODAL
   ========================================================================== */
.pdp-wrap {
  padding: 4rem 0 6rem;
}

.pdp-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
}

@media (min-width: 992px) {
  .pdp-grid {
    grid-template-columns: 1.1fr 1fr;
    align-items: start;
  }
}

.pdp-gallery-frame {
  position: sticky;
  top: 110px;
  background: #FFFFFF;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-subtle);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.pdp-main-image-wrap {
  width: 100%;
  aspect-ratio: 1 / 1.05;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #FBF8F2 0%, #F1ECE2 100%);
  position: relative;
}

.pdp-details-pane {
  display: flex;
  flex-direction: column;
}

.pdp-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.pdp-title {
  font-size: 2.5rem;
  color: var(--color-green-deep);
  margin-bottom: 0.75rem;
  line-height: 1.15;
}

@media (min-width: 768px) {
  .pdp-title {
    font-size: 3.2rem;
  }
}

.pdp-price-box {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-subtle);
}

.pdp-price {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--color-green-forest);
}

.pdp-tax-note {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.pdp-description-text {
  font-size: 1.02rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.pdp-selection-block {
  background: var(--bg-secondary);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 2rem;
  border: 1px solid var(--border-subtle);
}

.pdp-qty-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.qty-stepper {
  display: inline-flex;
  align-items: center;
  background: #FFFFFF;
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-full);
  padding: 0.25rem;
}

.qty-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--text-primary);
}

.qty-btn:hover {
  background: var(--bg-secondary);
}

.qty-value {
  width: 44px;
  text-align: center;
  font-weight: 600;
  font-size: 0.95rem;
}

.pdp-action-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

@media (min-width: 576px) {
  .pdp-action-buttons {
    flex-direction: row;
  }
  .pdp-action-buttons .btn-primary-luxury,
  .pdp-action-buttons .btn-whatsapp-direct {
    flex: 1;
  }
}

/* Tabbed Accordion Details in PDP */
.pdp-accordion-group {
  margin-top: 2.5rem;
  border-top: 1px solid var(--border-subtle);
}

.pdp-accordion-item {
  border-bottom: 1px solid var(--border-subtle);
}

.pdp-accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  background: transparent;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: left;
}

.pdp-accordion-content {
  padding-bottom: 1.25rem;
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* ==========================================================================
   CART SLIDE-OUT DRAWER
   ========================================================================== */
.cart-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(14, 28, 18, 0.65);
  backdrop-filter: blur(8px);
  z-index: 300;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

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

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 480px;
  height: 100vh;
  background: var(--bg-primary);
  z-index: 301;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cart-drawer.open {
  transform: translateX(0);
}

.cart-drawer-header {
  padding: 1.5rem 2rem;
  background: #FFFFFF;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-drawer-title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--color-green-deep);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.cart-items-scroll {
  flex-grow: 1;
  overflow-y: auto;
  padding: 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.cart-item-card {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 1.25rem;
  align-items: center;
  background: #FFFFFF;
  padding: 1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
}

.cart-item-thumb {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-sm);
  background: var(--bg-secondary);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-item-details h4 {
  font-size: 1.05rem;
  color: var(--color-green-deep);
  margin-bottom: 0.25rem;
}

.cart-item-variant-tag {
  font-size: 0.75rem;
  color: var(--color-gold-dark);
  font-weight: 500;
  margin-bottom: 0.45rem;
}

.cart-drawer-footer {
  padding: 1.75rem 2rem;
  background: #FFFFFF;
  border-top: 1px solid var(--border-subtle);
  box-shadow: 0 -4px 16px rgba(0,0,0,0.04);
}

.cart-calc-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.92rem;
  color: var(--text-secondary);
  margin-bottom: 0.6rem;
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-green-deep);
  margin: 1rem 0 1.5rem;
  padding-top: 1rem;
  border-top: 1px dashed var(--border-medium);
}

/* ==========================================================================
   MODAL DIALOG (QUICK VIEW / AUTH)
   ========================================================================== */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(14, 28, 18, 0.75);
  backdrop-filter: blur(8px);
  z-index: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  animation: fadeIn 0.3s ease;
}

.modal-card {
  background: var(--bg-primary);
  border-radius: var(--radius-xl);
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  border: 1px solid var(--color-gold-border);
  box-shadow: 0 25px 60px rgba(0,0,0,0.3);
  position: relative;
  padding: 2.5rem;
}

.modal-close-btn {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  z-index: 10;
}

/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */
.faq-section {
  padding: 6.5rem 0;
  background: var(--bg-primary);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-card {
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  overflow: hidden;
  transition: border-color 0.25s ease;
}

.faq-card.open {
  border-color: var(--color-gold);
  box-shadow: var(--shadow-sm);
}

.faq-question-btn {
  width: 100%;
  padding: 1.35rem 1.75rem;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--color-green-deep);
  text-align: left;
}

.faq-answer-body {
  padding: 0 1.75rem 1.5rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* ==========================================================================
   CONTACT PAGE & INTAKE FORM
   ========================================================================== */
.contact-section {
  padding: 6.5rem 0;
  background: var(--bg-secondary);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
}

@media (min-width: 992px) {
  .contact-layout {
    grid-template-columns: 1fr 1.2fr;
  }
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-card-box {
  background: var(--bg-primary);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  border: 1px solid var(--border-subtle);
}

.contact-method-row {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.contact-method-row:last-child {
  margin-bottom: 0;
}

.contact-method-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(197, 168, 105, 0.15);
  border: 1px solid var(--color-gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-green-forest);
  flex-shrink: 0;
}

.contact-form-panel {
  background: #FFFFFF;
  border-radius: var(--radius-xl);
  padding: 3rem 2.5rem;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.9rem 1.2rem;
  background: var(--bg-primary);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text-primary);
  transition: all 0.25s ease;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  background: #FFFFFF;
  border-color: var(--color-gold);
  outline: none;
  box-shadow: 0 0 0 3px rgba(197, 168, 105, 0.18);
}

/* ==========================================================================
   ADMIN MANAGEMENT PANEL
   ========================================================================== */
.admin-wrap {
  padding: 4rem 0 7rem;
  background: var(--bg-secondary);
  min-height: 80vh;
}

.admin-header-bar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-medium);
}

@media (min-width: 768px) {
  .admin-header-bar {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.admin-tabs {
  display: flex;
  gap: 0.5rem;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 2rem;
  overflow-x: auto;
}

.admin-tab-btn {
  padding: 0.75rem 1.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: transparent;
  color: var(--text-secondary);
  border-bottom: 2px solid transparent;
}

.admin-tab-btn.active {
  color: var(--color-green-deep);
  border-color: var(--color-gold);
}

.admin-table-wrap {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  overflow-x: auto;
  box-shadow: var(--shadow-sm);
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.88rem;
}

.admin-table th {
  background: var(--bg-primary);
  padding: 1rem 1.25rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-medium);
}

.admin-table td {
  padding: 1.1rem 1.25rem;
  border-bottom: 1px solid var(--border-subtle);
  vertical-align: middle;
}

/* ==========================================================================
   FOOTER (LUXURY BOTANICAL)
   ========================================================================== */
.main-footer {
  background: var(--bg-darker);
  color: var(--text-on-dark);
  padding: 6rem 0 3rem;
  border-top: 1px solid rgba(197, 168, 105, 0.25);
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  margin-bottom: 4.5rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
  }
}

.footer-brand-col {
  display: flex;
  flex-direction: column;
}

.footer-logo-link {
  display: inline-block;
  margin-bottom: 1.25rem;
}

.footer-tagline-quote {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-style: italic;
  color: #E6DFD3;
  margin-bottom: 1.5rem;
}

.footer-nav-col h4 {
  font-family: var(--font-display);
  font-size: 0.82rem;
  letter-spacing: 0.15em;
  color: var(--color-gold);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

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

.footer-link-item {
  font-size: 0.88rem;
  color: var(--text-on-dark-muted);
  transition: color 0.2s ease;
}

.footer-link-item:hover {
  color: var(--color-gold-light);
  transform: translateX(4px);
}

.footer-bottom-bar {
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-muted);
}

@media (min-width: 768px) {
  .footer-bottom-bar {
    flex-direction: row;
  }
}

/* Floating WhatsApp Button */
.floating-wa-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  background: #25D366;
  color: #FFFFFF;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
  border: 2px solid #FFFFFF;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.floating-wa-btn:hover {
  transform: scale(1.1) translateY(-4px);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.55);
}

.floating-wa-tooltip {
  position: absolute;
  right: 70px;
  background: #FFFFFF;
  color: #16281B;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.floating-wa-btn:hover .floating-wa-tooltip {
  opacity: 1;
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 500;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.toast-item {
  background: #FFFFFF;
  color: var(--color-green-deep);
  border-left: 4px solid var(--color-gold);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1.4rem;
  box-shadow: var(--shadow-lg);
  font-size: 0.88rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  animation: slideUp 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Keyframes */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

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