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

/* ==========================================
   DESIGN TOKENS & SYSTEM VARIABLES
   ========================================== */
:root {
  --bg-color: #0D0D0D;       /* Midnight Black */
  --accent-color: #C9A84C;   /* Deep Gold */
  --accent-hover: #E8C363;   /* Lighter warm gold for hover */
  --text-color: #FAF7F2;     /* Ivory White (Never #FFFFFF) */
  --text-muted: #B5B2AC;     /* Muted ivory for subtitles */
  --card-bg: #161616;        /* Obsidian Black for card containers */
  --card-border: #242424;    /* Fine border for dark cards */
  --input-bg: #1A1A1A;       /* Dark background for forms */
  --nav-height: 80px;
  --nav-height-mobile: 70px;
  --glass-bg: rgba(13, 13, 13, 0.85);
  --glass-blur: blur(12px);
  --gold-glow: 0 0 15px rgba(201, 168, 76, 0.3);
  --font-primary: 'Cormorant Garamond', serif;
  --font-secondary: 'Playfair Display', serif;
  --font-body: 'Montserrat', sans-serif;
  --scroll-y: 0;             /* Dynamic variable for parallax */
}

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

html {
  scroll-behavior: smooth;
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: var(--font-body);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  overflow-x: hidden;
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
}

body.no-scroll {
  overflow: hidden;
}

/* Custom Premium Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-color);
}
::-webkit-scrollbar-thumb {
  background: #242424;
  border-radius: 4px;
  border: 2px solid var(--bg-color);
  transition: background 0.3s ease;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-color);
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease, border-color 0.3s ease;
}

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

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

/* Common Typography & Accents */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: 300;
  letter-spacing: 1.5px;
  color: var(--text-color);
}

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

.gold-text {
  color: var(--accent-color) !important;
}

/* Buttons */
.btn-gold {
  background-color: var(--accent-color);
  color: #0D0D0D;
  font-family: var(--font-body);
  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 2px;
  padding: 14px 28px;
  border: 1px solid var(--accent-color);
  border-radius: 0; /* Premium sharp corners */
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  min-height: 48px; /* Safe mobile tap target */
}

.btn-gold:hover {
  background-color: transparent;
  color: var(--accent-color);
  box-shadow: var(--gold-glow);
}

.btn-outline {
  border: 1px solid var(--accent-color);
  color: var(--accent-color);
  font-family: var(--font-body);
  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 2px;
  padding: 14px 28px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  min-height: 48px;
}

.btn-outline:hover {
  background-color: var(--accent-color);
  color: #0D0D0D;
  box-shadow: var(--gold-glow);
}

/* ==========================================
   PAGE LAYOUTS & TRANSITIONS (SPA)
   ========================================== */
.page-view {
  display: none;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
  padding-top: var(--nav-height-mobile); /* To prevent sticky nav overlap */
  min-height: 100vh;
}

.page-view.active {
  display: block;
}

.page-view.fade-in {
  opacity: 1;
}

body.has-announcement .page-view {
  padding-top: calc(var(--nav-height-mobile) + 40px);
}

/* Home page view overrides: no padding-top so hero carousel runs full bleed behind transparent sticky header */
#home.page-view, body.has-announcement #home.page-view {
  padding-top: 0;
}

@media (min-width: 768px) {
  .page-view {
    padding-top: var(--nav-height);
  }
  body.has-announcement .page-view {
    padding-top: calc(var(--nav-height) + 40px);
  }
  #home.page-view, body.has-announcement #home.page-view {
    padding-top: 0;
  }
}

/* ==========================================
   INTRO PAGE (CINEMATIC LANDING)
   ========================================== */
#intro-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background-color: #0d0d0d;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: opacity 1.5s cubic-bezier(0.25, 1, 0.5, 1);
  overflow: hidden;
}

#intro-screen.hidden {
  opacity: 0;
  pointer-events: none;
}

.intro-bg-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.intro-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('assets/founder_oil_animation.png') no-repeat center center;
  background-size: cover;
  filter: brightness(0.85) contrast(1.1) sepia(5%);
  animation: kenBurnsIntro 15s infinite alternate ease-in-out;
}

@keyframes kenBurnsIntro {
  0% {
    transform: scale(1) translate(0, 0);
  }
  100% {
    transform: scale(1.12) translate(-2%, -1%);
  }
}

.intro-dark-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(13, 13, 13, 0.65); /* 65% dark overlay */
  z-index: 1;
}

.intro-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.25) 0%, rgba(201, 168, 76, 0) 70%);
  z-index: 2;
  pointer-events: none;
}

.intro-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 3;
  padding: 20px;
}

.intro-content-wrapper {
  text-align: center;
  pointer-events: none;
}

.intro-headline {
  font-family: var(--font-primary);
  font-size: 2.8rem;
  color: var(--accent-color);
  letter-spacing: 6px;
  text-transform: uppercase;
  font-weight: 300;
  margin-bottom: 15px;
  opacity: 0;
  transform: translateY(20px);
  animation: introTextFadeIn 1.8s cubic-bezier(0.25, 1, 0.5, 1) forwards 1.5s;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.9);
}

.intro-subheadline {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-color);
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 400;
  opacity: 0;
  transform: translateY(15px);
  animation: introTextFadeIn 1.8s cubic-bezier(0.25, 1, 0.5, 1) forwards 2s; /* 0.5s after headline */
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
}

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

@media (min-width: 768px) {
  .intro-headline {
    font-size: 4.8rem;
    letter-spacing: 12px;
  }
  .intro-subheadline {
    font-size: 1.05rem;
    letter-spacing: 7px;
  }
  .intro-bg-image {
    background-position: center 20%;
  }
}

/* ==========================================
   ANNOUNCEMENT BAR
   ========================================== */
#announcement-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 40px;
  background-color: var(--accent-color);
  color: #0D0D0D;
  z-index: 1001; /* Directly above main header (z-index 1000) */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 40px 0 20px; /* Space for dismiss button */
  box-sizing: border-box;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

body.announcement-dismissed #announcement-bar {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

.announcement-content {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-align: center;
}

.announcement-content a {
  color: #0D0D0D;
  font-weight: 600;
  text-decoration: underline;
  margin-left: 5px;
  transition: opacity 0.3s ease;
}

.announcement-content a:hover {
  opacity: 0.8;
}

.announcement-close-btn {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #0D0D0D;
  font-size: 1.25rem;
  cursor: pointer;
  line-height: 1;
  padding: 5px;
}

body.has-announcement #main-header {
  top: 40px;
}

body.announcement-dismissed #main-header {
  top: 0;
}

/* ==========================================
   NAVIGATION
   ========================================== */
#main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height-mobile);
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  z-index: 1000;
  transition: all 0.4s ease;
}

