/* Romantika — Editorial Boutique (v5) */
:root {
  --cream: #F6EDDE;
  --cream-2: #ECDFCA;
  --cream-3: #FAF4E9;
  --ink: #1A1A1A;
  --ink-soft: #5A4A42;
  --burgundy: #7A1B2E;
  --burgundy-2: #561522;
  --burgundy-3: #9C2C40;
  --gold: #B8924F;
  --gold-2: #8E6E36;
  --gold-soft: #D4B173;
  --line: #E0D2BA;
  --line-soft: #EDE0C8;
  --white: #FFFFFF;
  --shadow: 0 24px 60px -30px rgba(122, 27, 46, 0.35);
  --shadow-sm: 0 6px 18px -10px rgba(28, 18, 22, 0.45);
  --radius: 4px;
  --radius-lg: 18px;
  --font-script: 'Pinyon Script', cursive;
  --font-serif: 'Fraunces', 'Times New Roman', serif;
  --font-sans: 'Manrope', system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  position: relative;
  min-height: 100vh;
}
body::before {
  content: '';
  position: fixed; inset: 0;
  background:
    radial-gradient(circle at 15% 10%, rgba(184, 146, 79, 0.07) 0%, transparent 40%),
    radial-gradient(circle at 85% 90%, rgba(122, 27, 46, 0.05) 0%, transparent 45%);
  pointer-events: none; z-index: 0;
}
main { position: relative; z-index: 1; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: 100%; max-width: 1280px; padding: 0 32px; margin: 0 auto; }

/* ====== Header ====== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(246, 237, 222, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 20px 32px; gap: 28px;
}
.brand {
  display: flex; align-items: center; gap: 4px;
  font-family: var(--font-script);
}
.brand-mark { display: none; }
.brand-name {
  font-family: var(--font-script);
  font-size: 38px;
  color: var(--burgundy);
  letter-spacing: 0.5px;
  line-height: 1;
  font-weight: 400;
}
.brand-dot { display: none; }

.site-nav { display: flex; gap: 36px; justify-content: center; }
.site-nav a {
  font-family: var(--font-sans);
  font-size: 12px; font-weight: 600; letter-spacing: 2.5px;
  position: relative; padding: 8px 0;
  text-transform: uppercase;
  color: var(--ink-soft);
  transition: color .25s ease;
}
.site-nav a:hover { color: var(--burgundy); }
.site-nav a::after {
  content: ''; position: absolute; left: 50%; bottom: 2px;
  width: 0; height: 1px; background: var(--gold);
  transition: width .3s ease, left .3s ease;
}
.site-nav a:hover::after { width: 100%; left: 0; }

.header-actions { display: flex; align-items: center; gap: 24px; justify-content: flex-end; }
.lang-switch { display: flex; gap: 8px; align-items: center; font-size: 11px; color: var(--ink-soft); letter-spacing: 2px; font-weight: 600; }
.lang-switch a { padding: 4px 6px; }
.lang-switch a.active { color: var(--burgundy); border-bottom: 1.5px solid var(--gold); }
.lang-switch span { opacity: 0.4; }

.cart-btn {
  position: relative; width: 44px; height: 44px;
  border-radius: 50%; background: var(--burgundy);
  color: var(--cream); display: grid; place-items: center;
  transition: transform .25s ease, background .25s ease;
}
.cart-btn:hover { background: var(--burgundy-2); transform: translateY(-2px); }
.cart-count {
  position: absolute; top: -4px; right: -4px;
  background: var(--gold); color: var(--ink);
  font-size: 11px; font-weight: 700;
  min-width: 20px; height: 20px; padding: 0 6px;
  border-radius: 10px; display: grid; place-items: center;
  border: 2px solid var(--cream);
}

/* ====== Hero — Editorial ====== */
.hero {
  padding: 60px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 1.05fr;
  gap: 70px; align-items: center;
  min-height: 76vh;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 11px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold-2); font-weight: 700;
  margin-bottom: 32px;
}
.hero-tag::before, .hero-tag::after {
  content: ''; width: 40px; height: 1px; background: var(--gold);
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.96;
  font-weight: 300;
  color: var(--burgundy);
  letter-spacing: -2.5px;
  margin-bottom: 36px;
}
.hero-title em {
  font-style: italic;
  font-family: var(--font-script);
  color: var(--gold-2);
  font-weight: 400;
  font-size: 1.05em;
  display: inline-block;
  transform: translateY(0.06em);
}
.hero-sub {
  font-size: 17px; color: var(--ink-soft); max-width: 460px;
  margin-bottom: 44px; line-height: 1.65;
}
.hero-cta-row { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.hero-meta {
  display: flex; gap: 32px; margin-top: 56px;
  padding-top: 32px; border-top: 1px solid var(--line);
  max-width: 460px;
}
.hero-meta div { flex: 1; }
.hero-meta .num {
  font-family: var(--font-serif); font-size: 32px; font-weight: 400;
  color: var(--burgundy); font-style: italic; line-height: 1;
}
.hero-meta .lbl { font-size: 11px; color: var(--ink-soft); letter-spacing: 1.5px; text-transform: uppercase; margin-top: 6px; font-weight: 600; }

.btn {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-sans); font-weight: 600;
  padding: 18px 36px; border-radius: 999px;
  border: none; cursor: pointer; font-size: 13px;
  letter-spacing: 1.5px; text-transform: uppercase;
  transition: all .25s ease;
  text-decoration: none;
}
.btn-primary { background: var(--burgundy); color: var(--cream); }
.btn-primary:hover { background: var(--burgundy-2); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn-rose { background: var(--burgundy); color: var(--white); }
.btn-rose:hover { background: var(--burgundy-2); transform: translateY(-2px); }
.btn-ghost { background: transparent; border: 1.5px solid var(--burgundy); color: var(--burgundy); padding: 16.5px 34px; }
.btn-ghost:hover { background: var(--burgundy); color: var(--cream); }
.btn-gold { background: var(--gold); color: var(--ink); }
.btn-gold:hover { background: var(--gold-2); color: var(--white); transform: translateY(-2px); }
.btn-block { width: 100%; justify-content: center; }
.btn-link {
  font-family: var(--font-sans); font-weight: 600; font-size: 12px;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--burgundy); padding: 8px 0;
  border-bottom: 1.5px solid var(--burgundy);
  transition: color .25s ease, border-color .25s ease;
}
.btn-link:hover { color: var(--gold-2); border-color: var(--gold-2); }

