/* Milan Hype — Premium Fashion Store */

:root {
  --black: #0a0a0a;
  --white: #fafafa;
  --gold: #c9a96e;
  --gray: #6b6b6b;
  --border: #e8e8e8;
  --bg-soft: #f5f5f5;
  --wood: #d4b896;
  --wood-dark: #b8956f;
  --font-heading: 'DM Sans', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --max: 1280px;
  --header-h: 64px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--black);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
.container { width: min(100% - 2rem, var(--max)); margin-inline: auto; }

.announcement {
  background: var(--black);
  color: var(--white);
  text-align: center;
  padding: 0.65rem 1rem;
  font-size: 0.8rem;
  letter-spacing: 0.03em;
}
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  height: var(--header-h);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%; gap: 1rem;
}
.logo {
  font-family: var(--font-heading);
  font-size: 1.15rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
}
.nav-desktop { display: none; gap: 1.75rem; font-size: 0.85rem; letter-spacing: 0.06em; text-transform: uppercase; }
.nav-desktop a:hover { opacity: 0.6; }
.header-actions { display: flex; align-items: center; gap: 1rem; }
.icon-btn { font-size: 0.8rem; letter-spacing: 0.05em; text-transform: uppercase; }
.menu-toggle { font-size: 1.25rem; }
.nav-mobile {
  display: none; position: fixed; inset: var(--header-h) 0 0 0;
  background: var(--white); padding: 2rem; flex-direction: column;
  gap: 1.25rem; font-size: 1.1rem; letter-spacing: 0.08em;
  text-transform: uppercase; z-index: 99; border-top: 1px solid var(--border);
}
.nav-mobile.open { display: flex; }
@media (min-width: 900px) {
  .nav-desktop { display: flex; }
  .menu-toggle { display: none; }
}

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.9rem 1.75rem; font-size: 0.8rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  transition: opacity 0.2s;
}
.btn:hover { opacity: 0.85; }
.btn-primary { background: var(--black); color: var(--white); }
.btn-outline { border: 1px solid var(--black); color: var(--black); }
.btn-gold { background: var(--gold); color: var(--black); }
.btn-block { width: 100%; }

.hero {
  position: relative; min-height: 70vh; display: flex; align-items: center;
  background: linear-gradient(135deg, #1a1a1a, #2d2418, #1a1a1a);
  color: var(--white); overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(10,10,10,0.5), rgba(10,10,10,0.85)),
    url('../images/hero-bg.svg') center/cover no-repeat;
}
.hero-content { position: relative; z-index: 1; padding: 4rem 0; max-width: 560px; }
.hero-eyebrow { font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.hero h1 { font-family: var(--font-heading); font-size: clamp(2.5rem, 8vw, 4rem); font-weight: 500; line-height: 1.05; margin-bottom: 1.25rem; }
.hero p { font-size: 1.05rem; opacity: 0.85; margin-bottom: 2rem; max-width: 420px; }
.hero-btns { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.hero-btns .btn-outline { border-color: var(--white); color: var(--white); }

.section { padding: 4rem 0; }
.section-header { text-align: center; margin-bottom: 2.5rem; }
.section-header h2 { font-family: var(--font-heading); font-size: clamp(1.5rem, 4vw, 2rem); font-weight: 500; margin-bottom: 0.5rem; }
.section-header p { color: var(--gray); font-size: 0.95rem; }

.collection-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
@media (min-width: 768px) { .collection-grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; } }
.collection-tile { position: relative; aspect-ratio: 3/4; overflow: hidden; background: var(--bg-soft); }
.collection-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.collection-tile:hover img { transform: scale(1.04); }
.collection-tile-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65), transparent 55%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.25rem; color: var(--white);
}
.collection-tile-overlay h3 { font-family: var(--font-heading); font-size: 1.25rem; font-weight: 500; margin-bottom: 0.35rem; }
.collection-tile-overlay span { font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.85; }

