/* ================================================================
   AURESSA - PREMIUM BRAND CSS
   Minimalist - 3D Interactive - Editorial Luxury
   ================================================================ */

/* - Design Tokens - */
:root {
  --black: #050302;
  --ink: #0a0807;
  --dark: #100c0a;
  --panel: rgba(15, 11, 9, .75);
  --gold: #c9a55a;
  --gold-lt: #e8d09a;
  --gold-dk: #9e7c38;
  --cream: #f5ece0;
  --muted: rgba(245, 236, 224, .45);
  --line: rgba(201, 165, 90, .18);
  --line-lg: rgba(201, 165, 90, .35);
  --wine: #c43f68;
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Inter", system-ui, sans-serif;
  --font-alt: "Montserrat", system-ui, sans-serif;
  --r: 6px;
  --shadow-sm: 0 8px 24px rgba(0, 0, 0, .4);
  --shadow-md: 0 20px 60px rgba(0, 0, 0, .55);
  --shadow-lg: 0 40px 100px rgba(0, 0, 0, .7);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --text-rgb: 245, 236, 224;
  --bg-rgb: 5, 3, 2;
}

/* - Light Theme Tokens - */
:root[data-theme="light"] {
  --black: #F7F4EF; /* Raw Alabaster dominant background */
  --ink: #4A443F; /* Deep Mink Charcoal secondary */
  --dark: #efebe4; /* Slightly darker Alabaster for hovered cards */
  --panel: rgba(247, 244, 239, 0.9); /* Translucent Alabaster overlay panel */
  --gold: #D2C4B1; /* Luxe Oat accent */
  --gold-lt: #e1d7ca;
  --gold-dk: #bcae9a;
  --cream: #4A443F; /* Luxe Deep Mink Charcoal typography */
  --muted: rgba(74, 68, 63, 0.65);
  --line: #D2C4B1; /* Thin 1px borders in Luxe Oat */
  --line-lg: rgba(210, 196, 177, 0.65);
  --wine: #7c2442;
  --shadow-sm: 0 8px 24px rgba(74, 68, 63, 0.05);
  --shadow-md: 0 20px 60px rgba(74, 68, 63, 0.07);
  --shadow-lg: 0 40px 100px rgba(74, 68, 63, 0.1);
  --text-rgb: 74, 68, 63;
  --bg-rgb: 247, 244, 239;
}

/* Ensure footer elements use Luxe Oat (#D2C4B1) background with Deep Mink Charcoal (#4A443F) typography */
:root[data-theme="light"] footer,
:root[data-theme="light"] .site-footer {
  background: #D2C4B1 !important;
  border-top-color: rgba(74, 68, 63, 0.1) !important;
  color: #4A443F !important;
}

:root[data-theme="light"] footer input,
:root[data-theme="light"] footer textarea,
:root[data-theme="light"] footer select {
  background: #F7F4EF !important;
  color: #4A443F !important;
  border: 1px solid rgba(74, 68, 63, 0.2) !important;
}

:root[data-theme="light"] footer input::placeholder,
:root[data-theme="light"] footer textarea::placeholder {
  color: rgba(74, 68, 63, 0.55) !important;
}

:root[data-theme="light"] footer .footer-tagline {
  color: rgba(74, 68, 63, 0.75) !important;
}

:root[data-theme="light"] footer .footer-copy {
  color: rgba(74, 68, 63, 0.5) !important;
}

:root[data-theme="light"] footer .footer-links a {
  color: #4A443F !important;
}

:root[data-theme="light"] footer .footer-links a:hover {
  color: #FFFFFF !important; /* White hover on Luxe Oat */
}

/* Ensure lightbox elements keep light colors since backdrop is dark */
:root[data-theme="light"] #auressa-lightbox {
  --cream: #f5ece0;
  --muted: rgba(245, 236, 224, 0.45);
  color: var(--cream);
}

/* Legibility fixes for inputs and placeholders in light theme + focus glow */
:root[data-theme="light"] input,
:root[data-theme="light"] select,
:root[data-theme="light"] textarea,
:root[data-theme="light"] .checkout-form input,
:root[data-theme="light"] .checkout-form textarea,
:root[data-theme="light"] .product-form input,
:root[data-theme="light"] .product-form textarea,
:root[data-theme="light"] .product-form select {
  background: rgba(74, 68, 63, 0.04) !important;
  color: #4A443F !important;
  border-color: rgba(74, 68, 63, 0.2) !important;
  transition: border-color 0.25s ease, box-shadow 0.25s ease !important;
}

:root[data-theme="light"] input:focus,
:root[data-theme="light"] select:focus,
:root[data-theme="light"] textarea:focus,
:root[data-theme="light"] .checkout-form input:focus,
:root[data-theme="light"] .checkout-form textarea:focus,
:root[data-theme="light"] .product-form input:focus,
:root[data-theme="light"] .product-form textarea:focus,
:root[data-theme="light"] .product-form select:focus {
  border-color: #D2C4B1 !important;
  box-shadow: 0 0 0 2px rgba(210, 196, 177, 0.3) !important;
  outline: none !important;
}

:root[data-theme="light"] input::placeholder,
:root[data-theme="light"] textarea::placeholder {
  color: rgba(74, 68, 63, 0.45) !important;
}

/* Legibility fixes for search overlay input */
:root[data-theme="light"] .search-box input {
  color: #4A443F !important;
}
:root[data-theme="light"] .search-box input::placeholder {
  color: rgba(74, 68, 63, 0.45) !important;
}

/* Category filter buttons in light theme */
:root[data-theme="light"] .filter-row button {
  color: rgba(74, 68, 63, 0.75) !important;
  border-color: rgba(210, 196, 177, 0.5) !important;
}
:root[data-theme="light"] .filter-row button:hover {
  color: #4A443F !important;
  border-color: #4A443F !important;
}
:root[data-theme="light"] .filter-row button.active {
  background: #4A443F !important;
  color: #F7F4EF !important;
  border-color: #4A443F !important;
}

/* Admin panel metric blocks, list elements, tabs and labels */
:root[data-theme="light"] .console-tabs button,
:root[data-theme="light"] .metric-grid small,
:root[data-theme="light"] .console-login small,
:root[data-theme="light"] .mini-button {
  color: rgba(74, 68, 63, 0.6) !important;
}
:root[data-theme="light"] .console-tabs button.active {
  background: #4A443F !important;
  color: #F7F4EF !important;
  border-color: #4A443F !important;
}
:root[data-theme="light"] .admin-item {
  background: rgba(74, 68, 63, 0.02) !important;
  border-color: rgba(210, 196, 177, 0.35) !important;
}
:root[data-theme="light"] .console-panel h3,
:root[data-theme="light"] .console-panel p,
:root[data-theme="light"] .admin-item h4,
:root[data-theme="light"] .admin-list span,
:root[data-theme="light"] .admin-list div,
:root[data-theme="light"] .admin-list p {
  color: #4A443F !important;
}

/* - Theme Icon Toggle Display - */
[data-theme="light"] .sun-icon {
  display: none !important;
}
[data-theme="light"] .moon-icon {
  display: inline-block !important;
}
:root:not([data-theme="light"]) .sun-icon {
  display: inline-block !important;
}
:root:not([data-theme="light"]) .moon-icon {
  display: none !important;
}

/* - Light Theme Specific Styles - */
:root[data-theme="light"] .site-ticker {
  background: #D2C4B1 !important;
  color: #FFFFFF !important;
  border-bottom: 1px solid rgba(210, 196, 177, 0.2) !important;
}

:root[data-theme="light"] .ticker-sep {
  color: rgba(255, 255, 255, 0.5) !important;
}

:root[data-theme="light"] .site-header {
  background: rgba(247, 244, 239, 0.95) !important;
}

:root[data-theme="light"] .site-header::before {
  display: none !important;
}

:root[data-theme="light"] .site-header.scrolled::before {
  background: rgba(247, 244, 239, 0.96) !important;
}

:root[data-theme="light"] .nav-link {
  color: rgba(74, 68, 63, 0.75) !important;
}

:root[data-theme="light"] .nav-link:hover {
  color: #4A443F !important;
}

:root[data-theme="light"] .icon-button {
  color: #4A443F !important;
  border-color: rgba(74, 68, 63, 0.2) !important;
  background: rgba(74, 68, 63, 0.03) !important;
}

:root[data-theme="light"] .icon-button:hover {
  background: #D2C4B1 !important;
  color: #4A443F !important;
  border-color: #D2C4B1 !important;
}

:root[data-theme="light"] .product-badge {
  background: #D2C4B1 !important;
  color: #FFFFFF !important;
  letter-spacing: 0.15em !important;
  font-size: 0.52rem !important;
  font-weight: 600 !important;
  border: 1px solid rgba(210, 196, 177, 0.3) !important;
  text-transform: uppercase !important;
}

:root[data-theme="light"] body {
  background: #F7F4EF;
}

:root[data-theme="light"] .nav-blur {
  background: rgba(247, 244, 239, 0.95);
  border-bottom-color: rgba(210, 196, 177, 0.35);
}

:root[data-theme="light"] .product-image {
  aspect-ratio: 3 / 4 !important;
  background: #F7F4EF !important;
  padding: 1.6rem !important;
}

:root[data-theme="light"] .product-bg-blur {
  display: none !important;
}

:root[data-theme="light"] .product-fg {
  padding: 0 !important;
}

:root[data-theme="light"] .product-image img {
  object-fit: contain !important;
  width: 100% !important;
  height: 100% !important;
  mix-blend-mode: multiply !important;
}

:root[data-theme="light"] .product-grid {
  background: #D2C4B1 !important;
  border-color: #D2C4B1 !important;
}

:root[data-theme="light"] .product-card {
  background: #F7F4EF !important;
  border: none !important;
  transition: background 0.3s ease, box-shadow 0.3s ease !important;
}

:root[data-theme="light"] .product-card:hover {
  background: #efebe4 !important;
  box-shadow: none !important;
}

/* Rule 2: Bespoke Button Micro-Interactions (fade duration 0.4s) */
:root[data-theme="light"] .btn-primary,
:root[data-theme="light"] .btn-outline,
:root[data-theme="light"] .detail-actions .btn-primary,
:root[data-theme="light"] .detail-actions .btn-outline,
:root[data-theme="light"] .modal-panel .btn-primary {
  background: transparent !important;
  border: 1px solid #4A443F !important;
  color: #4A443F !important;
  transition: background-color 0.4s ease, border-color 0.4s ease, color 0.4s ease !important;
  box-shadow: none !important;
  transform: none !important;
}

:root[data-theme="light"] .btn-primary::after,
:root[data-theme="light"] .btn-outline::after {
  display: none !important;
}

:root[data-theme="light"] .btn-primary:hover,
:root[data-theme="light"] .btn-outline:hover,
:root[data-theme="light"] .detail-actions .btn-primary:hover,
:root[data-theme="light"] .detail-actions .btn-outline:hover,
:root[data-theme="light"] .modal-panel .btn-primary:hover {
  background-color: #D2C4B1 !important;
  border-color: #D2C4B1 !important;
  color: #4A443F !important;
}

:root[data-theme="light"] .mobile-nav {
  background: rgba(247, 244, 239, 0.98) !important;
  border-color: rgba(210, 196, 177, 0.35) !important;
  box-shadow: var(--shadow-md) !important;
}

