/**
 * THE SNIFF STORY - Page Specific Styling (Pure White Luxury Theme)
 * Hero, Shop (PLP), Product Detail (PDP), Decants Lab, Gifting, Checkout, Tracking & Account
 */

/* ==========================================================
   1. HERO SECTION (Editorial & Pure White Radiance)
   ========================================================== */
/* ==========================================================
   1. HERO SECTION (Full-Width Edge-to-Edge Luxury Carousel)
   ========================================================== */
.hero-section,
.hero-section.hero-edge-to-edge {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 0;
  margin: 0;
  background-color: #FAF8F5;
  border-bottom: 1px solid var(--border-light);
  min-height: auto;
}

.hero-carousel-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: block;
  min-height: auto;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1), transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
  transform: scale(1.015);
  padding: 0;
  z-index: 1;
}

.hero-slide.active {
  position: relative;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: scale(1);
  z-index: 2;
}

.hero-slide-link {
  display: block;
  width: 100%;
  text-decoration: none;
  line-height: 0;
  cursor: pointer;
}

.hero-full-banner-img {
  width: 100%;
  height: auto;
  max-height: 82vh;
  object-fit: cover;
  display: block;
}

/* Hero Carousel Floating Nav Buttons */
.hero-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(201, 169, 106, 0.35);
  color: #1A1816;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.25s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hero-slider-btn:hover {
  background: #111827;
  color: #FFFFFF;
  border-color: #111827;
  transform: translateY(-50%) scale(1.06);
}

.hero-slider-btn.prev {
  left: 28px;
}

.hero-slider-btn.next {
  right: 28px;
}

.hero-dots-container {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 10;
}

.hero-dot-btn {
  width: 32px;
  height: 5px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(0, 0, 0, 0.15);
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.hero-dot-btn.active,
.hero-dot-btn:hover {
  width: 52px;
  background: var(--gold-deep);
  border-color: var(--gold-deep);
}

@media (max-width: 991px) {
  .hero-section {
    min-height: auto;
    padding: 40px 0 60px;
  }

  .hero-slide {
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: none;
    min-height: auto;
    padding: 20px 0;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }

  .hero-subtitle {
    justify-content: center;
  }

  .hero-subtitle::before {
    display: none;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-description {
    margin: 0 auto 24px;
  }

  .hero-btn-group {
    justify-content: center;
  }

  .hero-flacon-img {
    max-height: 340px;
  }

  .hero-slider-btn {
    display: none;
  }
}

/* ==========================================================
   2. PRODUCT LISTING PAGE (PLP / SHOP)
   ========================================================== */
.shop-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 28px;
  padding: 30px 0 80px;
}

.filter-sidebar {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: 4px;
  padding: 24px;
  height: fit-content;
  position: sticky;
  top: 106px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.filter-sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 20px;
}

.filter-sidebar-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.filter-clear-btn {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-deep);
  background: none;
  border: none;
  cursor: pointer;
}

.filter-group {
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 18px;
  margin-bottom: 18px;
}

.filter-group-title {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}

.filter-options-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 180px;
  overflow-y: auto;
}

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

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

.shop-main-content {
  display: flex;
  flex-direction: column;
}

.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  padding: 14px 20px;
  border-radius: 4px;
  margin-bottom: 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.results-count {
  font-size: 0.84rem;
  color: var(--text-secondary);
}

.sort-select-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sort-select {
  padding: 8px 14px;
  border: 1px solid var(--border-light);
  background: #FFFFFF;
  border-radius: 4px;
  font-size: 0.82rem;
  color: var(--text-primary);
  cursor: pointer;
}

.products-grid-plp {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* ==========================================================
   3. LUXURY EDITORIAL PRODUCT DETAIL PAGE (PDP)
   ========================================================== */

/* Hero Stage Canvas */
.pdp-hero-stage-section {
  background-color: #EFECE6;
  background-image: url('../images/products/pdp-hero-stage-bg.jpg');
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  padding: 24px 0 54px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid #DFD9CE;
}

.pdp-stage-breadcrumb {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #7A7266;
  margin-bottom: 24px;
}

.pdp-stage-breadcrumb a {
  color: #5A5348;
  text-decoration: none;
  transition: color 0.2s ease;
}

.pdp-stage-breadcrumb a:hover {
  color: #1A1A1A;
}

.pdp-stage-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 440px);
  gap: 36px;
  align-items: end;
  justify-content: center;
}

/* Left Stage */
.pdp-stage-left-wrapper {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: sticky;
  top: 105px;
  padding-top: 60px;
}

