/* ============================================================
   SPICESVILLE — Component Styles
   ============================================================ */

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 95vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg-base);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}

.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    hsla(220, 15%, 9%, 0.9) 0%,
    hsla(220, 15%, 9%, 0.6) 40%,
    hsla(43, 74%, 49%, 0.08) 70%,
    hsla(220, 15%, 9%, 0.8) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding: var(--sp-5xl) var(--sp-xl);
  margin: 0 auto 0 10%;
  animation: fadeInUp 0.8s var(--ease-out) both;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  margin-bottom: var(--sp-lg);
}

.hero-eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.hero-title {
  font-family: var(--font-display);
  font-size: var(--fs-hero);
  font-weight: 600;
  line-height: 1.05;
  color: var(--text-primary);
  margin-bottom: var(--sp-xl);
  animation: fadeInUp 0.8s var(--ease-out) 0.15s both;
}

.hero-title .accent {
  color: var(--gold);
  font-style: italic;
}

.hero-subtitle {
  font-size: var(--fs-lg);
  color: var(--text-secondary);
  max-width: 50ch;
  line-height: 1.7;
  margin-bottom: var(--sp-2xl);
  animation: fadeInUp 0.8s var(--ease-out) 0.3s both;
}

.hero-actions {
  display: flex;
  gap: var(--sp-lg);
  flex-wrap: wrap;
  animation: fadeInUp 0.8s var(--ease-out) 0.45s both;
}

.hero-stats {
  display: flex;
  gap: var(--sp-2xl);
  margin-top: var(--sp-3xl);
  animation: fadeInUp 0.8s var(--ease-out) 0.6s both;
}

.hero-stat {}

.hero-stat-number {
  font-family: var(--font-display);
  font-size: var(--fs-3xl);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  display: block;
}

.hero-stat-label {
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-top: 4px;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: var(--sp-2xl);
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-sm);
  color: var(--text-muted);
  font-size: var(--fs-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: fadeIn 1s 1s both;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: float 1.5s ease-in-out infinite;
}

/* ============================================================
   CATEGORY TILES
   ============================================================ */
.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-md);
}

.category-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 3/4;
  background: var(--bg-elevated);
  group: true;
  text-decoration: none;
  display: block;
}

.category-card:hover .category-card-overlay {
  opacity: 1;
}

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

.category-card:hover .category-card-name {
  color: var(--gold);
}

.category-card-image {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.category-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.category-card-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    hsla(220, 15%, 7%, 0.9) 0%,
    hsla(220, 15%, 7%, 0.2) 60%,
    transparent 100%
  );
}

.category-card-overlay {
  position: absolute;
  inset: 0;
  background: hsla(43, 74%, 49%, 0.1);
  border: 2px solid transparent;
  border-radius: inherit;
  opacity: 0;
  transition: opacity var(--duration-base) var(--ease-out),
              border-color var(--duration-base) var(--ease-out);
}

.category-card:hover .category-card-overlay {
  border-color: var(--border-gold);
}

.category-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--sp-xl) var(--sp-lg);
}

.category-card-name {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  font-weight: 600;
  color: var(--text-primary);
  transition: color var(--duration-base);
  margin-bottom: 4px;
}

.category-card-count {
  font-size: var(--fs-xs);
  color: var(--text-muted);
  letter-spacing: 0.08em;
}

/* Category placeholder when no image */
.category-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.category-emoji {
  font-size: 4rem;
  filter: grayscale(0.2);
}

/* ============================================================
   PRODUCT CARD
   ============================================================ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-lg);
}

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

.product-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  transition: border-color var(--duration-base) var(--ease-out),
              box-shadow var(--duration-base) var(--ease-out),
              transform var(--duration-base) var(--ease-out);
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

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

/* Card Image Area */
.product-card-image-wrap {
  position: relative;
  height: 200px;           /* fixed height — no more 1:1 tall stretch */
  overflow: hidden;
  background: #f8f6f2;     /* warm neutral canvas for product photos */
  flex-shrink: 0;
}

.product-card-image {
  width: 100%;
  height: 100%;
  object-fit: contain;     /* show full product, no crop */
  padding: 18px;           /* breathing room around product */
  transition: transform 0.5s var(--ease-out), opacity var(--duration-base);
}

.product-card-image-alt {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity var(--duration-base) var(--ease-out);
}

.product-card:hover .product-card-image { transform: scale(1.05); }
.product-card:hover .product-card-image-alt { opacity: 1; }

/* Select Styling */
.premium-select {
  appearance: none;
  -webkit-appearance: none;
  background-color: var(--bg-surface);
  color: var(--text-primary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: var(--sp-sm) var(--sp-xl) var(--sp-sm) var(--sp-md);
  font-family: var(--font-base);
  font-size: var(--fs-sm);
  cursor: pointer;
  background-image: url('data:image/svg+xml;utf8,<svg fill="%23d4af37" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 8px center;
  transition: border-color var(--duration-fast);
}
.premium-select:hover, .premium-select:focus {
  border-color: var(--gold);
  outline: none;
}

/* Card Badges */
.card-badges {
  position: absolute;
  top: var(--sp-md);
  left: var(--sp-md);
  display: flex;
  flex-direction: column;
  gap: var(--sp-xs);
  z-index: 2;
}

/* Wishlist */
.card-wishlist-btn {
  position: absolute;
  top: var(--sp-md);
  right: var(--sp-md);
  z-index: 2;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-pill);
  background: hsla(220, 15%, 9%, 0.75);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all var(--duration-fast);
}

.card-wishlist-btn:hover,
.card-wishlist-btn.active {
  color: var(--crimson);
  background: hsla(355, 65%, 40%, 0.15);
  border-color: hsla(355, 65%, 40%, 0.4);
}

.card-wishlist-btn.active .icon {
  fill: var(--crimson);
}

.card-wishlist-btn .icon { width: 16px; height: 16px; }

/* Card Quick Actions — appear on hover */
.card-quick-actions {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  gap: var(--sp-xs);
  padding: var(--sp-sm);
  background: linear-gradient(to top, hsla(220, 15%, 9%, 0.95) 0%, transparent 100%);
  transform: translateY(100%);
  transition: transform var(--duration-base) var(--ease-out);
  z-index: 3;
}

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

.card-quick-view-btn {
  flex: 1;
  padding: 0.5rem;
  background: hsla(220, 14%, 17%, 0.9);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-md);
  transition: all var(--duration-fast);
  backdrop-filter: blur(8px);
}

.card-quick-view-btn:hover {
  color: var(--text-primary);
  border-color: var(--border-gold);
}

.card-add-btn {
  flex: 2;
  padding: 0.5rem;
  background: var(--gold);
  color: var(--bg-base);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-md);
  transition: all var(--duration-fast);
}

.card-add-btn:hover {
  background: var(--gold-light);
}

