/************************************************************
 *  BASE.CSS - Global / shared styles for all pages
 *  - Variables, fonts, resets, layout
 *  - Carousel, footer, modal, animations
 *  - Testimonials, text selection, generic dark theme bits
 ************************************************************/

/* ----------------------------------------------------------
1) RESET & GLOBAL LAYOUT (shared)
---------------------------------------------------------- */
:root {
  /* SPACING SCALE */
  --spacing-small: 4px;
  --spacing-medium: 8px;
  --spacing-large: 16px;

  /* COLOR PALETTE */
  --color-body-bg: #f9f9f9;
  --color-header-bg: #333;
  --color-modal-overlay: rgba(0,0,0,0.8);
  --color-accent: #ff8c00;
  --color-brand-gold: #FFD700;
  --color-error: #ef4444;
  --color-text-base: #333;
  --color-text-subtle: #888;
  --color-text-secondary: #ccc;

  /* SPECIAL TEXT COLORS */
  --color-off-black: #111;
  --color-bright-ivory:#fffff0;

  /* CARD BACKGROUND */
  --color-card-bg: #fff;
}

/* CUSTOM FONTS (shared) */
@font-face {
  font-family: 'Josefin_Medium';
  src: url('../fonts/JosefinSans-Medium.ttf') format('truetype');
}
@font-face {
  font-family: 'Josefin_Bold';
  src: url('../fonts/JosefinSans-Bold.ttf') format('truetype');
}
@font-face {
  font-family: 'Josefin_Light';
  src: url('../fonts/JosefinSans-Light.ttf') format('truetype');
}

/* RESET (shared) */
* { margin: 0; padding: 0; box-sizing: border-box; }

/* FULL-HEIGHT LAYOUT (shared) */
html, body {
  width: 100%;
  height: 100%;
  min-height: 100vh;
  min-height: -webkit-fill-available;
  overflow-x: hidden;
  background-color: var(--color-body-bg);
  color: var(--color-text-base);
  scroll-behavior: smooth;
  overscroll-behavior: none;
  -webkit-overflow-scrolling: touch;
}

/* BODY FLEX HELPERS (shared) */
body {
  font-family: 'Arial', sans-serif;
  display: flex;
  flex-direction: column;
}

/* MAIN CONTAINER (shared) */
main { flex: 1; padding: 0 var(--spacing-medium); background: inherit; }

/* ----------------------------------------------------------
3) CAROUSEL (shared – used on index and elsewhere)
---------------------------------------------------------- */
.carousel {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap: var(--spacing-medium);
  padding: var(--spacing-medium);
  background: inherit;
  justify-content: center; /* also centers when few items */
}
.carousel-section-title {
  grid-column: 1 / -1;
  font-family: 'Josefin_Bold', 'Josefin Sans', Arial, sans-serif;
  font-size: 22px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-base);
  margin: 24px 0 4px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.carousel-section-title:first-child {
  margin-top: 4px;
}
.store-v2 .carousel-section-title {
  all: unset;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  font-family: 'Josefin_Bold', 'Josefin Sans', Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--v2-section-title);
  padding: 0 4px 16px;
  border-bottom: 1px solid var(--v2-border);
  transition: border-color 200ms ease;
  user-select: none;
}
.store-v2 .carousel-section-title:focus-visible {
  outline: 2px solid var(--v2-gold);
  outline-offset: 4px;
  border-radius: 2px;
}
.store-v2 .carousel-section-label {
  flex: 0 0 auto;
}
.store-v2 .carousel-section-count {
  flex: 0 0 auto;
  font-family: 'Josefin_Light', 'Josefin Sans', Arial, sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--v2-fg-muted);
  padding: 2px 8px;
  border: 1px solid var(--v2-border);
  border-radius: 999px;
  line-height: 1;
  min-width: 22px;
  text-align: center;
}
.store-v2 .carousel-section-chevron {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  margin-left: auto;
  color: var(--v2-fg-muted);
  transition: transform 240ms cubic-bezier(0.2, 0.6, 0.2, 1);
}
.store-v2 .carousel-section-title[aria-expanded="false"] .carousel-section-chevron {
  transform: rotate(-90deg);
}
.store-v2 .carousel-section-title:hover .carousel-section-chevron,
.store-v2 .carousel-section-title:hover .carousel-section-count {
  color: var(--v2-fg);
}
#carousel.single-card {
  display: flex; justify-content: center; align-items: center;
  min-height: calc(100vh - 120px);
}
#carousel.single-card .carousel-item { max-width: 320px; width: 100%; }

.carousel-item {
  background: var(--color-card-bg);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  display: flex; flex-direction: column;
  text-align: center;
  padding: var(--spacing-medium);
  transition: transform 0.3s, box-shadow 0.3s;
  max-width: 300px; /* mobile-card sizing everywhere */
  width: 100%;
  margin: 0 auto;
}
.carousel-item:hover { transform: translateY(-4px); box-shadow: 0 6px 18px rgba(0,0,0,0.15); }
.img-container { position: relative; width: 100%; padding-top: 75%; overflow: hidden; margin-bottom: var(--spacing-medium); }
.carousel-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; border-radius: 8px; }
.image-indicator { display: flex; justify-content: center; margin-bottom: var(--spacing-medium); }
.indicator-dot { width: 8px; height: 8px; margin: 0 var(--spacing-small); border-radius: 50%; background-color: #ccc; transition: background-color 0.3s; }
.indicator-dot.active { background-color: #333; }
.title { font-family: 'Josefin_Bold'; font-size: 20px; color: var(--color-text-base); margin-bottom: var(--spacing-small); line-height: 1.4; }
.description {
  font-family: 'Josefin_Light'; font-size: 16px; color: var(--color-text-subtle);
  line-height: 1.5; margin-bottom: var(--spacing-medium);
  overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical;
}
/* Desktop column sizing */
@media (min-width: 768px) {
  .carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, 300px);
    gap: var(--spacing-medium);
    justify-content: center;
    padding: var(--spacing-medium);
  }
}