/* Hero visual — editorial collage */
.hero-visual {
  position: relative;
  aspect-ratio: 0.86;
}
.hero-photo {
  position: absolute; inset: 0;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 6s ease; }
.hero-photo:hover img { transform: scale(1.06); }

.hero-photo-2 {
  position: absolute;
  width: 50%; aspect-ratio: 0.78;
  bottom: -40px; right: -50px;
  border-radius: 6px; overflow: hidden;
  box-shadow: var(--shadow);
  border: 8px solid var(--cream);
}
.hero-photo-2 img { width: 100%; height: 100%; object-fit: cover; }

.hero-stamp {
  position: absolute;
  top: -30px; left: -30px;
  width: 130px; height: 130px;
  border-radius: 50%;
  background: var(--burgundy);
  color: var(--cream);
  display: grid; place-items: center;
  text-align: center;
  font-family: var(--font-script);
  font-size: 22px;
  line-height: 1.1;
  padding: 14px;
  border: 2px dashed var(--gold-soft);
  animation: slow-spin 20s linear infinite;
  z-index: 3;
}
.hero-stamp span {
  display: inline-block;
  animation: counter-spin 20s linear infinite;
}
@keyframes slow-spin { to { transform: rotate(360deg); } }
@keyframes counter-spin { to { transform: rotate(-360deg); } }

/* ====== Marquee / strip ====== */
.marquee {
  background: var(--burgundy);
  color: var(--cream);
  padding: 18px 0;
  overflow: hidden;
  border-top: 1px solid var(--burgundy-2);
  border-bottom: 1px solid var(--burgundy-2);
}
.marquee-track {
  display: flex; gap: 50px;
  white-space: nowrap;
  animation: scroll-x 30s linear infinite;
}
.marquee-item {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 22px;
  display: flex; align-items: center; gap: 50px;
}
.marquee-item::after {
  content: '✦'; color: var(--gold); font-style: normal; font-size: 14px;
}
@keyframes scroll-x { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ====== Collections (Instagram highlights style) ====== */
.collections {
  padding: 80px 0 40px;
}
.collections-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}
.collection-item {
  text-align: center;
  cursor: pointer;
  transition: transform .25s ease;
}
.collection-item:hover { transform: translateY(-4px); }
.collection-img {
  width: 130px; height: 130px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: var(--cream-3);
  overflow: hidden;
  padding: 4px;
  background-clip: content-box;
  position: relative;
}
.collection-img::before {
  content: ''; position: absolute; inset: 0;
  border-radius: 50%;
  background: conic-gradient(from 180deg, var(--burgundy), var(--gold), var(--burgundy-3), var(--gold), var(--burgundy));
  z-index: 0;
}
.collection-img img, .collection-img .ph {
  position: relative; z-index: 1;
  width: 100%; height: 100%; border-radius: 50%; object-fit: cover;
  border: 4px solid var(--cream);
}
.collection-img .ph {
  display: grid; place-items: center;
  font-family: var(--font-script);
  font-size: 36px; color: var(--burgundy);
  background: var(--cream-2);
}
.collection-label {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 18px;
  color: var(--burgundy);
  font-weight: 500;
}

/* ====== Section ====== */
.section { padding: 90px 0; position: relative; }
.section-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 56px; gap: 24px;
}
.section-tag {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 11px; letter-spacing: 3.5px; text-transform: uppercase;
  color: var(--gold-2); font-weight: 700; margin-bottom: 18px;
}
.section-tag::before { content: ''; width: 32px; height: 1px; background: var(--gold); }
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 300; line-height: 1.0;
  color: var(--burgundy); letter-spacing: -2px;
}
.section-title em {
  font-style: italic;
  font-family: var(--font-script);
  color: var(--gold-2);
  font-weight: 400;
  font-size: 1.1em;
}
.section-sub { color: var(--ink-soft); font-size: 16px; max-width: 380px; }

