/* ============================================
   AYZEL — Premium Multi-Page Template
   Primary: #000000 | Accent: #D4AF37 | Background: #F9F5F0
   ============================================ */

:root {
  /* Design palette: luxury black, gold, cream */
  --primary: #000000;
  --primary-charcoal: #1a1a1a;
  --accent: #D4AF37;
  --accent-light: #e5c65c;
  --accent-dark: #b8962e;
  --bg-cream: #F9F5F0;
  --bg-ivory: #faf8f5;
  --text-dark: #0d0d0d;
  --text-charcoal: #2c2c2c;
  --text-muted: #5a5a5a;
  /* Typography */
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Lato', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: 0.2s ease;
  /* Spacing scale */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --section-padding: 5rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  width: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
}

body {
  font-family: var(--sans);
  font-weight: 300;
  color: var(--text-dark);
  background: var(--bg-cream);
  overflow-x: hidden;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  width: 100%;
  max-width: 100vw;
  min-width: 0;
  position: relative;
}

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

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

ul, ol {
  list-style: none;
}

/* ----- Top bar (Stelina-style) — fixed so it stays on scroll ----- */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 998;
  background: var(--accent);
  color: rgba(249,245,240,0.85);
  font-size: 0.8rem;
  padding: 0.5rem 0;
  letter-spacing: 0.05em;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.topbar-links a {
  margin-left: 1.25rem;
  color: inherit;
}
.topbar-links a:hover { color: var(--accent); }
@media (max-width: 768px) {
  .topbar { display: none; }
}

/* ----- Header ----- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 2rem;
  background: rgba(0,0,0,0.95);
  transition: background var(--transition), padding var(--transition);
}
body.has-topbar .header { top: 36px; }
/* Hero margin = topbar (36px) + header height (~74px) so nothing is under the header */
body.has-topbar .hero-slider { margin-top: 110px; }
/* When sections scroll to top, keep content below fixed header */
.promo-blocks, .promo-cards-section, .section, .deal-section, .collection-section,
.home-art-section, .features-strip, .newsletter-section { scroll-margin-top: 90px; }
@media (max-width: 768px) {
  body.has-topbar .header { top: 0; }
  body.has-topbar .hero-slider { margin-top: 74px; }
  .promo-blocks, .promo-cards-section, .section, .deal-section, .collection-section,
  .home-art-section, .features-strip, .newsletter-section { scroll-margin-top: 74px; }
  .header { background: #000; }
  .header .nav { padding: 0 1rem; max-width: 100%; box-sizing: border-box; }
  .container { width: 100%; max-width: 100%; padding: 0 1rem; box-sizing: border-box; }
  .hero-slider,
  .hero-slide,
  .hero-slide.active,
  .hero-slide-overlay {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box;
  }
  .hero-slider { overflow: hidden; min-height: 50vh; }
  .hero-slide-inner { max-width: 100%; padding: 2rem 1rem; box-sizing: border-box; min-height: 50vh; }
  .hero-slider-prev { left: 0.5rem; }
  .hero-slider-next { right: 0.5rem; }
  section { width: 100%; max-width: 100%; box-sizing: border-box; overflow-x: hidden; }
  .deal-section .container,
  .collection-section .container { width: 100%; max-width: 100%; padding: 0 1rem; }
}
body.menu-open { overflow: hidden; }
.header.scrolled,
.header.dark {
  background: rgba(0, 0, 0, 0.98);
  padding: 0.75rem 2rem;
}

.header.dark .nav-links a,
.header.dark .logo-link img,
.header.dark .cart-trigger,
.header.dark .nav-login {
  color: var(--bg-cream);
}


.nav {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-link {
  display: block;
  opacity: 1;
  transition: opacity var(--transition);
}

.logo-link:hover {
  opacity: 0.9;
}

.logo-img {
  height: 42px;
  width: auto;
  filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.3));
  transition: filter var(--transition);
}

.logo-link:hover .logo-img {
  filter: drop-shadow(0 0 28px rgba(212, 175, 55, 0.5));
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  letter-spacing: 0.12em;
  font-size: 0.85rem;
  font-weight: 400;
  text-transform: uppercase;
}

.nav-links a {
  color: var(--bg-cream);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--accent);
}