/* Card Body */
.product-card-body {
  padding: var(--sp-sm) var(--sp-md);
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.product-card-category {
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-muted);
}

.product-card-name {
  font-family: var(--font-display);
  font-size: var(--fs-md);
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color var(--duration-fast);
}

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

.product-card-desc {
  font-size: var(--fs-xs);
  color: var(--text-muted);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card-rating {
  display: flex;
  align-items: center;
  gap: var(--sp-xs);
  margin-top: auto;
}

.product-card-footer {
  padding: var(--sp-sm) var(--sp-lg) var(--sp-md);
  border-top: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-sm);
}

.product-card-weight {
  font-size: var(--fs-xs);
  color: var(--text-muted);
  background: var(--bg-elevated);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-subtle);
}

/* ============================================================
   PRODUCT IMAGE PLACEHOLDER
   ============================================================ */
.product-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-elevated);
  font-size: 4rem;
  user-select: none;
}

/* ============================================================
   HORIZONTAL SCROLL STRIP
   ============================================================ */
.products-scroll-wrap {
  position: relative;
}

.products-scroll {
  display: flex;
  gap: var(--sp-lg);
  overflow-x: auto;
  padding-bottom: var(--sp-md);
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
}

.products-scroll::-webkit-scrollbar { display: none; }

.products-scroll .product-card {
  min-width: 240px;
  max-width: 260px;
  flex-shrink: 0;
  scroll-snap-align: start;
}

.scroll-nav {
  display: flex;
  gap: var(--sp-sm);
  align-items: center;
}

.scroll-btn {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-subtle);
  background: var(--bg-elevated);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all var(--duration-fast);
  cursor: pointer;
}

.scroll-btn:hover {
  color: var(--gold);
  border-color: var(--border-gold);
  background: var(--bg-highlight);
}

/* ============================================================
   COLLECTION HERO BANNER
   ============================================================ */
.collection-hero {
  position: relative;
  height: 400px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
  margin-bottom: var(--sp-3xl);
}

.collection-hero-bg {
  position: absolute;
  inset: 0;
}

.collection-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}

.collection-hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, hsla(220, 15%, 9%, 0.95) 0%, transparent 60%);
}

.collection-hero-content {
  position: relative;
  z-index: 1;
  padding: var(--sp-2xl) var(--sp-3xl);
  width: 100%;
}

.collection-hero-eyebrow {
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: var(--sp-sm);
}

.collection-hero-title {
  font-family: var(--font-display);
  font-size: clamp(var(--fs-3xl), 5vw, var(--fs-5xl));
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: var(--sp-md);
}

.collection-hero-desc {
  font-size: var(--fs-md);
  color: var(--text-secondary);
  max-width: 55ch;
}

/* ============================================================
   FILTERS
   ============================================================ */
.collection-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: var(--sp-2xl);
  align-items: start;
}

.filter-sidebar {
  position: sticky;
  top: calc(var(--header-height) + var(--sp-xl));
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: var(--sp-xl);
  max-height: calc(100vh - var(--header-height) - var(--sp-3xl));
  overflow-y: auto;
}

.filter-sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--sp-xl);
}

.filter-sidebar-title {
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.filter-clear-btn {
  font-size: var(--fs-xs);
  color: var(--gold);
  text-decoration: underline;
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
}

.filter-group {
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: var(--sp-lg);
  margin-bottom: var(--sp-lg);
}

.filter-group:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.filter-group-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  margin-bottom: var(--sp-md);
  user-select: none;
}

.filter-group-label {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--text-primary);
}

.filter-group-toggle {
  color: var(--text-muted);
  width: 16px;
  height: 16px;
  transition: transform var(--duration-fast);
}

.filter-group.collapsed .filter-group-toggle {
  transform: rotate(-90deg);
}

.filter-options {
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
}

.filter-options.hidden { display: none; }

.filter-option {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  cursor: pointer;
}

.filter-checkbox {
  width: 16px;
  height: 16px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  background: var(--bg-elevated);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--duration-fast);
}

.filter-option.checked .filter-checkbox {
  background: var(--gold);
  border-color: var(--gold);
}

.filter-option.checked .filter-checkbox::after {
  content: '✓';
  color: var(--bg-base);
  font-size: 10px;
  font-weight: 700;
}

.filter-option-label {
  font-size: var(--fs-sm);
  color: var(--text-secondary);
  transition: color var(--duration-fast);
}

.filter-option:hover .filter-option-label,
.filter-option.checked .filter-option-label {
  color: var(--text-primary);
}

.filter-option-count {
  font-size: var(--fs-xs);
  color: var(--text-muted);
  margin-left: auto;
}

/* Price Range */
.price-range-wrap {
  padding: var(--sp-sm) 0;
}

.price-range-input {
  width: 100%;
  -webkit-appearance: none;
  background: var(--bg-highlight);
  height: 4px;
  border-radius: var(--radius-pill);
  outline: none;
  cursor: pointer;
}

.price-range-input::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gold);
  cursor: pointer;
  box-shadow: 0 0 8px hsla(43, 74%, 49%, 0.4);
}

.price-labels {
  display: flex;
  justify-content: space-between;
  font-size: var(--fs-xs);
  color: var(--text-muted);
  margin-top: var(--sp-sm);
}

/* Active Filters */
.active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-sm);
  margin-bottom: var(--sp-xl);
}

.active-filter-tag {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-xs);
  padding: 4px 12px;
  background: hsla(43, 74%, 49%, 0.12);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-pill);
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--gold);
  cursor: pointer;
  transition: all var(--duration-fast);
}

.active-filter-tag:hover {
  background: hsla(43, 74%, 49%, 0.2);
}

/* Collection Toolbar */
.collection-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--sp-xl);
  gap: var(--sp-md);
}

.collection-count {
  font-size: var(--fs-sm);
  color: var(--text-muted);
}

.collection-count span {
  color: var(--text-primary);
  font-weight: 600;
}

.sort-select {
  background: var(--bg-elevated);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 0.5rem 1rem;
  color: var(--text-primary);
  font-size: var(--fs-sm);
  cursor: pointer;
  font-family: var(--font-body);
}

.sort-select:focus {
  outline: none;
  border-color: var(--gold);
}

/* Mobile Filter Button */
.mobile-filter-btn {
  display: none;
  align-items: center;
  gap: var(--sp-sm);
  padding: 0.5rem 1rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: var(--fs-sm);
  font-weight: 600;
  cursor: pointer;
}

/* Filter Drawer (Mobile) */
.filter-drawer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: var(--z-drawer);
  background: var(--bg-surface);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  border-top: 1px solid var(--border-subtle);
  max-height: 80vh;
  overflow-y: auto;
  transform: translateY(100%);
  transition: transform var(--duration-slow) var(--ease-out);
  padding: var(--sp-xl);
}