/* ====== Product grid — editorial ====== */
.product-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px 32px;
}
.product-card {
  background: transparent;
  transition: transform .35s ease;
  display: flex; flex-direction: column;
  position: relative;
}
.product-card:hover { transform: translateY(-6px); }
.product-media {
  position: relative; aspect-ratio: 0.82; overflow: hidden;
  background: var(--cream-2);
  border-radius: 4px;
  margin-bottom: 22px;
}
.product-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1s ease;
}
.product-card:hover .product-media img { transform: scale(1.08); }
.product-placeholder {
  width: 100%; height: 100%;
  display: grid; place-items: center;
  font-family: var(--font-script);
  font-size: 88px; color: var(--burgundy);
  background: linear-gradient(135deg, var(--cream-2), var(--cream));
}
.discount-badge {
  position: absolute; top: 20px; left: 20px;
  background: var(--burgundy);
  color: var(--gold);
  padding: 10px 16px;
  border-radius: 4px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.5px;
  box-shadow: var(--shadow-sm);
}
.product-quick-view {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: var(--burgundy);
  color: var(--cream);
  padding: 14px;
  text-align: center;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity .3s ease, transform .3s ease;
}
.product-card:hover .product-quick-view { opacity: 1; transform: translateY(0); }
.product-body {
  display: flex; flex-direction: column; gap: 10px;
  padding: 0 4px;
}
.product-name {
  font-family: var(--font-serif);
  font-size: 24px; font-weight: 400;
  color: var(--burgundy);
  line-height: 1.15;
  letter-spacing: -0.5px;
}
.product-name a:hover { color: var(--gold-2); }
.product-desc {
  font-size: 13px; color: var(--ink-soft);
  line-height: 1.6;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
  margin-bottom: 6px;
}
.price-row { display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap; padding-top: 6px; border-top: 1px solid var(--line); }
.price-final {
  font-family: var(--font-serif); font-size: 26px; font-weight: 400;
  color: var(--burgundy);
  font-style: italic;
}
.price-original {
  font-size: 14px; color: var(--ink-soft);
  text-decoration: line-through; opacity: 0.7;
}
.price-discount-label {
  font-size: 11px; font-weight: 700;
  color: var(--gold-2);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.product-currency { font-size: 13px; color: var(--ink-soft); font-family: var(--font-sans); margin-left: 4px; font-style: normal; letter-spacing: 1px; text-transform: uppercase; font-weight: 600; }

.product-actions { display: flex; gap: 10px; margin-top: 14px; }
.product-actions .btn { padding: 13px 18px; font-size: 11px; flex: 1; justify-content: center; letter-spacing: 1.5px; }

/* ====== Quote / Editorial banner ====== */
.editorial-banner {
  padding: 100px 0;
  text-align: center;
  background: var(--burgundy);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.editorial-banner::before, .editorial-banner::after {
  content: ''; position: absolute;
  width: 350px; height: 350px;
  border-radius: 50%; filter: blur(60px);
}
.editorial-banner::before { background: var(--burgundy-3); top: -150px; left: -100px; opacity: 0.4; }
.editorial-banner::after { background: var(--gold); bottom: -150px; right: -100px; opacity: 0.18; }
.editorial-banner .container { position: relative; z-index: 1; }
.editorial-banner .quote-mark {
  font-family: var(--font-serif);
  font-size: 100px;
  color: var(--gold);
  line-height: 1; height: 50px;
  font-style: italic;
}
.editorial-banner h2 {
  font-family: var(--font-serif);
  font-size: clamp(34px, 4.5vw, 56px);
  font-weight: 300; line-height: 1.2;
  font-style: italic;
  max-width: 800px; margin: 0 auto 32px;
}
.editorial-banner h2 em {
  font-family: var(--font-script);
  font-style: normal;
  color: var(--gold);
  font-size: 1.2em;
}
.editorial-banner .signature {
  font-family: var(--font-script);
  font-size: 24px;
  color: var(--gold-soft);
  margin-top: 24px;
}

/* ====== Why us / Features ====== */
.features {
  padding: 100px 0;
}
.features-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px;
}
.feature {
  text-align: left;
  padding: 0 0 0 0;
  position: relative;
}
.feature::before {
  content: ''; position: absolute;
  top: 0; left: 0;
  width: 40px; height: 1px; background: var(--gold);
}
.feature .ic {
  width: 56px; height: 56px;
  margin: 28px 0 24px;
  display: grid; place-items: center;
  color: var(--burgundy); font-size: 28px;
  border: 1px solid var(--burgundy);
  border-radius: 50%;
}
.feature h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--burgundy);
  margin-bottom: 12px;
  font-weight: 400;
}
.feature p { font-size: 14px; color: var(--ink-soft); line-height: 1.6; }

/* ====== Product page ====== */
.product-detail {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  padding: 80px 0;
}
.product-detail-media {
  aspect-ratio: 0.85; border-radius: 4px; overflow: hidden;
  background: var(--cream-2);
  position: relative;
  box-shadow: var(--shadow);
}
.product-detail-media img { width: 100%; height: 100%; object-fit: cover; }
.product-detail .breadcrumb { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 24px; font-weight: 600; }
.product-detail .breadcrumb a:hover { color: var(--burgundy); }
.product-detail h1 {
  font-family: var(--font-serif);
  font-size: clamp(40px, 5vw, 64px); font-weight: 300; line-height: 1.02;
  color: var(--burgundy); letter-spacing: -1.5px;
  margin-bottom: 20px;
}
.product-detail h1 em { font-family: var(--font-script); color: var(--gold-2); font-style: normal; }
.product-detail .desc { font-size: 17px; color: var(--ink-soft); margin-bottom: 36px; line-height: 1.7; }
.price-card {
  background: var(--cream-3); border: 1px solid var(--line);
  padding: 32px; border-radius: 4px; margin-bottom: 28px;
}
.price-card .big {
  font-family: var(--font-serif); font-size: 52px;
  color: var(--burgundy); margin-bottom: 8px;
  font-style: italic; font-weight: 400; line-height: 1;
}
.price-card .small { font-size: 11px; color: var(--ink-soft); margin-bottom: 8px; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 600; }
.savings { color: var(--gold-2); font-weight: 600; margin-top: 16px; font-size: 14px; }