:root[data-theme="light"] .mobile-nav .nav-link {
  color: #4A443F !important;
  border-bottom-color: rgba(210, 196, 177, 0.2) !important;
}

:root[data-theme="light"] .mobile-nav .nav-link:hover {
  color: #D2C4B1 !important;
}

:root[data-theme="light"] .modal-panel,
:root[data-theme="light"] .cart-drawer {
  background: #F7F4EF;
  border-color: rgba(210, 196, 177, 0.5);
}

:root[data-theme="light"] ::-webkit-scrollbar-track {
  background: #F7F4EF;
}

:root[data-theme="light"] ::-webkit-scrollbar-thumb {
  background: rgba(210, 196, 177, 0.5);
  border-color: #F7F4EF;
}

:root[data-theme="light"] * {
  scrollbar-color: rgba(210, 196, 177, 0.5) #F7F4EF;
}

/* --- LIGHT THEME CONTRAST & VISIBILITY REFINEMENTS --- */

/* Hero Title ("AURESSA") Gradient Visibility & Legibility Overrides */
:root[data-theme="light"] .hero-title {
  background: linear-gradient(110deg, #FFFFFF 0%, #e8d09a 45%, #fff6e8 70%, #c9a55a 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  color: transparent !important;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.35) !important;
}

:root[data-theme="light"] .hero-label {
  color: #e8d09a !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.25) !important;
}

/* Eliminate Black Shading Vignette on Product Cards in Light Theme */
:root[data-theme="light"] .product-image::after {
  display: none !important;
}

/* Product Detail Copy Column styling (translucent Alabaster backdrop with Deep Mink text) */
:root[data-theme="light"] .product-detail-copy {
  background: rgba(247, 244, 239, 0.95) !important;
  border-color: rgba(210, 196, 177, 0.5) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  box-shadow: 0 30px 90px rgba(74, 68, 63, 0.08) !important;
}

:root[data-theme="light"] .product-detail-copy h2 {
  color: #4A443F !important;
}

:root[data-theme="light"] .detail-article {
  color: rgba(74, 68, 63, 0.6) !important;
}

:root[data-theme="light"] .detail-block > span {
  color: rgba(74, 68, 63, 0.6) !important;
}

:root[data-theme="light"] .eyebrow {
  color: #c9a55a !important;
  font-weight: 600 !important;
}

:root[data-theme="light"] .price strong,
:root[data-theme="light"] .detail-price strong {
  color: #4A443F !important;
}

:root[data-theme="light"] .price s,
:root[data-theme="light"] .detail-price s {
  color: rgba(74, 68, 63, 0.45) !important;
}

:root[data-theme="light"] .detail-options span {
  background: rgba(74, 68, 63, 0.05) !important;
  color: #4A443F !important;
  border-color: rgba(210, 196, 177, 0.5) !important;
}

/* Full-width Buy Now Button High-Contrast Styling */
:root[data-theme="light"] .btn-buy-now {
  background: #4A443F !important;
  color: #F7F4EF !important;
  border-color: #4A443F !important;
  box-shadow: 0 6px 22px rgba(74, 68, 63, 0.2) !important;
}
:root[data-theme="light"] .btn-buy-now:hover {
  background: #2e2a27 !important;
  border-color: #2e2a27 !important;
  color: #F7F4EF !important;
  box-shadow: 0 12px 36px rgba(74, 68, 63, 0.3) !important;
}
:root[data-theme="light"] .btn-buy-now--full {
  background: #4A443F !important;
  color: #F7F4EF !important;
  border-color: #4A443F !important;
  box-shadow: 0 8px 30px rgba(74, 68, 63, 0.2) !important;
}

:root[data-theme="light"] .btn-buy-now--full:hover {
  background: #2e2a27 !important;
  color: #F7F4EF !important;
  border-color: #2e2a27 !important;
  box-shadow: 0 16px 48px rgba(74, 68, 63, 0.35) !important;
}

/* Gallery Arrows and Slides Backdrop Adjustments */
:root[data-theme="light"] .product-detail-main {
  background: #efebe4 !important;
  border-color: rgba(210, 196, 177, 0.4) !important;
}

:root[data-theme="light"] .product-detail-main img {
  filter: drop-shadow(0 15px 35px rgba(74, 68, 63, 0.12)) !important;
}

:root[data-theme="light"] .gallery-arrow {
  background: rgba(247, 244, 239, 0.8) !important;
  border-color: rgba(210, 196, 177, 0.4) !important;
  color: #4A443F !important;
}

:root[data-theme="light"] .gallery-arrow:hover {
  background: #D2C4B1 !important;
  color: #4A443F !important;
  border-color: #D2C4B1 !important;
}

/* Cart & Checkout Drawer Text Contrast & Readability */
:root[data-theme="light"] .cart-drawer h2,
:root[data-theme="light"] .cart-drawer p,
:root[data-theme="light"] .cart-drawer span,
:root[data-theme="light"] .cart-drawer label,
:root[data-theme="light"] .cart-drawer div,
:root[data-theme="light"] .cart-drawer form,
:root[data-theme="light"] .cart-total strong,
:root[data-theme="light"] .cart-item h4,
:root[data-theme="light"] .checkout-form h3,
:root[data-theme="light"] .checkout-form p,
:root[data-theme="light"] .checkout-form span,
:root[data-theme="light"] .checkout-form label {
  color: #4A443F !important;
}

:root[data-theme="light"] .cart-item p {
  color: rgba(74, 68, 63, 0.7) !important;
}

:root[data-theme="light"] .cart-drawer-header,
:root[data-theme="light"] .cart-item,
:root[data-theme="light"] .cart-total {
  border-color: rgba(210, 196, 177, 0.35) !important;
}

/* Light Theme Contrast & Legibility Overrides */
:root[data-theme="light"] .marquee-track span {
  color: rgba(74, 68, 63, 0.65) !important;
}

:root[data-theme="light"] .pillar p {
  color: rgba(74, 68, 63, 0.75) !important;
}

:root[data-theme="light"] .atelier-num strong {
  color: #c9a55a !important;
}

:root[data-theme="light"] .atelier-num span {
  color: rgba(74, 68, 63, 0.75) !important;
}

:root[data-theme="light"] .form-info p {
  color: rgba(74, 68, 63, 0.8) !important;
}

:root[data-theme="light"] .checkbox-label {
  color: #4A443F !important;
}

:root[data-theme="light"] .console-login p {
  color: rgba(74, 68, 63, 0.75) !important;
}

:root[data-theme="light"] .product-image::before {
  color: #F7F4EF !important;
  border-color: rgba(247, 244, 239, 0.5) !important;
}

:root[data-theme="light"] .toast {
  color: #4A443F !important;
  border-color: rgba(74, 68, 63, 0.25) !important;
}

:root[data-theme="light"] .label-tag {
  color: #c9a55a !important;
  font-weight: 600 !important;
}

:root[data-theme="light"] .form-band.alt {
  background: #efebe4 !important;
}

:root[data-theme="light"] .metric-grid div {
  background: #FFFFFF !important;
  border-color: rgba(210, 196, 177, 0.5) !important;
}

:root[data-theme="light"] .metric-grid span {
  color: #4A443F !important;
}

:root[data-theme="light"] .mini-button:hover {
  background: #4A443F !important;
  color: #F7F4EF !important;
  border-color: #4A443F !important;
}

/* Light theme high-contrast status tags */
:root[data-theme="light"] .admin-item-status-tag.new {
  color: #7a633a !important;
  background: rgba(122, 99, 58, 0.1) !important;
  border-color: rgba(122, 99, 58, 0.25) !important;
}
:root[data-theme="light"] .admin-item-status-tag.processing {
  color: #1e3a8a !important;
  background: rgba(30, 58, 138, 0.1) !important;
  border-color: rgba(30, 58, 138, 0.25) !important;
}
:root[data-theme="light"] .admin-item-status-tag.shipped,
:root[data-theme="light"] .admin-item-status-tag.dispatched {
  color: #4c1d95 !important;
  background: rgba(76, 29, 149, 0.1) !important;
  border-color: rgba(76, 29, 149, 0.25) !important;
}
:root[data-theme="light"] .admin-item-status-tag.delivered,
:root[data-theme="light"] .admin-item-status-tag.completed,
:root[data-theme="light"] .admin-item-status-tag.active {
  color: #065f46 !important;
  background: rgba(6, 95, 70, 0.1) !important;
  border-color: rgba(6, 95, 70, 0.25) !important;
}
:root[data-theme="light"] .admin-item-status-tag.cancelled,
:root[data-theme="light"] .admin-item-status-tag.inactive {
  color: #991b1b !important;
  background: rgba(153, 27, 27, 0.1) !important;
  border-color: rgba(153, 27, 27, 0.25) !important;
}

/* Light theme high-contrast status buttons */
:root[data-theme="light"] .order-status-btn.pending {
  color: #b45309 !important;
  border-color: rgba(180, 83, 9, 0.4) !important;
  background: rgba(180, 83, 9, 0.05) !important;
}
:root[data-theme="light"] .order-status-btn.pending:hover:not(:disabled) {
  border-color: #b45309 !important;
  background: rgba(180, 83, 9, 0.12) !important;
}
:root[data-theme="light"] .order-status-btn.dispatched {
  color: #6d28d9 !important;
  border-color: rgba(109, 40, 217, 0.4) !important;
  background: rgba(109, 40, 217, 0.05) !important;
}
:root[data-theme="light"] .order-status-btn.dispatched:hover:not(:disabled) {
  border-color: #6d28d9 !important;
  background: rgba(109, 40, 217, 0.12) !important;
}
:root[data-theme="light"] .order-status-btn.completed {
  color: #047857 !important;
  border-color: rgba(4, 120, 87, 0.4) !important;
  background: rgba(4, 120, 87, 0.05) !important;
}
:root[data-theme="light"] .order-status-btn.completed:hover:not(:disabled) {
  border-color: #047857 !important;
  background: rgba(4, 120, 87, 0.12) !important;
}
:root[data-theme="light"] .order-delete-btn {
  color: #b91c1c !important;
  border-color: rgba(185, 28, 28, 0.4) !important;
  background: rgba(185, 28, 28, 0.05) !important;
}
:root[data-theme="light"] .order-delete-btn:hover {
  color: #FFFFFF !important;
  background: #b91c1c !important;
  border-color: #b91c1c !important;
}


/* - Reset & Scrollbar - */
*,
*::before,
*::after {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

/* Custom luxury scrollbar styling */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--black);
  border-left: 1px solid var(--line);
}

::-webkit-scrollbar-thumb {
  background: rgba(201, 165, 90, 0.22);
  border-radius: 4px;
  border: 2px solid var(--black);
  transition: background 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(201, 165, 90, 0.45);
}

/* Firefox scrollbar styling */
* {
  scrollbar-width: thin;
  scrollbar-color: rgba(201, 165, 90, 0.22) var(--black);
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--cream);
  background: var(--black);
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
}

body.no-scroll {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
  border: 0;
  background: none;
}

/* - Typography - */
h1,
h2,
h3,
h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: .95;
  letter-spacing: -.01em;
  margin: 0;
}

.section-title {
  font-size: clamp(2.6rem, 5vw, 5.5rem);
  color: var(--cream);
  line-height: 1;
}

.section-title em {
  font-style: italic;
  color: var(--gold);
}