.filter-drawer.open { transform: translateY(0); }

.filter-drawer-handle {
  width: 40px;
  height: 4px;
  background: var(--bg-highlight);
  border-radius: var(--radius-pill);
  margin: 0 auto var(--sp-xl);
}

/* ============================================================
   PRODUCT DETAIL PAGE
   ============================================================ */
.pdp-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--sp-3xl);
  align-items: start;
}

.pdp-gallery {
  position: sticky;
  top: calc(var(--header-height) + var(--sp-xl));
}

.pdp-main-image {
  aspect-ratio: 1;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--bg-elevated);
  margin-bottom: var(--sp-md);
  cursor: zoom-in;
}

.pdp-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease-out);
}

.pdp-main-image:hover img {
  transform: scale(1.04);
}

.pdp-thumbnails {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--sp-sm);
}

.pdp-thumb {
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color var(--duration-fast);
  background: var(--bg-elevated);
}

.pdp-thumb.active { border-color: var(--gold); }
.pdp-thumb:hover  { border-color: var(--border-gold); }

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

/* PDP Info Panel */
.pdp-info {}

.pdp-breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--sp-xs);
  font-size: var(--fs-xs);
  color: var(--text-muted);
  margin-bottom: var(--sp-lg);
}

.pdp-breadcrumb a { transition: color var(--duration-fast); }
.pdp-breadcrumb a:hover { color: var(--gold); }
.pdp-breadcrumb-sep { color: var(--text-muted); opacity: 0.5; }

.pdp-badges { display: flex; gap: var(--sp-xs); flex-wrap: wrap; margin-bottom: var(--sp-lg); }

.pdp-name {
  font-family: var(--font-display);
  font-size: clamp(var(--fs-2xl), 4vw, var(--fs-4xl));
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: var(--sp-md);
}

.pdp-rating {
  display: flex;
  align-items: center;
  gap: var(--sp-md);
  margin-bottom: var(--sp-xl);
}

.pdp-write-review {
  font-size: var(--fs-xs);
  color: var(--gold);
  cursor: pointer;
}

.pdp-price-section {
  margin-bottom: var(--sp-xl);
  padding: var(--sp-lg);
  background: var(--bg-elevated);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
}

.pdp-price-current {
  font-family: var(--font-display);
  font-size: var(--fs-4xl);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  display: block;
}

.pdp-price-sub {
  display: flex;
  align-items: center;
  gap: var(--sp-md);
  margin-top: var(--sp-sm);
}

.pdp-short-desc {
  font-size: var(--fs-base);
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--sp-xl);
}

/* Origin Info */
.pdp-origin-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-sm);
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: var(--sp-sm) var(--sp-md);
  font-size: var(--fs-sm);
  color: var(--text-secondary);
  margin-bottom: var(--sp-xl);
}

.pdp-origin-badge strong { color: var(--text-primary); }

/* Variant Selector */
.variant-section {
  margin-bottom: var(--sp-xl);
}

.variant-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: var(--fs-sm);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: var(--sp-md);
}

.variant-pills {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-sm);
}

.variant-pill {
  padding: 0.5rem 1.25rem;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-pill);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--duration-fast);
  background: var(--bg-elevated);
}

.variant-pill:hover {
  border-color: var(--border-gold);
  color: var(--text-primary);
}

.variant-pill.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--bg-base);
}

.variant-pill.out-of-stock {
  opacity: 0.4;
  cursor: not-allowed;
  text-decoration: line-through;
}

/* Quantity */
.qty-section {
  margin-bottom: var(--sp-xl);
}

.qty-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-pill);
  overflow: hidden;
  background: var(--bg-elevated);
}

.qty-wrapper .qty-btn {
  width: 44px;
  height: 44px;
  border-radius: 0;
  border: none;
  border-right: 1px solid var(--border-light);
  background: none;
}

.qty-wrapper .qty-btn:last-child {
  border-right: none;
  border-left: 1px solid var(--border-light);
}

.qty-wrapper .qty-value {
  padding: 0 var(--sp-xl);
  font-size: var(--fs-md);
  font-weight: 600;
}

/* PDP CTAs */
.pdp-cta-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-md);
  margin-bottom: var(--sp-lg);
}

.pdp-cta-group .btn-gold { font-size: var(--fs-base); padding: 1rem; }
.pdp-cta-group .btn-outline { font-size: var(--fs-base); padding: 1rem; }

.pdp-wish-share {
  display: flex;
  gap: var(--sp-md);
  margin-bottom: var(--sp-xl);
}

/* PDP Feature Badges */
.pdp-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-md);
  margin-bottom: var(--sp-xl);
}

.pdp-feature {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  font-size: var(--fs-xs);
  color: var(--text-secondary);
}

.pdp-feature .icon { color: var(--gold); width: 16px; height: 16px; }

/* PDP Tabs */
.pdp-tabs {
  margin-top: var(--sp-4xl);
}

.pdp-tabs-nav {
  display: flex;
  border-bottom: 1px solid var(--border-subtle);
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.pdp-tabs-nav::-webkit-scrollbar { display: none; }

.pdp-tab-btn {
  padding: var(--sp-md) var(--sp-lg);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: all var(--duration-fast);
  background: none;
  border-left: none;
  border-right: none;
  border-top: none;
  cursor: pointer;
}

.pdp-tab-btn:hover { color: var(--text-primary); }
.pdp-tab-btn.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.pdp-tab-panel {
  padding: var(--sp-2xl) 0;
  display: none;
}

.pdp-tab-panel.active { display: block; animation: fadeIn var(--duration-base) var(--ease-out); }

.tab-prose {
  font-size: var(--fs-base);
  color: var(--text-secondary);
  line-height: 1.8;
}

.tab-prose h4 {
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin: var(--sp-xl) 0 var(--sp-sm);
}

.tab-prose p + p { margin-top: var(--sp-md); }

/* Nutrition Table */
.nutrition-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--fs-sm);
}

.nutrition-table th, .nutrition-table td {
  padding: 0.6rem var(--sp-md);
  text-align: left;
  border-bottom: 1px solid var(--border-subtle);
}

.nutrition-table th {
  font-weight: 600;
  color: var(--text-secondary);
  background: var(--bg-elevated);
}

.nutrition-table td { color: var(--text-primary); }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews-summary {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--sp-3xl);
  align-items: center;
  margin-bottom: var(--sp-2xl);
  padding: var(--sp-2xl);
  background: var(--bg-elevated);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-subtle);
}

