:root {
  --bg: #ffffff;
  --bg-2: #f6f6f6;
  --paper: #ffffff;
  --ink: #000000;
  --ink-soft: #1a1a1a;
  --muted: #6b6b6b;
  --line: #e5e5e5;
  --line-strong: #757574;
  --accent: #000000;
  --error: #b00020;
  --success: #1f7a3a;
  --serif: 'Cormorant Garamond', 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, system-ui, sans-serif;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --shadow-xs: 0 1px 2px rgba(20, 20, 20, .04);
  --shadow-sm: 0 2px 8px rgba(20, 20, 20, .05), 0 1px 2px rgba(20, 20, 20, .04);
  --shadow-md: 0 6px 18px rgba(20, 20, 20, .07), 0 2px 4px rgba(20, 20, 20, .04);
  --shadow-lg: 0 16px 36px rgba(20, 20, 20, .1), 0 4px 8px rgba(20, 20, 20, .05);
  --shadow-hero: 0 18px 45px rgba(20, 20, 20, .14);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; }
html, body { background: var(--bg); color: var(--ink); font-family: var(--sans); font-size: 15px; line-height: 1.55; -webkit-font-smoothing: antialiased; overflow-x: hidden; max-width: 100vw; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

/* ───── Topbar ───── */
.topbar { background: #000; color: #fff; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; height: 36px; }
.topbar-links a:hover { opacity: .7; }
.topbar .sep { margin: 0 10px; opacity: .4; }

/* ───── Header ───── */
.site-header { background: #fff; border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 50; box-shadow: 0 1px 0 rgba(0,0,0,.02); }
.header-inner { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; height: 96px; gap: 24px; }
.brand { display: flex; align-items: center; justify-content: flex-start; gap: 12px; height: 100%; padding: 6px 0; }
.brand-logo { max-height: 72px; max-width: 220px; width: auto; height: auto; display: block; object-fit: contain; transition: opacity .2s; }
.brand:hover .brand-logo { opacity: .82; }
.main-nav { display: flex; gap: 36px; justify-content: center; height: 100%; align-items: center; }
.main-nav a { font-size: 13px; letter-spacing: .14em; text-transform: uppercase; padding: 6px 0; border-bottom: 1.5px solid transparent; transition: .2s; color: #000; }
.main-nav a:hover, .main-nav a.active { border-bottom-color: #000; }
.main-nav a.nav-sell { font-weight: 600; }
.header-actions { display: flex; justify-content: flex-end; align-items: center; gap: 6px; }
.action-btn { position: relative; width: 42px; height: 42px; display: inline-flex; align-items: center; justify-content: center; color: #000; border-radius: 50%; transition: background .2s, color .2s; cursor: pointer; }
.action-btn:hover { background: #f3f3f3; }
.action-btn:active { background: #e9e9e9; }
.cart-link { text-decoration: none; }
.cart-count { position: absolute; top: 2px; right: 2px; background: #000; color: #fff; border-radius: 99px; font-size: 10px; font-weight: 700; padding: 2px 6px; min-width: 18px; text-align: center; line-height: 1.2; box-shadow: 0 1px 4px rgba(0,0,0,.2); }

/* User dropdown */
.user-wrap { position: relative; }
.user-menu { position: absolute; top: calc(100% + 6px); right: 0; min-width: 260px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md); box-shadow: var(--shadow-lg); padding: 14px 0 8px; opacity: 0; transform: translateY(-6px); pointer-events: none; transition: opacity .2s, transform .2s; z-index: 60; }
.user-menu.open { opacity: 1; transform: translateY(0); pointer-events: auto; }
.user-menu::before { content: ''; position: absolute; top: -7px; right: 14px; width: 12px; height: 12px; background: #fff; border-left: 1px solid var(--line); border-top: 1px solid var(--line); transform: rotate(45deg); }
.user-menu-header { padding: 6px 18px 14px; border-bottom: 1px solid var(--line); margin-bottom: 8px; }
.user-menu-header strong { display: block; font-family: var(--serif); font-size: 17px; font-weight: 600; color: #000; margin-bottom: 4px; }
.user-menu-header span { display: block; font-size: 12px; color: var(--muted); }
.user-menu a { display: flex; align-items: center; gap: 12px; padding: 10px 18px; font-size: 14px; color: #000; transition: background .15s; }
.user-menu a:hover { background: #f8f8f8; }
.user-menu a.muted { color: var(--muted); font-size: 13px; }
.user-menu a.muted:hover { color: #000; background: #f8f8f8; }
.user-menu .badge-soft { margin-left: auto; background: #000; color: #fff; font-size: 11px; padding: 2px 8px; border-radius: 99px; font-weight: 600; }
.user-menu-divider { height: 1px; background: var(--line); margin: 8px 0; }

/* Search overlay */
.search-overlay { position: fixed; top: 0; left: 0; right: 0; background: #fff; border-bottom: 1px solid var(--line); padding: 24px 24px 28px; transform: translateY(-100%); transition: transform .35s cubic-bezier(.2,.8,.2,1); z-index: 90; box-shadow: 0 12px 30px rgba(0,0,0,.08); }
.search-overlay.open { transform: translateY(0); }
.search-overlay-inner { max-width: 880px; margin: 0 auto; }
.search-form { display: flex; align-items: center; gap: 0; border-bottom: 2px solid #000; padding: 8px 4px; }
.search-form-icon { display: flex; align-items: center; color: #000; padding: 0 12px 0 4px; }
.search-form-input { flex: 1; border: none; outline: none; padding: 12px 4px; font-size: 22px; font-family: var(--serif); font-weight: 500; background: transparent; color: #000; }
.search-form-input::placeholder { color: #aaa; font-style: italic; }
.search-form-submit { padding: 10px 22px; background: #000; color: #fff; border-radius: var(--radius-sm); font-size: 12px; letter-spacing: .15em; text-transform: uppercase; font-weight: 600; transition: .2s; cursor: pointer; }
.search-form-submit:hover { background: #333; }
.search-form-close { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; font-size: 26px; color: #555; margin-left: 8px; border-radius: 50%; transition: .2s; }
.search-form-close:hover { background: #f0f0f0; color: #000; }
.search-suggestions { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; padding: 18px 4px 0; }
.search-suggestions-label { font-size: 11px; letter-spacing: .15em; text-transform: uppercase; color: var(--muted); margin-right: 4px; }
.search-suggestions a { padding: 6px 14px; border: 1px solid var(--line); border-radius: 99px; font-size: 13px; color: #333; transition: .2s; }
.search-suggestions a:hover { background: #000; color: #fff; border-color: #000; }

/* Drawer search */
.drawer-search { display: flex; align-items: center; gap: 10px; padding: 12px 14px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); margin-bottom: 22px; box-shadow: var(--shadow-xs); }
.drawer-search svg { color: #555; flex-shrink: 0; }
.drawer-search input { flex: 1; border: none; outline: none; font-size: 14px; background: transparent; padding: 4px 0; }

/* ───── Burger button ───── */
.burger-btn { display: none; flex-direction: column; gap: 5px; padding: 8px; cursor: pointer; align-items: center; justify-content: center; width: 44px; height: 44px; }
.burger-btn span { display: block; width: 22px; height: 2px; background: #000; border-radius: 2px; transition: .2s; }
.burger-btn:hover span { background: #444; }

/* ───── Mobile drawer ───── */
.drawer-backdrop { position: fixed; inset: 0; background: rgba(0,0,0,.45); z-index: 90; opacity: 0; pointer-events: none; transition: opacity .25s; }
.drawer-backdrop.open { opacity: 1; pointer-events: auto; }
.drawer { position: fixed; top: 0; left: 0; bottom: 0; width: 84%; max-width: 360px; background: #fff; z-index: 100; transform: translateX(-101%); transition: transform .3s cubic-bezier(.2,.8,.2,1); display: flex; flex-direction: column; box-shadow: 0 0 30px rgba(0,0,0,.18); }
.drawer.open { transform: translateX(0); }
.drawer-header { display: flex; align-items: center; gap: 18px; padding: 16px 20px; border-bottom: 1px solid var(--line); flex-shrink: 0; }
.drawer-close { font-size: 32px; line-height: 1; padding: 0; width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; background: transparent; color: #000; }
.drawer-title { font-size: 17px; font-weight: 500; color: #000; flex: 1; }
.drawer-lang { font-size: 14px; color: #555; }
.drawer-body { flex: 1; overflow-y: auto; padding: 24px 20px; background: #fafafa; }
.drawer-eyebrow { font-size: 16px; font-weight: 700; color: #000; margin-bottom: 16px; letter-spacing: .01em; }
.drawer-sell-btn { display: inline-block; padding: 13px 24px; background: #d8e857; color: #000; font-size: 14px; font-weight: 700; letter-spacing: .02em; margin-bottom: 24px; border-radius: var(--radius-sm); box-shadow: 0 4px 14px rgba(216, 232, 87, .35); transition: .2s; }
.drawer-sell-btn:hover { background: #c8d847; box-shadow: 0 6px 20px rgba(200, 216, 71, .45); transform: translateY(-1px); }
.drawer-link { display: flex; justify-content: space-between; align-items: center; padding: 16px 0; font-size: 16px; color: #000; font-weight: 500; border-bottom: 1px solid #ececec; }
.drawer-link .chev { font-size: 22px; color: #999; line-height: 1; }
.drawer-link:hover { color: #b08b3f; }
.drawer-link:hover .chev { color: #b08b3f; }
.drawer-footer { margin-top: 28px; background: #fff; padding: 8px 0; border-top: 1px solid var(--line); }
.drawer-footer .drawer-link-soft { font-size: 15px; color: #555; padding: 14px 0; }

/* ───── Flash ───── */
.flash { padding: 10px 0; font-size: 14px; }
.flash-success { background: #f0f8f0; color: var(--success); border-bottom: 1px solid #cfe6d2; }
.flash-error { background: #fbeaea; color: var(--error); border-bottom: 1px solid #e6c4c4; }

/* ───── Home (TheLuxuryCloset-style) ───── */
html, body { overflow-x: hidden; max-width: 100vw; }
.home-wrap { max-width: 1366px; margin: 0 auto; padding: 24px 16px 0; }

/* ───── Hero Carousel ───── */
.hero-carousel { position: relative; overflow: hidden; margin-bottom: 32px; background: #1a1a1a; aspect-ratio: 16 / 6; border-radius: var(--radius-lg); box-shadow: var(--shadow-hero); }
.carousel-track { display: flex; height: 100%; transition: transform .65s cubic-bezier(.4, .0, .2, 1); will-change: transform; }
.carousel-slide { flex: 0 0 100%; height: 100%; position: relative; display: flex; align-items: center; padding: 0 7%; color: #fff; text-decoration: none; min-height: 320px; overflow: hidden; }
.carousel-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.carousel-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(105deg, rgba(0,0,0,.6) 0%, rgba(0,0,0,.2) 55%, rgba(0,0,0,0) 75%); }
.carousel-content { position: relative; z-index: 2; max-width: 580px; }
.carousel-eyebrow { display: inline-block; font-size: 12px; letter-spacing: .3em; text-transform: uppercase; font-weight: 500; opacity: .9; margin-bottom: 18px; padding: 6px 14px; border: 1px solid rgba(255,255,255,.4); }
.carousel-content h2 { font-family: var(--serif); font-size: clamp(28px, 4.5vw, 60px); font-weight: 500; line-height: 1.05; letter-spacing: -.01em; margin-bottom: 16px; text-shadow: 0 2px 16px rgba(0,0,0,.3); }
.carousel-content p { font-size: clamp(14px, 1.6vw, 18px); opacity: .92; margin-bottom: 24px; max-width: 480px; }
.carousel-cta { display: inline-block; padding: 13px 30px; background: #fff; color: #000; font-size: 12px; letter-spacing: .15em; text-transform: uppercase; font-weight: 600; transition: .25s; border: 1.5px solid #fff; }
.carousel-slide:hover .carousel-cta { background: transparent; color: #fff; }

.carousel-arrow { position: absolute; top: 50%; transform: translateY(-50%); width: 48px; height: 48px; background: rgba(255,255,255,.92); color: #000; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 30px; line-height: 1; font-weight: 300; cursor: pointer; transition: .2s; z-index: 10; box-shadow: 0 4px 18px rgba(0,0,0,.18); }
.carousel-arrow:hover { background: #fff; transform: translateY(-50%) scale(1.05); }
.carousel-prev { left: 18px; }
.carousel-next { right: 18px; }
.carousel-dots { position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%); display: flex; gap: 10px; z-index: 10; }
.carousel-dot { width: 32px; height: 3px; background: rgba(255,255,255,.45); border-radius: 0; cursor: pointer; transition: .25s; padding: 0; }
.carousel-dot:hover { background: rgba(255,255,255,.7); }
.carousel-dot.active { background: #fff; width: 48px; }

@media (max-width: 1024px) {
  .hero-carousel { aspect-ratio: 16 / 8; }
  .carousel-arrow { width: 40px; height: 40px; font-size: 24px; }
  .carousel-prev { left: 10px; }
  .carousel-next { right: 10px; }
}
@media (max-width: 640px) {
  .hero-carousel { aspect-ratio: 4 / 5; margin-left: -8px; margin-right: -8px; margin-bottom: 14px; }
  .carousel-slide { padding: 0 24px 80px; align-items: flex-end; min-height: 380px; }
  .carousel-overlay { background: linear-gradient(180deg, rgba(0,0,0,.05) 0%, rgba(0,0,0,.55) 60%, rgba(0,0,0,.9) 100%); }
  .carousel-content { max-width: 100%; }
  .carousel-eyebrow { font-size: 10px; padding: 4px 10px; margin-bottom: 12px; letter-spacing: .2em; }
  .carousel-content h2 { font-size: 26px; line-height: 1.1; margin-bottom: 10px; }
  .carousel-content p { font-size: 13px; margin-bottom: 16px; }
  .carousel-cta { padding: 11px 22px; font-size: 11px; }
  .carousel-arrow { display: none; }
  .carousel-dots { bottom: 18px; gap: 6px; }
  .carousel-dot { width: 22px; }
  .carousel-dot.active { width: 32px; }
}

.wide-banner { display: block; position: relative; margin-bottom: 28px; overflow: hidden; background: #f0f0f0; }
.wide-banner img { width: 100%; height: auto; aspect-ratio: 1366 / 292; object-fit: cover; transition: transform .8s; }
.wide-banner:hover img { transform: scale(1.02); }
.wide-banner-thin img { aspect-ratio: 1366 / 209; }
.wide-banner-overlay { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; padding: 0 7%; color: #fff; background: linear-gradient(90deg, rgba(0,0,0,.45) 0%, rgba(0,0,0,.2) 50%, rgba(0,0,0,0) 100%); }
.wide-banner-overlay .banner-eyebrow { font-size: 12px; letter-spacing: .25em; text-transform: uppercase; margin-bottom: 10px; opacity: .9; font-weight: 500; }
.wide-banner-overlay h2 { font-family: var(--serif); font-size: clamp(24px, 3.4vw, 44px); font-weight: 500; line-height: 1.1; max-width: 60%; margin-bottom: 14px; letter-spacing: -.005em; }
.wide-banner-overlay h3 { font-family: var(--serif); font-size: clamp(20px, 2.6vw, 32px); font-weight: 500; line-height: 1.15; max-width: 60%; margin: 0; }
.wide-banner-overlay .banner-cta { font-size: 13px; letter-spacing: .15em; text-transform: uppercase; padding-bottom: 4px; border-bottom: 1.5px solid #fff; font-weight: 600; }

.promo-strip { background: #000; color: #fff; text-align: center; padding: 14px 16px; font-size: 13px; letter-spacing: .25em; text-transform: uppercase; font-weight: 500; margin: 0 0 28px; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 28px; }
.grid-3-tile { display: block; position: relative; overflow: hidden; background: #f0f0f0; border-radius: var(--radius-md); box-shadow: var(--shadow-sm); transition: transform .3s, box-shadow .3s; }
.grid-3-tile:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.grid-3-tile img { width: 100%; aspect-ratio: 1/1; object-fit: cover; transition: transform .8s; }
.grid-3-tile:hover img { transform: scale(1.05); }
.grid-3-label { position: absolute; left: 24px; bottom: 24px; color: #fff; font-family: var(--serif); font-size: clamp(20px, 2.4vw, 28px); font-weight: 500; padding: 8px 16px; background: rgba(0,0,0,.55); backdrop-filter: blur(4px); letter-spacing: .03em; }

/* ───── Feature pair (2-column split) ───── */
.feature-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 28px; }
.feature-pair-item { position: relative; display: block; overflow: hidden; background: #f0f0f0; aspect-ratio: 4/3; border-radius: var(--radius-md); box-shadow: var(--shadow-sm); transition: transform .3s, box-shadow .3s; }
.feature-pair-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.feature-pair-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s; }
.feature-pair-item:hover img { transform: scale(1.05); }
.fp-overlay { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: 32px; color: #fff; background: linear-gradient(180deg, rgba(0,0,0,.05) 0%, rgba(0,0,0,.25) 50%, rgba(0,0,0,.7) 100%); }
.fp-overlay .fp-eyebrow { font-size: 11px; letter-spacing: .25em; text-transform: uppercase; opacity: .85; font-weight: 500; margin-bottom: 8px; }
.fp-overlay h3 { font-family: var(--serif); font-size: clamp(22px, 2.6vw, 36px); font-weight: 500; margin-bottom: 6px; line-height: 1.1; }
.fp-overlay p { font-size: 14px; opacity: .9; margin-bottom: 14px; }
.fp-overlay .fp-cta { font-size: 12px; letter-spacing: .15em; text-transform: uppercase; padding-bottom: 4px; border-bottom: 1.5px solid #fff; font-weight: 600; align-self: flex-start; }

/* ───── Sell CTA banner (text only) ───── */
.sell-cta-banner { background: #000; color: #fff; padding: 64px 24px; margin: 28px 0; text-align: center; position: relative; overflow: hidden; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.sell-cta-banner::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 30% 50%, rgba(255,255,255,.04) 0%, transparent 50%); }
.sell-cta-inner { position: relative; max-width: 720px; margin: 0 auto; }
.sca-eyebrow { display: block; color: #b08b3f; font-size: 12px; letter-spacing: .3em; text-transform: uppercase; margin-bottom: 16px; font-weight: 500; }
.sell-cta-banner h2 { font-family: var(--serif); font-size: clamp(28px, 4vw, 44px); font-weight: 500; margin-bottom: 16px; letter-spacing: -.005em; }
.sell-cta-banner p { font-size: 16px; opacity: .8; margin-bottom: 28px; max-width: 540px; margin-left: auto; margin-right: auto; line-height: 1.6; }
.sca-btn { display: inline-block; padding: 16px 36px; background: #fff; color: #000; font-size: 13px; letter-spacing: .15em; text-transform: uppercase; font-weight: 600; transition: .25s; border: 1.5px solid #fff; border-radius: var(--radius-sm); box-shadow: 0 8px 22px rgba(255,255,255,.18); }
.sca-btn:hover { background: transparent; color: #fff; box-shadow: 0 12px 28px rgba(255,255,255,.22); transform: translateY(-1px); }

/* ───── Press strip (text only) ───── */
.press-strip { background: #fafafa; border: 1px solid var(--line); padding: 28px 16px; text-align: center; margin: 28px 0; display: flex; flex-direction: column; gap: 6px; align-items: center; border-radius: var(--radius-md); box-shadow: var(--shadow-xs); }
.press-strip .press-eyebrow { font-size: 11px; letter-spacing: .3em; text-transform: uppercase; color: var(--muted); font-weight: 500; }
.press-strip .press-list { font-family: var(--serif); font-size: clamp(16px, 2vw, 22px); font-weight: 500; color: #000; letter-spacing: .15em; }

.new-arrivals { padding: 32px 0 16px; }
.na-heading { font-family: var(--serif); font-size: 32px; font-weight: 500; text-align: center; margin-bottom: 28px; letter-spacing: .04em; }
.na-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px 20px; }
.na-card { display: block; color: #000; transition: transform .25s, box-shadow .25s; background: #fff; border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-xs); }
.na-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.na-image { position: relative; aspect-ratio: 1/1; overflow: hidden; background: var(--bg-2); }
.na-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.na-card:hover .na-image img { transform: scale(1.04); }
.na-tag { position: absolute; top: 10px; left: 10px; background: rgba(255,255,255,.95); color: #000; font-size: 11px; padding: 5px 11px; letter-spacing: .04em; z-index: 2; border-radius: 99px; box-shadow: 0 2px 6px rgba(0,0,0,.08); font-weight: 500; }
.na-view-all-overlay { position: absolute; inset: 0; background: rgba(0,0,0,.55); display: flex; align-items: center; justify-content: center; z-index: 3; transition: background .2s; }
.na-card-last:hover .na-view-all-overlay { background: rgba(0,0,0,.7); }
.na-view-all-overlay span { color: #fff; font-family: var(--serif); font-size: 28px; font-weight: 500; letter-spacing: .12em; padding: 12px 32px; border: 1.5px solid #fff; }
.na-details { padding: 14px 14px 18px; }
.na-brand-row { display: flex; justify-content: space-between; align-items: flex-start; }
.na-brand { font-size: 14px; font-weight: 600; color: #000; letter-spacing: .02em; }
.na-heart { color: #999; cursor: pointer; padding: 0 0 0 8px; }
.na-heart:hover { color: #000; }
.na-name { font-size: 13px; font-weight: 400; line-height: 1.4; color: #2a2a2a; margin: 4px 0 6px; min-height: 36px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.na-price { font-size: 16px; font-weight: 600; color: #000; }

.trust-factors { padding: 60px 16px 40px; background: #fafafa; margin: 40px 0 0; }
.trust-title { text-align: center; font-family: var(--serif); font-size: 30px; font-weight: 500; margin-bottom: 36px; letter-spacing: .02em; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; max-width: 1200px; margin: 0 auto; }
.trust-item { display: flex; gap: 16px; align-items: flex-start; padding: 22px; background: #fff; border-radius: var(--radius-md); box-shadow: var(--shadow-xs); transition: transform .25s, box-shadow .25s; }
.trust-item:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.trust-icon { flex-shrink: 0; width: 56px; height: 56px; display: flex; align-items: center; justify-content: center; background: #fafafa; border: 1px solid var(--line); border-radius: 50%; }
.trust-content h4 { font-size: 15px; font-weight: 600; color: #000; margin-bottom: 6px; letter-spacing: .02em; }
.trust-content p { font-size: 13px; color: #555; line-height: 1.5; }

@media (max-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .na-grid { grid-template-columns: repeat(3, 1fr); }
  .na-card-last { display: none; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .home-wrap { padding: 12px 8px 0; }
  .wide-banner { margin-bottom: 16px; }
  .wide-banner-overlay h2 { font-size: 18px; max-width: 70%; margin-bottom: 8px; }
  .wide-banner-overlay h3 { font-size: 15px; max-width: 70%; }
  .wide-banner-overlay .banner-eyebrow { font-size: 10px; }
  .wide-banner-overlay .banner-cta { font-size: 11px; }
  .promo-strip { font-size: 11px; padding: 10px; letter-spacing: .15em; }
  .grid-3 { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .grid-3-label { font-size: 13px; left: 6px; bottom: 6px; padding: 4px 8px; }
  .na-grid { grid-template-columns: repeat(2, 1fr); gap: 16px 12px; }
  .na-name { font-size: 12px; min-height: 32px; }
  .na-price { font-size: 14px; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-factors { padding: 36px 16px 24px; }
}

/* ───── Hero ───── */
.hero { background: #000; color: #fff; padding: 96px 0; position: relative; overflow: hidden; }
.hero-inner { position: relative; max-width: 760px; }
.hero .eyebrow { color: #fff; letter-spacing: .25em; font-size: 12px; text-transform: uppercase; margin-bottom: 18px; font-weight: 500; opacity: .7; }
.hero h1 { font-family: var(--serif); font-size: clamp(40px, 6vw, 72px); font-weight: 500; line-height: 1.05; letter-spacing: -.01em; margin-bottom: 24px; }
.hero h1 em { font-style: italic; }
.hero p { font-size: 17px; max-width: 560px; color: rgba(255,255,255,.75); margin-bottom: 36px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

/* ───── Buttons ───── */
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 14px 32px; font-size: 13px; letter-spacing: .15em; text-transform: uppercase; font-weight: 600; transition: .25s; cursor: pointer; border: 1.5px solid transparent; border-radius: var(--radius-sm); }
.btn-primary, .btn-dark { box-shadow: var(--shadow-sm); }
.btn-primary:hover, .btn-dark:hover { box-shadow: var(--shadow-md); transform: translateY(-1px); }
.btn-primary { background: #000; color: #fff; border-color: #000; }
.btn-primary:hover { background: #fff; color: #000; }
.btn-outline { border-color: #fff; color: #fff; }
.btn-outline:hover { background: #fff; color: #000; }
.btn-dark { background: #000; color: #fff; border-color: #000; }
.btn-dark:hover { background: #1a1a1a; }
.btn-ghost { background: transparent; color: #000; border-color: #000; }
.btn-ghost:hover { background: #000; color: #fff; }
.btn-block { width: 100%; }

/* ───── Section ───── */
.section { padding: 80px 0; }
.section-header { text-align: center; margin-bottom: 48px; }
.section-eyebrow { color: #000; font-size: 12px; letter-spacing: .25em; text-transform: uppercase; font-weight: 500; margin-bottom: 12px; }
.section-title { font-family: var(--serif); font-size: 44px; font-weight: 500; letter-spacing: -.01em; }
.section-sub { color: var(--muted); margin-top: 12px; font-size: 16px; }

/* ───── Category cards (home) ───── */
.cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.cat-card { position: relative; aspect-ratio: 4/5; overflow: hidden; background: #000; border-radius: var(--radius-md); box-shadow: var(--shadow-sm); transition: transform .3s, box-shadow .3s; }
.cat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.cat-card img { width: 100%; height: 100%; object-fit: cover; transition: 1s; opacity: .75; }
.cat-card:hover img { transform: scale(1.05); opacity: .95; }
.cat-card-overlay { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; color: #fff; text-align: center; }
.cat-card-overlay h3 { font-family: var(--serif); font-size: 42px; font-weight: 500; margin-bottom: 8px; letter-spacing: .04em; }
.cat-card-overlay span { font-size: 12px; letter-spacing: .25em; text-transform: uppercase; border-bottom: 1px solid rgba(255,255,255,.5); padding-bottom: 4px; }

/* ───── Product grid ───── */
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px 24px; }
.product-card { background: #fff; transition: transform .25s, box-shadow .25s; border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-xs); }
.product-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.product-card .img-wrap { aspect-ratio: 1/1; overflow: hidden; background: var(--bg-2); position: relative; }
.product-card img { width: 100%; height: 100%; object-fit: cover; transition: .6s; }
.product-card:hover img { transform: scale(1.03); }
.product-card .body { padding: 16px 16px 22px; }
.product-card .brand { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
.product-card .name { font-family: var(--serif); font-size: 19px; font-weight: 500; margin-bottom: 10px; line-height: 1.25; min-height: 44px; color: #000; }
.product-card .price-row { display: flex; align-items: baseline; gap: 10px; }
.product-card .price { font-weight: 600; font-size: 16px; }
.product-card .original { font-size: 13px; color: var(--muted); text-decoration: line-through; }
.product-card .badge { position: absolute; top: 10px; left: 10px; background: #000; color: #fff; font-size: 10px; letter-spacing: .15em; text-transform: uppercase; padding: 4px 8px; }

/* ───── Category page ───── */
.category-head { background: var(--bg-2); padding: 60px 0; text-align: center; }
.category-head h1 { font-family: var(--serif); font-size: 56px; font-weight: 500; letter-spacing: -.01em; }
.category-head p { color: var(--muted); margin-top: 8px; }
.category-toolbar { display: flex; justify-content: space-between; align-items: center; padding: 24px 0; border-bottom: 1px solid var(--line); margin-bottom: 32px; flex-wrap: wrap; gap: 16px; }
.filter-group { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.filter-group label { font-size: 13px; color: var(--muted); margin-right: 8px; }
.chip { padding: 6px 14px; border: 1px solid var(--line); border-radius: 99px; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; transition: .2s; cursor: pointer; }
.chip:hover, .chip.active { background: #000; color: #fff; border-color: #000; }
.toolbar-right select { border: 1px solid var(--line); background: #fff; padding: 8px 28px 8px 12px; font-size: 13px; }

/* ───── Product page ───── */
.product-detail { display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; padding: 60px 0; }
.gallery { display: flex; flex-direction: column; gap: 12px; }
.gallery .main { aspect-ratio: 1/1; background: var(--bg-2); overflow: hidden; }
.gallery .main img { width: 100%; height: 100%; object-fit: cover; }
.gallery .thumbs { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; }
.gallery .thumbs img { aspect-ratio: 1/1; object-fit: cover; cursor: pointer; opacity: .65; transition: .2s; }
.gallery .thumbs img:hover, .gallery .thumbs img.active { opacity: 1; outline: 2px solid #000; }
.product-info .brand-line { font-size: 12px; letter-spacing: .25em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; }
.product-info h1 { font-family: var(--serif); font-size: 40px; font-weight: 500; line-height: 1.15; margin-bottom: 24px; }
.product-info .price-block { display: flex; align-items: baseline; gap: 14px; padding-bottom: 24px; border-bottom: 1px solid var(--line); margin-bottom: 24px; flex-wrap: wrap; }
.product-info .price-block .price { font-size: 32px; font-weight: 600; }
.product-info .price-block .original { font-size: 18px; color: var(--muted); text-decoration: line-through; }
.product-info .meta-row { display: flex; gap: 48px; padding: 16px 0; border-bottom: 1px solid var(--line); margin-bottom: 24px; flex-wrap: wrap; }
.meta-row .meta-item span:first-child { font-size: 11px; letter-spacing: .15em; text-transform: uppercase; color: var(--muted); display: block; margin-bottom: 4px; }
.meta-row .meta-item span:last-child { font-weight: 500; }
.product-info .description { color: var(--muted); margin: 24px 0; line-height: 1.7; }
.add-to-cart-form { display: flex; gap: 12px; align-items: center; }
.add-to-cart-form input[type=number] { width: 70px; padding: 14px 12px; border: 1.5px solid var(--line); font-size: 14px; text-align: center; }
.product-perks { margin-top: 32px; padding: 24px; background: var(--bg-2); display: grid; grid-template-columns: 1fr 1fr; gap: 16px; border-radius: var(--radius-md); box-shadow: var(--shadow-xs); }
.product-perks .perk { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; }
.product-perks svg { color: #000; flex-shrink: 0; }

/* ───── Cart / checkout ───── */
.cart-table { width: 100%; border-collapse: collapse; margin: 32px 0; }
.cart-table th, .cart-table td { padding: 16px 12px; text-align: left; border-bottom: 1px solid var(--line); vertical-align: middle; }
.cart-table th { font-size: 11px; letter-spacing: .15em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.cart-thumb { width: 80px; height: 80px; object-fit: cover; background: var(--bg-2); }
.cart-row .item-meta { display: flex; gap: 16px; align-items: center; }
.qty-form { display: inline-flex; align-items: center; gap: 6px; }
.qty-form input { width: 56px; padding: 6px; border: 1px solid var(--line); text-align: center; }
.cart-summary { margin-left: auto; max-width: 400px; background: var(--bg-2); padding: 24px; border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
.cart-summary .row { display: flex; justify-content: space-between; padding: 8px 0; }
.cart-summary .row.total { font-size: 18px; font-weight: 600; border-top: 1px solid var(--line); margin-top: 12px; padding-top: 16px; }

.checkout-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 48px; padding: 40px 0; }
.form-row { margin-bottom: 18px; }
.form-row label { display: block; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; font-weight: 500; }
.form-row input, .form-row select, .form-row textarea { width: 100%; padding: 12px 14px; border: 1px solid var(--line-strong); background: #fff; font: inherit; font-size: 14px; transition: .2s; border-radius: 4px; }
.form-row input:focus, .form-row select:focus, .form-row textarea:focus { outline: none; border-color: #000; }
.form-row textarea { resize: vertical; min-height: 100px; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; }
.checkbox-row { display: flex; align-items: center; gap: 10px; padding: 8px 0; }
.checkbox-row input { width: auto; }

/* ───── Sell page (TheLuxuryCloset-style) ───── */
.sell-wrap { max-width: 980px; margin: 0 auto; padding: 48px 24px; }
.sell-heading { font-family: var(--serif); font-size: 32px; font-weight: 500; color: #000; margin-bottom: 6px; text-align: left; }
.sell-subheading { color: #555; margin-bottom: 32px; font-size: 15px; }

.item-card { background: #fff; border: 1px solid var(--line); margin-bottom: 24px; border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); }
.item-card-header { background: #1a1a1a; color: #fff; padding: 14px 24px; display: flex; justify-content: space-between; align-items: center; }
.item-card-header h3 { color: #fff; }
.item-card-header h3 { font-size: 15px; font-weight: 600; color: #000; letter-spacing: .02em; }
.item-card-header .remove-item { color: #b00020; font-size: 13px; padding: 4px 10px; cursor: pointer; }
.item-card-body { padding: 28px 32px; }

.field-title { font-size: 14px; color: #000; margin-bottom: 10px; font-weight: 500; }
.field-title .req { color: #000; }

.gender-box { display: flex; gap: 24px; margin-bottom: 18px; }
.gender-tile { flex: 0 0 130px; height: 110px; border: 1px solid var(--line-strong); border-radius: var(--radius-sm); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; cursor: pointer; transition: .2s; background: #fff; box-shadow: var(--shadow-xs); }
.gender-tile:hover { border-color: #000; box-shadow: var(--shadow-sm); transform: translateY(-1px); }
.gender-tile.selected { border: 2px solid #000; background: #fafafa; box-shadow: var(--shadow-sm); }
.gender-tile input { display: none; }
.gender-tile img { width: 32px; height: 32px; object-fit: contain; }
.gender-tile span { font-size: 14px; color: #000; }

.row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-bottom: 18px; }
.row-2-50 { display: grid; grid-template-columns: 1fr 1.2fr; gap: 30px; margin-bottom: 18px; }

.field { display: flex; flex-direction: column; }
.field select, .field input[type=text], .field input[type=tel] { height: 48px; line-height: 48px; padding: 0 14px; background: #fff; border: 1px solid var(--line-strong); border-radius: 4px; font-size: 16px; font-family: inherit; color: #000; }
.field select { appearance: none; background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3e%3cpath fill='%23000' d='M2 4l4 4 4-4z'/%3e%3c/svg%3e"); background-repeat: no-repeat; background-position: right 14px center; background-size: 12px; padding-right: 36px; }
.field textarea { padding: 10px 14px; border: 1px solid var(--line-strong); border-radius: 4px; font-size: 14px; font-family: inherit; min-height: 80px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: #000; }

.condition-box { display: flex; gap: 32px; margin-top: 6px; }
.condition-tile { display: flex; align-items: center; gap: 10px; cursor: pointer; padding: 6px 0; }
.condition-tile input { display: none; }
.condition-circle { width: 18px; height: 18px; border-radius: 50%; border: 1.5px solid #000; flex-shrink: 0; position: relative; }
.condition-tile.selected .condition-circle::after { content: ''; position: absolute; inset: 3px; background: #000; border-radius: 50%; }
.condition-tile span { font-size: 14px; color: #000; }

.upload-row-header { display: flex; gap: 12px; align-items: baseline; margin: 28px 0 12px; }
.upload-row-header .title { font-size: 14px; font-weight: 500; color: #000; }
.upload-row-header .disclaimer { font-size: 12px; color: #757574; }
.photo-grid { display: grid; grid-template-columns: repeat(5, 140px); gap: 16px; }
.photo-slot { display: flex; flex-direction: column; gap: 8px; }
.photo-slot label.title { font-size: 12px; color: #000; font-weight: 500; }
.photo-dropzone { width: 140px; height: 140px; border: 2px dashed #b3b3b3; border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; cursor: pointer; position: relative; overflow: hidden; background: #fafafa; transition: .2s; box-shadow: var(--shadow-xs); }
.photo-dropzone:hover { border-color: #000; background: #fff; box-shadow: var(--shadow-sm); }
.photo-dropzone .plus { font-size: 28px; color: #000; line-height: 1; }
.photo-dropzone input[type=file] { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.photo-dropzone .preview { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.photo-dropzone.has-image .plus { display: none; }
.photo-dropzone .clear-btn { position: absolute; top: 4px; right: 4px; width: 22px; height: 22px; background: #000; color: #fff; border-radius: 50%; display: none; align-items: center; justify-content: center; font-size: 12px; cursor: pointer; z-index: 2; }
.photo-dropzone.has-image .clear-btn { display: flex; }

.add-another { margin: 24px 0; display: flex; justify-content: flex-start; padding-left: 32px; }
.add-another button { height: 46px; padding: 0 26px; border: 1px solid #000; background: #fff; color: #000; font-weight: 600; letter-spacing: .04em; cursor: pointer; transition: .15s; border-radius: 4px; }
.add-another button:hover { background: #000; color: #fff; }

.contact-bar { display: flex; gap: 32px; align-items: flex-start; padding: 24px 0; flex-wrap: wrap; }
.contact-bar .contact-detail { flex: 1; min-width: 320px; }
.contact-bar .voucher { flex: 1; min-width: 280px; }
.contact-bar .titles { font-size: 14px; color: #000; margin-bottom: 8px; font-weight: 500; }
.contact-bar .country-input-wrap { display: flex; gap: 8px; align-items: stretch; }
.country-code-box { display: flex; align-items: center; gap: 6px; height: 42px; padding: 0 12px; border: 1px solid #9ca3af; border-radius: 6px; background: #fff; cursor: pointer; min-width: 90px; font-size: 14px; }
.country-code-select { height: 42px; padding: 0 28px 0 12px; border: 1px solid #9ca3af; border-radius: 6px; background: #fff; font-size: 14px; min-width: 100px; appearance: none; background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3e%3cpath fill='%23000' d='M2 4l4 4 4-4z'/%3e%3c/svg%3e"); background-repeat: no-repeat; background-position: right 10px center; background-size: 11px; }
.contact-bar .phone-input { flex: 1; height: 42px; padding: 0 18px; border: 1px solid #9ca3af; border-radius: 6px; font-size: 14px; }
.voucher .input-row { display: flex; gap: 0; align-items: stretch; }
.voucher input { flex: 1; height: 42px; padding: 0 18px; border: 1px solid #9ca3af; border-right: none; border-radius: 4px 0 0 4px; font-size: 14px; }
.voucher .apply-btn { height: 42px; padding: 0 22px; background: #fff; color: #000; border: 1px solid #9ca3af; border-left: none; border-radius: 0 4px 4px 0; cursor: pointer; font-weight: 600; letter-spacing: .04em; }

.terms-row { display: flex; align-items: center; gap: 10px; padding: 18px 0 24px; }
.terms-row input { width: 18px; height: 18px; accent-color: #000; }
.terms-row label { font-size: 14px; color: #000; }
.terms-row .underline { text-decoration: underline; }

.submit-row { padding: 8px 0 24px; }
.btn-quotation { height: 50px; padding: 0 38px; min-width: 320px; background: #000; color: #fff; border: 1px solid #000; border-radius: var(--radius-sm); font-size: 15px; letter-spacing: .04em; font-weight: 600; cursor: pointer; transition: .25s; box-shadow: var(--shadow-md); }
.btn-quotation:hover { background: #fff; color: #000; box-shadow: var(--shadow-lg); transform: translateY(-1px); }
.btn-quotation:disabled { opacity: .5; cursor: not-allowed; }

.error-text { color: var(--error); font-size: 12px; margin-top: 4px; min-height: 16px; }

/* ───── Sell hero (lightweight) ───── */
.sell-hero { background: #000; color: #fff; padding: 64px 0; text-align: center; border-radius: var(--radius-lg); margin: 16px 16px 0; box-shadow: var(--shadow-md); }
.sell-hero h1 { font-family: var(--serif); font-size: 52px; font-weight: 500; margin-bottom: 12px; }
.sell-hero p { color: rgba(255,255,255,.75); font-size: 16px; max-width: 660px; margin: 0 auto; }
.sell-steps { background: var(--bg-2); padding: 48px 0; }
.sell-steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.sell-step { text-align: center; }
.sell-step .num { font-family: var(--serif); font-size: 30px; color: #000; margin-bottom: 8px; font-weight: 500; }
.sell-step h4 { font-family: var(--serif); font-size: 20px; font-weight: 500; margin-bottom: 6px; }
.sell-step p { color: var(--muted); font-size: 13px; }

/* ───── Seller Reviews ───── */
.seller-reviews { background: #fafafa; padding: 64px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.reviews-header { text-align: center; margin-bottom: 40px; }
.reviews-eyebrow { display: inline-block; font-size: 12px; letter-spacing: .25em; text-transform: uppercase; color: #b08b3f; font-weight: 600; margin-bottom: 12px; }
.reviews-header h2 { font-family: var(--serif); font-size: clamp(28px, 4vw, 42px); font-weight: 500; color: #000; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 1200px; margin: 0 auto; padding: 0 16px; }
.review-card { background: #fff; padding: 28px 26px; border: 1px solid var(--line); display: flex; flex-direction: column; gap: 14px; transition: transform .25s, box-shadow .25s; border-radius: var(--radius-md); box-shadow: var(--shadow-xs); }
.review-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.review-stars { font-size: 18px; color: #f5b800; letter-spacing: 2px; }
.review-quote { font-size: 14.5px; line-height: 1.65; color: #333; flex: 1; font-style: italic; }
.review-quote::before { content: '"'; font-family: var(--serif); font-size: 28px; line-height: 0; vertical-align: -4px; color: #999; margin-right: 4px; }
.review-quote::after { content: '"'; font-family: var(--serif); font-size: 28px; line-height: 0; vertical-align: -8px; color: #999; }
.review-author { display: flex; align-items: center; gap: 12px; padding-top: 14px; border-top: 1px solid var(--line); }
.review-avatar { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 600; font-size: 16px; font-family: var(--serif); flex-shrink: 0; }
.review-name { font-size: 14px; font-weight: 600; color: #000; }
.review-meta { font-size: 12px; color: #777; margin-top: 2px; }
.review-meta .verified { color: #1f7a3a; font-weight: 600; }

@media (max-width: 1024px) {
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
  .seller-reviews { padding: 36px 0 28px; }
  .reviews-header { margin-bottom: 22px; padding: 0 16px; }
  .reviews-grid {
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 12px;
    padding: 4px 16px 18px;
    max-width: 100%;
    scroll-padding: 16px;
  }
  .reviews-grid::-webkit-scrollbar { display: none; }
  .review-card {
    flex: 0 0 86%;
    max-width: 360px;
    scroll-snap-align: center;
    scroll-snap-stop: always;
    padding: 22px 20px;
  }
  .review-quote { font-size: 14px; }
  .reviews-hint { display: flex !important; }
}
.reviews-hint { display: none; justify-content: center; align-items: center; gap: 8px; margin-top: 4px; font-size: 11px; color: var(--muted); letter-spacing: .15em; text-transform: uppercase; }
.reviews-hint .arrow { font-size: 16px; animation: hintSwipe 1.6s ease-in-out infinite; }
@keyframes hintSwipe { 0%,100% { transform: translateX(0); } 50% { transform: translateX(8px); } }

.thanks-page { padding: 100px 0; text-align: center; }
.thanks-page .icon { font-size: 60px; color: #000; margin-bottom: 16px; }
.thanks-page h1 { font-family: var(--serif); font-size: 48px; font-weight: 500; margin-bottom: 12px; }

/* ───── Footer ───── */
.site-footer { background: #000; color: rgba(255,255,255,.7); padding: 64px 0 24px; margin-top: 80px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 40px; border-bottom: 1px solid #222; }
.footer-brand { font-family: var(--serif); font-size: 26px; color: #fff; margin-bottom: 12px; }
.footer-col h4 { font-size: 13px; letter-spacing: .15em; text-transform: uppercase; color: #fff; margin-bottom: 16px; font-weight: 600; }
.footer-col a { display: block; font-size: 14px; padding: 4px 0; }
.footer-col a:hover { color: #fff; }
.footer-bottom { padding-top: 24px; display: flex; justify-content: space-between; font-size: 12px; color: rgba(255,255,255,.4); }

/* ───── Admin ───── */
.admin-shell { display: grid; grid-template-columns: 240px 1fr; min-height: 100vh; background: #f5f5f5; }
.admin-sidebar { background: #000; color: #d6d6d6; padding: 24px 0; }
.admin-sidebar .brand { padding: 0 20px 22px; border-bottom: 1px solid #1a1a1a; margin-bottom: 16px; justify-content: center; height: auto; }
.brand-logo-admin { max-height: 68px; max-width: 180px; filter: invert(1) brightness(1.1); }
.admin-sidebar a { display: block; padding: 12px 24px; font-size: 14px; transition: .2s; border-left: 3px solid transparent; color: #d6d6d6; }
.admin-sidebar a:hover, .admin-sidebar a.active { background: #1a1a1a; color: #fff; border-left-color: #fff; }
.admin-sidebar .logout { margin-top: 24px; padding: 0 24px; }
.admin-sidebar .logout button { color: #d6d6d6; font-size: 13px; padding: 8px 0; }
.admin-sidebar .logout button:hover { color: #fff; }
.admin-main { padding: 32px 40px; }
.admin-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 32px; padding-bottom: 24px; border-bottom: 1px solid var(--line); }
.admin-header h1 { font-family: var(--serif); font-size: 32px; font-weight: 500; }

.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 32px; }
.stat-card { background: #fff; padding: 22px; border-left: 3px solid #000; border-radius: var(--radius-md); box-shadow: var(--shadow-xs); transition: transform .2s, box-shadow .2s; }
.stat-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.stat-card .label { font-size: 11px; letter-spacing: .15em; text-transform: uppercase; color: var(--muted); }
.stat-card .value { font-family: var(--serif); font-size: 36px; font-weight: 500; margin-top: 8px; }
.stat-card .sub { font-size: 12px; color: var(--muted); margin-top: 4px; }

.admin-card { background: #fff; padding: 24px; margin-bottom: 24px; border: 1px solid var(--line); border-radius: var(--radius-md); box-shadow: var(--shadow-xs); }
.admin-card h2 { font-family: var(--serif); font-size: 22px; font-weight: 500; margin-bottom: 16px; }
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th, .admin-table td { padding: 12px; text-align: left; border-bottom: 1px solid var(--line); font-size: 14px; vertical-align: middle; }
.admin-table th { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.admin-table tr:hover { background: var(--bg-2); }
.admin-table img.thumb { width: 50px; height: 50px; object-fit: cover; }
.admin-table .actions { display: flex; gap: 8px; }
.admin-table .actions a, .admin-table .actions button { font-size: 12px; padding: 6px 10px; border: 1px solid var(--line); }
.admin-table .actions a:hover { background: #000; color: #fff; border-color: #000; }
.admin-table .actions .delete { color: var(--error); border-color: #e6c4c4; }
.admin-table .actions .delete:hover { background: var(--error); color: #fff; }
.status-pill { display: inline-block; padding: 4px 10px; border-radius: 99px; font-size: 11px; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; }
.status-pending, .status-new { background: #f0f0f0; color: #000; border: 1px solid #ccc; }
.status-paid, .status-reviewing { background: #e8eef6; color: #1f4a7a; }
.status-shipped, .status-accepted { background: #e9f5ec; color: #1f7a3a; }
.status-delivered { background: #000; color: #fff; }
.status-cancelled, .status-rejected { background: #fbeaea; color: #b00020; }

.upload-zone { border: 2px dashed var(--line); padding: 36px; text-align: center; cursor: pointer; transition: .2s; border-radius: 4px; }
.upload-zone:hover { border-color: #000; background: var(--bg-2); }
.upload-zone .icon { font-size: 36px; color: #000; margin-bottom: 8px; }
.upload-zone p { color: var(--muted); }
.upload-zone input { display: none; }
.upload-preview { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-top: 16px; }
.upload-preview img { aspect-ratio: 1/1; object-fit: cover; }

.login-page { min-height: 100vh; display: grid; place-items: center; background: #000; }
.login-card { background: #fff; padding: 48px; width: 420px; max-width: 90vw; border-radius: var(--radius-lg); box-shadow: 0 24px 60px rgba(0,0,0,.4); }
.login-card h1 { font-family: var(--serif); font-size: 28px; text-align: center; margin-bottom: 8px; }
.login-card .sub { text-align: center; color: var(--muted); font-size: 13px; margin-bottom: 24px; }

@media (max-width: 1024px) {
  .product-grid, .cat-grid { grid-template-columns: repeat(3, 1fr); }
  .product-detail { grid-template-columns: 1fr; gap: 32px; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .photo-grid { grid-template-columns: repeat(3, 1fr); }
  .photo-dropzone { width: 100%; height: 0; padding-bottom: 100%; }
}
@media (max-width: 900px) {
  .burger-btn { display: flex; }
  .header-inner { grid-template-columns: auto 1fr auto; gap: 8px; height: 70px; }
  .brand { justify-content: center; padding: 4px 0; }
  .brand-logo { max-height: 50px; max-width: 160px; }
  .main-nav { display: none; }
  .user-wrap { display: none; }
  .header-actions { gap: 2px; }
  .action-btn { width: 38px; height: 38px; }
  .topbar { display: none; }
  .feature-pair { grid-template-columns: 1fr; gap: 12px; }
  .feature-pair-item { aspect-ratio: 16/10; }
  .fp-overlay { padding: 22px; }
  .search-overlay { padding: 16px 14px 18px; }
  .search-form-input { font-size: 18px; padding: 10px 4px; }
  .search-form-submit { padding: 9px 16px; font-size: 11px; }
  .search-suggestions { padding-top: 14px; }
  .search-suggestions a { padding: 5px 11px; font-size: 12px; }
}
@media (max-width: 768px) {
  .product-grid, .cat-grid { grid-template-columns: repeat(2, 1fr); gap: 14px 10px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .checkout-grid { grid-template-columns: 1fr; gap: 24px; }
  .admin-shell { grid-template-columns: 1fr; }
  .admin-sidebar { display: none; }
  .admin-main { padding: 20px 16px; }
  .admin-header h1 { font-size: 24px; }
  .stat-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .stat-card .value { font-size: 28px; }
  .sell-steps-grid { grid-template-columns: 1fr 1fr; gap: 18px; }
  .form-grid-2, .form-grid-3, .row-2, .row-2-50 { grid-template-columns: 1fr; gap: 10px; }
  .photo-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .photo-dropzone { width: 100%; height: auto; aspect-ratio: 1/1; padding-bottom: 0; }
  .photo-slot { width: 100%; }
  .item-card-body { padding: 18px 16px; }
  .item-card-header { padding: 10px 16px; }
  .add-another { padding-left: 0; padding-right: 0; }
  .gender-tile { flex: 0 0 calc(50% - 8px); height: 92px; }
  .gender-box { gap: 12px; }
  .brand-logo { max-height: 42px; max-width: 140px; }
  .header-inner { height: 64px; }
  .container { padding: 0 14px; }
  .sell-cta-banner { padding: 40px 18px; margin: 14px -8px; }
  .sell-cta-banner h2 { font-size: 26px; }
  .sell-cta-banner p { font-size: 14px; }
  .press-strip { padding: 18px 12px; margin: 14px -8px; }
  .press-strip .press-list { letter-spacing: .06em; font-size: 14px; }
  .home-wrap { padding: 8px 8px 0; }
  .promo-strip { font-size: 10px; padding: 9px 8px; letter-spacing: .12em; margin-bottom: 14px; }
  .grid-3 { gap: 8px; margin-bottom: 14px; }
  .grid-3-tile img { aspect-ratio: 1/1; }
  .wide-banner { margin-bottom: 14px; }
  .feature-pair { margin-bottom: 14px; }
  .sell-wrap { padding: 24px 12px; }
  .sell-form { padding: 0; border: none; background: transparent; }
  .sell-heading { font-size: 24px; }
  .sell-hero { padding: 36px 16px; }
  .sell-hero h1 { font-size: 30px; }
  .sell-hero p { font-size: 14px; }
  .sell-steps { padding: 28px 0; }
  .contact-bar { gap: 18px; padding: 16px 0; }
  .voucher .input-row { flex-wrap: wrap; }
  .voucher input { width: 100%; border-radius: 4px; border-right: 1px solid #9ca3af; }
  .voucher .apply-btn { width: 100%; border-radius: 4px; border-left: 1px solid #9ca3af; margin-top: 8px; }
  .btn-quotation { width: 100%; min-width: 0; }
  .product-detail { padding: 24px 0; gap: 24px; }
  .product-info h1 { font-size: 26px; }
  .product-info .price-block .price { font-size: 24px; }
  .meta-row { gap: 24px; }
  .product-perks { grid-template-columns: 1fr; padding: 16px; }
  .category-head { padding: 36px 0; }
  .category-head h1 { font-size: 36px; }
  .category-toolbar { padding: 16px 0; gap: 10px; }
  .filter-group { gap: 6px; }
  .chip { padding: 5px 10px; font-size: 11px; }
  .cart-table th, .cart-table td { padding: 10px 6px; font-size: 13px; }
  .cart-thumb { width: 60px; height: 60px; }
  .cart-summary { max-width: 100%; }
  .na-grid { gap: 14px 10px; }
  .na-details { padding: 10px 2px 0; }
  .na-tag { font-size: 9px; padding: 3px 6px; }
  .trust-factors { padding: 32px 12px; }
  .trust-title { font-size: 22px; margin-bottom: 24px; }
  .footer-col h4 { font-size: 12px; }
  .footer-col a { font-size: 13px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}
@media (max-width: 380px) {
  .gender-tile { height: 80px; }
  .gender-tile img { width: 24px; height: 24px; }
  .product-grid, .cat-grid { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: 1fr; }
  .brand-logo { max-height: 36px; max-width: 120px; }
}