.qty-control {
  display: inline-flex; align-items: center; gap: 0;
  border: 1.5px solid var(--burgundy); border-radius: 999px; overflow: hidden;
}
.qty-control button { background: transparent; border: none; padding: 12px 18px; font-size: 18px; color: var(--burgundy); cursor: pointer; }
.qty-control input {
  width: 50px; text-align: center; border: none;
  background: transparent; font-weight: 600; color: var(--burgundy); font-size: 16px;
  font-family: var(--font-sans);
}

/* ====== Cart page ====== */
.page-head { padding: 70px 0 36px; }
.page-head h1 {
  font-family: var(--font-serif); font-size: clamp(42px, 6vw, 72px);
  font-weight: 300; color: var(--burgundy); letter-spacing: -1.5px;
}
.page-head h1 em { font-family: var(--font-script); color: var(--gold-2); font-style: normal; }

.cart-layout {
  display: grid; grid-template-columns: 2fr 1fr; gap: 48px;
  padding-bottom: 100px;
}
.cart-items { display: flex; flex-direction: column; gap: 20px; }
.cart-item {
  display: grid; grid-template-columns: 110px 1fr auto; gap: 28px;
  background: var(--cream-3); padding: 22px; border-radius: 4px;
  border: 1px solid var(--line);
  align-items: center;
}
.cart-item-img {
  width: 110px; height: 110px; border-radius: 4px;
  overflow: hidden; background: var(--cream-2);
}
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-info h3 { font-family: var(--font-serif); font-size: 22px; color: var(--burgundy); margin-bottom: 8px; font-weight: 400; }
.cart-item-meta { font-size: 14px; color: var(--ink-soft); display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.cart-item-actions { display: flex; flex-direction: column; align-items: flex-end; gap: 12px; }
.cart-item-actions .price { font-family: var(--font-serif); font-size: 24px; color: var(--burgundy); font-style: italic; }
.remove-link { color: var(--burgundy-3); font-size: 12px; background: none; border: none; cursor: pointer; letter-spacing: 1px; text-transform: uppercase; font-weight: 600; font-family: inherit; }
.remove-link:hover { color: var(--burgundy); text-decoration: underline; }

.cart-summary {
  background: var(--burgundy); color: var(--cream);
  padding: 36px; border-radius: 4px;
  position: sticky; top: 110px; height: fit-content;
  position: relative; overflow: hidden;
}
.cart-summary::before {
  content: ''; position: absolute; top: -40px; right: -40px;
  width: 160px; height: 160px; border-radius: 50%;
  background: var(--burgundy-3); opacity: 0.4; filter: blur(40px);
}
.cart-summary > * { position: relative; z-index: 1; }
.cart-summary h3 { font-family: var(--font-serif); font-size: 28px; font-weight: 300; margin-bottom: 28px; font-style: italic; color: var(--gold-soft); }
.summary-row { display: flex; justify-content: space-between; padding: 14px 0; border-bottom: 1px solid rgba(246, 237, 222, 0.15); font-size: 14px; }
.summary-row.total { font-family: var(--font-serif); font-size: 26px; padding: 20px 0 26px; border-bottom: none; font-style: italic; color: var(--gold); }
.cart-summary .btn { width: 100%; justify-content: center; margin-top: 12px; background: var(--gold); color: var(--ink); }
.cart-summary .btn:hover { background: var(--gold-2); color: var(--white); }

.empty-state {
  text-align: center; padding: 100px 20px;
  background: var(--cream-3); border-radius: 4px;
  border: 1px dashed var(--line);
}
.empty-state .ic { font-size: 64px; color: var(--cream-2); margin-bottom: 24px; }
.empty-state h3 { font-family: var(--font-serif); font-size: 32px; color: var(--burgundy); margin-bottom: 20px; font-weight: 300; }

/* ====== Checkout ====== */
.checkout-layout { display: grid; grid-template-columns: 1.3fr 1fr; gap: 48px; padding-bottom: 100px; }
.checkout-form {
  background: var(--cream-3); padding: 44px; border-radius: 4px;
  border: 1px solid var(--line);
}
.field { margin-bottom: 22px; }
.field label { display: block; font-size: 11px; font-weight: 700; color: var(--burgundy); margin-bottom: 10px; letter-spacing: 2px; text-transform: uppercase; }
.field input, .field textarea, .field select {
  width: 100%; padding: 16px 18px;
  border: 1.5px solid var(--line);
  border-radius: 4px;
  font-family: inherit; font-size: 15px; background: var(--cream);
  color: var(--ink);
  transition: border-color .2s ease, background .2s ease;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--burgundy); background: var(--white);
}
.field textarea { min-height: 110px; resize: vertical; }

/* ====== Order success ====== */
.success-card {
  text-align: center; padding: 90px 40px;
  background: var(--cream-3); border-radius: 4px;
  max-width: 640px; margin: 90px auto;
  border: 1px solid var(--line);
}
.success-card .ic {
  width: 90px; height: 90px; border-radius: 50%;
  background: var(--burgundy); color: var(--gold);
  display: grid; place-items: center; margin: 0 auto 28px;
  font-size: 36px;
}
.success-card h1 { font-family: var(--font-serif); font-size: 48px; color: var(--burgundy); margin-bottom: 18px; font-weight: 300; font-style: italic; }
.success-card .order-num { font-family: var(--font-script); font-size: 32px; color: var(--gold-2); margin: 22px 0; }

