/** Shopify CDN: Minification failed

Line 23:13 Expected identifier but found whitespace
Line 23:15 Unexpected "{"
Line 23:25 Expected ":"
Line 24:18 Expected identifier but found whitespace
Line 24:20 Unexpected "{"
Line 24:30 Expected ":"
Line 25:15 Expected identifier but found whitespace
Line 25:17 Unexpected "{"
Line 25:27 Expected ":"
Line 26:21 Expected identifier but found whitespace
... and 15 more hidden warnings

**/
/* =========================================================
   NOIR & GOLD — Men's Skincare Theme
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;600;700;800&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --color-bg: {{ settings.color_background | default: '#0b0b0b' }};
  --color-surface: {{ settings.color_surface | default: '#161616' }};
  --color-text: {{ settings.color_text | default: '#f2ede3' }};
  --color-text-muted: {{ settings.color_text_muted | default: '#a8a29a' }};
  --color-gold: {{ settings.color_gold | default: '#d4af6a' }};
  --color-gold-dark: {{ settings.color_gold_dark | default: '#a9823f' }};
  --color-border: {{ settings.color_border | default: '#2a2a2a' }};
  --color-white: #ffffff;
  --color-black: #000000;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --page-width: {{ settings.page_width | default: 1320 }}px;
  --header-height: 76px;
  --announcement-height: 38px;
  --sticky-atc-height: 78px;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 700; margin: 0; letter-spacing: 0.01em; }
p { margin: 0; }

.skip-to-content {
  position: absolute; left: -999px; top: 0; z-index: 9999;
  background: var(--color-gold); color: var(--color-black); padding: 10px 18px;
}
.skip-to-content:focus { left: 10px; top: 10px; }

.container {
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 0 20px;
}
.container--narrow { max-width: 780px; }

.rte p { margin-bottom: 1em; }
.rte a { color: var(--color-gold); text-decoration: underline; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 32px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  transition: all 0.25s var(--ease);
  cursor: pointer;
  white-space: nowrap;
}
.btn--gold {
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
  color: var(--color-black);
}
.btn--gold:hover { filter: brightness(1.1); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(212,175,106,0.25); }
.btn--outline-gold { background: transparent; border-color: var(--color-gold); color: var(--color-gold); }
.btn--outline-gold:hover { background: var(--color-gold); color: var(--color-black); }
.btn--outline-light { background: transparent; border-color: rgba(255,255,255,0.4); color: var(--color-white); }
.btn--outline-light:hover { border-color: var(--color-white); background: rgba(255,255,255,0.08); }
.btn--full { width: 100%; }
.btn--quick-add {
  width: 100%; margin-top: 10px; padding: 11px 16px; font-size: 11px;
  background: transparent; border: 1px solid var(--color-border); color: var(--color-text);
}
.btn--quick-add:hover { border-color: var(--color-gold); color: var(--color-gold); }
.btn[disabled] { opacity: 0.5; cursor: not-allowed; }

/* ---------- Announcement Bar ---------- */
.announcement-bar {
  height: var(--announcement-height);
  overflow: hidden;
  display: flex;
  align-items: center;
  font-size: 12px;
  letter-spacing: 0.08em;
  font-weight: 600;
}
.announcement-bar__track {
  display: flex;
  white-space: nowrap;
  animation: marquee 22s linear infinite;
}
.announcement-bar__item { padding: 0 40px; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(11,11,11,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
}
.site-header__inner {
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.logo-text {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--color-gold);
}
.site-nav { display: none; }
.site-nav__list { display: flex; gap: 32px; }
.site-nav__item { position: relative; }
.site-nav__link {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 0;
  transition: color 0.2s;
}
.site-nav__link:hover { color: var(--color-gold); }
.site-nav__dropdown {
  position: absolute; top: 100%; left: 0; min-width: 200px;
  background: var(--color-surface); border: 1px solid var(--color-border);
  border-radius: var(--radius-sm); padding: 10px 0;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: all 0.2s var(--ease);
}
.site-nav__item:hover .site-nav__dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.site-nav__dropdown li a { display: block; padding: 8px 20px; font-size: 13px; }
.site-nav__dropdown li a:hover { color: var(--color-gold); background: rgba(212,175,106,0.06); }

.site-header__icons { display: flex; align-items: center; gap: 6px; }
.header-icon-btn {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%; position: relative;
  background: transparent; border: none; color: var(--color-text);
  transition: background 0.2s, color 0.2s;
}
.header-icon-btn:hover { background: rgba(212,175,106,0.1); color: var(--color-gold); }
.cart-count {
  position: absolute; top: 2px; right: 2px;
  background: var(--color-gold); color: var(--color-black);
  font-size: 10px; font-weight: 700;
  width: 16px; height: 16px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

/* Mobile nav toggle (hamburger) */
.mobile-nav-toggle {
  display: flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 40px; height: 40px; background: none; border: none; padding: 0;
}
.mobile-nav-toggle span { display: block; width: 20px; height: 1.5px; background: var(--color-text); margin: 0 auto; transition: all 0.25s var(--ease); }

.mobile-nav {
  position: fixed; top: 0; left: -100%; width: 86%; max-width: 360px; height: 100%;
  background: var(--color-surface); z-index: 1000;
  transition: left 0.32s var(--ease);
  overflow-y: auto;
  border-right: 1px solid var(--color-border);
}
.mobile-nav.is-open { left: 0; }
.mobile-nav__header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px; border-bottom: 1px solid var(--color-border);
}
.mobile-nav__close { background: none; border: none; color: var(--color-text); font-size: 28px; line-height: 1; }
.mobile-nav__list { padding: 10px 0; }
.mobile-nav__list > li > a {
  display: block; padding: 14px 20px; font-size: 15px; font-weight: 600;
  border-bottom: 1px solid var(--color-border);
}
.mobile-nav__sublist { padding-left: 14px; }
.mobile-nav__sublist li a { display: block; padding: 10px 20px; font-size: 14px; color: var(--color-text-muted); }

.mobile-nav-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 999;
  opacity: 0; visibility: hidden; transition: opacity 0.3s var(--ease);
}
.mobile-nav-overlay.is-open { opacity: 1; visibility: visible; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  height: var(--hero-height-mobile, 560px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__image { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.hero__image--placeholder { background: linear-gradient(160deg, #1a1a1a, #0b0b0b); }
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.25) 40%, rgba(11,11,11,0.95) 100%);
}
.hero__content { position: relative; z-index: 1; padding-bottom: 64px; }
.hero__eyebrow {
  display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: 0.2em;
  color: var(--color-gold); margin-bottom: 16px; text-transform: uppercase;
}
.hero__heading {
  font-size: clamp(32px, 8vw, 68px);
  line-height: 1.08;
  color: var(--color-white);
  max-width: 780px;
  margin-bottom: 18px;
}
.hero__subheading {
  font-size: 17px; color: rgba(242,237,227,0.85); max-width: 520px; margin-bottom: 32px;
}
.hero__buttons { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__scroll-cue {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  width: 1px; height: 40px; background: rgba(255,255,255,0.3); z-index: 1;
  display: none;
}
.hero__scroll-cue span {
  position: absolute; top: 0; left: -2px; width: 5px; height: 5px; border-radius: 50%;
  background: var(--color-gold); animation: scrollcue 2s infinite;
}
@keyframes scrollcue { 0% { top: 0; opacity: 1; } 100% { top: 36px; opacity: 0; } }

@media (min-width: 750px) {
  .hero { height: var(--hero-height-desktop, 720px); }
  .hero__scroll-cue { display: block; }
}

/* ---------- Section Heading ---------- */
.section { padding: 64px 0; }
.section-heading { text-align: center; max-width: 620px; margin: 0 auto 44px; }
.section-heading__eyebrow {
  display: block; font-size: 12px; font-weight: 700; letter-spacing: 0.2em;
  color: var(--color-gold); margin-bottom: 12px; text-transform: uppercase;
}
.section-heading__title { font-size: clamp(26px, 4vw, 40px); margin-bottom: 14px; }
.section-heading__subtitle { color: var(--color-text-muted); font-size: 15px; }
.section-cta { text-align: center; margin-top: 40px; }

/* ---------- Benefits Row ---------- */
.benefits-grid {
  display: grid; grid-template-columns: 1fr; gap: 28px;
}
.benefit-item { text-align: center; padding: 24px 16px; }
.benefit-item__icon {
  width: 56px; height: 56px; margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--color-gold); border-radius: 50%; color: var(--color-gold);
}
.benefit-item__title { font-size: 15px; margin-bottom: 8px; }
.benefit-item__text { font-size: 13px; color: var(--color-text-muted); }

@media (min-width: 600px) {
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .benefits-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ---------- Product Grid / Card ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (min-width: 700px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
}
@media (min-width: 1000px) {
  .product-grid--collection { grid-template-columns: repeat(4, 1fr); }
}

.product-card { position: relative; }
.product-card__image-wrap {
  position: relative; display: block; overflow: hidden;
  border-radius: var(--radius-md); background: var(--color-surface);
  aspect-ratio: 1 / 1.1;
}
.product-card__image {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: opacity 0.4s var(--ease), transform 0.5s var(--ease);
}
.product-card__image--hover { opacity: 0; }
.product-card__image-wrap:hover .product-card__image--main { opacity: 0; }
.product-card__image-wrap:hover .product-card__image--hover { opacity: 1; }
.product-card__image-wrap:hover .product-card__image { transform: scale(1.04); }
.product-card__placeholder { position: absolute; inset: 0; background: linear-gradient(160deg, #1e1e1e, #0e0e0e); }

.badge {
  position: absolute; top: 12px; left: 12px; z-index: 1;
  font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 5px 10px; border-radius: 20px; color: var(--color-black);
}
.badge--sale { background: var(--color-gold); }
.badge--new { background: var(--color-white); }

.product-card__info { padding-top: 14px; }
.product-card__rating { display: flex; align-items: center; gap: 2px; margin-bottom: 6px; }
.star { color: rgba(255,255,255,0.2); display: inline-flex; }
.star--filled { color: var(--color-gold); }
.product-card__rating-count { font-size: 11px; color: var(--color-text-muted); margin-left: 6px; }
.product-card__title {
  display: block; font-size: 14px; font-weight: 600; margin-bottom: 6px;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.product-card__price { font-size: 14px; }
.price { font-weight: 700; }
.price--sale { color: var(--color-gold); }
.price--compare { text-decoration: line-through; color: var(--color-text-muted); font-weight: 400; margin-left: 6px; font-size: 13px; }

/* ---------- Reviews ---------- */
.reviews-section { background: var(--color-bg); }
.reviews-summary { display: flex; flex-direction: column; align-items: center; gap: 8px; margin-top: 8px; }
.reviews-summary__stars { display: flex; gap: 3px; }
.reviews-summary__text { font-size: 13px; color: var(--color-text-muted); }
.reviews-grid {
  display: grid; grid-template-columns: 1fr; gap: 20px;
}
@media (min-width: 700px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }

.review-card {
  background: var(--color-surface); border: 1px solid var(--color-border);
  border-radius: var(--radius-md); padding: 28px 24px;
}
.review-card__stars { display: flex; gap: 3px; margin-bottom: 14px; }
.review-card__body { font-size: 14.5px; line-height: 1.7; color: var(--color-text); margin-bottom: 20px; font-style: italic; }
.review-card__author { display: flex; align-items: center; gap: 12px; }
.review-card__avatar { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.review-card__avatar--initial {
  display: flex; align-items: center; justify-content: center;
  background: var(--color-gold); color: var(--color-black); font-weight: 700;
}
.review-card__name { display: block; font-size: 13.5px; font-weight: 600; }
.review-card__verified { display: block; font-size: 11px; color: var(--color-gold); }

/* ---------- FAQ ---------- */
.faq-list { border-top: 1px solid var(--color-border); }
.faq-item, .product-accordion { border-bottom: 1px solid var(--color-border); }
.faq-item__question, .product-accordion__toggle {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  background: none; border: none; color: var(--color-text);
  padding: 20px 4px; font-size: 15px; font-weight: 600; text-align: left;
}
.faq-item__icon { color: var(--color-gold); transition: transform 0.3s var(--ease); flex-shrink: 0; margin-left: 12px; }
.faq-item__question[aria-expanded="true"] .faq-item__icon,
.product-accordion__toggle[aria-expanded="true"] .faq-item__icon { transform: rotate(180deg); }
.faq-item__answer {
  max-height: 0; overflow: hidden; transition: max-height 0.3s var(--ease);
}
.faq-item__answer-inner { padding: 0 4px 20px; color: var(--color-text-muted); font-size: 14px; line-height: 1.7; }
.faq-section__contact { text-align: center; margin-top: 32px; color: var(--color-text-muted); font-size: 14px; }
.faq-section__contact a { color: var(--color-gold); text-decoration: underline; margin-left: 6px; }

/* ---------- Newsletter ---------- */
.newsletter-section { background: var(--color-surface); }
.newsletter-section__inner { text-align: center; }
.newsletter-field { display: flex; max-width: 420px; margin: 24px auto 0; border: 1px solid var(--color-border); border-radius: var(--radius-sm); overflow: hidden; }
.newsletter-field input { flex: 1; background: transparent; border: none; padding: 14px 16px; color: var(--color-text); font-size: 14px; }
.newsletter-field input:focus { outline: none; }
.newsletter-field button {
  background: var(--color-gold); color: var(--color-black); border: none; padding: 0 22px; font-weight: 700;
}
.form-success { color: var(--color-gold); font-size: 14px; margin-top: 16px; }

/* ---------- Product Page ---------- */
.product-layout {
  display: grid; grid-template-columns: 1fr; gap: 40px; padding-top: 32px; padding-bottom: 100px;
}
@media (min-width: 900px) {
  .product-layout { grid-template-columns: 1.1fr 1fr; gap: 60px; }
}
.product-gallery__main {
  border-radius: var(--radius-md); overflow: hidden; background: var(--color-surface); aspect-ratio: 1/1;
}
.product-gallery__main img { width: 100%; height: 100%; object-fit: cover; }
.product-gallery__placeholder { width: 100%; height: 100%; background: linear-gradient(160deg,#1e1e1e,#0e0e0e); }
.product-gallery__thumbs { display: flex; gap: 10px; margin-top: 12px; overflow-x: auto; }
.product-gallery__thumb {
  flex-shrink: 0; width: 68px; height: 68px; border-radius: var(--radius-sm); overflow: hidden;
  border: 1px solid var(--color-border); background: none; padding: 0; opacity: 0.6;
}
.product-gallery__thumb.is-active { border-color: var(--color-gold); opacity: 1; }
.product-gallery__thumb img { width: 100%; height: 100%; object-fit: cover; }

.product-info__rating { display: flex; align-items: center; gap: 4px; margin-bottom: 14px; }
.product-info__rating-count { font-size: 12px; color: var(--color-text-muted); margin-left: 8px; text-decoration: underline; }
.product-info__title { font-size: clamp(26px, 4vw, 36px); margin-bottom: 14px; }
.product-info__price { font-size: 22px; margin-bottom: 22px; }
.product-info__description { color: var(--color-text-muted); font-size: 14.5px; margin-bottom: 28px; }

.product-option { margin-bottom: 22px; }
.product-option__label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.05em; }
.product-option__values { display: flex; flex-wrap: wrap; gap: 8px; }
.option-swatch {
  padding: 10px 18px; border: 1px solid var(--color-border); background: transparent; color: var(--color-text);
  border-radius: var(--radius-sm); font-size: 13px; transition: all 0.2s;
}
.option-swatch:hover { border-color: var(--color-gold); }
.option-swatch.is-selected { border-color: var(--color-gold); background: rgba(212,175,106,0.1); color: var(--color-gold); }

.product-quantity { margin-bottom: 22px; }
.product-quantity__label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.05em; }
.quantity-selector {
  display: inline-flex; align-items: center; border: 1px solid var(--color-border); border-radius: var(--radius-sm); overflow: hidden;
}
.qty-btn { background: none; border: none; color: var(--color-text); width: 40px; height: 44px; display: flex; align-items: center; justify-content: center; }
.qty-btn:hover { color: var(--color-gold); }
.quantity-selector input {
  width: 48px; text-align: center; background: none; border: none; border-left: 1px solid var(--color-border); border-right: 1px solid var(--color-border);
  color: var(--color-text); height: 44px; -moz-appearance: textfield;
}
.quantity-selector input::-webkit-outer-spin-button, .quantity-selector input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.atc-button { margin-top: 6px; }

.product-info__trust {
  display: flex; flex-wrap: wrap; gap: 18px; margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--color-border);
}
.trust-item { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--color-text-muted); }
.trust-item svg { color: var(--color-gold); }

.product-accordion { margin-top: 8px; }

/* ---------- Sticky Add To Cart ---------- */
.sticky-atc {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 400;
  background: rgba(11,11,11,0.97); backdrop-filter: blur(10px);
  border-top: 1px solid var(--color-border);
  transform: translateY(100%); transition: transform 0.3s var(--ease);
  padding: 12px 0;
}
.sticky-atc.is-visible { transform: translateY(0); }
.sticky-atc__inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; height: 54px; }
.sticky-atc__product { display: flex; align-items: center; gap: 12px; min-width: 0; }
.sticky-atc__product img { width: 44px; height: 44px; object-fit: cover; border-radius: var(--radius-sm); flex-shrink: 0; }
.sticky-atc__info { display: flex; flex-direction: column; min-width: 0; }
.sticky-atc__title { font-size: 13px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 160px; }
.sticky-atc__price { font-size: 13px; color: var(--color-gold); }
.sticky-atc__button { flex-shrink: 0; padding: 12px 24px; font-size: 12px; }

@media (min-width: 700px) {
  .sticky-atc__title { max-width: 320px; }
}

/* ---------- Cart Drawer ---------- */
.cart-drawer {
  position: fixed; top: 0; right: -100%; width: 92%; max-width: 420px; height: 100%;
  background: var(--color-surface); z-index: 1100; display: flex; flex-direction: column;
  transition: right 0.32s var(--ease); border-left: 1px solid var(--color-border);
}
.cart-drawer.is-open { right: 0; }
.cart-drawer__header { display: flex; align-items: center; justify-content: space-between; padding: 20px; border-bottom: 1px solid var(--color-border); }
.cart-drawer__close { background: none; border: none; color: var(--color-text); font-size: 26px; }
.cart-drawer__body { flex: 1; overflow-y: auto; padding: 10px 20px; }
.cart-drawer__empty { text-align: center; padding: 60px 0; display: flex; flex-direction: column; gap: 16px; align-items: center; }
.cart-drawer__item { display: flex; gap: 12px; padding: 16px 0; border-bottom: 1px solid var(--color-border); position: relative; }
.cart-drawer__item-image img { width: 72px; height: 72px; object-fit: cover; border-radius: var(--radius-sm); }
.cart-drawer__item-info { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.cart-drawer__item-title { font-size: 13.5px; font-weight: 600; }
.cart-drawer__item-variant { font-size: 12px; color: var(--color-text-muted); }
.cart-drawer__item-price { font-size: 13px; color: var(--color-gold); }
.cart-drawer__qty { display: inline-flex; align-items: center; border: 1px solid var(--color-border); border-radius: var(--radius-sm); width: fit-content; margin-top: 4px; }
.cart-drawer__qty .qty-btn { width: 28px; height: 28px; }
.cart-drawer__qty span { padding: 0 10px; font-size: 12px; }
.cart-drawer__item-remove { position: absolute; top: 16px; right: 0; background: none; border: none; color: var(--color-text-muted); font-size: 18px; }
.cart-drawer__footer { padding: 20px; border-top: 1px solid var(--color-border); display: flex; flex-direction: column; gap: 10px; }
.cart-drawer__subtotal { display: flex; justify-content: space-between; font-size: 15px; font-weight: 700; }
.cart-drawer__note { font-size: 12px; color: var(--color-text-muted); margin-bottom: 6px; }

.cart-drawer-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 1050;
  opacity: 0; visibility: hidden; transition: opacity 0.3s var(--ease);
}
.cart-drawer-overlay.is-open { opacity: 1; visibility: visible; }

.cart-notification {
  position: fixed; top: 90px; right: 20px; z-index: 1200;
  background: var(--color-gold); color: var(--color-black); font-weight: 700; font-size: 13px;
  padding: 14px 22px; border-radius: var(--radius-sm);
  transform: translateX(140%); transition: transform 0.35s var(--ease);
}
.cart-notification.is-visible { transform: translateX(0); }

/* ---------- Cart Page ---------- */
.cart-section__title { font-size: 30px; margin-bottom: 32px; }
.cart-empty { text-align: center; padding: 80px 0; display: flex; flex-direction: column; gap: 20px; align-items: center; }
.cart-table { width: 100%; border-collapse: collapse; margin-bottom: 32px; }
.cart-table th { text-align: left; font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--color-text-muted); padding-bottom: 12px; border-bottom: 1px solid var(--color-border); }
.cart-table td { padding: 18px 10px 18px 0; border-bottom: 1px solid var(--color-border); font-size: 14px; vertical-align: middle; }
.cart-table__product { display: flex; gap: 14px; align-items: center; }
.cart-table__product img { width: 64px; height: 64px; object-fit: cover; border-radius: var(--radius-sm); }
.cart-table__title { font-weight: 600; display: block; }
.cart-table__variant { font-size: 12px; color: var(--color-text-muted); }
.cart-table__remove { background: none; border: none; color: var(--color-text-muted); font-size: 20px; }
.cart-summary { max-width: 340px; margin-left: auto; display: flex; flex-direction: column; gap: 12px; }
.cart-summary__row--total { display: flex; justify-content: space-between; font-size: 18px; font-weight: 700; }
.cart-summary__note { font-size: 12px; color: var(--color-text-muted); }

@media (max-width: 700px) {
  .cart-table thead { display: none; }
  .cart-table, .cart-table tbody, .cart-table tr, .cart-table td { display: block; width: 100%; }
  .cart-table tr { padding: 16px 0; border-bottom: 1px solid var(--color-border); }
  .cart-table td { border: none; padding: 6px 0; }
}

/* ---------- Collection Page ---------- */
.collection-header { text-align: center; padding: 20px 0 30px; }
.collection-header__title { font-size: clamp(26px, 4vw, 38px); margin-bottom: 12px; }
.collection-header__desc { color: var(--color-text-muted); max-width: 600px; margin: 0 auto; }
.collection-toolbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; font-size: 13px; color: var(--color-text-muted); }
.collection-toolbar__sort { background: var(--color-surface); color: var(--color-text); border: 1px solid var(--color-border); padding: 8px 12px; border-radius: var(--radius-sm); }
.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 40px; grid-column: 1/-1; }
.pagination a, .pagination span { padding: 8px 14px; border: 1px solid var(--color-border); border-radius: var(--radius-sm); font-size: 13px; }
.pagination .current { border-color: var(--color-gold); color: var(--color-gold); }

.collection-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }
.collection-grid__item { position: relative; border-radius: var(--radius-md); overflow: hidden; aspect-ratio: 4/3; }
.collection-grid__item img { width: 100%; height: 100%; object-fit: cover; }
.collection-grid__item span {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.4); color: #fff; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; font-size: 14px;
}
@media (min-width: 700px) { .collection-grid { grid-template-columns: repeat(3,1fr); } }

