/* Theme vars — overridden at runtime from STORE_CONFIG.theme */
:root {
  --ink:       #141010;
  --copper:    #b5601a;
  --sand:      #f5ede0;
  --sand-mid:  #e8d8c4;
  --sand-dark: #d0bda0;
  --white:     #fdfaf6;
  --muted:     #7a6a58;
  --green:     #25D366;
  --bg-modal:  #f0ece4;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { background: var(--white); }
body { font-family: 'Lora', serif; background: var(--white); color: var(--ink); min-height: 100vh; }

/* ── POPUP EVENT BANNER ── */
.popup-banner { background: var(--copper); color: var(--white); padding: 0; overflow: hidden; }
.popup-banner-inner { display: flex; align-items: stretch; }
.popup-banner-date { background: rgba(0,0,0,.2); padding: 14px 20px; display: flex; flex-direction: column; align-items: center; justify-content: center; flex-shrink: 0; }
.popup-banner-day { font-size: 1.6rem; font-weight: 600; line-height: 1; }
.popup-banner-month { font-size: .65rem; letter-spacing: .1em; text-transform: uppercase; margin-top: 2px; }
.popup-banner-info { padding: 12px 16px; display: flex; flex-direction: column; justify-content: center; gap: 2px; }
.popup-banner-title { font-size: .78rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }
.popup-banner-details { font-size: .72rem; opacity: .88; line-height: 1.4; }
.popup-banner-cta { margin-left: auto; padding: 12px 16px; display: flex; align-items: center; flex-shrink: 0; }
.popup-reserve-btn { background: var(--white); color: var(--copper); border: none; padding: 8px 14px; font-family: 'DM Sans', sans-serif; font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; cursor: pointer; border-radius: 2px; white-space: nowrap; transition: opacity .15s; }
.popup-reserve-btn:hover { opacity: .88; }

/* ── TOPBAR & NAV ── */
.topbar { background: var(--ink); color: var(--sand); text-align: center; padding: 8px; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; }
nav { display: flex; align-items: center; justify-content: space-between; padding: 0 40px; height: 64px; border-bottom: 1px solid var(--sand-mid); background: var(--white); position: sticky; top: 0; z-index: 50; }
.logo { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 300; letter-spacing: .12em; text-transform: uppercase; color: var(--ink); text-decoration: none; }
.logo em { color: var(--copper); font-style: normal; }
.nav-center { display: flex; gap: 32px; list-style: none; }
.nav-center a { font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); text-decoration: none; transition: color .2s; }
.nav-center a:hover { color: var(--ink); }
.nav-right { display: flex; gap: 16px; align-items: center; }
.icon-btn { background: none; border: none; cursor: pointer; font-size: 1.1rem; color: var(--ink); padding: 4px; }

/* ── PAGE HEADER & FILTERS ── */
.page-header { padding: 36px 40px 16px; display: flex; align-items: baseline; justify-content: space-between; }
.page-title { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 300; font-style: italic; }
.page-count { font-size: .8rem; color: var(--muted); }
.filter-bar { padding: 0 40px 20px; display: flex; gap: 0; flex-wrap: wrap; border-bottom: 1px solid var(--sand-mid); margin-bottom: 8px; }
.filter-pill { padding: 8px 18px; border: none; background: none; font-family: 'Lora', serif; font-size: .78rem; letter-spacing: .04em; cursor: pointer; color: var(--muted); transition: color .15s; border-bottom: 2px solid transparent; margin-bottom: -1px; font-style: italic; }
.filter-pill:hover { color: var(--ink); }
.filter-pill.active { color: var(--ink); border-bottom-color: var(--copper); font-style: normal; font-weight: 500; }