/* ====== Chat ====== */
.chat-fab {
  position: fixed; bottom: 32px; right: 32px; z-index: 60;
  background: var(--burgundy); color: var(--cream);
  padding: 16px 24px; border-radius: 999px;
  display: flex; align-items: center; gap: 12px;
  font-weight: 600; font-size: 12px;
  letter-spacing: 1.5px; text-transform: uppercase;
  box-shadow: var(--shadow);
  transition: all .25s ease;
  border: 1.5px solid var(--gold);
}
.chat-fab:hover { background: var(--burgundy-2); transform: translateY(-3px); }
.chat-fab i { font-size: 18px; color: var(--gold); }

.chat-container {
  max-width: 820px; margin: 40px auto 90px;
  background: var(--cream-3); border-radius: 4px;
  border: 1px solid var(--line);
  overflow: hidden;
  display: flex; flex-direction: column;
  height: 72vh;
  min-height: 520px;
  box-shadow: var(--shadow);
}
.chat-header {
  background: var(--burgundy); color: var(--cream);
  padding: 26px 32px;
  display: flex; align-items: center; gap: 18px;
  border-bottom: 1px solid var(--gold);
}
.chat-header .ava {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--gold); display: grid; place-items: center;
  font-family: var(--font-script); font-size: 26px;
  color: var(--burgundy);
}
.chat-header h2 { font-family: var(--font-serif); font-size: 24px; font-weight: 300; font-style: italic; }
.chat-header .status { font-size: 11px; opacity: 0.85; letter-spacing: 1.5px; text-transform: uppercase; margin-top: 4px; }

.chat-messages {
  flex: 1; overflow-y: auto;
  padding: 28px; background: var(--cream);
  display: flex; flex-direction: column; gap: 14px;
}
.msg { max-width: 70%; padding: 13px 18px; border-radius: 18px; font-size: 15px; line-height: 1.45; }
.msg.user { background: var(--burgundy); color: var(--cream); align-self: flex-end; border-bottom-right-radius: 4px; }
.msg.admin { background: var(--white); color: var(--ink); align-self: flex-start; border: 1px solid var(--line); border-bottom-left-radius: 4px; }
.msg .time { font-size: 10px; opacity: 0.65; margin-top: 5px; display: block; letter-spacing: 1px; }
.msg.welcome { background: rgba(184, 146, 79, 0.15); color: var(--gold-2); align-self: center; border-radius: 4px; font-size: 13px; max-width: 90%; text-align: center; padding: 12px 18px; letter-spacing: 0.5px; }

.chat-input {
  padding: 20px 26px; background: var(--cream-3);
  border-top: 1px solid var(--line);
  display: flex; gap: 14px;
}
.chat-input input {
  flex: 1; padding: 13px 20px;
  border: 1.5px solid var(--line); border-radius: 999px;
  font-family: inherit; font-size: 15px; background: var(--cream);
}
.chat-input input:focus { outline: none; border-color: var(--burgundy); background: var(--white); }
.chat-input button {
  background: var(--burgundy); color: var(--gold);
  border: none; width: 50px; height: 50px; border-radius: 50%;
  cursor: pointer; transition: all .25s ease;
}
.chat-input button:hover { background: var(--burgundy-2); transform: scale(1.05); }

/* Chat attach button + image preview */
.chat-attach {
  display: grid; place-items: center;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--cream-2); color: var(--burgundy);
  cursor: pointer; font-size: 16px;
  transition: background .2s ease;
  flex-shrink: 0;
}
.chat-attach:hover { background: var(--gold); color: var(--burgundy); }
.msg-image {
  display: block; max-width: 100%; width: 240px;
  border-radius: 12px; margin-bottom: 6px;
  cursor: zoom-in;
  border: 1px solid rgba(0,0,0,0.05);
}
.msg.user .msg-image { background: rgba(246, 237, 222, 0.1); }
.msg-text { word-wrap: break-word; overflow-wrap: anywhere; }
.msg-text a { color: var(--gold); text-decoration: underline; }
.msg.admin .msg-text a { color: var(--burgundy); text-decoration: underline; }
.chat-preview {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 24px; background: var(--cream-2);
  border-top: 1px solid var(--line);
}
.chat-preview img { width: 60px; height: 60px; object-fit: cover; border-radius: 8px; }
.chat-preview button { background: var(--burgundy); color: var(--cream); border: none; width: 30px; height: 30px; border-radius: 50%; cursor: pointer; font-size: 12px; }
.chat-preview button:hover { background: var(--burgundy-2); }

/* Admin sidebar unread badge */
.nav-unread {
  background: var(--gold); color: var(--burgundy);
  font-size: 10px; font-weight: 700;
  padding: 2px 8px; border-radius: 999px;
  margin-left: auto;
  letter-spacing: 0;
}
.admin-sidebar nav a.active .nav-unread { background: var(--burgundy); color: var(--gold); }

