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

/* ==========================================================================
   DESIGN SYSTEM VARIABLES
   ========================================================================== */
:root {
  /* Colors */
  --bg-cream: #FAF7F2;
  --bg-cream-dark: #F2ECE0;
  --bg-dark: #121513;
  --text-dark: #1B1E1C;
  --text-muted: #5E6460;
  --text-light: #FAF7F2;
  
  /* Heritage Colors */
  --tartan-red: #A6192E;
  --tartan-blue: #162B4C;
  --highland-green: #1E3F20;
  --heather-purple: #70536C;
  --whiskey-amber: #C58C3E;
  --whiskey-gold: #D4AF37;
  
  /* Fonts */
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Montserrat', sans-serif;
  
  /* Layout */
  --max-width: 1280px;
  --header-height: 80px;
  
  /* Transitions */
  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: all 0.2s ease;
}

/* Subtle fabric grain overlay */
.grain-overlay {
  position: relative;
}
.grain-overlay::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.015;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  z-index: 2;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-cream);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.2;
}

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

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

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

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-cream-dark);
}
::-webkit-scrollbar-thumb {
  background: var(--highland-green);
  border: 2px solid var(--bg-cream-dark);
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--tartan-red);
}

/* Utility Classes */
.container {
  width: 90%;
  max-width: var(--max-width);
  margin: 0 auto;
}

.text-center { text-align: center; }
.italic { font-style: italic; }

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

.btn-premium {
  display: inline-block;
  padding: 14px 32px;
  background-color: var(--text-dark);
  color: var(--text-light);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1px solid var(--text-dark);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--highland-green);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: var(--transition-smooth);
  z-index: -1;
}

.btn-premium:hover {
  color: var(--text-light);
  border-color: var(--highland-green);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-premium:hover::before {
  transform: scaleY(1);
}

.btn-outline {
  display: inline-block;
  padding: 13px 31px;
  background-color: transparent;
  color: var(--text-dark);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1.5px solid var(--text-dark);
  position: relative;
  z-index: 1;
}

.btn-outline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: var(--text-dark);
  transition: var(--transition-smooth);
  z-index: -1;
}

.btn-outline:hover {
  color: var(--text-light);
}

.btn-outline:hover::before {
  width: 100%;
}

/* ==========================================================================
   NAVIGATION
   ========================================================================== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 100;
  transition: var(--transition-smooth);
}

header.scrolled {
  background-color: rgba(250, 247, 242, 0.9);
  backdrop-filter: blur(10px);
  height: 70px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(28, 28, 28, 0.05);
}

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


.logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-shield {
  width: 40px;        /* adjust size as needed */
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  overflow: hidden;   /* ensures clean edges */
}

.logo-shield img {
  width: 100%;
  height: 100%;
  object-fit: contain;   /* keeps proportions */
  display: block;
}

.logo-text {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--text-dark);
}

nav ul {
  display: flex;
  list-style: none;
  gap: 32px;
}

nav a {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  position: relative;
  padding: 6px 0;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background-color: var(--highland-green);
  transition: var(--transition-fast);
}

nav a:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-btn {
  font-size: 1.2rem;
  color: var(--text-dark);
  position: relative;
}

.nav-actions button[aria-label="Search"] {
  display: none;
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background-color: var(--tartan-red);
  color: var(--text-light);
  font-size: 0.65rem;
  font-family: var(--font-sans);
  font-weight: 700;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 24px;
}

.hamburger span {
  width: 100%;
  height: 2px;
  background-color: var(--text-dark);
  transition: var(--transition-fast);
}

@media (max-width: 900px) {
  nav {
    display: none;
  }
  .hamburger {
    display: flex;
  }
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--text-light);
}

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

.hero-bg-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(18, 21, 19, 0.4) 0%,
    rgba(18, 21, 19, 0.7) 100%
  );
  z-index: 2;
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: zoomHero 20s infinite alternate ease-in-out;
}

@keyframes zoomHero {
  0% { transform: scale(1.03) translate(0, 0); }
  100% { transform: scale(1.1) translate(0, -10px); }
}

.hero .container {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  height: 100%;
  padding-top: var(--header-height);
}