.label-tag {
  display: inline-block;
  font-family: var(--font-alt);
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.eyebrow {
  margin: 0 0 .6rem;
  font-family: var(--font-alt);
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
}

/* - Custom Cursor - */
.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate3d(0, 0, 0) translate(-50%, -50%);
  transition: width .2s var(--ease-out), height .2s var(--ease-out);
  will-change: transform;
}

.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(201, 165, 90, .5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate3d(0, 0, 0) translate(-50%, -50%);
  transition: width .3s var(--ease-out), height .3s var(--ease-out), border-color .3s ease;
  will-change: transform;
}

.cursor-dot.hover {
  width: 18px;
  height: 18px;
}

.cursor-ring.hover {
  width: 60px;
  height: 60px;
  border-color: rgba(201, 165, 90, .8);
}

/* - Particle Canvas - */
#aurora-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  opacity: .3;
}

/* - Ticker - */
.site-ticker {
  position: relative;
  z-index: 30;
  background: var(--gold);
  color: var(--black);
  overflow: hidden;
  width: 100%;
}

.ticker-track {
  display: flex;
  width: max-content;
  gap: 3rem;
  padding: .55rem 0;
  animation: tickerScroll 28s linear infinite;
  white-space: nowrap;
}

.ticker-track span {
  font-family: var(--font-alt);
  font-size: .6rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.ticker-sep {
  color: rgba(0, 0, 0, .4);
}

@keyframes tickerScroll {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

/* - Header - */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 1.4rem clamp(1.5rem, 5vw, 4rem);
  transition: background .35s ease, padding .35s ease, box-shadow .35s ease;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(var(--bg-rgb, 5, 3, 2), .9) 0%, transparent 100%);
  pointer-events: none;
  transition: opacity .35s ease;
}

.site-header.scrolled::before {
  background: rgba(var(--bg-rgb, 5, 3, 2), .96);
}

.site-header.scrolled {
  padding-top: .85rem;
  padding-bottom: .85rem;
  box-shadow: 0 1px 0 var(--line);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.brand {
  position: relative;
  z-index: 1;
}

.brand img {
  width: min(160px, 30vw);
}

.desktop-nav {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  gap: 2.5rem;
}

.nav-link {
  font-family: var(--font-alt);
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(var(--text-rgb, 245, 236, 224), .75);
  position: relative;
  transition: color .2s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -.3rem;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease-out);
}

.nav-link:hover {
  color: var(--cream);
}

.nav-link:hover::after {
  transform: scaleX(1);
}

.header-actions {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: .5rem;
}

.icon-button {
  width: 40px;
  height: 40px;
  border: 1px solid var(--line-lg);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--cream);
  background: rgba(255, 255, 255, .04);
  transition: background .2s ease, border-color .2s ease, transform .2s var(--ease-out), color .2s ease;
}

.icon-button:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
  transform: scale(1.05);
}

.icon-button svg {
  width: 17px;
  height: 17px;
}

.cart-trigger {
  position: relative;
}

.cart-trigger span {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 17px;
  height: 17px;
  border-radius: 99px;
  background: var(--wine);
  color: #fff;
  font-size: .6rem;
  font-weight: 700;
  display: grid;
  place-items: center;
}

.menu-trigger {
  display: none;
}

/* - Mobile Nav - */
.mobile-nav {
  display: none;
  position: fixed;
  top: 90px;
  left: 1rem;
  right: 1rem;
  z-index: 25;
  background: rgba(10, 8, 7, .98);
  border: 1px solid var(--line-lg);
  border-radius: var(--r);
  padding: 1.2rem;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(20px);
}

.mobile-nav.open {
  display: grid;
  gap: .1rem;
  animation: panelRise .25s var(--ease-out) both;
}

.mobile-nav .nav-link {
  display: block;
  padding: .9rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, .05);
  font-size: .85rem;
  letter-spacing: .1em;
  color: var(--cream);
}

.mobile-nav .nav-link:last-child {
  border-bottom: 0;
}

/* - Hero - */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: var(--black);
  z-index: 2;
}

/* Slideshow */
.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  will-change: opacity, transform;
  animation: heroSlide 24s infinite;
}

.hero-slide:nth-child(1) {
  animation-delay: 0s;
}

.hero-slide:nth-child(2) {
  animation-delay: 6s;
}

.hero-slide:nth-child(3) {
  animation-delay: 12s;
}

.hero-slide:nth-child(4) {
  animation-delay: 18s;
}

@keyframes heroSlide {
  0% {
    opacity: 0;
    transform: scale(1.04) translateZ(0);
  }

  5% {
    opacity: 1;
  }

  25% {
    opacity: 1;
    transform: scale(1.08) translateZ(0);
  }

  30% {
    opacity: 0;
  }

  100% {
    opacity: 0;
    transform: scale(1.1) translateZ(0);
  }
}

/* Vignette */
.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(to right, rgba(5, 3, 2, .85) 0%, rgba(5, 3, 2, .3) 50%, rgba(5, 3, 2, .2) 100%),
    linear-gradient(to top, rgba(5, 3, 2, .9) 0%, transparent 55%);
}

/* Orbs */
.orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 3;
  filter: blur(100px);
  animation: orbDrift 14s ease-in-out infinite;
}

.orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201, 165, 90, .14) 0%, transparent 65%);
  top: -10%;
  left: -8%;
}

.orb-2 {
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(196, 63, 104, .1) 0%, transparent 65%);
  bottom: 5%;
  right: 2%;
  animation-delay: -6s;
}

@keyframes orbDrift {

  0%,
  100% {
    transform: translate(0, 0);
  }

  33% {
    transform: translate(40px, -50px);
  }

  66% {
    transform: translate(-25px, 30px);
  }
}

/* Hero Text */
.hero-text {
  position: relative;
  z-index: 5;
  padding: 0 clamp(1.25rem, 6vw, 5rem);
  width: 100%;
  max-width: min(700px, 85vw);
  box-sizing: border-box;
  margin-top: 5rem;
  /* Allow hero-title to overflow container without clipping */
  overflow: visible;
}

.hero-label {
  font-family: var(--font-alt);
  font-size: .6rem;
  font-weight: 500;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1.5rem;
}

.hero-title {
  font-family: var(--font-serif);
  /* Use viewport-based sizing that guarantees single-row across all devices */
  font-size: clamp(2.4rem, 14vw, 9.5rem);
  font-weight: 300;
  letter-spacing: 0.12em;
  line-height: .88;
  margin: 0 0 2rem;
  /* Gradient shimmer */
  background: linear-gradient(110deg, #fff9f0 0%, var(--gold-lt) 40%, #fff3e0 65%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 4px 24px rgba(5, 3, 2, .75);
  white-space: nowrap;
  /* Prevent overflow cutoff due to background-clip */
  width: max-content;
  max-width: none;
  overflow: visible;
}

.hero-sub {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(245, 236, 224, .85);
  /* Slightly increased opacity */
  margin: 0 0 2.5rem;
  line-height: 1.4;
  text-shadow: 0 2px 12px rgba(5, 3, 2, .85);
}

.hero-cta {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
}

.btn-text {
  font-family: var(--font-alt);
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap .2s ease;
  display: flex;
  gap: .6rem;
  align-items: center;
}

.btn-text span {
  transition: transform .2s ease;
}

.btn-text:hover span {
  transform: translateX(4px);
}

/* Hero Aside */
.hero-aside {
  position: absolute;
  right: clamp(1.5rem, 4vw, 3.5rem);
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  transform-origin: center;
  z-index: 5;
  font-family: var(--font-alt);
  font-size: .55rem;
  font-weight: 500;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: rgba(245, 236, 224, .4);
  text-align: center;
  line-height: 2;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translate3d(-50%, 0, 0);
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  align-items: center;
}

.hero-scroll span {
  font-family: var(--font-alt);
  font-size: .55rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(245, 236, 224, .55);
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: .5;
    height: 50px;
  }

  50% {
    opacity: 1;
    height: 70px;
  }
}

/* Slide counter */
.hero-counter {
  position: absolute;
  bottom: 2.5rem;
  right: clamp(1.5rem, 4vw, 3.5rem);
  z-index: 5;
  font-family: var(--font-alt);
  font-size: .6rem;
  font-weight: 500;
  letter-spacing: .12em;
  color: rgba(245, 236, 224, .45);
  transition: opacity .3s ease;
}

/* - Marquee Strip - */
.marquee-strip {
  position: relative;
  z-index: 2;
  overflow: hidden;
  background: var(--dark);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 1.2rem 0;
}

.marquee-track {
  display: flex;
  gap: 2.5rem;
  white-space: nowrap;
  animation: marquee 35s linear infinite;
  width: max-content;
}

.marquee-track span {
  font-family: var(--font-alt);
  font-size: .65rem;
  font-weight: 400;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(245, 236, 224, .4);
}

.marquee-track .mx {
  color: var(--gold);
  opacity: .6;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* - Buttons - */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: .85rem 2.2rem;
  background: linear-gradient(135deg, var(--gold-lt) 0%, var(--gold) 50%, var(--gold-dk) 100%);
  color: var(--black);
  font-family: var(--font-alt);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-radius: 3px;
  border: none;
  position: relative;
  overflow: hidden;
  transition: transform .22s var(--ease-out), box-shadow .22s ease;
  cursor: pointer;
}

.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .2), transparent);
  transform: translateX(-120%);
  transition: transform .5s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(201, 165, 90, .35);
}

.btn-primary:hover::after {
  transform: translateX(120%);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: .85rem 2rem;
  background: transparent;
  color: var(--cream);
  font-family: var(--font-alt);
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  border: 1px solid var(--line-lg);
  border-radius: 3px;
  transition: border-color .2s ease, color .2s ease, background .2s ease;
  cursor: pointer;
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  font-family: var(--font-alt);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-radius: 3px;
  margin-top: .5rem;
  transition: transform .2s ease, box-shadow .2s ease;
  cursor: pointer;
}

.btn-whatsapp:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, .3);
}

/* - Shop Section - */
.shop-section {
  position: relative;
  z-index: 2;
  padding: clamp(4rem, 8vw, 8rem) clamp(1.5rem, 5vw, 4rem);
  background: var(--black);
}

.shop-section::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-lg), transparent);
  margin-bottom: clamp(3rem, 5vw, 5rem);
}

.shop-header {
  max-width: 1280px;
  margin: 0 auto 3rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: end;
}

.shop-heading-block .section-title {
  margin-top: .5rem;
}

.shop-controls {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  align-items: flex-end;
  min-width: 280px;
}

.search-box {
  display: flex;
  align-items: center;
  gap: .6rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .03);
  border-radius: var(--r);
  padding: 0 1rem;
  min-height: 46px;
  color: var(--muted);
  width: 100%;
  transition: border-color .2s ease;
}

.search-box:focus-within {
  border-color: var(--gold);
}

.search-box i {
  color: var(--gold);
  flex-shrink: 0;
}

.search-box svg {
  width: 15px;
  height: 15px;
}

.search-box input {
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--cream);
  width: 100%;
  font-size: .85rem;
}

.search-box input::placeholder {
  color: rgba(245, 236, 224, .3);
}