/* ── PRODUCT GRID ── */
.product-grid { display: grid; grid-template-columns: repeat(var(--grid-cols, 4), 1fr); gap: 1px; background: var(--white); margin: 0 40px 60px; }
.p-card { background: var(--white); cursor: pointer; position: relative; overflow: hidden; display: flex; flex-direction: column; }
.p-card:hover .card-overlay { opacity: 1; }
.p-card:hover .p-visual-inner { transform: scale(1.03); }
.p-visual { width: 100%; aspect-ratio: 2/3; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.p-visual-inner { display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; transition: transform .4s ease; }
.card-overlay { position: absolute; inset: 0; display: flex; align-items: flex-end; justify-content: center; padding-bottom: 16px; opacity: 0; transition: opacity .25s; background: linear-gradient(to top, rgba(20,16,16,.22) 0%, transparent 55%); }
.complete-look-btn { background: var(--white); color: var(--ink); border: none; padding: 11px 20px; font-family: 'DM Sans', sans-serif; font-size: .73rem; font-weight: 600; letter-spacing: .09em; text-transform: uppercase; cursor: pointer; }
.card-badge { position: absolute; top: 12px; left: 12px; background: rgba(253,250,244,.92); color: var(--ink); font-size: .58rem; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; padding: 4px 9px; }
.stock-badge { position: absolute; top: 12px; right: 12px; background: rgba(253,250,244,.92); color: var(--muted); font-size: .56rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; padding: 4px 8px; }
.p-info { padding: 10px 14px 14px; flex: 1; display: flex; flex-direction: column; }
.p-tag { font-size: .65rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: 3px; }
.p-name { font-size: .87rem; font-weight: 500; margin-bottom: 4px; }
.p-price { font-size: .84rem; color: var(--copper); font-weight: 600; }
.p-stock { font-size: .64rem; font-weight: 500; letter-spacing: .06em; margin-top: 5px; color: var(--muted); }
.p-stock.low, .p-stock.last { color: var(--muted); }

/* ══════════════════════════════════
   OUTFIT MODAL
══════════════════════════════════ */
.look-overlay { position: fixed; inset: 0; background: rgba(20,16,16,.6); z-index: 300; display: flex; align-items: flex-end; justify-content: center; opacity: 0; pointer-events: none; transition: opacity .28s; }
.look-overlay.open { opacity: 1; pointer-events: all; }
.look-sheet { width: 100%; max-width: 560px; background: var(--bg-modal); border-radius: 24px 24px 0 0; overflow: hidden; transform: translateY(40px); transition: transform .32s cubic-bezier(.25,.46,.45,.94); display: flex; flex-direction: column; height: 92vh; }
.look-overlay.open .look-sheet { transform: translateY(0); }

.sheet-handle { width: 36px; height: 4px; background: var(--sand-dark); border-radius: 2px; margin: 14px auto 0; flex-shrink: 0; }

.sheet-topbar { display: flex; align-items: center; justify-content: space-between; padding: 12px 20px 10px; flex-shrink: 0; }
.sheet-close { width: 38px; height: 38px; border-radius: 50%; background: var(--sand-mid); color: var(--ink); border: none; font-size: .95rem; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.sheet-title-area { text-align: center; flex: 1; }
.sheet-title { font-family: 'Cormorant Garamond', serif; font-size: 1.35rem; font-style: italic; font-weight: 400; color: var(--ink); display: block; }
.sheet-subtitle { font-size: .68rem; color: var(--muted); margin-top: 1px; display: block; }
.sheet-wa-btn { width: 38px; height: 38px; border-radius: 50%; background: transparent; color: var(--muted); border: 1px solid var(--sand-dark); font-size: .9rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: border-color .2s, color .2s; }
.sheet-wa-btn:hover { border-color: var(--ink); color: var(--ink); }

/* ── INSPO STRIP ── */
.inspo-strip { flex-shrink: 0; padding: 6px 20px 4px; border-bottom: 1px solid var(--sand-mid); }
.inspo-label { font-size: .62rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; display: block; }
.inspo-row { display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none; }
.inspo-row::-webkit-scrollbar { display: none; }
.inspo-card { flex-shrink: 0; width: 84px; cursor: pointer; border-radius: 8px; overflow: hidden; border: 2px solid transparent; transition: all .2s; background: var(--white); }
.inspo-card:hover { transform: translateY(-2px); }
.inspo-card.active { border-color: var(--copper); }
.inspo-card-flat { position: relative; width: 100%; height: 96px; background: #fff; overflow: hidden; }
.ifl-hero, .ifl-shoes { position: absolute; }
.ifl-hero  { width: 58%; height: 100%; bottom: 0; left: 50%; transform: translateX(-50%); }
.ifl-shoes { width: 56%; height: 54%; bottom: 0; right: -4px; transform: rotate(-10deg); }
.ifl-hero img, .ifl-shoes img { display: block; width: 100%; height: 100%; object-fit: contain; }
.inspo-card-name  { font-size: .65rem; padding: 4px 5px 1px; font-weight: 500; color: var(--ink); line-height: 1.2; }
.inspo-card-price { font-size: .63rem; color: var(--copper); padding: 0 5px 4px; font-weight: 600; }

/* ── SCROLLABLE BODY ── */
.sheet-body { flex: 1; overflow-y: auto; display: flex; flex-direction: column; scrollbar-width: none; }
.sheet-body::-webkit-scrollbar { display: none; }

.outfit-nudge { background: transparent; color: var(--muted); text-align: center; padding: 8px 16px 2px; font-size: .72rem; letter-spacing: .02em; line-height: 1.5; flex-shrink: 0; font-style: italic; }
.outfit-nudge strong { color: var(--copper); font-style: normal; }

.outfit-progress { display: flex; align-items: center; justify-content: center; gap: 4px; padding: 7px 20px 6px; flex-shrink: 0; background: var(--bg-modal); }
.progress-step { display: flex; flex-direction: column; align-items: center; gap: 2px; flex: 1; }
.progress-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--sand-dark); transition: all .2s; }
.progress-dot.done   { background: var(--ink); }
.progress-dot.active { background: var(--copper); }
.progress-label { font-size: .5rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); text-align: center; margin-top: 5px; }
.progress-line { width: 28px; height: 1px; background: var(--sand-dark); margin-bottom: 12px; flex-shrink: 0; transition: background .2s; }
.progress-line.done { background: var(--ink); }

/* stacked canvas */
.sheet-canvas { padding: 8px 20px 12px; display: flex; flex-direction: column; align-items: center; gap: 0; background: var(--bg-modal); }
.stacked-piece { position: relative; width: 100%; display: flex; justify-content: center; animation: slideIn .3s ease; }
@keyframes slideIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.stacked-piece-img { width: 260px; display: flex; align-items: center; justify-content: center; padding: 10px 0; }
.piece-controls { position: absolute; right: 4px; top: 50%; transform: translateY(-50%); display: flex; flex-direction: column; gap: 7px; }
.ctrl-btn { width: 42px; height: 42px; border-radius: 50%; background: var(--ink); color: white; border: none; font-size: 1.3rem; cursor: pointer; display: flex; align-items: center; justify-content: center; font-weight: 300; line-height: 1; transition: background .15s; box-shadow: 0 2px 8px rgba(0,0,0,.22); }
.ctrl-btn:hover { background: #2e2828; }
.piece-divider { width: 180px; height: 1px; background: var(--sand-dark); margin: 0 auto; opacity: .4; }
.piece-label { font-size: .66rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); text-align: center; padding: 2px 0 6px; }

/* ── THE LOOK (full-look overview, shown when inspo card is tapped) ──
   Editorial grid: cut-outs floating on white, whisper labels, no chrome */