.product-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem 0.75rem; }
@media (min-width: 768px) { .product-grid { grid-template-columns: repeat(4, 1fr); gap: 2rem 1rem; } }
.product-image-wrap {
  position: relative; aspect-ratio: 1;
  background: #ffffff;
  border: 1px solid var(--border);
  overflow: hidden; margin-bottom: 0.85rem;
}
.product-image-wrap img { width: 100%; height: 100%; object-fit: cover; }
.product-badge {
  position: absolute; top: 0.65rem; left: 0.65rem;
  background: var(--black); color: var(--white);
  font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.3rem 0.55rem;
}
.product-badge.sale { background: var(--gold); color: var(--black); }
.product-title { font-size: 0.85rem; line-height: 1.35; margin-bottom: 0.35rem; }
.product-price { font-size: 0.9rem; font-weight: 500; }
.product-price .compare { color: var(--gray); text-decoration: line-through; margin-left: 0.4rem; font-weight: 400; }

.trust-bar { background: var(--bg-soft); padding: 2.5rem 0; }
.trust-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
@media (min-width: 768px) { .trust-grid { grid-template-columns: repeat(4, 1fr); } }
.trust-item { text-align: center; }
.trust-icon { font-size: 1.5rem; margin-bottom: 0.5rem; }
.trust-item h4 { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 0.25rem; }
.trust-item p { font-size: 0.8rem; color: var(--gray); }

.split-section { display: grid; gap: 2rem; align-items: center; }
@media (min-width: 768px) { .split-section { grid-template-columns: 1fr 1fr; gap: 4rem; } }
.split-image { aspect-ratio: 4/5; background: var(--bg-soft); overflow: hidden; }
.split-image img { width: 100%; height: 100%; object-fit: cover; }
.split-content .eyebrow { font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.75rem; }
.split-content h2 { font-family: var(--font-heading); font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 500; margin-bottom: 1rem; }
.split-content p { color: var(--gray); margin-bottom: 1.5rem; }

.testimonial-grid { display: grid; gap: 1rem; }
@media (min-width: 768px) { .testimonial-grid { grid-template-columns: repeat(3, 1fr); } }
.testimonial-card { border: 1px solid var(--border); padding: 1.5rem; }
.testimonial-stars { color: var(--gold); margin-bottom: 0.75rem; }
.testimonial-card p { font-size: 0.9rem; line-height: 1.55; margin-bottom: 1rem; font-style: italic; }
.testimonial-author { font-size: 0.8rem; font-weight: 500; }

.faq-list { max-width: 720px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%; text-align: left; padding: 1.1rem 0;
  font-size: 0.95rem; font-weight: 500;
  display: flex; justify-content: space-between; align-items: center;
}
.faq-question::after { content: '+'; font-size: 1.25rem; font-weight: 300; }
.faq-item.open .faq-question::after { content: '−'; }
.faq-answer { display: none; padding-bottom: 1.1rem; color: var(--gray); font-size: 0.9rem; }
.faq-item.open .faq-answer { display: block; }

.newsletter { background: var(--black); color: var(--white); text-align: center; padding: 4rem 1rem; }
.newsletter h2 { font-family: var(--font-heading); font-size: 1.75rem; font-weight: 500; margin-bottom: 0.5rem; }
.newsletter p { opacity: 0.75; margin-bottom: 1.5rem; }
.newsletter-form { display: flex; flex-direction: column; gap: 0.5rem; max-width: 420px; margin-inline: auto; }
@media (min-width: 500px) { .newsletter-form { flex-direction: row; } }
.newsletter-form input { flex: 1; padding: 0.9rem 1rem; border: none; font-size: 1rem; font-family: inherit; }
.newsletter small { display: block; margin-top: 0.75rem; opacity: 0.5; font-size: 0.75rem; }

.insta-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.35rem; }
@media (min-width: 768px) { .insta-grid { grid-template-columns: repeat(6, 1fr); gap: 0.5rem; } }
.insta-item { aspect-ratio: 1; background: var(--bg-soft); overflow: hidden; }
.insta-item img { width: 100%; height: 100%; object-fit: cover; }
.insta-cta { text-align: center; margin-top: 1.5rem; }