/* Flacon Showcase directly on background stage */
.pdp-stage-showcase {
  width: 100%;
  max-width: 440px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.pdp-stage-main-box {
  width: 100%;
  height: 440px;
  background: transparent;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  overflow: visible;
  border: none;
  box-shadow: none;
  padding-bottom: 0;
}

.pdp-stage-main-box::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 190px;
  height: 18px;
  background: radial-gradient(ellipse at center, rgba(35, 25, 16, 0.45) 0%, rgba(35, 25, 16, 0.15) 55%, transparent 75%);
  border-radius: 50%;
  pointer-events: none;
  filter: blur(4px);
  transition: all 0.4s ease;
  z-index: 1;
}

.pdp-stage-main-img {
  width: auto;
  height: auto;
  max-height: 395px;
  max-width: 95%;
  object-fit: contain;
  position: relative;
  z-index: 2;
  margin-bottom: 0;
  transform: translateY(20px);
  filter: drop-shadow(0 14px 22px rgba(0, 0, 0, 0.22));
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
  transform-origin: bottom center;
}

.pdp-stage-main-box:hover .pdp-stage-main-img {
  transform: translateY(16px) scale(1.03);
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.28));
}

.pdp-stage-main-box:hover::after {
  transform: translateX(-50%) scale(0.92);
  opacity: 0.8;
}

.pdp-stage-360-btn {
  position: absolute;
  bottom: 8px;
  left: 8px;
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333333;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
}

/* 4 Thumbnails Strip */
.pdp-gallery-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  width: 100%;
  max-width: 380px;
}

.pdp-thumb-slot {
  height: 68px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(215, 207, 195, 0.8);
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  padding: 3px;
  transition: all 0.25s ease;
}

.pdp-thumb-slot.active,
.pdp-thumb-slot:hover {
  border-color: #1A1A1A;
  background: #FFFFFF;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.pdp-thumb-slot img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 4px;
}

/* Right Column: Floating White Buy Card (Compact Small Box Format) */
.pdp-buy-card {
  background: #FFFFFF;
  border: 1px solid #EAE5DB;
  border-radius: 8px;
  padding: 22px 24px;
  max-width: 440px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.pdp-brand-origin-hdr {
  font-size: 0.64rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #7D7569;
  font-weight: 600;
  margin-bottom: 3px;
  display: block;
}

.pdp-flacon-title {
  font-family: var(--font-serif);
  font-size: 1.85rem;
  font-weight: 400;
  color: #1A1A1A;
  line-height: 1.15;
  margin: 0 0 2px;
}

.pdp-flacon-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.92rem;
  color: #665F55;
  margin-bottom: 8px;
  display: block;
}

.pdp-card-rating-row {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.76rem;
  color: #666666;
  margin-bottom: 10px;
}

.pdp-card-rating-row .stars-gold {
  color: #C9A96A;
  letter-spacing: 2px;
}

.pdp-card-price-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #F0ECE3;
}

.pdp-current-val {
  font-size: 1.55rem;
  font-weight: 700;
  color: #111111;
  font-family: var(--font-sans);
}

.pdp-mrp-val {
  font-size: 0.95rem;
  color: #9C9488;
  text-decoration: line-through;
}

.pdp-save-pill {
  background: #FFF3D6;
  color: #9A6600;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 2px 7px;
  border-radius: 3px;
  text-transform: uppercase;
}

.pdp-card-description {
  font-size: 0.82rem;
  color: #554F47;
  line-height: 1.55;
  margin-bottom: 8px;
}

/* View Details Trigger Button */
.pdp-view-details-action {
  margin-bottom: 14px;
}

.btn-pdp-view-details {
  background: transparent;
  border: none;
  padding: 0 0 2px 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-sans);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8C6D3B;
  cursor: pointer;
  border-bottom: 1.5px solid #C9A96A;
  transition: all 0.2s ease;
}

.btn-pdp-view-details:hover {
  color: #111111;
  border-color: #111111;
}

.pdp-details-arrow {
  font-size: 0.95rem;
  transition: transform 0.2s ease;
}

.btn-pdp-view-details:hover .pdp-details-arrow {
  transform: translateX(4px);
}

/* ==========================================================
   PRODUCT DETAILS MODAL POPUP (MATCHING USER MOCKUP)
   ========================================================== */
.pdp-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(18, 22, 28, 0.68);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.pdp-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.pdp-modal-dialog {
  background: #FDFBF8;
  border: 1px solid #EAE3D6;
  border-radius: 8px;
  width: 100%;
  max-width: 880px;
  max-height: 88vh;
  overflow-y: auto;
  position: relative;
  padding: 46px 48px 52px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.22);
  transform: scale(0.95) translateY(18px);
  transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1);
}

.pdp-modal-overlay.active .pdp-modal-dialog {
  transform: scale(1) translateY(0);
}

.pdp-modal-close-btn {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 36px;
  height: 36px;
  background: #FFFFFF;
  border: 1px solid #E5DFD5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555555;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 10;
}

.pdp-modal-close-btn:hover {
  background: #111111;
  border-color: #111111;
  color: #FFFFFF;
}