.reviews-big-number {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.reviews-bars {
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
}

.review-bar-row {
  display: flex;
  align-items: center;
  gap: var(--sp-md);
}

.review-bar-label { font-size: var(--fs-xs); color: var(--text-muted); width: 20px; }

.review-bar-track {
  flex: 1;
  height: 6px;
  background: var(--bg-highlight);
  border-radius: var(--radius-pill);
  overflow: hidden;
}

.review-bar-fill {
  height: 100%;
  background: var(--gold);
  border-radius: var(--radius-pill);
  transition: width 0.6s var(--ease-out);
}

.review-bar-count { font-size: var(--fs-xs); color: var(--text-muted); width: 24px; text-align: right; }

/* Review List */
.reviews-list { display: flex; flex-direction: column; gap: var(--sp-xl); }

.review-card {
  padding: var(--sp-xl);
  background: var(--bg-elevated);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
}

.review-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: var(--sp-md); }
.review-author { font-weight: 600; font-size: var(--fs-sm); }
.review-date { font-size: var(--fs-xs); color: var(--text-muted); }
.review-title { font-family: var(--font-display); font-size: var(--fs-lg); margin-bottom: var(--sp-sm); }
.review-body { font-size: var(--fs-sm); color: var(--text-secondary); line-height: 1.7; }

/* ============================================================
   EDITORIAL / FEATURE SECTIONS
   ============================================================ */
.editorial-dark {
  background: var(--bg-base);
  position: relative;
  overflow: hidden;
}

.editorial-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}

.editorial-image {
  position: relative;
  overflow: hidden;
}

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

.editorial-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--sp-5xl) var(--sp-4xl);
}

/* Dark Feature Banner */
.feature-banner {
  position: relative;
  padding: var(--sp-4xl) 0;
  overflow: hidden;
}

.feature-banner-bg {
  position: absolute;
  inset: 0;
}

.feature-banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.feature-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, hsla(220, 15%, 9%, 0.95), hsla(40, 40%, 15%, 0.7));
}

.feature-banner-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 var(--sp-xl);
}

/* ============================================================
   GIFT COLLECTIONS SECTION
   ============================================================ */
.gift-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: var(--sp-md);
}

.gift-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: var(--bg-elevated);
  text-decoration: none;
  display: block;
  min-height: 260px;
  height: 100%;
}

.gift-card:hover .gift-card-image img {
  transform: scale(1.05);
}

.gift-card-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.gift-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}

.gift-card--featured {
  min-height: 540px;
}

.gift-card-content {
  padding: var(--sp-lg);
  background: linear-gradient(to top, hsla(220, 15%, 9%, 0.95), transparent);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.gift-card-title {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  color: var(--text-primary);
  margin-bottom: var(--sp-xs);
}

.gift-card-sub { font-size: var(--fs-xs); color: var(--gold); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-xl);
}

.testimonial-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: var(--sp-2xl);
  position: relative;
}

.testimonial-quote {
  font-size: 3rem;
  color: var(--gold);
  opacity: 0.4;
  font-family: var(--font-display);
  line-height: 1;
  margin-bottom: var(--sp-md);
}

.testimonial-text {
  font-size: var(--fs-base);
  color: var(--text-secondary);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: var(--sp-xl);
}

.testimonial-author { display: flex; align-items: center; gap: var(--sp-md); }
.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-highlight);
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.testimonial-name { font-weight: 600; font-size: var(--fs-sm); }
.testimonial-location { font-size: var(--fs-xs); color: var(--text-muted); }

/* ============================================================
   CART PAGE
   ============================================================ */
.cart-page-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: var(--sp-2xl);
  align-items: start;
}

.cart-page-items { }
.cart-page-item {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: var(--sp-xl);
  padding: var(--sp-xl) 0;
  border-bottom: 1px solid var(--border-subtle);
  align-items: center;
}

.cart-page-image {
  width: 100px;
  height: 100px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-elevated);
}

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

.cart-order-summary {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: var(--sp-2xl);
  position: sticky;
  top: calc(var(--header-height) + var(--sp-xl));
}

.order-summary-title {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  margin-bottom: var(--sp-xl);
}

.order-summary-row {
  display: flex;
  justify-content: space-between;
  font-size: var(--fs-sm);
  padding: var(--sp-sm) 0;
  border-bottom: 1px solid var(--border-subtle);
}

.order-summary-row:last-of-type { border-bottom: none; }

.order-summary-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: var(--sp-xl);
  padding-top: var(--sp-lg);
  border-top: 1px solid var(--border-subtle);
}

.order-total-label { font-size: var(--fs-md); font-weight: 700; }
.order-total-value {
  font-family: var(--font-display);
  font-size: var(--fs-2xl);
  font-weight: 700;
  color: var(--gold);
}

.promo-form {
  display: flex;
  gap: var(--sp-sm);
  margin-bottom: var(--sp-xl);
}

/* ============================================================
   ADMIN PANEL
   ============================================================ */
.admin-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  min-height: 100vh;
}

.admin-sidebar {
  background: var(--bg-surface);
  border-right: 1px solid var(--border-subtle);
  padding: var(--sp-xl);
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
}

.admin-sidebar-title {
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--sp-lg);
}

.admin-nav-link {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  padding: var(--sp-sm) var(--sp-md);
  border-radius: var(--radius-md);
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--text-secondary);
  transition: all var(--duration-fast);
  margin-bottom: var(--sp-xs);
}

.admin-nav-link:hover,
.admin-nav-link.active {
  background: var(--bg-elevated);
  color: var(--text-primary);
}

.admin-nav-link.active { color: var(--gold); }
.admin-nav-link .icon { width: 16px; height: 16px; }

.admin-content {
  padding: var(--sp-2xl);
  overflow-y: auto;
}

.admin-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--sp-2xl);
  gap: var(--sp-lg);
}

.admin-title {
  font-family: var(--font-display);
  font-size: var(--fs-3xl);
  font-weight: 600;
}

/* Dashboard Stats */
.admin-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-lg);
  margin-bottom: var(--sp-2xl);
}

.admin-stat-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--sp-xl);
}

.admin-stat-label {
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: var(--sp-sm);
}

.admin-stat-value {
  font-family: var(--font-display);
  font-size: var(--fs-3xl);
  font-weight: 700;
  color: var(--gold);
}

.admin-stat-sub {
  font-size: var(--fs-xs);
  color: var(--text-muted);
  margin-top: var(--sp-xs);
}

/* Admin Table */
.admin-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--fs-sm);
}

.admin-table th {
  background: var(--bg-elevated);
  padding: var(--sp-md) var(--sp-lg);
  text-align: left;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border-subtle);
  white-space: nowrap;
}

.admin-table td {
  padding: var(--sp-md) var(--sp-lg);
  border-bottom: 1px solid var(--border-subtle);
  vertical-align: middle;
}

.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: var(--bg-elevated); }

.admin-table-image {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--bg-highlight);
  overflow: hidden;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.admin-table-image img { width: 100%; height: 100%; object-fit: cover; }

.admin-action-btns {
  display: flex;
  gap: var(--sp-xs);
}