.site-footer { background: var(--black); color: var(--white); padding: 3.5rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; margin-bottom: 2.5rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr repeat(3, 1fr); } }
.footer-brand p { font-size: 0.85rem; opacity: 0.65; max-width: 260px; margin-top: 0.75rem; }
.footer-col h4 { font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 1rem; opacity: 0.5; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.5rem; }
.footer-col a { font-size: 0.85rem; opacity: 0.8; }
.footer-col a:hover { opacity: 1; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.5rem; font-size: 0.75rem; opacity: 0.5; text-align: center; }

.page-hero { padding: 3rem 0 2rem; text-align: center; border-bottom: 1px solid var(--border); }
.page-hero h1 { font-family: var(--font-heading); font-size: clamp(1.75rem, 5vw, 2.5rem); font-weight: 500; margin-bottom: 0.5rem; }
.page-hero p { color: var(--gray); max-width: 520px; margin-inline: auto; }

.product-page { padding: 2rem 0 4rem; }
.product-layout { display: grid; gap: 2rem; }
@media (min-width: 900px) { .product-layout { grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; } }
.product-main-image { aspect-ratio: 1; background: #ffffff; border: 1px solid var(--border); overflow: hidden; margin-bottom: 0.75rem; }
.product-main-image img { width: 100%; height: 100%; object-fit: cover; }
.product-thumbs { display: flex; gap: 0.5rem; overflow-x: auto; }
.product-thumb { width: 72px; height: 72px; flex-shrink: 0; border: 2px solid transparent; overflow: hidden; background: #ffffff; }
.product-thumb.active { border-color: var(--black); }
.product-thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-info h1 { font-family: var(--font-heading); font-size: clamp(1.35rem, 3vw, 1.75rem); font-weight: 500; line-height: 1.25; margin-bottom: 0.75rem; }
.product-info .short-desc { color: var(--gray); font-size: 0.95rem; margin-bottom: 1rem; }
.price-row { font-size: 1.25rem; font-weight: 500; margin-bottom: 0.5rem; }
.price-row .compare { color: var(--gray); text-decoration: line-through; margin-left: 0.4rem; font-weight: 400; }
.product-rating { font-size: 0.85rem; color: var(--gray); margin-bottom: 1.25rem; }
.product-rating span { color: var(--gold); }
.fit-note { font-size: 0.85rem; padding: 0.75rem 1rem; background: var(--bg-soft); margin-bottom: 1.25rem; }
.size-label { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.5rem; display: block; }
.size-grid { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 1.25rem; }
.size-btn { min-width: 44px; height: 44px; border: 1px solid var(--border); font-size: 0.85rem; }
.size-btn:hover, .size-btn.selected { background: var(--black); color: var(--white); border-color: var(--black); }
.trust-micro { text-align: center; font-size: 0.75rem; color: var(--gray); margin-top: 0.75rem; }
.product-tabs { margin-top: 2.5rem; border-top: 1px solid var(--border); padding-top: 2rem; }
.product-tabs h3 { font-family: var(--font-heading); font-size: 1rem; font-weight: 500; margin: 1.5rem 0 0.75rem; }
.product-tabs h3:first-child { margin-top: 0; }
.product-tabs ul { list-style: none; margin-bottom: 1rem; }
.product-tabs li { padding: 0.35rem 0 0.35rem 1rem; position: relative; font-size: 0.9rem; color: var(--gray); }
.product-tabs li::before { content: '—'; position: absolute; left: 0; color: var(--gold); }
.spec-table { width: 100%; font-size: 0.9rem; margin-bottom: 1rem; }
.spec-table td { padding: 0.4rem 0; border-bottom: 1px solid var(--border); vertical-align: top; }
.spec-table td:first-child { font-weight: 500; width: 40%; }

.content-page { padding: 2rem 0 4rem; }
.content-prose { max-width: 720px; margin-inline: auto; }
.content-prose h2 { font-family: var(--font-heading); font-size: 1.25rem; font-weight: 500; margin: 2rem 0 0.75rem; }
.content-prose h2:first-child { margin-top: 0; }
.content-prose p, .content-prose li { color: var(--gray); font-size: 0.95rem; margin-bottom: 0.75rem; }
.content-prose ul, .content-prose ol { padding-left: 1.25rem; margin-bottom: 1rem; }
.content-prose table { width: 100%; border-collapse: collapse; margin: 1rem 0; font-size: 0.9rem; }
.content-prose th, .content-prose td { border: 1px solid var(--border); padding: 0.6rem 0.75rem; text-align: left; }
.values-grid { display: grid; gap: 1.5rem; margin: 2rem 0; }
@media (min-width: 600px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
.value-card { border: 1px solid var(--border); padding: 1.5rem; }
.value-card h3 { font-family: var(--font-heading); font-size: 1rem; margin-bottom: 0.5rem; }
.value-card p { font-size: 0.9rem; color: var(--gray); margin: 0; }

.contact-form { max-width: 520px; margin: 2rem auto 0; }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 0.35rem; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 0.85rem 1rem; border: 1px solid var(--border);
  font-family: inherit; font-size: 1rem; background: var(--white);
}
.form-group textarea { min-height: 140px; resize: vertical; }

.cart-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.4); z-index: 200; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
.cart-overlay.open { opacity: 1; pointer-events: auto; }
.cart-drawer {
  position: fixed; top: 0; right: 0; width: min(100%, 400px); height: 100%;
  background: var(--white); z-index: 201; transform: translateX(100%);
  transition: transform 0.3s; display: flex; flex-direction: column; padding: 1.5rem;
}
.cart-drawer.open { transform: translateX(0); }
.cart-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; padding-bottom: 1rem; border-bottom: 1px solid var(--border); }
.cart-items { flex: 1; overflow-y: auto; }
.cart-item { display: flex; gap: 0.75rem; margin-bottom: 1rem; padding-bottom: 1rem; border-bottom: 1px solid var(--border); }
.cart-item-img { width: 72px; height: 72px; background: var(--bg-soft); flex-shrink: 0; }
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-empty { text-align: center; color: var(--gray); padding: 2rem 0; }
.cart-footer { border-top: 1px solid var(--border); padding-top: 1rem; }
.cart-total { display: flex; justify-content: space-between; font-weight: 500; margin-bottom: 1rem; }
.shipping-note { font-size: 0.8rem; color: var(--gray); text-align: center; margin-top: 0.75rem; }