/* Header Tab */
.pdp-modal-tab-bar {
  display: flex;
  justify-content: center;
  border-bottom: 1px solid #EAE4D8;
  margin-bottom: 32px;
  position: relative;
}

.pdp-modal-tab {
  font-family: var(--font-serif);
  font-size: 1.22rem;
  font-weight: 500;
  color: #8C2D38;
  padding: 0 20px 14px;
  position: relative;
  letter-spacing: 0.02em;
}

.pdp-modal-tab.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: #8C2D38;
}

/* Specs Table */
.pdp-modal-specs-table {
  display: flex;
  flex-direction: column;
}

.pdp-spec-row {
  display: grid;
  grid-template-columns: 150px 1fr;
  padding: 24px 0;
  border-bottom: 1px solid #F0ECE4;
  gap: 24px;
}

.pdp-spec-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.pdp-spec-label {
  font-size: 0.95rem;
  color: #555555;
  font-weight: 400;
  line-height: 1.6;
}

.pdp-spec-val {
  font-size: 0.92rem;
  color: #2D2A26;
  line-height: 1.8;
}

.pdp-spec-notes {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pdp-spec-notes div strong {
  font-weight: 600;
  color: #111111;
}

.pdp-spec-desc {
  color: #4A453E;
}

@media (max-width: 640px) {
  .pdp-modal-dialog {
    padding: 30px 20px;
  }

  .pdp-spec-row {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 16px 0;
  }
}

/* Size Variant Selector */
.pdp-size-picker-wrap {
  margin-bottom: 12px;
}

.pdp-size-picker-label {
  font-size: 0.64rem;
  letter-spacing: 0.18em;
  font-weight: 700;
  text-transform: uppercase;
  color: #1A1A1A;
  margin-bottom: 6px;
}

.pdp-size-pills-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}

.pdp-size-btn-pill {
  background: #FFFFFF;
  border: 1px solid #DCD5C8;
  border-radius: 4px;
  padding: 6px 2px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.pdp-size-btn-pill .size-ml-text {
  font-size: 0.72rem;
  font-weight: 700;
  color: #1A1A1A;
  letter-spacing: 0.04em;
}

.pdp-size-btn-pill .size-price-text {
  font-size: 0.64rem;
  color: #777064;
  margin-top: 1px;
}

.pdp-size-btn-pill.active {
  background: #111111;
  border-color: #111111;
}

.pdp-size-btn-pill.active .size-ml-text {
  color: #FFFFFF;
}

.pdp-size-btn-pill.active .size-price-text {
  color: #D6CBB8;
}

.pdp-size-btn-pill:hover:not(.active) {
  border-color: #9C7A3C;
}

.pdp-personalise-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  color: #1A1A1A;
  text-decoration: none;
  font-weight: 500;
  margin-bottom: 12px;
  cursor: pointer;
  transition: color 0.2s ease;
}

.pdp-personalise-link:hover {
  color: #A88648;
}

/* Stepper + Add To Bag + Buy Now */
.pdp-purchase-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 12px;
}

.pdp-cta-inline-row {
  display: flex;
  gap: 8px;
  align-items: center;
}

.pdp-stepper-box {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #D8D1C4;
  border-radius: 4px;
  height: 40px;
  width: 90px;
  background: #FFFFFF;
  flex-shrink: 0;
}

.pdp-step-btn {
  width: 26px;
  height: 100%;
  border: none;
  background: transparent;
  color: #1A1A1A;
  font-size: 0.95rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pdp-step-btn:hover {
  background: #FAF8F5;
}

.pdp-step-input {
  width: 32px;
  border: none;
  background: transparent;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 700;
  color: #1A1A1A;
}

.btn-pdp-add-bag {
  flex: 1;
  height: 40px;
  background: #111111;
  color: #FFFFFF;
  border: 1px solid #111111;
  border-radius: 4px;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-pdp-add-bag:hover {
  background: #333333;
  border-color: #333333;
}

.btn-pdp-buy-now {
  width: 100%;
  height: 40px;
  background: #FFFFFF;
  color: #111111;
  border: 1px solid #111111;
  border-radius: 4px;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-pdp-buy-now:hover {
  background: #111111;
  color: #FFFFFF;
}

/* 4 Trust Badges */
.pdp-trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  padding-top: 10px;
  border-top: 1px solid #F0ECE3;
}

.pdp-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2px;
}

.pdp-trust-icon {
  font-size: 0.95rem;
}

.pdp-trust-text {
  font-size: 0.60rem;
  color: #7A7266;
  line-height: 1.2;
}

/* ==========================================================
   THE SCENT STORY SECTION
   ========================================================== */
.pdp-scent-story-section {
  background-color: #FAF8F5;
  padding: 85px 0;
  border-bottom: 1px solid #EFECE6;
}

.scent-story-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.scent-story-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #A88648;
  font-weight: 600;
  margin-bottom: 10px;
  display: block;
}