.admin-icon-btn {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-subtle);
  background: var(--bg-elevated);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all var(--duration-fast);
  cursor: pointer;
}

.admin-icon-btn:hover { color: var(--text-primary); border-color: var(--border-gold); }
.admin-icon-btn.danger:hover { color: var(--crimson); border-color: hsla(355, 65%, 40%, 0.4); }
.admin-icon-btn .icon { width: 14px; height: 14px; }

/* Admin Form */
.admin-form {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: var(--sp-2xl);
}

.admin-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-xl);
}

.admin-form-group {
  display: flex;
  flex-direction: column;
  gap: var(--sp-xs);
}

.admin-form-group.span-2 { grid-column: span 2; }

.admin-form-label {
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.admin-form-input,
.admin-form-select,
.admin-form-textarea {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 0.7rem 1rem;
  color: var(--text-primary);
  font-size: var(--fs-sm);
  font-family: var(--font-body);
  transition: border-color var(--duration-fast);
  width: 100%;
}

.admin-form-input:focus,
.admin-form-select:focus,
.admin-form-textarea:focus {
  outline: none;
  border-color: var(--gold);
}

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

/* Admin Passcode */
.admin-passcode-screen {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-base);
}

.admin-passcode-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: var(--sp-3xl);
  width: 100%;
  max-width: 420px;
  text-align: center;
}

.admin-passcode-logo { margin-bottom: var(--sp-xl); }
.admin-passcode-title { font-family: var(--font-display); font-size: var(--fs-2xl); margin-bottom: var(--sp-sm); }
.admin-passcode-sub { font-size: var(--fs-sm); color: var(--text-muted); margin-bottom: var(--sp-2xl); }
.admin-passcode-error { color: var(--crimson); font-size: var(--fs-sm); margin-top: var(--sp-sm); }

/* ============================================================
   CHECKOUT FLOW
   ============================================================ */
.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: var(--sp-3xl);
  align-items: start;
}

.checkout-steps {
  display: flex;
  align-items: center;
  gap: var(--sp-md);
  margin-bottom: var(--sp-2xl);
}

.checkout-step {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  font-size: var(--fs-sm);
  color: var(--text-muted);
}

.checkout-step.active { color: var(--text-primary); }
.checkout-step.done  { color: var(--gold); }

.checkout-step-number {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid currentColor;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-xs);
  font-weight: 700;
  flex-shrink: 0;
}

.checkout-step.done .checkout-step-number {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--bg-base);
}

.checkout-step-sep {
  flex: 1;
  height: 1px;
  background: var(--border-subtle);
  max-width: 60px;
}

.checkout-section {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: var(--sp-2xl);
  margin-bottom: var(--sp-xl);
}

.checkout-section-title {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  margin-bottom: var(--sp-xl);
}

.checkout-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-md);
}

/* Payment Icons */
.payment-icons {
  display: flex;
  gap: var(--sp-sm);
  flex-wrap: wrap;
  margin-top: var(--sp-md);
}

.payment-icon {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 4px 10px;
  font-size: var(--fs-xs);
  color: var(--text-muted);
}

/* Order Confirmation */
.order-confirmation {
  text-align: center;
  padding: var(--sp-5xl) var(--sp-xl);
  max-width: 600px;
  margin: 0 auto;
}

.order-checkmark {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: hsla(160, 60%, 35%, 0.15);
  border: 2px solid hsl(160, 60%, 35%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--sp-xl);
  color: hsl(160, 60%, 45%);
  animation: scaleIn var(--duration-slow) var(--ease-spring);
}

/* ============================================================
   WISHLIST PAGE
   ============================================================ */
.wishlist-empty {
  text-align: center;
  padding: var(--sp-5xl) var(--sp-xl);
}

.wishlist-empty-icon {
  font-size: 4rem;
  margin-bottom: var(--sp-xl);
  opacity: 0.5;
}

/* ============================================================
   SEARCH PAGE
   ============================================================ */
.search-page-header {
  padding: var(--sp-3xl) 0 var(--sp-xl);
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: var(--sp-2xl);
}

.search-page-query {
  font-family: var(--font-display);
  font-size: var(--fs-3xl);
}

.search-page-query span { color: var(--gold); }

.search-no-results {
  text-align: center;
  padding: var(--sp-4xl) var(--sp-xl);
}

/* ============================================================
   EMPTY STATE
   ============================================================ */
.empty-state {
  text-align: center;
  padding: var(--sp-4xl) var(--sp-xl);
}

.empty-state-icon {
  font-size: 4rem;
  margin-bottom: var(--sp-xl);
  opacity: 0.4;
}

.empty-state-title {
  font-family: var(--font-display);
  font-size: var(--fs-2xl);
  margin-bottom: var(--sp-sm);
}

.empty-state-text {
  font-size: var(--fs-base);
  color: var(--text-muted);
  max-width: 40ch;
  margin: 0 auto var(--sp-xl);
}

/* ============================================================
   MARQUEE / TICKER (for brand info strip)
   ============================================================ */
.marquee-strip {
  background: var(--gold);
  padding: var(--sp-md) 0;
  overflow: hidden;
}

.marquee-inner {
  display: flex;
  gap: var(--sp-3xl);
  white-space: nowrap;
  animation: ticker 40s linear infinite;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--bg-base);
  letter-spacing: 0.06em;
  flex-shrink: 0;
}

.marquee-sep {
  color: var(--bg-base);
  opacity: 0.5;
  font-size: 1.5rem;
}

/* ============================================================
   RECOMMENDATION SECTIONS
   ============================================================ */
.recommendations {
  padding: var(--sp-3xl) 0;
  border-top: 1px solid var(--border-subtle);
}

.recommendations-title {
  font-family: var(--font-display);
  font-size: var(--fs-2xl);
  margin-bottom: var(--sp-xl);
}

@media (max-width: 991.98px) {
  .sidebar-filters {
    display: none;
  }
  .sidebar-filters.show {
    display: block;
    margin-bottom: 2rem;
  }
}


/* ============================================================
   EDITORIAL BENTO GRID
   ============================================================ */
.category-editorial-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: var(--sp-md);
}
.category-editorial-grid > a {
  aspect-ratio: auto !important;
  height: 100%;
  min-height: 100%;
}
.category-editorial-grid > a:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.category-editorial-grid > a:nth-child(2) { grid-column: span 2; grid-row: span 1; }
.category-editorial-grid > a:nth-child(3) { grid-column: span 1; grid-row: span 1; }
.category-editorial-grid > a:nth-child(4) { grid-column: span 1; grid-row: span 1; }
.category-editorial-grid > a:nth-child(5) { grid-column: span 2; grid-row: span 1; }
.category-editorial-grid > a:nth-child(6) { grid-column: span 1; grid-row: span 1; }
.category-editorial-grid > a:nth-child(7) { grid-column: span 1; grid-row: span 1; }
.category-editorial-grid > a:nth-child(8) { grid-column: span 2; grid-row: span 1; }