.filter-row {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.filter-row button {
  border: 1px solid var(--line);
  background: transparent;
  color: rgba(245, 236, 224, .65);
  border-radius: 99px;
  padding: .55rem 1.15rem;
  font-family: var(--font-alt);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: border-color .2s ease, color .2s ease, background .2s ease;
  cursor: pointer;
}

.filter-row button:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.filter-row button.active {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

/* - Product Grid - */
.product-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.product-card {
  background: var(--black);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background .3s ease, box-shadow .3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card:hover {
  background: var(--dark);
  box-shadow: inset 0 0 0 1px rgba(201, 165, 90, 0.28);
}

.product-image {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  position: relative;
  background: var(--black);
}

.product-image img.product-bg-blur {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(24px) opacity(0.35);
  transform: scale(1.15) translateZ(0);
  pointer-events: none;
  z-index: 1;
  transition: transform .7s var(--ease-out), filter .7s ease, opacity .3s ease;
}

.product-image img.product-fg {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: contain;
  box-sizing: border-box;
  transition: transform .7s var(--ease-out), filter .7s ease;
}

.product-card:hover .product-image img.product-fg {
  transform: scale(1.05);
  filter: saturate(1.08);
}

.product-card:hover .product-image img.product-bg-blur {
  transform: scale(1.22) translateZ(0);
  filter: blur(24px) opacity(0.48);
}

/* Overlay on hover */
.product-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(5, 3, 2, .75));
  opacity: 0;
  z-index: 3;
  transition: opacity .3s ease;
}

.product-card:hover .product-image::after {
  opacity: 1;
}

/* Quick view on hover */
.product-image::before {
  content: "View";
  position: absolute;
  bottom: 1.2rem;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  z-index: 4;
  font-family: var(--font-alt);
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--cream);
  border: 1px solid rgba(245, 236, 224, .5);
  padding: .45rem 1rem;
  border-radius: 99px;
  background: rgba(5, 3, 2, .6);
  opacity: 0;
  transition: opacity .3s ease, transform .3s var(--ease-out);
  backdrop-filter: blur(8px);
}

.product-card:hover .product-image::before {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.product-badge {
  position: absolute;
  top: .85rem;
  left: .85rem;
  z-index: 3;
  font-family: var(--font-alt);
  font-size: .55rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--black);
  padding: .3rem .6rem;
  border-radius: 2px;
}

.product-badge.sold-out {
  background: rgba(196, 63, 104, .15);
  color: #ff8ca3;
  border: 1px solid rgba(196, 63, 104, .3);
}

.product-info {
  padding: 1.1rem 1.2rem 1.4rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-meta {
  display: flex;
  flex-direction: column;
  gap: .2rem;
  margin-bottom: .6rem;
}

.product-meta h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--cream);
  line-height: 1.25;
}

.product-meta small {
  font-family: var(--font-alt);
  font-size: .62rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.85;
}

.price {
  display: flex;
  gap: .45rem;
  align-items: baseline;
}

.price strong {
  color: var(--gold);
  font-size: .95rem;
  font-weight: 500;
}

.price s {
  color: rgba(245, 236, 224, .3);
  font-size: .8rem;
}

.swatches {
  display: flex;
  gap: .4rem;
  margin: .6rem 0;
}

.swatch {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid rgba(245, 236, 224, .2);
  box-shadow: inset 0 0 0 1px rgba(5, 3, 2, .8);
  transition: transform 0.2s var(--ease-out), border-color 0.2s ease;
}

.swatch:hover {
  transform: scale(1.2);
  border-color: var(--gold);
}

.product-actions {
  margin-top: auto;
  padding-top: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.product-info .btn-primary {
  width: 100%;
  min-height: 42px;
  font-size: .68rem;
  padding: .65rem 1.2rem;
  justify-content: center;
  display: inline-flex;
}

/* Buy Now button — high-emphasis primary CTA */
.btn-buy-now {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  width: 100%;
  min-height: 42px;
  padding: .65rem 1.4rem;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-alt);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  border: 2px solid var(--gold);
  border-radius: 3px;
  position: relative;
  overflow: hidden;
  transition: background .25s var(--ease-out), color .25s ease, border-color .25s ease, transform .2s var(--ease-out), box-shadow .25s ease;
  cursor: pointer;
  box-shadow: 0 6px 22px rgba(201,165,90,.3);
}
.btn-buy-now::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.18), transparent);
  transform: translateX(-120%);
  transition: transform .5s ease;
}
.btn-buy-now:hover {
  background: var(--gold-lt);
  border-color: var(--gold-lt);
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(201,165,90,.45);
}
.btn-buy-now:hover::after {
  transform: translateX(120%);
}
.btn-buy-now:active { transform: translateY(0) scale(.98); box-shadow: none; }

/* Full-width variant for product detail page — even more prominent */
.btn-buy-now--full {
  margin-top: .85rem;
  min-height: 54px;
  font-size: .78rem;
  letter-spacing: .16em;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold-lt) 0%, var(--gold) 50%, var(--gold-dk) 100%);
  border: none;
  box-shadow: 0 8px 30px rgba(201,165,90,.4), inset 0 1px 0 rgba(255,255,255,.15);
}
.btn-buy-now--full:hover {
  background: linear-gradient(135deg, #fde9b0 0%, var(--gold-lt) 50%, var(--gold) 100%);
  box-shadow: 0 16px 48px rgba(201,165,90,.55);
}


/* - Product Detail - */
.product-page {
  position: relative;
  z-index: 2;
  padding: clamp(5rem, 8vw, 8rem) clamp(1.5rem, 5vw, 4rem) clamp(3rem, 6vw, 6rem);
  background: var(--black);
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  max-width: 1280px;
  margin: 0 auto 2rem;
  font-family: var(--font-alt);
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 0;
  background: transparent;
  border: 0;
  transition: gap .2s ease;
}

.back-link:hover {
  gap: .75rem;
}

.back-link svg {
  width: 16px;
  height: 16px;
}

.product-detail-shell {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, .9fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
  animation: fadeUp .55s var(--ease-out) both;
}

.product-detail-gallery {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  min-width: 0;
}

.product-detail-main {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: var(--r);
  overflow: hidden;
  background: var(--dark);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
}

.product-detail-main img {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  width: calc(100% - 2.5rem);
  height: calc(100% - 2.5rem);
  object-fit: contain;
  z-index: 1;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, .6));
  transition: opacity .2s ease;
  animation: imgSettle .4s var(--ease-out);
}

@keyframes imgSettle {
  from {
    opacity: .3;
    transform: scale(1.02);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(5, 3, 2, .7);
  border: 1px solid var(--line-lg);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  transition: background .2s ease, transform .2s var(--ease-out);
  z-index: 10;
}

.gallery-arrow:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-50%) scale(1.08);
}

.gallery-arrow svg {
  width: 18px;
  height: 18px;
}

.gallery-arrow.prev {
  left: 1rem;
}

.gallery-arrow.next {
  right: 1rem;
}

.product-thumbs {
  display: flex;
  gap: .6rem;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding: .25rem;
  width: 100%;
  max-width: 100%;
}

.product-thumbs button {
  width: 76px;
  height: 76px;
  flex-shrink: 0;
  border: 2px solid transparent;
  border-radius: var(--r);
  overflow: hidden;
  background: var(--dark);
  padding: 0;
  transition: border-color .2s ease, transform .2s var(--ease-out);
}

.product-thumbs button:hover {
  transform: translateY(-3px);
}

.product-thumbs button.active {
  border-color: var(--gold);
}

.product-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .75;
  transition: opacity .2s ease;
}

.product-thumbs button.active img,
.product-thumbs button:hover img {
  opacity: 1;
}

.product-detail-copy {
  position: sticky;
  top: 110px;
  background: rgba(15, 11, 9, .7);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.product-detail-copy h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  margin-bottom: .5rem;
  color: var(--cream);
}

.detail-article {
  font-family: var(--font-alt);
  font-size: .6rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(245, 236, 224, .35);
  margin: 0 0 1.2rem;
  font-weight: 500;
}

.detail-price {
  margin: 1.2rem 0;
  font-size: 1.1rem;
}

.detail-price strong {
  font-family: var(--font-serif);
  font-size: 1.5rem;
}

.detail-block {
  margin: 1.2rem 0;
  display: grid;
  gap: .55rem;
}

.detail-block>span {
  font-family: var(--font-alt);
  font-size: .58rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(245, 236, 224, .4);
}

.swatch.big {
  width: 22px;
  height: 22px;
  cursor: pointer;
  padding: 0;
  transition: transform 0.2s var(--ease-out), border-color 0.2s ease;
}

.swatch.big:hover {
  transform: scale(1.15);
  border-color: var(--gold);
}

.swatch.big:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.detail-options {
  display: flex;
  gap: .4rem;
  flex-wrap: wrap;
}

.detail-options span {
  border: 1px solid var(--line-lg);
  border-radius: 3px;
  padding: .45rem .7rem;
  background: rgba(255, 255, 255, .04);
  color: rgba(245, 236, 224, .7);
  font-size: .8rem;
}

.detail-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .6rem;
  margin-top: 1.4rem;
}

.detail-actions .btn-primary,
.detail-actions .btn-outline {
  min-height: 48px;
}

.detail-actions .btn-whatsapp {
  grid-column: span 2;
  margin-top: 0.4rem;
}

/* - Pillars - */
.pillars-section {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--dark);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.pillar {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  padding: 2.5rem 1rem;
  border-right: 1px solid var(--line);
  text-align: center;
  transition: background .25s ease;
  cursor: default;
}

.pillar:last-child {
  border-right: 0;
}

.pillar:hover {
  background: rgba(201, 165, 90, .05);
}

.pillar svg {
  width: 22px;
  height: 22px;
  color: var(--gold);
}

.pillar p {
  font-family: var(--font-alt);
  font-size: .62rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(245, 236, 224, .65);
  margin: 0;
}

/* - Atelier - */
.atelier-section {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 90vh;
  background: var(--black);
  border-top: 1px solid var(--line);
}

.atelier-left {
  padding: clamp(4rem, 8vw, 9rem) clamp(2rem, 5vw, 5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: sticky;
  top: 0;
  height: 100vh;
}

.atelier-body {
  color: var(--muted);
  font-size: clamp(.9rem, 1.2vw, 1.05rem);
  line-height: 1.7;
  margin: 1.5rem 0 2.5rem;
  max-width: 480px;
}

.atelier-numbers {
  display: flex;
  gap: 2.5rem;
  margin-top: .5rem;
}

.atelier-num {
  display: flex;
  flex-direction: column;
  gap: .2rem;
}

.atelier-num strong {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
}

.atelier-num span {
  font-family: var(--font-alt);
  font-size: .6rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(245, 236, 224, .4);
}

.atelier-right {
  border-left: 1px solid var(--line);
  padding: clamp(2rem, 4vw, 4rem);
  display: flex;
  align-items: center;
}

.atelier-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: .75rem;
  width: 100%;
}

.atelier-img-wrap {
  overflow: hidden;
  border-radius: var(--r);
  position: relative;
}

.atelier-img-wrap.a-tall {
  grid-row: 1 / 3;
}

.atelier-img-wrap.a-short {}

.atelier-img-wrap.a-bottom {}

.atelier-img-wrap img {
  width: 100%;
  height: 100%;
  min-height: 200px;
  object-fit: cover;
  transition: transform .65s var(--ease-out), filter .65s ease;
}

.atelier-img-wrap:hover img {
  transform: scale(1.04);
  filter: saturate(1.1) brightness(1.05);
}

/* - Form Band - */
.form-band {
  position: relative;
  z-index: 2;
  padding: clamp(4rem, 7vw, 8rem) clamp(1.5rem, 5vw, 4rem);
  background: var(--black);
  border-top: 1px solid var(--line);
}