.sticky-atc {
  display: none; position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--white); border-top: 1px solid var(--border);
  padding: 0.75rem 1rem; z-index: 50; gap: 0.75rem; align-items: center;
}
@media (max-width: 899px) { .sticky-atc.visible { display: flex; } }
.sticky-atc-info { flex: 1; min-width: 0; }
.sticky-atc-info h4 { font-size: 0.8rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sticky-atc .btn { padding: 0.75rem 1.25rem; flex-shrink: 0; }

.toast {
  position: fixed; bottom: 1.5rem; left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--black); color: var(--white);
  padding: 0.85rem 1.5rem; font-size: 0.85rem; z-index: 300;
  transition: transform 0.3s;
}
.toast.show { transform: translateX(-50%) translateY(0); }
.related-section { padding: 3rem 0; border-top: 1px solid var(--border); }
.missing-photos-note { background: #fff8e6; border: 1px solid var(--gold); padding: 1rem 1.25rem; font-size: 0.85rem; margin-top: 1.5rem; }
.missing-photos-note ul { margin: 0.5rem 0 0 1.25rem; }
.missing-photos-note code { font-size: 0.8rem; background: rgba(0,0,0,0.05); padding: 0.1rem 0.3rem; }

/* Social */
.social-bar { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.social-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.3);
  font-size: 0.65rem; font-weight: 600; letter-spacing: 0.05em;
}
.social-icon:hover { background: rgba(255,255,255,0.1); }
.social-icon-share { width: auto; padding: 0 0.75rem; background: var(--gold); color: var(--black); border-color: var(--gold); }

