@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Raleway:wght@200;300;400;500;600&display=swap');

:root {
  --black: #050505;
  --deep: #0c0c0c;
  --surface: #111111;
  --gold: #a8913a;
  --gold-light: #c9af5a;
  --gold-pale: #e8d898;
  --gold-dim: rgba(168,145,58,0.15);
  --gold-border: rgba(168,145,58,0.18);
  --white: #f5f2ec;
  --gray: #7a7670;
  --gray-light: #b0aca4;
  --success: #3a6e4a;
  --error: #8b2222;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background-color: var(--black);
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cg fill='none' stroke='%23a8913a' stroke-width='0.5' opacity='0.22'%3E%3Ccircle cx='100' cy='100' r='70'/%3E%3Ccircle cx='100' cy='100' r='45'/%3E%3Ccircle cx='100' cy='100' r='20'/%3E%3Cline x1='100' y1='30' x2='100' y2='170'/%3E%3Cline x1='30' y1='100' x2='170' y2='100'/%3E%3Cline x1='50' y1='50' x2='150' y2='150'/%3E%3Cline x1='150' y1='50' x2='50' y2='150'/%3E%3Cpath d='M100 30 L108 55 L100 48 L92 55 Z'/%3E%3Cpath d='M100 170 L108 145 L100 152 L92 145 Z'/%3E%3Cpath d='M30 100 L55 108 L48 100 L55 92 Z'/%3E%3Cpath d='M170 100 L145 108 L152 100 L145 92 Z'/%3E%3Ccircle cx='100' cy='30' r='3.5'/%3E%3Ccircle cx='100' cy='170' r='3.5'/%3E%3Ccircle cx='30' cy='100' r='3.5'/%3E%3Ccircle cx='170' cy='100' r='3.5'/%3E%3Ccircle cx='50' cy='50' r='3'/%3E%3Ccircle cx='150' cy='50' r='3'/%3E%3Ccircle cx='50' cy='150' r='3'/%3E%3Ccircle cx='150' cy='150' r='3'/%3E%3C/g%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cg fill='none' stroke='%23a8913a' stroke-width='0.5' opacity='0.17'%3E%3Cpolygon points='100,20 140,60 140,140 100,180 60,140 60,60'/%3E%3Cpolygon points='100,45 125,68 125,132 100,155 75,132 75,68'/%3E%3Cpolygon points='100,70 115,83 115,117 100,130 85,117 85,83'/%3E%3Cline x1='100' y1='20' x2='100' y2='180'/%3E%3Cline x1='60' y1='60' x2='140' y2='140'/%3E%3Cline x1='140' y1='60' x2='60' y2='140'/%3E%3Ccircle cx='100' cy='20' r='3'/%3E%3Ccircle cx='140' cy='60' r='3'/%3E%3Ccircle cx='140' cy='140' r='3'/%3E%3Ccircle cx='100' cy='180' r='3'/%3E%3Ccircle cx='60' cy='140' r='3'/%3E%3Ccircle cx='60' cy='60' r='3'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 200px 200px, 200px 200px;
  background-position: 0 0, 100px 100px;
  color: var(--white);
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  min-height: 100vh;
}