.form-band.alt {
  background: var(--ink);
}

.form-band-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.form-info h2 {
  margin-top: .5rem;
}

.form-info p {
  margin-top: 1.5rem;
  color: rgba(245, 236, 224, .75);
  /* Increased contrast */
  font-size: .95rem;
  line-height: 1.7;
}

.lux-form {
  display: grid;
  gap: .7rem;
}

.lux-form .btn-primary {
  justify-self: start;
  min-width: 220px;
}

@media (max-width: 640px) {
  .lux-form .btn-primary {
    justify-self: stretch;
    width: 100%;
  }
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .7rem;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: .85rem 1rem;
  background: rgba(255, 255, 255, .03);
  color: var(--cream);
  outline: none;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
  font-size: .9rem;
}

input::placeholder,
textarea::placeholder {
  color: rgba(245, 236, 224, .25);
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--gold);
  background: rgba(201, 165, 90, .04);
  box-shadow: 0 0 0 3px rgba(201, 165, 90, .1);
}

select option {
  background: var(--ink);
}

textarea {
  resize: vertical;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: .6rem;
  cursor: pointer;
  color: rgba(245, 236, 224, .6);
  font-size: .85rem;
}

.checkbox-label input[type="checkbox"] {
  width: auto;
  height: auto;
  margin: 0;
  cursor: pointer;
  accent-color: var(--gold);
}

/* - Console - */
.console-section {
  position: relative;
  z-index: 2;
  background: var(--black);
  padding: clamp(4rem, 7vw, 8rem) clamp(1.5rem, 5vw, 4rem);
  border-top: 1px solid var(--line);
}

.console-shell {
  max-width: 1200px;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--panel);
  backdrop-filter: blur(16px);
  padding: clamp(1.5rem, 3vw, 2.5rem);
}

.console-login {
  max-width: 460px;
  margin: 0 auto;
  text-align: center;
}

.console-login h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin: .5rem 0 .75rem;
}

.console-login p {
  color: rgba(245, 236, 224, .5);
  margin-bottom: 1.5rem;
  font-size: .9rem;
}

.console-login .lux-form {
  text-align: left;
}

.console-login small {
  color: rgba(245, 236, 224, .3);
  font-size: .75rem;
  text-align: center;
  display: block;
  margin-top: .5rem;
}

.console-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.console-top h2 {
  font-size: clamp(1.6rem, 3vw, 2.6rem);
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .75rem;
  margin-bottom: 1.5rem;
}

.metric-grid div {
  background: var(--dark);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 1.2rem;
  position: relative;
  overflow: hidden;
  transition: border-color .2s ease, transform .2s var(--ease-out);
}

.metric-grid div:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}

.metric-grid span {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--gold);
}

.metric-grid small {
  font-family: var(--font-alt);
  font-size: .58rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(245, 236, 224, .4);
}

.console-tabs {
  display: flex;
  gap: .35rem;
  overflow-x: auto;
  margin-bottom: 1.2rem;
}

.console-tabs button {
  border: 1px solid var(--line);
  background: transparent;
  color: rgba(245, 236, 224, .5);
  border-radius: 3px;
  padding: .55rem 1rem;
  font-family: var(--font-alt);
  font-size: .62rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: border-color .2s ease, color .2s ease, background .2s ease;
  cursor: pointer;
}

.console-tabs button:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.console-tabs button.active {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.console-panel {
  display: none;
}

.console-panel.active {
  display: grid;
  gap: 1rem;
}

.field-pair {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .7rem;
}

.admin-list {
  display: grid;
  gap: .6rem;
}

.admin-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: .75rem;
  align-items: center;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .02);
  border-radius: var(--r);
  padding: .75rem;
  transition: border-color .2s ease;
}

.admin-item:hover {
  border-color: var(--line-lg);
}

.admin-item img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 4px;
}

.admin-actions {
  display: flex;
  gap: .35rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.mini-button {
  border: 1px solid var(--line-lg);
  border-radius: 3px;
  padding: .4rem .7rem;
  background: rgba(255, 255, 255, .04);
  color: rgba(245, 236, 224, .6);
  font-family: var(--font-alt);
  font-size: .58rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
  cursor: pointer;
}

.mini-button:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.panel-actions {
  display: flex;
  gap: .5rem;
}

.product-form {
  display: grid;
  gap: .7rem;
}

/* Admin status tags */
.admin-item-status-tag {
  display: inline-block;
  padding: .3rem .6rem;
  border-radius: 99px;
  font-family: var(--font-alt);
  font-size: .55rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.admin-item-status-tag.new {
  background: rgba(201, 165, 90, .15);
  color: var(--gold-lt);
  border: 1px solid rgba(201, 165, 90, .3);
}

.admin-item-status-tag.processing {
  background: rgba(37, 99, 235, .15);
  color: #93c5fd;
  border: 1px solid rgba(37, 99, 235, .3);
}

.admin-item-status-tag.shipped {
  background: rgba(124, 58, 237, .15);
  color: #c4b5fd;
  border: 1px solid rgba(124, 58, 237, .3);
}

.admin-item-status-tag.delivered {
  background: rgba(16, 185, 129, .15);
  color: #6ee7b7;
  border: 1px solid rgba(16, 185, 129, .3);
}

.admin-item-status-tag.cancelled {
  background: rgba(239, 68, 68, .15);
  color: #fca5a5;
  border: 1px solid rgba(239, 68, 68, .3);
}

.admin-item-status-tag.active {
  background: rgba(16, 185, 129, .15);
  color: #6ee7b7;
  border: 1px solid rgba(16, 185, 129, .3);
}

.admin-item-status-tag.inactive {
  background: rgba(196, 63, 104, .15);
  color: #ff8ca3;
  border: 1px solid rgba(196, 63, 104, .3);
}

/* - Footer - */
.site-footer {
  position: relative;
  z-index: 2;
  background: #000;
  border-top: 1px solid var(--line);
  padding: 4rem clamp(1.5rem, 5vw, 4rem) 2.5rem;
  text-align: center;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.footer-logo {
  width: min(200px, 45vw);
  margin: 0 auto 1.25rem;
}

.footer-tagline {
  color: rgba(245, 236, 224, .35);
  font-size: .88rem;
  line-height: 1.6;
  margin: 0 auto 2rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.footer-links a {
  font-family: var(--font-alt);
  font-size: .62rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(201, 165, 90, .7);
  transition: color .2s ease;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-copy {
  font-family: var(--font-alt);
  font-size: .58rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(245, 236, 224, .2);
  margin: 0;
}

/* - Drawer & Overlays - */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: none;
  justify-content: flex-end;
  background: rgba(0, 0, 0, .6);
  backdrop-filter: blur(6px);
}

.drawer.open {
  display: flex;
}

.drawer.open .drawer-panel {
  animation: drawerIn .3s var(--ease-out) both;
}

@keyframes drawerIn {
  from { transform: translateX(20px); opacity: .7; }
  to   { transform: translateX(0); opacity: 1; }
}

.drawer-panel {
  width: min(420px, 100%);
  height: 100%;
  overflow-y: auto;
  background: var(--ink);
  border-left: 1px solid var(--line);
  padding: 1.5rem;
  box-shadow: var(--shadow-lg);
}

.drawer-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.drawer-head h2 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--gold);
}

.cart-items,
.checkout-form {
  display: grid;
  gap: .75rem;
}

.cart-line {
  display: grid;
  grid-template-columns: 68px 1fr auto;
  gap: .65rem;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding-bottom: .75rem;
}

.cart-line img {
  width: 68px;
  height: 68px;
  object-fit: cover;
  border-radius: var(--r);
}

.cart-line button {
  background: transparent;
  border: 0;
  color: var(--wine);
  font-weight: 900;
  cursor: pointer;
}

.checkout-form {
  margin-top: 1.5rem;
}

.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 50;
  background: rgba(5, 3, 2, .97);
  display: grid;
  place-items: center;
  padding: 1rem;
  backdrop-filter: blur(12px);
  animation: fadeIn .25s ease both;
}

.search-overlay .icon-button {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
}

.search-box.large {
  width: min(680px, 100%);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line-lg);
  border-radius: 0;
  padding: 1.2rem 0;
  font-size: 1.4rem;
  color: var(--cream);
  min-height: auto;
}

