/* ==========================================================================
   AL HUDA PERFUME — MASTER LUXURY DESIGN SYSTEM
   Production-Grade CSS with Bespoke Oriental Oud & Gold Aesthetic
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700;800;900&family=Outfit:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;1,400&family=Reenie+Beanie&display=swap');

/* --- Root Design Tokens --- */
:root {
  /* Colors */
  --bg-dark: #090a0d;
  --bg-primary: #0e1117;
  --bg-secondary: #141722;
  --bg-surface: #1b202e;
  --bg-surface-elevated: #23293b;
  --bg-glass: rgba(14, 17, 23, 0.75);
  --bg-glass-card: rgba(20, 23, 34, 0.65);
  --bg-light: #faf7f2;
  --bg-light-subtle: #f3ede2;

  --gold-100: #faf1d8;
  --gold-200: #f4e1ad;
  --gold-300: #ebd082;
  --gold-400: #dfbc58;
  --gold-500: #caa03a;
  --gold-600: #a7802b;
  --gold-700: #816020;

  --gold-gradient: linear-gradient(135deg, #fcebc2 0%, #caa03a 50%, #946f20 100%);
  --gold-gradient-radial: radial-gradient(circle at center, #eed494 0%, #caa03a 60%, #7d5b16 100%);
  --gold-gradient-soft: linear-gradient(135deg, rgba(202, 160, 58, 0.15) 0%, rgba(202, 160, 58, 0.03) 100%);
  --dark-gradient: linear-gradient(180deg, #090a0d 0%, #141722 100%);
  --hero-overlay: linear-gradient(90deg, rgba(9, 10, 13, 0.95) 0%, rgba(9, 10, 13, 0.8) 45%, rgba(9, 10, 13, 0.35) 100%);

  --text-pure: #ffffff;
  --text-main: #f5f4ef;
  --text-secondary: #b8bdcc;
  --text-muted: #7f8596;
  --text-gold: #dfbc58;

  --border-subtle: rgba(202, 160, 58, 0.2);
  --border-glass: rgba(255, 255, 255, 0.08);
  --border-active: rgba(202, 160, 58, 0.65);

  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.25);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.65);
  --shadow-gold: 0 8px 30px -4px rgba(202, 160, 58, 0.35);
  --shadow-gold-lg: 0 15px 45px -5px rgba(202, 160, 58, 0.45);

  /* Typography */
  --font-serif: 'Cinzel', 'Playfair Display', Georgia, serif;
  --font-accent: 'Playfair Display', Georgia, serif;
  --font-sans: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Sizing & Spacing */
  --header-height: 84px;
  --announcement-height: 38px;
  --container-max: 1320px;
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

body {
  font-family: var(--font-sans);
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

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

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

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

ul,
ol {
  list-style: none;
}

/* --- Typography Utilities --- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-serif);
  color: var(--text-main);
  line-height: 1.25;
  letter-spacing: 0.03em;
  font-weight: 600;
}

.text-gold-gradient {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.font-accent {
  font-family: var(--font-accent);
  font-style: italic;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-400);
  font-weight: 600;
  margin-bottom: 12px;
}

.section-tag::before,
.section-tag::after {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--gold-gradient);
}

.section-tag.no-after::after {
  display: none;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  margin-bottom: 16px;
  text-align: center;
}

.section-subtitle {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: var(--text-secondary);
  max-width: 680px;
  margin: 0 auto 48px;
  text-align: center;
  font-weight: 300;
}

/* --- Layout Containers --- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.section-padding {
  padding-top: 90px;
  padding-bottom: 90px;
}

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

/* --- Custom Scrollbar --- */
::-webkit-scrollbar {
  width: 9px;
}

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

::-webkit-scrollbar-thumb {
  background: #282f42;
  border-radius: 4px;
  border: 2px solid var(--bg-dark);
}

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

/* ==========================================================================
   BUTTONS & UI COMPONENTS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

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

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: var(--gold-gradient);
  color: #0c0e12;
  box-shadow: var(--shadow-gold);
  border: 1px solid var(--gold-400);
}

.btn-primary:hover {
  box-shadow: var(--shadow-gold-lg);
  transform: translateY(-2px);
  color: #000;
}

.btn-secondary {
  background: transparent;
  color: var(--text-pure);
  border: 1px solid var(--border-subtle);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  border-color: var(--gold-400);
  background: rgba(202, 160, 58, 0.1);
  color: var(--gold-300);
  transform: translateY(-2px);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold-400);
  border: 1px solid var(--gold-500);
}

.btn-outline-gold:hover {
  background: var(--gold-gradient);
  color: #0b0d12;
  box-shadow: var(--shadow-gold);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.8rem;
}

.btn-lg {
  padding: 18px 38px;
  font-size: 1rem;
}

.btn-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-surface);
  color: var(--text-main);
  border: 1px solid var(--border-glass);
  transition: all var(--transition-fast);
}

.btn-icon:hover {
  background: var(--gold-gradient);
  color: #0b0d12;
  border-color: var(--gold-400);
  transform: scale(1.05);
}

/* --- Badges --- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--radius-xs);
}

.badge-gold {
  background: var(--gold-gradient-soft);
  color: var(--gold-300);
  border: 1px solid var(--border-subtle);
}

.badge-featured {
  background: var(--gold-gradient);
  color: #000;
  font-weight: 700;
}

.badge-sale {
  background: #a32222;
  color: #fff;
}

/* ==========================================================================
   ANNOUNCEMENT BAR & NAVIGATION
   ========================================================================== */
.announcement-bar {
  background: var(--bg-dark);
  border-bottom: 1px solid rgba(202, 160, 58, 0.15);
  font-size: 0.78rem;
  color: var(--text-secondary);
  padding: 8px 0;
  position: relative;
  z-index: 101;
}

.announcement-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.announcement-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.announcement-gold {
  color: var(--gold-400);
  font-weight: 600;
}

/* --- Header / Navbar --- */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(9, 10, 13, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-glass);
  z-index: 100;
  transition: all var(--transition-normal);
}

.site-header.scrolled {
  background: rgba(9, 10, 13, 0.96);
  border-bottom-color: var(--border-subtle);
  box-shadow: var(--shadow-md);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

/* Brand Logo */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.site-logo-img {
  height: 90px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 2px 10px rgba(202, 160, 58, 0.3));
  transition: transform var(--transition-fast), filter var(--transition-fast);
}

.brand-logo:hover .site-logo-img {
  transform: scale(1.04);
  filter: drop-shadow(0 4px 16px rgba(202, 160, 58, 0.55));
}

.footer-brand .site-logo-img {
  height: 72px;
  margin-bottom: 12px;
}

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

.logo-crest {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  background: var(--gold-gradient-soft);
  border: 1px solid var(--gold-500);
  box-shadow: 0 0 15px rgba(202, 160, 58, 0.2);
}

.logo-crest svg {
  width: 24px;
  height: 24px;
  fill: var(--gold-400);
}

.logo-text-group {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #fff;
  line-height: 1.1;
  text-transform: uppercase;
}

.brand-tagline {
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  color: var(--gold-400);
  text-transform: uppercase;
  font-weight: 500;
}

/* Desktop Nav Links */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
  position: relative;
  padding: 6px 0;
  transition: color var(--transition-fast);
}

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

.nav-link:hover,
.nav-link.active {
  color: var(--gold-300);
}

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

/* Nav Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.action-btn {
  position: relative;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  color: var(--text-main);
  background: transparent;
  transition: all var(--transition-fast);
}

.action-btn:hover {
  color: var(--gold-400);
  background: rgba(202, 160, 58, 0.1);
}

.action-badge {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 18px;
  height: 18px;
  border-radius: var(--radius-full);
  background: var(--gold-gradient);
  color: #000;
  font-size: 0.68rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  animation: badgePop 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes badgePop {
  0% {
    transform: scale(0);
  }

  70% {
    transform: scale(1.2);
  }

  100% {
    transform: scale(1);
  }
}

.mobile-menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  color: var(--text-main);
}

@media (max-width: 992px) {
  .nav-menu {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }
}

/* Mobile Drawer Navigation */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(85vw, 360px);
  height: 100vh;
  background: var(--bg-secondary);
  border-left: 1px solid var(--border-subtle);
  padding: 32px 24px;
  z-index: 1000;
  transition: right var(--transition-slow);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-lg);
}