.nav-links .nav-mobile-only {
  display: none;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.cart-trigger {
  background: none;
  border: none;
  color: var(--bg-cream);
  font-family: var(--sans);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.cart-trigger:hover { color: var(--accent); }
.cart-trigger .cart-count {
  background: var(--accent);
  color: var(--primary);
  font-size: 0.7rem;
  padding: 0.15rem 0.45rem;
  border-radius: 2px;
}
.nav-login {
  color: var(--bg-cream);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
}
.nav-login:hover { color: var(--accent); }

/* Cart drawer */
.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 1001;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.3s, opacity 0.3s;
}
.cart-drawer.open {
  visibility: visible;
  opacity: 1;
}
.cart-drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}
.cart-drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 400px;
  height: 100%;
  background: var(--primary);
  color: var(--bg-cream);
  box-shadow: -10px 0 40px rgba(0,0,0,0.3);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s ease;
}
.cart-drawer.open .cart-drawer-panel { transform: translateX(0); }
.cart-drawer-header {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(212,175,55,0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cart-drawer-header h3 {
  font-family: var(--serif);
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  font-weight: 400;
}
.cart-drawer-close {
  background: none;
  border: none;
  color: var(--bg-cream);
  font-size: 1.75rem;
  cursor: pointer;
  line-height: 1;
}
.cart-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
}
.cart-drawer-item {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.cart-drawer-item img {
  width: 70px;
  height: 90px;
  object-fit: cover;
  background: var(--primary-charcoal);
}
.cart-drawer-item-detail { flex: 1; }
.cart-drawer-item-detail .name { font-family: var(--serif); letter-spacing: 0.08em; }
.cart-drawer-item-detail .price { color: var(--accent); font-size: 0.9rem; margin-top: 0.25rem; }
.cart-drawer-footer {
  padding: 1.25rem 1.5rem;
  border-top: 1px solid rgba(212,175,55,0.2);
}
.cart-drawer-subtotal { margin-bottom: 0.75rem; }
.cart-drawer-footer .btn { width: 100%; margin-top: 0.5rem; }
@media (max-width: 768px) {
  .nav-actions .nav-login { display: none; }
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--accent);
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

@keyframes logo-glow {
  0%, 100% { filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.3)); }
  50% { filter: drop-shadow(0 0 32px rgba(212, 175, 55, 0.6)); }
}

/* ----- Buttons (serif, thin gold border, gold text on dark) ----- */
.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-family: var(--serif);
  font-size: 0.85rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 400;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.btn-gold {
  background: var(--accent);
  color: var(--primary);
  border-color: var(--accent);
}

.btn-gold:hover {
  color: var(--primary);
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
  transform: translateY(-2px);
}

.btn-outline {
  background: rgba(0, 0, 0, 0.4);
  color: var(--accent);
  border-color: var(--accent);
}

.btn-outline:hover {
  background: var(--accent);
  color: var(--primary);
  box-shadow: 0 0 24px rgba(212, 175, 55, 0.3);
}

.btn-outline-dark {
  background: transparent;
  color: var(--primary);
  border-color: var(--accent);
}

.btn-outline-dark:hover {
  background: var(--accent);
  color: var(--primary);
}

/* ----- Container ----- */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ----- Section titles (elegant serif, wide spacing) ----- */
.section-title {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 300;
  letter-spacing: 0.28em;
  text-align: center;
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.section-title-serif {
  text-transform: uppercase;
  letter-spacing: 0.3em;
}

.section-title-light {
  color: var(--accent);
}

.section-sub {
  text-align: center;
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  text-transform: uppercase;
}

.section-sub-light {
  color: rgba(249, 245, 240, 0.75);
}

/* ----- Gold divider: thin line + scrollwork ----- */
.divider-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 0 auto 1.5rem;
  max-width: 400px;
}

.divider-line {
  flex: 1;
  max-width: 80px;
  height: 1px;
  background: var(--accent);
  opacity: 0.8;
}

.divider-wrap-dark .divider-line {
  background: var(--accent);
  opacity: 0.7;
}

.divider-scroll {
  display: block;
  width: 100px;
  height: 22px;
  opacity: 0.95;
  flex-shrink: 0;
}

.divider-scroll svg {
  width: 100%;
  height: 100%;
  fill: var(--accent);
}

/* ----- Page hero (inner pages) ----- */
.page-hero {
  padding: 8rem 0 4rem;
  background: linear-gradient(180deg, var(--primary) 0%, var(--primary-charcoal) 100%);
  text-align: center;
}

.page-hero .container {
  position: relative;
}

.page-hero .section-title-light {
  margin-bottom: 0.25rem;
  color: var(--bg-cream);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
}

.page-hero .section-sub-light {
  margin-bottom: 0;
  font-size: 0.9rem;
}

.page-hero .breadcrumb {
  justify-content: center;
  margin-bottom: 1rem;
}

/* Breadcrumb in page-hero (inner pages) */
.page-hero .breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: rgba(249,245,240,0.8);
  flex-wrap: wrap;
}

.page-hero .breadcrumb a {
  color: rgba(249,245,240,0.9);
}

.page-hero .breadcrumb a:hover {
  color: var(--accent);
}

.page-hero .breadcrumb-sep {
  opacity: 0.6;
}

/* Inner page content spacing */
.inner-content {
  padding: 3rem 0 4rem;
}

/* ----- Forms ----- */
.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 1rem 1.25rem;
  font-family: var(--sans);
  font-size: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.15);
  background: var(--bg-cream);
  color: var(--text-dark);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* ----- Tables (cart) ----- */