/* ── ORNAMENT LAYER ── */
#ornament-layer {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.page, nav.nav { position: relative; z-index: 1; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold); }

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 48px;
  border-bottom: 1px solid var(--gold-border);
  background: rgba(5,5,5,0.97);
  backdrop-filter: blur(8px);
  gap: 12px; flex-wrap: wrap;
}
.logo { display: flex; flex-direction: column; gap: 3px; text-decoration: none; }
.logo-main { font-family: 'Cormorant Garamond', serif; font-size: 1.35rem; font-weight: 600; letter-spacing: 0.22em; color: var(--gold-light); line-height: 1; }
.logo-sub { font-size: 0.48rem; letter-spacing: 0.5em; text-transform: uppercase; color: var(--gray-light); font-weight: 400; }
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a { font-size: 0.62rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gray-light); text-decoration: none; transition: color .3s; font-weight: 400; }
.nav-links a:hover, .nav-links a.active { color: var(--gold-light); }
.nav-right { display: flex; align-items: center; gap: 16px; }
.nav-cart {
  display: flex; align-items: center; gap: 8px;
  font-family: 'Raleway', sans-serif; font-size: 0.6rem; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--gold-light); border: 1px solid var(--gold);
  padding: 9px 20px; text-decoration: none; transition: all .35s;
}
.nav-cart:hover { background: var(--gold); color: var(--black); }
.cart-count {
  background: var(--gold); color: var(--black); border-radius: 50%;
  width: 16px; height: 16px; font-size: 9px;
  display: inline-flex; align-items: center; justify-content: center; font-weight: 700;
}
.nav-user { font-size: 0.6rem; letter-spacing: 0.2em; color: var(--gray-light); text-decoration: none; transition: color .3s; }
.nav-user:hover { color: var(--gold-light); }

/* ── PAGE WRAPPER ── */
.page { padding-top: 76px; min-height: 100vh; }

/* ── HERO ── */
.hero {
  min-height: auto; display: flex; flex-direction: column;
  justify-content: center; align-items: center; text-align: center; padding: 80px 48px 60px;
  position: relative; overflow: hidden;
  border-bottom: 1px solid var(--gold-border);
}
.hero-rule {
  display: none; position: absolute; left: 48px; top: 0; bottom: 0; width: 1px;
  background: linear-gradient(to bottom, transparent, var(--gold) 30%, var(--gold) 70%, transparent);
  opacity: 0.2;
}
.hero-tag { font-size: 0.6rem; letter-spacing: 0.45em; text-transform: uppercase; color: var(--gold); margin-bottom: 24px; display: flex; align-items: center; gap: 14px; }
.hero-tag::before { content: ''; width: 30px; height: 1px; background: var(--gold); }
.hero-name { font-family: 'Cormorant Garamond', serif; font-size: clamp(5rem, 12vw, 14rem); font-weight: 300; line-height: 0.9; letter-spacing: 0.06em; color: var(--gold-light); margin-bottom: 8px; }
.hero-sub { font-size: 0.58rem; letter-spacing: 0.65em; text-transform: uppercase; color: var(--gray-light); margin-bottom: 36px; padding-left: 3px; }
.hero-desc { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.4rem, 2.2vw, 2rem); font-style: italic; font-weight: 300; line-height: 1.4; color: var(--gold-pale); max-width: 560px; margin-bottom: 44px; letter-spacing: 0.04em; }
.hero-actions { display: flex; gap: 22px; align-items: center; }
.hero-content { display: flex; flex-direction: column; }
.hero-quote { display: flex; align-items: center; justify-content: center; padding: 0 24px; border-left: 1px solid var(--gold-border); }
.hero-quote-text { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.6rem, 2.5vw, 2.4rem); font-weight: 300; color: var(--gold-light); line-height: 1.25; letter-spacing: 0.03em; text-align: center; }
.hero-quote-text em { display: block; font-style: italic; color: var(--gold); }
.hero-bottle { display: flex; align-items: center; justify-content: center; opacity: 0.85; }
.hero-stats { display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--gold-border); margin-top: 32px; width: 100%; max-width: 480px; }
.hstat { padding: 12px 0; border-right: 1px solid var(--gold-border); }
.hstat:last-child { border-right: none; }
.hstat-n { font-family: 'Cormorant Garamond', serif; font-size: 1.7rem; font-weight: 400; color: var(--gold-light); line-height: 1; }
.hstat-l { font-size: 0.56rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gray); margin-top: 4px; }