.scent-story-heading {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 400;
  line-height: 1.18;
  color: #1A1A1A;
  margin: 0 0 22px;
}

.scent-story-body {
  font-size: 0.94rem;
  color: #555047;
  line-height: 1.85;
  margin-bottom: 28px;
}

.scent-story-link {
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  font-weight: 700;
  text-transform: uppercase;
  color: #1A1A1A;
  text-decoration: none;
  border-bottom: 1.5px solid #1A1A1A;
  padding-bottom: 4px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
}

.scent-story-link:hover {
  color: #A88648;
  border-color: #A88648;
}

.scent-story-visual-card {
  width: 100%;
  height: 380px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.scent-story-visual-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ==========================================================
   OLFACTORY PYRAMID PHOTO SECTION
   ========================================================== */
.pdp-olfactory-pyramid-section {
  background-color: #FFFFFF;
  padding: 85px 0 75px;
  border-bottom: 1px solid #EFECE6;
}

.pyramid-section-title {
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 700;
  color: #1A1A1A;
  text-align: center;
  margin-bottom: 6px;
}

.pyramid-section-subtitle {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.15rem;
  color: #665F55;
  text-align: center;
  margin-bottom: 44px;
}

.pyramid-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 50px;
}

.pyramid-photo-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.pyramid-photo-frame {
  width: 100%;
  height: 200px;
  border-radius: 6px;
  overflow: hidden;
  background: #F7F5F0;
  margin-bottom: 14px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
}

.pyramid-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.pyramid-photo-card:hover .pyramid-photo-frame img {
  transform: scale(1.04);
}

.pyramid-tier-tag {
  font-size: 0.72rem;
  letter-spacing: 0.20em;
  font-weight: 700;
  text-transform: uppercase;
  color: #1A1A1A;
  margin-bottom: 4px;
}

.pyramid-notes-list {
  font-size: 0.82rem;
  color: #665F55;
}

/* 4 Metrics Strip */
.pdp-metrics-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 24px 30px;
  background: #FAF8F5;
  border: 1px solid #EAE5DB;
  border-radius: 6px;
}

.pdp-metric-box {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pdp-metric-icon {
  font-size: 1.4rem;
  color: #A88648;
}

.pdp-metric-hdr {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8C8478;
  font-weight: 600;
}

.pdp-metric-val {
  font-size: 0.82rem;
  font-weight: 600;
  color: #1A1A1A;
}

/* ==========================================================
   PATRON PERSPECTIVES (REVIEWS & COMPLIMENTS)
   ========================================================== */
.pdp-reviews-showcase-section {
  background-color: #FAF8F5;
  padding: 85px 0;
  border-bottom: 1px solid #EFECE6;
}

.reviews-section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 38px;
}

.reviews-title-wrap {
  text-align: left;
}

.reviews-eyebrow {
  font-size: 0.70rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #A88648;
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
}

.reviews-headline {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 400;
  color: #1A1A1A;
  margin: 0;
}

.reviews-summary-badge {
  text-align: right;
  font-size: 0.84rem;
  color: #666666;
}

.reviews-summary-badge strong {
  font-size: 1.1rem;
  color: #1A1A1A;
  margin-right: 4px;
}

.reviews-cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-luxury-box {
  background: #FFFFFF;
  border: 1px solid #EAE5DB;
  border-radius: 6px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.review-quote-text {
  font-size: 0.90rem;
  line-height: 1.75;
  color: #4A443D;
  margin-bottom: 20px;
}

.review-author-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #F5F1EA;
  padding-top: 14px;
}

.review-author-name {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #1A1A1A;
}

.review-stars-gold {
  color: #C9A96A;
  font-size: 0.78rem;
  letter-spacing: 2px;
}

/* ==========================================================
   CURATED HARMONY (PAIR IT WITH)
   ========================================================== */
.pdp-pair-with-section {
  background-color: #FFFFFF;
  padding: 85px 0 95px;
}

.pair-section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 36px;
}

.pair-eyebrow {
  font-size: 0.70rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #A88648;
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
}

.pair-headline {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 400;
  color: #1A1A1A;
  margin: 0;
}

.pair-explore-link {
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  font-weight: 700;
  text-transform: uppercase;
  color: #1A1A1A;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s ease;
}

.pair-explore-link:hover {
  color: #A88648;
}

.pair-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.pair-flacon-card {
  background: #FAF8F5;
  border: 1px solid #EAE5DB;
  border-radius: 6px;
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pair-flacon-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.pair-img-wrap {
  width: 100%;
  height: 300px;
  background: #F3EFE8;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.pair-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pair-wishlist-icon {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(6px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1A1A1A;
  font-size: 0.95rem;
}

.pair-body-info {
  padding: 18px 20px 22px;
  background: #FFFFFF;
}

.pair-flacon-name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: #1A1A1A;
  margin: 0 0 4px;
}