@media (max-width: 900px) {
  .category-editorial-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .category-editorial-grid > a { grid-column: span 1 !important; grid-row: span 1 !important; }
  .category-editorial-grid > a:nth-child(1) { grid-column: span 2 !important; grid-row: span 2 !important; }
}

@media (max-width: 575.98px) {
  .category-editorial-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .category-editorial-grid > a { grid-column: span 1 !important; grid-row: span 1 !important; }
}


/* ============================================================
   PRODUCT PAGE (PDP) STYLES
   ============================================================ */

.pdp-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-2xl);
}
@media (min-width: 992px) {
  .pdp-grid {
    grid-template-columns: 1fr 1fr;
    align-items: flex-start;
  }
}

.pdp-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-md);
}
@media (min-width: 576px) {
  .pdp-features-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.custom-breadcrumb {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}
.custom-breadcrumb li {
  display: flex;
  align-items: center;
}
.custom-breadcrumb li:not(:last-child)::after {
  content: "/";
  margin: 0 var(--sp-xs);
  color: var(--text-muted);
}

.pdp-tabs {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0 0 var(--sp-xl) 0;
  border-bottom: 1px solid var(--border-subtle);
  overflow-x: auto;
}
.pdp-tab-btn {
  background: none;
  border: none;
  padding: var(--sp-md) var(--sp-lg);
  color: var(--text-secondary);
  font-weight: 600;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  white-space: nowrap;
  transition: all 0.3s ease;
}
.pdp-tab-btn:hover {
  color: var(--text-primary);
}
.pdp-tab-btn.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.pdp-tab-pane {
  display: none;
  animation: fadeIn 0.4s ease-out;
}
.pdp-tab-pane.active {
  display: block;
}

.pdp-reviews-grid, .pdp-shipping-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-xl);
}
@media (min-width: 768px) {
  .pdp-reviews-grid {
    grid-template-columns: 1fr 2fr;
  }
  .pdp-shipping-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.main-image-container {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), inset 0 0 0 1px hsla(43, 74%, 49%, 0.2);
  transition: transform 0.3s ease;
}
.main-image-container:hover {
  transform: translateY(-5px);
}

/* ============================================================
   PREMIUM HOVER ANIMATIONS
   ============================================================ */

.hover-zoom-img {
  transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.premium-hover-card, .editorial-image {
  overflow: hidden;
  border-radius: 12px;
}

.premium-hover-card:hover .hover-zoom-img,
.editorial-image:hover .hover-zoom-img {
  transform: scale(1.08);
}

.premium-hover-card {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.premium-hover-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(212, 175, 55, 0.3);
}

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

/* ============================================================
   RESPONSIVE UTILITIES
   ============================================================ */
.responsive-grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-xl);
}
@media (min-width: 768px) {
  .responsive-grid-2 {
    grid-template-columns: 1fr 1fr;
  }
}

.responsive-grid-4 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-md);
}
@media (min-width: 576px) {
  .responsive-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .responsive-grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Editorial Split */
.editorial-split {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--sp-4xl);
  align-items: center;
}

/* ============================================================
   DIETARY PREFERENCES / SHOP BY LIFESTYLE (BASE GRID)
   ============================================================ */
.dietary-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-2xl);
  max-width: 880px;
  margin: var(--sp-2xl) auto 0 auto;
  align-items: flex-start;
  justify-content: center;
}

.dietary-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  color: var(--text-primary);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.dietary-card div {
  width: 115px;
  height: 115px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--sp-md) auto;
  background: var(--bg-elevated);
  font-size: 2.2rem;
  color: var(--gold);
  transition: all 0.35s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.dietary-card:hover {
  transform: translateY(-8px);
}

.dietary-card:hover div {
  background: var(--gold);
  color: #000;
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.4);
}

.dietary-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--text-primary);
  margin: 0;
}

/* ============================================================
   BRAND VIDEO SHOWCASE & PULSE ANIMATION
   ============================================================ */
.video-play-btn {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--gold);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  cursor: pointer;
  box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
  animation: pulseGold 2s infinite;
  transition: transform 0.3s ease;
  margin: 0 auto var(--sp-lg) auto;
}

.video-play-btn:hover {
  transform: scale(1.1);
  background: #fff;
  color: #000;
}

@keyframes pulseGold {
  0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7); }
  70% { box-shadow: 0 0 0 22px rgba(212, 175, 55, 0); }
  100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

.video-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  padding: 20px;
}

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

.video-modal-content {
  width: 100%;
  max-width: 900px;
  background: #0d1117;
  border-radius: 16px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,0.8);
  position: relative;
}

.video-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0,0,0,0.6);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.2s ease;
}

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

/* Floating Scroll-to-Top Button */
.back-to-top-btn {
  position: fixed;
  bottom: 95px;
  right: 24px;
  width: 46px;
  height: 46px;
  background: var(--bg-elevated);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}

.back-to-top-btn.visible {
  opacity: 1;
  pointer-events: auto;
}

.back-to-top-btn:hover {
  background: var(--gold);
  color: #000;
  transform: translateY(-4px);
}

/* ============================================================
   WHATSAPP WIDGET
   ============================================================ */
.whatsapp-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}

.whatsapp-widget:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
  color: white;
}

.whatsapp-tooltip {
  position: absolute;
  right: 75px;
  background: var(--bg-surface);
  color: var(--text-primary);
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transform: translateX(10px);
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  border: 1px solid var(--border-subtle);
}

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

@media (max-width: 767px) {
  .whatsapp-widget {
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
  }
  .whatsapp-tooltip {
    display: none;
  }
}

/* ============================================================
   PDP ACTION BAR
   ============================================================ */
.pdp-action-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--sp-md);
  margin-bottom: var(--sp-2xl);
  padding-bottom: var(--sp-2xl);
  border-bottom: 1px solid var(--border-subtle);
}

.btn-add-to-cart {
  flex: 1;
  height: 54px;
  font-size: var(--fs-md);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-sm);
  border-radius: var(--radius-pill);
}

.btn-wishlist {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-wishlist.hover {
  color: var(--crimson);
  border-color: var(--crimson);
}

/* ============================================================
   HERO SLIDER
   ============================================================ */
.hero-slider-section {
  position: relative;
  height: 90vh;
  min-height: 600px;
  max-height: 900px;
  overflow: hidden;
  background: #000;
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(17,17,17,0.85) 0%, rgba(17,17,17,0.4) 100%);
  z-index: 1;
}

.hero-slide-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 0 var(--sp-xl);
}