/* ── BUTTONS ── */
.btn-gold { background: var(--gold); color: var(--black); font-family: 'Raleway', sans-serif; font-size: 0.63rem; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase; padding: 13px 34px; border: none; cursor: pointer; transition: all .35s; text-decoration: none; display: inline-block; }
.btn-gold:hover { background: var(--gold-light); }
.btn-outline { background: transparent; color: var(--gold-light); border: 1px solid var(--gold); font-family: 'Raleway', sans-serif; font-size: 0.63rem; font-weight: 500; letter-spacing: 0.3em; text-transform: uppercase; padding: 13px 34px; cursor: pointer; transition: all .35s; text-decoration: none; display: inline-block; }
.btn-outline:hover { background: var(--gold); color: var(--black); }
.btn-ghost { color: var(--gray-light); font-size: 0.63rem; letter-spacing: 0.22em; text-transform: uppercase; display: inline-flex; align-items: center; gap: 11px; cursor: pointer; background: none; border: none; font-family: 'Raleway', sans-serif; transition: color .3s; text-decoration: none; }
.btn-ghost:hover { color: var(--gold-light); }
.btn-ghost .ghost-line { width: 24px; height: 1px; background: currentColor; transition: width .3s; }
.btn-ghost:hover .ghost-line { width: 38px; }

/* ── SECTION COMMON ── */
.sec { padding: 64px 48px; border-bottom: 1px solid var(--gold-border); }
.sec-sm { padding: 40px 48px; border-bottom: 1px solid var(--gold-border); }
.sec-tag { font-size: 0.58rem; letter-spacing: 0.45em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; display: flex; align-items: center; gap: 14px; }
.sec-tag::before { content: '—'; color: var(--gold); opacity: 0.6; }
.sec-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 300; color: var(--gold-light); letter-spacing: 0.04em; line-height: 1.1; margin-bottom: 36px; }
.sec-title em { font-style: italic; font-weight: 300; }
.sec-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 36px; }

/* ── DIVIDER ── */
.divider { display: flex; align-items: center; gap: 24px; padding: 0 48px; }
.div-line { flex: 1; height: 1px; background: var(--gold-border); }
.div-mark { font-family: 'Cormorant Garamond', serif; font-size: 1rem; color: var(--gold); opacity: 0.5; font-style: italic; }

/* ── PRODUCT GRID ── */
.filter-pills { display: flex; gap: 8px; margin-bottom: 28px; flex-wrap: wrap; }
.pill { font-family: 'Raleway', sans-serif; font-size: 0.58rem; letter-spacing: 0.25em; text-transform: uppercase; padding: 7px 17px; border: 1px solid var(--gold-border); background: transparent; color: var(--gray-light); cursor: pointer; transition: all .3s; }
.pill:hover { border-color: var(--gold); color: var(--gold-light); }
.pill.active { background: var(--gold); color: var(--black); border-color: var(--gold); }

.search-wrap { margin-bottom: 28px; }
.search-input { width: 100%; max-width: 400px; font-family: 'Raleway', sans-serif; font-size: 0.82rem; padding: 10px 16px; border: 1px solid var(--gold-border); background: var(--black); color: var(--gold-light); letter-spacing: 0.05em; outline: none; }
.search-input:focus { border-color: var(--gold); }
.search-input::placeholder { color: var(--gray); }