#main-header.scrolled {
  height: 65px;
  background: rgba(13, 13, 13, 0.95);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.logo-container {
  display: flex;
  align-items: center;
  height: 100%;
}

.brand-logo {
  font-family: var(--font-primary);
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 2px;
  color: var(--accent-color);
  display: flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
}

.brand-logo svg {
  height: 24px;
  width: auto;
  fill: var(--accent-color);
}

/* Desktop Navigation (hidden on mobile first) */
.desktop-nav {
  display: none;
  height: 100%;
}

.nav-links-list {
  display: flex;
  align-items: center;
  list-style: none;
  height: 100%;
  gap: 30px;
}

.nav-link {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.8rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  position: relative;
  padding: 10px 0;
}

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--accent-color);
  transition: width 0.3s ease;
}

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

.desktop-actions {
  display: none;
  align-items: center;
  gap: 20px;
}

/* Cart Icon Button */
.cart-icon-btn {
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
}

.cart-icon-btn svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--accent-color);
  stroke-width: 1.5;
  transition: stroke 0.3s ease;
}

.cart-icon-btn:hover svg {
  stroke: var(--accent-hover);
}

.cart-count {
  position: absolute;
  top: 4px;
  right: 4px;
  background-color: var(--accent-color);
  color: #0D0D0D;
  font-size: 0.65rem;
  font-weight: 600;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.hamburger-btn span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--accent-color);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hamburger-btn.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger-btn.active span:nth-child(2) {
  opacity: 0;
}

.hamburger-btn.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.header-right-mobile {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Mobile Drawer Menu */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: #0d0d0dc0;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 1050;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px;
  transition: right 0.5s cubic-bezier(0.77, 0, 0.175, 1);
  border-left: 1px solid rgba(201, 168, 76, 0.15);
  overflow-y: auto;
}

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

.mobile-links-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* Perfectly aligned in the same vertical line */
  list-style: none;
  gap: 25px; /* Even spacing */
  width: fit-content;
  margin: 0 auto;
  padding: 0;
}

.mobile-link {
  font-family: var(--font-primary);
  font-size: 1.5rem; /* Clean, minimal, premium size */
  letter-spacing: 4px; /* Premium letter spacing */
  text-transform: uppercase;
  color: var(--text-color);
  position: relative;
  transition: color 0.3s ease, transform 0.3s ease;
  display: inline-block;
}

.mobile-link:hover {
  color: var(--accent-color);
  transform: translateX(8px); /* Subtle premium slide-in hover effect */
}

.mobile-link.active {
  color: var(--accent-color);
}

/* Premium active dot indicator */
.mobile-link.active::before {
  content: '';
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--accent-color);
}

@media (min-width: 768px) {
  #main-header {
    padding: 0 40px;
  }
  .desktop-nav {
    display: block;
  }
  .desktop-actions {
    display: flex;
  }
  .hamburger-btn {
    display: none;
  }
  .mobile-nav-drawer {
    display: none;
  }
  .brand-logo {
    font-size: 1.6rem;
  }
}

/* ==========================================
   HOMEPAGE: HERO SECTION
   ========================================== */
.hero-section {
  position: relative;
  min-height: calc(100vh - var(--nav-height-mobile));
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
  padding: 60px 20px;
  background-attachment: scroll; /* Default mobile */
}

/* Background image inside Hero for Parallax */
.hero-parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%; /* Extra height to allow scrolling movement */
  background: radial-gradient(circle, rgba(201, 168, 76, 0.15) 0%, rgba(13, 13, 13, 0.9) 100%), 
              url('assets/chocolate_musk.jpg') no-repeat 53% center;
  background-size: cover;
  z-index: 1;
  pointer-events: none;
  transform: translateY(0);
  transition: transform 0.1s ease-out;
  filter: brightness(0.8) contrast(1.15) sepia(10%); /* Cinematic warmth, depth & shadow */
}

@media (max-width: 767px) {
  .hero-parallax-bg {
    background-position: center center;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
  transform: translateY(0);
}

.hero-title {
  font-family: var(--font-primary);
  font-weight: 300;
  font-size: 2.5rem;
  line-height: 1.1;
  letter-spacing: 1px;
  margin-bottom: 20px;
  color: var(--text-color);
}

.hero-title span {
  display: block;
  color: var(--accent-color);
  font-size: 2.8rem;
  margin-top: 5px;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-muted);
  margin-bottom: 40px;
  letter-spacing: 0.5px;
  line-height: 1.7;
}

/* Mobile responsiveness helper for small viewports */
@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  .hero-title span {
    font-size: 2.2rem;
  }
  .hero-subtitle {
    font-size: 0.85rem;
    margin-bottom: 25px;
  }
}

@media (min-width: 768px) {
  .hero-section {
    min-height: calc(100vh - var(--nav-height));
    padding: 100px 40px;
  }
  .hero-parallax-bg {
    background-attachment: scroll;
  }
  .hero-title {
    font-size: 4rem;
  }
  .hero-title span {
    font-size: 4.5rem;
  }
  .hero-subtitle {
    font-size: 1.15rem;
  }
}

/* ==========================================
   HOMEPAGE: PRODUCT CAROUSEL (AUTO-SCROLL)
   ========================================== */
.carousel-section {
  background-color: #080808;
  padding: 80px 0;
  overflow: hidden;
  border-top: 1px solid rgba(201, 168, 76, 0.05);
  border-bottom: 1px solid rgba(201, 168, 76, 0.05);
}

.section-header-centered {
  text-align: center;
  margin-bottom: 50px;
  padding: 0 20px;
}

.section-subtitle {
  font-family: var(--font-secondary);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--accent-color);
  margin-bottom: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.section-title {
  font-size: 2.2rem;
  color: var(--text-color);
  letter-spacing: 2px;
}

.carousel-container {
  position: relative;
  width: 100%;
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
  padding: 20px 20px 40px 20px;
}

@media (max-width: 767px) {
  .carousel-container {
    scroll-behavior: auto !important;
  }
}

.carousel-container::-webkit-scrollbar {
  display: none; /* Hide scrollbar completely to maintain visual design */
}

.carousel-container.active {
  cursor: grabbing;
}

.carousel-track {
  display: flex;
  gap: 24px;
}

/* Product Card */
.product-card {
  width: 280px;
  flex-shrink: 0;
  background-color: var(--card-bg);
  border: 1px solid var(--card-border);
  position: relative;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-color);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.product-card-img-wrapper {
  position: relative;
  width: 100%;
  height: 320px;
  overflow: hidden;
  background-color: #0d0d0d;
}

.product-card-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 15px;
  transition: transform 0.8s ease;
}

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