.product-share-section {
  margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid var(--border);
}
.share-label {
  font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 0.75rem; font-weight: 500;
}
.share-btns { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.share-btns-large { gap: 0.6rem; }
.share-btn {
  padding: 0.5rem 0.85rem; font-size: 0.7rem; letter-spacing: 0.06em;
  text-transform: uppercase; border: 1px solid var(--border); background: var(--white);
  transition: all 0.15s;
}
.share-btn:hover { background: var(--black); color: var(--white); border-color: var(--black); }
.share-btn-lg { padding: 0.75rem 1.1rem; font-size: 0.75rem; }
.admin-link { margin-top: 1rem; font-size: 0.8rem; }
.admin-link a { color: var(--gray); text-decoration: underline; }

/* Admin upload */
.admin-tip {
  background: var(--bg-soft); padding: 1.25rem; margin-bottom: 2rem;
  font-size: 0.9rem; line-height: 1.6;
}
.admin-tip code { background: var(--white); padding: 0.15rem 0.4rem; font-size: 0.85rem; }
.admin-grid { display: flex; flex-direction: column; gap: 2.5rem; }
.admin-product-card { border: 1px solid var(--border); padding: 1.5rem; }
.admin-product-card h3 { font-family: var(--font-heading); font-size: 1.1rem; margin-bottom: 0.35rem; }
.admin-product-price { font-size: 0.85rem; color: var(--gray); margin-bottom: 1.25rem; }
.admin-slots { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1rem; }
.admin-slot {
  border: 2px dashed var(--border); padding: 1rem; text-align: center;
  transition: border-color 0.2s, background 0.2s;
}
.admin-slot.dragover { border-color: var(--gold); background: #fff8e6; }
.admin-slot-preview {
  aspect-ratio: 1; background: linear-gradient(160deg, var(--wood), var(--wood-dark));
  margin-bottom: 0.75rem; overflow: hidden;
}
.admin-slot-preview img { width: 100%; height: 100%; object-fit: cover; }
.admin-slot-label { font-size: 0.8rem; font-weight: 500; margin-bottom: 0.25rem; }
.admin-slot-file { font-size: 0.7rem; color: var(--gray); margin-bottom: 0.75rem; word-break: break-all; }
.admin-upload-btn {
  display: inline-block; padding: 0.6rem 1rem; background: var(--black);
  color: var(--white); font-size: 0.7rem; letter-spacing: 0.08em;
  text-transform: uppercase; cursor: pointer;
}
.admin-upload-btn:hover { opacity: 0.85; }
.admin-status { display: block; margin-top: 0.5rem; font-size: 0.75rem; }

/* Share page */
.share-select { margin-bottom: 1.5rem; }
.share-select-input {
  width: 100%; padding: 0.85rem 1rem; border: 1px solid var(--border);
  font-family: inherit; font-size: 1rem;
}
.share-preview-card {
  display: grid; gap: 1.5rem; border: 1px solid var(--border); padding: 1.5rem;
}
@media (min-width: 600px) {
  .share-preview-card { grid-template-columns: 200px 1fr; }
}
.share-preview-img-wrap {
  aspect-ratio: 1; background: var(--bg-soft); overflow: hidden;
}
.share-preview-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.share-preview-body h2 { font-family: var(--font-heading); font-size: 1.1rem; margin-bottom: 0.35rem; }
.share-caption-box {
  background: var(--bg-soft); padding: 1rem; font-size: 0.8rem; line-height: 1.5;
  white-space: pre-wrap; word-break: break-word; margin-top: 1rem;
  font-family: inherit; border: none; width: 100%;
}
.share-auto-note {
  margin-top: 3rem; padding: 1.5rem; background: var(--bg-soft);
  font-size: 0.9rem; line-height: 1.6;
}
.share-auto-note h3 { font-family: var(--font-heading); font-size: 1rem; margin-bottom: 0.75rem; }
.share-auto-note ol { padding-left: 1.25rem; }
.share-auto-note li { margin-bottom: 0.5rem; color: var(--gray); }
.share-auto-note a { text-decoration: underline; }

/* ═══ Milan Hype CoreFit — Luxury ═══ */
:root {
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --charcoal: #141414;
  --champagne: #c9a96e;
  --champagne-light: #e8d5b0;
  --ink: #1a1a1a;
}

body { font-family: 'Inter', var(--font-body); }
.logo { font-family: var(--font-display); font-size: 1.2rem; letter-spacing: 0.18em; }

.site-header--lux { background: rgba(250,250,250,0.92); backdrop-filter: blur(12px); }
.announcement { background: var(--ink); font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; }

.hero--lux { min-height: 88vh; background: var(--charcoal); }
.hero-bg--lux {
  background: linear-gradient(135deg, rgba(10,10,10,0.7) 0%, rgba(20,20,20,0.85) 50%, rgba(45,36,24,0.75) 100%),
    radial-gradient(ellipse at 70% 30%, rgba(201,169,110,0.15), transparent 55%),
    url('../images/hero-bg.svg') center/cover no-repeat;
}
.hero-content--lux { max-width: 680px; padding: 5rem 0; }
.hero-content--lux h1 {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 9vw, 4.5rem);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.02em;
}
.hero-content--lux h1 em { font-style: italic; color: var(--champagne-light); }
.hero-lead { font-size: 1.1rem; line-height: 1.7; opacity: 0.88; max-width: 520px; }
.btn-outline--light { border-color: rgba(255,255,255,0.6); color: var(--white); }
.btn-lg { padding: 1.1rem 2.25rem; font-size: 0.85rem; }

.hero-stats {
  display: flex; gap: 2.5rem; margin-top: 3rem; padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.hero-stats strong { display: block; font-family: var(--font-display); font-size: 1.75rem; font-weight: 500; color: var(--champagne); }
.hero-stats span { font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.6; }

.press-bar { background: var(--ink); color: var(--white); padding: 1.25rem 0; border-bottom: 1px solid rgba(201,169,110,0.2); }
.press-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 1.5rem; text-align: center; }
.press-inner > span { font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; opacity: 0.5; }
.press-tags { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; }
.press-tags span {
  font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 0.35rem 0.85rem; border: 1px solid rgba(201,169,110,0.35); color: var(--champagne-light);
}

.section--lux { padding: 5rem 0; }
.section--dark { background: var(--charcoal); color: var(--white); padding: 5rem 0; }
.section--soft { background: var(--bg-soft); }
.section-header--lux .eyebrow,
.eyebrow { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--champagne); margin-bottom: 0.75rem; }
.section-header--lux h2 { font-family: var(--font-display); font-size: clamp(1.75rem, 4vw, 2.75rem); font-weight: 500; }
.section--dark .section-header--lux h2,
.section--dark h2 { color: var(--white); }
.section--dark p { color: rgba(255,255,255,0.7); }