/* ----------------------------------------------------------
4) FOOTER & STICKY BOTTOM (shared)
---------------------------------------------------------- */
.footer-elements {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto; padding: 12px; border-top: 1px solid #eee; background: #fff;
}

/* Price display */
.price-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.price { 
  font-family: 'Josefin_Medium'; 
  font-size: 20px; 
  color: #ffd700; 
  background: none; 
  border: none; 
  transition: transform 0.2s;
  margin: 0;
  line-height: 1;
}

.actual-price {
  font-family: 'Josefin_Bold';
  font-size: 14px;
  color: #888;
  margin: 0;
  line-height: 1;
}

.price:hover { transform: scale(1.05); }

/* Dark mode price */
.dark-theme .price {
  color: #ffd700;
}

.dark-theme .actual-price {
  color: #999;
}
.vote-container { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.heart-button { width: 32px; height: 32px; background: none; border: none; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; transition: transform 0.2s, box-shadow 0.2s; }
.heart-button:hover { transform: scale(1.1); }
.heart-button::before {
  content: ""; display: block; width: 100%; height: 100%;
  background-color: #ccc; clip-path: polygon(50% 0%,100% 50%,50% 100%,0% 50%);
  transition: background-color 0.3s, transform 0.2s;
}
.heart-button.liked::before { background-color: #e63946; transform: scale(1.2); }
.likes-count { font-family: 'Josefin_Medium'; font-size: 12px; color: #555; white-space: nowrap; text-align: center; }
.likes-count.updated { animation: votePop 0.4s ease; }
@keyframes votePop { 0%{transform:scale(1)} 50%{transform:scale(1.3)} 100%{transform:scale(1)} }

/* No bare `footer` rule — see css/footer.css. */

/* Modal styles removed - using purchase-modal instead */

/* Animations section removed - unused styles */

/* Testimonials and shared text styles removed - not used in store page */

/* ----------------------------------------------------------
8A) COVER FLOW COLLAGE (shared block used by About page; safe here)
---------------------------------------------------------- */
.about-hero-collage {
  display:flex; flex-wrap:nowrap; gap:12px; overflow-x:auto; width:100vw;
  margin-left: calc(50% - 50vw); padding: var(--spacing-medium) 0; scroll-behavior:smooth;
}
.collage-slice { flex:0 0 auto; width:300px; height:200px; position:relative; overflow:hidden; border-radius:6px; transition: transform 0.4s ease; }
.collage-slice img { width:100%; height:100%; object-fit:cover; transform: scale(1.6); transition: transform 0.3s ease; }
.collage-slice:hover img { transform: scale(1.4); }
@media (max-width: 768px) {
  .about-hero-collage { gap:8px; padding: calc(1.5 * var(--spacing-medium)) 0; }
  .collage-slice { width:150px; height:150px; }
  .collage-slice img { transform: scale(1.3); }
}

/* ----------------------------------------------------------
10) Cart Button & Mini Panel
---------------------------------------------------------- */
.cart-button-container {
  position: relative;
  flex-shrink: 0;
}

.cart-button {
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid #ff8c00;
  border-radius: 8px;
  padding: 8px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 60px;
}

.cart-button:hover {
  background: #fff5e6;
  border-color: #ff6b00;
  transform: translateY(-2px);
}

.cart-icon {
  font-size: 24px;
  color: #ff8c00;
}

.cart-label {
  font-family: 'Josefin_Medium', Arial, sans-serif;
  font-size: 12px;
  color: #ff8c00;
  font-weight: 600;
}

.cart-button.in-cart {
  background: rgba(76, 175, 80, 0.15);
  border-color: #4caf50;
}

.cart-button.in-cart .cart-icon {
  color: #4caf50;
}

.cart-button.in-cart .cart-label {
  color: #4caf50;
}

/* Dark mode cart button */
.dark-theme .cart-button {
  background: rgba(26, 26, 26, 0.95);
  border-color: #ffd700;
}

.dark-theme .cart-button:hover {
  background: rgba(40, 40, 40, 0.95);
  border-color: #ffed4e;
}

.dark-theme .cart-icon {
  color: #ffd700;
}

.dark-theme .cart-label {
  color: #ffd700;
}

.dark-theme .cart-button.in-cart {
  background: rgba(76, 175, 80, 0.2);
  border-color: #4caf50;
}

.dark-theme .cart-button.in-cart .cart-icon {
  color: #4caf50;
}

.dark-theme .cart-button.in-cart .cart-label {
  color: #4caf50;
}

/* Mini Panel (Popover for size/gender selection) */
.cart-mini-panel {
  position: absolute;
  bottom: calc(100% + 8px);
  right: 0;
  background: white;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  padding: 16px;
  min-width: 280px;
  z-index: 1000;
  animation: slideUp 0.2s ease;
}

/* Desktop: arrow connecting panel to button */
@media (min-width: 769px) {
  .cart-mini-panel::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 20px;
    width: 16px;
    height: 16px;
    background: white;
    transform: rotate(45deg);
    box-shadow: 2px 2px 4px rgba(0,0,0,0.1);
  }
  .dark-theme .cart-mini-panel::after {
    background: #1a1a1a;
    box-shadow: 2px 2px 4px rgba(0,0,0,0.3);
  }
}

/* Mobile: full-width bottom sheet to prevent overflow */
@media (max-width: 768px) {
  .cart-mini-panel {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    border-radius: 16px 16px 0 0;
    min-width: unset;
    z-index: 1000;
    max-height: 70vh;
    overflow-y: auto;
    padding: 20px;
    padding-bottom: max(20px, env(safe-area-inset-bottom));
    box-shadow: 0 -8px 32px rgba(0,0,0,0.3);
  }
  .cart-mini-panel::after {
    display: none;
  }
}

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

.mini-panel-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mini-panel-section label {
  display: block;
  font-family: 'Josefin_Medium', Arial, sans-serif;
  font-size: 13px;
  color: #333;
  margin-bottom: 8px;
  font-weight: 600;
}

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

.mini-option {
  background: #f5f5f5;
  border: 2px solid transparent;
  border-radius: 6px;
  padding: 6px 12px;
  font-family: 'Josefin_Medium', Arial, sans-serif;
  font-size: 12px;
  color: #666;
  cursor: pointer;
  transition: all 0.2s ease;
}

.mini-option:hover {
  background: #e8e8e8;
  border-color: #ff8c00;
}

.mini-option.selected {
  background: #ff8c00;
  border-color: #ff8c00;
  color: white;
}

.mini-panel-actions {
  display: flex;
  gap: 8px;
  margin-top: 4px;
}

.mini-add-to-cart,
.mini-remove-from-cart {
  flex: 1;
  padding: 10px 16px;
  border: none;
  border-radius: 8px;
  font-family: 'Josefin_Medium', Arial, sans-serif;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-weight: 600;
}

.mini-add-to-cart {
  background: linear-gradient(135deg, #ff8c00, #ff6b00);
  color: white;
}

.mini-add-to-cart:hover:not(:disabled) {
  background: linear-gradient(135deg, #ff9900, #ff7700);
  transform: translateY(-1px);
}

.mini-add-to-cart:disabled {
  background: #ccc;
  cursor: not-allowed;
  opacity: 0.6;
}

.mini-remove-from-cart {
  background: #f5f5f5;
  color: #e53935;
  border: 1px solid #e53935;
}

.mini-remove-from-cart:hover {
  background: #ffebee;
}

/* Dark mode mini panel */
.dark-theme .cart-mini-panel {
  background: #1a1a1a;
  border: 1px solid #333;
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
}

.dark-theme .mini-panel-section label {
  color: #ffd700;
}

.dark-theme .mini-option {
  background: #2a2a2a;
  color: #ccc;
  border-color: #333;
}

.dark-theme .mini-option:hover {
  background: #333;
  border-color: #ffd700;
}

.dark-theme .mini-option.selected {
  background: #ffd700;
  border-color: #ffd700;
  color: #000;
}

.dark-theme .mini-add-to-cart {
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  color: #000;
}

.dark-theme .mini-add-to-cart:hover:not(:disabled) {
  background: linear-gradient(135deg, #ffed4e, #fff176);
}

.dark-theme .mini-remove-from-cart {
  background: #2a2a2a;
  color: #ef5350;
  border-color: #ef5350;
}

.dark-theme .mini-remove-from-cart:hover {
  background: #3a1a1a;
}

/* ----------------------------------------------------------
Image Zoom Modal
---------------------------------------------------------- */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  animation: fadeIn 0.3s ease;
}

.modal.active {
  display: flex;
}

.modal-content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-image-container {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 85vw;
  max-height: 85vh;
}

.modal-image-container img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
  user-select: none;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  color: white;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 10;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.3);
}

.modal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  font-size: 28px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 10;
}

.modal-nav:hover {
  background: rgba(255, 255, 255, 0.3);
}

.modal-nav-left {
  left: 16px;
}

.modal-nav-right {
  right: 16px;
}

@media (max-width: 768px) {
  .modal-image-container {
    max-width: 95vw;
    max-height: 80vh;
  }
  .modal-nav {
    width: 40px;
    height: 40px;
    font-size: 24px;
  }
  .modal-nav-left { left: 8px; }
  .modal-nav-right { right: 8px; }
  .modal-close { top: 12px; right: 12px; width: 40px; height: 40px; }
}


@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ----------------------------------------------------------
Skeleton Loading Cards
---------------------------------------------------------- */
.skeleton-card { pointer-events: none; }
.skeleton-image {
  width: 100%;
  padding-top: 75%;
  background: linear-gradient(90deg, #e0e0e0 25%, #f0f0f0 50%, #e0e0e0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 8px;
  margin-bottom: var(--spacing-medium);
}
.skeleton-text {
  height: 14px;
  background: linear-gradient(90deg, #e0e0e0 25%, #f0f0f0 50%, #e0e0e0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 4px;
  margin-bottom: var(--spacing-medium);
}
.skeleton-title { width: 65%; height: 20px; }
.skeleton-desc { width: 90%; }
.skeleton-price { width: 35%; height: 18px; margin-top: var(--spacing-large); }

@keyframes shimmer { to { background-position: -200% 0; } }

.dark-theme .skeleton-image,
.dark-theme .skeleton-text {
  background: linear-gradient(90deg, #2a2a2a 25%, #333 50%, #2a2a2a 75%);
  background-size: 200% 100%;
}

/* ----------------------------------------------------------
Sustainability Alert Modal
---------------------------------------------------------- */
.sustainability-alert-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
}

.sustainability-alert-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.sustainability-alert-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(3, 3, 3, 0.78);
  backdrop-filter: blur(7px);
  animation: fadeIn 0.3s ease;
}

.sustainability-alert-content {
  position: relative;
  background: linear-gradient(150deg, rgba(24, 24, 20, 0.98), rgba(11, 12, 10, 0.98));
  border: 1px solid rgba(181, 147, 90, 0.42);
  border-radius: 18px;
  padding: 30px 34px;
  max-width: 480px;
  margin: 20px;
  box-shadow: 0 28px 74px rgba(0,0,0,0.56);
  animation: slideUp 0.3s ease;
  text-align: center;
}

.sustainability-alert-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(181, 147, 90, 0.16);
  border: 1px solid rgba(181, 147, 90, 0.34);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.sustainability-alert-leaf {
  width: 36px;
  height: 36px;
  fill: #d4b684;
}

.sustainability-alert-content h2 {
  font-family: 'Josefin_Bold', Arial, sans-serif;
  font-size: 2rem;
  color: #ede8df;
  margin-bottom: 12px;
  letter-spacing: 0.01em;
}

.sustainability-alert-content p {
  font-family: 'Josefin_Medium', Arial, sans-serif;
  font-size: 1rem;
  color: rgba(237, 232, 223, 0.8);
  line-height: 1.6;
  margin-bottom: 12px;
}

.sustainability-limit-copy strong {
  color: #d4b684;
}

.sustainability-context-copy {
  color: rgba(237, 232, 223, 0.92);
}

.sustainability-reason {
  font-size: 0.92rem;
  color: rgba(237, 232, 223, 0.62);
  font-style: normal;
}

.sustainability-alert-actions {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}

.alert-btn {
  flex: 1;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-family: 'Josefin_Medium', Arial, sans-serif;
  font-size: 0.98rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.alert-btn-secondary {
  background: rgba(255, 255, 255, 0.03);
  color: rgba(237, 232, 223, 0.84);
  border-color: rgba(181, 147, 90, 0.34);
}

.alert-btn-secondary:hover {
  background: rgba(181, 147, 90, 0.14);
}

.alert-btn-primary {
  background: linear-gradient(135deg, #be9d66, #a6844f);
  color: #111;
  border-color: rgba(212, 182, 132, 0.84);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.35);
}

.alert-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.42);
}

@media (max-width: 640px) {
  .sustainability-alert-content {
    margin: 14px;
    padding: 26px 20px;
    border-radius: 16px;
  }

  .sustainability-alert-content h2 {
    font-size: 1.75rem;
  }

  .sustainability-alert-actions {
    flex-direction: column;
  }
}

/* Dark theme: Sustainability Alert */
.dark-theme .sustainability-alert-content {
  background: linear-gradient(150deg, rgba(24, 24, 20, 0.98), rgba(11, 12, 10, 0.98));
  box-shadow: 0 28px 74px rgba(0,0,0,0.56);
}
.dark-theme .sustainability-alert-content h2 { color: #ede8df; }
.dark-theme .sustainability-alert-content p { color: rgba(237, 232, 223, 0.8); }
.dark-theme .sustainability-reason { color: rgba(237, 232, 223, 0.62); }
.dark-theme .alert-btn-secondary {
  background: rgba(255, 255, 255, 0.03);
  color: rgba(237, 232, 223, 0.84);
  border-color: rgba(181, 147, 90, 0.34);
}
.dark-theme .alert-btn-secondary:hover { background: rgba(181, 147, 90, 0.14); }

/* ----------------------------------------------------------
11) Text Selection (shared)
---------------------------------------------------------- */
::selection { background-color: var(--color-accent); color:#fff; }
.dark-theme ::selection { background-color:#ffd700; color:#111; }

/* ----------------------------------------------------------
12) Store Banner (for filtered store views)
---------------------------------------------------------- */
.store-banner {
  background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
  padding: 24px 20px;
  margin: 0 -8px 24px -8px;
  border-radius: 0 0 20px 20px;
  text-align: center;
  color: white;
}

.store-banner-content {
  max-width: 600px;
  margin: 0 auto;
}

.store-banner-name {
  font-family: 'Josefin_Bold', sans-serif;
  font-size: 28px;
  margin-bottom: 8px;
  color: #fff;
}

.store-banner-count {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 12px;
}

.store-banner-link {
  display: inline-block;
  color: var(--color-accent);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

.store-banner-link:hover {
  color: #ffa500;
  text-decoration: underline;
}

/* Store Empty State */
.store-empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--color-text-subtle);
}

.store-empty h2 {
  font-family: 'Josefin_Bold', sans-serif;
  font-size: 24px;
  margin-bottom: 12px;
  color: var(--color-text-base);
}

.store-empty p {
  font-size: 16px;
  margin-bottom: 24px;
}

.store-back-link {
  display: inline-block;
  background: var(--color-accent);
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.2s, box-shadow 0.2s;
}

.store-back-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 140, 0, 0.3);
}

/* Dark theme adjustments */
.dark-theme .store-banner {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  border-bottom: 1px solid #333;
}

.dark-theme .store-empty h2 {
  color: #fff;
}

/* ----------------------------------------------------------
13) Product Store Link
---------------------------------------------------------- */
.product-store-link {
  display: block;
  font-size: 12px;
  color: var(--color-text-subtle);
  text-decoration: none;
  margin: -4px 0 8px 0;
  transition: color 0.2s;
}

.product-store-link:hover {
  color: var(--color-accent);
  text-decoration: underline;
}

.dark-theme .product-store-link {
  color: rgba(255, 255, 255, 0.6);
}

.dark-theme .product-store-link:hover {
  color: var(--color-accent);
}

/* ----------------------------------------------------------
14) Store 2.0 (scoped, feature-safe visual upgrade)
---------------------------------------------------------- */
/* Light is the default — meets WCAG AA. */
.store-v2 {
  --v2-bg: #f5f1e7;
  --v2-surface: #fffdf6;
  --v2-surface-elev: #ffffff;
  --v2-border: rgba(26, 24, 21, 0.12);
  --v2-fg: #1a1815;                       /* ~14:1 on bg */
  --v2-fg-muted: #4d4740;                 /* ~7:1 on bg, meets AA */
  --v2-section-title: #1a1815;
  --v2-gold: #8b6f3a;                     /* ~5.6:1 on bg, AA */
  --v2-gold-bright: #6f5728;
  --v2-green: #1f6b3a;
  --v2-image-bg: #f1ede6;
  --v2-image-border: rgba(0, 0, 0, 0.08);
  --v2-overlay-bg: rgba(255, 255, 255, 0.92);
  --v2-overlay-fg: #24211d;
  --v2-new-bg: #1f6b3a;
  --v2-new-fg: #f7f3e8;
}
/* Dark theme override — driven by the global `<html>.dark-theme` toggle. */
html.dark-theme .store-v2 {
  --v2-bg: #070807;
  --v2-surface: #0d0f0d;
  --v2-surface-elev: #141613;
  --v2-border: rgba(181, 147, 90, 0.22);
  --v2-fg: #f5efe2;
  --v2-fg-muted: rgba(245, 239, 226, 0.82);  /* ~10:1 on bg, AA */
  --v2-section-title: #f5efe2;
  --v2-gold: #d4b684;
  --v2-gold-bright: #eccf9c;
  --v2-green: #7ed192;
  --v2-image-bg: #f1ede6;
  --v2-image-border: rgba(255, 255, 255, 0.04);
  --v2-overlay-bg: rgba(255, 255, 255, 0.92);
  --v2-overlay-fg: #24211d;
  --v2-new-bg: #5fb37a;
  --v2-new-fg: #0a1a10;
}

.store-v2 html,
.store-v2 body,
body.store-v2 {
  background: radial-gradient(circle at 22% 14%, rgba(181, 147, 90, 0.14), transparent 36%),
              radial-gradient(circle at 78% 82%, rgba(181, 147, 90, 0.1), transparent 42%),
              var(--v2-bg);
  color: var(--v2-fg);
}

.store-v2 main {
  padding: 24px 20px 48px;
}

.store-v2 .carousel {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 0;
  max-width: 1720px;
  margin: 0 auto;
  grid-template-columns: none;
  justify-content: initial;
}

.store-v2 .carousel-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.store-v2 .carousel-section-items {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 20px;
  row-gap: 32px;
  transition: opacity 200ms ease;
}

.store-v2 .carousel-section.collapsed .carousel-section-items,
.store-v2 .carousel-section.collapsed .section-facets {
  display: none;
}

/* In-section sub-chip facets (Theme / Park / Tags) — sits between the
   section heading and the items grid. Hidden by default; revealed by the
   Refine toggle in the section header. Rows hide automatically when the
   facet has fewer than 2 distinct values in this section. */
.store-v2 .section-facets {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 4px 4px 16px;
  max-height: 800px;
  overflow: hidden;
  transition: max-height 280ms cubic-bezier(0.2, 0.7, 0.2, 1), padding 220ms ease, opacity 200ms ease;
  opacity: 1;
}
.store-v2 .section-facets.collapsed {
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  opacity: 0;
  pointer-events: none;
}

/* Refine toggle on each section header. */
.store-v2 .carousel-section-refine {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  font-family: 'Josefin_Medium', 'Josefin Sans', Arial, sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--v2-fg-muted);
  background: transparent;
  border: 1px solid var(--v2-border);
  border-radius: 999px;
  cursor: pointer;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}