@media (max-width: 768px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.hero-content {
  animation: fadeInUp 1.2s cubic-bezier(0.19, 1, 0.22, 1) forwards;
  opacity: 0;
  transform: translateY(30px);
}

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

.hero-label {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-weight: 600;
  color: var(--whiskey-gold);
  margin-bottom: 20px;
  display: block;
}

.hero-title {
  font-size: clamp(3rem, 6vw, 4.8rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-title span {
  font-family: var(--font-serif);
  font-weight: 600;
  font-style: italic;
  color: var(--text-light);
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-family: var(--font-serif);
  font-weight: 300;
  color: rgba(250, 247, 242, 0.85);
  margin-bottom: 40px;
  max-width: 540px;
  line-height: 1.5;
}

.hero-ctas {
  display: flex;
  gap: 20px;
}

@media (max-width: 768px) {
  .hero-ctas {
    justify-content: center;
  }
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.8;
  animation: pulseScroll 2s infinite ease-in-out;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background-color: var(--text-light);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background-color: var(--whiskey-gold);
  animation: scrollDown 2s infinite cubic-bezier(0.19, 1, 0.22, 1);
}

@keyframes scrollDown {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(200%); }
}

@keyframes pulseScroll {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

/* ==========================================================================
   BRAND STORY SECTION
   ========================================================================== */
.brand-story {
  background-color: var(--bg-cream);
  overflow: hidden;
}

.brand-story .container {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}

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

.story-visual {
  position: relative;
}

.story-img-main {
  width: 100%;
  height: 500px;
  object-fit: cover;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

.story-img-badge {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 180px;
  height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  color: var(--text-light);
  padding: 24px;
  text-align: center;
  box-shadow: 0 15px 30px rgba(166, 25, 46, 0.2);
}

@media (max-width: 600px) {
  .story-img-badge {
    bottom: -15px;
    right: -15px;
    width: 130px;
    height: 130px;
    font-size: 0.8rem;
  }
}

.story-img-badge .badge-year {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.story-img-badge .badge-text {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-top: 5px;
}

.story-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--tartan-red);
  margin-bottom: 16px;
  display: block;
}

.section-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 30px;
}

.section-title span {
  font-style: italic;
  font-family: var(--font-serif);
}

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

.story-signature {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 10px;
}

.signature-img {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 600;
  font-style: italic;
  color: var(--highland-green);
}

.signature-title {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

/* ==========================================================================
   SCENT COLLECTIONS
   ========================================================================== */
.scent-collections {
  background-color: var(--bg-cream-dark);
}

.collections-header {
  max-width: 680px;
  margin: 0 auto 60px;
}

.collections-nav {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 60px;
  border-bottom: 1px solid rgba(28, 28, 28, 0.1);
  padding-bottom: 12px;
}

@media (max-width: 600px) {
  .collections-nav {
    gap: 15px;
    flex-wrap: wrap;
  }
}

.collection-tab-btn {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 10px 0;
  position: relative;
}

.collection-tab-btn::after {
  content: '';
  position: absolute;
  bottom: -13px;
  left: 0;
  width: 0;
  height: 2.5px;
  background-color: var(--highland-green);
  transition: var(--transition-smooth);
}

.collection-tab-btn:hover {
  color: var(--text-dark);
}

.collection-tab-btn.active {
  color: var(--text-dark);
}

.collection-tab-btn.active::after {
  width: 100%;
}

.collection-pane {
  display: none;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
  animation: fadeIn 0.8s ease forwards;
}

.collection-pane.active {
  display: grid;
}

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

@media (max-width: 900px) {
  .collection-pane {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.collection-visual {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.collection-visual img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.collection-visual:hover img {
  transform: scale(1.05);
}

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

.collection-tag {
  align-self: flex-start;
  padding: 6px 14px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 20px;
  margin-bottom: 24px;
}

.collection-tag.heather { background-color: rgba(112, 83, 108, 0.15); color: var(--heather-purple); }
.collection-tag.whiskey { background-color: rgba(197, 140, 62, 0.15); color: var(--whiskey-amber); }
.collection-tag.mist { background-color: rgba(30, 63, 32, 0.15); color: var(--highland-green); }

.collection-title {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin-bottom: 20px;
}

.collection-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 30px;
}

.notes-container {
  display: flex;
  gap: 30px;
  margin-bottom: 40px;
  border-top: 1px solid rgba(28, 28, 28, 0.1);
  border-bottom: 1px solid rgba(28, 28, 28, 0.1);
  padding: 20px 0;
}

.note-item {
  display: flex;
  flex-direction: column;
}

.note-label {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.note-value {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-dark);
}

/* ==========================================================================
   PRODUCT GRID LAYOUT
   ========================================================================== */
.products {
  background-color: var(--bg-cream);
}

.products-header {
  margin-bottom: 60px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

@media (max-width: 600px) {
  .products-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

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

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

.product-card {
  background: white;
  border-radius: 4px;
  border: 1px solid rgba(28, 28, 28, 0.05);
  overflow: hidden;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
  border-color: rgba(28, 28, 28, 0.1);
}

.product-img-wrapper {
  position: relative;
  background-color: var(--bg-cream);
  overflow: hidden;
  aspect-ratio: 1;
}

.product-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

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

.product-card-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: var(--text-dark);
  color: var(--text-light);
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 6px 12px;
  border-radius: 2px;
  z-index: 5;
}

.product-card-badge.tartan-red-bg {
  background-color: var(--tartan-red);
}

.product-actions-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 15px;
  background: linear-gradient(to top, rgba(250, 247, 242, 0.95), rgba(250, 247, 242, 0));
  transform: translateY(100%);
  transition: var(--transition-smooth);
  display: flex;
  justify-content: center;
  z-index: 5;
}

.product-card:hover .product-actions-overlay {
  transform: translateY(0);
}

.btn-quick-buy {
  background-color: var(--text-dark);
  color: var(--text-light);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: 2px;
  width: 100%;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.btn-quick-buy:hover {
  background-color: var(--highland-green);
}

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

.product-collection-label {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.product-title {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.product-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  border-top: 1px solid rgba(28, 28, 28, 0.05);
  padding-top: 16px;
}

.product-scent-notes {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-style: italic;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 60%;
}

.product-price {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-dark);
}

/* ==========================================================================
   SCENT FINDER QUIZ SECTION
   ========================================================================== */
.scent-quiz-section {
  background-color: var(--bg-dark);
  color: var(--text-light);
  position: relative;
  overflow: hidden;
}

.scent-quiz-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(ellipse at 80% 20%, rgba(112, 83, 108, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 80%, rgba(30, 63, 32, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

.quiz-container {
  max-width: 800px;
  margin: 0 auto;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 60px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
}

@media (max-width: 768px) {
  .quiz-container {
    padding: 30px;
  }
}

.quiz-header {
  margin-bottom: 40px;
}

.quiz-header .section-title {
  margin-bottom: 15px;
}

.quiz-step {
  display: none;
  animation: fadeIn 0.5s ease forwards;
}

.quiz-step.active {
  display: block;
}

.quiz-question-num {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--whiskey-gold);
  margin-bottom: 12px;
  display: block;
}

.quiz-question-text {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 35px;
}

.quiz-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

@media (max-width: 600px) {
  .quiz-options {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

.quiz-option-card {
  border: 1.5px solid rgba(250, 247, 242, 0.15);
  border-radius: 4px;
  padding: 24px;
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
  background-color: rgba(250, 247, 242, 0.02);
}

.quiz-option-card:hover {
  border-color: var(--whiskey-gold);
  background-color: rgba(250, 247, 242, 0.05);
}

.quiz-option-card.selected {
  border-color: var(--whiskey-gold);
  background-color: rgba(197, 140, 62, 0.1);
  box-shadow: 0 0 20px rgba(197, 140, 62, 0.15);
}

.quiz-option-card input[type="radio"] {
  display: none;
}

.quiz-option-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--text-light);
}

.quiz-option-desc {
  font-size: 0.75rem;
  color: rgba(250, 247, 242, 0.6);
  line-height: 1.5;
}

.quiz-nav-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 30px;
}

.quiz-progress-bar {
  height: 4px;
  background-color: rgba(255, 255, 255, 0.1);
  width: 150px;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

.quiz-progress-fill {
  height: 100%;
  background-color: var(--whiskey-gold);
  width: 33.3%;
  transition: var(--transition-smooth);
}

.btn-quiz-next, .btn-quiz-prev {
  padding: 12px 28px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.btn-quiz-next {
  background-color: var(--text-light);
  color: var(--bg-dark);
}

.btn-quiz-next:hover {
  background-color: var(--whiskey-gold);
  color: var(--text-light);
}

.btn-quiz-prev {
  color: rgba(250, 247, 242, 0.6);
}

.btn-quiz-prev:hover {
  color: var(--text-light);
}

/* Quiz Result Card */
.quiz-result-card {
  text-align: center;
}

.quiz-result-sub {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--whiskey-gold);
  margin-bottom: 12px;
  display: block;
}

.quiz-result-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.quiz-result-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  text-align: left;
  margin-top: 40px;
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  padding: 30px;
}

@media (max-width: 768px) {
  .quiz-result-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.result-image-wrapper {
  background-color: var(--bg-cream-dark);
  border-radius: 4px;
  overflow: hidden;
  height: 250px;
}

.result-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.result-details-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.result-scent-name {
  font-size: 1.6rem;
  margin-bottom: 8px;
  color: var(--text-light);
}

.result-notes {
  font-size: 0.75rem;
  color: var(--whiskey-gold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 16px;
  font-weight: 600;
}

.result-desc {
  font-size: 0.85rem;
  color: rgba(250, 247, 242, 0.7);
  line-height: 1.7;
  margin-bottom: 24px;
}

/* ==========================================================================
   ABOUT & CRAFTSMANSHIP
   ========================================================================== */
.craftsmanship {
  background-color: var(--bg-cream-dark);
}

.craftsmanship-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

@media (max-width: 900px) {
  .craftsmanship-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

.craft-content {
  display: flex;
  flex-direction: column;
}

.craft-pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 40px;
}

@media (max-width: 600px) {
  .craft-pillars {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.pillar-item {
  display: flex;
  flex-direction: column;
}

.pillar-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 300;
  color: var(--tartan-red);
  margin-bottom: 8px;
}

.pillar-title {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.pillar-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.craft-visual {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.craft-img-col-left {
  transform: translateY(-20px);
}

.craft-img-col-right {
  transform: translateY(20px);
}

@media (max-width: 900px) {
  .craft-img-col-left, .craft-img-col-right {
    transform: translateY(0);
  }
}

.craft-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

/* ==========================================================================
   TESTIMONIALS & FAQS
   ========================================================================== */
.testimonials-faq {
  background-color: var(--bg-cream);
}

.testimonials-faq-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
}

@media (max-width: 900px) {
  .testimonials-faq-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}

/* Testimonials */
.testimonials-col {
  display: flex;
  flex-direction: column;
}

.testimonial-card {
  background: white;
  padding: 40px;
  border-radius: 4px;
  border: 1px solid rgba(28, 28, 28, 0.04);
  box-shadow: 0 10px 30px rgba(0,0,0,0.02);
  margin-bottom: 30px;
  position: relative;
}

.testimonial-card::before {
  content: '“';
  position: absolute;
  top: 10px;
  left: 30px;
  font-family: var(--font-serif);
  font-size: 5rem;
  line-height: 1;
  color: rgba(166, 25, 46, 0.08);
}

.testimonial-text {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--text-dark);
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-avatar-initials {
  width: 40px;
  height: 40px;
  background-color: var(--bg-cream-dark);
  color: var(--highland-green);
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.author-name {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

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

/* FAQ Accordion */
.faq-col {
  display: flex;
  flex-direction: column;
}

.faq-list {
  margin-top: 30px;
}

.faq-item {
  border-bottom: 1px solid rgba(28, 28, 28, 0.1);
  padding: 24px 0;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  text-align: left;
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--text-dark);
}

.faq-icon {
  width: 18px;
  height: 18px;
  position: relative;
  flex-shrink: 0;
}

.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  background-color: var(--text-dark);
  transition: var(--transition-smooth);
}

/* Horizontal line */
.faq-icon::before {
  top: 8px;
  left: 0;
  width: 100%;
  height: 2px;
}

/* Vertical line */
.faq-icon::after {
  top: 0;
  left: 8px;
  width: 2px;
  height: 100%;
}

.faq-item.active .faq-icon::after {
  transform: rotate(90deg);
  opacity: 0;
}

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

.faq-answer-inner {
  padding-top: 15px;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  transition: max-height 0.5s cubic-bezier(1, 0, 1, 0);
}

/* ==========================================================================
   FOOTER SECTION
   ========================================================================== */
footer {
  background-color: var(--bg-dark);
  color: var(--text-light);
}

.footer-top {
  padding: 80px 0 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
  gap: 50px;
}

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

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

.footer-brand .logo-text {
  color: var(--text-light);
  margin-bottom: 20px;
}

.footer-brand-desc {
  font-size: 0.8rem;
  color: rgba(250, 247, 242, 0.6);
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-socials {
  display: flex;
  gap: 15px;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.social-link:hover {
  background-color: var(--whiskey-gold);
  border-color: var(--whiskey-gold);
  color: var(--bg-dark);
  transform: translateY(-3px);
}

.footer-heading {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--whiskey-gold);
  margin-bottom: 24px;
}

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

.footer-links a {
  font-size: 0.8rem;
  color: rgba(250, 247, 242, 0.7);
}

.footer-links a:hover {
  color: var(--text-light);
  padding-left: 5px;
}

.footer-newsletter-desc {
  font-size: 0.8rem;
  color: rgba(250, 247, 242, 0.6);
  line-height: 1.6;
  margin-bottom: 20px;
}

.newsletter-form {
  display: flex;
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 6px;
  transition: var(--transition-fast);
}

.newsletter-form:focus-within {
  border-color: var(--whiskey-gold);
}

.newsletter-input {
  background: transparent;
  border: none;
  color: var(--text-light);
  font-family: inherit;
  font-size: 0.85rem;
  padding: 8px 0;
  flex-grow: 1;
  outline: none;
}

.newsletter-input::placeholder {
  color: rgba(250, 247, 242, 0.35);
}

.btn-newsletter-submit {
  color: var(--text-light);
  font-size: 0.9rem;
  padding: 8px;
}

.btn-newsletter-submit:hover {
  color: var(--whiskey-gold);
}

.footer-bottom {
  padding: 30px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: rgba(250, 247, 242, 0.45);
}

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

.footer-legal-links {
  display: flex;
  gap: 20px;
}

.footer-legal-links a:hover {
  color: var(--text-light);
}

/* ==========================================================================
   INTERACTIVE CART DRAWER
   ========================================================================== */
.cart-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(18, 21, 19, 0.5);
  backdrop-filter: blur(4px);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}

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

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 440px;
  height: 100%;
  background-color: var(--bg-cream);
  z-index: 201;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: var(--transition-smooth);
}

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

.cart-header {
  padding: 24px 30px;
  border-bottom: 1px solid rgba(28, 28, 28, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-title {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-close-cart {
  font-size: 1.5rem;
  color: var(--text-dark);
}

.btn-close-cart:hover {
  color: var(--tartan-red);
}

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

.cart-empty-message {
  text-align: center;
  color: var(--text-muted);
  margin-top: 60px;
}

.cart-empty-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: rgba(28, 28, 28, 0.2);
}

.cart-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 20px;
  align-items: center;
  border-bottom: 1px solid rgba(28, 28, 28, 0.05);
  padding-bottom: 20px;
}

.cart-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.cart-item-image {
  height: 80px;
  border-radius: 2px;
  overflow: hidden;
  background-color: var(--bg-cream-dark);
}

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

.cart-item-details {
  display: flex;
  flex-direction: column;
}

.cart-item-title-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 6px;
}

.cart-item-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
}

.btn-remove-item {
  color: var(--text-muted);
  font-size: 0.8rem;
}

.btn-remove-item:hover {
  color: var(--tartan-red);
}

.cart-item-meta {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

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

.cart-item-qty {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.cart-item-price {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-dark);
}

.cart-footer {
  padding: 30px;
  border-top: 1px solid rgba(28, 28, 28, 0.1);
  background-color: var(--bg-cream-dark);
}

.cart-disclaimer {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.4;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(28, 28, 28, 0.08);
  padding-bottom: 15px;
  text-align: left;
}

.cart-subtotal-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.cart-subtotal-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.cart-subtotal-value {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
}

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

.cart-shipping-note {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 15px;
}

/* ==========================================================================
   DESIGN SYSTEM SPEC OVERLAY (Togglable for UI concept review)
   ========================================================================== */
.design-spec-toggle {
  position: fixed;
  bottom: 24px;
  left: 24px;
  background-color: var(--text-dark);
  color: var(--text-light);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  z-index: 150;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.design-spec-toggle:hover {
  background-color: var(--highland-green);
  transform: rotate(15deg) scale(1.05);
}

.spec-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(18, 21, 19, 0.6);
  backdrop-filter: blur(5px);
  z-index: 300;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}

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

.spec-modal {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -45%);
  width: 90%;
  max-width: 800px;
  max-height: 80vh;
  background-color: var(--bg-cream);
  border-radius: 8px;
  border: 1px solid rgba(28, 28, 28, 0.1);
  box-shadow: 0 30px 60px rgba(0,0,0,0.2);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.spec-modal-overlay.open .spec-modal {
  transform: translate(-50%, -50%);
}

.spec-header {
  padding: 24px 30px;
  border-bottom: 1px solid rgba(28, 28, 28, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.spec-body {
  padding: 30px;
  overflow-y: auto;
}

.spec-section {
  margin-bottom: 40px;
}

.spec-section:last-child {
  margin-bottom: 0;
}

.spec-section-title {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--tartan-red);
  margin-bottom: 20px;
  border-bottom: 1.5px solid rgba(28, 28, 28, 0.05);
  padding-bottom: 6px;
}

.color-swatches-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 20px;
}

.swatch-card {
  border: 1px solid rgba(28, 28, 28, 0.08);
  border-radius: 4px;
  overflow: hidden;
  background-color: white;
}

.swatch-color {
  height: 60px;
}

.swatch-info {
  padding: 12px;
}

.swatch-name {
  font-size: 0.75rem;
  font-weight: 700;
}

.swatch-val {
  font-size: 0.65rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.font-preview-item {
  margin-bottom: 20px;
}

.font-preview-label {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.font-preview-title-serif {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--text-dark);
}

.font-preview-body-sans {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text-dark);
  line-height: 1.6;
}

.spec-tartan-preview {
  height: 80px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  box-shadow: inset 0 0 20px rgba(0,0,0,0.15);
}

.spec-toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: var(--highland-green);
  color: var(--text-light);
  padding: 16px 28px;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 4px;
  z-index: 400;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  transform: translateY(150px);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.spec-toast.show {
  transform: translateY(0);
}

/* ==========================================================================
   PRODUCT SIZE SELECTOR
   ========================================================================== */
.product-size-selector {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 5px;
  margin-bottom: 15px;
}

.size-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.size-options {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.size-btn {
  padding: 4px 10px;
  font-size: 0.7rem;
  font-weight: 600;
  background: transparent;
  border: 1px solid rgba(27, 30, 28, 0.15);
  color: var(--text-dark);
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.size-btn:hover {
  border-color: var(--text-dark);
}

.size-btn.active {
  background-color: var(--text-dark);
  color: var(--bg-cream);
  border-color: var(--text-dark);
}

/* Dark theme overrides (for quiz results or other dark areas) */
.product-size-selector.dark-theme .size-label {
  color: rgba(250, 247, 242, 0.6);
}

.product-size-selector.dark-theme .size-btn {
  border-color: rgba(250, 247, 242, 0.3);
  color: var(--text-light);
}

.product-size-selector.dark-theme .size-btn:hover {
  border-color: var(--text-light);
}

.product-size-selector.dark-theme .size-btn.active {
  background-color: var(--whiskey-gold);
  color: var(--bg-dark);
  border-color: var(--whiskey-gold);
}

/* ==========================================================================
   PRODUCT DETAIL PAGES
   ========================================================================== */
.product-detail-section {
  padding: 60px 0;
  background-color: var(--bg-cream);
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

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

.product-detail-media {
  background-color: var(--bg-cream-dark);
  border-radius: 4px;
  border: 1px solid rgba(28, 28, 28, 0.05);
  overflow: hidden;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.product-detail-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-detail-info {
  display: flex;
  flex-direction: column;
}

.product-detail-title {
  font-size: 2.5rem;
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.product-detail-subtitle {
  font-size: 1rem;
  font-weight: 600;
  font-style: italic;
  color: var(--whiskey-gold);
  margin-bottom: 20px;
}

.product-detail-price {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 25px;
}

.product-detail-divider {
  border: none;
  border-top: 1px solid rgba(28, 28, 28, 0.1);
  margin: 25px 0;
}

.product-detail-desc {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.product-detail-story {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-muted);
  font-style: italic;
  background-color: rgba(250, 247, 242, 0.5);
  padding: 15px 20px;
  border-left: 3px solid var(--text-dark);
  margin-bottom: 25px;
}

.detail-notes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-bottom: 25px;
}

.detail-note-card {
  background: white;
  padding: 12px;
  border-radius: 4px;
  border: 1px solid rgba(28, 28, 28, 0.05);
  text-align: center;
}

.detail-note-title {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.detail-note-val {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
}

.usage-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 25px;
}

.usage-list li {
  font-size: 0.85rem;
  color: var(--text-muted);
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
}

.usage-list li::before {
  content: "•";
  color: var(--whiskey-gold);
  font-size: 1.2rem;
  position: absolute;
  left: 5px;
  top: -2px;
}

/* ==========================================================================
   PRODUCT LID SELECTOR
   ========================================================================== */
.product-lid-selector {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
  margin-bottom: 15px;
}

.lid-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  min-width: 45px;
}

.lid-options {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.lid-btn {
  padding: 4px 10px;
  font-size: 0.7rem;
  font-weight: 600;
  background: transparent;
  border: 1px solid rgba(27, 30, 28, 0.15);
  color: var(--text-dark);
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.lid-btn:hover {
  border-color: var(--text-dark);
}

.lid-btn.active {
  background-color: var(--text-dark);
  color: var(--bg-cream);
  border-color: var(--text-dark);
}

/* Dark theme overrides (for quiz results or other dark areas) */
.product-lid-selector.dark-theme .lid-label {
  color: rgba(250, 247, 242, 0.6);
}

.product-lid-selector.dark-theme .lid-btn {
  border-color: rgba(250, 247, 242, 0.3);
  color: var(--text-light);
}

.product-lid-selector.dark-theme .lid-btn:hover {
  border-color: var(--text-light);
}

.product-lid-selector.dark-theme .lid-btn.active {
  background-color: var(--whiskey-gold);
  color: var(--bg-dark);
  border-color: var(--whiskey-gold);
}

/* ==========================================================================
   PRODUCT JAR SELECTOR
   ========================================================================== */
.product-jar-selector {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
  margin-bottom: 15px;
}

.jar-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  min-width: 45px;
}

.jar-options {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.jar-btn {
  padding: 4px 10px;
  font-size: 0.7rem;
  font-weight: 600;
  background: transparent;
  border: 1px solid rgba(27, 30, 28, 0.15);
  color: var(--text-dark);
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.jar-btn:hover {
  border-color: var(--text-dark);
}

.jar-btn.active {
  background-color: var(--text-dark);
  color: var(--bg-cream);
  border-color: var(--text-dark);
}

/* Dark theme overrides (for quiz results or other dark areas) */
.product-jar-selector.dark-theme .jar-label {
  color: rgba(250, 247, 242, 0.6);
}

.product-jar-selector.dark-theme .jar-btn {
  border-color: rgba(250, 247, 242, 0.3);
  color: var(--text-light);
}

.product-jar-selector.dark-theme .jar-btn:hover {
  border-color: var(--text-light);
}

.product-jar-selector.dark-theme .jar-btn.active {
  background-color: var(--whiskey-gold);
  color: var(--bg-dark);
  border-color: var(--whiskey-gold);
}

/* ==========================================================================
   DIAGONAL DUAL IMAGE DISPLAY
   ========================================================================== */
.media-diagonal-container {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
}

.media-diagonal-container img.media-diagonal {
  position: absolute;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid rgba(28, 28, 28, 0.08);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, z-index 0.3s ease, box-shadow 0.3s ease;
}

.media-diagonal-container img.img-top-left {
  top: 0;
  left: 0;
  width: 53% !important;
  height: 53% !important;
  z-index: 1;
}

.media-diagonal-container img.img-bottom-right {
  bottom: 0;
  right: 0;
  width: 79.5% !important;
  height: auto !important;
  z-index: 2;
}

/* Three-image layout overrides specifically for Highland Cashmere */
.media-diagonal-container.three-images img.img-bottom-right {
  top: 12%;
  right: 0;
  bottom: auto;
  width: 55% !important;
  height: auto !important;
  z-index: 3;
}

.media-diagonal-container.three-images img.img-third {
  top: 61.5%;
  left: 0;
  bottom: auto;
  width: 100% !important;
  height: auto !important;
  z-index: 2;
}

/* Custom 10% overlap layout for Highland Breeze */
.media-diagonal-container.breeze-layout img.img-bottom-right {
  bottom: 0;
  right: 0;
  top: auto;
  width: 52% !important;
  height: 52% !important;
  z-index: 2;
}

.media-diagonal-container img.media-diagonal:hover {
  z-index: 5;
  transform: scale(1.05);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* ==========================================================================
   SNIPCART V3 BRAND CUSTOMIZATION
   ========================================================================== */
#snipcart {
  position: relative;
  z-index: 9999 !important;
  /* Colors - Branding custom properties */
  --color-default: #333333;             /* Charcoal */
  --bgColor-default: #FAF7F2;           /* Matches main body background */
  --bgColor-alt: #F2EDE4;               /* Darker Cream for header/footer */
  --borderColor-default: #E5DFC9;       /* Subtle Cream Border */
  
  --color-link: #C00000;                /* Stewart Red */
  --color-link-hover: #9E0000;
  
  --color-buttonPrimary: #FAF7F2;       /* Matte Cream text */
  --bgColor-buttonPrimary: #C00000;     /* Stewart Red background */
  --bgColor-buttonPrimary-hover: #9E0000;
  --borderColor-buttonPrimary: #C00000;
  
  --color-buttonSecondary: #333333;     /* Charcoal text */
  --bgColor-buttonSecondary: #FAF7F2;   /* Cream background */
  --bgColor-buttonSecondary-hover: #EBE6D8;
  --borderColor-buttonSecondary: #333333;
  
  --color-input: #333333;
  --bgColor-input: #FAF7F2;
  --borderColor-input: #E5DFC9;
  --borderColor-input-focus: #C00000;
  
  --color-badge: #C00000;
  --bgColor-badge: #FAF7F2;
  
  --font-title: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Montserrat', sans-serif;
}

/* Snipcart Custom Layout Adjustments */
#snipcart .snipcart-modal {
  font-family: var(--font-sans) !important;
  background-color: rgba(18, 21, 19, 0.4) !important; /* Semi-transparent dark backdrop overlay */
}

#snipcart .snipcart-layout,
#snipcart .snipcart-layout__content,
#snipcart .snipcart-cart__content,
#snipcart .snipcart-layout__sidebar,
#snipcart .snipcart-modal__container,
#snipcart .snipcart-checkout,
#snipcart .snipcart-cart-summary,
#snipcart .snipcart-checkout-step {
  background-color: var(--bgColor-default) !important;
}

#snipcart .snipcart-cart__header {
  background-color: var(--bgColor-alt) !important;
  border-bottom: 1px solid var(--borderColor-default) !important;
}

/* Empty Sporran Custom Layout */
#snipcart .snipcart-empty-cart {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 50px 30px;
  text-align: center;
  background-color: var(--bgColor-default) !important;
}

#snipcart .snipcart-empty-cart__title {
  font-family: var(--font-serif) !important;
  font-size: 2.2rem !important;
  font-weight: 500 !important;
  color: var(--color-default) !important;
  margin-bottom: 8px !important;
  text-transform: capitalize;
}

#snipcart .snipcart-empty-cart__desc {
  font-family: var(--font-sans) !important;
  font-size: 1rem !important;
  color: var(--text-muted) !important;
  margin-bottom: 25px !important;
  max-width: 480px !important;
  line-height: 1.6 !important;
}

#snipcart .snipcart-empty-cart__img {
  max-width: 260px;
  width: 100%;
  height: auto;
  border-radius: 4px;
  margin-bottom: 30px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
  border: 1px solid #E5DFC9;
}

#snipcart .snipcart-cart-button--secondary {
  border-color: var(--color-default) !important;
  color: var(--color-default) !important;
  background-color: transparent !important;
  font-family: var(--font-sans) !important;
  text-transform: uppercase !important;
  font-size: 0.75rem !important;
  letter-spacing: 0.1em !important;
  font-weight: 600 !important;
  transition: var(--transition-fast) !important;
}

#snipcart .snipcart-cart-button--secondary:hover {
  background-color: var(--color-default) !important;
  color: #FAF7F2 !important;
}

/* Snipcart Footer Disclaimer */
#snipcart .snipcart-cart__footer::before {
  content: "All candle images shown on this site are artistic representations for display purposes only. Actual products may vary. Kilted Candles reserves the right to modify label designs, formatting, artwork, and packaging at any time without prior notice.";
  display: block;
  font-size: 0.75rem;
  color: #4a4a4a;                       /* Darker charcoal for legibility */
  padding: 15px 20px;
  border: 1px solid #E3D9BE;            /* Defined border card */
  border-radius: 4px;
  text-align: center;
  line-height: 1.5;
  font-family: var(--font-body, sans-serif);
  background-color: #F5EFEB;            /* Warmer accent cream background */
  margin-bottom: 20px;
}

/* Force Light Mode / Override Snipcart Dark Scheme */
@media (prefers-color-scheme: dark) {
  #snipcart {
    --bgColor-default: #FAF7F2 !important;
    --bgColor-alt: #F2EDE4 !important;
    --color-default: #333333 !important;
    --borderColor-default: #E5DFC9 !important;
    --color-link: #C00000 !important;
    --color-link-hover: #9E0000 !important;
    
    --color-buttonPrimary: #FAF7F2 !important;
    --bgColor-buttonPrimary: #C00000 !important;
    --bgColor-buttonPrimary-hover: #9E0000 !important;
    --borderColor-buttonPrimary: #C00000 !important;
    
    --color-buttonSecondary: #333333 !important;
    --bgColor-buttonSecondary: #FAF7F2 !important;
    --borderColor-buttonSecondary: #333333 !important;
    
    --color-input: #333333 !important;
    --bgColor-input: #FAF7F2 !important;
    --borderColor-input: #E5DFC9 !important;
    --borderColor-input-focus: #C00000 !important;
    
    --color-badge: #C00000 !important;
    --bgColor-badge: #FAF7F2 !important;
  }

  #snipcart .snipcart-modal {
    background-color: rgba(18, 21, 19, 0.4) !important;
  }

  #snipcart .snipcart-cart__header {
    background-color: #F2EDE4 !important;
    border-bottom: 1px solid #E5DFC9 !important;
  }

  #snipcart .snipcart-empty-cart {
    background-color: #FAF7F2 !important;
  }

  #snipcart .snipcart-cart__footer::before {
    background-color: #F5EFEB !important;
    color: #4a4a4a !important;
    border: 1px solid #E3D9BE !important;
  }
  
  #snipcart .snipcart-item-line {
    background-color: #FAF7F2 !important;
    border-color: #E5DFC9 !important;
  }
}