.pair-brand-name {
  font-size: 0.72rem;
  color: #8C8478;
  margin-bottom: 8px;
  display: block;
}

.pair-price-val {
  font-size: 0.95rem;
  font-weight: 700;
  color: #111111;
}

/* ==========================================================
   4. DECANTS DISCOVERY LAB (/decants) - CLEAN LUXURY ATELIER
   ========================================================== */
.decants-page-wrapper {
  background: #FFFFFF;
  min-height: 100vh;
  padding-bottom: 80px;
}

.decants-hero-banner {
  background: radial-gradient(circle at 50% 40%, #FAFAFA 0%, #FFFFFF 100%);
  padding: 54px 0 34px;
  border-bottom: 1px solid var(--border-light);
  text-align: center;
}

.decants-hero-kicker {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #C2A268;
  font-weight: 700;
  display: block;
  margin-bottom: 10px;
}

.decants-hero-heading {
  font-family: var(--font-serif);
  font-size: 2.6rem;
  color: #1A1816;
  letter-spacing: 0.04em;
  margin: 0 0 12px;
  font-weight: 400;
}

.decants-hero-subtext {
  max-width: 620px;
  margin: 0 auto;
  color: #5A564F;
  line-height: 1.8;
  font-size: 0.92rem;
}

/* ==========================================================
   4. LUXURY DISCOVERY VAULT TOP STAGE (EXACT MATCH TO REFERENCE)
   ========================================================== */
.decants-vault-stage-section {
  background-color: #F8F5EE;
  background-image: url('../images/discovery/decant-vault-stage-bg.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding: 36px 0 44px;
  position: relative;
  border-bottom: 1px solid #EAE2D5;
}

.discovery-vault-card {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid #ECE7DE;
  border-radius: 8px;
  padding: 30px 34px 24px;
  box-shadow: 0 14px 40px rgba(35, 25, 16, 0.06);
  position: relative;
}

.vault-card-header {
  display: grid;
  grid-template-columns: 1.35fr auto 1.45fr;
  align-items: center;
  gap: 24px;
  padding-bottom: 20px;
}

.vault-header-left {
  text-align: left;
}

.vault-kicker {
  font-size: 0.65rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #B89558;
  font-weight: 700;
  display: block;
  margin-bottom: 4px;
}

.vault-title {
  font-family: var(--font-serif);
  font-size: 1.65rem;
  font-weight: 400;
  color: #1A1816;
  margin: 0 0 4px;
  line-height: 1.2;
}

.vault-title-sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.15rem;
  color: #4A453E;
  font-weight: 400;
}

.vault-subtitle {
  font-size: 0.82rem;
  color: #7A7266;
  margin: 0;
  line-height: 1.4;
}

/* Center Progress Indicator */
.vault-header-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
}

.vault-dots-indicator {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 6px;
}

.vault-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1.5px solid #C2A268;
  background: #FAF8F5;
  transition: all 0.25s ease;
  position: relative;
  z-index: 2;
}

.vault-dot.active {
  background: #C2A268;
  box-shadow: 0 0 8px rgba(194, 162, 104, 0.5);
  transform: scale(1.1);
}

.vault-line {
  width: 18px;
  height: 1px;
  background: #DED6C9;
  z-index: 1;
}

.vault-count-text {
  font-size: 0.64rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: #8C7752;
}

/* Right Pricing & CTA */
.vault-header-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}

.vault-price-cta-row {
  display: flex;
  align-items: center;
  gap: 20px;
}

.vault-price-box {
  text-align: right;
}

.vault-price-label {
  font-size: 0.60rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8C8478;
  font-weight: 700;
  display: block;
}

.vault-price-value {
  font-family: var(--font-serif);
  font-size: 1.95rem;
  font-weight: 600;
  color: #B89558;
  line-height: 1.05;
  margin-top: 2px;
}

.vault-btn-bag {
  background: #141414;
  color: #FFFFFF;
  border: 1px solid #141414;
  border-radius: 2px;
  padding: 12px 18px;
  font-family: var(--font-sans);
  font-size: 0.70rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
  white-space: nowrap;
}

.vault-btn-bag:hover {
  background: #C2A268;
  border-color: #C2A268;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(194, 162, 104, 0.35);
}

.vault-voucher-hint {
  font-size: 0.70rem;
  color: #8C8478;
  margin-top: 5px;
  text-align: right;
}

/* 5 Flacon Slots Grid */
.vault-slots-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin: 22px 0 24px;
}