.chat-start-form {
  max-width: 460px; margin: 90px auto; background: var(--cream-3);
  padding: 48px; border-radius: 4px; border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.chat-start-form h2 { font-family: var(--font-serif); font-size: 32px; color: var(--burgundy); margin-bottom: 12px; font-weight: 300; font-style: italic; }
.chat-start-form p { color: var(--ink-soft); margin-bottom: 28px; font-size: 15px; }

/* ====== Footer ====== */
.site-footer {
  background: var(--burgundy); color: var(--cream);
  padding: 80px 0 28px; margin-top: 0;
  position: relative; z-index: 1;
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 56px; padding-bottom: 56px; border-bottom: 1px solid rgba(246, 237, 222, 0.15); }
.brand-footer .brand-name { color: var(--cream); }
.site-footer h4 { font-family: var(--font-serif); font-size: 20px; margin-bottom: 20px; font-weight: 300; font-style: italic; color: var(--gold-soft); }
.site-footer p { margin-bottom: 10px; font-size: 14px; opacity: 0.9; }
.site-footer .muted { opacity: 0.8; max-width: 340px; margin-top: 16px; font-size: 14px; line-height: 1.6; }
.site-footer a { color: var(--cream); }
.socials { display: flex; gap: 14px; margin-top: 16px; }
.socials a {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(246, 237, 222, 0.08);
  border: 1px solid var(--gold-soft);
  color: var(--gold-soft);
  display: grid; place-items: center;
  transition: all .25s ease;
}
.socials a:hover { background: var(--gold); color: var(--burgundy); transform: translateY(-3px); border-color: var(--gold); }
.footer-bottom { padding-top: 28px; text-align: center; font-size: 12px; opacity: 0.7; letter-spacing: 1.5px; text-transform: uppercase; }

/* ====== Admin ====== */
.admin-layout { display: grid; grid-template-columns: 250px 1fr; min-height: 100vh; background: var(--cream); }
.admin-sidebar {
  background: var(--burgundy); color: var(--cream);
  padding: 32px 18px; position: sticky; top: 0; height: 100vh;
  border-right: 1px solid var(--gold);
}
.admin-sidebar .brand { padding: 0 8px; }
.admin-sidebar .brand-name { color: var(--cream); font-size: 38px; }
.admin-sidebar nav { margin-top: 40px; display: flex; flex-direction: column; gap: 4px; }
.admin-sidebar nav a {
  padding: 13px 16px; border-radius: 4px;
  display: flex; align-items: center; gap: 14px;
  font-size: 12px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  transition: all .2s ease;
}
.admin-sidebar nav a:hover { background: rgba(246, 237, 222, 0.08); color: var(--gold-soft); }
.admin-sidebar nav a.active { background: var(--gold); color: var(--burgundy); }
.admin-sidebar nav a i { width: 18px; text-align: center; }
.admin-sidebar .logout {
  margin-top: 32px; padding: 13px 16px; border-radius: 4px;
  background: rgba(0,0,0,0.18); color: var(--gold-soft);
  font-size: 12px; display: flex; align-items: center; gap: 14px;
  letter-spacing: 1.5px; text-transform: uppercase; font-weight: 600;
}
.admin-sidebar .logout:hover { background: var(--gold); color: var(--burgundy); }

.admin-main { padding: 40px 48px; min-width: 0; }
.admin-topbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 36px; }
.admin-topbar h1 { font-family: var(--font-serif); font-size: 40px; color: var(--burgundy); font-weight: 300; letter-spacing: -1px; font-style: italic; }

.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-bottom: 40px; }
.stat-card {
  background: var(--cream-3); padding: 28px; border-radius: 4px;
  border: 1px solid var(--line);
  position: relative; overflow: hidden;
}
.stat-card::before {
  content: ''; position: absolute; top: 0; left: 0; width: 40px; height: 2px; background: var(--gold);
}
.stat-card .lbl { font-size: 11px; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 14px; margin-top: 6px; font-weight: 600; }
.stat-card .val { font-family: var(--font-serif); font-size: 40px; color: var(--burgundy); font-weight: 400; font-style: italic; }
.stat-card .ic {
  width: 48px; height: 48px; border-radius: 4px;
  background: var(--burgundy); color: var(--gold);
  display: grid; place-items: center; margin-bottom: 18px;
}

.admin-card {
  background: var(--cream-3); padding: 32px; border-radius: 4px;
  border: 1px solid var(--line); margin-bottom: 24px;
}
.admin-card h2 { font-family: var(--font-serif); font-size: 26px; color: var(--burgundy); margin-bottom: 22px; font-weight: 300; font-style: italic; }

.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th { text-align: left; padding: 14px 16px; font-size: 11px; font-weight: 700; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 1.5px; border-bottom: 1px solid var(--line); }
.admin-table td { padding: 16px; border-bottom: 1px solid var(--line); font-size: 14px; vertical-align: middle; }
.admin-table tr:last-child td { border-bottom: none; }
.admin-table .thumb {
  width: 60px; height: 60px; border-radius: 4px; overflow: hidden;
  background: var(--cream-2);
}
.admin-table .thumb img { width: 100%; height: 100%; object-fit: cover; }
.admin-table .actions { display: flex; gap: 8px; }
.admin-table .actions a, .admin-table .actions button {
  padding: 8px 13px; font-size: 11px; border-radius: 4px; border: 1px solid var(--line);
  background: var(--white); color: var(--burgundy); cursor: pointer; font-family: inherit;
  text-decoration: none; letter-spacing: 1px; text-transform: uppercase; font-weight: 600;
}
.admin-table .actions .danger { color: var(--burgundy-3); border-color: rgba(122, 27, 46, 0.3); }
.admin-table .actions a:hover { background: var(--burgundy); color: var(--cream); border-color: var(--burgundy); }
.badge {
  display: inline-block; padding: 5px 12px; border-radius: 4px;
  font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
}
.badge-discount { background: var(--burgundy); color: var(--gold); }
.badge-active { background: rgba(122, 27, 46, 0.12); color: var(--burgundy); }
.badge-hidden { background: rgba(26, 26, 26, 0.08); color: var(--ink-soft); }
.badge-new { background: var(--gold); color: var(--ink); }
.badge-confirmed { background: var(--burgundy); color: var(--cream); }
.badge-delivered { background: rgba(122, 27, 46, 0.12); color: var(--burgundy); }
.badge-cancelled { background: rgba(122, 27, 46, 0.18); color: var(--burgundy-3); }