.store-v2 .carousel-section-refine:hover {
  color: var(--v2-fg);
  border-color: var(--v2-fg-muted);
  background: var(--v2-border);
}
.store-v2 .carousel-section-refine.has-active {
  color: var(--v2-fg);
  border-color: var(--v2-fg);
}
.store-v2 .carousel-section-refine .refine-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--v2-fg);
  color: var(--v2-surface-elev);
  font-family: 'Josefin_Bold', 'Josefin Sans', Arial, sans-serif;
  font-size: 10px;
  letter-spacing: 0;
}
.store-v2 .carousel-section-refine .refine-chevron {
  width: 12px;
  height: 12px;
  transition: transform 240ms cubic-bezier(0.2, 0.6, 0.2, 1);
}
.store-v2 .carousel-section-refine[aria-expanded="true"] .refine-chevron {
  transform: rotate(180deg);
}
/* The big chevron at the end (collapse the whole section) sits to the right
   of Refine. Keep its left margin small so the two don't crowd each other. */
.store-v2 .carousel-section-title .carousel-section-chevron {
  margin-left: 8px;
}
.store-v2 .section-facet-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.store-v2 .section-facet-label {
  flex: 0 0 auto;
  font-family: 'Josefin_Bold', 'Josefin Sans', Arial, sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--v2-fg-muted);
  min-width: 54px;
}
.store-v2 .section-facet-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.store-v2 .section-facet-chip {
  appearance: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 11px;
  background: transparent;
  border: 1px solid var(--v2-border);
  border-radius: 999px;
  color: var(--v2-fg);
  font-family: 'Josefin_Medium', 'Josefin Sans', Arial, sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
  cursor: pointer;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}