.product-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: rgba(13, 13, 13, 0.85);
  border: 1px solid var(--accent-color);
  color: var(--accent-color);
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 10px;
  z-index: 2;
}

.product-card-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-card-collection {
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.product-card-title {
  font-family: var(--font-primary);
  font-size: 1.4rem;
  color: var(--accent-color);
  margin-bottom: 15px;
  font-weight: 400;
  transition: color 0.3s ease;
}

.product-card:hover .product-card-title {
  color: var(--accent-hover);
}

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

.product-card-price {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-color);
}

.product-card-btn {
  color: var(--accent-color);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: all 0.3s ease;
}

.product-card-btn:hover {
  color: var(--text-color);
  border-color: var(--text-color);
}

@media (min-width: 768px) {
  .product-card {
    width: 310px;
  }
  .product-card-img-wrapper {
    height: 350px;
  }
}

/* ==========================================
   HOMEPAGE: COLLECTION STRIPS
   ========================================== */
.collections-section {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.collections-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  width: 100%;
}

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

.collection-card {
  position: relative;
  background: linear-gradient(135deg, #111111, var(--card-undertone, #141414));
  border-radius: 8px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  min-height: 420px;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), inset 0 0 20px rgba(0,0,0,0.8);
}

/* Glowing gold border with subtle shimmer effect */
.collection-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: 8px;
  padding: 1px; /* border thickness */
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.2), rgba(201, 168, 76, 0.05) 40%, rgba(201, 168, 76, 0.4) 60%, rgba(201, 168, 76, 0.1));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 5;
  transition: background 0.4s ease;
}

.collection-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 20px var(--card-glow-color, rgba(201, 168, 76, 0.25));
}

.collection-card:hover::before {
  background: linear-gradient(135deg, var(--accent-color), rgba(201, 168, 76, 0.2) 40%, var(--accent-color) 70%, rgba(201, 168, 76, 0.3));
  animation: border-shimmer 3s infinite linear;
}

@keyframes border-shimmer {
  0% {
    filter: hue-rotate(0deg) brightness(1);
  }
  50% {
    filter: hue-rotate(5deg) brightness(1.3);
  }
  100% {
    filter: hue-rotate(0deg) brightness(1);
  }
}

/* Soft golden particle/shimmer animation floating in the background */
.card-particles-container {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.gold-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--accent-color);
  border-radius: 50%;
  opacity: 0;
  box-shadow: 0 0 6px var(--accent-color);
}

.gold-particle:nth-child(1) {
  left: 20%;
  bottom: -10px;
  animation: float-particle 7s infinite ease-in-out;
  animation-delay: 0.5s;
}

.gold-particle:nth-child(2) {
  left: 50%;
  bottom: -10px;
  animation: float-particle 9s infinite ease-in-out;
  animation-delay: 2s;
}

.gold-particle:nth-child(3) {
  left: 80%;
  bottom: -10px;
  animation: float-particle 8s infinite ease-in-out;
  animation-delay: 4s;
}

.gold-particle:nth-child(4) {
  left: 35%;
  bottom: -10px;
  animation: float-particle 11s infinite ease-in-out;
  animation-delay: 1.5s;
}

@keyframes float-particle {
  0% {
    transform: translateY(0) scale(1) translateX(0);
    opacity: 0;
  }
  20% {
    opacity: 0.5;
  }
  80% {
    opacity: 0.3;
  }
  100% {
    transform: translateY(-380px) scale(0.6) translateX(15px);
    opacity: 0;
  }
}

/* Shimmer background animation */
.card-shimmer-bg {
  position: absolute;
  top: 0; left: -100%; width: 50%; height: 100%;
  background: linear-gradient(to right, transparent, rgba(201, 168, 76, 0.03), transparent);
  transform: skewX(-25deg);
  pointer-events: none;
  z-index: 2;
  transition: left 0.6s ease;
}

.collection-card:hover .card-shimmer-bg {
  left: 150%;
  transition: left 1s ease-in-out;
}

/* Image wrapper and img optimization */
.collection-card-img-wrapper {
  width: 100%;
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  z-index: 3;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.collection-card-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain; /* displays bottle in full with no cropping */
  filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.7));
  transition: transform 0.4s ease;
}

.collection-card:hover .collection-card-img-wrapper {
  transform: scale(1.04);
}

/* Card content */
.collection-card-content {
  width: 100%;
  text-align: center;
  z-index: 4;
  margin-top: 15px;
}

.collection-card-name {
  font-family: var(--font-primary);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent-color);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
  transition: text-shadow 0.3s ease;
}

.collection-card:hover .collection-card-name {
  text-shadow: 0 0 10px rgba(201, 168, 76, 0.5);
}

/* Button wrapper and hover interaction */
.explore-btn-wrapper {
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.collection-card:hover .explore-btn-wrapper {
  opacity: 1;
  transform: translateY(0);
}

.btn-explore-gold {
  background: transparent;
  border: 1px solid var(--accent-color);
  color: var(--accent-color);
  padding: 8px 18px;
  font-family: var(--font-secondary);
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-explore-gold:hover {
  background: var(--accent-color);
  color: #000;
  box-shadow: 0 0 10px rgba(201, 168, 76, 0.4);
}

/* Responsive adjustment for Tablet */
@media (min-width: 768px) and (max-width: 1023px) {
  .collections-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }
}

/* Responsive adjustment for Mobile */
@media (max-width: 767px) {
  .collections-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .collection-card {
    min-height: 380px;
    padding: 20px;
  }

  .collection-card-img-wrapper {
    height: 220px;
  }
  
  .explore-btn-wrapper {
    opacity: 0.85;
    transform: translateY(0);
  }
}

/* ==========================================
   HOMEPAGE: BRAND AND FOUNDER (STORY)
   ========================================== */
.story-section {
  padding: 80px 20px;
  background-color: #080808;
  border-top: 1px solid rgba(201, 168, 76, 0.05);
}

.story-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

.story-img-wrapper {
  width: 100%;
  max-width: 480px;
  border: 1px solid var(--accent-color);
  padding: 10px;
  background: var(--bg-color);
  position: relative;
}

.story-img-wrapper::after {
  content: '';
  position: absolute;
  top: -15px;
  left: -15px;
  right: 15px;
  bottom: 15px;
  border: 1px solid rgba(201, 168, 76, 0.2);
  z-index: -1;
  pointer-events: none;
}

.story-img {
  width: 100%;
  object-fit: cover;
  filter: sepia(10%) contrast(105%) brightness(95%);
}

.story-content {
  width: 100%;
  max-width: 550px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.story-title {
  font-size: 2.2rem;
  margin-bottom: 25px;
  line-height: 1.2;
}

.story-copy {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.story-copy:last-of-type {
  margin-bottom: 30px;
}

.founder-signature {
  font-family: var(--font-secondary);
  font-style: italic;
  color: var(--accent-color);
  font-size: 1.15rem;
}

@media (min-width: 768px) {
  .story-section {
    padding: 100px 40px;
  }
  .story-container {
    gap: 50px;
  }
}

/* ==========================================
   HOMEPAGE: WHY KING REDOLENCE (VALUES)
   ========================================== */
.values-section {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-top: 50px;
}

.value-card {
  background-color: var(--card-bg);
  border: 1px solid var(--card-border);
  padding: 40px 30px;
  text-align: center;
  transition: all 0.4s ease;
}

.value-card:hover {
  border-color: var(--accent-color);
  transform: translateY(-5px);
  box-shadow: var(--gold-glow);
}

.value-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 25px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.15);
}

.value-icon svg {
  width: 28px;
  height: 28px;
  fill: var(--accent-color);
}

.value-title {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: var(--accent-color);
}

.value-description {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

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

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

/* ==========================================
   HOMEPAGE: WEAR GUIDE
   ========================================== */
.guide-section {
  padding: 80px 20px;
  background-color: #080808;
  border-top: 1px solid rgba(201, 168, 76, 0.05);
}

.guide-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column-reverse;
  gap: 50px;
}

.guide-content {
  flex: 1;
}

.guide-title {
  font-size: 2.2rem;
  margin-bottom: 35px;
}

.guide-steps {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.guide-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--card-border);
}