/* ---------- Blog ---------- */
.blog-grid { display: grid; grid-template-columns: 1fr; gap: 28px; }
@media (min-width: 700px) { .blog-grid { grid-template-columns: repeat(3,1fr); } }
.blog-card img { border-radius: var(--radius-md); margin-bottom: 14px; aspect-ratio: 4/3; object-fit: cover; }
.blog-card h3 { font-size: 17px; margin-bottom: 6px; }
.blog-card__date { font-size: 12px; color: var(--color-text-muted); }

/* ---------- Search ---------- */
.search-form { display: flex; gap: 10px; max-width: 480px; margin-bottom: 30px; }
.search-form input { flex: 1; background: var(--color-surface); border: 1px solid var(--color-border); padding: 12px 16px; color: var(--color-text); border-radius: var(--radius-sm); }
.search-form button { background: var(--color-gold); border: none; border-radius: var(--radius-sm); padding: 0 16px; color: var(--color-black); }
.search-results-count { color: var(--color-text-muted); font-size: 13px; margin-bottom: 20px; }

/* ---------- Page / Footer ---------- */
.page-section__title { font-size: 32px; margin-bottom: 24px; }

.site-footer { background: var(--color-surface); border-top: 1px solid var(--color-border); padding: 56px 0 0; margin-top: 40px; }
.site-footer__grid { display: grid; grid-template-columns: 1fr; gap: 40px; padding-bottom: 40px; }
.site-footer__tagline { color: var(--color-text-muted); font-size: 13.5px; margin: 14px 0 18px; max-width: 260px; }
.site-footer__social { display: flex; gap: 14px; }
.site-footer__social a { width: 34px; height: 34px; border: 1px solid var(--color-border); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.site-footer__social a:hover { border-color: var(--color-gold); color: var(--color-gold); }
.site-footer__links { display: flex; flex-direction: column; gap: 10px; }
.site-footer__links h4, .site-footer__newsletter h4 { font-size: 14px; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 6px; }
.site-footer__links a { font-size: 13.5px; color: var(--color-text-muted); }
.site-footer__links a:hover { color: var(--color-gold); }
.site-footer__newsletter p { color: var(--color-text-muted); font-size: 13.5px; margin: 6px 0 4px; }
.site-footer__bottom {
  display: flex; flex-direction: column; gap: 8px; align-items: center; justify-content: space-between;
  padding: 20px 0; border-top: 1px solid var(--color-border); font-size: 12px; color: var(--color-text-muted);
}
@media (min-width: 700px) {
  .site-footer__grid { grid-template-columns: 1.4fr 1fr 1.2fr; }
  .site-footer__bottom { flex-direction: row; }
}

/* ---------- Password Page ---------- */
.password-page {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  background: radial-gradient(circle at top, #1a1a1a, #0b0b0b);
}
.password-page__inner { text-align: center; max-width: 420px; padding: 40px 20px; }
.password-page__inner h1 { font-size: 26px; color: var(--color-white); margin: 24px 0 10px; }
.password-page__inner p { color: var(--color-text-muted); margin-bottom: 24px; }
.password-page__social { display: block; margin-top: 24px; color: var(--color-gold); text-decoration: underline; }

/* ---------- Utility / Responsive header nav swap ---------- */
@media (min-width: 1000px) {
  .site-nav { display: block; }
  .mobile-nav-toggle { display: none; }
}
@media (min-width: 1000px) {
  .section { padding: 96px 0; }
}

/* Body lock when drawer/nav open */
body.no-scroll { overflow: hidden; }