.mobile-drawer.open {
  right: 0;
}

.mobile-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
}

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

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 36px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-glass);
}

.drawer-close {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-surface);
  color: var(--text-main);
}

.drawer-links {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.drawer-link {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-main);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.drawer-link:hover,
.drawer-link.active {
  color: var(--gold-300);
}

.drawer-footer {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid var(--border-glass);
}

/* ==========================================================================
   HERO BANNER SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: calc(90vh - var(--header-height));
  display: flex;
  align-items: center;
  background-color: var(--bg-dark);
  overflow: hidden;
  padding: 60px 0;
}

.hero-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #090a0d 0%, rgba(9, 10, 13, 0.88) 50%, rgba(9, 10, 13, 0.4) 100%);
  z-index: 2;
}

@media (max-width: 992px) {
  .hero-overlay {
    background: linear-gradient(180deg, rgba(9, 10, 13, 0.7) 0%, rgba(9, 10, 13, 0.95) 85%);
  }
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 680px;
}

.hero-badge {
  margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(2.5rem, 5.5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 24px;
  color: #fff;
  letter-spacing: 0.02em;
}

.hero-desc {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 36px;
  font-weight: 300;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}

.hero-features {
  display: flex;
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border-glass);
}

.hero-feature-item {
  display: flex;
  flex-direction: column;
}

.feature-number {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gold-400);
}

.feature-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ==========================================================================
   FEATURED CATEGORIES SECTION
   ========================================================================== */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

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

@media (max-width: 576px) {
  .categories-grid {
    grid-template-columns: 1fr;
  }
}

.category-card {
  position: relative;
  height: 380px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-glass);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  background: var(--bg-surface);
  text-decoration: none;
}