.search-box.large svg {
  width: 28px;
  height: 28px;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(0, 0, 0, .85);
  backdrop-filter: blur(12px);
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 1.5rem 1rem 2rem;
  animation: fadeIn .25s ease both;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.modal-panel {
  background: var(--ink);
  border: 1px solid var(--line-lg);
  border-radius: var(--r);
  padding: 2.5rem 2rem;
  max-width: 520px;
  width: 100%;
  position: relative;
  box-shadow: var(--shadow-lg);
  text-align: center;
  animation: fadeUp .35s var(--ease-out) both;
  margin: auto;
  flex-shrink: 0;
}

.close-modal {
  position: absolute;
  top: 1rem;
  right: 1rem;
}

.modal-panel h2 {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  margin-bottom: 1.5rem;
  color: var(--gold);
}

.option-group {
  margin-bottom: 1.5rem;
  text-align: left;
}

.option-group span {
  display: block;
  font-family: var(--font-alt);
  font-size: .6rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(245, 236, 224, .4);
  margin-bottom: .65rem;
}

.modal-options {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
}

.option-chip {
  display: inline-block;
  cursor: pointer;
}

.option-chip input {
  display: none;
}

.option-chip:not(.option-chip-swatch) > span {
  display: inline-block;
  padding: .55rem 1.1rem;
  border: 1px solid var(--line-lg);
  border-radius: 3px;
  background: rgba(255, 255, 255, .04);
  font-weight: 500;
  font-size: .82rem;
  color: rgba(245, 236, 224, .7);
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.option-chip:not(.option-chip-swatch) input:checked + span {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.modal-panel .btn-primary {
  width: 100%;
  margin-top: 1rem;
}

/* - Toast - */
.toast {
  position: fixed;
  left: 50%;
  bottom: 1.5rem;
  z-index: 200;
  transform: translate(-50%, 130%);
  background: var(--dark);
  color: var(--gold);
  border: 1px solid var(--line-lg);
  border-radius: 3px;
  padding: .85rem 1.5rem;
  box-shadow: var(--shadow-md);
  transition: transform .3s var(--ease-out);
  max-width: calc(100% - 2rem);
  text-align: center;
  font-family: var(--font-alt);
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.toast.show {
  transform: translate(-50%, 0);
}

/* - Premium 3D Scroll Reveal - */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(.95);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
}

.reveal-scale.active {
  opacity: 1;
  transform: scale(1);
}

/* - Keyframes - */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes panelRise {
  from {
    opacity: 0;
    transform: translateY(-12px) scale(.97);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes drawerIn {
  from {
    transform: translateX(20px);
    opacity: .7;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* - Responsive - */
@media (max-width: 1100px) {
  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .shop-header {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .shop-controls {
    align-items: flex-start;
  }

  .filter-row {
    justify-content: flex-start;
  }
}

@media (max-width: 900px) {
  .desktop-nav {
    display: none;
  }

  .menu-trigger {
    display: grid;
  }

  .site-header {
    grid-template-columns: auto 1fr;
  }

  .header-actions {
    grid-column: 2;
    justify-self: end;
  }

  .atelier-section {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .atelier-left {
    position: static;
    height: auto;
  }

  .atelier-right {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .form-band-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .product-detail-shell {
    grid-template-columns: 1fr;
  }

  .product-detail-copy {
    position: static;
    order: 2;
  }

  .pillars-section {
    grid-template-columns: repeat(2, 1fr);
  }

  .pillar {
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .pillar:nth-child(2) {
    border-right: 0;
  }

  .pillar:nth-child(3),
  .pillar:nth-child(4) {
    border-bottom: 0;
  }

  .metric-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ── Tablet & Landscape Phone (641px – 899px) ──────────────────── */
@media (min-width: 641px) and (max-width: 899px) {
  .hero-text {
    max-width: min(600px, 80vw);
    padding: 0 clamp(1.25rem, 4vw, 2.5rem);
    margin-top: 5.5rem;
    overflow: visible;
  }

  .hero-title {
    font-size: clamp(2.8rem, 12vw, 6.5rem);
    white-space: nowrap;
    line-height: .88;
    width: max-content;
    max-width: none;
  }

  .hero-sub {
    font-size: clamp(0.85rem, 1.8vw, 1.2rem);
  }

  .hero-aside {
    font-size: .5rem;
  }
}

@media (max-width: 640px) {
  .product-grid {
    grid-template-columns: 1fr;
  }

  .orb,
  #aurora-canvas {
    display: none !important;
  }

  /* Hero - always single row on mobile using viewport-relative sizing */
  .hero-title {
    font-size: clamp(2rem, 16vw, 4.5rem);
    white-space: nowrap;
    line-height: .88;
    width: max-content;
    max-width: none;
    overflow: visible;
  }

  .hero-text {
    padding: 0 1.25rem;
    margin-top: 6rem;
    overflow: visible;
  }

  .hero-label {
    font-size: .55rem;
    margin-bottom: 1rem;
  }

  .hero-sub {
    font-size: 1rem;
    margin-bottom: 1.75rem;
  }

  .hero-cta {
    gap: 1rem;
  }

  .hero-aside {
    display: none;
  }

  .hero-scroll {
    display: none;
  }

  .hero-counter {
    display: none;
  }

  .marquee-strip {
    display: none;
  }

  /* Shop section - better mobile layout */
  .shop-section {
    padding: 2.5rem 1rem 3rem;
  }

  .shop-controls {
    min-width: 0;
    width: 100%;
  }

  .filter-row {
    gap: .4rem;
  }

  .filter-row button {
    font-size: .65rem;
    padding: .45rem .85rem;
  }

  /* Product cards - tighter info on mobile */
  .product-info {
    padding: .85rem .9rem 1.1rem;
  }

  .product-meta h3 {
    font-size: 1rem;
  }

  .product-actions {
    padding-top: .85rem;
    gap: .4rem;
  }

  .product-info .btn-primary {
    min-height: 38px;
    font-size: .62rem;
  }

  .btn-buy-now {
    min-height: 34px;
    font-size: .6rem;
  }

  /* Atelier */
  .atelier-numbers {
    gap: 1.5rem;
  }

  /* Product detail */
  .product-page {
    padding: 4rem 1rem 2.5rem;
  }

  .product-detail-copy {
    padding: 1.25rem;
  }

  .detail-actions {
    grid-template-columns: 1fr;
  }

  /* Forms */
  .field-pair {
    grid-template-columns: 1fr;
  }

  .field-row {
    grid-template-columns: 1fr;
  }

  /* Pillars - better touch targets */
  .pillar {
    padding: 1.75rem .75rem;
  }

  /* Admin console */
  .admin-item {
    grid-template-columns: 1fr;
  }

  .admin-actions {
    justify-content: flex-start;
  }

  .console-top {
    flex-direction: column;
    align-items: flex-start;
  }

  /* Cart drawer - bottom sheet on mobile */
  .drawer {
    justify-content: flex-start;
    align-items: flex-end;
  }

  .drawer.open .drawer-panel {
    animation: drawerInMobile .35s var(--ease-out) both;
  }

  .drawer-panel {
    width: 100%;
    height: auto;
    max-height: 85svh;
    border-left: 0;
    border-top: 1px solid var(--line);
    border-radius: 16px 16px 0 0;
    padding-bottom: calc(1.5rem + env(safe-area-inset-bottom));
  }

  /* Footer spacing */
  .site-footer {
    padding: 3rem 1.25rem 2rem;
  }

  .footer-links {
    gap: 1.25rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  /* Ticker - smaller on mobile */
  .ticker-track span {
    font-size: .55rem;
  }
}

@keyframes drawerInMobile {
  from { transform: translateY(30px); opacity: .7; }
  to   { transform: translateY(0); opacity: 1; }
}

@media (max-width: 400px) {
  .pillars-section {
    grid-template-columns: 1fr;
  }

  .pillar {
    border-right: 0;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}

/* - Lightbox - */
#auressa-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  touch-action: none;
}

#auressa-lightbox.lb-visible {
  display: flex;
  animation: lbFadeIn .22s ease both;
}

@keyframes lbFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.lb-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* - Stage (image area) - */
.lb-stage {
  position: relative;
  z-index: 2;
  max-width: min(95vw, 1000px);
  max-height: 88svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  cursor: default;
}

.lb-img {
  display: block;
  max-width: 100%;
  max-height: 88svh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 4px;
  opacity: 0;
  transition: opacity .25s ease;
  user-select: none;
  -webkit-user-drag: none;
  touch-action: none;
  box-shadow: 0 30px 80px rgba(0,0,0,.7);
  transform-origin: center center;
  will-change: transform;
}

/* - Close button - */
.lb-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .18s ease, transform .18s ease;
  cursor: pointer;
  backdrop-filter: blur(8px);
}

.lb-close:hover {
  background: rgba(255,255,255,.22);
  transform: scale(1.08);
}

/* - Prev / Next buttons - */
.lb-prev,
.lb-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(0,0,0,.5);
  border: 1px solid rgba(255,255,255,.18);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .18s ease, transform .18s var(--ease-out);
  cursor: pointer;
  backdrop-filter: blur(8px);
}

.lb-prev { left: 1rem; }
.lb-next { right: 1rem; }

.lb-prev:hover {
  background: rgba(201,165,90,.7);
  transform: translateY(-50%) scale(1.08);
}

.lb-next:hover {
  background: rgba(201,165,90,.7);
  transform: translateY(-50%) scale(1.08);
}

/* - Counter - */
.lb-counter {
  position: absolute;
  top: 1.1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  font-family: var(--font-alt);
  font-size: .62rem;
  font-weight: 500;
  letter-spacing: .14em;
  color: rgba(255,255,255,.55);
  pointer-events: none;
}

/* - Dot indicators - */
.lb-dots {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: .45rem;
}

.lb-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,.3);
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: background .18s ease, transform .18s ease;
}

.lb-dot.active,
.lb-dot:hover {
  background: var(--gold);
  transform: scale(1.3);
}

/* - Mobile: hide side arrows (swipe handles it) - */
@media (max-width: 640px) {
  .lb-prev,
  .lb-next {
    display: none !important;
  }

  .lb-stage {
    max-width: 100vw;
    max-height: 80svh;
  }

  .lb-img {
    max-height: 80svh;
    border-radius: 0;
  }

  /* Touch hint below dots on first open */
  .lb-dots::after {
    content: "- swipe -";
    position: absolute;
    bottom: -1.6rem;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-alt);
    font-size: .52rem;
    letter-spacing: .1em;
    color: rgba(255,255,255,.28);
    white-space: nowrap;
    pointer-events: none;
  }
}

/* - Product image: show zoom-in cursor hint - */
.product-detail-main img {
  cursor: zoom-in;
}

/* - Admin Gallery Preview & Thumbnails - */
.admin-gallery-preview {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
  margin: 0.8rem 0;
  padding: 0.6rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px dashed var(--line);
  border-radius: var(--r);
  min-height: 104px;
}

.gallery-thumb {
  position: relative;
  width: 90px;
  height: 90px;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--dark);
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(5, 3, 2, 0.85);
  display: flex;
  justify-content: space-between;
  padding: 0.15rem 0.3rem;
  backdrop-filter: blur(4px);
  border-top: 1px solid var(--line);
}

.gallery-controls button {
  color: var(--gold);
  font-size: 0.62rem;
  padding: 0.1rem 0.2rem;
  cursor: pointer;
  background: none;
  border: 0;
  transition: transform 0.12s var(--ease-out), color 0.12s ease;
}

.gallery-controls button:hover {
  color: var(--cream);
  transform: scale(1.22);
}

/* ── COD Badge & Delivery Fee ───────────────────────────────────── */
.cod-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 0.9rem;
  border-radius: var(--r);
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.25);
  color: #5ecb7a;
  font-family: var(--font-alt);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.cod-badge i {
  flex-shrink: 0;
  opacity: 0.9;
}

.delivery-fee-note {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0.9rem;
  border-radius: var(--r);
  background: rgba(201, 165, 90, 0.06);
  border: 1px solid var(--line);
  font-family: var(--font-alt);
  font-size: 0.78rem;
  color: var(--muted);
}

.delivery-fee-note strong {
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 600;
}

/* ── Cart Totals Breakdown ──────────────────────────────────────── */
.cart-totals {
  border-top: 1px solid var(--line);
  margin-top: 1rem;
  padding-top: 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.cart-subtotal-row,
.cart-delivery-row {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-alt);
  font-size: 0.78rem;
  color: var(--muted);
}

.cart-delivery-row span:last-child {
  color: var(--gold);
}

.cart-grand-total {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-alt);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--cream);
  padding-top: 0.5rem;
  border-top: 1px solid var(--line);
  margin-top: 0.25rem;
}

/* ── Premium Bag Add-on Toggle ──────────────────────────────────── */
.addon-toggle {
  display: block;
  cursor: pointer;
  user-select: none;
}

.addon-toggle input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.addon-toggle-inner {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.75rem 0.9rem;
  border-radius: var(--r);
  border: 1px solid var(--line);
  background: rgba(201, 165, 90, 0.04);
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.addon-toggle:hover .addon-toggle-inner {
  border-color: var(--line-lg);
  background: rgba(201, 165, 90, 0.07);
}

.addon-toggle input:checked ~ .addon-toggle-inner {
  border-color: var(--gold);
  background: rgba(201, 165, 90, 0.12);
  box-shadow: 0 0 0 1px var(--gold-dk), 0 4px 18px rgba(201, 165, 90, 0.15);
}

.addon-toggle-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(201, 165, 90, 0.1);
  border: 1px solid var(--line);
  color: var(--gold);
  flex-shrink: 0;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.addon-toggle input:checked ~ .addon-toggle-inner .addon-toggle-icon {
  background: rgba(201, 165, 90, 0.2);
  border-color: var(--gold);
}

.addon-toggle-text {
  flex: 1;
  min-width: 0;
}

.addon-toggle-text strong {
  display: block;
  font-family: var(--font-alt);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.02em;
}

.addon-toggle-text span {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  color: var(--muted);
  margin-top: 0.15rem;
  line-height: 1.35;
}

.addon-toggle-price {
  font-family: var(--font-alt);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
  white-space: nowrap;
}

.addon-toggle-inner::after {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  flex-shrink: 0;
  background: transparent;
  transition: background 0.18s ease, border-color 0.18s ease;
}

.addon-toggle input:checked ~ .addon-toggle-inner::after {
  background: var(--gold);
  border-color: var(--gold);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%23050302' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
}

.addon-wrapper {
  display: grid;
  gap: 0.6rem;
}

.addon-qty-selector {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 0.9rem;
  border-radius: var(--r);
  border: 1px dashed var(--line);
  background: rgba(201, 165, 90, 0.02);
  font-family: var(--font-alt);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--cream);
  animation: slideDownFade 0.25s var(--ease-out) both;
}

@keyframes slideDownFade {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.addon-qty-selector .qty-control {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: rgba(5, 3, 2, 0.3);
  padding: 2px;
}

:root[data-theme="light"] .addon-qty-selector .qty-control {
  background: #FFFFFF !important;
  border-color: rgba(210, 196, 177, 0.5) !important;
}

.addon-qty-selector .qty-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 3px;
  border: 0;
  background: transparent;
  color: var(--cream);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.addon-qty-selector .qty-btn:hover {
  background: var(--gold);
  color: var(--black);
}

.addon-qty-selector .qty-btn svg {
  width: 12px;
  height: 12px;
}

.addon-qty-selector input[type="number"] {
  width: 32px;
  border: 0;
  background: transparent;
  text-align: center;
  color: var(--cream);
  font-family: var(--font-alt);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0;
  outline: none;
  -moz-appearance: textfield;
}

.addon-qty-selector input[type="number"]::-webkit-outer-spin-button,
.addon-qty-selector input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* ── Order Admin Row Layout ─────────────────────────────────────── */
.order-admin-item {
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-start;
  cursor: default !important;
}

.order-admin-info {
  flex: 1;
  min-width: 0;
}

.order-admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  width: 100%;
}

/* Status buttons — color coded */
.order-status-btn.pending {
  border-color: rgba(245, 158, 11, 0.5);
  color: #fcd34d;
  background: rgba(245, 158, 11, 0.08);
}
.order-status-btn.pending:hover:not(:disabled) {
  background: rgba(245, 158, 11, 0.18);
  border-color: #f59e0b;
}

.order-status-btn.dispatched {
  border-color: rgba(124, 58, 237, 0.5);
  color: #c4b5fd;
  background: rgba(124, 58, 237, 0.08);
}
.order-status-btn.dispatched:hover:not(:disabled) {
  background: rgba(124, 58, 237, 0.18);
  border-color: #7c3aed;
}

.order-status-btn.completed {
  border-color: rgba(16, 185, 129, 0.5);
  color: #6ee7b7;
  background: rgba(16, 185, 129, 0.08);
}
.order-status-btn.completed:hover:not(:disabled) {
  background: rgba(16, 185, 129, 0.18);
  border-color: #10b981;
}

/* Disabled = current active status */
.order-status-btn:disabled {
  opacity: 0.38;
  cursor: default;
  pointer-events: none;
}

/* Delete button */
.order-delete-btn {
  border-color: rgba(196, 63, 104, 0.4);
  color: #ff8ca3;
  background: rgba(196, 63, 104, 0.07);
  margin-left: auto;
}
.order-delete-btn:hover {
  background: rgba(196, 63, 104, 0.18);
  border-color: var(--wine);
  color: #fff;
}

/* New status tag variants for orders */
.admin-item-status-tag.pending {
  background: rgba(245, 158, 11, 0.15);
  color: #fcd34d;
  border: 1px solid rgba(245, 158, 11, 0.35);
}
.admin-item-status-tag.dispatched {
  background: rgba(124, 58, 237, 0.15);
  color: #c4b5fd;
  border: 1px solid rgba(124, 58, 237, 0.35);
}
.admin-item-status-tag.completed {
  background: rgba(16, 185, 129, 0.15);
  color: #6ee7b7;
  border: 1px solid rgba(16, 185, 129, 0.35);
}
.admin-item-status-tag.new {
  background: rgba(201, 165, 90, 0.15);
  color: var(--gold-lt);
  border: 1px solid rgba(201, 165, 90, 0.3);
}

/* ── Swatch Color Chip (option modal) ───────────────────────────── */
.option-chip-swatch {
  padding: 0;
  border: none;
  background: none;
}

.option-chip-swatch input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.swatch-chip-inner {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.75rem 0.45rem 0.45rem;
  border-radius: 99px;
  border: 1.5px solid var(--line);
  background: rgba(201, 165, 90, 0.04);
  cursor: pointer;
  transition: border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.option-chip-swatch input:checked + .swatch-chip-inner {
  border-color: var(--gold);
  background: rgba(201, 165, 90, 0.14);
  box-shadow: 0 0 0 1px var(--gold-dk);
}

.option-chip-swatch:hover .swatch-chip-inner {
  border-color: var(--line-lg);
  background: rgba(201, 165, 90, 0.08);
}

.swatch-chip-dot {
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.3);
}

.swatch-chip-img {
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
  background-size: cover;
  background-position: center;
}

.swatch-chip-name {
  font-family: var(--font-alt);
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--cream);
  white-space: nowrap;
  letter-spacing: 0.02em;
}

/* ── Premium Bag Badge in Order Detail ──────────────────────────── */
.order-detail-bag-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 0.9rem;
  border-radius: var(--r);
  font-family: var(--font-alt);
  font-size: 0.78rem;
  margin-bottom: 0;
}