.pgrid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1px; background: var(--gold-border); }
.pcard { background: var(--black); cursor: pointer; transition: background .25s; text-decoration: none; display: block; }
.pcard:hover { background: var(--deep); }
.pcard-img { height: 260px; display: flex; align-items: center; justify-content: center; border-bottom: 1px solid var(--gold-border); position: relative; overflow: hidden; transition: filter .3s; }
.pcard:hover .pcard-img { filter: brightness(1.12); }
.pcard-glow { position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 55%, rgba(168,145,58,0.13) 0%, transparent 70%); pointer-events: none; transition: opacity .3s; }
.pcard:hover .pcard-glow { opacity: 1.6; }
.pcard-badge { position: absolute; top: 12px; left: 12px; font-size: 0.52rem; letter-spacing: 0.25em; text-transform: uppercase; padding: 3px 10px; font-weight: 500; }
.badge-hit { background: var(--gold); color: var(--black); }
.badge-new { border: 1px solid var(--gold); color: var(--gold-light); }
.pcard-body { padding: 18px 16px; }
.pcard-name { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 400; color: var(--gold-light); margin-bottom: 4px; letter-spacing: 0.04em; }
.pcard-notes { font-size: 0.63rem; letter-spacing: 0.1em; color: var(--gray); margin-bottom: 12px; line-height: 1.5; }
.pcard-footer { display: flex; align-items: center; justify-content: space-between; }
.pcard-price { font-size: 0.82rem; color: var(--gold); letter-spacing: 0.05em; }
.pcard-btn { font-family: 'Raleway', sans-serif; font-size: 0.53rem; letter-spacing: 0.25em; text-transform: uppercase; background: transparent; color: var(--gold-light); border: 1px solid var(--gold-border); padding: 9px 13px; cursor: pointer; transition: all .3s; min-height: 44px; }
.pcard-btn:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }

/* ── VOLUME CARDS ── */
.vol-cards { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; margin-bottom: 28px; }
.vc { border: 1px solid var(--gold-border); background: transparent; padding: 14px 8px; cursor: pointer; transition: all .3s; display: flex; flex-direction: column; align-items: center; gap: 7px; font-family: 'Raleway', sans-serif; width: 100%; }
.vc:hover { border-color: var(--gold); background: rgba(168,145,58,0.05); }
.vc.active { background: var(--gold); border-color: var(--gold); }
.vc.active .vc-ml, .vc.active .vc-total { color: var(--black); }
.vc.active .vc-label { color: var(--black); opacity: 0.7; }
.vc.active .vc-disc { background: var(--black); color: var(--gold); }
.vc-ml { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 400; color: var(--gold-light); line-height: 1; }
.vc-label { font-size: 0.52rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gray); }
.vc-disc { font-size: 0.48rem; letter-spacing: 0.15em; text-transform: uppercase; background: var(--gold-dim); color: var(--gold); padding: 2px 6px; font-weight: 600; border: 1px solid var(--gold-border); }
.vc-old { font-size: 0.6rem; color: var(--gray); text-decoration: line-through; min-height: 14px; }
.vc-total { font-size: 0.72rem; font-weight: 500; color: var(--gold-light); }

/* ── PRICE DISPLAY ── */
.price-display { display: flex; align-items: flex-end; gap: 16px; margin-bottom: 24px; flex-wrap: wrap; }
.price-big { font-family: 'Cormorant Garamond', serif; font-size: 3.5rem; font-weight: 300; color: var(--gold-light); line-height: 1; }
.price-detail { display: flex; flex-direction: column; gap: 3px; padding-bottom: 6px; }
.price-pml { font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gray); }
.price-save { font-size: 0.72rem; color: var(--gold); }