.store-v2 .section-facet-chip:hover {
  border-color: var(--v2-fg-muted);
  background: var(--v2-border);
}
.store-v2 .section-facet-chip.selected {
  background: var(--v2-fg);
  border-color: var(--v2-fg);
  color: var(--v2-surface-elev);
}
.store-v2 .section-facet-chip.selected .section-facet-count {
  color: var(--v2-surface-elev);
  opacity: 0.7;
}
.store-v2 .section-facet-count {
  font-family: 'Josefin_Light', 'Josefin Sans', Arial, sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--v2-fg-muted);
}

.store-v2 .carousel-section.collapsed .carousel-section-title {
  border-bottom-color: transparent;
}

.store-v2 .carousel-item {
  background: transparent;
  border: none;
  box-shadow: none;
  border-radius: 0;
  text-align: left;
  padding: 0;
  overflow: visible;
  max-width: none;
  margin: 0;
}

.store-v2 .carousel-item:hover {
  transform: none;
  box-shadow: none;
}

.store-v2 .img-container {
  width: 100%;
  padding-top: 125%;
  margin: 0;
  background: var(--v2-image-bg);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 0 1px var(--v2-image-border);
}

.store-v2 .carousel-image {
  border-radius: 8px;
  transition: transform 200ms ease;
}