.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

th, td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

th {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 400;
}

/* ----- Footer ----- */
.footer {
  position: relative;
  padding: 4rem 0 2rem;
  background: var(--primary);
  color: var(--bg-cream);
  overflow: hidden;
}

.footer-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.5;
}

.footer-top {
  text-align: center;
  margin-bottom: 2rem;
}

.footer-logo {
  height: 48px;
  width: auto;
  margin: 0 auto 0.75rem;
  filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.2));
}

.footer-tagline {
  font-family: var(--serif);
  font-size: 0.95rem;
  letter-spacing: 0.28em;
  color: var(--accent);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-copy {
  text-align: center;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: rgba(249, 245, 240, 0.5);
}

/* ========== HOME PAGE (Stelina-style) ========== */

/* Hero Slider */
.hero-slider {
  position: relative;
  min-height: 85vh;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
}
.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease, visibility 0.6s;
}
.hero-slide.active {
  opacity: 1;
  visibility: visible;
  position: relative;
  width: 100%;
}
.hero-slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  background: linear-gradient(105deg, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.4) 45%, rgba(0,0,0,0.15) 100%);
}
.hero-slide-inner {
  position: relative;
  z-index: 2;
  min-height: 85vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 600px;
  padding: 4rem 2rem;
  animation: hero-content-in 0.9s ease-out both;
  box-sizing: border-box;
}
.hero-slide.active .hero-slide-inner { animation: hero-content-in 0.9s ease-out both; }
@keyframes hero-content-in {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-slide-label {
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.hero-slide-title {
  font-family: var(--serif);
  font-size: clamp(2.25rem, 5.5vw, 4rem);
  font-weight: 300;
  letter-spacing: 0.06em;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}
.hero-slide-price {
  color: rgba(255,255,255,0.9);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}
.hero-slide-inner .btn {
  min-width: 10rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  white-space: nowrap;
}
.hero-slider-prev,
.hero-slider-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.4);
  border: none;
  color: #fff;
  width: 48px;
  height: 48px;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 10;
  transition: background 0.2s;
}
.hero-slider-prev { left: 1rem; }
.hero-slider-next { right: 1rem; }
.hero-slider-prev:hover,
.hero-slider-next:hover { background: var(--accent); color: #000; }
.hero-slider-dots {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}
.hero-slider-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: background 0.2s;
}
.hero-slider-dots span.active { background: var(--accent); transform: scale(1.2); }

/* Section common */
.section {
  padding: var(--section-padding) 0;
}

/* Section head (title + optional subtitle) */
.section-head {
  text-align: center;
  margin-bottom: 2.5rem;
}
.section-head .section-title { margin-bottom: 0.5rem; }
.section-head .section-sub { margin-bottom: 0; }

@media (max-width: 768px) {
  .section { padding: 2.25rem 0; }
  .section-head { margin-bottom: 1.5rem; }
  .deal-section { padding-top: 1.75rem; padding-bottom: 1.75rem; }
  .collection-section { padding-top: 1.75rem; padding-bottom: 2rem; }
  .home-art-section { padding: 2rem 0; }
}

/* Home — The Art of Presence block */
.home-art-section {
  background: var(--bg-ivory);
  padding: var(--section-padding) 0;
}
.home-art-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  box-sizing: border-box;
}
.home-art-visual {
  order: 1;
  min-width: 0;
}
.home-art-img-wrap {
  aspect-ratio: 4/5;
  min-height: 320px;
  overflow: hidden;
  background: linear-gradient(180deg, var(--bg-ivory), #e8e4df);
  max-width: 100%;
}
.home-art-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
  display: block;
}
.home-art-section:hover .home-art-img-wrap img { transform: scale(1.03); }
.home-art-content { order: 2; min-width: 0; }
.home-art-label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.home-art-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--primary);
  margin-bottom: 1.25rem;
  line-height: 1.2;
}
.home-art-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-charcoal);
  margin-bottom: 2rem;
  max-width: 420px;
  overflow-wrap: break-word;
  word-wrap: break-word;
}
@media (max-width: 900px) {
  .home-art-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .home-art-visual { order: 0; }
  .home-art-img-wrap { max-height: 400px; aspect-ratio: 16/10; }
}
@media (max-width: 768px) {
  .home-art-section { overflow: hidden; }
  .home-art-inner {
    width: 100%;
    max-width: 100%;
    padding: 0 1rem;
  }
  .home-art-img-wrap { max-width: 100%; }
  .home-art-text { max-width: 100%; }
  .home-art-content .btn { max-width: 100%; box-sizing: border-box; }
}