.order-detail-bag-badge.included {
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.25);
  color: #6ee7b7;
}

.order-detail-bag-badge.excluded {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  color: var(--muted);
}

.order-detail-bag-badge strong {
  color: #6ee7b7;
}

/* ── Options Modal Premium Enhancements ────────────────────────── */
.modal-product-preview {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.modal-product-preview img {
  width: 76px;
  height: 76px;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid var(--line);
  background: var(--night);
}

.modal-product-meta {
  flex: 1;
  min-width: 0;
}

.modal-product-meta .eyebrow {
  margin-bottom: 0.2rem;
}

.modal-product-meta h2 {
  font-size: 1.35rem !important;
  margin-bottom: 0.35rem !important;
  line-height: 1.1;
  color: var(--cream);
}

.modal-product-price {
  font-family: var(--font-alt);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold);
}

.modal-panel .close-modal {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  z-index: 10;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.modal-panel .close-modal:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

/* Swatch Option (Grid Layout) */
.swatch-option {
  position: relative;
  cursor: pointer;
  display: inline-block;
  user-select: none;
}

.swatch-option input {
  display: none !important;
}

.swatch-option-dot {
  display: block;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.swatch-option:hover .swatch-option-dot {
  transform: scale(1.1);
  border-color: var(--gold);
}

.swatch-option input:checked + .swatch-option-dot {
  transform: scale(1.1);
  border-color: var(--gold);
  box-shadow: 0 0 0 2px var(--black), 0 0 0 4px var(--gold);
}

/* Light Theme overrides for modal options & swatches */
:root[data-theme="light"] .modal-panel h2 {
  color: #4A443F !important;
}

:root[data-theme="light"] .option-group span {
  color: rgba(74, 68, 63, 0.6) !important;
}

:root[data-theme="light"] .modal-product-price {
  color: #c9a55a !important;
}

:root[data-theme="light"] .option-chip span {
  background: #FFFFFF !important;
  color: #4A443F !important;
  border-color: rgba(210, 196, 177, 0.6) !important;
}

:root[data-theme="light"] .option-chip span:hover {
  border-color: #4A443F !important;
}

:root[data-theme="light"] .option-chip input:checked + span {
  background: #4A443F !important;
  color: #F7F4EF !important;
  border-color: #4A443F !important;
}

:root[data-theme="light"] .swatch-option-dot {
  border-color: rgba(74, 68, 63, 0.2) !important;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1) !important;
}

:root[data-theme="light"] .swatch-option input:checked + .swatch-option-dot {
  border-color: #4A443F !important;
  box-shadow: 0 0 0 2px #F7F4EF, 0 0 0 4px #4A443F !important;
}

:root[data-theme="light"] .order-detail-bag-badge.excluded {
  background: rgba(74, 68, 63, 0.03) !important;
  border-color: rgba(210, 196, 177, 0.35) !important;
  color: rgba(74, 68, 63, 0.7) !important;
}


/* ================================================================
   AURESSA - REVIEWS SECTION & PROFESSIONAL UPGRADES
   ================================================================ */

/* --- General Storefront Professional Visual Polish --- */
.site-header {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  transition: background 0.4s var(--ease-out), padding 0.4s var(--ease-out), border-color 0.4s ease;
}
.site-header.scrolled {
  background: rgba(5, 3, 2, 0.92);
  border-bottom: 1px solid var(--line);
  padding: 0.8rem clamp(1rem, 4vw, 3rem);
}
:root[data-theme="light"] .site-header.scrolled {
  background: rgba(247, 244, 239, 0.92);
  border-bottom: 1px solid rgba(74, 68, 63, 0.1);
}
.hero-title {
  letter-spacing: 0.12em;
  font-weight: 300;
  text-shadow: 0 6px 30px rgba(0,0,0,0.6);
}
.hero-sub {
  font-family: var(--font-alt);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
  line-height: 1.9;
  opacity: 0.85;
}
.product-card {
  border-radius: var(--r);
  transition: transform 0.5s var(--ease-out), background 0.4s ease, box-shadow 0.4s ease;
}
.product-card:hover {
  box-shadow: 0 20px 60px rgba(201, 165, 90, 0.1), 0 8px 24px rgba(0,0,0,0.4);
}
.product-image {
  border-radius: var(--r) var(--r) 0 0;
}
.btn-primary, .btn-outline {
  border-radius: 4px;
  font-family: var(--font-alt);
  font-weight: 600;
  letter-spacing: 0.12em;
}
.btn-buy-now {
  border-radius: 4px;
  font-family: var(--font-alt);
  font-weight: 700;
  letter-spacing: 0.13em;
}

/* --- Homepage Reviews (Auressa Voices) --- */
.homepage-reviews-section {
  padding: clamp(5rem, 8vw, 8rem) clamp(1.5rem, 5vw, 4rem);
  background: linear-gradient(180deg, var(--black) 0%, var(--ink) 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.reviews-grid-outer {
  max-width: 1280px;
  margin: 0 auto;
}
.reviews-title-block {
  text-align: center;
  margin-bottom: 4rem;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}
.review-card-modern {
  background: rgba(15, 11, 9, 0.45);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 2.2rem 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color 0.3s ease, transform 0.3s var(--ease-out), box-shadow 0.3s ease;
}
.review-card-modern:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
}
.review-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
.review-card-stars {
  display: flex;
  gap: 0.1rem;
  color: var(--gold);
  align-items: center;
}
/* Use unicode solid stars for guaranteed filled appearance */
.review-card-stars .star-filled {
  display: inline-block;
  font-size: 14px;
  line-height: 1;
  color: var(--gold);
  font-style: normal;
}
.review-card-stars i {
  width: 13px;
  height: 13px;
  fill: var(--gold);
  stroke: var(--gold);
  stroke-width: 1.5px;
}
.review-verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-family: var(--font-alt);
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201, 165, 90, 0.08);
  border: 1px solid rgba(201, 165, 90, 0.2);
  padding: 0.2rem 0.5rem;
  border-radius: 99px;
}
.review-card-body {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--cream);
  margin-bottom: 1.5rem;
  font-style: italic;
}
.review-card-footer {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.reviewer-info {
  display: flex;
  flex-direction: column;
}
.reviewer-name {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--cream);
}
.reviewer-city {
  font-family: var(--font-alt);
  font-size: 0.65rem;
  color: var(--gold);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 0.1rem;
}
.review-product-tag {
  font-family: var(--font-alt);
  font-size: 0.62rem;
  color: rgba(245, 236, 224, 0.4);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-bottom: 1px dashed rgba(245, 236, 224, 0.15);
  padding-bottom: 0.1rem;
  transition: color 0.2s ease;
}
.review-product-tag:hover {
  color: var(--gold-lt);
}