.store-v2 .carousel-item:hover .carousel-image {
  transform: scale(1.02);
}

.store-v2 .image-meta-pill {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 3;
  padding: 3px 8px;
  border-radius: 999px;
  background: var(--v2-overlay-bg);
  color: var(--v2-overlay-fg);
  font-family: 'Josefin_Light', Arial, sans-serif;
  font-size: 11px;
  line-height: 1.2;
  white-space: nowrap;
}

.store-v2 .new-badge {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--v2-new-bg);
  color: var(--v2-new-fg);
  font-family: 'Josefin_Bold', 'Josefin Sans', Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.2;
  white-space: nowrap;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
}

.store-v2 .heart-button {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 3;
  width: 28px;
  height: 28px;
  border: none;
  border-radius: 999px;
  background: var(--v2-overlay-bg);
  color: var(--v2-overlay-fg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
}

.store-v2 .heart-button::before {
  content: none;
}

.store-v2 .heart-button.liked {
  color: #111;
}

.store-v2 .image-indicator {
  position: absolute;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 0;
  z-index: 3;
}

.store-v2 .indicator-dot {
  width: 5px;
  height: 5px;
  margin: 0;
  background: rgba(255, 255, 255, 0.62);
}

.store-v2 .indicator-dot.active {
  background: rgba(34, 34, 34, 0.9);
}

.store-v2 .product-copy {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 12px;
}

.store-v2 .title {
  color: var(--v2-fg);
  font-family: 'Josefin_Medium', Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
  margin: 0 0 2px;
  letter-spacing: 0;
  text-transform: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.store-v2 .title-link {
  color: inherit;
  text-decoration: none;
  transition: color 160ms ease;
}
.store-v2 .title-link:hover {
  color: var(--v2-gold-bright);
}

.store-v2 .product-store-link {
  display: none;
}

.store-v2 .description {
  color: var(--v2-fg-muted);
  font-family: 'Josefin_Light', Arial, sans-serif;
  font-size: 12px;
  font-weight: 400;
  margin: 0 0 6px;
  min-height: 0;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  white-space: normal;
}

.store-v2 .footer-elements {
  border: none;
  background: transparent;
  padding: 0;
  gap: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0;
}

.store-v2 .price-container {
  gap: 0;
}

.store-v2 .price {
  display: none;
}

.store-v2 .actual-price {
  color: var(--v2-fg);
  font-family: 'Josefin_Medium', Arial, sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0;
}

.store-v2 .cart-button-container {
  position: relative;
}

.store-v2 .cart-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--v2-fg-muted);
  font-family: 'Josefin_Light', Arial, sans-serif;
  font-size: 11px;
  font-weight: 400;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  padding-bottom: 2px;
}