/* Scroll reveal (subtle fade-up when in view) */
.section-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.section-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Deal of the day — carousel (right to left scroll) */
.deal-section { background: var(--bg-cream); }
.carousel-wrap {
  overflow: hidden;
  margin-left: -2rem;
  margin-right: -2rem;
  padding-left: 2rem;
  padding-right: 2rem;
  position: relative;
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.carousel-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: carousel-scroll-left 35s linear infinite;
}
.carousel-track:hover { animation-play-state: paused; }
.deal-carousel-wrap .carousel-card {
  flex: 0 0 auto;
  min-width: 260px;
  max-width: 280px;
}
.collection-carousel-wrap .carousel-card {
  flex: 0 0 auto;
  min-width: 260px;
  max-width: 280px;
}
@keyframes carousel-scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (max-width: 768px) {
  .carousel-wrap {
    margin-left: 0;
    margin-right: 0;
    padding-left: 1rem;
    padding-right: 1rem;
    mask-image: none;
    -webkit-mask-image: none;
  }
  .deal-carousel-wrap .carousel-card,
  .collection-carousel-wrap .carousel-card {
    min-width: 155px;
    max-width: 165px;
  }
  .carousel-track { gap: 1rem; animation-duration: 28s; }
}
@media (max-width: 380px) {
  .deal-carousel-wrap .carousel-card,
  .collection-carousel-wrap .carousel-card {
    min-width: 140px;
    max-width: 150px;
  }
}

/* Promo blocks: 1 row, 2 cols — Bootstrap + modern design */
.promo-blocks {
  background: var(--bg-ivory);
  padding-top: 90px;
}
@media (max-width: 768px) {
  .promo-blocks { padding-top: 74px; }
}
.promo-card-modern {
  background: var(--bg-cream);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.06);
}
.promo-card-modern:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}
.promo-card-modern-accent {
  background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-ivory) 100%);
  border-color: rgba(212, 175, 55, 0.2);
}
.promo-card-modern-accent:hover {
  box-shadow: 0 12px 40px rgba(212, 175, 55, 0.15);
}
.promo-card-modern-label {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  color: var(--accent);
  font-weight: 400;
}
.promo-card-modern-title {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 400;
  color: var(--primary);
  letter-spacing: 0.02em;
  line-height: 1.2;
}
.promo-card-modern-desc {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-muted);
}
.promo-card-modern-link {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  color: var(--primary);
  text-decoration: none;
  border-bottom: 2px solid var(--primary);
  padding-bottom: 2px;
  transition: color var(--transition-fast), border-color var(--transition-fast);
}
.promo-card-modern-link:hover { color: var(--accent); border-bottom-color: var(--accent); }
.promo-card-modern-price {
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--accent);
  letter-spacing: 0.02em;
}
.promo-card-modern-img {
  background: linear-gradient(180deg, rgba(249, 245, 240, 0.5) 0%, rgba(250, 248, 245, 0.8) 100%);
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.promo-card-modern-img img {
  max-height: 280px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  transition: transform var(--transition);
}
.promo-card-modern:hover .promo-card-modern-img img {
  transform: scale(1.04);
}
.promo-card-modern .btn-dark {
  font-family: var(--sans);
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  border: none;
  transition: background var(--transition-fast), transform var(--transition-fast);
}
.promo-card-modern .btn-dark:hover {
  background: var(--primary-charcoal);
  transform: translateY(-1px);
}
@media (max-width: 768px) {
  .promo-card-modern-img { min-height: 180px; }
  .promo-card-modern-img img { max-height: 220px; }
}

/* Staff Pick + Offer row + Collection Arrived */
.promo-cards-section { background: var(--bg-ivory); padding-bottom: 0; }
.promo-cards-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.promo-card {
  background: var(--bg-cream);
  padding: 2rem;
  min-width: 0;
}
.promo-card-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: center;
}
.promo-card-content { min-width: 0; }
.promo-card-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.promo-card-title {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 400;
  color: var(--primary);
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}
.promo-card-desc {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.promo-card-link {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color var(--transition-fast);
}
.promo-card-link:hover { color: var(--accent); }
.promo-card-img {
  display: flex;
  align-items: center;
  justify-content: center;
}
.promo-card-img img {
  max-height: 200px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
}

/* Collection Arrived (full-width block) */
.collection-arrived {
  background: var(--bg-cream);
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
}
.collection-arrived-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem;
}
.collection-arrived-bottles {
  display: flex;
  align-items: center;
  justify-content: center;
}
.collection-arrived-bottles img {
  max-height: 240px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
}
.collection-arrived-content { text-align: center; min-width: 0; }
.collection-arrived-title {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 400;
  color: var(--primary);
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}
.collection-arrived-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}
.collection-arrived-price {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.collection-arrived-price .price-amount {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--accent);
  margin-left: 0.25rem;
}

@media (max-width: 768px) {
  .promo-cards-row { grid-template-columns: 1fr; }
  .promo-card { padding: 1.5rem 1rem; }
  .promo-card-inner { grid-template-columns: 1fr; }
  .promo-card-img { order: -1; }
  .promo-card-img img { max-height: 180px; max-width: 120px; }
  .collection-arrived { padding: 2rem 0; }
  .collection-arrived-inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 1rem;
  }
  .collection-arrived-left { order: 1; }
  .collection-arrived-content { order: 2; }
  .collection-arrived-right { order: 3; }
  .collection-arrived-bottles img { max-height: 180px; max-width: 100px; }
}