.category-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 10, 13, 0.1) 0%, rgba(9, 10, 13, 0.85) 75%, #090a0d 100%);
  z-index: 2;
  transition: opacity var(--transition-normal);
}

.category-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
  z-index: 1;
}

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

.category-card:hover img {
  transform: scale(1.08);
}

.category-card-content {
  position: relative;
  z-index: 3;
}

.category-subtitle {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 6px;
  font-weight: 600;
}

.category-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.category-explore {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-main);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  transition: gap var(--transition-fast), color var(--transition-fast);
}

.category-card:hover .category-explore {
  gap: 14px;
  color: var(--gold-300);
}

/* ==========================================================================
   PRODUCT GRID & PRODUCT CARDS
   ========================================================================== */
.filter-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 10px 24px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  background: var(--bg-surface);
  color: var(--text-secondary);
  border: 1px solid var(--border-glass);
  transition: all var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--gold-gradient-soft);
  color: var(--gold-300);
  border-color: var(--gold-500);
  box-shadow: 0 0 15px rgba(202, 160, 58, 0.15);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}

.product-card {
  background: var(--bg-glass-card);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  position: relative;
}

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

.product-image-wrap {
  position: relative;
  width: 100%;
  padding-top: 100%;
  background: radial-gradient(circle at center, #1b202e 0%, #0e1117 80%);
  overflow: hidden;
}

.product-image-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.product-badge-float {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 4;
}

.product-quick-actions {
  position: absolute;
  bottom: -50px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 12px;
  background: linear-gradient(180deg, transparent 0%, rgba(9, 10, 13, 0.85) 100%);
  transition: bottom var(--transition-normal);
  z-index: 4;
}

.product-card:hover .product-quick-actions {
  bottom: 0;
}

.product-info {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-category {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 6px;
}

.product-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.3;
}

.product-title a:hover {
  color: var(--gold-300);
}

.product-notes {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 14px;
  font-style: italic;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.8rem;
  color: var(--gold-400);
  margin-bottom: 16px;
}

.product-rating-count {
  color: var(--text-muted);
  font-size: 0.75rem;
  margin-left: 4px;
}

.product-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--border-glass);
}