.canvas-look { display: flex; width: 100%; height: 380px; background: var(--white); padding: 20px 14px 14px; gap: 12px; animation: slideIn .3s ease; flex-shrink: 0; }
.canvas-look--solo { justify-content: center; }
.ml-hero { flex: 1.3; display: flex; flex-direction: column; min-width: 0; }
.canvas-look--solo .ml-hero { flex: 0 1 300px; }
.ml-side { flex: 1; display: flex; flex-direction: column; gap: 12px; min-width: 0; }
.ml-cell { flex: 1; display: flex; flex-direction: column; min-height: 0; }
.ml-img { flex: 1; display: flex; align-items: center; justify-content: center; min-height: 0; padding: 2px; }
.ml-img svg { max-width: 100%; max-height: 100%; width: auto; height: 100%; }
.ml-cap { display: flex; align-items: baseline; justify-content: center; gap: 6px; padding: 8px 2px 0; min-width: 0; }
.ml-name { font-family: 'DM Sans', sans-serif; font-size: .56rem; letter-spacing: .07em; text-transform: uppercase; color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ml-price { font-family: 'DM Sans', sans-serif; font-size: .6rem; font-weight: 600; color: var(--ink); }
.ml-ctrl { border: none; background: none; padding: 0 0 0 3px; font-size: .62rem; color: var(--sand-dark); cursor: pointer; line-height: 1; transition: color .15s; }
.ml-ctrl:hover { color: var(--ink); }

/* ── TABS ── */
.tabs-section { flex-shrink: 0; border-top: 1px solid var(--sand-dark); }
.tabs-header { display: flex; border-bottom: 1px solid var(--sand-dark); background: var(--bg-modal); }
.outfit-tab { flex: 1; padding: 13px 6px; background: none; border: none; font-family: 'DM Sans', sans-serif; font-size: .75rem; font-weight: 500; letter-spacing: .05em; text-transform: uppercase; color: var(--muted); cursor: pointer; border-bottom: 2.5px solid transparent; margin-bottom: -1px; transition: all .15s; }
.outfit-tab:hover { color: var(--ink); }
.outfit-tab.active { color: var(--ink); border-bottom-color: var(--ink); font-weight: 600; }
.tab-panel { display: none; padding: 14px 20px 16px; }
.tab-panel.active { display: block; }
.tab-panel-title { font-size: .65rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; display: block; }
.add-items-row { display: flex; gap: 10px; overflow-x: auto; padding-bottom: 4px; scrollbar-width: none; }
.add-items-row::-webkit-scrollbar { display: none; }
.add-item { flex-shrink: 0; width: 104px; cursor: pointer; border: 2px solid transparent; transition: all .15s; border-radius: 6px; background: var(--white); }
.add-item:hover  { border-color: var(--sand-dark); transform: translateY(-2px); }
.add-item.active { border-color: var(--ink); }
.add-item-thumb { width: 100px; height: 120px; background: var(--white); display: flex; align-items: center; justify-content: center; overflow: hidden; border-radius: 4px 4px 0 0; }
.add-item-name  { font-size: .7rem; padding: 5px 5px 1px; line-height: 1.25; font-weight: 500; color: var(--ink); }
.add-item-price { font-size: .68rem; color: var(--copper); padding: 0 5px 5px; font-weight: 600; }

/* ── BOTTOM BAR ── */
.sheet-bottom { flex-shrink: 0; display: flex; align-items: center; background: var(--white); border-top: 1px solid var(--sand-mid); padding: 4px 0; }
.bottom-count { padding: 0 20px; flex-shrink: 0; line-height: 1.3; }
.bottom-count-price { font-size: 1.15rem; font-weight: 500; color: var(--ink); font-family: 'Lora', serif; }
.bottom-count-label { font-size: .65rem; color: var(--muted); display: block; font-style: italic; letter-spacing: .03em; }
.bottom-add { flex: 1; padding: 20px; background: var(--copper); color: var(--white); border: none; font-family: 'Lora', serif; font-size: .78rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; cursor: pointer; transition: opacity .2s; font-style: normal; }
.bottom-add:hover { opacity: .88; }

/* ── SWAP PICKER ── */
.swap-overlay { position: fixed; inset: 0; background: rgba(20,16,16,.55); z-index: 400; display: flex; align-items: flex-end; justify-content: center; opacity: 0; pointer-events: none; transition: opacity .22s; }
.swap-overlay.open { opacity: 1; pointer-events: all; }
.swap-sheet { width: 100%; max-width: 560px; background: var(--white); border-radius: 20px 20px 0 0; padding: 20px 20px 36px; transform: translateY(30px); transition: transform .25s ease; max-height: 75vh; overflow-y: auto; }
.swap-overlay.open .swap-sheet { transform: translateY(0); }
.swap-title { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; font-style: italic; margin-bottom: 2px; }
.swap-sub { font-size: .73rem; color: var(--muted); margin-bottom: 14px; }
.swap-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.swap-item { cursor: pointer; border: 2px solid transparent; border-radius: 6px; overflow: hidden; transition: all .15s; background: var(--sand); }
.swap-item:hover  { border-color: var(--sand-dark); }
.swap-item.chosen { border-color: var(--ink); }
.swap-thumb { width: 100%; aspect-ratio: 2/3; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.swap-name  { font-size: .7rem; padding: 5px 5px 2px; font-weight: 500; line-height: 1.25; }
.swap-price { font-size: .68rem; color: var(--copper); padding: 0 5px 6px; font-weight: 600; }
.swap-close-btn { width: 100%; margin-top: 14px; padding: 13px; background: var(--sand); border: none; font-family: 'DM Sans', sans-serif; font-size: .78rem; font-weight: 500; cursor: pointer; border-radius: 6px; }

/* ── TOAST ── */
.toast { position: fixed; bottom: 28px; left: 50%; transform: translateX(-50%) translateY(60px); background: var(--ink); color: var(--white); padding: 11px 22px; font-size: .8rem; z-index: 999; transition: transform .3s ease; white-space: nowrap; pointer-events: none; border-radius: 4px; }
.toast.show { transform: translateX(-50%) translateY(0); }

/* ── SIZE PICKER ── */
#sizePicker { padding: 0 20px; flex-shrink: 0; }
.size-row { display: flex; align-items: center; gap: 10px; padding: 12px 0; border-top: 1px solid var(--sand-mid); flex-wrap: wrap; }
.size-label { font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); flex-shrink: 0; width: 36px; }
.size-options { display: flex; gap: 6px; flex-wrap: wrap; flex: 1; }
.size-btn { padding: 5px 12px; border: 1px solid var(--sand-dark); background: none; font-family: 'Lora', serif; font-size: .75rem; color: var(--muted); cursor: pointer; transition: all .15s; }
.size-btn:hover { border-color: var(--ink); color: var(--ink); }
.size-btn.active { background: var(--ink); color: var(--white); border-color: var(--ink); }
.size-scarcity { font-size: .65rem; color: #c0392b; font-style: italic; letter-spacing: .02em; width: 100%; padding-left: 46px; }
.color-row { display: flex; align-items: center; gap: 10px; padding: 12px 0; border-top: 1px solid var(--sand-mid); flex-wrap: wrap; }
.color-label { font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); flex-shrink: 0; width: 46px; }
.color-options { display: flex; gap: 6px; flex-wrap: wrap; flex: 1; }
.color-btn { padding: 5px 12px; border: 1px solid var(--sand-dark); background: none; font-family: 'Lora', serif; font-size: .75rem; color: var(--muted); cursor: pointer; transition: all .15s; }
.color-btn:hover { border-color: var(--ink); color: var(--ink); }
.color-btn.active { background: var(--ink); color: var(--white); border-color: var(--ink); }

/* ── RELATED (main grid) ── */
#relatedSection { padding: 0 40px 48px; }
.related-grid-header { padding: 28px 0 16px; border-top: 1px solid var(--sand-mid); }
.related-grid-header span { font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); font-style: italic; }
.related-grid-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.related-card { cursor: pointer; }
.related-card:hover .related-visual { opacity: .88; }
.related-visual { border-radius: 6px; aspect-ratio: 3/4; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; transition: opacity .2s; }
.related-svg { transform: scale(.55); transform-origin: center; }
.related-scarcity { position: absolute; bottom: 0; left: 0; right: 0; background: rgba(192,57,43,.85); color: #fff; font-size: .52rem; text-align: center; padding: 3px; letter-spacing: .04em; text-transform: uppercase; }
.related-name { font-size: .78rem; color: var(--ink); margin-top: 8px; line-height: 1.3; }
.related-price { font-size: .78rem; color: var(--copper); font-weight: 500; margin-top: 3px; }
@media (max-width: 860px) { #relatedSection { padding: 0 16px 60px; } .related-grid-row { grid-template-columns: repeat(2, 1fr); } .related-grid-header { padding: 20px 0 12px; } }

/* ── RESPONSIVE ── */
@media (max-width: 860px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); margin: 0 16px 40px; }
  .page-header, .filter-bar { padding-left: 16px; padding-right: 16px; }
  nav { padding: 0 16px; }
  .nav-center { display: none; }
  .popup-banner-details { display: none; }
}