/* Product badge & actions (Stelina-style) */
.product-card { position: relative; }
.product-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--accent);
  color: var(--primary);
  font-size: 0.7rem;
  padding: 0.25rem 0.5rem;
  letter-spacing: 0.1em;
  z-index: 2;
}
.product-img-wrap { position: relative; }
.product-actions {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.75rem;
  background: rgba(0,0,0,0.7);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.product-card:hover .product-actions { opacity: 1; }
.product-action-btn {
  width: 100%;
  padding: 0.5rem 0.75rem;
  background: var(--accent);
  border: none;
  color: var(--primary);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: background 0.2s;
  text-align: center;
  text-decoration: none;
  display: block;
  font-family: inherit;
}
.product-action-btn:hover { background: var(--accent-light); }
.product-action-btn.product-action-view {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.8);
}
.product-action-btn.product-action-view:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
}
.product-price s { color: var(--text-muted); margin-right: 0.5rem; }

/* Tabs (Bestseller, New Arrivals, Top Rated) */
.collection-section { background: var(--bg-ivory); }
.tabs {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 2.5rem;
}
.tabs-refined {
  border-bottom: 1px solid rgba(0,0,0,0.12);
  padding-bottom: 0;
  margin-bottom: 2rem;
}
.tab-btn {
  padding: 0.75rem 1.5rem;
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  font-family: var(--sans);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  cursor: pointer;
  transition: color 0.25s, border-color 0.25s;
}
.tab-btn:hover { color: var(--primary); }
.tabs-refined .tab-btn.active {
  color: var(--primary);
  border-bottom-color: var(--accent);
  font-weight: 400;
}
.tab-content {
  display: none;
}
.tab-content.active { display: block; }

/* Features strip */
.features-strip {
  background: var(--primary);
  color: var(--bg-cream);
  padding: 3.5rem 0;
  position: relative;
}
.features-strip::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.9;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  text-align: center;
}
.feature-item {
  padding: 0.5rem 0;
}
.feature-item .feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  font-size: 1.4rem;
  color: var(--primary);
  background: var(--accent);
  margin-bottom: 1rem;
  border-radius: 50%;
}
.feature-item h4 {
  font-family: var(--serif);
  font-size: 1.15rem;
  letter-spacing: 0.12em;
  margin-bottom: 0.35rem;
  color: var(--bg-cream);
}
.feature-item p {
  font-size: 0.9rem;
  opacity: 0.88;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .features-grid { grid-template-columns: 1fr; gap: 2rem; }
  .features-strip { padding: 2.5rem 0; }
}

/* Footer grid (Stelina-style) */
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  padding: 3rem 0 2rem;
}
.footer-col h4 {
  font-family: var(--serif);
  font-size: 1rem;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
  color: var(--bg-cream);
}
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul a {
  color: rgba(249,245,240,0.8);
  font-size: 0.9rem;
}
.footer-col ul a:hover { color: var(--accent); }
.footer-tagline {
  font-family: var(--serif);
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-top: 0.5rem;
}
.footer-newsletter {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.75rem;
}
.footer-newsletter input {
  flex: 1;
  padding: 0.6rem 0.75rem;
  border: 1px solid rgba(212,175,55,0.4);
  background: rgba(255,255,255,0.06);
  color: var(--bg-cream);
  font-size: 0.9rem;
}
.footer-newsletter input::placeholder { color: rgba(249,245,240,0.5); }
.footer-newsletter .btn { padding: 0.6rem 1rem; }
.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
}

/* Legacy hero (for other pages) */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #000000;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('images/slider.png') center center / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  /* Dark left for text, lighter right so bottles/fabric show */
  background: linear-gradient(90deg, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.5) 40%, rgba(0,0,0,0.25) 70%, rgba(0,0,0,0.1) 100%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3rem 0 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
}

.hero-content {
  max-width: 420px;
}

.hero-logo {
  margin-bottom: 1.25rem;
}

.hero-logo img {
  height: 60px;
  width: auto;
  filter: drop-shadow(0 0 28px rgba(212, 175, 55, 0.4));
}

.hero-tagline {
  font-family: var(--serif);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  letter-spacing: 0.2em;
  color: rgba(249, 245, 240, 0.98);
  margin-bottom: 1.75rem;
  font-weight: 400;
  line-height: 1.5;
}

.hero .btn {
  margin-top: 0.25rem;
}

.hero-bottles {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 2.5rem;
  min-height: 440px;
}

.hero-bottles img {
  max-height: 400px;
  width: auto;
  object-fit: contain;
  transition: transform var(--transition);
}

.hero-bottles img:hover {
  transform: translateY(-8px);
}