.admin-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.admin-form .field-photo { display: flex; gap: 18px; align-items: center; }
.admin-form .field-photo img { width: 88px; height: 88px; border-radius: 4px; object-fit: cover; }

.admin-login-page {
  min-height: 100vh; display: grid; place-items: center;
  background: var(--burgundy); padding: 20px;
  position: relative; overflow: hidden;
}
.admin-login-page::before, .admin-login-page::after {
  content: ''; position: absolute; border-radius: 50%;
  filter: blur(70px); opacity: 0.5;
}
.admin-login-page::before { width: 460px; height: 460px; background: var(--burgundy-3); top: -150px; right: -120px; }
.admin-login-page::after { width: 460px; height: 460px; background: var(--gold); bottom: -150px; left: -120px; opacity: 0.25; }
.login-card {
  background: var(--cream-3); padding: 52px;
  border-radius: 4px; width: 100%; max-width: 440px;
  box-shadow: var(--shadow); position: relative; z-index: 2;
  border: 1px solid var(--gold-soft);
}
.login-card .brand { margin-bottom: 32px; }
.login-card .brand-name { color: var(--burgundy); font-size: 44px; }
.login-card h1 { font-family: var(--font-serif); font-size: 30px; color: var(--burgundy); margin-bottom: 8px; font-weight: 300; font-style: italic; }
.login-card p { color: var(--ink-soft); font-size: 13px; margin-bottom: 32px; letter-spacing: 0.5px; }

.alert {
  padding: 16px 20px; border-radius: 4px; font-size: 14px;
  margin-bottom: 20px;
}
.alert-error { background: rgba(122, 27, 46, 0.1); color: var(--burgundy); border: 1px solid rgba(122, 27, 46, 0.3); }
.alert-success { background: rgba(184, 146, 79, 0.12); color: var(--gold-2); border: 1px solid rgba(184, 146, 79, 0.3); }

