/* ============================================================
   AROMAREN – Extended Styles for Multi-Page Site & Cart
   ============================================================ */

/* ── Variables ── */
:root {
  --dark:       #2c2c2c;
  --darker:     #1a1a1a;
  --white:      #ffffff;
  --off-white:  #f9f6f2;
  --light-gray: #f3f4f6;
  --gold:       #c9a96e;
  --gold-bright:#e5c27a;
  --text-gray:  #4b5563;
  --text-dark:  #111827;
  --border:     #e5e7eb;
  --hero-bg-start: #2c2424;
  --hero-bg-end:   #4a3c30;
  --max-w:    1280px;
  --px:       1rem;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { 
  font-family: 'Inter', sans-serif; 
  color: var(--text-dark); 
  background: #fff; 
  line-height: 1.6; 
  overflow-x: hidden;
  animation: pageFadeIn 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
@keyframes pageFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
img { display: block; max-width: 100%; height: auto; object-fit: cover; transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1); }
a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
ul { list-style: none; }
button, input, select { font-family: inherit; transition: all 0.3s ease; }
/* ── Custom Luxury Scrollbar ── */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--off-white);
}
::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 5px;
  border: 2px solid var(--off-white);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold-bright);
}

/* Firefox support */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--gold) var(--off-white);
}

/* ── Max-width container ── */
.mw { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 var(--px); }