/* ========== THE ART OF PRESENCE (same as design) ========== */
/* Solid black, gold flourish above title, 2 columns: left = bottle + button | right = text + lifestyle image */
.art-section {
  padding: 5rem 0 6rem;
  background: var(--primary);
  color: var(--bg-cream);
}

.art-section .container {
  max-width: 1200px;
}

.art-divider-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin: 0 auto 1.25rem;
  max-width: 320px;
}

.art-divider-line {
  flex: 1;
  max-width: 100px;
  height: 1px;
  background: var(--accent);
  opacity: 0.85;
}

.art-flourish {
  width: 56px;
  height: 28px;
  flex-shrink: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 32'%3E%3Cpath d='M32 4c-6 0-11 3-14 7l-2-1 1 2c-2-1-3-2-5-2-4 0-7 3-7 6s3 6 7 6c2 0 3-1 5-2l-1 2 2-1c3-3 7-5 14-5s11 2 14 5l2 1-1-2c2 1 3 2 5 2 4 0 7-3 7-6s-3-6-7-6c-2 0-3 1-5 2l1-2-2 1c-3 3-7 5-14 5z' fill='%23D4AF37'/%3E%3C/svg%3E") center / contain no-repeat;
  opacity: 0.95;
}

.art-section-title {
  font-family: var(--serif);
  font-size: clamp(1.85rem, 3.5vw, 2.5rem);
  font-weight: 300;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  text-align: center;
  color: var(--accent);
  margin: 0 0 3rem;
}