/* ── FORMS ── */
.form-group { margin-bottom: 16px; }
.f-label { font-size: 0.56rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gray); display: block; margin-bottom: 6px; }
.f-input { width: 100%; font-family: 'Raleway', sans-serif; font-size: 0.85rem; padding: 11px 14px; border: 1px solid var(--gold-border); background: var(--black); color: var(--gold-light); font-weight: 300; outline: none; }
.f-input:focus { border-color: var(--gold); }
.f-input::placeholder { color: var(--gray); }
.f-select { width: 100%; font-family: 'Raleway', sans-serif; font-size: 0.85rem; padding: 11px 14px; border: 1px solid var(--gold-border); background: var(--black); color: var(--gold-light); outline: none; cursor: pointer; }
.f-select:focus { border-color: var(--gold); }
.f-textarea { width: 100%; font-family: 'Raleway', sans-serif; font-size: 0.85rem; padding: 11px 14px; border: 1px solid var(--gold-border); background: var(--black); color: var(--gold-light); font-weight: 300; outline: none; resize: vertical; min-height: 90px; }
.f-textarea:focus { border-color: var(--gold); }
.f-textarea::placeholder { color: var(--gray); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-error { font-size: 0.72rem; color: #c0392b; margin-top: 4px; letter-spacing: 0.05em; }
.form-success { font-size: 0.75rem; color: var(--gold); border-left: 2px solid var(--gold); padding-left: 12px; margin-top: 12px; letter-spacing: 0.05em; }

/* ── CART ── */
.cart-wrap { display: grid; grid-template-columns: 1fr 360px; gap: 1px; background: var(--gold-border); align-items: start; }
.cart-items { background: var(--black); }
.cart-sidebar { background: var(--deep); position: sticky; top: 96px; }
.cart-item { display: flex; gap: 16px; padding: 20px 24px; border-bottom: 1px solid var(--gold-border); align-items: center; }
.cart-item-info { flex: 1; }
.cart-item-name { font-family: 'Cormorant Garamond', serif; font-size: 1rem; color: var(--gold-light); margin-bottom: 3px; }
.cart-item-meta { font-size: 0.62rem; color: var(--gray); letter-spacing: 0.1em; }
.cart-item-price { font-size: 0.88rem; color: var(--gold); font-weight: 500; white-space: nowrap; }
.cart-item-remove { background: none; border: none; color: var(--gray); cursor: pointer; font-size: 1rem; transition: color .2s; padding: 8px; min-width: 36px; min-height: 36px; }
.cart-item-remove:hover { color: var(--gold-light); }
.cart-qty { display: flex; align-items: center; gap: 8px; }
.qty-btn { width: 44px; height: 44px; border: 1px solid var(--gold-border); background: transparent; color: var(--gold-light); cursor: pointer; font-size: 0.9rem; transition: all .2s; display: flex; align-items: center; justify-content: center; }
.qty-btn:hover { border-color: var(--gold); }
.qty-val { font-size: 0.82rem; color: var(--gold-light); min-width: 20px; text-align: center; }
.cart-empty { padding: 64px 24px; text-align: center; }
.cart-empty-title { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; color: var(--gold-light); margin-bottom: 12px; }
.cart-empty-sub { font-size: 0.8rem; color: var(--gray); margin-bottom: 28px; }
.order-summary { padding: 28px 24px; }
.summary-title { font-size: 0.6rem; letter-spacing: 0.35em; text-transform: uppercase; color: var(--gray); margin-bottom: 20px; }
.summary-row { display: flex; justify-content: space-between; margin-bottom: 10px; font-size: 0.82rem; color: var(--gray-light); }
.summary-total { display: flex; justify-content: space-between; padding-top: 14px; border-top: 1px solid var(--gold-border); margin-top: 14px; }
.summary-total-label { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gray-light); }
.summary-total-val { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; color: var(--gold-light); }

/* ── STEPS (process) ── */
.proc-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 0; border: 1px solid var(--gold-border); }
.pstep { padding: 28px 24px; border-right: 1px solid var(--gold-border); }
.pstep:last-child { border-right: none; }
.pstep-n { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 300; color: var(--gold); opacity: 0.35; margin-bottom: 14px; line-height: 1; }
.pstep-t { font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 8px; font-weight: 500; }
.pstep-d { font-size: 0.8rem; color: var(--gray-light); line-height: 1.7; }

/* ── ACCOUNT ── */
.account-wrap { display: grid; grid-template-columns: 220px 1fr; gap: 1px; background: var(--gold-border); min-height: 500px; }
.account-sidebar { background: var(--deep); padding: 32px 24px; }
.account-nav a { display: block; font-size: 0.62rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gray-light); text-decoration: none; padding: 10px 0; border-bottom: 1px solid var(--gold-border); transition: color .25s; }
.account-nav a:last-child { border-bottom: none; }
.account-nav a:hover, .account-nav a.active { color: var(--gold-light); }
.account-content { background: var(--black); padding: 40px 48px; }