.product-price {
  display: flex;
  flex-direction: column;
}

.price-current {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-main);
}

.price-original {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

/* ==========================================================================
   SCENT PYRAMID INTERACTIVE COMPONENT
   ========================================================================== */
.scent-pyramid-section {
  background: radial-gradient(circle at center, #161a26 0%, #090a0d 70%);
  position: relative;
}

.pyramid-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

@media (max-width: 992px) {
  .pyramid-container {
    grid-template-columns: 1fr;
  }
}

.pyramid-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.pyramid-level {
  width: 100%;
  border-radius: var(--radius-md);
  padding: 24px 30px;
  background: var(--bg-surface);
  border: 1px solid var(--border-glass);
  cursor: pointer;
  transition: all var(--transition-normal);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.pyramid-level:hover,
.pyramid-level.active {
  border-color: var(--gold-400);
  background: var(--bg-surface-elevated);
  box-shadow: 0 0 25px rgba(202, 160, 58, 0.2);
  transform: scale(1.02);
}

.pyramid-level::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gold-gradient);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.pyramid-level.active::before {
  opacity: 1;
}

.level-top {
  width: 70%;
}

.level-heart {
  width: 85%;
}

.level-base {
  width: 100%;
}

.level-info h4 {
  font-size: 1.1rem;
  color: var(--gold-300);
  margin-bottom: 4px;
}

.level-info p {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.level-time {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.05em;
  background: rgba(255, 255, 255, 0.05);
  padding: 4px 10px;
  border-radius: var(--radius-xs);
}

.pyramid-detail-card {
  background: var(--bg-glass-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 40px;
  backdrop-filter: blur(12px);
}

.notes-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0 28px;
}

.note-chip {
  background: rgba(202, 160, 58, 0.12);
  border: 1px solid var(--border-subtle);
  color: var(--gold-200);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 500;
}

/* ==========================================================================
   BRAND STORY & CRAFTSMANSHIP
   ========================================================================== */
.brand-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 992px) {
  .brand-story-grid {
    grid-template-columns: 1fr;
  }
}

.story-image-stack {
  position: relative;
}

.story-main-img {
  width: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-lg);
}

.story-badge-float {
  position: absolute;
  bottom: -25px;
  right: -25px;
  background: var(--bg-surface);
  border: 1px solid var(--gold-500);
  padding: 20px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-gold);
  display: flex;
  align-items: center;
  gap: 16px;
}

@media (max-width: 576px) {
  .story-badge-float {
    position: static;
    margin-top: 16px;
  }
}

.story-badge-text h4 {
  font-size: 1.25rem;
  color: var(--gold-300);
}

.story-badge-text p {
  font-size: 0.75rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ==========================================================================
   TESTIMONIALS SLIDER
   ========================================================================== */
.testimonials-section {
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

.slider-wrapper {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
}

.testimonial-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  text-align: center;
  display: none;
  animation: fadeIn 0.5s ease;
}

.testimonial-card.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

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

.testimonial-quote {
  font-family: var(--font-accent);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.8;
  color: var(--text-main);
  margin-bottom: 28px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.author-name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold-300);
}

.author-location {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.slider-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 32px;
}