.store-v2 .cart-link.in-cart {
  color: var(--v2-green);
}

.store-v2 .cart-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: currentColor;
  opacity: 0.38;
}

.store-v2 .cart-link:hover {
  color: rgba(243, 237, 229, 0.94);
}

.store-v2 .cart-link.in-cart:hover {
  color: #2b7a4b;
}

.store-v2 .cart-link-icon {
  display: none;
  font-size: 12px;
  line-height: 1;
}

.store-v2 .cart-label {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}

.store-v2 .cart-mini-panel {
  top: calc(100% + 10px);
  bottom: auto;
  left: auto;
  right: 0;
}

.store-v2 .cart-mini-panel {
  background: #10130f;
  border: 1px solid rgba(181, 147, 90, 0.32);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(6px);
}

.store-v2 .mini-panel-content {
  opacity: 1;
}

@media (min-width: 769px) {
  .store-v2 .cart-mini-panel::after {
    background: #10130f;
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.45);
  }
}

.store-v2 .mini-panel-section label {
  color: rgba(237, 232, 223, 0.96);
  font-size: 13px;
  letter-spacing: 0.01em;
}

.store-v2 .mini-option {
  background: #171b15;
  color: rgba(237, 232, 223, 0.86);
  border: 1px solid rgba(181, 147, 90, 0.22);
}