/* ── ORDERS TABLE ── */
.orders-table { width: 100%; border-collapse: collapse; }
.orders-table th { font-size: 0.56rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gray); padding: 10px 12px; text-align: left; border-bottom: 1px solid var(--gold-border); font-weight: 400; }
.orders-table td { font-size: 0.78rem; color: var(--gray-light); padding: 14px 12px; border-bottom: 1px solid var(--gold-border); }
.order-status { display: inline-block; font-size: 0.52rem; letter-spacing: 0.2em; text-transform: uppercase; padding: 3px 8px; }
.status-new { border: 1px solid var(--gold); color: var(--gold-light); }
.status-processing { background: rgba(168,145,58,0.2); color: var(--gold-light); }
.status-shipped { background: rgba(58,110,74,0.3); color: #6ec98a; }
.status-delivered { background: rgba(58,110,74,0.5); color: #6ec98a; }
.status-cancelled { background: rgba(139,34,34,0.3); color: #e88; }

/* ── FOOTER ── */
.footer { display: flex; align-items: center; justify-content: space-between; padding: 22px 48px; border-top: 1px solid var(--gold-border); flex-wrap: wrap; gap: 12px; }
.f-logo { font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; letter-spacing: 0.2em; color: var(--gold-light); }
.f-copy { font-size: 0.58rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gray); }
.f-socials { display: flex; gap: 12px; }
.f-soc { font-size: 0.58rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gray-light); text-decoration: none; transition: color .3s; }
.f-soc:hover { color: var(--gold-light); }

/* ── TOAST ── */
.toast { position: fixed; bottom: 32px; right: 32px; z-index: 9999; background: var(--deep); border: 1px solid var(--gold-border); padding: 14px 22px; font-size: 0.75rem; color: var(--gold-light); letter-spacing: 0.1em; transform: translateY(80px); opacity: 0; transition: all .4s; max-width: 300px; }
.toast.show { transform: none; opacity: 1; }

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.vis { opacity: 1; transform: none; }

/* ── BREADCRUMB ── */
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gray); margin-bottom: 32px; }
.breadcrumb a { color: var(--gray); text-decoration: none; transition: color .2s; }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb span { color: var(--gold-dim); }

/* ── PRODUCT DETAIL ── */
.product-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--gold-border); }
.product-visual { background: var(--deep); display: flex; align-items: center; justify-content: center; min-height: 480px; }
.product-info { background: var(--black); padding: 48px 40px; }
.product-brand { font-size: 0.6rem; letter-spacing: 0.4em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.product-name { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 300; color: var(--gold-light); margin-bottom: 8px; line-height: 1.1; }
.product-notes { font-size: 0.72rem; letter-spacing: 0.1em; color: var(--gray); margin-bottom: 20px; }
.product-desc { font-size: 0.88rem; color: var(--gray-light); line-height: 1.8; margin-bottom: 28px; border-left: 1px solid var(--gold-dim); padding-left: 18px; }

/* ── MISC ── */
.text-gold { color: var(--gold-light); }
.text-gray { color: var(--gray); }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }

/* ── LOADING ── */
.loading { text-align: center; padding: 64px; font-size: 0.7rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gray); }

/* ── CART PAGE ── */
.cart-page-wrap { margin: 0 48px 64px; }

/* ── CHECKOUT ── */
.checkout-wrap { display: grid; grid-template-columns: 1fr 360px; gap: 1px; background: var(--gold-border); margin: 0 48px 64px; }

/* ── ACCOUNT / AUTH ── */
.page-inner { margin: 0 48px 64px; }
.auth-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--gold-border); max-width: 800px; }

