/* ============ SHEIN recreation — design system ============ */
:root {
  --ink: #1c1c1c;
  --paper: #ffffff;
  --bg: #f7f7f7;
  --line: #e9e9e9;
  --mut: #8b8b8b;
  --red: #f64341;
  --red-deep: #d92f2d;
  --orange: #ff7a3d;
  --amber: #ffb400;
  --grad-flash: linear-gradient(100deg, #ff5f3d, #f64341 55%, #e02f68);
  --shadow-1: 0 2px 10px rgba(0,0,0,.07);
  --shadow-2: 0 10px 34px rgba(0,0,0,.14);
  --r-sm: 4px;
  --r-md: 8px;
  --font: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, sans-serif;
  --font-disp: "Helvetica Neue", Helvetica, "Arial Narrow", Arial, sans-serif;
  --hdr-h: 64px;
  --nav-h: 44px;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--ink); background: var(--paper); font-size: 14px; line-height: 1.45; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
img, svg { display: block; max-width: 100%; }
input, select, textarea { font-family: inherit; font-size: 14px; }
ul, ol { list-style: none; }
s { color: var(--mut); font-weight: 400; }
.wrap { max-width: 1280px; margin: 0 auto; padding: 0 20px; }
.muted { color: var(--mut); }
::selection { background: #ffd9d8; }

/* icons */
.ic { width: 22px; height: 22px; flex: none; }
.ic-s { width: 17px; height: 17px; }
.ic-xs { width: 13px; height: 13px; }
.ic-l { width: 34px; height: 34px; }
.ic-xl { width: 56px; height: 56px; stroke-width: 1.2; color: #cfcfcf; }

/* buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; background: #fff; color: var(--ink); border: 1.5px solid var(--ink); padding: 10px 22px; font-weight: 700; font-size: 13px; border-radius: 3px; transition: transform .15s ease, box-shadow .15s ease, background .15s ease, opacity .15s; letter-spacing: .02em; }
.btn:hover { transform: translateY(-1px); box-shadow: 0 6px 16px rgba(0,0,0,.12); }
.btn:active { transform: translateY(0); }
.btn:disabled { opacity: .45; cursor: not-allowed; transform: none; box-shadow: none; }
.btn-black { background: var(--ink); color: #fff; }
.btn-red { background: var(--red); border-color: var(--red); color: #fff; }
.btn-white { background: #fff; border-color: #fff; color: var(--ink); }
.btn-outline { background: transparent; }
.btn-lg { padding: 14px 30px; font-size: 14px; }
.btn-mini { padding: 6px 14px; font-size: 12px; }
.btn-block { width: 100%; }

/* price */
.price { display: flex; align-items: baseline; gap: 7px; flex-wrap: wrap; }
.price b { font-size: 15px; font-weight: 800; letter-spacing: -.01em; }
.price s { font-size: 11.5px; }
.price em { font-style: normal; color: var(--red); font-weight: 800; font-size: 11.5px; }
.price-big b { font-size: 26px; }
.price-big s { font-size: 14px; }
.price-big em { font-size: 14px; background: #ffecec; padding: 2px 7px; border-radius: 3px; }
.price-flash b { color: var(--red); }

/* stars */
.stars { display: inline-flex; --sz: 12px; }
.stars-wrap { position: relative; display: inline-flex; }
.stars-off, .stars-on { display: inline-flex; gap: 1px; }
.stars svg { width: var(--sz); height: var(--sz); fill: #d8d8d8; }
.stars-fill { position: absolute; inset: 0; overflow: hidden; white-space: nowrap; }
.stars-fill svg { fill: var(--amber); }

/* ============ promo bar ============ */
.promo-bar { display: flex; align-items: center; gap: 6px; background: #fff; border-bottom: 1px solid var(--line); height: 34px; padding: 0 14px; font-size: 11.5px; letter-spacing: .04em; }
.promo-track { flex: 1; text-align: center; overflow: hidden; }
#promoMsg { display: inline-block; font-weight: 600; }
#promoMsg.flip { animation: promoIn .45s ease; }
@keyframes promoIn { from { opacity: 0; transform: translateY(9px); } to { opacity: 1; transform: none; } }
.promo-arr { padding: 4px; color: #555; border-radius: 3px; }
.promo-arr:hover { background: #f2f2f2; }
.promo-ship { display: inline-flex; align-items: center; gap: 5px; font-size: 11px; color: #444; border-left: 1px solid var(--line); padding-left: 12px; }
.promo-ship b { font-weight: 700; }

/* ============ header ============ */
.hdr { position: sticky; top: 0; z-index: 60; background: #fff; border-bottom: 1px solid var(--line); }
.hdr-in { max-width: 1280px; margin: 0 auto; padding: 0 20px; height: var(--hdr-h); display: flex; align-items: center; gap: 22px; }
.hdr-menu { display: none; }
.logo { font-family: var(--font-disp); font-size: 30px; font-weight: 900; letter-spacing: .06em; line-height: 1; }
.logo-dot { color: var(--red); }
.search { flex: 1; max-width: 620px; position: relative; display: flex; align-items: center; background: #f4f4f4; border: 1.5px solid transparent; border-radius: 24px; height: 42px; padding: 0 16px; transition: border-color .15s, background .15s; }
.search:focus-within { border-color: var(--ink); background: #fff; box-shadow: var(--shadow-1); }
.search-ic { color: #666; margin-right: 9px; }
.search input { flex: 1; border: none; outline: none; background: none; font-size: 13.5px; }
.search input::-webkit-search-cancel-button { display: none; }
.hdr-actions { display: flex; align-items: center; gap: 8px; margin-left: auto; }
.acct { position: relative; display: flex; align-items: center; gap: 7px; padding: 8px 10px; border-radius: 6px; cursor: pointer; }
.acct:hover { background: #f4f4f4; }
.acct-txt { font-size: 12.5px; font-weight: 600; max-width: 90px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.hicon { position: relative; padding: 9px; border-radius: 6px; }
.hicon:hover { background: #f4f4f4; }
.badge { position: absolute; top: 1px; right: 0; min-width: 17px; height: 17px; background: var(--red); color: #fff; font-size: 10px; font-weight: 800; border-radius: 9px; display: flex; align-items: center; justify-content: center; padding: 0 4px; }
.badge.bump { animation: bump .4s ease; }
@keyframes bump { 40% { transform: scale(1.45); } }

/* search dropdown */
.search-drop { position: absolute; top: 50px; left: 0; right: 0; background: #fff; border-radius: 12px; box-shadow: var(--shadow-2); padding: 14px 16px; z-index: 80; max-height: 430px; overflow: auto; animation: dropIn .18s ease; }
@keyframes dropIn { from { opacity: 0; transform: translateY(-6px); } }
.sd-sec h5 { font-size: 11px; text-transform: uppercase; letter-spacing: .09em; color: var(--mut); margin: 4px 0 9px; display: flex; justify-content: space-between; align-items: center; }
.sd-sec h5 button { color: var(--red); font-size: 11px; font-weight: 700; }
.sd-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }
.sd-chip { border: 1px solid var(--line); border-radius: 16px; padding: 6px 13px; font-size: 12px; background: #fafafa; transition: .15s; }
.sd-chip:hover { border-color: var(--ink); background: #fff; }
.sd-chip.hot { background: #fff3f3; border-color: #ffd4d3; color: var(--red-deep); }
.sd-cat, .sd-prod { display: flex; align-items: center; gap: 10px; padding: 8px 6px; border-radius: 8px; font-size: 13px; }
.sd-cat:hover, .sd-prod:hover { background: #f6f6f6; }
.sd-cat i { margin-left: auto; font-style: normal; color: var(--mut); font-size: 11px; }
.sd-prod span:nth-child(2) { flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.sd-prod b { font-size: 12.5px; }
.sd-thumb { width: 38px; height: 50px; border-radius: 5px; overflow: hidden; background: #f2f2f2; flex: none; }
.sd-thumb svg { width: 100%; height: 100%; }
.sd-empty { color: var(--mut); font-size: 13px; padding: 6px 2px; }
b { font-weight: 700; }
.search-drop b, .card-name b { color: var(--red-deep); }

/* account dropdown */
.acct-drop { position: absolute; top: 46px; right: 0; width: 240px; background: #fff; border-radius: 12px; box-shadow: var(--shadow-2); padding: 8px; z-index: 80; animation: dropIn .18s ease; }
.ad-head { padding: 10px 12px 8px; }
.ad-head b { display: block; font-size: 14px; }
.ad-head span { font-size: 11.5px; color: var(--mut); }
.ad-stats { display: flex; gap: 4px; padding: 0 10px 10px; border-bottom: 1px solid var(--line); margin-bottom: 6px; }
.ad-stats span { flex: 1; text-align: center; font-size: 10.5px; color: var(--mut); }
.ad-stats b { display: block; font-size: 14px; color: var(--ink); }
.acct-drop a, .acct-drop button { display: block; width: 100%; text-align: left; padding: 9px 12px; font-size: 13px; border-radius: 7px; }
.acct-drop a:hover, .acct-drop button:hover { background: #f5f5f5; }
.acct-drop button { color: var(--red-deep); font-weight: 700; }

/* ============ nav + mega ============ */
.mainnav { background: #fff; border-bottom: 1px solid var(--line); position: sticky; top: var(--hdr-h); z-index: 55; }
.mainnav-list { max-width: 1280px; margin: 0 auto; padding: 0 20px; display: flex; align-items: center; gap: 2px; height: var(--nav-h); overflow: visible; }
.mainnav-list > li { height: 100%; display: flex; align-items: center; }
.mainnav-list > li > a { font-size: 13px; font-weight: 600; padding: 0 13px; height: 100%; display: flex; align-items: center; white-space: nowrap; position: relative; letter-spacing: .01em; }
.mainnav-list > li > a::after { content: ''; position: absolute; left: 13px; right: 13px; bottom: -1px; height: 2.5px; background: var(--ink); transform: scaleX(0); transition: transform .18s ease; }
.mainnav-list > li > a:hover::after, .mainnav-list > li > a.active::after { transform: scaleX(1); }
.nav-hot { color: var(--red) !important; font-weight: 800 !important; }
.mega-panel { position: absolute; top: 100%; left: 0; right: 0; background: #fff; box-shadow: var(--shadow-2); border-top: 2px solid var(--ink); padding: 26px 0; display: none; opacity: 0; transform: translateY(8px); transition: opacity .18s ease, transform .18s ease; z-index: 70; overflow: hidden; }
.has-mega:hover .mega-panel { display: block; opacity: 1; transform: translateY(0); }
.mega-in { max-width: 1280px; margin: 0 auto; padding: 0 20px; display: grid; grid-template-columns: 1fr 232px; gap: 28px; align-items: stretch; }
.mega-cols { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 4px 24px; align-content: start; }
.mega-col a { display: block; font-size: 12.5px; color: #555; padding: 4px 0; }
.mega-col a:hover { color: var(--red-deep); text-decoration: underline; }
.mega-title { font-weight: 800 !important; color: var(--ink) !important; font-size: 13px !important; margin-bottom: 5px; }
.mega-promo { border-radius: 12px; padding: 20px 18px; display: flex; flex-direction: column; gap: 6px; min-height: 220px; background: linear-gradient(150deg, #ffe9e2, #ffd3d8); position: relative; overflow: hidden; }
.mega-promo b { font-size: 18px; font-family: var(--font-disp); letter-spacing: -.01em; }
.mega-promo span { font-size: 11.5px; color: #6a4a4a; display: flex; align-items: center; gap: 5px; margin-top: auto; }
.mega-promo-tag { position: absolute; top: 12px; right: -28px; background: var(--red); color: #fff; font-size: 9.5px; font-weight: 800; padding: 3px 32px; transform: rotate(38deg); letter-spacing: .1em; }

/* ============ hero ============ */
.hero { position: relative; overflow: hidden; background: #111; }
.hero-track { display: flex; transition: transform .65s cubic-bezier(.7,0,.2,1); }
.hslide { min-width: 100%; display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 30px; padding: 52px min(7vw, 90px); min-height: 420px; position: relative; }
.slide-noir { background: linear-gradient(115deg, #101014 40%, #26262e); color: #fff; }
.slide-flash { background: var(--grad-flash); color: #fff; }
.slide-wave { background: linear-gradient(115deg, #0d4f5c, #16808c 55%, #4db3ac); color: #fff; }
.slide-blush { background: linear-gradient(115deg, #7c2440, #c2426a 55%, #ef8ba4); color: #fff; }
.slide-dune { background: linear-gradient(115deg, #6b5233, #a3854f 55%, #d9c08d); color: #fff; }
.hs-tag { display: inline-block; font-size: 11px; font-weight: 800; letter-spacing: .22em; text-transform: uppercase; border: 1.5px solid currentColor; padding: 5px 13px; border-radius: 20px; margin-bottom: 18px; opacity: .92; }
.hs-title { font-family: var(--font-disp); font-size: clamp(38px, 5.2vw, 66px); line-height: .98; font-weight: 900; letter-spacing: -.015em; text-transform: uppercase; margin-bottom: 16px; }
.hs-sub { font-size: 15px; opacity: .88; max-width: 400px; margin-bottom: 26px; }
.hs-art { display: flex; justify-content: center; gap: 16px; align-items: flex-end; perspective: 900px; }
.hs-card { width: clamp(120px, 15vw, 190px); border-radius: 12px; overflow: hidden; position: relative; box-shadow: 0 24px 50px rgba(0,0,0,.35); transition: transform .35s ease; background: #f4f4f4; }
.hs-card svg { width: 100%; height: auto; }
.hs-card span { position: absolute; bottom: 8px; left: 8px; background: rgba(255,255,255,.94); font-size: 11px; font-weight: 800; padding: 3px 9px; border-radius: 12px; }
.hs-card-0 { transform: rotate(-5deg) translateY(8px); }
.hs-card-1 { transform: rotate(2deg) translateY(-14px); z-index: 2; }
.hs-card-2 { transform: rotate(6deg) translateY(12px); }
.hs-card:hover { transform: rotate(0) translateY(-8px) scale(1.04); z-index: 3; }
.hero-arr { position: absolute; top: 50%; transform: translateY(-50%); width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,.9); display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-1); z-index: 5; transition: .2s; }
.hero-arr:hover { background: #fff; transform: translateY(-50%) scale(1.08); }
.hero-prev { left: 18px; } .hero-next { right: 18px; }
.hero-dots { position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%); display: flex; gap: 7px; z-index: 5; }
.hero-dots button { width: 9px; height: 9px; border-radius: 6px; background: rgba(255,255,255,.45); transition: .25s; }
.hero-dots button.on { width: 26px; background: #fff; }

/* ============ home modules ============ */
.usp-strip { display: flex; flex-wrap: wrap; gap: 10px 30px; justify-content: center; padding: 16px 20px; border-bottom: 1px solid var(--line); font-size: 12.5px; color: #555; }
.usp-strip span { display: inline-flex; align-items: center; gap: 8px; }
.usp-strip .ic { color: var(--red); }

.flash-mod { margin: 26px 0 8px; border-radius: 14px; overflow: hidden; border: 1px solid #ffd9d0; }
.flash-head { background: var(--grad-flash); color: #fff; display: flex; align-items: center; gap: 18px; padding: 13px 20px; }
.flash-title { font-family: var(--font-disp); font-size: 22px; font-weight: 900; letter-spacing: .02em; display: flex; align-items: center; gap: 8px; text-transform: uppercase; }
.flash-title .ic { animation: zapPulse 1.4s ease infinite; }
@keyframes zapPulse { 50% { transform: scale(1.25) rotate(-8deg); } }
.flash-cd { display: flex; align-items: center; gap: 9px; font-size: 12.5px; }
.cd-box { background: #1c1c1c; color: #fff; font-family: ui-monospace, "SF Mono", Menlo, monospace; font-size: 14px; font-weight: 700; padding: 4px 9px; border-radius: 6px; letter-spacing: .06em; }
.cd-box b { font-weight: 700; }
.cd-dark { background: #fff; color: var(--red-deep); }
.flash-all { margin-left: auto; font-size: 12.5px; font-weight: 700; display: inline-flex; align-items: center; gap: 3px; }
.flash-rail { background: #fff6f3; padding: 16px 14px; }

.rail { margin: 30px 0; }
.rail-head { display: flex; align-items: center; gap: 14px; margin-bottom: 13px; }
.rail-head h2 { font-family: var(--font-disp); font-size: 21px; font-weight: 900; letter-spacing: -.01em; text-transform: uppercase; }
.rail-all { font-size: 12.5px; font-weight: 700; display: inline-flex; align-items: center; gap: 2px; color: #444; }
.rail-all:hover { color: var(--red-deep); }
.rail-nav { margin-left: auto; display: flex; gap: 6px; }
.rail-nav button { width: 32px; height: 32px; border: 1.5px solid var(--line); border-radius: 50%; display: flex; align-items: center; justify-content: center; background: #fff; transition: .15s; }
.rail-nav button:hover { border-color: var(--ink); }
.rail-scroll { display: flex; gap: 12px; overflow-x: auto; scroll-snap-type: x proximity; padding-bottom: 6px; }
.rail-scroll::-webkit-scrollbar { height: 6px; }
.rail-scroll::-webkit-scrollbar-thumb { background: #ddd; border-radius: 3px; }
.rail-scroll .card { min-width: 176px; scroll-snap-align: start; }

.fcard { min-width: 168px; background: #fff; border-radius: 10px; overflow: hidden; border: 1px solid #ffe3db; transition: transform .2s, box-shadow .2s; display: block; }
.fcard:hover { transform: translateY(-4px); box-shadow: 0 12px 26px rgba(246,67,65,.18); }
.fcard-img { position: relative; display: block; }
.fcard-off { position: absolute; top: 8px; left: 8px; background: var(--red); color: #fff; font-size: 11px; font-weight: 800; padding: 3px 7px; border-radius: 4px; }
.fcard-name { display: block; font-size: 12px; padding: 8px 10px 2px; color: #444; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.fcard .price { padding: 2px 10px 6px; }
.claim { display: block; height: 6px; margin: 0 10px; background: #ffe1da; border-radius: 3px; overflow: hidden; }
.claim i { display: block; height: 100%; background: linear-gradient(90deg, #ff8a5c, var(--red)); border-radius: 3px; transition: width 1s ease; }
.claim-txt { display: block; font-size: 10.5px; color: var(--red-deep); font-weight: 700; padding: 4px 10px 10px; }

.cat-circles { display: flex; gap: 18px; overflow-x: auto; padding: 26px 4px 10px; }
.ccirc { flex: none; text-align: center; font-size: 12px; font-weight: 600; width: 86px; }
.ccirc-img { display: block; width: 78px; height: 78px; margin: 0 auto 8px; border-radius: 50%; overflow: hidden; border: 2px solid var(--line); transition: .2s; background: #f4f4f4; }
.ccirc-img svg { width: 100%; height: 100%; }
.ccirc:hover .ccirc-img { border-color: var(--ink); transform: scale(1.06); }

.sec-kicker { font-size: 12px; text-transform: uppercase; letter-spacing: .14em; color: var(--mut); font-weight: 800; margin-bottom: 10px; }
.occ-row { margin: 14px 0 6px; }
.occ-chips { display: flex; gap: 10px; flex-wrap: wrap; }
.occ-chip { display: inline-flex; align-items: center; gap: 7px; border: 1.5px solid var(--line); border-radius: 22px; padding: 8px 17px; font-size: 12.5px; font-weight: 600; background: #fff; transition: .18s; }
.occ-chip svg { width: 15px; height: 15px; }
.occ-chip:hover { border-color: var(--ink); transform: translateY(-2px); box-shadow: var(--shadow-1); }
.occ-edit { background: #faf6ff; border-color: #e4d9f5; color: #5b3fa0; }

.newin { margin: 34px 0 10px; }
.newin-head { display: flex; align-items: center; gap: 18px; margin-bottom: 14px; }
.newin-head h2 { font-family: var(--font-disp); font-size: 21px; font-weight: 900; text-transform: uppercase; }
.ntabs { display: flex; gap: 4px; background: #f2f2f2; border-radius: 22px; padding: 3px; }
.ntabs button { padding: 6px 16px; border-radius: 18px; font-size: 12.5px; font-weight: 700; color: #666; transition: .15s; }
.ntabs button.on { background: var(--ink); color: #fff; }
.newin-head .rail-all { margin-left: auto; }

.edit-banners { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 30px 0; }
.ebanner { border-radius: 14px; padding: 30px 28px; color: #fff; position: relative; overflow: hidden; display: flex; flex-direction: column; gap: 7px; min-height: 168px; transition: transform .2s; }
.ebanner:hover { transform: translateY(-3px); }
.ebanner::after { content: '✦'; position: absolute; right: 22px; top: 16px; font-size: 64px; opacity: .18; }
.eb-y2k { background: linear-gradient(120deg, #2a1745, #6d3fa4 60%, #b06ad0); }
.eb-money { background: linear-gradient(120deg, #1d2a42, #3d5480 60%, #b39a63); }
.eb-tag { font-size: 10px; letter-spacing: .2em; font-weight: 800; text-transform: uppercase; opacity: .8; }
.ebanner b { font-family: var(--font-disp); font-size: 30px; font-weight: 900; text-transform: uppercase; letter-spacing: -.01em; }
.ebanner p { font-size: 13px; opacity: .85; }
.eb-cta { margin-top: auto; font-size: 12.5px; font-weight: 800; display: inline-flex; gap: 7px; align-items: center; border-bottom: 2px solid rgba(255,255,255,.6); width: fit-content; padding-bottom: 2px; }

.foryou { margin: 40px 0 60px; }
.fy-head { display: flex; align-items: baseline; gap: 14px; margin-bottom: 16px; }
.fy-head h2 { font-family: var(--font-disp); font-size: 21px; font-weight: 900; text-transform: uppercase; }
.fy-head span { color: var(--mut); font-size: 12.5px; }
.fy-loading { grid-column: 1/-1; text-align: center; color: var(--mut); font-size: 13px; padding: 18px; display: flex; align-items: center; justify-content: center; gap: 10px; }
.spinner { width: 18px; height: 18px; border: 2.5px solid #e3e3e3; border-top-color: var(--red); border-radius: 50%; animation: spin .7s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ============ product card ============ */
.grid { display: grid; gap: 14px; }
.grid-home, .grid-plp { grid-template-columns: repeat(auto-fill, minmax(196px, 1fr)); }
.grid-newin { grid-template-columns: repeat(auto-fill, minmax(196px, 1fr)); }
.card { display: flex; flex-direction: column; background: #fff; border-radius: 10px; overflow: hidden; transition: transform .2s ease, box-shadow .2s ease; position: relative; }
.card:hover { transform: translateY(-4px); box-shadow: 0 14px 30px rgba(0,0,0,.12); }
.card-img { position: relative; display: block; aspect-ratio: 3/4; overflow: hidden; background: #f4f4f4; }
.card-ph { position: absolute; inset: 0; transition: opacity .35s ease, transform .5s ease; }
.card-ph svg { width: 100%; height: 100%; }
.card-ph-b { opacity: 0; }
.card:hover .card-ph-b { opacity: 1; }
.card:hover .card-ph { transform: scale(1.03); }
.card-badges { position: absolute; top: 8px; left: 8px; display: flex; flex-direction: column; gap: 5px; z-index: 2; }
.chip { font-size: 10px; font-weight: 800; padding: 3px 8px; border-radius: 4px; letter-spacing: .03em; width: fit-content; }
.chip-flash { background: var(--grad-flash); color: #fff; }
.chip-gone { background: #fff; color: var(--red-deep); border: 1px solid #ffc7c6; }
.chip-only { background: #fff4ec; color: #c65a1e; border: 1px solid #ffd9bd; }
.wish-btn { position: absolute; top: 8px; right: 8px; width: 32px; height: 32px; border-radius: 50%; background: rgba(255,255,255,.92); display: flex; align-items: center; justify-content: center; z-index: 3; box-shadow: 0 2px 8px rgba(0,0,0,.12); transition: transform .15s; }
.wish-btn .ic { width: 17px; height: 17px; fill: none; stroke: #444; transition: .2s; }
.wish-btn:hover { transform: scale(1.12); }
.wish-btn.on .ic { fill: var(--red); stroke: var(--red); animation: heartPop .35s ease; }
@keyframes heartPop { 45% { transform: scale(1.4); } }
.quick-add { position: absolute; left: 0; right: 0; bottom: 0; background: rgba(28,28,28,.92); color: #fff; font-size: 12px; font-weight: 700; padding: 9px; text-align: center; transform: translateY(102%); transition: transform .22s ease; z-index: 2; }
.card:hover .quick-add { transform: none; }
.quick-more { background: rgba(255,255,255,.94); color: var(--ink); }
.card-info { display: flex; flex-direction: column; gap: 5px; padding: 10px 10px 12px; }
.card-name { font-size: 12.5px; color: #333; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; min-height: 36px; line-height: 1.4; }
.card-meta { display: flex; align-items: center; gap: 5px; font-size: 11px; color: var(--mut); }
.card-meta i { font-style: normal; }
.card-meta u { text-decoration: none; margin-left: auto; }

/* skeleton */
.skel-card { border-radius: 10px; overflow: hidden; }
.sk { background: linear-gradient(90deg, #f0f0f0 25%, #e4e4e4 45%, #f0f0f0 65%); background-size: 300% 100%; animation: shimmer 1.3s infinite; }
@keyframes shimmer { to { background-position: -200% 0; } }
.sk-img { aspect-ratio: 3/4; }
.sk-l1 { height: 13px; margin: 10px 4px 0; border-radius: 4px; }
.sk-l2 { height: 13px; margin: 6px 4px 0; width: 60%; border-radius: 4px; }
.sk-l3 { height: 11px; margin: 8px 4px 4px; width: 40%; border-radius: 4px; }

/* ============ PLP ============ */
.plp-banner { border-bottom: 1px solid var(--line); background: linear-gradient(120deg, #fafafa, #f1f1f1); padding: 22px 0 20px; }
.banner-women { background: linear-gradient(120deg, #fdf3f4, #f7e3e8); }
.banner-men { background: linear-gradient(120deg, #f0f3f7, #e0e7f0); }
.banner-kids { background: linear-gradient(120deg, #fdf7ec, #f7ecd8); }
.banner-home { background: linear-gradient(120deg, #f2f6f1, #e2ece4); }
.banner-beauty { background: linear-gradient(120deg, #fdf1f6, #f8e0ec); }
.banner-bags-shoes { background: linear-gradient(120deg, #f6f3ee, #eadfcd); }
.banner-jewelry { background: linear-gradient(120deg, #f3f1f9, #e6e1f2); }
.banner-accessories { background: linear-gradient(120deg, #f7f5f0, #ece6d8); }
.banner-pets { background: linear-gradient(120deg, #f1f7f2, #dfeee2); }
.banner-plain { background: linear-gradient(120deg, #fff5f2, #ffe9e4); }
.crumbs { font-size: 11.5px; color: var(--mut); display: flex; gap: 7px; flex-wrap: wrap; margin-bottom: 10px; }
.crumbs a:hover { color: var(--ink); text-decoration: underline; }
.crumbs i { font-style: normal; color: #ccc; }
.plp-title { font-family: var(--font-disp); font-size: 32px; font-weight: 900; text-transform: uppercase; letter-spacing: -.01em; }
.plp-sub { color: #666; font-size: 13px; margin-top: 4px; }
.plp-cd { display: inline-flex; align-items: center; gap: 8px; margin-top: 10px; background: #fff; border: 1px solid #ffd2cd; color: var(--red-deep); font-size: 12.5px; font-weight: 700; padding: 6px 12px; border-radius: 20px; }
.plp-cd .ic { color: var(--red); }

.dept-tiles { padding-top: 22px; }
.dt-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 12px; }
.dtile { border-radius: 12px; overflow: hidden; position: relative; aspect-ratio: 4/5; background: #f4f4f4; display: block; }
.dtile-img { position: absolute; inset: 0; transition: transform .4s ease; }
.dtile-img svg { width: 100%; height: 100%; }
.dtile:hover .dtile-img { transform: scale(1.06); }
.dtile-label { position: absolute; left: 0; right: 0; bottom: 0; background: rgba(255,255,255,.93); padding: 9px 12px; font-size: 12.5px; font-weight: 700; }
.dt-occ { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 16px; margin: 16px 0 4px; font-size: 12.5px; }
.dt-occ a { color: #555; border-bottom: 1px solid transparent; }
.dt-occ a:hover { color: var(--red-deep); border-color: var(--red-deep); }
.dt-occ-k { color: var(--mut); font-weight: 700; font-size: 11.5px; text-transform: uppercase; letter-spacing: .08em; }
.dt-edit { color: #5b3fa0 !important; }

.child-chips { display: flex; gap: 9px; flex-wrap: wrap; padding-top: 18px; padding-bottom: 2px; }
.cchip { border: 1.5px solid var(--line); border-radius: 18px; padding: 6px 15px; font-size: 12.5px; font-weight: 600; background: #fff; transition: .15s; }
.cchip:hover { border-color: var(--ink); }

.plp-body { display: grid; grid-template-columns: 236px 1fr; gap: 26px; padding-top: 20px; padding-bottom: 70px; }
.plp-aside { position: sticky; top: calc(var(--hdr-h) + var(--nav-h) + 14px); align-self: start; max-height: calc(100vh - var(--hdr-h) - var(--nav-h) - 30px); overflow: auto; padding-right: 4px; }
.facet { border-bottom: 1px solid var(--line); padding: 13px 0; }
.facet summary { font-size: 13px; font-weight: 800; cursor: pointer; display: flex; justify-content: space-between; align-items: center; list-style: none; letter-spacing: .01em; }
.facet summary::-webkit-details-marker { display: none; }
.facet summary::after { content: '−'; font-size: 16px; color: #999; }
.facet:not([open]) summary::after { content: '+'; }
.facet-body { padding-top: 11px; display: flex; flex-direction: column; gap: 7px; }
.frow { display: flex; align-items: center; gap: 9px; font-size: 12.5px; color: #444; cursor: pointer; }
.frow input { accent-color: var(--ink); width: 15px; height: 15px; cursor: pointer; }
.frow em { margin-left: auto; font-style: normal; color: #b3b3b3; font-size: 11px; }
.frow:hover span { color: var(--red-deep); }
.facet-swatches { flex-direction: row; flex-wrap: wrap; gap: 8px; }
.fswatch { position: relative; }
.fswatch i { display: block; width: 26px; height: 26px; border-radius: 50%; border: 1.5px solid #ddd; transition: .15s; }
.fswatch:hover i { transform: scale(1.12); }
.fswatch.on i { outline: 2px solid var(--ink); outline-offset: 2px; }
.fswatch em { position: absolute; inset: 0; display: none; }
.price-form { display: flex; align-items: center; gap: 7px; margin-top: 6px; }
.price-form input { width: 64px; border: 1.5px solid var(--line); border-radius: 6px; padding: 6px 8px; font-size: 12.5px; }
.price-form input:focus { outline: none; border-color: var(--ink); }
.price-form i { color: #bbb; font-style: normal; }

.plp-toolbar { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.plp-count { font-size: 12.5px; color: var(--mut); }
.plp-tools { margin-left: auto; display: flex; gap: 10px; align-items: center; }
.filter-toggle { display: none; align-items: center; gap: 7px; border: 1.5px solid var(--line); border-radius: 20px; padding: 7px 15px; font-size: 12.5px; font-weight: 700; background: #fff; }
.filter-toggle b { background: var(--red); color: #fff; border-radius: 9px; min-width: 17px; height: 17px; display: inline-flex; align-items: center; justify-content: center; font-size: 10px; }
.sortbox { position: relative; }
.sort-btn { border: 1.5px solid var(--line); border-radius: 20px; padding: 7px 15px; font-size: 12.5px; background: #fff; display: inline-flex; gap: 6px; align-items: center; }
.sort-btn b { font-weight: 700; }
.sort-menu { position: absolute; right: 0; top: 42px; background: #fff; border-radius: 10px; box-shadow: var(--shadow-2); padding: 6px; width: 200px; z-index: 40; animation: dropIn .15s ease; }
.sort-menu button { display: block; width: 100%; text-align: left; padding: 9px 12px; font-size: 12.5px; border-radius: 7px; }
.sort-menu button:hover { background: #f4f4f4; }
.sort-menu button.on { font-weight: 800; color: var(--red-deep); }

.applied { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin-bottom: 12px; }
.applied:empty { display: none; }
.applied-k { font-size: 11.5px; color: var(--mut); font-weight: 700; }
.achip { display: inline-flex; align-items: center; gap: 6px; background: #f2f2f2; border-radius: 16px; padding: 5px 12px; font-size: 12px; font-weight: 600; transition: .15s; }
.achip:hover { background: #ffe9e9; color: var(--red-deep); }
.aclear { font-size: 12px; font-weight: 800; color: var(--red-deep); text-decoration: underline; }

.plp-more { text-align: center; margin-top: 26px; display: flex; flex-direction: column; gap: 10px; align-items: center; }
.plp-showing { font-size: 12px; color: var(--mut); }
.empty-filters, .empty-page, .empty-search { text-align: center; padding: 70px 20px; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.empty-filters b, .empty-page h1, .empty-search h1 { font-family: var(--font-disp); font-size: 24px; font-weight: 900; text-transform: uppercase; }
.empty-filters p, .empty-page p, .empty-search p { color: var(--mut); font-size: 13.5px; max-width: 380px; }
.empty-search .sd-chips { justify-content: center; margin-top: 8px; }
.nf-code { font-family: var(--font-disp); font-size: 90px; font-weight: 900; color: #eee; line-height: 1; letter-spacing: .04em; }
.nf-acts { display: flex; gap: 12px; margin-top: 8px; }

/* filter drawer (mobile) */
.fdrawer-ov { position: fixed; inset: 0; z-index: 120; }
.fdrawer-scrim { position: absolute; inset: 0; background: rgba(0,0,0,.45); opacity: 0; transition: opacity .25s; }
.fdrawer-ov.in .fdrawer-scrim { opacity: 1; }
.fdrawer { position: absolute; right: 0; top: 0; bottom: 0; width: min(360px, 92vw); background: #fff; transform: translateX(102%); transition: transform .28s cubic-bezier(.2,.8,.2,1); display: flex; flex-direction: column; }
.fdrawer-ov.in .fdrawer { transform: none; }
.fdrawer-head { display: flex; justify-content: space-between; align-items: center; padding: 15px 18px; border-bottom: 1px solid var(--line); font-size: 15px; }
.fdrawer-body { flex: 1; overflow: auto; padding: 4px 18px; }
.fdrawer-foot { display: flex; gap: 10px; padding: 13px 18px; border-top: 1px solid var(--line); }
.fdrawer-foot .btn { flex: 1; }

/* ============ PDP ============ */
.pdp { padding-top: 16px; padding-bottom: 60px; }
.pdp-top { display: grid; grid-template-columns: minmax(0, 560px) 1fr; gap: 36px; margin-top: 14px; }
.pd-main { aspect-ratio: 3/4; border-radius: 14px; overflow: hidden; background: #f4f4f4; position: sticky; top: calc(var(--hdr-h) + var(--nav-h) + 14px); }
.pd-main svg { width: 100%; height: 100%; }
.pd-main.switching { animation: fadeSwitch .25s ease; }
@keyframes fadeSwitch { from { opacity: .3; } }
.pd-thumbs { display: flex; gap: 9px; margin-top: 10px; }
.pd-thumb { width: 74px; aspect-ratio: 3/4; border-radius: 8px; overflow: hidden; border: 2px solid transparent; opacity: .75; transition: .15s; background: #f4f4f4; }
.pd-thumb svg { width: 100%; height: 100%; }
.pd-thumb.on, .pd-thumb:hover { border-color: var(--ink); opacity: 1; }
.pd-flash { display: inline-flex; align-items: center; gap: 8px; background: var(--grad-flash); color: #fff; font-size: 12.5px; padding: 7px 13px; border-radius: 8px; margin-bottom: 12px; }
.pd-name { font-size: 17px; font-weight: 600; line-height: 1.4; color: #2a2a2a; }
.pd-rate { display: flex; align-items: center; gap: 8px; margin: 9px 0 12px; font-size: 12.5px; color: var(--mut); }
.pd-rate b { color: var(--ink); }
.pd-rate u { text-decoration: none; border-left: 1px solid var(--line); padding-left: 8px; }
.pd-save { font-size: 12px; color: var(--red-deep); font-weight: 700; background: #ffecec; padding: 3px 9px; border-radius: 4px; align-self: center; }
.pd-pts { display: flex; align-items: center; gap: 7px; font-size: 12px; color: #8a5b00; background: #fff7e8; border: 1px solid #ffe6b8; border-radius: 8px; padding: 8px 12px; margin: 12px 0 4px; width: fit-content; }
.pd-opt { margin-top: 18px; }
.pd-opt h4 { font-size: 13px; font-weight: 800; margin-bottom: 9px; display: flex; align-items: center; gap: 10px; }
.pd-opt h4 span { font-weight: 600; color: #666; }
.pd-guide { font-size: 11.5px; font-weight: 700; color: #444; text-decoration: underline; display: inline-flex; gap: 4px; align-items: center; }
.pd-colors { display: flex; gap: 10px; flex-wrap: wrap; }
.pd-color { width: 42px; height: 42px; border-radius: 8px; border: 1.5px solid #ddd; position: relative; transition: .15s; }
.pd-color:hover { transform: scale(1.08); }
.pd-color.on { outline: 2px solid var(--ink); outline-offset: 2px; }
.pd-sizes { display: flex; gap: 9px; flex-wrap: wrap; }
.pd-sizes.shake { animation: shake .4s ease; }
@keyframes shake { 25% { transform: translateX(-5px); } 75% { transform: translateX(5px); } }
.pd-size { min-width: 52px; padding: 10px 14px; border: 1.5px solid var(--line); border-radius: 6px; font-size: 13px; font-weight: 700; background: #fff; transition: .13s; position: relative; }
.pd-size:hover:not(.oos) { border-color: var(--ink); }
.pd-size.on { background: var(--ink); color: #fff; border-color: var(--ink); }
.pd-size.oos { color: #c4c4c4; background: #fafafa; cursor: not-allowed; }
.pd-size.oos::after { content: ''; position: absolute; left: 6px; right: 6px; top: 50%; height: 1.5px; background: #d5d5d5; transform: rotate(-8deg); }
.pd-low { display: flex; align-items: center; gap: 6px; color: #c65a1e; font-size: 12px; font-weight: 700; margin-top: 9px; }
.pd-low .ic { color: var(--orange); }
.pd-rowline { display: flex; align-items: center; gap: 16px; }
.pd-rowline h4 { margin: 0; }
.pd-stock { font-size: 12px; color: var(--mut); }
.qty { display: inline-flex; align-items: center; border: 1.5px solid var(--line); border-radius: 8px; overflow: hidden; }
.qty button { width: 34px; height: 34px; display: flex; align-items: center; justify-content: center; transition: .13s; }
.qty button:hover:not(:disabled) { background: #f2f2f2; }
.qty button:disabled { color: #ccc; cursor: not-allowed; }
.qty b { min-width: 34px; text-align: center; font-size: 13.5px; }
.qty-lg button { width: 42px; height: 42px; }
.pd-cta { display: flex; gap: 11px; margin-top: 24px; align-items: stretch; }
.pd-cta .btn { flex: 1; }
.pd-wish { width: 52px; border: 1.5px solid var(--line); border-radius: 6px; display: flex; align-items: center; justify-content: center; transition: .15s; }
.pd-wish .ic { fill: none; stroke: #444; }
.pd-wish:hover { border-color: var(--red); }
.pd-wish.on { border-color: var(--red); background: #fff2f2; }
.pd-wish.on .ic { fill: var(--red); stroke: var(--red); }
.pd-acc { border-top: 1px solid var(--line); margin-top: 14px; }
.pd-acc summary { display: flex; align-items: center; gap: 10px; padding: 13px 2px; font-size: 13px; font-weight: 800; cursor: pointer; list-style: none; }
.pd-acc summary::-webkit-details-marker { display: none; }
.pd-acc summary .ic { color: #555; }
.pd-acc-b { padding: 0 2px 14px 34px; font-size: 12.5px; color: #555; display: flex; flex-direction: column; gap: 6px; }
.pd-note { color: var(--mut); font-size: 11.5px; }

.look { margin-top: 46px; }
.look-head { display: flex; align-items: baseline; gap: 14px; margin-bottom: 14px; }
.look-head h2 { font-family: var(--font-disp); font-size: 21px; font-weight: 900; text-transform: uppercase; }
.look-head span { color: var(--mut); font-size: 12.5px; }
.look-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 14px; align-items: stretch; }
.look-item { background: #fafafa; border: 1px solid var(--line); border-radius: 12px; padding: 12px; display: flex; flex-direction: column; gap: 7px; position: relative; transition: .18s; }
a.look-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-1); }
.look-img { aspect-ratio: 3/4; border-radius: 8px; overflow: hidden; background: #f0f0f0; }
.look-img svg { width: 100%; height: 100%; }
.look-name { font-size: 12px; color: #444; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.look-item b { font-size: 14px; }
.look-this { position: absolute; top: 10px; left: 10px; background: var(--ink); color: #fff; font-size: 10px; font-weight: 800; font-style: normal; padding: 3px 9px; border-radius: 10px; }
.look-total { display: flex; flex-direction: column; justify-content: center; gap: 12px; align-items: flex-start; padding: 12px 6px; }
.look-total p { font-size: 13px; color: #555; }
.look-total b { font-size: 22px; margin-left: 6px; }

.reviews { margin-top: 52px; }
.reviews h2, .qa h3 { font-family: var(--font-disp); font-size: 21px; font-weight: 900; text-transform: uppercase; margin-bottom: 16px; }
.rev-layout { display: grid; grid-template-columns: 280px 1fr; gap: 30px; }
.rev-summary { background: #fafafa; border: 1px solid var(--line); border-radius: 14px; padding: 20px; align-self: start; position: sticky; top: calc(var(--hdr-h) + var(--nav-h) + 14px); }
.rev-big { text-align: center; padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.rev-big b { font-size: 42px; font-weight: 900; font-family: var(--font-disp); display: block; line-height: 1; }
.rev-big span { display: block; color: var(--mut); font-size: 12px; margin-top: 5px; }
.rev-bars { padding: 14px 0; display: flex; flex-direction: column; gap: 7px; border-bottom: 1px solid var(--line); }
.rbar { display: grid; grid-template-columns: 26px 1fr 34px; gap: 8px; align-items: center; font-size: 11.5px; color: #666; }
.rbar i { background: #e8e8e8; height: 7px; border-radius: 4px; overflow: hidden; display: block; }
.rbar u { display: block; height: 100%; background: var(--amber); border-radius: 4px; }
.rbar em { font-style: normal; text-align: right; color: var(--mut); }
.fitmeter { padding-top: 14px; }
.fitmeter h5 { font-size: 12px; font-weight: 800; margin-bottom: 10px; text-transform: uppercase; letter-spacing: .07em; }
.fm-row { display: grid; grid-template-columns: 82px 1fr 36px; gap: 8px; align-items: center; font-size: 11.5px; margin-bottom: 8px; }
.fm-bar { background: #e8e8e8; height: 7px; border-radius: 4px; overflow: hidden; }
.fm-bar i { display: block; height: 100%; border-radius: 4px; }
.fm-left { background: #8fb7d9; } .fm-mid { background: #58b368; } .fm-right { background: #e0876f; }
.fm-row em { font-style: normal; color: var(--mut); text-align: right; }
.rev-tabs { display: flex; gap: 8px; margin-bottom: 14px; }
.rev-tabs button { border: 1.5px solid var(--line); border-radius: 18px; padding: 7px 16px; font-size: 12.5px; font-weight: 700; background: #fff; }
.rev-tabs button.on { background: var(--ink); color: #fff; border-color: var(--ink); }
.rev { border-bottom: 1px solid var(--line); padding: 16px 0; }
.rev header { display: flex; align-items: center; gap: 11px; margin-bottom: 8px; }
.rev-ava { width: 34px; height: 34px; border-radius: 50%; background: #2b2b2b; color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 14px; }
.rev header b { font-size: 13px; display: block; }
.rev-sub { display: flex; align-items: center; gap: 7px; font-size: 11.5px; color: var(--mut); }
.rev time { margin-left: auto; font-size: 11.5px; color: var(--mut); }
.rev p { font-size: 13px; color: #3c3c3c; line-height: 1.55; }
.rev-photos { display: flex; gap: 8px; margin-top: 10px; }
.rev-ph { width: 84px; aspect-ratio: 3/4; border-radius: 8px; overflow: hidden; background: #f2f2f2; }
.rev-ph svg { width: 100%; height: 100%; }
.rev footer { display: flex; align-items: center; gap: 7px; margin-top: 10px; font-size: 11.5px; color: #58a05f; font-weight: 700; }
.rev-help { margin-left: auto; display: inline-flex; align-items: center; gap: 5px; color: var(--mut); font-size: 11.5px; border: 1px solid var(--line); border-radius: 14px; padding: 4px 11px; transition: .15s; }
.rev-help:hover { border-color: var(--ink); color: var(--ink); }
.rev-help.did { color: var(--red-deep); border-color: #ffc7c6; }
.rev-none { color: var(--mut); padding: 14px 0; }
#revMore { margin-top: 14px; }
.qa { margin-top: 40px; }
.qa-item { border-bottom: 1px solid var(--line); padding: 12px 0; }
.qa-item summary { font-size: 13.5px; cursor: pointer; list-style: none; display: flex; gap: 8px; }
.qa-item summary::-webkit-details-marker { display: none; }
.qa-item summary b { color: var(--red-deep); }
.qa-item p { font-size: 13px; color: #444; padding: 9px 0 4px 22px; }
.qa-item p span { color: var(--mut); font-size: 11.5px; }

/* ============ checkout ============ */
.checkout { padding-top: 22px; padding-bottom: 80px; }
.co-steps { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; font-size: 12.5px; color: var(--mut); }
.step { display: inline-flex; align-items: center; gap: 7px; font-weight: 600; }
.step b { width: 22px; height: 22px; border-radius: 50%; background: #e5e5e5; color: #888; display: inline-flex; align-items: center; justify-content: center; font-size: 11.5px; }
.step.on { color: var(--ink); }
.step.on b { background: var(--ink); color: #fff; }
.co-steps i { flex: 0 0 34px; height: 1.5px; background: var(--line); }
.co-guest { display: flex; align-items: center; gap: 9px; background: #fff8ec; border: 1px solid #ffe4b0; border-radius: 10px; padding: 11px 15px; font-size: 12.5px; margin-bottom: 18px; }
.co-guest a { color: var(--red-deep); font-weight: 800; text-decoration: underline; }
.co-guest.ok { background: #f0f9f1; border-color: #c8e8cb; }
.co-layout { display: grid; grid-template-columns: 1fr 380px; gap: 26px; align-items: start; }
.co-card { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 20px 22px; margin-bottom: 18px; }
.co-card h2 { font-size: 15px; font-weight: 800; display: flex; align-items: center; gap: 9px; margin-bottom: 15px; }
.co-card h2 .ic { color: #555; }
.addr-list { display: flex; flex-direction: column; gap: 10px; }
.addr-opt { display: flex; gap: 12px; border: 1.5px solid var(--line); border-radius: 10px; padding: 13px 15px; cursor: pointer; transition: .15s; align-items: flex-start; }
.addr-opt input { margin-top: 3px; accent-color: var(--ink); }
.addr-opt.on { border-color: var(--ink); background: #fafafa; }
.addr-body { font-size: 12.5px; color: #555; line-height: 1.55; }
.addr-body b { color: var(--ink); font-size: 13px; }
.addr-body em { font-style: normal; background: #ececec; border-radius: 4px; font-size: 10px; padding: 2px 7px; margin-left: 6px; font-weight: 700; }
.addr-form { display: flex; flex-direction: column; gap: 12px; margin-top: 14px; }
.addr-form label, .card-form label { font-size: 12px; font-weight: 700; color: #555; display: flex; flex-direction: column; gap: 5px; }
.addr-form input, .addr-form select, .card-form input { border: 1.5px solid var(--line); border-radius: 8px; padding: 10px 12px; font-size: 13.5px; transition: border-color .15s; }
.addr-form input:focus, .addr-form select:focus, .card-form input:focus { outline: none; border-color: var(--ink); }
.addr-form i { font-style: normal; font-weight: 500; color: var(--mut); }
.f2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.f3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px; }
.ck { flex-direction: row !important; align-items: center; gap: 8px !important; font-size: 12.5px !important; }
.ck input { accent-color: var(--ink); }
.ship-opt { display: flex; align-items: center; gap: 13px; border: 1.5px solid var(--line); border-radius: 10px; padding: 14px 16px; margin-bottom: 10px; cursor: pointer; transition: .15s; }
.ship-opt.on { border-color: var(--ink); background: #fafafa; }
.ship-opt input { accent-color: var(--ink); }
.ship-body { flex: 1; }
.ship-body b { display: block; font-size: 13.5px; }
.ship-body span { font-size: 12px; color: var(--mut); }
.ship-price { font-size: 13px; font-weight: 700; }
.ship-price .free { color: #2e8b57; }
.pay-opt { display: flex; align-items: center; gap: 13px; border: 1.5px solid var(--line); border-radius: 10px; padding: 13px 16px; margin-bottom: 9px; cursor: pointer; transition: .15s; }
.pay-opt.on { border-color: var(--ink); background: #fafafa; }
.pay-opt input { accent-color: var(--ink); }
.pay-body { flex: 1; }
.pay-body b { display: block; font-size: 13.5px; }
.pay-body span { font-size: 11.5px; color: var(--mut); }
.pay-ico { font-size: 11px; font-weight: 800; border: 1.5px solid var(--line); border-radius: 6px; padding: 5px 9px; color: #555; background: #fafafa; }
.pay-ico.pp { color: #003087; } .pay-ico.ap { background: #000; color: #fff; border-color: #000; } .pay-ico.kl { background: #ffb3c7; border-color: #ffb3c7; }
.card-form { display: flex; flex-direction: column; gap: 11px; margin: 4px 0 10px 30px; padding: 14px; background: #fafafa; border-radius: 10px; }
.secure-note { display: flex; align-items: center; gap: 6px; font-size: 11px; color: var(--mut); }
.co-side { position: sticky; top: calc(var(--hdr-h) + var(--nav-h) + 14px); }
.co-summary { margin-bottom: 0; }
.co-items { display: flex; flex-direction: column; gap: 12px; max-height: 300px; overflow: auto; padding-right: 4px; margin-bottom: 14px; }
.co-item { display: flex; gap: 11px; align-items: center; }
.co-img { position: relative; width: 56px; aspect-ratio: 3/4; border-radius: 7px; overflow: hidden; background: #f2f2f2; flex: none; }
.co-img svg { width: 100%; height: 100%; }
.co-img b { position: absolute; bottom: 3px; right: 3px; background: rgba(0,0,0,.72); color: #fff; font-size: 10px; border-radius: 8px; padding: 1px 6px; }
.co-name { flex: 1; font-size: 12px; color: #444; display: flex; flex-direction: column; gap: 2px; }
.co-name i { font-style: normal; color: var(--mut); font-size: 11px; }
.co-item > b { font-size: 12.5px; }
.co-coupon { border-top: 1px solid var(--line); padding-top: 13px; }
#couponForm { display: flex; gap: 8px; }
#couponForm input { flex: 1; border: 1.5px solid var(--line); border-radius: 8px; padding: 9px 12px; font-size: 13px; text-transform: uppercase; letter-spacing: .04em; }
#couponForm input:focus { outline: none; border-color: var(--ink); }
.cp-hint { font-size: 11.5px; color: var(--mut); margin-top: 7px; }
.cp-on { display: flex; align-items: center; justify-content: space-between; background: #eefaf0; border: 1px solid #bfe6c4; border-radius: 8px; padding: 8px 12px; font-size: 12px; margin-top: 8px; }
.cp-on b { color: #2e7d3f; }
#cpRemove { color: var(--mut); }
.co-points { border-top: 1px solid var(--line); padding-top: 13px; margin-top: 13px; }
.pts-none { font-size: 12px; color: var(--mut); }
.pts-none a { color: var(--red-deep); font-weight: 800; }
.pts-head { font-size: 12.5px; display: flex; align-items: center; gap: 7px; }
.pts-head span { color: var(--mut); font-size: 11px; }
#ptsRange { width: 100%; margin: 10px 0 4px; accent-color: var(--red); }
.pts-row { display: flex; justify-content: space-between; font-size: 12px; color: #555; }
.pts-row b { color: var(--red-deep); }
.co-totals { border-top: 1px solid var(--line); margin-top: 13px; padding-top: 12px; display: flex; flex-direction: column; gap: 8px; }
.tr { display: flex; justify-content: space-between; font-size: 12.5px; color: #555; }
.tr b { color: var(--ink); }
.tr-disc b { color: var(--red-deep); }
.tr-total { font-size: 15px; font-weight: 800; color: var(--ink); border-top: 1px dashed var(--line); padding-top: 10px; margin-top: 3px; }
.tr-total b { font-size: 20px; }
.tr-earn { font-size: 11.5px; color: #8a5b00; background: #fff7e8; border-radius: 7px; padding: 7px 10px; display: flex; gap: 6px; align-items: center; }
#placeOrder { margin-top: 15px; }
.co-note { font-size: 10.5px; color: var(--mut); text-align: center; margin-top: 10px; }

/* confirm */
.confirm { padding: 40px 20px 80px; text-align: center; }
.cf-check { width: 76px; height: 76px; border-radius: 50%; background: #2e8b57; color: #fff; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; animation: popIn .5s cubic-bezier(.2,1.4,.4,1); }
.cf-check .ic { width: 38px; height: 38px; stroke-width: 2.6; }
@keyframes popIn { from { transform: scale(.3); opacity: 0; } }
.confirm h1 { font-family: var(--font-disp); font-size: 30px; font-weight: 900; text-transform: uppercase; }
.cf-sub { color: var(--mut); font-size: 13px; margin: 7px 0 14px; }
.cf-pts { display: inline-flex; align-items: center; gap: 8px; background: #fff7e8; border: 1px solid #ffe6b8; border-radius: 22px; padding: 9px 18px; font-size: 13px; color: #8a5b00; margin-bottom: 26px; }
.cf-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; text-align: left; }
.cf-grid .co-card { margin-bottom: 0; }
.cf-eta { display: flex; gap: 8px; align-items: center; font-size: 13px; background: #f0f9f1; border: 1px solid #c8e8cb; border-radius: 9px; padding: 10px 13px; margin-bottom: 12px; }
.cf-addr { font-size: 12.5px; color: #555; line-height: 1.6; margin-bottom: 10px; }
.cf-pay { font-size: 12px; color: var(--mut); display: flex; gap: 7px; align-items: center; margin-bottom: 16px; }
.confirm .btn { margin-top: 8px; }

/* ============ account ============ */
.signin { display: grid; grid-template-columns: 420px 1fr; gap: 40px; padding-top: 46px; padding-bottom: 90px; align-items: start; }
.si-card { border: 1px solid var(--line); border-radius: 16px; padding: 30px 32px; box-shadow: var(--shadow-1); }
.si-brand { margin-bottom: 22px; }
.si-brand b { font-family: var(--font-disp); font-size: 26px; font-weight: 900; letter-spacing: .06em; display: block; }
.si-brand span { color: var(--mut); font-size: 12.5px; }
.si-card h1 { font-size: 19px; font-weight: 800; margin-bottom: 16px; }
#siForm { display: flex; flex-direction: column; gap: 13px; }
#siForm label { font-size: 12px; font-weight: 700; color: #555; display: flex; flex-direction: column; gap: 5px; }
#siForm input { border: 1.5px solid var(--line); border-radius: 8px; padding: 11px 13px; font-size: 14px; }
#siForm input:focus { outline: none; border-color: var(--ink); }
.si-err { color: var(--red-deep); font-size: 12px; font-weight: 700; }
.si-note { font-size: 11px; color: var(--mut); text-align: center; }
.si-alt { margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--line); display: flex; flex-direction: column; gap: 9px; }
.si-soc { display: flex; align-items: center; justify-content: center; gap: 10px; border: 1.5px solid var(--line); border-radius: 8px; padding: 10px; font-size: 13px; font-weight: 700; transition: .15s; }
.si-soc:hover { border-color: var(--ink); }
.soc-g { font-style: normal; font-weight: 900; color: #d93025; }
.soc-a { width: 14px; height: 14px; background: #000; border-radius: 50%; display: inline-block; }
.si-guest { text-align: center; font-size: 12.5px; color: var(--mut); margin-top: 4px; }
.si-guest:hover { color: var(--ink); }
.si-perks { padding-top: 14px; }
.si-perks h2 { font-family: var(--font-disp); font-size: 22px; font-weight: 900; text-transform: uppercase; margin-bottom: 16px; }
.si-perks li { display: flex; gap: 11px; align-items: center; font-size: 13.5px; padding: 11px 0; border-bottom: 1px solid var(--line); color: #444; }
.si-perks .ic { color: var(--red); }

.dash { display: grid; grid-template-columns: 230px 1fr; gap: 28px; padding-top: 26px; padding-bottom: 80px; }
.dash-side { align-self: start; position: sticky; top: calc(var(--hdr-h) + var(--nav-h) + 14px); border: 1px solid var(--line); border-radius: 14px; padding: 10px; }
.ds-user { display: flex; gap: 11px; align-items: center; padding: 10px 12px 14px; border-bottom: 1px solid var(--line); margin-bottom: 8px; }
.ds-ava { width: 42px; height: 42px; border-radius: 50%; background: var(--grad-flash); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 18px; }
.ds-user b { display: block; font-size: 13.5px; }
.ds-user span { font-size: 11px; color: var(--mut); }
.ds-link { display: flex; align-items: center; gap: 11px; padding: 10px 12px; border-radius: 9px; font-size: 13px; font-weight: 600; color: #444; width: 100%; text-align: left; }
.ds-link:hover { background: #f4f4f4; }
.ds-link.on { background: var(--ink); color: #fff; }
.ds-out { color: var(--red-deep); margin-top: 6px; border-top: 1px solid var(--line); border-radius: 0 0 9px 9px; }
.dash-h { font-family: var(--font-disp); font-size: 26px; font-weight: 900; text-transform: uppercase; margin-bottom: 18px; display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.sub-h { font-size: 16px; font-weight: 800; margin: 24px 0 12px; }
.back-link { display: inline-flex; align-items: center; gap: 4px; font-size: 12.5px; color: var(--mut); margin-bottom: 10px; }
.back-link:hover { color: var(--ink); }
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: 18px; }
.stat { border: 1px solid var(--line); border-radius: 13px; padding: 16px; display: flex; flex-direction: column; gap: 4px; transition: .18s; background: #fff; }
.stat:hover { transform: translateY(-3px); box-shadow: var(--shadow-1); }
.stat .ic { color: var(--red); width: 20px; height: 20px; }
.stat b { font-size: 24px; font-weight: 900; font-family: var(--font-disp); }
.stat span { font-size: 11.5px; color: var(--mut); }
.ov-duo { display: grid; grid-template-columns: 1.4fr 1fr; gap: 14px; margin-bottom: 18px; }
.ov-streak { font-size: 12.5px; color: #555; margin-bottom: 12px; }
.chk-strip { display: flex; gap: 7px; margin-bottom: 14px; }
.chk-day { flex: 1; text-align: center; border: 1.5px solid var(--line); border-radius: 10px; padding: 9px 2px; font-size: 10px; color: var(--mut); background: #fff; }
.chk-day i { display: flex; align-items: center; justify-content: center; font-style: normal; font-weight: 800; font-size: 12px; color: #555; height: 20px; }
.chk-day em { font-style: normal; }
.chk-day.done { background: #eefaf0; border-color: #bfe6c4; }
.chk-day.done i { color: #2e8b57; }
.chk-day.today { border-color: var(--red); background: #fff5f5; }
.chk-day.today i { color: var(--red-deep); }
.ov-wheel { display: flex; align-items: center; gap: 16px; text-decoration: none; transition: .18s; }
.ov-wheel:hover { transform: translateY(-3px); box-shadow: var(--shadow-1); }
.ow-emoji { font-size: 40px; }
.ov-wheel h2 { margin-bottom: 3px; }
.ov-wheel p { font-size: 12px; color: var(--mut); }
.ov-wheel .ic { margin-left: auto; color: #bbb; }
.ov-empty { text-align: center; padding: 34px 10px; display: flex; flex-direction: column; align-items: center; gap: 12px; color: var(--mut); font-size: 13px; }
.see-all { margin-left: auto; font-size: 12px; font-weight: 700; color: var(--red-deep); }
.order-card { border: 1px solid var(--line); border-radius: 12px; padding: 15px 17px; margin-bottom: 12px; }
.order-card header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 11px; }
.order-card header b { display: block; font-size: 13px; }
.order-card header span { font-size: 11.5px; color: var(--mut); }
.ostatus { font-size: 11px; font-weight: 800; padding: 4px 11px; border-radius: 13px; }
.ostatus-processing { background: #fff3e0; color: #b26a00; }
.ostatus-packed { background: #e8f1fd; color: #2b6cb0; }
.ostatus-shipped { background: #ede7fd; color: #5b3fa0; }
.ostatus-out { background: #e0f5f2; color: #0f766e; }
.ostatus-delivered { background: #e8f7ea; color: #2e7d3f; }
.oc-items { display: flex; gap: 8px; align-items: center; margin-bottom: 11px; }
.oc-img { position: relative; width: 52px; aspect-ratio: 3/4; border-radius: 7px; overflow: hidden; background: #f2f2f2; }
.oc-img svg { width: 100%; height: 100%; }
.oc-img b { position: absolute; bottom: 2px; right: 2px; background: rgba(0,0,0,.72); color: #fff; font-size: 9.5px; border-radius: 7px; padding: 0 5px; }
.oc-more { font-size: 11.5px; color: var(--mut); font-weight: 700; }
.order-card footer { display: flex; justify-content: space-between; align-items: center; font-size: 12.5px; color: #555; }
.od-sub { color: var(--mut); font-size: 12.5px; margin: -10px 0 16px; }
.od-track h2 span.od-demo { font-size: 10.5px; font-weight: 600; color: var(--mut); margin-left: auto; }
.timeline { display: flex; flex-direction: column; }
.tl-step { display: flex; gap: 14px; position: relative; padding-bottom: 24px; }
.tl-step::before { content: ''; position: absolute; left: 13px; top: 28px; bottom: 0; width: 2px; background: var(--line); }
.tl-step:last-child::before { display: none; }
.tl-dot { width: 28px; height: 28px; border-radius: 50%; background: #ececec; display: flex; align-items: center; justify-content: center; flex: none; z-index: 1; color: #fff; }
.tl-step.done .tl-dot { background: #2e8b57; }
.tl-step.now .tl-dot { box-shadow: 0 0 0 5px rgba(46,139,87,.18); animation: pulseDot 1.8s ease infinite; }
@keyframes pulseDot { 50% { box-shadow: 0 0 0 9px rgba(46,139,87,.07); } }
.tl-body b { display: block; font-size: 13.5px; }
.tl-step:not(.done) .tl-body b { color: #aaa; }
.tl-body time { font-size: 11.5px; color: var(--mut); }
.od-eta { margin-top: 8px; font-size: 12.5px; color: #555; background: #fafafa; border-radius: 9px; padding: 10px 13px; }
.pts-hero { background: var(--ink); color: #fff; border-radius: 16px; padding: 26px 30px; display: flex; justify-content: space-between; align-items: center; gap: 18px; margin-bottom: 18px; flex-wrap: wrap; }
.pts-bal { font-family: var(--font-disp); font-size: 46px; font-weight: 900; line-height: 1; }
.pts-cap { display: block; font-size: 12px; color: #bbb; margin-top: 4px; }
.pts-rate { font-size: 12.5px; color: #ffd9a0; display: flex; gap: 8px; align-items: center; }
.pts-hist li { display: flex; gap: 14px; align-items: center; padding: 11px 2px; border-bottom: 1px solid var(--line); }
.ph-in { color: #2e7d3f; font-weight: 900; font-size: 15px; min-width: 52px; }
.ph-out { color: var(--red-deep); font-weight: 900; font-size: 15px; min-width: 52px; }
.pts-hist b { display: block; font-size: 13px; }
.pts-hist time { font-size: 11px; color: var(--mut); }
.coup-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 13px; }
.coupon { display: flex; align-items: center; gap: 16px; border: 1.5px dashed #f3b6b5; background: #fffafa; border-radius: 13px; padding: 15px 17px; position: relative; }
.cp-val { background: var(--grad-flash); color: #fff; font-weight: 900; font-size: 14px; border-radius: 9px; padding: 12px 13px; min-width: 74px; text-align: center; letter-spacing: .02em; }
.cp-body { flex: 1; display: flex; flex-direction: column; gap: 3px; }
.cp-body b { font-size: 13px; }
.cp-body span { font-size: 11px; color: var(--mut); }
.cp-body code { background: #f2f2f2; border-radius: 4px; padding: 1px 6px; font-weight: 700; color: var(--ink); }
.cp-exp { font-weight: 700; color: #b26a00; }
.cp-exp.bad { color: #b3b3b3; }
.cp-actions { display: flex; flex-direction: column; gap: 6px; }
.coupon-exp { opacity: .55; filter: grayscale(.7); }
.addr-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 13px; }
.addr-card { border: 1.5px solid var(--line); border-radius: 13px; padding: 16px 18px; position: relative; font-size: 12.5px; color: #555; line-height: 1.6; }
.addr-card.def { border-color: var(--ink); }
.addr-card b { font-size: 13.5px; }
.addr-def { position: absolute; top: 12px; right: 12px; font-style: normal; background: var(--ink); color: #fff; font-size: 9.5px; font-weight: 800; padding: 3px 9px; border-radius: 10px; }
.addr-acts { display: flex; justify-content: space-between; align-items: center; margin-top: 11px; padding-top: 10px; border-top: 1px solid var(--line); font-size: 12px; }
.addr-setdef { display: flex; gap: 6px; align-items: center; cursor: pointer; }
.addr-setdef input { accent-color: var(--ink); }
.addr-acts button { color: var(--red-deep); font-weight: 700; display: inline-flex; gap: 5px; align-items: center; }

.checkin-page { max-width: 720px; padding-top: 40px; padding-bottom: 90px; }
.ck-hero { text-align: center; border: 1px solid var(--line); border-radius: 20px; padding: 40px 34px; background: linear-gradient(160deg, #fff, #fff5f2); margin-bottom: 20px; }
.ck-hero h1 { font-family: var(--font-disp); font-size: 32px; font-weight: 900; text-transform: uppercase; }
.ck-hero > p { color: var(--mut); font-size: 13.5px; margin: 8px 0 24px; }
.ck-bigstrip { display: flex; gap: 9px; margin-bottom: 24px; }
.ck-bigstrip .chk-day { padding: 13px 2px; }
.ck-bal { margin-top: 16px; font-size: 13px; color: #555; }
.ck-rules li { font-size: 13px; color: #555; padding: 7px 0; border-bottom: 1px dashed var(--line); }

.wheel-page { max-width: 640px; padding-top: 36px; padding-bottom: 90px; text-align: center; }
.wh-hero h1 { font-family: var(--font-disp); font-size: 34px; font-weight: 900; text-transform: uppercase; }
.wh-hero > p { color: var(--mut); margin: 6px 0 26px; font-size: 13.5px; }
.wh-stage { position: relative; width: 320px; margin: 0 auto; }
.wh-pointer { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); font-size: 30px; color: var(--red); z-index: 2; filter: drop-shadow(0 2px 3px rgba(0,0,0,.25)); }
.wh-svg { width: 100%; filter: drop-shadow(0 14px 26px rgba(0,0,0,.18)); }
.wh-spin { margin-top: 22px; min-width: 200px; font-size: 16px; letter-spacing: .12em; }
.wh-note { margin-top: 18px; font-size: 12px; color: var(--mut); }
.wh-note a { color: var(--red-deep); font-weight: 700; }
.wh-win { text-align: center; padding: 14px 8px; }
.wh-win-emoji { font-size: 52px; display: block; margin-bottom: 8px; }
.wh-win h3 { font-family: var(--font-disp); font-size: 24px; font-weight: 900; text-transform: uppercase; margin-bottom: 8px; }
.wh-win p { color: var(--mut); font-size: 13px; margin-bottom: 18px; }

/* wishlist */
.wish-page { padding-top: 26px; padding-bottom: 70px; }
.wish-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; flex-wrap: wrap; gap: 12px; }
.wish-head h1 { font-family: var(--font-disp); font-size: 26px; font-weight: 900; text-transform: uppercase; display: flex; gap: 10px; align-items: center; }
.wish-head h1 .ic { color: var(--red); fill: var(--red); }
.wish-head span { color: var(--mut); font-size: 15px; font-weight: 600; }

/* ============ bag drawer ============ */
.bag-ov { position: fixed; inset: 0; z-index: 130; }
.bag-scrim { position: absolute; inset: 0; background: rgba(0,0,0,.45); opacity: 0; transition: opacity .26s; }
.bag-ov.in .bag-scrim { opacity: 1; }
.bag-drawer { position: absolute; right: 0; top: 0; bottom: 0; width: min(430px, 94vw); background: #fff; display: flex; flex-direction: column; transform: translateX(103%); transition: transform .3s cubic-bezier(.2,.8,.2,1); box-shadow: -14px 0 40px rgba(0,0,0,.16); }
.bag-ov.in .bag-drawer { transform: none; }
.bag-head { display: flex; justify-content: space-between; align-items: center; padding: 16px 20px; border-bottom: 1px solid var(--line); font-size: 15px; }
.bag-head span { color: var(--mut); font-weight: 500; font-size: 12.5px; }
.bag-ship { padding: 13px 20px; background: #f0f9f1; border-bottom: 1px solid #d8eedb; font-size: 12px; }
.bag-ship p { display: flex; gap: 7px; align-items: center; margin-bottom: 8px; }
.bag-ship .ic { color: #2e8b57; }
.ship-bar { height: 7px; background: #d8eedb; border-radius: 4px; overflow: hidden; }
.ship-bar i { display: block; height: 100%; background: linear-gradient(90deg, #6cc27a, #2e8b57); border-radius: 4px; transition: width .6s ease; }
.bag-lines { flex: 1; overflow: auto; padding: 6px 20px; }
.bag-line { display: flex; gap: 13px; padding: 15px 0; border-bottom: 1px solid var(--line); animation: lineIn .3s ease; }
@keyframes lineIn { from { opacity: 0; transform: translateX(14px); } }
.bl-img { width: 76px; aspect-ratio: 3/4; border-radius: 9px; overflow: hidden; background: #f2f2f2; flex: none; }
.bl-img svg { width: 100%; height: 100%; }
.bl-body { flex: 1; min-width: 0; }
.bl-name { font-size: 12.5px; color: #333; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.bl-name:hover { color: var(--red-deep); }
.bl-variant { font-size: 11px; color: var(--mut); margin: 4px 0 8px; }
.bl-row { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.bl-max { font-size: 10.5px; color: #c65a1e; font-weight: 700; margin-top: 6px; }
.bl-side { display: flex; flex-direction: column; align-items: flex-end; justify-content: space-between; }
.bl-x { color: #bbb; padding: 4px; }
.bl-x:hover { color: var(--red-deep); }
.bl-wish { font-size: 10.5px; color: var(--mut); display: flex; gap: 4px; align-items: center; }
.bl-wish:hover { color: var(--red-deep); }
.bag-foot { border-top: 1px solid var(--line); padding: 15px 20px 18px; }
.bag-sub { display: flex; justify-content: space-between; font-size: 14px; margin-bottom: 7px; }
.bag-sub b { font-size: 19px; }
.bag-pts { display: flex; gap: 7px; align-items: center; font-size: 11.5px; color: #8a5b00; background: #fff7e8; border-radius: 8px; padding: 7px 11px; margin-bottom: 12px; }
.bag-empty { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; padding: 30px; text-align: center; }
.bag-empty b { font-size: 17px; }
.bag-empty p { color: var(--mut); font-size: 12.5px; margin-bottom: 8px; }

/* ============ toasts / modal ============ */
#toasts { position: fixed; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 300; display: flex; flex-direction: column; gap: 9px; align-items: center; pointer-events: none; }
.toast { display: flex; align-items: center; gap: 9px; background: #1c1c1c; color: #fff; font-size: 12.5px; font-weight: 600; padding: 11px 19px; border-radius: 26px; box-shadow: var(--shadow-2); opacity: 0; transform: translateY(14px); transition: .28s cubic-bezier(.2,.9,.3,1.2); max-width: 88vw; }
.toast.in { opacity: 1; transform: none; }
.toast .ic-s { color: #7ddc8a; }
.toast-warn .ic-s { color: #ff9d94; }
.toast-warn { background: #4a1512; }
.modal-ov { position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 200; display: flex; align-items: center; justify-content: center; padding: 20px; opacity: 0; transition: opacity .22s; }
.modal-ov.in { opacity: 1; }
.modal { background: #fff; border-radius: 16px; padding: 28px 30px; max-width: 480px; width: 100%; max-height: 86vh; overflow: auto; position: relative; transform: translateY(18px) scale(.97); transition: transform .25s cubic-bezier(.2,.9,.3,1.1); }
.modal-ov.in .modal { transform: none; }
.modal-wide { max-width: 640px; }
.modal-x { position: absolute; top: 14px; right: 14px; width: 34px; height: 34px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: #f2f2f2; transition: .15s; }
.modal-x:hover { background: #e4e4e4; transform: rotate(90deg); }
.modal-title { font-family: var(--font-disp); font-size: 21px; font-weight: 900; text-transform: uppercase; margin-bottom: 6px; }
.modal-sub { color: var(--mut); font-size: 12.5px; margin-bottom: 16px; }
.size-table { width: 100%; border-collapse: collapse; font-size: 12.5px; margin: 8px 0 14px; }
.size-table th { background: #f6f6f6; text-align: left; padding: 9px 12px; font-size: 11px; text-transform: uppercase; letter-spacing: .07em; }
.size-table td { padding: 9px 12px; border-bottom: 1px solid var(--line); color: #555; }
.size-table tr:hover td { background: #fbfbfb; }
.modal-note { font-size: 11.5px; color: var(--mut); }
.modal-form { margin-top: 10px; }

/* ============ footer ============ */
.ftr { background: #fafafa; border-top: 1px solid var(--line); margin-top: 40px; }
.ftr-in { max-width: 1280px; margin: 0 auto; padding: 44px 20px 30px; }
.ftr-cols { display: grid; grid-template-columns: repeat(4, 1fr) 1.5fr; gap: 26px; }
.ftr-col h4 { font-size: 12px; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 13px; font-weight: 800; }
.ftr-col a { display: block; font-size: 12.5px; color: #666; padding: 3.5px 0; }
.ftr-col a:hover { color: var(--red-deep); text-decoration: underline; }
.ftr-news p { font-size: 12px; color: var(--mut); margin-bottom: 11px; }
.news-form { display: flex; gap: 0; margin-bottom: 15px; }
.news-form input { flex: 1; border: 1.5px solid var(--ink); border-right: none; border-radius: 6px 0 0 6px; padding: 10px 13px; font-size: 12.5px; background: #fff; }
.news-form input:focus { outline: none; }
.news-form button { background: var(--ink); color: #fff; font-weight: 800; font-size: 12.5px; padding: 0 19px; border-radius: 0 6px 6px 0; }
.ftr-social { display: flex; gap: 9px; }
.soc { width: 34px; height: 34px; border-radius: 50%; border: 1.5px solid #ccc; display: flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 900; color: #555; transition: .15s; }
.soc:hover { background: var(--ink); color: #fff; border-color: var(--ink); transform: translateY(-2px); }
.ftr-bottom { border-top: 1px solid var(--line); margin-top: 32px; padding-top: 20px; }
.pay-chips { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 14px; }
.pay { border: 1px solid #d8d8d8; border-radius: 5px; padding: 5px 11px; font-size: 10px; font-weight: 800; color: #555; background: #fff; letter-spacing: .03em; }
.ftr-note { font-size: 11px; color: var(--mut); line-height: 1.6; max-width: 760px; }

/* ============ mobile chrome ============ */
.bottombar { display: none; position: fixed; bottom: 0; left: 0; right: 0; background: #fff; border-top: 1px solid var(--line); z-index: 90; padding: 6px 4px calc(6px + env(safe-area-inset-bottom)); }
.bottombar a, .bottombar button { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 2px; font-size: 10px; font-weight: 700; color: #555; padding: 5px 0; position: relative; }
.bottombar .ic { width: 21px; height: 21px; }
.bb-badge { position: absolute; top: 0; right: calc(50% - 20px); background: var(--red); color: #fff; font-size: 9px; min-width: 15px; height: 15px; border-radius: 8px; display: flex; align-items: center; justify-content: center; }
.mdrawer-ov { position: fixed; inset: 0; z-index: 140; }
.mdrawer-ov::before { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,.45); opacity: 0; transition: opacity .25s; }
.mdrawer-ov.in::before { opacity: 1; }
.mdrawer { position: absolute; left: 0; top: 0; bottom: 0; width: min(340px, 88vw); background: #fff; transform: translateX(-103%); transition: transform .28s cubic-bezier(.2,.8,.2,1); display: flex; flex-direction: column; z-index: 1; }
.mdrawer-ov.in .mdrawer { transform: none; }
.mdrawer-head { display: flex; justify-content: space-between; align-items: center; padding: 16px 18px; border-bottom: 1px solid var(--line); font-size: 14px; }
.mdrawer-body { flex: 1; overflow: auto; padding: 8px 12px 30px; }
.mrow { display: flex; align-items: center; gap: 11px; padding: 12px 8px; font-size: 14px; font-weight: 700; border-bottom: 1px solid #f2f2f2; }
.mrow-hot { color: var(--red-deep); }
.macc { border-bottom: 1px solid #f2f2f2; }
.macc summary { display: flex; justify-content: space-between; align-items: center; padding: 13px 8px; font-size: 14px; font-weight: 700; cursor: pointer; list-style: none; }
.macc summary::-webkit-details-marker { display: none; }
.msub { display: block; padding: 8px 8px 8px 18px; font-size: 13px; font-weight: 700; color: #444; }
.msub-all { color: var(--red-deep); }
.mleaf { display: block; padding: 6px 8px 6px 32px; font-size: 12.5px; color: #777; }

/* ============ responsive ============ */
@media (max-width: 1080px) {
  .mainnav { display: none; }
  .hdr-menu { display: flex; }
  .plp-body { grid-template-columns: 1fr; }
  .plp-aside { display: none; }
  .filter-toggle { display: inline-flex; }
  .pdp-top { grid-template-columns: 1fr; }
  .pd-main { position: static; max-width: 520px; }
  .rev-layout { grid-template-columns: 1fr; }
  .rev-summary { position: static; }
  .co-layout { grid-template-columns: 1fr; }
  .co-side { position: static; }
  .ftr-cols { grid-template-columns: 1fr 1fr; }
  .signin { grid-template-columns: 1fr; }
  .si-perks { display: none; }
  .dash { grid-template-columns: 1fr; }
  .dash-side { position: static; display: flex; overflow: auto; gap: 4px; padding: 8px; }
  .ds-user { display: none; }
  .ds-link { white-space: nowrap; }
  .ds-out { border: none; margin: 0; }
}
@media (max-width: 720px) {
  .bottombar { display: flex; }
  body { padding-bottom: 62px; }
  .acct-txt { display: none; }
  .promo-ship { display: none; }
  .hslide { grid-template-columns: 1fr; padding: 38px 26px 54px; min-height: 0; }
  .hs-art { display: none; }
  .hs-title { font-size: 40px; }
  .grid-home, .grid-plp, .grid-newin { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .edit-banners { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .ov-duo { grid-template-columns: 1fr; }
  .cf-grid { grid-template-columns: 1fr; }
  .look-grid { grid-template-columns: repeat(2, 1fr); }
  .f2, .f3 { grid-template-columns: 1fr; }
  .ftr-cols { grid-template-columns: 1fr; }
  .flash-head { flex-wrap: wrap; gap: 8px; }
  .flash-all { margin-left: 0; width: 100%; }
  .dt-grid { grid-template-columns: repeat(2, 1fr); }
  .logo { font-size: 25px; }
  .toast { bottom: 8px; }
  #toasts { bottom: 74px; }
  .wish-head h1 { font-size: 21px; }
}