.art-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.art-col-left {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.art-col-img-wrap {
  width: 100%;
  max-width: 420px;
  border-radius: 2px;
  overflow: hidden;
  background: rgba(20, 20, 20, 0.8);
}

.art-col-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.art-section .btn-outline.art-btn {
  margin-top: 1.5rem;
  background: var(--primary);
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 0.9rem 2.25rem;
  font-family: var(--serif);
  letter-spacing: 0.22em;
}

.art-section .btn-outline.art-btn:hover {
  background: rgba(212, 175, 55, 0.12);
  color: var(--accent-light);
  border-color: var(--accent);
}

.art-col-right {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.art-col-text {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(212, 175, 55, 0.95);
  margin: 0;
  text-align: left;
  letter-spacing: 0.02em;
}

.art-col-lifestyle {
  border-radius: 2px;
  overflow: hidden;
}

.art-col-lifestyle img {
  width: 100%;
  border-radius: 2px;
  object-fit: cover;
  min-height: 360px;
  display: block;
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.4);
}

/* Signature Collection section (ivory/cream background) */
.signature-section {
  padding: 5rem 0;
  background: var(--bg-cream);
  color: var(--text-dark);
}

.signature-section .section-title {
  color: var(--primary);
  font-weight: 300;
  letter-spacing: 0.3em;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.product-card {
  position: relative;
  text-align: center;
  transition: transform var(--transition);
}

.product-card a {
  display: block;
}

.product-img-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: linear-gradient(180deg, var(--bg-ivory), #eee);
  margin-bottom: 1.25rem;
  border-radius: 2px;
}

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

.product-glow {
  position: absolute;
  inset: -2px;
  border: 1px solid transparent;
  border-radius: 2px;
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.product-card:hover .product-glow {
  opacity: 1;
  border-color: var(--accent);
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.2), inset 0 0 30px rgba(212, 175, 55, 0.05);
}

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

.product-card:hover {
  transform: translateY(-4px);
}

.product-name {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
  color: var(--primary);
}

.product-desc {
  font-family: var(--sans);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.product-price {
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-top: 0.5rem;
}

/* ========== PHILOSOPHY SECTION (home) ========== */
.philosophy-section {
  padding: var(--section-padding) 0;
  background: var(--bg-ivory);
  position: relative;
  overflow: hidden;
}

.philosophy-section .container {
  position: relative;
  z-index: 2;
}

.philosophy-bg {
  position: absolute;
  inset: 0;
  background: var(--bg-ivory) url('images/unsplash-roses.jpg') center center / cover no-repeat;
  opacity: 0.08;
  pointer-events: none;
}

.philosophy-content {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.philosophy-content .section-title {
  margin-bottom: var(--space-md);
}

.philosophy-content p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--text-muted);
  margin-bottom: var(--space-sm);
}

.philosophy-content .btn {
  margin-top: var(--space-md);
}

/* ========== NEWSLETTER SECTION (home) ========== */
.newsletter-section {
  padding: calc(var(--section-padding) + 1rem) 0;
  background: var(--primary);
  color: var(--bg-cream);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.newsletter-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(212, 175, 55, 0.08) 0%, transparent 60%);
  pointer-events: none;
}
.newsletter-container { position: relative; z-index: 1; }
.newsletter-title {
  font-size: clamp(1.9rem, 4vw, 2.75rem);
  letter-spacing: 0.35em;
  margin-bottom: 0.75rem;
}
.newsletter-sub {
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  margin-bottom: var(--space-xl);
  opacity: 0.9;
}
.newsletter-section .section-title-light {
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.newsletter-section .section-sub-light {
  margin-bottom: var(--space-lg);
}

.newsletter-form {
  max-width: 420px;
  margin: 0 auto;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.newsletter-form input {
  flex: 1;
  min-width: 220px;
  padding: 1rem 1.25rem;
  font-family: var(--sans);
  font-size: 1rem;
  border: 1px solid rgba(212, 175, 55, 0.4);
  background: rgba(255,255,255,0.06);
  color: var(--bg-cream);
  border-radius: 0;
  transition: border-color var(--transition-fast);
}

.newsletter-form input::placeholder {
  color: rgba(249, 245, 240, 0.5);
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--accent);
}

.newsletter-form .btn {
  padding: 1rem 1.75rem;
}

/* ========== SHOP PAGE ========== */
.shop-page {
  padding: 2rem 0 4rem;
}

.shop-intro {
  max-width: 560px;
  margin: 0 auto 1.5rem;
  text-align: center;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-muted);
}

.shop-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.shop-count {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

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

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

/* ========== SHOP DETAIL ========== */
.detail-page {
  padding: 2rem 0 4rem;
}

.breadcrumb {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
  color: var(--text-muted);
}

.breadcrumb a:hover {
  color: var(--accent);
}

.breadcrumb-sep {
  margin: 0 0.4rem;
  opacity: 0.6;
}

.related-section {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.related-section .section-title {
  margin-bottom: 1.5rem;
}

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

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

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

.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.detail-gallery {
  position: sticky;
  top: 120px;
}

.detail-gallery img {
  width: 100%;
  border-radius: 2px;
  background: var(--bg-ivory);
}

.detail-info h1 {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 400;
  letter-spacing: 0.15em;
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.detail-info .product-price {
  font-size: 1.25rem;
  margin: 1rem 0;
}

.detail-info .product-desc {
  margin: 1.5rem 0;
  font-size: 1rem;
  line-height: 1.8;
}

.detail-options {
  margin: 1.5rem 0;
}

.detail-options label {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.detail-options select {
  width: 100%;
  max-width: 200px;
  padding: 0.75rem 1rem;
  font-family: var(--sans);
  border: 1px solid rgba(0,0,0,0.15);
  background: var(--bg-cream);
}

.add-to-cart-wrap {
  margin-top: 2rem;
}

.add-to-cart-wrap .btn {
  padding: 1rem 3rem;
  width: 100%;
  max-width: 320px;
}

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

  .detail-gallery {
    position: static;
  }
}

/* ========== CART ========== */
.cart-page {
  padding: 2rem 0 4rem;
}

.cart-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
  align-items: start;
}

.cart-table th:nth-child(1) { width: 50%; }
.cart-table th:nth-child(2),
.cart-table th:nth-child(3) { width: 15%; }
.cart-table th:nth-child(4) { width: 20%; }

.cart-item-img {
  width: 80px;
  height: 100px;
  object-fit: cover;
  border-radius: 2px;
  background: var(--bg-ivory);
}

.cart-item-name {
  font-family: var(--serif);
  letter-spacing: 0.1em;
  padding-left: 1rem;
}

.cart-qty {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(0,0,0,0.15);
  padding: 0.25rem;
}

.cart-qty button {
  width: 32px;
  height: 32px;
  border: none;
  background: var(--bg-ivory);
  cursor: pointer;
  font-size: 1.2rem;
  line-height: 1;
  transition: background var(--transition-fast);
}

.cart-qty button:hover {
  background: var(--accent);
  color: var(--primary);
}

.cart-qty span {
  min-width: 2rem;
  text-align: center;
}

.cart-remove {
  background: none;
  border: none;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  cursor: pointer;
  padding: 0.5rem 0;
  transition: color var(--transition-fast);
}

.cart-remove:hover {
  color: #c00;
}

.cart-summary {
  background: var(--bg-ivory);
  padding: 2rem;
  border-radius: 2px;
  border: 1px solid rgba(0,0,0,0.08);
  position: sticky;
  top: 120px;
}

.cart-summary h3 {
  font-family: var(--serif);
  font-size: 1.25rem;
  letter-spacing: 0.15em;
  margin-bottom: 1.5rem;
  color: var(--primary);
}

.cart-summary .row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

.cart-summary .total {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0,0,0,0.12);
  font-family: var(--serif);
  font-size: 1.25rem;
  letter-spacing: 0.1em;
}

.cart-summary .btn {
  width: 100%;
  margin-top: 1.5rem;
  padding: 1rem;
}

@media (max-width: 900px) {
  .cart-layout {
    grid-template-columns: 1fr;
  }

  .cart-summary {
    position: static;
  }
}

/* ========== CHECKOUT ========== */
.checkout-page {
  padding: 2rem 0 4rem;
}

.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 3rem;
  align-items: start;
}

.checkout-block {
  margin-bottom: 2.5rem;
}

.checkout-block h2 {
  font-family: var(--serif);
  font-size: 1.35rem;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
  color: var(--primary);
}

.order-summary {
  background: var(--bg-ivory);
  padding: 2rem;
  border-radius: 2px;
  border: 1px solid rgba(0,0,0,0.08);
  position: sticky;
  top: 120px;
}

.order-summary h3 {
  font-family: var(--serif);
  font-size: 1.25rem;
  letter-spacing: 0.15em;
  margin-bottom: 1.5rem;
  color: var(--primary);
}

.order-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
}