/* ── BURGER ── */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px 4px;
  margin-left: 8px;
}
.burger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--gold-light);
  transition: all .3s;
  transform-origin: center;
}
.burger.active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ── MOBILE MENU ── */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 400;
  background: rgba(5,5,5,0.99);
  display: flex;
  flex-direction: column;
  padding: 24px 28px 48px;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
}
.mobile-menu.open { transform: none; }
.mm-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 48px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--gold-border);
}
.mm-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  letter-spacing: 0.2em;
  color: var(--gold-light);
  text-decoration: none;
}
.mm-close {
  background: none;
  border: none;
  color: var(--gray-light);
  font-size: 1.4rem;
  cursor: pointer;
  line-height: 1;
  padding: 4px 8px;
  transition: color .2s;
}
.mm-close:hover { color: var(--gold-light); }
.mm-links {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.mm-links a {
  font-family: 'Raleway', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gray-light);
  text-decoration: none;
  padding: 22px 0;
  border-bottom: 1px solid var(--gold-border);
  transition: color .2s;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mm-links a:last-child { border-bottom: none; }
.mm-links a:hover { color: var(--gold-light); }
.mm-links a::after {
  content: '→';
  opacity: 0.3;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-style: italic;
}
.mm-footer {
  margin-top: 40px;
  display: flex;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid var(--gold-border);
}
.mm-footer a {
  font-size: 0.58rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gray);
  text-decoration: none;
  transition: color .2s;
}
.mm-footer a:hover { color: var(--gold-light); }

/* ── RESPONSIVE 768px ── */
@media (max-width: 768px) {
  /* Nav */
  .nav { padding: 14px 20px; }
  .nav-links { display: none; }
  .nav-user { display: none !important; }
  .burger { display: flex; }
  .page { padding-top: 64px; }

  /* Hero */
  .hero { padding: 40px 20px 56px; grid-template-columns: 1fr; }
  .hero-bottle { display: none; }
  .hero-quote { display: none; }
  .hero-name { font-size: clamp(2.8rem, 13vw, 5rem); margin-bottom: 6px; }
  .hero-desc { font-size: 0.85rem; margin-bottom: 32px; max-width: 100%; }
  .hero-actions { flex-direction: column; align-items: center; gap: 12px; }
  .hero-actions .btn-gold, .hero-actions .btn-ghost { width: 100%; max-width: 280px; text-align: center; justify-content: center; }
  .hero-stats { margin-top: 36px; }
  .hstat { padding: 12px 6px; }
  .hstat-n { font-size: 1.3rem; }
  .hstat-l { font-size: 0.5rem; letter-spacing: 0.12em; }

  /* Sections */
  .sec { padding: 40px 20px; }
  .sec-sm { padding: 28px 20px; }
  .sec-header { flex-direction: column; align-items: flex-start; gap: 14px; margin-bottom: 24px; }
  .sec-title { font-size: clamp(1.6rem, 6vw, 2.4rem); margin-bottom: 24px; }
  .divider { padding: 0 20px; }

  /* Filter pills */
  .filter-pills { flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch; padding-bottom: 4px; }
  .filter-pills::-webkit-scrollbar { height: 2px; }

  /* Search */
  .search-input { max-width: 100%; }

  /* Product grid */
  .pgrid { grid-template-columns: repeat(2, 1fr); }
  .pcard-img { height: 180px; }
  .pcard-body { padding: 14px 12px; }
  .pcard-name { font-size: 0.95rem; }

  /* Vol cards */
  .vol-cards { grid-template-columns: repeat(3, 1fr); gap: 6px; margin-bottom: 20px; }
  .vc { padding: 12px 6px; gap: 5px; }
  .vc-ml { font-size: 1.2rem; }
  .vc-label { font-size: 0.46rem; }
  .vc-total { font-size: 0.66rem; }

  /* Steps — 2 columns */
  .proc-steps { grid-template-columns: 1fr 1fr; }
  .pstep { border-right: none; border-bottom: 1px solid var(--gold-border); }
  .pstep:nth-child(odd) { border-right: 1px solid var(--gold-border); }
  .pstep:last-child { border-bottom: none; }

  /* Product detail */
  .product-detail { grid-template-columns: 1fr; }
  #product-wrap { margin: 0 !important; }
  .product-visual { min-height: 240px; }
  .product-info { padding: 28px 20px; }

  /* Cart / Checkout / Account */
  .cart-page-wrap { margin: 0 0 40px; }
  .checkout-wrap { grid-template-columns: 1fr; margin: 0 0 40px; }
  .page-inner { margin: 0 0 40px; }
  .auth-grid { grid-template-columns: 1fr; }
  .cart-wrap { grid-template-columns: 1fr; }
  .cart-sidebar { position: static; }
  .cart-item { padding: 14px 16px; gap: 12px; }
  .cart-item-name { font-size: 0.9rem; }

  /* Account */
  .account-wrap { grid-template-columns: 1fr; }
  .account-sidebar { padding: 20px; }
  .account-nav { display: flex; flex-wrap: wrap; }
  .account-nav a { flex: 1 0 45%; padding: 10px 0; }
  .account-content { padding: 24px 20px; }

  /* Forms */
  .form-row { grid-template-columns: 1fr; }

  /* Admin */
  .admin-grid { grid-template-columns: 1fr; gap: 0; }
  .admin-side { padding: 14px 16px; }
  .admin-side-title { display: none; }
  .admin-nav { display: flex; flex-wrap: wrap; gap: 4px; }
  .admin-nav a {
    padding: 6px 12px;
    border-bottom: none !important;
    border: 1px solid var(--gold-border);
    font-size: 0.52rem;
  }
  .admin-main { padding: 24px 16px; }
  .stat-cards { grid-template-columns: repeat(2, 1fr); }
  .stat-card { padding: 14px 12px; }
  .stat-card-val { font-size: 1.5rem; }
  .prod-form { grid-template-columns: 1fr; }
  .prod-form .full { grid-column: 1; }
  .modal-box { padding: 24px 20px; margin: 0 12px; max-height: 95vh; }
  #all-orders, #recent-orders, #products-list { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .admin-table { min-width: 540px; }

  /* Footer */
  .footer { padding: 20px; flex-direction: column; align-items: center; text-align: center; gap: 10px; }

  /* Toast */
  .toast { bottom: 16px; right: 12px; left: 12px; max-width: none; text-align: center; }
}