.vault-slot-card {
  background: #FAF8F4;
  border: 1px dashed #D6CCBD;
  border-radius: 6px;
  padding: 18px 10px 14px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  min-height: 225px;
  position: relative;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.vault-slot-card:hover {
  border-color: #C2A268;
  background: #FFFDF9;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(194, 162, 104, 0.12);
}

.vault-slot-card.filled {
  border-style: solid;
  border-color: #C2A268;
  background: #FFFFFF;
  box-shadow: 0 6px 20px rgba(194, 162, 104, 0.16);
}

.vault-flacon-svg {
  transition: transform 0.3s ease;
}

.vault-slot-card:hover .vault-flacon-svg {
  transform: scale(1.06);
}

.vault-slot-index-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 6px 0 6px;
}

.vault-slot-num {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: #1A1816;
}

.vault-slot-num-line {
  width: 18px;
  height: 1px;
  background: #C2A268;
  margin-top: 3px;
}

.vault-slot-btn-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.vault-slot-circle-plus {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.2px solid #C2A268;
  color: #C2A268;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.2s ease;
}

.vault-slot-card:hover .vault-slot-circle-plus {
  background: #C2A268;
  color: #FFFFFF;
}

.vault-slot-add-label {
  font-size: 0.64rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: #8C7752;
}

/* Filled slot styles */
.vault-slot-filled-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
}

.vault-slot-remove-btn {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: none;
  background: #F4EBE0;
  color: #8C7752;
  font-size: 11px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  z-index: 5;
}

.vault-slot-remove-btn:hover {
  background: #1A1816;
  color: #FFFFFF;
}

.vault-slot-img-wrap {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}

.vault-slot-img-wrap img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.vault-slot-filled-title {
  font-family: var(--font-serif);
  font-size: 0.86rem;
  font-weight: 600;
  color: #1A1816;
  line-height: 1.2;
  margin-bottom: 2px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-align: center;
}

.vault-slot-filled-brand {
  font-size: 0.60rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #B89558;
  font-weight: 600;
  text-align: center;
}

/* Bottom Centered Divider Line */
.vault-bottom-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
}

.vault-divider-bar {
  flex: 1;
  height: 1px;
  background: #DED6C9;
}

.vault-divider-text {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: #8C7752;
  white-space: nowrap;
}

@media (max-width: 1199px) {
  .vault-card-header {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .vault-header-center {
    grid-column: span 2;
    order: 3;
    padding-top: 10px;
    border-top: 1px solid #EFEAE0;
  }
}

@media (max-width: 900px) {
  .discovery-vault-card {
    padding: 22px 16px 18px;
  }

  .vault-slots-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
}

@media (max-width: 600px) {
  .vault-card-header {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .vault-header-left,
  .vault-header-right {
    align-items: center;
    text-align: center;
  }

  .vault-price-cta-row {
    flex-direction: column;
    gap: 10px;
  }

  .vault-voucher-hint {
    text-align: center;
  }

  .vault-slots-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .vault-divider-text {
    font-size: 0.58rem;
    white-space: normal;
    text-align: center;
  }
}

/* Decants Product Card Design (Exact Match to Screenshot 1 & 2) */
.decants-fullwidth-grid,
.decants-plp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}

.decant-card-item {
  background: #FFFFFF;
  border: 1px solid #ECE7E1;
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.decant-card-item:hover {
  transform: translateY(-4px);
  border-color: #D8CFC4;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.decant-card-body {
  padding: 14px 12px 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  flex-grow: 1;
}

.decant-card-brand {
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #9A7B38;
  font-weight: 600;
  display: block;
  margin-bottom: 4px;
}

.decant-card-title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: #1A1816;
  margin: 0 0 3px;
  line-height: 1.3;
  font-weight: 500;
}

.decant-card-title a {
  color: #1A1816;
  text-decoration: none;
  transition: color 0.15s ease;
}

.decant-card-title a:hover {
  color: #9A7B38;
}

.decant-card-conc {
  font-size: 0.72rem;
  color: #8C867B;
  font-style: italic;
  display: block;
  margin-bottom: 12px;
}

.decant-card-buttons-stack {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: auto;
}

/* Button 1: Solid Gold/Tan Button */
.decant-btn-tray {
  background: #C2A268 !important;
  color: #FFFFFF !important;
  border: 1px solid #C2A268 !important;
  font-weight: 600;
  font-size: 0.70rem;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  padding: 9px 8px;
  border-radius: 2px;
  transition: all 0.2s ease;
  width: 100%;
  box-shadow: 0 2px 6px rgba(194, 162, 104, 0.2);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.decant-btn-tray:hover {
  background: #AF8F53 !important;
  border-color: #AF8F53 !important;
  box-shadow: 0 4px 12px rgba(194, 162, 104, 0.35);
}

/* Button 2: Crisp White Button with Dark Navy/Black Border */
.decant-btn-solo {
  background: #FFFFFF !important;
  color: #1A1816 !important;
  border: 1.5px solid #1A1816 !important;
  font-weight: 600;
  font-size: 0.70rem;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  padding: 8px 8px;
  border-radius: 2px;
  transition: all 0.2s ease;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.decant-btn-solo:hover {
  background: #1A1816 !important;
  color: #FFFFFF !important;
}

@media (max-width: 1399px) {

  .decants-fullwidth-grid,
  .decants-plp-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
}

@media (max-width: 1099px) {

  .decants-fullwidth-grid,
  .decants-plp-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }
}

@media (max-width: 991px) {
  .vial-slots-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767px) {
  .decants-hero-heading {
    font-size: 2.2rem;
  }

  .decants-fullwidth-grid,
  .decants-plp-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .decants-hero-heading {
    font-size: 1.85rem;
  }

  .vial-slots-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .decants-fullwidth-grid,
  .decants-plp-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

/* ==========================================================
   5. MULTI-STEP CHECKOUT & PAYMENT
   ========================================================== */
.checkout-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  padding: 40px 0 80px;
}

.checkout-stepper {
  display: flex;
  justify-content: space-between;
  margin-bottom: 32px;
  position: relative;
}

.checkout-stepper::before {
  content: '';
  position: absolute;
  top: 15px;
  left: 20px;
  right: 20px;
  height: 1px;
  background: var(--border-light);
  z-index: 1;
}

.step-node {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.step-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #F8F9FA;
  border: 1px solid var(--border-light);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 600;
}

.step-node.active .step-circle {
  background: var(--text-primary);
  color: #FFFFFF;
  border-color: var(--text-primary);
}

.step-node.completed .step-circle {
  background: var(--gold-primary);
  color: #FFFFFF;
  border-color: var(--gold-primary);
}

.step-label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.checkout-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: 4px;
  padding: 28px;
  margin-bottom: 24px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.checkout-card-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-light);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-group label {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--text-primary);
}