.slider-dots {
  display: flex;
  gap: 8px;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: var(--radius-full);
  background: var(--border-glass);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.slider-dot.active {
  background: var(--gold-400);
  width: 28px;
  border-color: var(--gold-500);
}

/* ==========================================================================
   NEWSLETTER VIP SECTION
   ========================================================================== */
.newsletter-card {
  background: radial-gradient(circle at center, #242b3d 0%, #141722 80%);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 60px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-gold);
}

.newsletter-form {
  display: flex;
  max-width: 540px;
  margin: 32px auto 16px;
  gap: 12px;
}

@media (max-width: 640px) {
  .newsletter-form {
    flex-direction: column;
  }
}

.newsletter-input {
  flex-grow: 1;
  padding: 16px 22px;
  background: var(--bg-dark);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  color: #fff;
  font-size: 0.95rem;
  outline: none;
  transition: border-color var(--transition-fast);
}

.newsletter-input:focus {
  border-color: var(--gold-400);
  box-shadow: 0 0 15px rgba(202, 160, 58, 0.2);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: #060709;
  border-top: 1px solid var(--border-glass);
  padding: 80px 0 30px;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 60px;
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-brand p {
  margin-top: 18px;
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 320px;
}

.footer-title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: var(--text-muted);
  transition: all var(--transition-fast);
}

.footer-links a:hover {
  color: var(--gold-300);
  transform: translateX(4px);
}

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

@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

.social-links {
  display: flex;
  gap: 14px;
}

.social-link {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-surface);
  border: 1px solid var(--border-glass);
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}

.social-link:hover {
  background: var(--gold-gradient);
  color: #000;
  border-color: var(--gold-400);
  transform: translateY(-3px);
}

/* ==========================================================================
   MODALS (Quick View, Search, Toast)
   ========================================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
}

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

.modal-content {
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  max-width: 840px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-lg);
  animation: modalScale 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalScale {
  from {
    transform: scale(0.92);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.modal-close-btn {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-full);
  background: var(--bg-surface);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-glass);
  z-index: 10;
  transition: all var(--transition-fast);
}

.modal-close-btn:hover {
  background: var(--gold-500);
  color: #000;
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 2000;
}

.toast {
  background: var(--bg-surface-elevated);
  border: 1px solid var(--gold-500);
  color: #fff;
  padding: 14px 22px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-gold);
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 280px;
  animation: toastSlide 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes toastSlide {
  from {
    transform: translateX(100%);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* ==========================================================================
   PAGE-SPECIFIC STYLES (Shop, Product, Cart, About, Contact)
   ========================================================================== */

/* Page Banner */
.page-banner {
  padding: 60px 0 40px;
  background: radial-gradient(circle at center top, #1c2230 0%, #090a0d 80%);
  text-align: center;
  border-bottom: 1px solid var(--border-glass);
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.breadcrumb a {
  color: var(--gold-400);
}

/* Shop Layout */
.shop-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  padding: 50px 0 90px;
}

@media (max-width: 992px) {
  .shop-layout {
    grid-template-columns: 1fr;
  }
}

.shop-sidebar {
  background: var(--bg-secondary);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 28px;
  height: fit-content;
}

.sidebar-widget {
  margin-bottom: 30px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-glass);
}

.sidebar-widget:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.widget-title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: #fff;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.filter-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.filter-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-secondary);
  cursor: pointer;
  user-select: none;
}

.filter-label input[type="checkbox"],
.filter-label input[type="radio"] {
  accent-color: var(--gold-500);
  width: 16px;
  height: 16px;
}

.filter-label:hover {
  color: var(--gold-300);
}

/* Single Product Detail Page */
.product-detail-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 50px;
  align-items: start;
  padding: 60px 0;
}

@media (max-width: 992px) {
  .product-detail-grid {
    grid-template-columns: 1fr;
  }
}

.gallery-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-glass);
  background: radial-gradient(circle at center, #1e2433 0%, #0e1117 80%);
  margin-bottom: 16px;
  position: relative;
}

.gallery-main img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}

.gallery-thumbs {
  display: flex;
  gap: 12px;
}

.thumb-item {
  width: 70px;
  height: 70px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-glass);
  overflow: hidden;
  cursor: pointer;
  opacity: 0.6;
  transition: all var(--transition-fast);
}

.thumb-item.active,
.thumb-item:hover {
  opacity: 1;
  border-color: var(--gold-400);
}

.thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.volume-selector {
  display: flex;
  gap: 12px;
  margin: 20px 0;
}