.guide-step:last-child {
  border-bottom: none;
}

.guide-num {
  font-family: var(--font-primary);
  font-size: 1.8rem;
  color: var(--accent-color);
  font-weight: 300;
  line-height: 1;
  background-color: rgba(201, 168, 76, 0.05);
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(201, 168, 76, 0.2);
  flex-shrink: 0;
}

.guide-text-box {
  display: flex;
  flex-direction: column;
}

.guide-step-title {
  font-family: var(--font-primary);
  font-size: 1.3rem;
  color: var(--text-color);
  margin-bottom: 6px;
  font-weight: 400;
}

.guide-step-desc {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.guide-image-side {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.guide-img-wrapper {
  width: 100%;
  max-width: 450px;
  border: 1px solid var(--accent-color);
  padding: 10px;
  background: var(--bg-color);
  position: relative;
}

.guide-img-wrapper::after {
  content: '';
  position: absolute;
  top: 15px;
  left: 15px;
  right: -15px;
  bottom: -15px;
  border: 1px solid rgba(201, 168, 76, 0.2);
  z-index: -1;
  pointer-events: none;
}

.guide-img {
  width: 100%;
  object-fit: cover;
  filter: sepia(15%) brightness(90%) contrast(105%);
}

@media (min-width: 768px) {
  .guide-container {
    flex-direction: row;
    gap: 80px;
  }
  .guide-title {
    font-size: 2.8rem;
  }
}

/* ==========================================
   HOMEPAGE: MARKETING TEASERS (QUIZ & RESELLER)
   ========================================== */
.teaser-split-section {
  display: flex;
  flex-direction: column;
}

.teaser-block {
  flex: 1;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 380px;
}

.teaser-block::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(rgba(13,13,13,0.92) 0%, rgba(13,13,13,0.92) 100%);
  z-index: 1;
}

.teaser-quiz-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: url('assets/chocolate_musk.jpg') no-repeat center center;
  background-size: cover;
  z-index: 0;
}

.teaser-business-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: url('assets/dunhill.jpg') no-repeat center center;
  background-size: cover;
  z-index: 0;
}

.teaser-content {
  position: relative;
  z-index: 2;
  max-width: 500px;
}

.teaser-title {
  font-size: 2rem;
  margin-bottom: 15px;
  color: var(--accent-color);
}

.teaser-desc {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 30px;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .teaser-split-section {
    flex-direction: row;
  }
  .teaser-block {
    min-height: 450px;
    padding: 100px 40px;
  }
  .teaser-title {
    font-size: 2.4rem;
  }
}

/* ==========================================
   HOMEPAGE: TESTIMONIALS (SCREENSHOT CAROUSEL)
   ========================================== */
.testimonials-section {
  padding: 80px 20px;
  background-color: #080808;
  border-top: 1px solid rgba(201, 168, 76, 0.05);
}

.testimonials-carousel-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
}

@media (max-width: 767px) {
  .testimonials-carousel-container {
    padding: 0 45px;
  }
}

.testimonials-carousel-viewport {
  width: 100%;
  overflow: hidden;
  padding: 15px 0;
}

.testimonials-carousel-track {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  transition: transform 1.4s cubic-bezier(0.25, 1, 0.3, 1);
  width: 100%;
}

@media (min-width: 768px) {
  .testimonials-carousel-track {
    gap: 20px;
  }
}

.testimonial-slide {
  flex-shrink: 0;
  width: calc((100% - 24px) / 3);
  display: flex;
  justify-content: center;
}

@media (min-width: 768px) {
  .testimonial-slide {
    width: calc((100% - 40px) / 3);
  }
}

.chat-screenshot-wrapper {
  position: relative;
  width: 100%;
  cursor: pointer;
  overflow: hidden;
  border: 2px solid var(--accent-color);
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  background-color: transparent;
}

.chat-screenshot {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
  transition: transform 0.4s ease;
}

.chat-screenshot-wrapper:hover .chat-screenshot {
  transform: scale(1.03);
}

.chat-screenshot-wrapper::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.08) 0%, rgba(0,0,0,0) 80%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.chat-screenshot-wrapper:hover::after {
  opacity: 1;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--card-border);
  background-color: rgba(22, 22, 22, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  transition: all 0.3s ease;
}

.carousel-arrow svg {
  fill: var(--accent-color);
  transition: transform 0.3s ease, fill 0.3s ease;
}

.carousel-arrow:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  box-shadow: var(--gold-glow);
}

.carousel-arrow:hover svg {
  fill: #0D0D0D;
}

.prev-arrow {
  left: 0;
}

.next-arrow {
  right: 0;
}

.prev-arrow:hover svg {
  transform: translateX(-2px);
}

.next-arrow:hover svg {
  transform: translateX(2px);
}