/* ════════════════════════════════════════
   TOP BAR
════════════════════════════════════════ */
.topbar {
  width: 100%;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--darker);
  color: #fff;
  font-size: 0.75rem;
}
.topbar-social { display: flex; align-items: center; gap: 12px; }
.topbar-icon { color: #fff; line-height: 0; transition: opacity 0.15s; }
.topbar-icon:hover { opacity: 0.7; }
.topbar-text { flex: 1; text-align: center; font-weight: 500; letter-spacing: 0.02em; }
.topbar-bold { font-weight: 700; color: #fcd34d; }
.topbar-spacer { width: 56px; }

/* ════════════════════════════════════════
   HEADER / NAV
════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: #fff;
  transition: box-shadow 0.3s;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}
.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 24px;
}
.site-logo {
  display: flex;
  align-items: center;
  height: 48px; /* Fixed height for logo */
  flex-shrink: 0;
}
.site-logo img {
  height: 100%;
  width: auto;
  object-fit: contain;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
  transition: color 0.15s;
  white-space: nowrap;
  position: relative;
}
.nav-link:hover, .nav-link.active { color: #000; }
.nav-link.active::after {
  content: ''; position: absolute; bottom:-4px; left:0; width:100%; height:2px; background:var(--gold); border-radius:2px;
}
.header-actions { display: flex; align-items: center; gap: 16px; }
.icon-action {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: var(--dark);
  position: relative;
  transition: opacity 0.15s;
}
.icon-action:hover { opacity: 0.6; }
.header-user-actions { position: relative; }

/* User profile dropdown */
.user-dropdown { position: relative; padding-bottom: 20px; margin-bottom: -20px; }
.user-dropdown-content {
  position: absolute;
  top: 100%;
  right: 0;
  background: #fff;
  min-width: 180px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  border-radius: 8px;
  padding: 12px;
  display: none;
  z-index: 100;
  border: 1px solid var(--border);
  animation: fadeInDown 0.2s ease-out;
}
.user-dropdown:hover .user-dropdown-content { display: block; }
/* Add an invisible bridge to prevent mouse-out */
.user-dropdown-content::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 0;
  width: 100%;
  height: 20px;
  background: transparent;
}

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

.user-email { font-size: 0.75rem; color: #6b7280; padding-bottom: 8px; border-bottom: 1px solid var(--border); margin-bottom: 8px; font-weight: 500; }
.dropdown-link { display: block; padding: 8px 12px; font-size: 0.875rem; color: #374151; font-weight: 500; border-radius: 4px; transition: background 0.2s; }
.dropdown-link:hover { background: #f3f4f6; color: var(--dark); }
.cart-badge {
  position: absolute;
  top: -2px;
  right: -4px;
  background: var(--gold);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  width: 14px;
  height: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.hamburger-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger-btn span {
  display: block; width: 22px; height: 2px; background: var(--dark); border-radius: 2px; transition: all 0.25s;
}
.mobile-nav {
  display: none;
  flex-direction: column;
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 8px 16px 16px;
}
.mobile-nav.open { display: flex; }
.mobile-link {
  font-size: 0.95rem; font-weight: 500; color: #374151; padding: 12px 0; border-bottom: 1px solid var(--border);
}

/* ════════════════════════════════════════
   CART SIDEBAR SYSTEM
════════════════════════════════════════ */
.cart-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 100;
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.cart-overlay.open { opacity: 1; pointer-events: auto; }

.cart-sidebar {
  position: fixed; top: 0; right: 0; bottom: 0; width: 100%; max-width: 400px;
  background: #fff; z-index: 110; transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex; flex-direction: column; box-shadow: -4px 0 24px rgba(0,0,0,0.1);
}
.cart-sidebar.open { transform: translateX(0); }

.cart-sidebar-header {
  padding: 20px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--border);
}
.cart-sidebar-title { font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 600; }
.cart-close-btn { background: none; border: none; cursor: pointer; color: #6b7280; transition: color 0.2s; }
.cart-close-btn:hover { color: #000; }

.cart-items { flex: 1; overflow-y: auto; padding: 20px; }
.cart-empty { display: flex; flex-direction: column; align-items: center; justify-content: center; height: 100%; gap: 16px; color: #6b7280; text-align: center; }
.btn-shop-now { display: inline-block; padding: 10px 24px; background: var(--dark); color: #fff; font-size: 0.875rem; font-weight: 600; border-radius: 6px; transition: background 0.2s; }
.btn-shop-now:hover { background: #000; }

.cart-item { display: flex; gap: 16px; padding-bottom: 20px; margin-bottom: 20px; border-bottom: 1px solid #f3f4f6; }
.cart-item-img { width: 80px; height: 80px; object-fit: contain; background: #f9fafb; border-radius: 8px; border: 1px solid #f3f4f6; }
.cart-item-details { flex: 1; display: flex; flex-direction: column; }
.cart-item-title-row { display: flex; justify-content: space-between; align-items: flex-start; gap: 8px; margin-bottom: 4px; }
.cart-item-title { font-size: 0.875rem; font-weight: 500; color: #111827; line-height: 1.3; }
.cart-item-remove { background: none; border: none; font-size: 1.2rem; color: #9ca3af; cursor: pointer; padding: 0; line-height: 1; }
.cart-item-remove:hover { color: #ef4444; }
.cart-item-price { font-weight: 600; color: #111827; margin-bottom: 8px; font-size: 0.85rem; }
.cart-item-qty { display: inline-flex; align-items: center; border: 1px solid var(--border); border-radius: 4px; width: max-content; }
.qty-btn { background: none; border: none; width: 28px; height: 28px; cursor: pointer; color: #4b5563; font-weight: 600; }
.qty-input { width: 32px; height: 28px; border: none; text-align: center; font-size: 0.85rem; font-weight: 500; color: #111827; padding: 0; }
.qty-input:focus { outline: none; }

.cart-footer { padding: 20px; border-top: 1px solid var(--border); background: #fafafa; }
.cart-subtotal { display: flex; justify-content: space-between; font-weight: 600; font-size: 1.1rem; margin-bottom: 8px; }
.cart-shipping-note { font-size: 0.75rem; color: #6b7280; text-align: center; margin-bottom: 16px; }
.btn-checkout { display: flex; align-items: center; justify-content: center; width: 100%; padding: 14px; background: var(--dark); color: #fff; font-weight: 600; font-size: 0.95rem; border-radius: 6px; transition: background 0.2s; }
.btn-checkout:hover { background: #000; }

/* ════════════════════════════════════════
   FULL CART PAGE
════════════════════════════════════════ */
.cart-page-bg { background-color: var(--off-white); min-height: calc(100vh - 64px - 40px); padding: 48px 16px 80px; }
.cart-page-container { max-width: 1000px; margin: 0 auto; }
.checkout-title { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 2.75rem); font-weight: 700; margin-bottom: 32px; text-align: left; }

.cart-page-layout { display: flex; flex-direction: column; gap: 32px; }
@media (min-width: 768px) { .cart-page-layout { flex-direction: row; align-items: flex-start; } }

.cart-page-main { flex: 1; background: #fff; border-radius: 12px; box-shadow: 0 1px 4px rgba(0,0,0,0.04); overflow: hidden; }
.cart-empty-state { padding: 64px 32px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 16px; color: #6b7280; }

.cart-page-item { display: flex; align-items: center; padding: 24px; border-bottom: 1px solid var(--border); gap: 20px; }
.cart-page-item:last-child { border-bottom: none; }
.cp-item-img { width: 90px; height: 90px; object-fit: contain; background: #f9fafb; border-radius: 8px; border: 1px solid #f3f4f6; flex-shrink: 0; }
.cp-item-info { flex: 1; }
.cp-item-title { font-size: 1rem; font-weight: 600; color: #111827; margin-bottom: 4px; }
.cp-item-price { color: #6b7280; font-size: 0.9rem; }
.cp-item-actions { display: flex; align-items: center; gap: 24px; flex-shrink: 0; }
.cp-item-remove { background: none; border: none; cursor: pointer; color: #9ca3af; padding: 4px; border-radius: 4px; }
.cp-item-remove:hover { color: #ef4444; background: #fee2e2; }
.cp-item-total { font-weight: 700; font-size: 1.05rem; min-width: 70px; text-align: right; }
@media (max-width: 600px) {
  .cart-page-item { flex-direction: column; align-items: flex-start; position: relative; }
  .cp-item-actions { width: 100%; justify-content: space-between; }
  .cp-item-remove { position: absolute; top: 24px; right: 24px; }
}

.cart-page-sidebar { width: 100%; }
@media (min-width: 768px) { .cart-page-sidebar { width: 340px; position: sticky; top: 100px; } }

.summary-card { background: #fff; border-radius: 12px; box-shadow: 0 1px 4px rgba(0,0,0,0.04); padding: 24px; }
.summary-title { font-size: 1.15rem; font-weight: 600; margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid var(--border); }
.summary-row { display: flex; justify-content: space-between; margin-bottom: 12px; color: #4b5563; font-size: 0.9rem; }
.summary-divider { border: 0; border-top: 1px dashed #d1d5db; margin: 16px 0; }
.summary-total { font-size: 1.2rem; font-weight: 700; color: #111827; margin-bottom: 24px; }
.btn-checkout-primary { background: var(--dark); color: #fff; border: none; border-radius: 8px; width: 100%; padding: 16px; font-size: 1rem; font-weight: 600; cursor: pointer; transition: background 0.2s, opacity 0.2s; }
.btn-checkout-primary:hover { background: #000; }
.btn-checkout-primary:disabled { background: #d1d5db; cursor: not-allowed; opacity: 0.7; }

.payment-methods { display: flex; justify-content: center; gap: 8px; margin-top: 20px; opacity: 0.8; }

/* ════════════════════════════════════════
   SEARCH MODAL
════════════════════════════════════════ */
.search-modal {
  position: fixed; inset: 0; background: rgba(255,255,255,0.98); z-index: 200;
  display: none; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s;
}
.search-modal-inner { width: 100%; max-width: 600px; padding: 0 24px; position: relative; }
.search-form { display: flex; align-items: center; border-bottom: 2px solid var(--dark); padding-bottom: 8px; }
.search-input { flex: 1; border: none; background: transparent; font-size: 1.5rem; outline: none; color: var(--dark); font-family: 'Playfair Display', serif; }
.search-submit { background: none; border: none; cursor: pointer; color: var(--dark); }
.search-close { position: absolute; top: -60px; right: 24px; background: none; border: none; font-size: 0.875rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; cursor: pointer; }

/* ════════════════════════════════════════
   HERO SHARED (Inner Pages)
════════════════════════════════════════ */
.page-hero { background: var(--light-gray); padding: 80px 16px; text-align: center; }
.page-hero-dark { background: var(--hero-bg-start); color: #fff; }
.page-hero-dark .hero-eyebrow { color: var(--gold); }
.page-hero-dark .page-hero-title { color: #fff; }
.page-hero-dark .page-hero-desc { color: #d1d5db; }
.page-hero-inner { max-width: 700px; margin: 0 auto; }
.page-hero-title { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 700; margin-bottom: 16px; color: var(--text-dark); line-height: 1.15; }
.page-hero-desc { font-size: clamp(1rem, 1.5vw, 1.125rem); color: #4b5563; line-height: 1.6; }

/* ════════════════════════════════════════
   TRUST STRIP
════════════════════════════════════════ */
.trust-strip { background: var(--dark); color: #fff; padding: 16px 0; }
.trust-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 16px; display: flex; flex-wrap: wrap; justify-content: space-around; gap: 16px; }
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 0.8rem; font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase; }

/* ════════════════════════════════════════
   SHOP PAGE EXTENSIONS
════════════════════════════════════════ */
.shop-layout { max-width: var(--max-w); margin: 0 auto; padding: 64px 16px 80px; display: flex; flex-direction: column; gap: 40px; }
@media (min-width: 900px) { .shop-layout { flex-direction: row; } }

.shop-filters { width: 100%; }
@media (min-width: 900px) { .shop-filters { width: 240px; flex-shrink: 0; } }
.filter-heading { font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 600; margin-bottom: 24px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.filter-group { margin-bottom: 24px; display: flex; flex-direction: column; gap: 10px; }
.filter-label { font-weight: 600; font-size: 0.95rem; margin-bottom: 4px; }
.filter-check { display: flex; align-items: center; gap: 8px; font-size: 0.875rem; color: #4b5563; cursor: pointer; }
.filter-check input { accent-color: var(--dark); width: 16px; height: 16px; cursor: pointer; }
.filter-select { width: 100%; padding: 10px; border: 1px solid var(--border); border-radius: 6px; font-size: 0.875rem; outline: none; }

.shop-products { flex: 1; }
.shop-toolbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; padding-bottom: 16px; border-bottom: 1px solid var(--border); }
.shop-count { font-size: 0.875rem; color: #6b7280; }
.mobile-filter-btn { display: flex; align-items: center; gap: 6px; background: none; border: 1px solid var(--border); padding: 8px 12px; border-radius: 6px; font-size: 0.875rem; cursor: pointer; }
@media (min-width: 900px) { .mobile-filter-btn { display: none; } }

.product-card-link { display: flex; flex-direction: column; flex: 1; }
.product-scent-notes { font-size: 0.75rem; color: #6b7280; margin-bottom: 8px; }

/* ════════════════════════════════════════
   ABOUT PAGE EXTENSIONS
════════════════════════════════════════ */
.about-story { padding: 80px 0; background: #fff; }
.about-story-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 16px; display: flex; flex-direction: column; gap: 48px; }
@media (min-width: 768px) { .about-story-inner { flex-direction: row; align-items: center; gap: 64px; } }
.about-story-img { flex: 1; border-radius: 12px; overflow: hidden; }
.about-story-copy { flex: 1; }
.about-section-title { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 3vw, 2.5rem); font-weight: 700; margin-bottom: 24px; line-height: 1.15; }
.about-text { color: #4b5563; margin-bottom: 16px; font-size: 1.05rem; }

.values-section { padding: 80px 0; background: var(--off-white); }
.values-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 16px; }
.values-grid { display: grid; grid-template-columns: 1fr; gap: 24px; margin-top: 40px; }
@media (min-width: 640px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
.value-card { background: #fff; padding: 32px; border-radius: 12px; box-shadow: 0 1px 4px rgba(0,0,0,0.04); }
.value-number { font-family: 'Playfair Display', serif; font-size: 2.5rem; color: rgba(201,169,110,0.3); font-weight: 700; line-height: 1; margin-bottom: 16px; }
.value-title { font-size: 1.15rem; font-weight: 600; margin-bottom: 12px; }
.value-desc { color: #6b7280; font-size: 0.95rem; }

.team-section { padding: 80px 0; background: #fff; }
.team-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 16px; }
.team-grid { display: grid; grid-template-columns: 1fr; gap: 32px; }
@media (min-width: 640px) { .team-grid { grid-template-columns: repeat(3, 1fr); } }
.team-card { text-align: center; }
.team-avatar { width: 120px; height: 120px; border-radius: 50%; background: var(--light-gray); margin: 0 auto 20px; display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-size: 2rem; color: #a1a1aa; }
.team-name { font-size: 1.1rem; font-weight: 600; margin-bottom: 4px; }
.team-role { font-size: 0.85rem; color: var(--gold); font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 12px; }
.team-bio { font-size: 0.9rem; color: #6b7280; }

.cert-section { padding: 64px 0; background: var(--dark); color: #fff; }
.cert-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 16px; }
.cert-section .about-section-title { color: #fff; }
.cert-grid { display: grid; grid-template-columns: 1fr; gap: 32px; }
@media (min-width: 640px) { .cert-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .cert-grid { grid-template-columns: repeat(4, 1fr); } }
.cert-card { text-align: center; }
.cert-icon { font-size: 2.5rem; margin-bottom: 16px; }
.cert-name { font-size: 1.05rem; font-weight: 600; margin-bottom: 8px; }
.cert-desc { font-size: 0.85rem; color: rgba(255,255,255,0.7); }

.about-cta-section { padding: 100px 16px; text-align: center; background: url('images/faris.png') center/cover no-repeat; color: #fff; position: relative; }
.about-cta-section::before { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,0.6); }
.about-cta-inner { position: relative; z-index: 10; max-width: 600px; margin: 0 auto; }
.about-cta-title { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; margin-bottom: 16px; }
.about-cta-desc { font-size: 1.1rem; color: #d1d5db; margin-bottom: 32px; }

/* ════════════════════════════════════════
   FAQ EXTENSIONS
════════════════════════════════════════ */
.faq-section { padding: 80px 0; background: #fff; min-height: 60vh; }
.faq-inner { max-width: 800px; margin: 0 auto; padding: 0 16px; }
.faq-category { margin-bottom: 48px; }
.faq-cat-title { font-family: 'Playfair Display', serif; font-size: 1.75rem; font-weight: 600; margin-bottom: 24px; padding-bottom: 12px; border-bottom: 2px solid var(--dark); }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question { width: 100%; border: none; background: none; display: flex; justify-content: space-between; align-items: center; padding: 20px 0; font-size: 1.05rem; font-weight: 600; color: var(--text-dark); cursor: pointer; text-align: left; }
.faq-question:hover { color: var(--gold); }
.faq-chevron { transition: transform 0.3s; color: #9ca3af; }
.faq-question[aria-expanded="true"] .faq-chevron { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out; }
.faq-answer p { padding-bottom: 24px; color: #4b5563; font-size: 0.95rem; line-height: 1.6; }

.contact-teaser { padding: 64px 16px; background: var(--off-white); text-align: center; }
.contact-teaser-inner { max-width: 600px; margin: 0 auto; }
.contact-teaser-title { font-size: 1.5rem; font-weight: 700; margin-bottom: 12px; }
.contact-teaser-desc { color: #6b7280; margin-bottom: 24px; }

/* ════════════════════════════════════════
   WHOLESALE SECTION (Shop Page)
════════════════════════════════════════ */
.wholesale-section { padding: 80px 0; background: var(--dark); color: #fff; }
.wholesale-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 16px; display: flex; flex-direction: column; gap: 48px; }
@media (min-width: 768px) { .wholesale-inner { flex-direction: row; align-items: center; gap: 64px; } }
.wholesale-copy { flex: 1; }
.wholesale-title { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 3vw, 2.75rem); font-weight: 700; margin-bottom: 24px; }
.wholesale-desc { color: #d1d5db; font-size: 1.05rem; margin-bottom: 32px; }
.wholesale-perks { margin-bottom: 40px; }
.wholesale-perks li { margin-bottom: 12px; font-weight: 500; font-size: 0.95rem; }
.wholesale-img-wrap { flex: 1; border-radius: 12px; overflow: hidden; }
.wholesale-section .btn-outline-dark { border-color: #fff; color: #fff; }
.wholesale-section .btn-outline-dark:hover { background: #fff; color: var(--dark); }

/* ════════════════════════════════════════
   NEWSLETTER BANNER
════════════════════════════════════════ */
.newsletter-section { padding: 80px 16px; text-align: center; background: #fff; border-top: 1px solid var(--border); }
.newsletter-inner { max-width: 600px; margin: 0 auto; }
.newsletter-title { font-family: 'Playfair Display', serif; font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 700; margin-bottom: 16px; }
.newsletter-desc { color: #6b7280; font-size: 1.05rem; margin-bottom: 32px; }
.newsletter-form { display: flex; gap: 8px; flex-direction: column; }
@media (min-width: 480px) { .newsletter-form { flex-direction: row; } }
.newsletter-input { flex: 1; padding: 14px 20px; border: 1px solid var(--border); border-radius: 6px; font-size: 1rem; outline: none; transition: border-color 0.2s; }
.newsletter-input:focus { border-color: var(--dark); }
.btn-newsletter { padding: 14px 28px; background: var(--dark); color: #fff; border: none; border-radius: 6px; font-weight: 600; cursor: pointer; transition: background 0.2s; white-space: nowrap; }
.btn-newsletter:hover { background: #000; }

/* ════════════════════════════════════════
   BASE BUTTONS / MISC (FROM PREVIOUS)
════════════════════════════════════════ */
.hero-section { position: relative; width: 100%; overflow: hidden; }
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.8) 100%), 
              url('images/spectre.png') center/cover no-repeat;
}
.hero-content { position: relative; z-index: 10; max-width: var(--max-w); margin: 0 auto; padding: 96px 16px 144px; display: flex; flex-direction: column; align-items: center; text-align: center; }
.hero-eyebrow { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.3em; color: #fcd34d; font-weight: 500; margin-bottom: 16px; }
.hero-title { font-family: 'Playfair Display', serif; font-size: clamp(2.5rem, 7vw, 4.5rem); font-weight: 700; color: #fff; margin-bottom: 24px; line-height: 1.15; }
.hero-title-accent { color: var(--gold); }
.hero-desc { font-size: clamp(1rem, 2vw, 1.2rem); color: #d1d5db; margin-bottom: 32px; max-width: 42rem; line-height: 1.7; }
.hero-cta-group { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }

.btn-hero-primary { padding: 16px 40px; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: #000; background: #fff; border-radius: 6px; transition: background 0.2s; display: inline-block; cursor: pointer; text-decoration: none; border: none;}
.btn-hero-primary:hover { background: #f3f4f6; }
.btn-hero-secondary { padding: 16px 40px; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: #fff; border: 1px solid rgba(255,255,255,0.4); border-radius: 6px; transition: background 0.2s; display: inline-block; cursor: pointer; text-decoration: none; }
.btn-hero-secondary:hover { background: rgba(255,255,255,0.1); }

.features-section { padding: 48px 0 80px; background: #fff; }
.features-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 16px; display: flex; flex-direction: column; gap: 64px; }
.feature-row { display: flex; flex-direction: column; align-items: center; gap: 40px; }
@media (min-width: 768px) { .feature-row { flex-direction: row; } .feature-row-reverse { flex-direction: row-reverse; } }
.feature-img-wrap { width: 100%; flex: 0 0 50%; border-radius: 16px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.12); }
.feature-img { width: 100%; height: 288px; object-fit: cover; }
@media (min-width: 768px) { .feature-img { height: 384px; } }
.feature-copy { width: 100%; flex: 1; }
.feature-title { font-family: 'Playfair Display', serif; font-size: clamp(1.4rem, 2.5vw, 1.875rem); font-weight: 700; margin-bottom: 20px; color: var(--text-dark); line-height: 1.25; }
.feature-text { color: #6b7280; margin-bottom: 24px; line-height: 1.7; }
.btn-outline-dark { display: inline-block; padding: 12px 28px; font-size: 0.875rem; font-weight: 600; color: var(--dark); border: 2px solid var(--dark); border-radius: 6px; transition: background 0.2s, color 0.2s; }
.btn-outline-dark:hover { background: var(--dark); color: #fff; }

.products-section { padding: 56px 0 80px; background-color: var(--off-white); }
.products-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 16px; }
.products-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 32px; flex-wrap: wrap; gap: 12px; }
.products-title { font-family: 'Playfair Display', serif; font-size: clamp(1.4rem, 3vw, 1.875rem); font-weight: 700; color: var(--text-dark); }
.products-viewall { font-size: 0.875rem; font-weight: 600; color: var(--dark); transition: opacity 0.15s; }
.products-viewall:hover { opacity: 0.6; }

.products-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
@media (min-width: 768px) { .products-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .products-grid { grid-template-columns: repeat(4, 1fr); } }

.product-card { 
  background: #fff; 
  border-radius: 12px; 
  overflow: hidden; 
  border: 1px solid #f3f4f6; 
  box-shadow: 0 1px 4px rgba(0,0,0,0.06); 
  transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1); 
  display: flex; 
  flex-direction: column; 
}
.product-card:hover { 
  transform: translateY(-8px) scale(1.02); 
  box-shadow: 0 20px 40px rgba(0,0,0,0.1); 
}
.product-img-wrap { aspect-ratio: 1 / 1; background: #f9fafb; position: relative; overflow: hidden; }
.product-img { width: 100%; height: 100%; object-fit: contain; padding: 16px; transition: transform 0.35s; }
.product-card:hover .product-img { transform: scale(1.04); }
.product-badge { 
  position: absolute; 
  top: 12px; 
  left: 12px; 
  background: var(--dark); 
  color: #fff; 
  font-size: 0.625rem; 
  font-weight: 700; 
  letter-spacing: 0.1em; 
  padding: 3px 9px; 
  border-radius: 4px; 
  z-index: 10;
}
.product-badge-new     { background: #059669; }
.product-badge-limited { background: #7c3aed; }

.product-details { padding: 16px 16px 8px; flex: 1; }
.product-name { font-size: 0.875rem; font-weight: 500; color: #1f2937; margin-bottom: 6px; line-height: 1.4; }
.product-meta { display: flex; align-items: center; gap: 6px; margin-bottom: 8px; }
.product-rating { color: var(--gold); font-size: 0.8rem; letter-spacing: 1px; }
.product-review-count { font-size: 0.75rem; color: #9ca3af; }
.product-pricing { display: flex; align-items: baseline; gap: 8px; }
.product-price-current { font-size: 1rem; font-weight: 700; color: #111827; }
.product-price-compare { font-size: 0.8rem; color: #9ca3af; text-decoration: line-through; }

.btn-add-to-cart { display: block; margin: 12px 16px 16px; padding: 10px 16px; font-size: 0.8rem; font-weight: 600; text-align: center; color: var(--dark); border: 1.5px solid var(--dark); border-radius: 6px; background:#fff; cursor:pointer; transition: all 0.2s; }
.btn-add-to-cart:hover { background: var(--dark); color: #fff; }

.slider-section { padding: 64px 0 80px; background: #fff; }
.slider-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 16px; display: flex; flex-direction: column; gap: 48px; }
@media (min-width: 768px) { .slider-inner { flex-direction: row; align-items: center; gap: 64px; } }
.slider-copy { flex: 1; }
.eyebrow-gold { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.slider-title { font-family: 'Playfair Display', serif; font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 700; margin-bottom: 20px; line-height: 1.2; }
.slider-desc { color: #6b7280; line-height: 1.7; }

.ba-container { flex: 1; position: relative; display: block; border-radius: 16px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.15); cursor: ew-resize; user-select: none; min-height: 340px; }
@media (min-width: 768px) { .ba-container { min-height: 420px; } }
.ba-after { position: absolute; inset: 0; width: 100%; height: 100%; overflow: hidden; }
.ba-before { position: absolute; inset: 0; width: 100%; height: 100%; overflow: hidden; z-index: 2; clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%); }
.ba-img { width: 100%; height: 100%; object-fit: cover; display: block; pointer-events: none; }
.ba-label { position: absolute; top: 14px; font-size: 0.65rem; font-weight: 800; letter-spacing: 0.15em; padding: 4px 10px; border-radius: 4px; pointer-events: none; }
.ba-label-before { left: 12px; background: rgba(0,0,0,0.35); color: #fff; }
.ba-label-after  { right: 12px; background: rgba(255,255,255,0.2); color: #fff; }
.ba-divider { position: absolute; top: 0; bottom: 0; left: 50%; width: 4px; background: #fff; display: flex; align-items: center; justify-content: center; z-index: 5; pointer-events: none; transform: translateX(-50%); }
.ba-handle { position: absolute; width: 40px; height: 40px; background: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; gap: 0; box-shadow: 0 2px 12px rgba(0,0,0,0.25); color: #374151; }

.benefits-section { padding: 64px 0 80px; background: var(--light-gray); }
.benefits-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 16px; text-align: center; }
.benefits-title { font-family: 'Playfair Display', serif; font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 700; margin-bottom: 48px; line-height: 1.25; }
.benefits-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 640px) { .benefits-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .benefits-grid { grid-template-columns: repeat(4, 1fr); } }
.benefit-card { background: #fff; border-radius: 12px; padding: 32px 24px; display: flex; flex-direction: column; align-items: center; text-align: center; transition: transform 0.25s, box-shadow 0.25s; }
.benefit-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.08); }
.benefit-icon-wrap { width: 60px; height: 60px; border-radius: 50%; background: var(--off-white); display: flex; align-items: center; justify-content: center; color: var(--dark); margin-bottom: 16px; transition: background 0.2s; }
.benefit-card:hover .benefit-icon-wrap { background: var(--gold); color: #fff; }
.benefit-name { font-weight: 700; font-size: 1rem; margin-bottom: 10px; color: var(--text-dark); }
.benefit-desc { font-size: 0.875rem; color: #6b7280; line-height: 1.65; }

.press-section { padding: 40px 0; background: #fff; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.press-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 16px; text-align: center; }
.press-eyebrow { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.22em; color: #9ca3af; text-transform: uppercase; margin-bottom: 24px; }
.press-logos { display: flex; flex-wrap: wrap; justify-content: center; gap: 32px 48px; align-items: center; }
.press-name { font-family: 'Playfair Display', serif; font-size: 1.15rem; font-style: italic; font-weight: 600; color: #d1d5db; letter-spacing: 0.02em; transition: color 0.2s; }
.press-name:hover { color: var(--dark); }

.testimonial-section { padding: 64px 0 80px; background: var(--off-white); }
.testimonial-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 16px; display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 768px) { .testimonial-inner { grid-template-columns: repeat(3, 1fr); } }
.testimonial-card { background: #fff; border-radius: 12px; padding: 32px; box-shadow: 0 1px 4px rgba(0,0,0,0.06); display: flex; flex-direction: column; gap: 16px; }
.testi-stars { color: var(--gold); font-size: 1rem; letter-spacing: 2px; }
.testi-quote { font-family: 'Playfair Display', serif; font-style: italic; font-size: 0.95rem; color: #374151; line-height: 1.7; flex: 1; }
.testi-author { font-size: 0.8rem; font-weight: 700; color: var(--gold); letter-spacing: 0.05em; }

.site-footer { background-color: var(--dark); color: #d1d5db; }
.footer-main { max-width: var(--max-w); margin: 0 auto; padding: 56px 16px; display: grid; grid-template-columns: 1fr; gap: 40px; }
@media (min-width: 768px) { .footer-main { grid-template-columns: repeat(3, 1fr); } }
.footer-logo { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: #fff; display: inline-block; margin-bottom: 16px; }
.footer-heading { color: #fff; font-size: 1rem; font-weight: 600; margin-bottom: 16px; }
.footer-text { font-size: 0.875rem; margin-bottom: 12px; line-height: 1.65; color: #9ca3af; }
.footer-form { display: flex; gap: 8px; flex-wrap: wrap; }
.footer-input { flex: 1; min-width: 130px; padding: 9px 14px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.2); border-radius: 6px; color: #fff; font-size: 0.85rem; outline: none; transition: border-color 0.2s; }
.footer-input::placeholder { color: rgba(255,255,255,0.35); }
.footer-input:focus { border-color: var(--gold); }
.btn-footer-subscribe { padding: 9px 18px; background: #fff; color: #000; font-size: 0.85rem; font-weight: 600; border: none; border-radius: 6px; cursor: pointer; transition: opacity 0.2s; }
.btn-footer-subscribe:hover { opacity: 0.85; }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-link { font-size: 0.875rem; color: #9ca3af; transition: color 0.15s; }
.footer-link:hover { color: #fff; }
.footer-social { display: flex; gap: 12px; margin-top: 16px; }
.social-link { width: 34px; height: 34px; border: 1px solid rgba(255,255,255,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #9ca3af; transition: color 0.15s, border-color 0.15s; }
.social-link:hover { color: #fff; border-color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 16px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; max-width: var(--max-w); margin: 0 auto; }
.footer-copy { font-size: 0.75rem; color: #6b7280; }
.footer-legal { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-legal-link { font-size: 0.75rem; color: #6b7280; transition: color 0.15s; }
.footer-legal-link:hover { color: #9ca3af; }

.review-pill { position: fixed; bottom: 24px; left: 16px; z-index: 50; background: #fff; border-radius: 9999px; padding: 10px 16px; box-shadow: 0 4px 20px rgba(0,0,0,0.15); display: flex; align-items: center; gap: 8px; font-size: 0.75rem; pointer-events: none; }
.review-stars { color: var(--gold); letter-spacing: 1px; font-size: 0.85rem; }
.review-info { color: var(--text-dark); line-height: 1.3; }

.reveal { 
  opacity: 0; 
  transform: translateY(40px); 
  transition: opacity 1s cubic-bezier(0.2, 0.8, 0.2, 1), transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1); 
  will-change: opacity, transform;
}
.reveal.visible { 
  opacity: 1; 
  transform: translateY(0); 
}

/* Staggered entrance for cards */
.products-grid .reveal { transition-delay: calc(var(--delay, 0) * 100ms); }

/* Global Button Hover Enhancement */
button:hover, .btn-hero-primary:hover, .btn-hero-secondary:hover, .btn-add-to-cart:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  filter: brightness(1.1);
}
button:active {
  transform: scale(0.95);
}

/* Smooth Scrolling Anchor Fix */
html { scroll-behavior: smooth; }

/* ════════════════════════════════════════
   MOBILE RESPONSIVE — COMPREHENSIVE
════════════════════════════════════════ */

/* ── Desktop nav hide / hamburger show ── */
@media (max-width: 1023px) {
  .main-nav { display: none; }
  .hamburger-btn { display: flex; }
}

/* ── Tablet & Mobile (≤ 767px) ── */
@media (max-width: 767px) {
  /* Topbar */
  .topbar-social { display: none; }
  .topbar-spacer { display: none; }
  .topbar-text { font-size: 0.65rem; letter-spacing: 0; }

  /* Header */
  .header-inner { height: 60px; padding: 0 16px; }
  .site-logo { font-size: 1.15rem; }
  .icon-action { padding: 8px; }
  .header-actions { gap: 4px; }
  .hamburger-btn { margin-left: 8px; }

  /* Cart Sidebar — full screen on mobile */
  .cart-sidebar { max-width: 100%; width: 100%; }

  /* Hero */
  .hero-content { padding: 64px 16px 96px; }
  .hero-title { font-size: clamp(2rem, 9vw, 3rem); }
  .hero-desc { font-size: 0.95rem; }
  .hero-cta-group { flex-direction: column; align-items: center; gap: 12px; }
  .btn-hero-primary, .btn-hero-secondary { width: 100%; max-width: 300px; text-align: center; padding: 14px 24px; }

  /* Features */
  .features-inner { gap: 40px; }
  .feature-img { height: 220px; }

  /* Products grid */
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .product-details { padding: 12px 10px; }
  .product-name { font-size: 0.8rem; height: 2.8em; overflow: hidden; }
  .product-price-current { font-size: 0.95rem; }
  .btn-add-to-cart { font-size: 0.75rem; padding: 10px; margin: 8px 10px 12px; }

  /* Benefits */
  .benefits-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .benefit-card { padding: 20px 16px; }

  /* Testimonials */
  .testimonial-inner { grid-template-columns: 1fr; }

  /* Footer */
  .footer-main { grid-template-columns: 1fr; gap: 28px; padding: 40px 16px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }

  /* Cart page */
  .cart-page-layout { flex-direction: column; }
  .cart-page-sidebar { width: 100%; position: static; }
  .cart-page-bg { padding: 24px 12px 60px; }
  .checkout-title { font-size: 1.75rem; margin-bottom: 20px; }
  .summary-card { padding: 20px; }

  /* Cart items on cart page */
  .cart-page-item { flex-wrap: wrap; }

  /* Shop page */
  .shop-layout { padding: 32px 12px 60px; gap: 24px; }
  .shop-toolbar { flex-direction: column; gap: 12px; align-items: flex-start; }
  .shop-count { font-size: 0.8rem; }

  /* Admin panel */
  .admin-sidebar { width: 100%; position: static; padding: 20px; }
  .admin-content { padding: 20px; }

  /* PDP */
  .pdp-layout { flex-direction: column; }
  .pdp-gallery { max-width: 100%; }

  /* Wholesale */
  .wholesale-inner { gap: 32px; }

  /* Review pill — bottom left */
  .review-pill { bottom: 14px; left: 10px; padding: 8px 12px; }

  /* Page hero */
  .page-hero { padding: 52px 16px; }
  .page-hero-title { font-size: 2rem; }
}

/* ── Small Mobile (≤ 479px) ── */
@media (max-width: 479px) {
  .products-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .product-details { padding: 12px 12px 6px; }
  .btn-add-to-cart { margin: 8px; }
  .benefits-grid { grid-template-columns: 1fr; }
  .hero-content { padding: 48px 12px 80px; }
  .press-logos { gap: 20px 28px; }
  .press-name { font-size: 0.9rem; }
  .review-pill { display: none; } /* too crowded on tiny screens */
  .trust-inner { flex-direction: column; gap: 12px; align-items: center; }
  .trust-item { font-size: 0.7rem; }
  .topbar { padding: 8px 10px; }

  /* Full-width cart sidebar */
  .cart-sidebar { max-width: 100%; }

  /* Stack form grids */
  .form-grid { grid-template-columns: 1fr !important; }
}

/* ── Ensure touch targets are ≥ 44px ── */
@media (pointer: coarse) {
  .qty-btn, .cart-item-remove, .filter-check, .faq-question,
  .btn-add-to-cart, .nav-link, .mobile-link, .footer-link,
  .btn-admin-sm, .btn-delete { min-height: 48px; }
  .qty-btn { width: 40px; height: 40px; }
  .cart-item-remove { font-size: 1.5rem; padding: 8px 12px; }
  .mobile-link { padding: 16px 0; }
}


/* ════════════════════════════════════════
   MISSING UTILITY CLASSES
════════════════════════════════════════ */

/* Shop inner layout wrapper */
.shop-inner { display: flex; width: 100%; gap: 40px; flex-direction: column; }
@media (min-width: 900px) { .shop-inner { flex-direction: row; } }

/* Mobile filter panel open state */
@media (max-width: 899px) {
  .shop-filters { display: none; }
  .shop-filters.mobile-open { display: block; border: 1px solid var(--border); border-radius: 8px; padding: 20px; background: #fff; margin-bottom: 16px; }
}

/* Toast notification (from script.js showToast()) */
.toast {
  position: fixed; bottom: 24px; right: 24px; z-index: 500;
  background: var(--dark); color: #fff; padding: 12px 20px; border-radius: 8px;
  font-size: 0.875rem; font-weight: 500; opacity: 0; transform: translateY(12px);
  transition: opacity 0.3s, transform 0.3s; pointer-events: none;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.toast.show { opacity: 1; transform: translateY(0); }

/* Review items (pdp + reviews page) */
.review-item { background: #fff; border-radius: 12px; padding: 28px; box-shadow: 0 1px 4px rgba(0,0,0,0.06); border: 1px solid var(--border); }
.review-meta { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 12px; }
.review-user { font-weight: 700; font-size: 0.95rem; color: var(--text-dark); margin-bottom: 4px; }
.review-rating { color: var(--gold); font-size: 0.9rem; letter-spacing: 1px; }
.review-date { font-size: 0.75rem; color: #9ca3af; font-weight: 500; white-space: nowrap; }
.review-comment { color: #4b5563; line-height: 1.7; font-size: 0.95rem; margin-bottom: 12px; }
.review-product-link { font-size: 0.8rem; font-weight: 600; color: var(--gold); transition: opacity 0.2s; display: inline-block; margin-top: 8px; }
.review-product-link:hover { opacity: 0.75; }
.review-photos-grid { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 12px; }
.review-photo { width: 80px; height: 80px; object-fit: cover; border-radius: 6px; cursor: pointer; border: 1px solid var(--border); }

/* Write review form elements */
.write-review-card { background: #fff; border-radius: 12px; padding: 28px; box-shadow: 0 1px 4px rgba(0,0,0,0.06); border: 1px solid var(--border); }
.write-review-title { font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 600; margin-bottom: 20px; }
.star-rating-input { display: flex; flex-direction: row-reverse; gap: 4px; width: max-content; }
.star-rating-input input { display: none; }
.star-rating-input label { font-size: 1.5rem; color: #d1d5db; cursor: pointer; transition: color 0.15s; }
.star-rating-input input:checked ~ label,
.star-rating-input label:hover,
.star-rating-input label:hover ~ label { color: var(--gold); }
.btn-submit-review { width: 100%; padding: 13px; background: var(--dark); color: #fff; border: none; border-radius: 8px; font-weight: 600; cursor: pointer; transition: background 0.2s; margin-top: 8px; }
.btn-submit-review:hover { background: #000; }
.guest-msg-card { text-align: center; padding: 32px 20px; color: #6b7280; display: flex; flex-direction: column; align-items: center; gap: 16px; }
.photo-previews { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 8px; }
.preview-img { width: 64px; height: 64px; object-fit: cover; border-radius: 6px; border: 1px solid var(--border); }

/* Reviews section on PDP */
.reviews-section { padding: 80px 0; background: var(--off-white); }
.reviews-header { text-align: center; margin-bottom: 48px; }
.reviews-title { font-family: 'Playfair Display', serif; font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 700; margin-bottom: 24px; }
.reviews-stats { display: flex; align-items: center; justify-content: center; gap: 24px; flex-wrap: wrap; }
.avg-rating { font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 700; color: var(--dark); line-height: 1; }
.avg-stars { color: var(--gold); font-size: 1.25rem; letter-spacing: 2px; }
.total-reviews { font-size: 0.875rem; color: #6b7280; }
.reviews-grid { display: grid; grid-template-columns: 1fr; gap: 32px; }
@media (min-width: 768px) { .reviews-grid { grid-template-columns: 380px 1fr; } }
.reviews-list { display: flex; flex-direction: column; gap: 20px; }

/* Pagination */
#pagination { display: flex; justify-content: center; margin-top: 32px; }
.pagi-inner { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.pagi-btn { padding: 8px 14px; border: 1px solid #d1d5db; border-radius: 6px; background: #fff; color: #333; cursor: pointer; font-size: 0.875rem; transition: all 0.15s; }
.pagi-btn:hover:not(:disabled) { background: #f3f4f6; }
.pagi-btn:disabled { opacity: 0.4; cursor: default; }
.pagi-active { background: var(--gold); color: #fff; border-color: var(--gold); font-weight: 600; }
.pagi-active:hover:not(:disabled) { background: var(--gold) !important; }
@media (max-width: 576px) {
  .pagi-btn { padding: 6px 10px; font-size: 0.8rem; }
  #pagination { gap: 4px; }
}