.form-input {
  padding: 12px 14px;
  border: 1px solid var(--border-light);
  border-radius: 4px;
  background: #FFFFFF;
  color: var(--text-primary);
  font-size: 0.88rem;
}

.form-input:focus {
  border-color: var(--gold-primary);
}

/* Payment Methods Selector */
.payment-methods-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.payment-method-item {
  border: 1px solid var(--border-light);
  border-radius: 4px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.payment-method-item.selected,
.payment-method-item:hover {
  border-color: var(--gold-primary);
  background: #FAFAFA;
}

/* ==========================================================
   6. ORDER TRACKING TIMELINE (/order-tracking)
   ========================================================= */
.tracking-timeline {
  position: relative;
  padding: 30px 0 30px 40px;
}

.tracking-timeline::before {
  content: '';
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 14px;
  width: 2px;
  background: var(--border-gold);
}

.timeline-item {
  position: relative;
  margin-bottom: 28px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-dot {
  position: absolute;
  top: 2px;
  left: -40px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 2px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.timeline-item.completed .timeline-dot {
  background: var(--gold-primary);
  border-color: var(--gold-primary);
  color: #FFFFFF;
}

.timeline-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.timeline-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.timeline-time {
  font-size: 0.72rem;
  color: var(--gold-deep);
  margin-top: 4px;
}

/* Horizontal Scrollable Family Pills on Mobile */
.shop-family-pills-bar {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 4px 0 16px;
  margin-bottom: 20px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.shop-family-pills-bar::-webkit-scrollbar {
  display: none;
}

.pill-tab {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-secondary);
  white-space: nowrap;
  text-decoration: none;
  transition: var(--transition-fast);
  flex-shrink: 0;
}

.pill-tab.active,
.pill-tab:hover {
  background: #111827;
  color: #FFFFFF;
  border-color: #111827;
}

/* Mobile Filter & Sort Bar */
.mobile-shop-action-bar {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 20px;
}

.mobile-action-trigger {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: 4px;
  padding: 12px;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
}

.mobile-action-trigger:active {
  background: #F8F9FA;
  border-color: var(--gold-primary);
}

/* Free Shipping Progress Bar */
.shipping-progress-box {
  background: #FAF7F2;
  border: 1px solid var(--border-gold);
  border-radius: 4px;
  padding: 14px 18px;
  margin-bottom: 24px;
}

.shipping-progress-text {
  font-size: 0.82rem;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-weight: 500;
}

.shipping-progress-bar-wrap {
  width: 100%;
  height: 6px;
  background: #E5E7EB;
  border-radius: var(--radius-pill);
  overflow: hidden;
}

.shipping-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-primary), var(--gold-deep));
  border-radius: var(--radius-pill);
  transition: width 0.4s ease;
}

/* Mobile Order Summary Toggle in Checkout */
.mobile-order-summary-toggle {
  display: none;
  background: #F8F9FA;
  border: 1px solid var(--border-light);
  border-radius: 4px;
  padding: 14px 18px;
  margin-bottom: 20px;
  cursor: pointer;
  align-items: center;
  justify-content: space-between;
}

/* ==========================================================
   RESPONSIVE BREAKPOINTS FOR PAGES
   ========================================================== */