/* --- Product Page Reviews Section --- */
.product-reviews-section {
  max-width: 1280px;
  margin: 5rem auto 0;
  border-top: 1px solid var(--line);
  padding-top: 5rem;
}
.reviews-layout-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 992px) {
  .reviews-layout-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
.reviews-summary-card {
  background: rgba(15, 11, 9, 0.5);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
}
.reviews-summary-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}
.rating-big-number {
  font-family: var(--font-serif);
  font-size: 4rem;
  color: var(--gold);
  line-height: 1;
  font-weight: 300;
}
.rating-stars-total {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
  color: var(--gold);
  margin: 0.75rem 0;
}
.rating-stars-total i {
  width: 18px;
  height: 18px;
  fill: var(--gold);
  stroke: var(--gold);
  stroke-width: 1.5px;
}
.rating-count-subtitle {
  font-family: var(--font-alt);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 2rem;
}
.rating-bars-breakdown {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 2rem;
}
.rating-bar-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
}
.rating-bar-label {
  width: 45px;
  text-align: right;
  color: var(--muted);
}
.rating-bar-track {
  flex-grow: 1;
  height: 4px;
  background: rgba(201, 165, 90, 0.08);
  border-radius: 99px;
  overflow: hidden;
}
.rating-bar-fill {
  height: 100%;
  background: var(--gold);
  border-radius: 99px;
  width: 0;
  transition: width 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.rating-bar-pct {
  width: 32px;
  text-align: left;
  color: var(--muted);
}

.btn-write-review {
  width: 100%;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 0.85rem;
  font-family: var(--font-alt);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 4px;
  transition: background 0.3s ease, color 0.3s ease;
  font-weight: 600;
}
.btn-write-review:hover {
  background: var(--gold);
  color: var(--black);
}

/* Review Item Lists */
.reviews-list-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.review-item-modern {
  border-bottom: 1px solid var(--line);
  padding-bottom: 2rem;
  display: flex;
  gap: 1.5rem;
}
.review-item-modern:last-child {
  border-bottom: 0;
}
.review-avatar-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(201, 165, 90, 0.1);
  border: 1px solid var(--line);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-alt);
  font-size: 0.85rem;
  font-weight: 600;
  flex-shrink: 0;
}
.review-content-area {
  flex-grow: 1;
}
.review-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.5rem;
}
@media (max-width: 576px) {
  .review-meta-row {
    flex-direction: column;
    gap: 0.4rem;
    align-items: flex-start;
  }
}
.review-author-name {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--cream);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.review-item-stars {
  display: flex;
  gap: 0.1rem;
  color: var(--gold);
  align-items: center;
}
.review-item-stars i {
  width: 12px;
  height: 12px;
  fill: var(--gold);
  stroke: var(--gold);
  stroke-width: 1.5px;
}
.review-date-stamp {
  font-family: var(--font-alt);
  font-size: 0.65rem;
  color: rgba(245, 236, 224, 0.35);
  letter-spacing: 0.05em;
}
.review-comment-text {
  font-size: 0.92rem;
  color: rgba(245, 236, 224, 0.8);
  line-height: 1.7;
}

/* Collapsible Form Styling */
.collapsible-review-form-wrapper {
  background: rgba(15, 11, 9, 0.3);
  border: 1px solid var(--line);
  border-radius: 8px;
  margin-bottom: 3rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s ease, border-color 0.4s ease;
}
.collapsible-review-form-wrapper.open {
  max-height: 800px;
  padding: 2.5rem 2rem;
  border-color: var(--gold-dk);
}
.collapsible-review-form-wrapper h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  font-family: var(--font-serif);
}

/* Interactive Star Rating Clicker */
.star-rating-selector {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 0.3rem;
  margin: 0.5rem 0 1.5rem;
}
.star-rating-selector input {
  display: none;
}
.star-rating-selector label {
  cursor: pointer;
  color: rgba(245, 236, 224, 0.15);
  transition: color 0.18s ease, transform 0.18s var(--ease-out);
  display: flex;
  align-items: center;
}
.star-rating-selector label i {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  stroke-width: 2px;
  fill: transparent;
  transition: fill 0.18s ease;
}
.star-rating-selector label:hover,
.star-rating-selector label:hover ~ label,
.star-rating-selector input:checked ~ label {
  color: var(--gold);
  transform: scale(1.1);
}
.star-rating-selector label:hover i,
.star-rating-selector label:hover ~ label i,
.star-rating-selector input:checked ~ label i {
  fill: var(--gold);
  stroke: var(--gold);
}
.star-rating-selector label:active {
  transform: scale(0.88);
}

/* --- Admin Console Review management styling --- */
.admin-review-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.2rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--line);
  border-radius: var(--r);
  transition: background 0.3s ease, border-color 0.3s ease;
}
.admin-review-item:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--line-lg);
}
.admin-review-item .admin-review-stars {
  color: var(--gold);
  display: flex;
  gap: 0.1rem;
  margin-top: 0.2rem;
  align-items: center;
}
.admin-review-item .admin-review-stars i {
  width: 11px;
  height: 11px;
  fill: var(--gold);
  stroke: var(--gold);
  stroke-width: 2px;
}

/* --- Light Theme Testimonial & Review overrides --- */
:root[data-theme="light"] .homepage-reviews-section {
  background: linear-gradient(180deg, #F7F4EF 0%, #efebe4 100%);
  border-top-color: rgba(74, 68, 63, 0.1);
  border-bottom-color: rgba(74, 68, 63, 0.1);
}
:root[data-theme="light"] .review-card-modern {
  background: #FFFFFF;
  border-color: rgba(210, 196, 177, 0.5);
  box-shadow: 0 4px 20px rgba(74, 68, 63, 0.03);
}
:root[data-theme="light"] .review-card-modern:hover {
  border-color: #4A443F;
  box-shadow: var(--shadow-sm);
}
:root[data-theme="light"] .review-card-body {
  color: #4A443F;
}
:root[data-theme="light"] .reviewer-name {
  color: #4A443F;
}
:root[data-theme="light"] .review-product-tag {
  color: rgba(74, 68, 63, 0.6);
  border-bottom-color: rgba(74, 68, 63, 0.15);
}
:root[data-theme="light"] .review-product-tag:hover {
  color: #4A443F;
}
:root[data-theme="light"] .review-verified-badge {
  background: rgba(122, 99, 58, 0.05);
  border-color: rgba(122, 99, 58, 0.2);
  color: #7a633a;
}
:root[data-theme="light"] .product-reviews-section {
  border-top-color: rgba(74, 68, 63, 0.1);
}
:root[data-theme="light"] .reviews-summary-card {
  background: #FFFFFF;
  border-color: rgba(210, 196, 177, 0.5);
}
:root[data-theme="light"] .rating-bar-track {
  background: rgba(74, 68, 63, 0.05);
}
:root[data-theme="light"] .collapsible-review-form-wrapper {
  background: #FFFFFF;
  border-color: rgba(210, 196, 177, 0.5);
}
:root[data-theme="light"] .collapsible-review-form-wrapper.open {
  border-color: #4A443F;
}
:root[data-theme="light"] .review-item-modern {
  border-bottom-color: rgba(74, 68, 63, 0.1);
}
:root[data-theme="light"] .review-avatar-circle {
  background: rgba(74, 68, 63, 0.04);
  border-color: rgba(74, 68, 63, 0.15);
  color: #4A443F;
}
:root[data-theme="light"] .review-author-name {
  color: #4A443F;
}
:root[data-theme="light"] .review-date-stamp {
  color: rgba(74, 68, 63, 0.5);
}
:root[data-theme="light"] .review-comment-text {
  color: rgba(74, 68, 63, 0.85);
}
:root[data-theme="light"] .btn-write-review {
  border-color: #4A443F;
  color: #4A443F;
}
:root[data-theme="light"] .btn-write-review:hover {
  background: #4A443F;
  color: #F7F4EF;
}
:root[data-theme="light"] .admin-review-item {
  background: #FFFFFF;
  border-color: rgba(210, 196, 177, 0.5);
}
:root[data-theme="light"] .admin-review-item:hover {
  background: #efebe4;
  border-color: #4A443F;
}
:root[data-theme="light"] .star-rating-selector label {
  color: rgba(74, 68, 63, 0.15);
}

/* ================================================================
   HERO TESTIMONIALS SLIDESHOW (COMPACT EDITORIAL capsule)
   ================================================================ */

.hero-testimonials {
  position: absolute;
  bottom: 2.2rem;
  left: clamp(1.5rem, 5vw, 4rem);
  z-index: 10;
  pointer-events: auto;
  width: 300px; /* Compact width to prevent any overlap */
}

.hero-testimonials-inner {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  background: rgba(10, 8, 7, 0.4);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  padding: 0.85rem 1.1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  animation: fadeUp 1.2s 0.8s var(--ease-out) both;
}

/* Single active slot */
.hero-testimonial-slot {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  height: 68px;
  position: relative;
  overflow: hidden;
}

/* Each rendered review inside the slot animates in/out */
.hero-testimonial-slot .ht-review {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
  pointer-events: none;
}

.hero-testimonial-slot .ht-review.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.hero-testimonial-slot .ht-review.exiting {
  opacity: 0;
  transform: translateY(-8px);
  position: absolute;
}

/* Stars */
.hero-testimonial-stars {
  font-size: 0.65rem;
  letter-spacing: 0.02em;
  color: var(--gold);
  line-height: 1;
}

/* Quote */
.hero-testimonial-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.8rem;
  line-height: 1.4;
  color: rgba(245, 236, 224, 0.88);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Author */
.hero-testimonial-author {
  font-family: var(--font-alt);
  font-size: 0.52rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
}

/* Dot indicators */
.hero-testimonial-dots {
  display: flex;
  gap: 0.25rem;
  align-items: center;
  margin-top: 0.1rem;
}

.hero-testimonial-dots .ht-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease, width 0.3s ease;
  pointer-events: auto;
  flex-shrink: 0;
}

.hero-testimonial-dots .ht-dot.active {
  background: var(--gold);
  width: 10px;
  border-radius: 2px;
}

/* Mobile adjustments */
@media (max-width: 900px) {
  .hero-testimonials {
    bottom: 2.2rem;
    left: 1.5rem;
  }
}

@media (max-width: 640px) {
  .hero-testimonials {
    display: none; /* Keep clean and simple on mobile */
  }
}

/* Light theme */
:root[data-theme="light"] .hero-testimonials-inner {
  background: rgba(247, 244, 239, 0.72) !important;
  border-color: rgba(210, 196, 177, 0.45) !important;
  border-left-color: rgba(201, 165, 90, 0.6) !important;
}
:root[data-theme="light"] .hero-testimonial-quote {
  color: rgba(74, 68, 63, 0.96) !important;
}
:root[data-theme="light"] .hero-testimonial-author {
  color: #b8923a !important;
}
:root[data-theme="light"] .hero-testimonial-stars {
  color: #c9a55a !important;
}