.order-summary .total {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0,0,0,0.12);
  font-family: var(--serif);
  font-size: 1.25rem;
  letter-spacing: 0.1em;
}

.order-summary .btn {
  width: 100%;
  margin-top: 1.5rem;
  padding: 1rem;
}

@media (max-width: 900px) {
  .checkout-layout {
    grid-template-columns: 1fr;
  }
}

/* ========== ABOUT ========== */
.about-page {
  padding: 2rem 0 4rem;
}

.about-intro {
  max-width: 720px;
  margin: 0 auto 3rem;
  text-align: center;
}

.about-intro .section-title {
  margin-bottom: 1.5rem;
}

.about-intro p {
  font-size: 1.1rem;
  line-height: 1.9;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
  max-width: 100%;
}

.about-grid-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  background: var(--bg-ivory);
  transition: transform var(--transition), box-shadow var(--transition);
}

.about-grid-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
}

.about-grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 3 / 4;
  min-height: 260px;
  display: block;
  transition: transform var(--transition);
}

.about-grid-item:hover img {
  transform: scale(1.03);
}

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

@media (max-width: 600px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-top: 2rem;
  }
  .about-grid-item img {
    min-height: 240px;
    aspect-ratio: 4 / 3;
  }
}

.about-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 2.5rem;
}

/* ========== CONTACT ========== */
.contact-page {
  padding: 2rem 0 4rem;
}

.contact-intro {
  max-width: 560px;
  margin: 0 auto 2rem;
  text-align: center;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-muted);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-info h3 {
  font-family: var(--serif);
  font-size: 1.25rem;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
  color: var(--primary);
}

.contact-info p {
  margin-bottom: 1.5rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.contact-form {
  max-width: 520px;
}

.contact-form .btn {
  width: 100%;
  padding: 1rem;
  margin-top: 0.5rem;
}

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

/* ========== HOME HERO RESPONSIVE ========== */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 6rem 1.5rem 3rem;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-bottles {
    min-height: 320px;
  }

  .hero-bottles img {
    max-height: 280px;
  }
}

@media (max-width: 768px) {
  .art-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .art-col-left {
    order: 1;
  }

  .art-col-right {
    order: 2;
  }

  .art-col-text {
    text-align: center;
  }

  .art-col-lifestyle img {
    min-height: 300px;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

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

/* ----- Utility ----- */
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }

/* ----- Responsive ----- */
@media (max-width: 1024px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links,
  .nav-actions {
    display: none;
  }

  .nav-links.open {
    display: flex;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: #000;
    padding: 1.5rem 1.25rem 2rem;
    gap: 0;
    z-index: 999;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
    box-shadow: 0 12px 24px rgba(0,0,0,0.4);
  }
  .nav-links.open li {
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .nav-links.open a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
    letter-spacing: 0.15em;
    color: var(--bg-cream);
  }
  .nav-links.open a:hover,
  .nav-links.open a.active { color: var(--accent); }
  .nav-links .nav-mobile-only { display: none; }
  .nav-links.open .nav-mobile-only { display: list-item; }
  .nav-links.open .nav-mobile-only a { color: var(--accent); font-weight: 400; }

  .nav-toggle {
    display: flex;
  }

  .nav-cart-mobile {
    display: flex !important;
  }

  .container {
    padding: 0 1.25rem;
  }
}

/* WhatsApp floating button */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  z-index: 997;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.whatsapp-float:hover {
  color: #fff;
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
}
.whatsapp-float:focus {
  color: #fff;
  outline: 2px solid #25D366;
  outline-offset: 3px;
}
.whatsapp-float svg {
  flex-shrink: 0;
}
.whatsapp-float-tooltip {
  position: absolute;
  right: 100%;
  margin-right: 10px;
  padding: 0.4rem 0.75rem;
  background: var(--primary, #0a0a0a);
  color: #fff;
  font-size: 0.8rem;
  white-space: nowrap;
  border-radius: 4px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.whatsapp-float:hover .whatsapp-float-tooltip {
  opacity: 1;
}
@media (max-width: 480px) {
  .whatsapp-float {
    width: 52px;
    height: 52px;
    bottom: 1.25rem;
    right: 1.25rem;
  }
  .whatsapp-float-tooltip {
    display: none;
  }
}