/* ════════════════════════════════
   WISHLIST
════════════════════════════════ */
.heart-btn { position: absolute; top: 10px; right: 10px; width: 32px; height: 32px; border-radius: 50%; background: rgba(255,255,255,.88); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; color: var(--ink); transition: all .2s; z-index: 2; box-shadow: 0 1px 6px rgba(0,0,0,.12); }
.heart-btn:hover { background: white; transform: scale(1.1); }
.heart-btn.wishlisted { color: #c0392b; }
.heart-btn svg { transition: fill .2s; }
.wl-badge { position: absolute; top: -4px; right: -4px; width: 17px; height: 17px; border-radius: 50%; background: var(--copper); color: white; font-size: .58rem; font-weight: 700; display: flex; align-items: center; justify-content: center; pointer-events: none; font-family: 'DM Sans', sans-serif; }
.nav-right .icon-btn { position: relative; }

.wishlist-overlay { position: fixed; inset: 0; background: rgba(20,16,16,.6); z-index: 300; display: flex; align-items: flex-end; justify-content: center; opacity: 0; pointer-events: none; transition: opacity .28s; }
.wishlist-overlay.open { opacity: 1; pointer-events: all; }
.wishlist-sheet { width: 100%; max-width: 560px; background: var(--white); border-radius: 24px 24px 0 0; padding-bottom: 32px; transform: translateY(40px); transition: transform .32s cubic-bezier(.25,.46,.45,.94); max-height: 80vh; display: flex; flex-direction: column; }
.wishlist-overlay.open .wishlist-sheet { transform: translateY(0); }
.wishlist-header { display: flex; align-items: center; justify-content: space-between; padding: 18px 20px 14px; border-bottom: 1px solid var(--sand-mid); flex-shrink: 0; }
.wishlist-title { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-style: italic; font-weight: 400; }
.wishlist-close { width: 32px; height: 32px; border-radius: 50%; background: var(--sand-mid); border: none; cursor: pointer; font-size: .85rem; display: flex; align-items: center; justify-content: center; }
.wishlist-items { flex: 1; overflow-y: auto; padding: 12px 20px; display: flex; flex-direction: column; gap: 10px; scrollbar-width: none; }
.wishlist-items::-webkit-scrollbar { display: none; }
.wl-item { display: flex; align-items: center; gap: 12px; cursor: pointer; padding: 8px; border-radius: 8px; transition: background .15s; }
.wl-item:hover { background: var(--sand); }
.wl-thumb { width: 64px; height: 80px; border-radius: 4px; overflow: hidden; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.wl-thumb img { width: 100%; height: 100%; object-fit: cover; }
.wl-info { flex: 1; }
.wl-name  { font-size: .82rem; font-weight: 500; color: var(--ink); margin-bottom: 2px; }
.wl-price { font-size: .78rem; color: var(--copper); font-weight: 600; }
.wl-oos   { font-size: .67rem; color: #c0392b; font-style: italic; margin-top: 2px; }
.wl-remove { width: 28px; height: 28px; border-radius: 50%; background: var(--sand-mid); border: none; cursor: pointer; font-size: .7rem; color: var(--muted); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background .15s; }
.wl-remove:hover { background: var(--sand-dark); }
.wl-empty { text-align: center; color: var(--muted); font-size: .82rem; font-style: italic; padding: 40px 20px; line-height: 1.7; }

/* Brand mark image shown before the wordmark (tenants with logoImage) */
.logo-mark { height: 1.35em; width: auto; vertical-align: -0.32em; margin-right: .38em; display: inline-block; }

/* On-card size chips + add to bag (tenants with cardCart) */
/* Cart controls anchor to the bottom of every card so the Add to bag
   buttons sit on one clean baseline no matter how the name/stock text wraps. */
.card-cart { margin-top: auto; padding-top: 12px; }
.card-sizes { display: flex; gap: 7px; margin: 0 0 10px; }
.card-size-btn { flex: 1; height: 34px; background: transparent; border: 1px solid var(--sand-dark); color: var(--muted); font-family: 'DM Sans', sans-serif; font-size: .7rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; cursor: pointer; transition: color .18s, border-color .18s, background .18s; }
.card-size-btn:hover { border-color: var(--ink); color: var(--ink); }
.card-size-btn.active { background: var(--ink); color: var(--white); border-color: var(--ink); }
.card-add-btn { position: relative; width: 100%; padding: 13px 8px; background: var(--ink); color: var(--white); border: none; font-family: 'DM Sans', sans-serif; font-size: .68rem; font-weight: 500; letter-spacing: .22em; text-transform: uppercase; white-space: nowrap; cursor: pointer; overflow: hidden; transition: color .3s; }
.card-add-btn span { position: relative; z-index: 1; padding-left: .22em; }
.card-add-btn::before { content: ''; position: absolute; inset: 0; background: var(--copper); transform: scaleX(0); transform-origin: left; transition: transform .32s cubic-bezier(.4,0,.2,1); }
.card-add-btn:hover::before { transform: scaleX(1); }
.card-sizes.nudge { animation: card-nudge .45s ease; }
@keyframes card-nudge { 0%,100% { transform: translateX(0); } 25% { transform: translateX(-5px); } 75% { transform: translateX(5px); } }

/* Cart footer */
.cart-footer { padding: 16px; border-top: 1px solid var(--sand-mid); background: var(--bg-modal); }
.cart-grand { font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; color: var(--ink); margin-bottom: 10px; }
.cart-wa-btn { width: 100%; background: var(--ink); color: var(--white); border: none; padding: 14px; font-family: 'DM Sans', sans-serif; font-size: .78rem; font-weight: 600; letter-spacing: .09em; text-transform: uppercase; cursor: pointer; transition: background .2s; }
.cart-wa-btn:hover { background: var(--copper); }

/* Sheet heart button */
.sheet-topbar-actions { display: flex; gap: 8px; align-items: center; }
.sheet-heart-btn { width: 38px; height: 38px; border-radius: 50%; background: transparent; color: var(--muted); border: 1px solid var(--sand-dark); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all .2s; }
.sheet-heart-btn:hover { border-color: #c0392b; color: #c0392b; }
.sheet-heart-btn.wishlisted { border-color: #c0392b; color: #c0392b; background: rgba(192,57,43,.06); }
.sheet-heart-btn svg { transition: fill .2s; }

/* ════════════════════════════════
   OCCASION FILTER
════════════════════════════════ */
.event-filter-bar { padding: 0 40px 14px; display: flex; gap: 6px; overflow-x: auto; scrollbar-width: none; }
.event-filter-bar::-webkit-scrollbar { display: none; }
.event-pill { flex-shrink: 0; padding: 6px 14px; border: 1px solid var(--sand-dark); background: none; font-family: 'DM Sans', sans-serif; font-size: .72rem; font-weight: 500; letter-spacing: .03em; cursor: pointer; color: var(--muted); transition: all .15s; border-radius: 20px; white-space: nowrap; }
.event-pill:hover { border-color: var(--ink); color: var(--ink); }
.event-pill.active { background: var(--ink); color: var(--white); border-color: var(--ink); }

/* ════════════════════════════════
   SHOP YOUR SIZE (grid filter)
════════════════════════════════ */
.grid-size-bar { padding: 0 40px 18px; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.grid-size-label { font-size: .63rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); flex-shrink: 0; }
.grid-size-options { display: flex; gap: 5px; flex-wrap: wrap; align-items: center; }
.grid-size-btn { padding: 4px 11px; border: 1px solid var(--sand-dark); background: none; font-family: 'Lora', serif; font-size: .73rem; color: var(--muted); cursor: pointer; transition: all .15s; }
.grid-size-btn:hover { border-color: var(--ink); color: var(--ink); }
.grid-size-btn.active { background: var(--ink); color: var(--white); border-color: var(--ink); }
.grid-size-divider { color: var(--sand-dark); font-size: .75rem; padding: 0 3px; user-select: none; }

/* ════════════════════════════════
   SOLD OUT & NOTIFY
════════════════════════════════ */
.soldout-badge { position: absolute; top: 12px; right: 12px; z-index: 3; background: var(--ink); color: white; font-size: .6rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 4px 9px; border-radius: 2px; }
.p-card--soldout .p-visual-inner { opacity: .38; filter: grayscale(.35); }
.p-card--soldout .p-visual::after {
  content: 'Sold out';
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 3;
  background: rgba(253,250,246,.94); color: var(--ink);
  padding: 9px 24px; font-family: 'DM Sans', sans-serif; font-size: .72rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase; white-space: nowrap; pointer-events: none;
  border: 1px solid var(--ink);
}
.notify-btn { background: var(--white); color: var(--ink); border: none; padding: 10px 18px; font-family: 'DM Sans', sans-serif; font-size: .7rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; cursor: pointer; white-space: nowrap; }

/* Grid empty state */
.grid-empty { grid-column: 1/-1; text-align: center; padding: 60px 20px; font-size: .85rem; color: var(--muted); font-style: italic; }
.grid-empty-clear { background: none; border: none; color: var(--copper); cursor: pointer; font-size: .85rem; text-decoration: underline; font-style: italic; padding: 0; }

/* ── Bottom bar: Total label ── */
.bottom-total-tag { font-size: .55rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); display: block; margin-bottom: 1px; }
.bottom-count-price { font-size: 1.25rem; }

/* ════════════════════════════════
   LOOKBOOK — THE EDIT
════════════════════════════════ */
.lookbook-section { padding: 0 40px 60px; }
.lookbook-header { padding: 36px 0 20px; }
.lookbook-label { font-size: .62rem; letter-spacing: .16em; text-transform: uppercase; color: var(--copper); margin-bottom: 6px; display: block; }
.lookbook-title { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 300; font-style: italic; color: var(--ink); }
.lookbook-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.lb-card { cursor: pointer; background: var(--white); transition: transform .22s; }
.lb-card:hover { transform: translateY(-4px); }
.lb-img { aspect-ratio: 2/3; display: flex; align-items: flex-end; justify-content: center; padding: 18px 14px 0; overflow: hidden; }
.lb-img img { max-width: 100%; height: 96%; object-fit: contain; object-position: bottom; }
.lb-text { padding: 12px 4px 0; }
.lb-occasion { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-style: italic; font-weight: 400; color: var(--ink); line-height: 1.2; }
.lb-total { font-family: 'DM Sans', sans-serif; font-size: .63rem; letter-spacing: .06em; color: var(--muted); margin-top: 2px; }
.lb-cta { padding: 8px 4px 4px; font-size: .64rem; letter-spacing: .09em; text-transform: uppercase; color: var(--ink); font-family: 'DM Sans', sans-serif; text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; text-decoration-color: var(--sand-dark); transition: text-decoration-color .15s; font-weight: 500; }
.lb-card:hover .lb-cta { text-decoration-color: var(--ink); }

@media (max-width: 860px) {
  .lookbook-section { padding: 0 16px 40px; }
  .lookbook-row { grid-template-columns: repeat(2, 1fr); }
  .event-filter-bar { padding: 0 16px 14px; }
  .grid-size-bar { padding: 0 16px 16px; }
}

/* ── Subscribe modal ──────────────────────────────────────────────────────── */
.sub-overlay { position: fixed; inset: 0; background: rgba(20,16,16,.6); z-index: 500; display: flex; align-items: flex-end; justify-content: center; opacity: 0; pointer-events: none; transition: opacity .28s; }
.sub-overlay.open { opacity: 1; pointer-events: all; }
.sub-sheet { width: 100%; max-width: 480px; background: var(--white); border-radius: 24px 24px 0 0; padding: 0 24px 32px; transform: translateY(40px); transition: transform .32s cubic-bezier(.25,.46,.45,.94); }
.sub-overlay.open .sub-sheet { transform: translateY(0); }
.sub-header { display: flex; align-items: center; justify-content: space-between; padding: 20px 0 12px; }
.sub-title { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-style: italic; font-weight: 400; color: var(--ink); }
.sub-close { width: 32px; height: 32px; border-radius: 50%; background: var(--sand-mid); border: none; cursor: pointer; font-size: .85rem; display: flex; align-items: center; justify-content: center; }
.sub-desc { font-size: .83rem; color: var(--muted); line-height: 1.55; margin-bottom: 20px; }
.sub-form { display: flex; flex-direction: column; gap: 14px; }
.sub-field { display: flex; flex-direction: column; gap: 5px; }
.sub-label { font-size: .72rem; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); font-weight: 500; }
.sub-input { border: 1px solid var(--sand-mid); border-radius: 8px; padding: 10px 13px; font-size: .9rem; font-family: inherit; background: var(--white); color: var(--ink); outline: none; transition: border-color .18s; }
.sub-input:focus { border-color: var(--copper); }
.sub-phone-wrap { display: flex; align-items: center; border: 1px solid var(--sand-mid); border-radius: 8px; overflow: hidden; transition: border-color .18s; }
.sub-phone-wrap:focus-within { border-color: var(--copper); }
.sub-phone-prefix { padding: 10px 12px; background: var(--sand); font-size: .88rem; color: var(--muted); border-right: 1px solid var(--sand-mid); white-space: nowrap; }
.sub-input-phone { border: none; border-radius: 0; flex: 1; padding: 10px 12px; }
.sub-input-phone:focus { border-color: transparent; }
.sub-checks { display: flex; flex-direction: column; gap: 8px; }
.sub-check-label { display: flex; align-items: center; gap: 9px; cursor: pointer; font-size: .84rem; color: var(--ink); }
.sub-check-label input[type="checkbox"] { width: 16px; height: 16px; accent-color: var(--copper); flex-shrink: 0; cursor: pointer; }
.sub-btn { background: var(--ink); color: var(--white); border: none; border-radius: 10px; padding: 13px 20px; font-size: .85rem; letter-spacing: .06em; text-transform: uppercase; cursor: pointer; font-family: inherit; transition: background .18s; margin-top: 4px; }
.sub-btn:hover { background: var(--copper); }
.sub-btn:disabled { opacity: .6; cursor: default; }
.sub-fine { font-size: .72rem; color: var(--muted); margin-top: 12px; line-height: 1.5; }
.sub-success { display: flex; flex-direction: column; align-items: center; gap: 10px; padding: 24px 0 8px; text-align: center; }
.sub-success-text { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-style: italic; color: var(--ink); }
.sub-success-sub { font-size: .82rem; color: var(--muted); line-height: 1.5; }

/* ── FOOTER ── */
.site-footer { margin-top: 70px; border-top: 1px solid var(--sand-mid); padding: 44px 20px 34px; text-align: center; }
.footer-logo { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 300; letter-spacing: .14em; text-transform: uppercase; color: var(--ink); }
.footer-logo em { color: var(--copper); font-style: normal; }
.footer-tag { font-size: .74rem; color: var(--muted); margin-top: 6px; font-style: italic; }
.footer-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 22px; margin-top: 18px; }
.footer-links a { font-family: 'DM Sans', sans-serif; font-size: .68rem; letter-spacing: .09em; text-transform: uppercase; color: var(--ink); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; text-decoration-color: var(--sand-dark); transition: text-decoration-color .15s; }
.footer-links a:hover { text-decoration-color: var(--ink); }
/* ── Brand cover / front door ── */
.cover { position: fixed; inset: 0; z-index: 200; background: #0d0d0d; overflow: hidden; }
.cover-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.cover-shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.42) 0%, rgba(0,0,0,.18) 32%, rgba(0,0,0,.30) 62%, rgba(0,0,0,.72) 100%); }
.cover-inner { position: absolute; left: 0; right: 0; bottom: 12vh; text-align: center; color: #fff; padding: 0 28px; }
.cover-mark { font-family: 'Cormorant Garamond', serif; font-weight: 300; font-size: clamp(3.4rem, 15vw, 6rem); line-height: .95; letter-spacing: .02em; }
.cover-tag { font-family: 'DM Sans', sans-serif; font-size: clamp(.66rem, 2.6vw, .82rem); letter-spacing: .42em; text-transform: uppercase; margin-top: 14px; opacity: .92; }
.cover-shop { display: inline-block; margin-top: 34px; background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.85); padding: 14px 40px; font-family: 'DM Sans', sans-serif; font-size: .74rem; letter-spacing: .22em; text-transform: uppercase; cursor: pointer; transition: all .25s; }
.cover-shop:hover { background: #fff; color: #131313; }
.cover-shop-dark { color: #131313; border-color: #131313; margin-top: 26px; }
.cover-shop-dark:hover { background: #131313; color: #fff; }
.cover-menu-btn { position: absolute; top: 24px; right: 24px; z-index: 3; width: 44px; height: 44px; background: none; border: none; cursor: pointer; display: flex; flex-direction: column; justify-content: center; gap: 5px; padding: 10px; }
.cover-menu-btn span { display: block; height: 1.5px; background: #fff; width: 100%; }
.cover-menu { position: absolute; top: 0; right: 0; bottom: 0; height: 100%; width: min(78vw, 340px); background: var(--white); transform: translateX(100%); transition: transform .32s cubic-bezier(.25,.46,.45,.94); z-index: 4; display: flex; flex-direction: column; justify-content: center; padding: 0 40px; gap: 4px; }
.cover-menu.open { transform: translateX(0); }
.cover-menu a { font-family: 'Cormorant Garamond', serif; font-size: 1.7rem; font-weight: 300; color: var(--ink); text-decoration: none; padding: 12px 0; border-bottom: 1px solid var(--sand-mid); transition: color .15s; }
.cover-menu a:hover { color: var(--copper); }
.cover-menu-close, .cover-about-close { position: absolute; top: 22px; right: 26px; background: none; border: none; font-size: 1.15rem; color: var(--ink); cursor: pointer; z-index: 5; }
.cover-about { position: absolute; inset: 0; background: var(--white); z-index: 6; display: flex; align-items: center; justify-content: center; padding: 40px 32px; transform: translateY(100%); transition: transform .38s cubic-bezier(.25,.46,.45,.94); }
.cover-about.open { transform: translateY(0); }
.cover-about-inner { max-width: 460px; text-align: center; }
.cover-about-label { font-family: 'DM Sans', sans-serif; font-size: .7rem; letter-spacing: .34em; text-transform: uppercase; color: var(--muted); margin-bottom: 22px; }
.cover-about-text { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.35rem, 5vw, 1.7rem); font-weight: 300; line-height: 1.5; color: var(--ink); }
.cover-about-close { color: var(--ink); }
.cover-connect { position: absolute; inset: 0; background: var(--white); z-index: 6; display: flex; align-items: center; justify-content: center; padding: 40px 32px; transform: translateY(100%); transition: transform .38s cubic-bezier(.25,.46,.45,.94); }
.cover-connect.open { transform: translateY(0); }
.cover-connect-inner { max-width: 460px; text-align: center; }
.cover-connect-icons { display: flex; align-items: center; justify-content: center; gap: 22px; margin-top: 4px; }
.cover-connect-icons a { display: flex; align-items: center; justify-content: center; width: 54px; height: 54px; border: 1px solid var(--sand-dark); border-radius: 50%; color: var(--ink); transition: all .2s; }
.cover-connect-icons a:hover { background: var(--ink); border-color: var(--ink); color: var(--white); }
body.cover-open { overflow: hidden; }

.search-bar { padding: 14px 40px; border-bottom: 1px solid var(--sand-mid); background: var(--white); }
.search-bar input { width: 100%; max-width: 420px; display: block; margin: 0 auto; border: 1px solid var(--sand-mid); border-radius: 2px; padding: 10px 14px; font-family: 'DM Sans', sans-serif; font-size: .85rem; letter-spacing: .03em; color: var(--ink); background: var(--white); outline: none; }
.search-bar input:focus { border-color: var(--ink); }
.footer-contact { margin-top: 24px; }
.footer-contact-title { font-family: 'DM Sans', sans-serif; font-size: .64rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: 9px; }
.footer-contact-row { display: flex; justify-content: center; flex-wrap: wrap; gap: 20px; }
.footer-contact-row a { font-family: 'DM Sans', sans-serif; font-size: .76rem; color: var(--ink); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; text-decoration-color: var(--sand-dark); transition: text-decoration-color .15s; }
.footer-contact-row a:hover { text-decoration-color: var(--ink); }
.footer-contact-loc { font-size: .7rem; color: var(--muted); margin-top: 7px; letter-spacing: .04em; }
.footer-contact-hours { font-size: .7rem; color: var(--muted); margin-top: 4px; letter-spacing: .04em; }
.footer-fine { font-size: .64rem; color: var(--muted); margin-top: 20px; letter-spacing: .04em; }

/* ── HERO ── */
.hero { display: flex; align-items: stretch; gap: 40px; padding: 72px 40px 8px; background: var(--white); border-bottom: 1px solid var(--sand-mid); overflow: hidden; }
.hero:empty { display: none; }
.hero-copy { flex: 1.15; display: flex; flex-direction: column; justify-content: center; padding-bottom: 64px; min-width: 0; }
.hero-kicker { font-family: 'DM Sans', sans-serif; font-size: .64rem; letter-spacing: .22em; text-transform: uppercase; color: var(--copper); margin-bottom: 22px; }
.hero-title { font-family: 'Cormorant Garamond', serif; font-style: italic; font-weight: 300; font-size: 3.1rem; line-height: 1.08; color: var(--ink); }
.hero-sub { font-size: .88rem; color: var(--muted); margin-top: 24px; max-width: 400px; line-height: 1.85; letter-spacing: .01em; }
.hero-ctas { display: flex; align-items: center; gap: 28px; margin-top: 40px; }
.hero-btn { background: var(--ink); color: #fff; border: none; padding: 14px 26px; font-family: 'DM Sans', sans-serif; font-size: .72rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; cursor: pointer; transition: background .2s; }
.hero-btn:hover { background: var(--copper); }
.hero-link { font-family: 'DM Sans', sans-serif; font-size: .7rem; letter-spacing: .09em; text-transform: uppercase; color: var(--ink); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; text-decoration-color: var(--sand-dark); transition: text-decoration-color .15s; }
.hero-link:hover { text-decoration-color: var(--ink); }
.hero-visual { flex: 1; display: flex; align-items: flex-end; justify-content: center; min-width: 0; }
.hero-visual img { max-height: 400px; max-width: 48%; width: auto; object-fit: contain; object-position: bottom; cursor: pointer; }
.hero-visual .hero-img-2 { max-height: 330px; margin-left: -24px; }
@media (max-width: 860px) {
  .hero { padding: 40px 20px 4px; gap: 18px; }
  .hero-copy { padding-bottom: 40px; }
  .hero-title { font-size: 1.9rem; }
  .hero-kicker { margin-bottom: 16px; }
  .hero-sub { font-size: .8rem; margin-top: 18px; line-height: 1.8; }
  .hero-ctas { gap: 20px; margin-top: 30px; flex-wrap: wrap; }
  .hero-btn { padding: 12px 18px; font-size: .66rem; }
  .hero-visual img { max-height: 250px; }
  .hero-visual .hero-img-2 { max-height: 200px; margin-left: -16px; }
}

/* ── PRODUCT ANGLE GALLERY ── */
.gal-viewport { width: 100%; height: 400px; display: flex; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none; border-radius: 4px; }
.gal-viewport::-webkit-scrollbar { display: none; }
.gal-slide { flex: 0 0 100%; width: 100%; height: 100%; scroll-snap-align: center; display: flex; align-items: center; justify-content: center; }
.gal-slide img { width: 100%; height: 100%; display: block; }
.gal-dots { display: flex; gap: 7px; justify-content: center; align-items: center; padding: 12px 0 2px; }
.gal-dot { width: 7px; height: 7px; border-radius: 50%; border: none; background: var(--sand-dark); cursor: pointer; padding: 0; transition: background .2s, transform .2s; }
.gal-dot.active { background: var(--ink); transform: scale(1.3); }

/* Photo pieces: a generous, rounded editorial frame (no plate, no chrome) */
.stacked-piece.is-photo .stacked-piece-img { width: 300px; height: 420px; padding: 0; border-radius: 12px; overflow: hidden; }
.stacked-piece.is-photo .gal-viewport { height: 100%; border-radius: 0; }

/* ── HERO: editorial photo variant (photo:true products) ── */
.hero-visual img.hero-photo { object-fit: cover; border-radius: 12px; width: 46%; height: 380px; max-height: 380px; }
.hero-visual img.hero-cover { object-fit: cover; border-radius: 12px; width: auto; max-width: 100%; height: 400px; max-height: 400px; }
.hero-visual .hero-img-2.hero-photo { height: 330px; max-height: 330px; margin-left: 12px; }
/* Show the whole banner uncropped (tenants with hero.fit: 'contain').
   Stacks the hero so the wide image spans full width instead of a side column. */
.hero.hero-banner { flex-direction: column; align-items: center; gap: 20px; padding-bottom: 36px; }
.hero.hero-banner .hero-copy { text-align: center; align-items: center; max-width: 620px; }
.hero.hero-banner .hero-visual-full { width: 100%; justify-content: center; align-items: center; }
.hero.hero-banner img.hero-cover.hero-cover-full { object-fit: contain; height: auto; width: auto; max-width: 100%; max-height: 460px; border-radius: 12px; }
@media (max-width: 860px) {
  .hero-visual img.hero-photo { height: 240px; max-height: 240px; }
  .hero-visual .hero-img-2.hero-photo { height: 205px; max-height: 205px; margin-left: 8px; }
  .hero.hero-banner img.hero-cover.hero-cover-full { max-height: 320px; }
}