/* ==========================================
   LIGHTBOX MODAL FOR TESTIMONIALS
   ========================================== */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(5, 5, 5, 0.95);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.lightbox-modal.open {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border: 1px solid var(--accent-color);
  box-shadow: 0 0 40px rgba(201, 168, 76, 0.25);
  border-radius: 8px;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: var(--text-color);
  font-size: 2.8rem;
  cursor: pointer;
  transition: color 0.3s ease, transform 0.3s ease;
  z-index: 10001;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-close:hover {
  color: var(--accent-color);
  transform: rotate(90deg);
}

/* ==========================================
   FOOTER
   ========================================== */
footer {
  background-color: #050505;
  border-top: 1px solid rgba(201, 168, 76, 0.1);
  padding: 80px 20px 40px 20px;
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-logo {
  font-family: var(--font-primary);
  font-size: 2rem;
  letter-spacing: 4px;
  color: var(--accent-color);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-tagline {
  font-family: var(--font-secondary);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 40px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 30px;
  list-style: none;
  margin-bottom: 45px;
  max-width: 700px;
}

.footer-nav-link {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
}

.footer-nav-link:hover {
  color: var(--accent-color);
}

.footer-socials {
  display: flex;
  gap: 25px;
  margin-bottom: 50px;
}

.social-icon-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.social-icon-link svg {
  width: 18px;
  height: 18px;
  fill: var(--accent-color);
  transition: fill 0.3s ease;
}

.social-icon-link:hover {
  border-color: var(--accent-color);
  box-shadow: var(--gold-glow);
  transform: translateY(-3px);
}

.footer-divider {
  width: 100%;
  height: 1px;
  background-color: rgba(201, 168, 76, 0.08);
  margin-bottom: 35px;
}

.footer-bottom {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-legal-links {
  display: flex;
  justify-content: center;
  gap: 25px;
  list-style: none;
}

.legal-link {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.legal-link:hover {
  color: var(--accent-color);
}

.copyright-text {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

.disclaimer-text {
  font-family: var(--font-body);
  font-size: 0.65rem;
  color: rgba(181, 178, 172, 0.45);
  line-height: 1.6;
  max-width: 900px;
  margin: 10px auto 0 auto;
  text-align: justify;
  text-align-last: center;
}

/* ==========================================
   BACK TO TOP BUTTON
   ========================================== */
#back-to-top {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 46px;
  height: 46px;
  background-color: var(--card-bg);
  border: 1px solid var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

#back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

#back-to-top svg {
  width: 16px;
  height: 16px;
  fill: var(--accent-color);
  transition: transform 0.3s ease;
}

#back-to-top:hover {
  background-color: var(--accent-color);
  box-shadow: var(--gold-glow);
}

#back-to-top:hover svg {
  fill: #0D0D0D;
  transform: translateY(-3px);
}

/* ==========================================
   SHOP VIEW
   ========================================== */
.shop-hero {
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(to bottom, #0D0D0D, #080808);
  border-bottom: 1px solid rgba(201, 168, 76, 0.05);
}

.shop-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px 80px 20px;
}

/* Shop Category Filters */
.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
}

.filter-tab-btn {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 10px 20px;
  border: 1px solid var(--card-border);
  cursor: pointer;
  transition: all 0.3s ease;
  min-height: 44px; /* Tap targets */
}

.filter-tab-btn.active, .filter-tab-btn:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
  background-color: rgba(201, 168, 76, 0.03);
}

/* Shop Grid - Mobile First: Single Column Stack! */
.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

@media (min-width: 480px) {
  /* Keep it single column on mobile portrait, transition to 2 columns on tablet/landscape */
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

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

/* Custom Product Card for Shop with sizes options */
.shop-product-card {
  background-color: var(--card-bg);
  border: 1px solid var(--card-border);
  display: flex;
  flex-direction: column;
  transition: all 0.4s ease;
}

.shop-product-card:hover {
  border-color: var(--accent-color);
  transform: translateY(-5px);
  box-shadow: var(--gold-glow);
}

.shop-product-img-box {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
  background-color: #0d0d0d;
}

.shop-product-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 15px;
  transition: transform 0.6s ease;
}

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

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

.shop-product-tag {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 5px;
}

.shop-product-title {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  color: var(--text-color);
  font-weight: 400;
  margin-bottom: 10px;
}

.shop-product-desc {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 20px;
}

/* Product Size Selections */
.product-options {
  margin-top: auto;
}

.size-selector-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent-color);
  margin-bottom: 10px;
  display: block;
}

.size-options-container {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.size-radio-label {
  flex: 1;
  text-align: center;
  border: 1px solid var(--card-border);
  padding: 8px 5px;
  font-size: 0.75rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.size-radio-input {
  display: none;
}

.size-radio-input:checked + .size-radio-label {
  border-color: var(--accent-color);
  color: var(--accent-color);
  background-color: rgba(201, 168, 76, 0.05);
}

.shop-product-action {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid var(--card-border);
}

.shop-product-price {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text-color);
}

.shop-product-price::before {
  content: '₦'; /* Naira for local flavor or Currency symbol */
  margin-right: 2px;
}

.shop-add-btn {
  background-color: var(--accent-color);
  color: #0D0D0D;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 10px 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  min-height: 40px;
}

.shop-add-btn:hover {
  background-color: transparent;
  color: var(--accent-color);
  box-shadow: 0 0 10px rgba(201, 168, 76, 0.2);
  outline: 1px solid var(--accent-color);
}

/* ==========================================
   FIND MY SCENT: INTERACTIVE QUIZ
   ========================================== */
.quiz-view-container {
  max-width: 650px;
  margin: 40px auto 80px auto;
  padding: 0 20px;
}

.quiz-card {
  background-color: var(--card-bg);
  border: 1px solid var(--card-border);
  padding: 40px 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.quiz-progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  background-color: var(--accent-color);
  width: 0%;
  transition: width 0.4s ease;
}

.quiz-step-indicator {
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-color);
  margin-bottom: 20px;
}

.quiz-question {
  font-family: var(--font-primary);
  font-size: 2rem;
  line-height: 1.3;
  margin-bottom: 35px;
}

.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.quiz-option-btn {
  border: 1px solid var(--card-border);
  padding: 16px 20px;
  text-align: left;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  min-height: 54px; /* Large mobile tap targets */
  display: flex;
  align-items: center;
  position: relative;
}

.quiz-option-btn::before {
  content: '';
  width: 8px;
  height: 8px;
  border: 1px solid var(--text-muted);
  border-radius: 50%;
  margin-right: 15px;
  display: inline-block;
  transition: all 0.3s ease;
}

.quiz-option-btn:hover {
  border-color: var(--accent-color);
  background-color: rgba(201, 168, 76, 0.02);
}

.quiz-option-btn:hover::before {
  border-color: var(--accent-color);
  background-color: var(--accent-color);
  box-shadow: var(--gold-glow);
}

/* Loading/Blending Screen */
.quiz-loading {
  display: none;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 2px solid rgba(201, 168, 76, 0.1);
  border-top-color: var(--accent-color);
  border-radius: 50%;
  animation: spin 1s infinite linear;
  margin-bottom: 30px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.loading-text {
  font-family: var(--font-secondary);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--text-color);
  margin-bottom: 10px;
}