@media (max-width: 1399px) {
  .shop-layout .products-grid-plp,
  .products-grid-plp {
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
  }

  .pair-cards-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
  }
}

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

  .shop-layout .products-grid-plp {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }

  .pair-cards-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }
}

@media (max-width: 900px) {

  .shop-layout,
  .pdp-grid,
  .checkout-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .filter-sidebar {
    position: static;
  }

  .products-grid-plp,
  .shop-layout .products-grid-plp {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }

  .vial-slots-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {

  /* Hero Section */
  .hero-section {
    min-height: auto;
    padding: 36px 0 44px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }

  .hero-subtitle {
    justify-content: center;
    font-size: 0.68rem;
    letter-spacing: 0.22em;
  }

  .hero-title {
    font-size: 2.2rem;
    line-height: 1.18;
    margin-bottom: 16px;
  }

  .hero-description {
    font-size: 0.9rem;
    line-height: 1.65;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 24px;
  }

  .hero-btn-group {
    justify-content: center;
    flex-direction: column;
    gap: 10px;
  }

  .hero-btn-group .btn {
    width: 100%;
  }

  .hero-pedestal-glow {
    width: 280px;
    height: 280px;
  }

  .hero-flacon-img {
    max-height: 320px;
  }

  /* Shop PLP */
  .shop-layout {
    padding: 16px 0 60px;
  }

  .mobile-shop-action-bar {
    display: grid;
  }

  .shop-toolbar {
    display: none;
    /* Replaced with mobile action bar */
  }

  .filter-sidebar {
    display: none;
    /* Shown via mobile drawer/modal when triggered */
  }

  .filter-sidebar.mobile-open {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1050;
    overflow-y: auto;
    padding: 20px;
    animation: fadeIn 0.25s ease;
  }

  .products-grid-plp,
  .shop-layout .products-grid-plp {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .pair-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .product-card {
    border-radius: 4px;
  }

  .product-card-image-wrap {
    padding: 16px 8px;
    height: 155px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .product-card-img {
    max-height: 135px;
  }

  .product-card-body {
    padding: 12px 10px 14px;
  }

  .product-card-brand {
    font-size: 0.62rem;
    letter-spacing: 0.12em;
  }

  .product-card-name {
    font-size: 0.88rem;
    line-height: 1.25;
    margin: 2px 0 4px;
    min-height: 2.5em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .product-card-type {
    font-size: 0.68rem;
    margin-bottom: 6px;
  }

  .product-card-price {
    font-size: 0.95rem;
  }

  .product-card-mrp {
    font-size: 0.75rem;
  }

  .product-quick-actions {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    padding: 0 10px 10px;
    background: transparent;
  }

  .product-quick-actions .btn {
    font-size: 0.68rem;
    padding: 8px;
    min-height: 36px;
  }

  /* Product Details PDP */
  .pdp-grid {
    padding: 16px 0 60px;
    gap: 24px;
  }

  .pdp-gallery-wrap {
    position: static;
  }

  .pdp-main-image-box {
    min-height: 300px;
    padding: 20px;
  }

  .pdp-main-image {
    max-height: 260px;
  }

  .pdp-title {
    font-size: 1.65rem;
  }

  .pdp-current-price {
    font-size: 1.45rem;
  }

  .size-buttons-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .size-btn {
    padding: 10px 8px;
    font-size: 0.74rem;
    text-align: center;
  }

  .sticky-mobile-buy-bar {
    display: flex;
  }

  /* Cart Page Mobile (Scoped to full page only, not drawer) */
  .cart-page-layout .cart-item-row {
    grid-template-columns: 70px 1fr !important;
    gap: 12px !important;
  }

  .cart-page-layout .cart-item-row>div:last-child {
    grid-column: 1 / -1;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    border-top: 1px dashed var(--border-light);
    padding-top: 10px;
    margin-top: 6px;
  }


  /* Checkout Page Mobile */
  .checkout-stepper {
    margin-bottom: 24px;
  }

  .step-label {
    font-size: 0.64rem;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .checkout-card {
    padding: 20px 16px;
  }

  .mobile-order-summary-toggle {
    display: flex;
  }

  /* Decants Lab */
  .vial-slots-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .vial-slot {
    height: 110px;
    padding: 8px;
  }

  /* Hero Carousel Mobile */
  .hero-slider-btn {
    width: 36px;
    height: 36px;
    font-size: 0.95rem;
  }

  .hero-slider-btn.prev {
    left: 10px;
  }

  .hero-slider-btn.next {
    right: 10px;
  }

  .hero-dots-container {
    bottom: 12px;
    gap: 6px;
  }

  .hero-dot-btn {
    width: 20px;
    height: 3px;
  }

  .hero-dot-btn.active,
  .hero-dot-btn:hover {
    width: 32px;
  }
}