.volume-option {
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  background: var(--bg-surface);
  border: 1px solid var(--border-glass);
  color: var(--text-main);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.volume-option.active,
.volume-option:hover {
  background: var(--gold-gradient-soft);
  border-color: var(--gold-500);
  color: var(--gold-300);
}

.qty-stepper {
  display: inline-flex;
  align-items: center;
  background: var(--bg-surface);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
}

.qty-btn {
  width: 42px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--text-main);
}

.qty-btn:hover {
  color: var(--gold-400);
}

.qty-input {
  width: 50px;
  text-align: center;
  background: transparent;
  border: none;
  font-weight: 700;
}

/* Cart Page */
.cart-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  padding: 50px 0 90px;
}

@media (max-width: 992px) {
  .cart-grid {
    grid-template-columns: 1fr;
  }
}

.cart-table {
  width: 100%;
  border-collapse: collapse;
}

.cart-table th {
  text-align: left;
  padding: 16px;
  font-family: var(--font-serif);
  font-size: 0.88rem;
  color: var(--gold-400);
  border-bottom: 1px solid var(--border-glass);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.cart-table td {
  padding: 20px 16px;
  border-bottom: 1px solid var(--border-glass);
  vertical-align: middle;
}

.cart-item-flex {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cart-item-img {
  width: 70px;
  height: 70px;
  border-radius: var(--radius-sm);
  object-fit: cover;
}

.cart-summary-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 30px;
  height: fit-content;
  box-shadow: var(--shadow-md);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.summary-total {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  border-top: 1px solid var(--border-glass);
  padding-top: 16px;
  margin-top: 16px;
}

/* Contact & FAQ */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 50px;
}

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

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  background: var(--bg-surface);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  color: #fff;
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--gold-400);
  box-shadow: 0 0 12px rgba(202, 160, 58, 0.2);
}

/* Accordion */
.accordion-item {
  background: var(--bg-surface);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
  overflow: hidden;
}

.accordion-header {
  padding: 18px 24px;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background var(--transition-fast);
}

.accordion-header:hover {
  background: rgba(202, 160, 58, 0.05);
  color: var(--gold-300);
}

.accordion-body {
  padding: 0 24px 20px;
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.7;
  display: none;
}

.accordion-item.open .accordion-body {
  display: block;
}

.accordion-item.open .accordion-header {
  color: var(--gold-400);
}

/* --- Floating WhatsApp Concierge Widget --- */
.whatsapp-float-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: #ffffff;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45), 0 0 0 2px rgba(255, 255, 255, 0.15);
  z-index: 999;
  cursor: pointer;
  text-decoration: none;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.whatsapp-float-btn:hover {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.65), 0 0 20px rgba(37, 211, 102, 0.4);
  color: #ffffff;
}

.whatsapp-float-btn svg {
  width: 32px;
  height: 32px;
  fill: #ffffff;
}

.whatsapp-tooltip {
  position: absolute;
  right: 72px;
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-subtle);
  color: var(--text-main);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 500;
  white-space: nowrap;
  box-shadow: var(--shadow-md);
  pointer-events: none;
  opacity: 0;
  transform: translateX(10px);
  transition: all var(--transition-normal);
}

.whatsapp-float-btn:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

.whatsapp-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-full);
  background: #25d366;
  opacity: 0.6;
  animation: waPulse 2s infinite cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}

@keyframes waPulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  100% {
    transform: scale(1.45);
    opacity: 0;
  }
}

.btn-whatsapp {
  background: #25d366 !important;
  color: #ffffff !important;
  border: 1px solid #22bf5b !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 600;
  transition: all var(--transition-normal);
}

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

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

/* --- WhatsApp Nav Bar Icon --- */
.whatsapp-nav-btn {
  color: #25d366 !important;
  transition: color var(--transition-normal), transform var(--transition-normal), filter var(--transition-normal);
  position: relative;
}

.whatsapp-nav-btn:hover {
  color: #1ebe59 !important;
  transform: scale(1.15);
  filter: drop-shadow(0 0 6px rgba(37, 211, 102, 0.6));
}

.whatsapp-nav-btn svg {
  fill: currentColor;
  display: block;
}