/* Result Card */
.quiz-result {
  display: none;
  flex-direction: column;
  align-items: center;
  animation: fadeIn 0.8s ease forwards;
}

.result-perfume-badge {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--accent-color);
  border: 1px solid var(--accent-color);
  padding: 6px 12px;
  letter-spacing: 2px;
  margin-bottom: 25px;
}

.result-perfume-title {
  font-family: var(--font-primary);
  font-size: 2.8rem;
  color: var(--text-color);
  margin-bottom: 15px;
  line-height: 1.1;
}

.result-perfume-desc {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 35px;
}

.result-actions {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
  max-width: 320px;
}

.result-actions .btn-gold,
.result-actions .btn-outline {
  width: 100%;
}

@media (min-width: 480px) {
  .result-actions {
    flex-direction: row;
    max-width: 450px;
  }
  .result-actions .btn-gold,
  .result-actions .btn-outline {
    flex: 1;
  }
}

/* ==========================================
   START YOUR BUSINESS: RESELLER PAGE
   ========================================== */
.reseller-hero {
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(to bottom, #0D0D0D, #080808);
}

.reseller-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 20px 80px 20px;
}

.reseller-intro {
  max-width: 700px;
  margin: 0 auto 60px auto;
  text-align: center;
}

.reseller-intro h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.reseller-intro p {
  color: var(--text-muted);
  line-height: 1.8;
}

/* Packages Grid - Stacked on Mobile, columns on desktop */
.packages-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-bottom: 80px;
}

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

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

.package-card {
  background-color: var(--card-bg);
  border: 1px solid var(--card-border);
  padding: 40px 25px;
  text-align: center;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.4s ease;
}

.package-card.popular {
  border-color: var(--accent-color);
}

.package-card.popular::before {
  content: 'Best Value';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--accent-color);
  color: #0D0D0D;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 4px 10px;
}

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

.package-name {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: var(--text-color);
}

.package-price {
  font-family: var(--font-body);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--accent-color);
  margin-bottom: 25px;
}

.package-price span {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-muted);
}

.package-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 35px;
  text-align: left;
  flex-grow: 1;
}

.package-features li {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 10px;
}

.package-features li svg {
  width: 14px;
  height: 14px;
  fill: var(--accent-color);
  flex-shrink: 0;
}

.package-btn {
  width: 100%;
}

/* Inquiry Reseller Form */
.reseller-form-container {
  max-width: 650px;
  margin: 0 auto;
  background-color: var(--card-bg);
  border: 1px solid var(--card-border);
  padding: 40px 30px;
}

.reseller-form-title {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.reseller-form-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 35px;
}

/* Premium Form Fields styling */
.form-group {
  margin-bottom: 25px;
}

.form-label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent-color);
  margin-bottom: 10px;
}

.form-input, .form-textarea, .form-select {
  width: 100%;
  background-color: var(--input-bg);
  border: 1px solid var(--card-border);
  padding: 14px 18px;
  color: var(--text-color);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.3s ease;
  min-height: 48px; /* Safe mobile tap target */
}

.form-input:focus, .form-textarea:focus, .form-select:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 5px rgba(201, 168, 76, 0.1);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.form-submit-btn {
  width: 100%;
  margin-top: 10px;
}

/* Form success modal/toast state */
.form-success-message {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.form-success-message svg {
  width: 60px;
  height: 60px;
  fill: var(--accent-color);
  margin-bottom: 20px;
}

.form-success-title {
  font-size: 1.8rem;
  color: var(--accent-color);
  margin-bottom: 15px;
}

.form-success-desc {
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================
   PRICE LIST VIEW (INTERACTIVE LUXURY SPREADSHEET)
   ========================================== */
.pricelist-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px 80px 20px;
}

.pricelist-controls {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 30px;
}

.search-bar-wrapper {
  position: relative;
  width: 100%;
}

.search-input {
  width: 100%;
  background-color: var(--card-bg);
  border: 1px solid var(--card-border);
  padding: 14px 44px 14px 20px;
  color: var(--text-color);
  font-size: 0.9rem;
  min-height: 48px;
}

.search-input:focus {
  outline: none;
  border-color: var(--accent-color);
}

.search-icon {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  fill: var(--text-muted);
}

/* Interactive Table Wrapper to allow horizontal scroll on mobile */
.table-responsive-wrapper {
  width: 100%;
  overflow-x: auto;
  border: 1px solid var(--card-border);
}

.pricelist-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  min-width: 600px; /* Forces scroll on small devices so it fits */
}

.pricelist-table th {
  background-color: #111;
  font-family: var(--font-primary);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--accent-color);
  letter-spacing: 1px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--card-border);
  text-transform: uppercase;
}

.pricelist-table td {
  padding: 16px 20px;
  font-size: 0.85rem;
  border-bottom: 1px solid var(--card-border);
  font-family: var(--font-body);
}

.pricelist-table tr {
  transition: background-color 0.3s ease;
}

.pricelist-table tr:hover {
  background-color: rgba(201, 168, 76, 0.02);
}

.pricelist-status {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-weight: 500;
  font-size: 0.75rem;
  text-transform: uppercase;
}

.status-instock {
  color: var(--accent-color);
}

.status-low {
  color: #c9844c;
}

.status-out {
  color: #8a2e2e;
}

@media (min-width: 768px) {
  .pricelist-controls {
    flex-direction: row;
    justify-content: space-between;
  }
  .search-bar-wrapper {
    max-width: 320px;
  }
}

/* ==========================================
   ABOUT & CONTACT VIEWS
   ========================================== */
.about-section {
  padding: 40px 20px 80px 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.about-hero-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
}

.about-text h2 {
  font-size: 2.2rem;
  margin-bottom: 25px;
}

.about-text p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.about-highlights-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-bottom: 60px;
}

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

.about-highlight-card {
  background-color: var(--card-bg);
  border: 1px solid var(--card-border);
  padding: 30px 20px;
  text-align: center;
}

.about-highlight-num {
  font-family: var(--font-primary);
  font-size: 2.5rem;
  color: var(--accent-color);
  font-weight: 300;
  margin-bottom: 5px;
}

.about-highlight-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 1.5px;
}

/* Contact Details Split Grid */
.contact-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 20px 80px 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
}

@media (min-width: 768px) {
  .contact-container {
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
  }
}

.contact-info-column {
  display: flex;
  flex-direction: column;
}

.contact-info-title {
  font-size: 2.2rem;
  margin-bottom: 25px;
}