.tier-grid { display: grid; gap: 1.25rem; }
@media (min-width: 768px) { .tier-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; } }
@media (min-width: 1100px) { .tier-grid { grid-template-columns: repeat(4, 1fr); } }

.tier-card {
  border: 1px solid var(--border);
  background: var(--white);
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex; flex-direction: column; height: 100%;
}
.tier-card-link { display: flex; flex-direction: column; flex: 1; color: inherit; height: 100%; }
.tier-card:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(0,0,0,0.08); }
.tier-card--featured { border-color: var(--champagne); box-shadow: 0 0 0 1px var(--champagne); }
.tier-card-image { aspect-ratio: 4/5; background: #f8f7f5; overflow: hidden; position: relative; }
.tier-card-image img { width: 100%; height: 100%; object-fit: cover; }
.tier-card-badge {
  position: absolute; top: 1rem; left: 1rem;
  background: var(--champagne); color: var(--ink);
  font-size: 0.6rem; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.35rem 0.65rem; font-weight: 600;
}
.tier-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.tier-card-tier { font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gray); margin-bottom: 0.35rem; }
.tier-card-body h3 { font-family: var(--font-display); font-size: 1.35rem; font-weight: 500; margin-bottom: 0.5rem; }
.tier-card-fabric { font-size: 0.8rem; color: var(--champagne); margin-bottom: 0.75rem; font-style: italic; }
.tier-card-desc { font-size: 0.85rem; color: var(--gray); line-height: 1.55; margin-bottom: 1.25rem; flex: 1; }
.tier-card-price { font-size: 1.35rem; font-weight: 600; margin-bottom: 1rem; }
.tier-card-price .compare { font-size: 0.9rem; color: var(--gray); text-decoration: line-through; font-weight: 400; margin-left: 0.5rem; }
.tier-note { text-align: center; margin-top: 2rem; font-size: 0.9rem; color: var(--gray); }
.tier-note a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }

.split-section--lux { align-items: center; }
.split-image--lux { background: rgba(255,255,255,0.04); border: 1px solid rgba(201,169,110,0.2); }
.lux-list { list-style: none; margin: 1.5rem 0 2rem; }
.lux-list li {
  padding: 0.5rem 0 0.5rem 1.5rem; position: relative;
  color: rgba(255,255,255,0.75); font-size: 0.95rem;
}
.lux-list li::before { content: '◆'; position: absolute; left: 0; color: var(--champagne); font-size: 0.5rem; top: 0.85rem; }

.compare-table-wrap { overflow-x: auto; }
.compare-table { width: 100%; min-width: 600px; border-collapse: collapse; font-size: 0.85rem; }
.compare-table th, .compare-table td { padding: 1rem; border-bottom: 1px solid var(--border); text-align: center; }
.compare-table th:first-child, .compare-table td:first-child { text-align: left; font-weight: 500; }
.compare-table th { font-family: var(--font-display); font-size: 1rem; font-weight: 500; }
.compare-table th small { display: block; font-family: var(--font-body); font-size: 0.75rem; color: var(--gray); font-weight: 400; }
.compare-table .highlight { background: rgba(201,169,110,0.08); }

.testimonial-card--lux { background: var(--white); border: none; box-shadow: 0 4px 24px rgba(0,0,0,0.04); }
.testimonial-grid--lux .testimonial-card p { font-style: normal; }
.faq-list--lux { max-width: 760px; }

.cta-lux {
  background: linear-gradient(135deg, var(--charcoal), #2d2418);
  color: var(--white); text-align: center; padding: 5rem 1.5rem;
}
.cta-lux h2 { font-family: var(--font-display); font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 500; margin-bottom: 0.75rem; }
.cta-lux p { opacity: 0.75; margin-bottom: 2rem; }

.site-footer--lux .logo { color: var(--white); }

.collection-banner {
  padding: 4rem 0 2rem; text-align: center;
  background: linear-gradient(180deg, var(--bg-soft), var(--white));
  border-bottom: 1px solid var(--border);
}
.collection-banner h1 { font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3rem); font-weight: 500; }

.tier-switcher {
  display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.5rem;
}
.tier-switch-btn {
  padding: 0.55rem 1rem; font-size: 0.7rem; letter-spacing: 0.08em;
  text-transform: uppercase; border: 1px solid var(--border);
  transition: all 0.15s;
}
.tier-switch-btn:hover, .tier-switch-btn.active {
  background: var(--ink); color: var(--white); border-color: var(--ink);
}
.tier-switch-btn.active--gold { background: var(--champagne); color: var(--ink); border-color: var(--champagne); }

.product-tier-label {
  font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--champagne); margin-bottom: 0.5rem; font-weight: 600;
}
.product-actions { display: flex; flex-direction: column; gap: 0.65rem; }
.product-actions .btn-outline { border-color: var(--border); }

.checkout-status {
  text-align: center; padding: 4rem 1rem;
}
.checkout-status h1 { font-family: var(--font-display); font-size: 2rem; margin-bottom: 1rem; }
.checkout-status p { color: var(--gray); margin-bottom: 2rem; }