.hero-slide.active .animate-slide-up {
  animation: slideUpFade 1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes slideUpFade {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}

.hero-slider-controls {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: var(--sp-lg);
}

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

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

.hero-slider-arrow {
  background: rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-slider-arrow:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #000;
}

.hero-stats-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(17,17,17,0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-around;
  padding: var(--sp-md) var(--sp-xl);
  z-index: 10;
}

.hero-stat-divider {
  width: 1px;
  background: rgba(255,255,255,0.1);
}

/* ============================================================
   CATEGORY PILLS
   ============================================================ */
.category-pills-section {
  padding: var(--sp-xl) 0;
  background: var(--bg-default);
  border-bottom: 1px solid var(--border-subtle);
}

.category-pills-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.category-pills {
  display: flex;
  gap: var(--sp-md);
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 10px 0;
  flex: 1;
}

.category-pills::-webkit-scrollbar {
  display: none;
}

.category-pill {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-pill);
  padding: 6px 16px 6px 6px;
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 500;
  font-size: var(--fs-sm);
  white-space: nowrap;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.category-pill:hover {
  border-color: var(--gold);
  background: rgba(212, 175, 55, 0.05);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.category-pill-img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  overflow: hidden;
  background: #fff;
}

.category-pill-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 4px;
}

.pills-scroll-btn {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  position: absolute;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.pills-scroll-btn:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.pills-prev { left: -20px; }
.pills-next { right: -20px; }

/* ============================================================
   DELIVERY BANNER
   ============================================================ */
.delivery-banner {
  background: #111;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: var(--sp-xl) 0;
}

.delivery-banner-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-lg);
  flex-wrap: wrap;
}

.delivery-banner-item {
  display: flex;
  align-items: center;
  gap: var(--sp-md);
  flex: 1;
  min-width: 220px;
}

.delivery-banner-icon {
  font-size: 2rem;
  color: var(--gold);
}

.delivery-banner-item div {
  display: flex;
  flex-direction: column;
}

.delivery-banner-item strong {
  font-size: var(--fs-md);
  color: var(--text-primary);
  margin-bottom: 4px;
}

.delivery-banner-item span {
  font-size: var(--fs-xs);
  color: var(--text-secondary);
}

.delivery-banner-divider {
  width: 1px;
  height: 40px;
  background: var(--border-subtle);
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-section {
  padding: 80px 0;
  background: var(--bg-default);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--sp-2xl);
  text-align: center;
}

.trust-icon-wrap {
  width: 80px;
  height: 80px;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--sp-md);
  color: var(--gold);
  font-size: 2.5rem;
  transition: transform 0.4s ease;
}

.trust-item:hover .trust-icon-wrap {
  transform: translateY(-10px) scale(1.1);
  background: var(--gold);
  color: #111;
}

.trust-title {
  font-size: var(--fs-lg);
  font-family: var(--font-heading);
  margin-bottom: var(--sp-sm);
  color: var(--text-primary);
}

.trust-desc {
  font-size: var(--fs-sm);
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ============================================================
   DEALS OF THE DAY
   ============================================================ */
.deals-section {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}

.deals-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.deals-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(212,175,55,0.15) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.5;
}

.deals-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: var(--sp-2xl);
  flex-wrap: wrap;
  gap: var(--sp-xl);
}

.countdown-wrap {
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(212,175,55,0.3);
  border-radius: var(--radius-lg);
  padding: var(--sp-md) var(--sp-xl);
  display: flex;
  align-items: center;
  gap: var(--sp-lg);
  backdrop-filter: blur(10px);
}

.countdown-label {
  color: var(--gold);
  font-weight: 600;
  font-size: var(--fs-md);
}

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

.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.count-num {
  font-size: 2rem;
  font-weight: 700;
  font-family: var(--font-heading);
  color: #fff;
  line-height: 1;
  background: rgba(255,255,255,0.1);
  padding: 8px 12px;
  border-radius: 8px;
  min-width: 50px;
  text-align: center;
}

.count-label {
  font-size: 10px;
  color: var(--text-muted);
  margin-top: 4px;
  letter-spacing: 1px;
}

.countdown-sep {
  font-size: 2rem;
  color: var(--gold);
  font-weight: bold;
  margin-top: -16px;
}

/* ============================================================
   SOCIAL GALLERY
   ============================================================ */
.social-gallery-section {
  padding: 80px 0;
  background: var(--bg-default);
}

.social-gallery-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: var(--sp-2xl);
}

.social-gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
}

.social-tile {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  display: block;
}

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

.social-tile-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;/* ==========================================================================
   CHECKOUT PREMIUM LIGHT THEME 
   ========================================================================== */

.checkout-page {
  /* Override dark theme globally for the checkout container */
  --bg-default: #FDFBF7; /* Warm ivory / cream */
  --bg-surface: #FFFFFF;
  --bg-elevated: #F9F6F0;
  
  --text-primary: #3E2723; /* Deep walnut brown */
  --text-secondary: #5D4037;
  --text-muted: #8D6E63;
  
  --border-subtle: #EFEBE4;
  --border-default: #E0D4C3;
  --border-strong: #C4A482;
  
  --gold: #D4AF37; /* Muted gold */
  --gold-hover: #C5A030;
  
  --success: #93C572; /* Pistachio green */
  
  background-color: var(--bg-default);
  color: var(--text-primary);
  min-height: 100vh;
  font-family: var(--font-base); /* sans-serif */
}

/* Typography Overrides */
.checkout-page h1, 
.checkout-page h2, 
.checkout-page h3, 
.checkout-page h4, 
.checkout-page h5 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--text-primary);
  font-weight: 600;
}

.checkout-page .checkout-header {
  border-bottom: 1px solid var(--border-subtle);
  padding: var(--sp-lg) 0;
  background: var(--bg-surface);
}

/* Premium Form Elements */
.checkout-input {
  width: 100%;
  padding: var(--sp-md) var(--sp-lg);
  background-color: var(--bg-surface);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: var(--fs-md);
  transition: all 0.3s ease;
  font-family: var(--font-base);
}

.checkout-input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.checkout-input::placeholder {
  color: var(--text-muted);
}

.checkout-label {
  display: block;
  font-size: var(--fs-sm);
  color: var(--text-secondary);
  margin-bottom: var(--sp-xs);
  font-weight: 500;
}

/* Selectable Cards */
.checkout-selectable-card {
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  padding: var(--sp-md);
  cursor: pointer;
  background: var(--bg-surface);
  transition: all 0.2s ease;
  display: flex;
  align-items: flex-start;
  gap: var(--sp-md);
}

.checkout-selectable-card:hover {
  border-color: var(--border-strong);
}

.checkout-selectable-card input[type="radio"] {
  accent-color: var(--gold);
  margin-top: 4px;
}

.checkout-selectable-card.selected {
  border-color: var(--gold);
  background-color: #FAFAFA;
}