.contact-info-desc {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 40px;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-method-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.contact-method-icon {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(201, 168, 76, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(201, 168, 76, 0.03);
  flex-shrink: 0;
}

.contact-method-icon svg {
  width: 18px;
  height: 18px;
  fill: var(--accent-color);
}

.contact-method-label {
  font-size: 0.75rem;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 5px;
}

.contact-method-value {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-color);
}

/* ==========================================
   CART DRAWER & SLIDE-OUT PANEL
   ========================================== */
.cart-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1200;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.cart-drawer-overlay.open {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 440px;
  height: 100%;
  background-color: var(--bg-color);
  border-left: 1px solid rgba(201, 168, 76, 0.15);
  z-index: 1250;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.8);
  display: flex;
  flex-direction: column;
  transition: right 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

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

.cart-drawer-header {
  padding: 24px;
  border-bottom: 1px solid var(--card-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-drawer-title {
  font-family: var(--font-primary);
  font-size: 1.6rem;
  color: var(--accent-color);
  font-weight: 400;
}

.cart-close-btn {
  cursor: pointer;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-close-btn svg {
  width: 18px;
  height: 18px;
  stroke: var(--accent-color);
  stroke-width: 1.5;
}

.cart-items-container {
  flex-grow: 1;
  overflow-y: auto;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Empty Cart State */
.cart-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
}

.cart-empty-state svg {
  width: 50px;
  height: 50px;
  fill: none;
  stroke: var(--card-border);
  stroke-width: 1;
  margin-bottom: 20px;
}

.cart-empty-title {
  font-family: var(--font-primary);
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.cart-empty-desc {
  color: var(--text-muted);
  font-size: 0.85rem;
  max-width: 250px;
  margin-bottom: 25px;
}

/* Cart Item Card */
.cart-item {
  display: flex;
  gap: 15px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--card-border);
}

.cart-item-img-box {
  width: 80px;
  height: 80px;
  overflow: hidden;
  background-color: #0d0d0d;
  border: 1px solid var(--card-border);
  flex-shrink: 0;
}

.cart-item-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 5px;
}

.cart-item-info {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.cart-item-title {
  font-family: var(--font-primary);
  font-size: 1.15rem;
  color: var(--text-color);
  font-weight: 400;
  margin-bottom: 3px;
}

.cart-item-meta {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.cart-item-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

/* Qty Controls */
.qty-controls {
  display: flex;
  align-items: center;
  border: 1px solid var(--card-border);
}

.qty-btn {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.85rem;
}

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

.qty-num {
  font-size: 0.85rem;
  width: 24px;
  text-align: center;
}

.cart-item-price {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
}

.cart-item-price::before {
  content: '₦';
}

.cart-item-remove-btn {
  color: #8a2e2e;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  margin-top: 5px;
  align-self: flex-start;
}

.cart-drawer-footer {
  padding: 24px;
  border-top: 1px solid var(--card-border);
  background-color: #111;
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.cart-summary-row.total {
  font-family: var(--font-primary);
  font-size: 1.4rem;
  color: var(--text-color);
  margin-bottom: 24px;
  border-top: 1px solid var(--card-border);
  padding-top: 12px;
}

.cart-total-price::before {
  content: '₦';
  margin-right: 2px;
}

.checkout-btn {
  width: 100%;
}

/* ==========================================
   CHECKOUT PAGE
   ========================================== */
.checkout-container {
  max-width: 1100px;
  margin: 40px auto 80px auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 992px) {
  .checkout-container {
    grid-template-columns: 1.3fr 1fr;
    gap: 60px;
  }
}

.checkout-column-form {
  background-color: var(--card-bg);
  border: 1px solid var(--card-border);
  padding: 40px 30px;
}

.checkout-column-summary {
  background-color: var(--card-bg);
  border: 1px solid var(--card-border);
  padding: 30px 25px;
  height: fit-content;
}

.checkout-section-title {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  color: var(--accent-color);
  margin-bottom: 25px;
  border-bottom: 1px solid var(--card-border);
  padding-bottom: 10px;
  text-transform: uppercase;
}

.checkout-payment-box {
  background-color: #0d0d0d;
  border: 1px solid var(--card-border);
  padding: 20px;
  margin-top: 20px;
}

.bank-details-card {
  border-left: 2px solid var(--accent-color);
  padding-left: 15px;
  margin-top: 15px;
}

.bank-detail-row {
  margin-bottom: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.bank-detail-row strong {
  color: var(--text-color);
}

/* ==========================================
   ACCOUNT & MOCK DASHBOARD VIEW
   ========================================== */
.account-container {
  max-width: 1100px;
  margin: 40px auto 80px auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

@media (min-width: 992px) {
  .account-container {
    grid-template-columns: 280px 1fr;
    gap: 40px;
  }
}

.account-sidebar {
  background-color: var(--card-bg);
  border: 1px solid var(--card-border);
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  height: fit-content;
}

.account-profile-info {
  text-align: center;
  padding-bottom: 25px;
  border-bottom: 1px solid var(--card-border);
  margin-bottom: 25px;
}

.account-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: rgba(201, 168, 76, 0.08);
  border: 1px solid var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px auto;
  font-family: var(--font-primary);
  font-size: 1.8rem;
  color: var(--accent-color);
}

.account-name {
  font-family: var(--font-primary);
  font-size: 1.3rem;
}

.account-tier {
  font-size: 0.65rem;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 5px;
}

.account-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.account-nav-btn {
  text-align: left;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  cursor: pointer;
  padding: 8px 0;
  border-bottom: 1px solid transparent;
  width: 100%;
}

.account-nav-btn.active, .account-nav-btn:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.account-main-content {
  background-color: var(--card-bg);
  border: 1px solid var(--card-border);
  padding: 40px 30px;
}

/* ==========================================
   GENERIC ANIMATIONS & SCROLL FADES
   ========================================== */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

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

/* ==========================================
   HERO CAROUSEL STYLES
   ========================================== */
.hero-carousel-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background-color: #000;
}

.hero-carousel {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 2.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  overflow: hidden;
}

.carousel-slide.active {
  opacity: 1;
  z-index: 2;
}

/* Background image holder for high-performance Ken Burns transform */
.slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 0;
  transform: scale(1.01);
  pointer-events: none;
}

/* Slide 1 and Slide 2 - adjust focal points to center 60px and anchor zoom to prevent forehead cropping */
.carousel-slide:nth-child(1) .slide-bg {
  background-position: center 60px;
  transform-origin: center top;
}

.carousel-slide:nth-child(2) .slide-bg {
  background-position: center 60px;
  transform-origin: center top;
}

/* Slide 3 is the Brand Logo - contain it on all screens so it never crops */
.carousel-slide:nth-child(3) .slide-bg {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* Alternate Ken Burns animations for a rich, organic campaign feel */
.carousel-slide:nth-child(odd).active .slide-bg {
  animation: subtleKenBurnsScaleUp 24s infinite alternate ease-in-out;
}

.carousel-slide:nth-child(even).active .slide-bg {
  animation: subtleKenBurnsScaleDown 24s infinite alternate ease-in-out;
}

@keyframes subtleKenBurnsScaleUp {
  0% {
    transform: scale(1.01);
  }
  100% {
    transform: scale(1.025);
  }
}

@keyframes subtleKenBurnsScaleDown {
  0% {
    transform: scale(1.025);
  }
  100% {
    transform: scale(1.01);
  }
}

.carousel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.1) 0%, rgba(13, 13, 13, 0.85) 100%);
  z-index: 1;
}

/* Desktop Split Layout: text left, photo right */
@media (min-width: 992px) {
  .carousel-slide {
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    padding: 0 8% 0 10%;
  }

  .carousel-slide .hero-content {
    max-width: 45%;
    text-align: left;
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    margin: 0;
  }

  .carousel-slide .hero-content .btn-gold {
    align-self: flex-start;
  }

  .slide-bg {
    left: 50%;
    width: 50%;
    height: 100%;
  }

  .carousel-overlay {
    background: linear-gradient(to right, #000000 0%, rgba(0, 0, 0, 0.95) 30%, rgba(0, 0, 0, 0.4) 60%, rgba(0, 0, 0, 0) 100%);
  }
}

.carousel-slide .hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  transform: translateY(20px);
  opacity: 0;
  transition: transform 1.5s cubic-bezier(0.25, 1, 0.5, 1) 0.8s, opacity 1.5s cubic-bezier(0.25, 1, 0.5, 1) 0.8s;
}

.carousel-slide.active .hero-content {
  transform: translateY(0);
  opacity: 1;
}

/* ==========================================
   PRICING AND DISCOUNT SYSTEM STYLES
   ========================================== */
.shop-product-price-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

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

.discounted-price {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--accent-color);
}

.discount-badge {
  font-size: 0.65rem;
  background-color: rgba(201, 168, 76, 0.1);
  color: var(--accent-color);
  border: 1px solid var(--accent-color);
  padding: 2px 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-block;
  vertical-align: middle;
}

/* ==========================================
   INDIVIDUAL PRODUCT PAGE
   ========================================== */
.product-page-container {
  max-width: 1100px;
  margin: 40px auto 80px auto;
  padding: 0 20px;
}

.product-page-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

@media (min-width: 768px) {
  .product-page-grid {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }
}

.product-image-section {
  border: 1px solid var(--card-border);
  background: var(--card-bg);
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-image-section img {
  width: 100%;
  max-height: 500px;
  object-fit: contain;
  padding: 20px;
}

.product-info-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.product-meta-tags {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.product-name {
  font-family: var(--font-primary);
  font-size: 2.8rem;
  color: var(--accent-color);
  font-weight: 300;
  margin-bottom: 10px;
  line-height: 1.1;
}

.product-fragrance-family {
  font-family: var(--font-secondary);
  font-style: italic;
  font-size: 1.10rem;
  color: var(--text-color);
  margin-bottom: 15px;
}

.pricing-tier-badge {
  font-size: 0.7rem;
  color: var(--accent-color);
  border: 1px solid var(--accent-color);
  padding: 4px 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  align-self: flex-start;
  margin-bottom: 25px;
  font-weight: 500;
}

.product-description {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 25px;
}

.product-best-for {
  font-family: var(--font-secondary);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--accent-color);
  margin-bottom: 30px;
  border-left: 2px solid var(--accent-color);
  padding-left: 15px;
}

.detail-size-section {
  margin-bottom: 30px;
}

.detail-size-options {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}

.size-pill-btn {
  border: 1px solid var(--card-border);
  color: var(--text-muted);
  padding: 10px 18px;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.size-pill-btn.active, .size-pill-btn:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: #0D0D0D;
  font-weight: 600;
  box-shadow: var(--gold-glow);
}

.detail-price-section {
  margin-bottom: 30px;
  border-top: 1px solid var(--card-border);
  padding-top: 20px;
}

.detail-add-btn {
  width: 100%;
}

@media (min-width: 768px) {
  .detail-add-btn {
    width: auto;
    padding-left: 45px;
    padding-right: 45px;
  }
}

/* Related Creations Section */
.related-products-section {
  border-top: 1px solid rgba(201, 168, 76, 0.08);
  padding-top: 50px;
}

.related-title {
  font-size: 2.2rem;
  margin-bottom: 30px;
  text-align: center;
}

.related-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

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

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

/* ==========================================
   FAQ PAGE ACCORDION STYLES
   ========================================== */
.faq-container {
  max-width: 800px;
  margin: 40px auto 80px auto;
  padding: 0 20px;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  background-color: var(--card-bg);
  border: 1px solid var(--card-border);
  transition: border-color 0.3s ease;
}

.faq-item:hover {
  border-color: var(--accent-color);
}

.faq-question {
  width: 100%;
  padding: 20px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  background: none;
  border: none;
  color: var(--text-color);
}

.faq-question svg {
  fill: var(--accent-color);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question svg {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
  padding: 0 25px;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  transition: max-height 0.4s cubic-bezier(0.95, 0.05, 0.795, 0.035);
  padding-bottom: 25px;
}

.faq-answer p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ==========================================
   PRICE LIST COLUMN STYLING
   ========================================== */
@media (min-width: 992px) {
  .pricelist-content-wrapper {
    grid-template-columns: 1fr 1.3fr !important;
    gap: 50px !important;
  }
}

/* ==========================================
   RESELLER REGISTRATION MODAL
   ========================================== */
.reseller-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.reseller-modal.open {
  opacity: 1;
  visibility: visible;
}

.reseller-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(5, 5, 5, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.reseller-modal-content {
  position: relative;
  background-color: var(--card-bg, #111);
  border: 1px solid var(--accent-color, #C9A84C);
  width: 90%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px 30px;
  z-index: 10001;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
  border-radius: 4px;
}

.reseller-modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  color: var(--text-color, #fff);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  transition: color 0.3s;
}

.reseller-modal-close:hover {
  color: var(--accent-color, #C9A84C);
}

.reseller-modal-step {
  display: none;
}

.reseller-modal-step.active {
  display: block;
}

.modal-title {
  font-family: var(--font-primary);
  font-size: 1.8rem;
  color: var(--accent-color, #C9A84C);
  text-transform: uppercase;
  margin-bottom: 15px;
  text-align: center;
  letter-spacing: 1px;
}

.modal-subtitle {
  font-size: 0.9rem;
  color: var(--text-muted, #888);
  margin-bottom: 25px;
  text-align: center;
  line-height: 1.6;
}