/* admin chat */
.chat-admin-layout { display: grid; grid-template-columns: 300px 1fr; gap: 0; background: var(--cream-3); border-radius: 4px; border: 1px solid var(--line); overflow: hidden; min-height: 620px; }
.chat-sessions { border-right: 1px solid var(--line); padding: 0; max-height: 72vh; overflow-y: auto; }
.chat-session-item { display: block; padding: 18px 20px; border-bottom: 1px solid var(--line); cursor: pointer; transition: background .2s ease; text-decoration: none; color: inherit; }
.chat-session-item:hover, .chat-session-item.active { background: var(--cream); }
.chat-session-item .nm { font-family: var(--font-serif); font-weight: 500; color: var(--burgundy); font-size: 16px; margin-bottom: 4px; }
.chat-session-item .ph { font-size: 12px; color: var(--ink-soft); margin-bottom: 4px; }
.chat-session-item .last { font-size: 12px; color: var(--ink-soft); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.chat-session-item .unread { background: var(--gold); color: var(--burgundy); font-size: 10px; padding: 2px 8px; border-radius: 999px; margin-left: 6px; font-weight: 700; }
.chat-admin-area { display: flex; flex-direction: column; max-height: 72vh; }
.chat-admin-area .empty { padding: 40px; text-align: center; color: var(--ink-soft); }

/* responsive */
@media (max-width: 1024px) {
  .hero-grid { gap: 50px; }
  .collections-strip { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 60px; min-height: auto; }
  .hero-stamp { width: 100px; height: 100px; font-size: 18px; top: -20px; left: -10px; }
  .hero-photo-2 { width: 45%; bottom: -20px; right: -20px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 30px 24px; }
  .product-detail { grid-template-columns: 1fr; gap: 50px; }
  .cart-layout, .checkout-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .site-nav { display: none; }
  .header-inner { grid-template-columns: auto 1fr; padding: 14px 18px; }
  .brand-name { font-size: 28px; }

  /* ===== ADMIN MOBILE — compact icon-only top bar ===== */
  .admin-layout { grid-template-columns: 1fr; }
  .admin-sidebar {
    position: sticky; top: 0; height: auto;
    padding: 10px 14px;
    z-index: 100;
    display: flex; align-items: center; gap: 10px;
    flex-wrap: nowrap;
    overflow-x: auto;
    border-right: none; border-bottom: 1px solid var(--gold);
  }
  .admin-sidebar::-webkit-scrollbar { height: 0; }
  .admin-sidebar .brand { flex-shrink: 0; padding: 0; }
  .admin-sidebar .brand-name { font-size: 24px; }
  .admin-sidebar nav { margin: 0; flex-direction: row; gap: 2px; flex: 1; min-width: 0; }
  .admin-sidebar nav a {
    padding: 10px 12px;
    flex-shrink: 0;
    position: relative;
    font-size: 0; /* hide text label */
    border-radius: 999px;
  }
  .admin-sidebar nav a i { font-size: 17px; width: auto; margin: 0; }
  .admin-sidebar nav a .nav-unread {
    font-size: 10px;
    position: absolute;
    top: 0; right: 0;
    margin: 0; padding: 2px 6px;
    border: 2px solid var(--burgundy);
  }
  .admin-sidebar .logout {
    margin: 0; padding: 10px 12px; flex-shrink: 0; font-size: 0;
    border-radius: 999px;
  }
  .admin-sidebar .logout i { font-size: 17px; }
  /* Hide lang switcher + "open site" link on mobile sidebar */
  .admin-sidebar > div:last-of-type,
  .admin-sidebar > a[target="_blank"] {
    display: none !important;
  }

  .admin-main { padding: 18px 16px; min-width: 0; }
  .admin-topbar { flex-direction: column; align-items: stretch; gap: 12px; margin-bottom: 20px; }
  .admin-topbar h1 { font-size: 28px; line-height: 1.1; }
  .admin-topbar form { width: 100%; flex-wrap: wrap; }
  .admin-topbar form input[type="text"] { min-width: 0 !important; width: 100%; box-sizing: border-box; }

  /* Admin tables scrollable on mobile */
  .admin-card { padding: 18px; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .admin-card > h2 { font-size: 20px; }
  .admin-table th, .admin-table td { white-space: nowrap; }

  /* Admin chat: stack vertically with proper sizing */
  .chat-admin-layout { grid-template-columns: 1fr; min-height: auto; }
  .chat-sessions { max-height: none; border-right: none; border-bottom: 1px solid var(--line); }
  .chat-admin-area { max-height: 78vh; min-height: 60vh; }

  /* If a session is opened on mobile, hide list & show only thread */
  body.has-active-chat .chat-sessions { display: none; }
  body.has-active-chat .chat-back-mobile { display: inline-flex !important; }

  /* Mobile back button (visible only when active chat) */
  .chat-back-mobile {
    display: none;
    align-items: center; gap: 8px;
    background: rgba(246,237,222,0.18); color: var(--cream);
    padding: 8px 14px; border-radius: 999px;
    font-size: 11px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
    text-decoration: none; margin-right: 12px;
    border: 1px solid var(--gold-soft);
  }
  .chat-back-mobile:hover { background: rgba(246,237,222,0.28); }

  /* Public chat FAB shrink */
  .chat-fab { bottom: 20px; right: 20px; padding: 12px 16px; gap: 0; }
  .chat-fab span { display: none; }
  .chat-fab i { font-size: 20px; }

  /* User chat container — fullscreen on mobile */
  .chat-container { margin: 20px auto 30px; height: calc(100vh - 200px); min-height: 420px; }
  .chat-header { padding: 18px 20px; }
  .chat-header h2 { font-size: 18px; }
  .chat-header .ava { width: 38px; height: 38px; font-size: 18px; }
  .chat-messages { padding: 18px; }
  .chat-input { padding: 14px 16px; gap: 10px; }
  .chat-input input { padding: 11px 16px; font-size: 14px; }
  .chat-input button, .chat-attach { width: 42px; height: 42px; flex-shrink: 0; }
  .chat-input button { font-size: 14px; }
  .msg { max-width: 80%; padding: 11px 14px; font-size: 14px; }
  .msg-image { width: 180px; }

  /* Admin login compact */
  .login-card { padding: 32px 22px; }
}
@media (max-width: 600px) {
  .product-grid { grid-template-columns: 1fr; }
  .collections-strip { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .collection-img { width: 100px; height: 100px; }
  .features-grid { grid-template-columns: 1fr; }
  .admin-form .row { grid-template-columns: 1fr; gap: 16px; }
  .cart-item { grid-template-columns: 70px 1fr; gap: 12px; padding: 14px; }
  .cart-item-img { width: 70px; height: 70px; }
  .cart-item-info h3 { font-size: 16px; }
  .cart-item-actions { grid-column: 1/-1; flex-direction: row; justify-content: space-between; align-items: center; gap: 10px; }
  .cart-item-actions .price { font-size: 18px; }
  .header-actions { gap: 10px; }
  .brand-name { font-size: 26px; }
  .container { padding: 0 16px; }
  .section-head { flex-direction: column; align-items: flex-start; }
  .section-title { font-size: 32px; }
  .hero-meta { gap: 16px; padding-top: 22px; margin-top: 32px; }
  .hero-meta .num { font-size: 24px; }
  .hero-meta .lbl { font-size: 9px; letter-spacing: 1px; }
  .editorial-banner { padding: 56px 0; }
  .editorial-banner h2 { font-size: 24px; }
  .editorial-banner .quote-mark { font-size: 70px; }
  .marquee-item { font-size: 15px; gap: 28px; }
  .section { padding: 50px 0; }
  .hero { padding: 24px 0 50px; }
  .hero-title { font-size: 38px; letter-spacing: -1px; }
  .hero-sub { font-size: 15px; margin-bottom: 32px; }
  .btn { padding: 14px 24px; font-size: 12px; }
  .page-head { padding: 30px 0 16px; }
  .page-head h1 { font-size: 30px; }
  .msg-image { width: 150px; }
  .msg { max-width: 88%; }
}

/* animations */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.fade-up { animation: fadeUp .9s ease both; }
.fade-up:nth-child(2) { animation-delay: .08s; }
.fade-up:nth-child(3) { animation-delay: .16s; }
.fade-up:nth-child(4) { animation-delay: .24s; }
.fade-up:nth-child(5) { animation-delay: .32s; }
.fade-up:nth-child(6) { animation-delay: .4s; }

::selection { background: var(--burgundy); color: var(--gold); }