/* ── RESPONSIVE 480px ── */
@media (max-width: 480px) {
  .hero { padding: 32px 16px 48px; }
  .hero-name { font-size: clamp(2.4rem, 16vw, 3.5rem); }
  .hstat-n { font-size: 1.05rem; }
  .hstat-l { font-size: 0.46rem; letter-spacing: 0.08em; }

  .pgrid { grid-template-columns: 1fr 1fr; }
  .pcard-img { height: 155px; }
  .pcard-name { font-size: 0.85rem; }
  .pcard-notes { font-size: 0.58rem; }
  .pcard-footer { flex-direction: column; align-items: flex-start; gap: 6px; }
  .pcard-btn { width: 100%; text-align: center; padding: 7px; }

  .vol-cards { grid-template-columns: repeat(2, 1fr); gap: 4px; }
  .vc { padding: 10px 4px; }
  .vc-ml { font-size: 1rem; }
  .vc-disc { font-size: 0.4rem; padding: 2px 4px; }
  .vc-total { font-size: 0.6rem; }
  .vc-old { font-size: 0.5rem; }

  .proc-steps { grid-template-columns: 1fr; }
  .pstep { border-right: none !important; border-bottom: 1px solid var(--gold-border); }
  .pstep:last-child { border-bottom: none; }

  .price-big { font-size: 2.6rem; }

  .stat-cards { grid-template-columns: repeat(2, 1fr); }
  .admin-table { min-width: 480px; font-size: 0.62rem; }
  .admin-table th { font-size: 0.44rem; padding: 7px 6px; }
  .admin-table td { padding: 9px 6px; }
}