/* Premium Primary Button */
.checkout-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background-color: var(--text-primary); /* Deep walnut brown */
  color: #FFFFFF;
  border: none;
  padding: var(--sp-lg) var(--sp-xl);
  font-size: var(--fs-lg);
  font-weight: 500;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.checkout-btn-primary:hover:not(:disabled) {
  background-color: var(--text-secondary);
  box-shadow: 0 4px 15px rgba(62, 39, 35, 0.2);
}

.checkout-btn-primary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Sticky Summary */
.checkout-summary-panel {
  background-color: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--sp-xl);
  position: sticky;
  top: var(--sp-xl);
}

/* Summary Items */
.checkout-summary-item {
  display: flex;
  align-items: center;
  gap: var(--sp-md);
  margin-bottom: var(--sp-md);
}

.checkout-summary-item-img {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-subtle);
  background: #FFF;
  object-fit: contain;
  position: relative;
}

.checkout-summary-item-qty {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--text-primary);
  color: #FFF;
  font-size: 11px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.checkout-trust-badge {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  color: var(--text-secondary);
  font-size: var(--fs-sm);
  margin-bottom: var(--sp-sm);
}

.checkout-trust-badge i {
  color: var(--success);
  font-size: var(--fs-md);
}

/* Hide / Show Utilities for Mobile */
.mobile-summary-toggle {
  display: none;
  background: var(--bg-elevated);
  padding: var(--sp-md) var(--sp-lg);
  border-bottom: 1px solid var(--border-subtle);
  cursor: pointer;
  align-items: center;
  justify-content: space-between;
  color: var(--text-primary);
}

@media (max-width: 991px) {
  .checkout-summary-panel {
    display: none;
    position: static;
    border-radius: 0;
    border-left: none;
    border-right: none;
    margin: 0 calc(-1 * var(--sp-lg));
  }
  .checkout-summary-panel.show {
    display: block;
  }
  .mobile-summary-toggle {
    display: flex;
    margin: 0 calc(-1 * var(--sp-lg));
  }
}

/* ==========================================================================
   PREMIUM PRODUCT CARD STYLES
   ========================================================================== */

.premium-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--duration-base) var(--ease-out);
  display: flex;
  flex-direction: column;
  height: 100%;
}

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

.premium-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.premium-img-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at center, transparent 30%, rgba(0,0,0,0.03) 100%);
  pointer-events: none;
}

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

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

.premium-wishlist {
  position: absolute;
  top: var(--sp-sm);
  right: var(--sp-sm);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  z-index: 10;
}

.premium-wishlist:hover {
  color: var(--crimson);
  transform: scale(1.1);
}

.premium-body {
  padding: var(--sp-md) var(--sp-lg) var(--sp-xs);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.premium-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.3;
  margin-top: var(--sp-xs);
  margin-bottom: var(--sp-xs);
}

.premium-title a {
  color: var(--text-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.premium-card:hover .premium-title a {
  color: var(--gold);
}

.premium-rating-wrap {
  margin-bottom: auto;
  font-size: 0.85rem;
}

.premium-footer {
  padding: var(--sp-md) var(--sp-lg);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  border-top: 1px solid var(--border-subtle);
}

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

.premium-actions {
  display: flex;
  align-items: center;
  gap: var(--sp-md);
}

.premium-add-btn {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.premium-add-btn:hover {
  background: var(--gold);
  color: #000;
  transform: scale(1.05);
}

/* ==========================================================================
   PREMIUM MOBILE OPTIMIZATION
   ========================================================================== */

.dietary-card:hover {
  transform: translateY(-10px) !important;
}

.dietary-card:hover div {
  background: var(--gold) !important;
  color: var(--bg-elevated) !important;
  box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

@media (max-width: 768px) {
  .premium-hero-title {
    font-size: 2.5rem !important;
    line-height: 1.2;
  }
  
  .premium-eyebrow {
    font-size: 0.9rem;
    letter-spacing: 2px;
  }
  
  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: var(--sp-lg);
  }
  
  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: var(--sp-sm);
  }
  
  .premium-btn, .premium-btn-outline {
    width: 100%;
    text-align: center;
  }
  
  .parallax-section {
    background-attachment: scroll !important; /* Parallax doesn't work well on iOS Safari */
    padding: var(--sp-3xl) var(--sp-md) !important;
  }
  
  .dietary-grid {
    gap: var(--sp-md) !important;
  }
  
  .dietary-card div {
    width: 90px !important;
    height: 90px !important;
    font-size: 1.5rem !important;
  }
}
  opacity: 0;
  transition: opacity 0.4s ease;
}

.social-tile-overlay i {
  font-size: 2.5rem;
  color: #fff;
  transform: translateY(20px);
  transition: transform 0.4s ease;
}

.social-tile:hover img {
  transform: scale(1.1);
}

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

.social-tile:hover .social-tile-overlay i {
  transform: translateY(0);
}

/* ============================================================
   CONVERSION BOOSTING RECENT PURCHASE TOAST
   ============================================================ */
.recent-purchase-toast {
  position: fixed;
  bottom: 85px;
  left: 20px;
  background: rgba(13, 17, 23, 0.95);
  border: 1px solid rgba(212, 175, 55, 0.35);
  padding: 10px 14px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 9996;
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.7);
  max-width: 320px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.recent-purchase-toast.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* ============================================================
   MOBILE BOTTOM NAVIGATION BAR (CREATIVE UI/UX)
   ============================================================ */
.mobile-bottom-bar {
  display: none;
}

@media (max-width: 767px) {
  .mobile-bottom-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: rgba(13, 17, 23, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid rgba(212, 175, 55, 0.25);
    z-index: 9998;
    justify-content: space-around;
    align-items: center;
    padding-bottom: env(safe-area-inset-bottom);
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.7);
  }

  .mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    text-decoration: none;
    background: none;
    border: none;
    font-size: 0.68rem;
    gap: 3px;
    position: relative;
    padding: 6px 12px;
    cursor: pointer;
    transition: color 0.2s ease, transform 0.2s ease;
    width: 20%;
  }

  .mobile-nav-item i {
    font-size: 1.15rem;
  }

  .mobile-nav-item.active {
    color: var(--gold);
  }

  .mobile-nav-item:active {
    transform: scale(0.92);
  }

  .mobile-badge {
    position: absolute;
    top: 2px;
    right: 12px;
    background: var(--gold);
    color: #000;
    font-weight: bold;
    font-size: 10px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Offset floating widgets for mobile bottom bar */
  body {
    padding-bottom: 60px;
  }

  .whatsapp-widget {
    bottom: 75px !important;
  }

  .back-to-top-btn {
    bottom: 145px !important;
  }

  .recent-purchase-toast {
    bottom: 80px !important;
    left: 12px !important;
    right: 12px !important;
    max-width: calc(100vw - 24px) !important;
  }
}