.store-v2 .mini-option:hover {
  background: rgba(181, 147, 90, 0.2);
  border-color: rgba(212, 182, 132, 0.62);
  color: rgba(237, 232, 223, 0.98);
}

.store-v2 .mini-option.selected {
  background: rgba(181, 147, 90, 0.9);
  border-color: rgba(212, 182, 132, 0.92);
  color: #111;
}

.store-v2 .mini-add-to-cart {
  background: linear-gradient(135deg, #be9d66, #a6844f);
  color: #111;
  border: 1px solid rgba(212, 182, 132, 0.84);
}

.store-v2 .mini-add-to-cart:disabled {
  opacity: 0.5;
  color: rgba(17, 17, 17, 0.74);
}

.store-v2 .mini-add-to-cart:hover:not(:disabled) {
  background: linear-gradient(135deg, #d1b27e, #b3905a);
}

.store-v2 .mini-remove-from-cart {
  background: rgba(255, 255, 255, 0.05);
  color: #f08b8b;
  border-color: rgba(240, 139, 139, 0.66);
}

.store-v2 .store-banner {
  background: linear-gradient(135deg, #0a0a09 0%, #12140f 100%);
  border-bottom: 1px solid var(--v2-border);
}

.store-v2 .store-banner-link {
  color: var(--v2-gold-bright);
}

.store-v2 .store-empty,
.store-v2 .store-empty h2,
.store-v2 .store-empty p {
  color: var(--v2-fg);
}

.store-v2 .store-back-link {
  background: linear-gradient(135deg, #be9d66, #a6844f);
  color: #111;
}

@media (max-width: 768px) {
  .store-v2 main {
    padding: 20px 16px 40px;
  }

  .store-v2 .cart-mini-panel {
    position: fixed;
    top: auto;
    bottom: 12px;
    left: 12px;
    right: 12px;
    width: auto;
    min-width: 0;
    max-height: 72vh;
    overflow-y: auto;
    border-radius: 14px;
    z-index: 2000;
    padding: 16px;
    box-shadow: 0 22px 52px rgba(0, 0, 0, 0.68);
  }

  .store-v2 .cart-mini-panel::after {
    display: none;
  }
}

@media (min-width: 640px) {
  .store-v2 .carousel-section-items {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1200px) {
  .store-v2 .carousel-section-items {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 1600px) {
  .store-v2 .carousel-section-items {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

/* Neutralise the legacy dark-theme card-footer band on the store-v2 layout.
   header.css:524 sets a #222 box that beats .store-v2 .footer-elements via
   the `html.dark-theme` prefix; scope our reset the same way to win. */
html.dark-theme body.store-v2 .footer-elements,
html.dark-theme .store-v2 .footer-elements {
  background: transparent;
  border-top: 0;
  padding: 0;
}

/* ----------------------------------------------------------
15) Cart 2.0 (scoped, no logic changes)
---------------------------------------------------------- */
.cart-v2 .cart-page-wrapper {
  background: radial-gradient(circle at 20% 16%, rgba(181, 147, 90, 0.14), transparent 40%),
              radial-gradient(circle at 80% 82%, rgba(181, 147, 90, 0.1), transparent 45%),
              #080907;
}

.cart-v2 .cart-page {
  max-width: 1240px;
  margin: 0 auto;
  padding: 26px 20px 54px;
}

.cart-v2 .cart-header h1 {
  color: var(--v2-gold-bright);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
}

.cart-v2 .cart-summary-bar,
.cart-v2 .cart-item,
.cart-v2 .cart-summary-panel {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.03), transparent 44%), var(--v2-surface);
  border: 1px solid var(--v2-border);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.42);
  border-radius: 12px;
}

.cart-v2 .cart-summary-bar-title {
  color: rgba(237, 232, 223, 0.56);
}

.cart-v2 .cart-summary-bar-details,
.cart-v2 .cart-item-meta,
.cart-v2 .payment-prompt,
.cart-v2 .cart-form-label,
.cart-v2 .cart-consent-text {
  color: var(--v2-muted);
}

.cart-v2 .cart-summary-bar-total {
  color: rgba(237, 232, 223, 0.64);
}

.cart-v2 .cart-summary-bar-total-value,
.cart-v2 .cart-item-price,
.cart-v2 .cart-summary-title {
  color: var(--v2-gold-bright);
}

.cart-v2 .cart-summary-title {
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.cart-v2 .cart-item-title {
  color: var(--v2-fg);
}

.cart-v2 .cart-item-remove {
  color: #de7b7b;
}

.cart-v2 .cart-item-remove:hover {
  color: #f09999;
}

.cart-v2 .cart-form-input {
  background: #0f100d;
  border-color: rgba(181, 147, 90, 0.34);
  color: var(--v2-fg);
}

.cart-v2 .cart-form-input:focus {
  border-color: var(--v2-gold-bright);
}

.cart-v2 .cart-form-input::placeholder {
  color: rgba(237, 232, 223, 0.4);
}

.cart-v2 .cart-consent-box {
  background: rgba(181, 147, 90, 0.08);
  border-color: rgba(181, 147, 90, 0.3);
}

.cart-v2 .cart-consent-text a {
  color: var(--v2-gold-bright);
}

.cart-v2 .cart-checkout-btn {
  background: linear-gradient(135deg, #be9d66, #a6844f);
  color: #111;
  border: 1px solid rgba(212, 182, 132, 0.78);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.35);
}

.cart-v2 .cart-checkout-btn:hover {
  box-shadow: 0 8px 22px rgba(181, 147, 90, 0.35);
}

.cart-v2 .cart-back-btn {
  background: linear-gradient(135deg, #be9d66, #a6844f);
  color: #111;
}

.cart-v2 .cart-back-btn:hover {
  box-shadow: 0 8px 20px rgba(181, 147, 90, 0.34);
}

.cart-v2 .cart-empty h2,
.cart-v2 .cart-empty p {
  color: var(--v2-fg);
}

.cart-v2 footer {
  border-top: 1px solid rgba(181, 147, 90, 0.14);
}

/* Mobile checkout notch + sheet parity */
@media (max-width: 768px) {
  .cart-v2 .mobile-checkout-notch {
    background: linear-gradient(135deg, rgba(190, 157, 102, 0.98), rgba(166, 132, 79, 0.96));
    box-shadow: 0 -6px 24px rgba(0, 0, 0, 0.48);
    color: #111;
  }

  .cart-v2 .mobile-bottom-sheet {
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.03), transparent 48%), #11120f;
    border-top: 1px solid rgba(181, 147, 90, 0.34);
  }

  .cart-v2 .mobile-sheet-header,
  .cart-v2 .mobile-sheet-content,
  .cart-v2 .mobile-sheet-footer {
    border-color: rgba(181, 147, 90, 0.2);
  }
}

/* ----------------------------------------------------------
16) Store controls polish (scoped)
---------------------------------------------------------- */
.store-v2 .header {
  background: linear-gradient(180deg, rgba(10, 11, 9, 0.96), rgba(10, 11, 9, 0.82));
  border: none;
  border-bottom: 1px solid rgba(181, 147, 90, 0.18);
  border-radius: 0;
  margin: 0;
  padding: 1.75rem 2rem 1.1rem;
  box-shadow: none;
}

.store-v2 .header-top {
  align-items: flex-end;
}

.store-v2 .header-brand {
  gap: 0.18rem;
}

.store-v2 .header-title {
  font-size: clamp(1.55rem, 4vw, 2.1rem);
  color: var(--v2-gold-bright);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1;
}

.store-v2 .header-subtitle {
  color: var(--v2-gold);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 0.78rem;
  font-style: italic;
  letter-spacing: 0.28em;
  opacity: 0.82;
  text-transform: lowercase;
}

.store-v2 .header-controls {
  gap: 10px;
}

.store-v2 .cart-nav-button {
  color: rgba(237, 232, 223, 0.82);
}

.store-v2 .cart-nav-button:hover {
  color: var(--v2-gold-bright);
}

.store-v2 .cart-badge {
  background: linear-gradient(135deg, #be9d66, #a6844f);
  color: #111;
}

.store-v2 #filter-toggle,
.store-v2 .fab-menu,
.store-v2 .theme-toggle-icon {
  color: rgba(237, 232, 223, 0.82);
}

.store-v2 #filter-toggle:hover,
.store-v2 .fab-menu:hover,
.store-v2 .theme-toggle-icon:hover {
  color: var(--v2-gold-bright);
}

@media (max-width: 768px) {
  .store-v2 .header {
    padding: 1.4rem 1.1rem 1rem;
  }
}

/* Filter-modal styling lives entirely in kaaykoFilterModal.css now —
   that file owns the .store-v2 .filter-* and .chip rules. */

/* The site footer lives in css/footer.css (.site-footer, and .is-light for the
   light store pages). There is deliberately no `.store-v2 footer` rule here:
   it out-specified the shared component (0,1,1 beats 0,1,0) and repainted the
   footer as a dark gradient with uppercase text on a cream page. */