/* ═══════════════════════════════════════════
   RazorCart — Zonghe4 (综合站4)
   Urban Warm · Terracotta · Bold Layout
   ═══════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=DM+Serif+Display:ital@0;1&display=swap');

:root {
    color-scheme: light;
    --bg: #faf6f0;
    --surface: #ffffff;
    --surface-raised: #f5eee6;
    --ink: #1c1815;
    --ink-light: #4a423c;
    --muted: #9a8a7e;
    --border: #e8ddd2;
    --border-light: #f0e8e0;

    --primary: #f25c05;
    --primary-hover: #d94e00;
    --primary-soft: rgba(242,92,5,0.08);
    --primary-glow: rgba(242,92,5,0.2);

    --secondary: #f7b731;
    --secondary-hover: #e5a620;
    --secondary-soft: rgba(247,183,49,0.12);

    --accent: #c0392b;
    --accent-soft: rgba(192,57,43,0.08);

    --success: #2d7d46;
    --success-soft: rgba(45,125,70,0.1);
    --danger: #c0392b;
    --danger-soft: rgba(192,57,43,0.1);
    --warning: #f7b731;
    --warning-soft: rgba(247,183,49,0.1);

    --announcement-bg: #1c1815;
    --announcement-text: #faf6f0;

    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'DM Serif Display', Georgia, 'Times New Roman', serif;
    --font-display: 'Inter', sans-serif;

    --radius-sm: 6px;
    --radius: 10px;
    --radius-lg: 16px;
    --radius-pill: 999px;

    --shadow-sm: 0 1px 3px rgba(28,24,21,0.05);
    --shadow-md: 0 6px 20px rgba(28,24,21,0.07);
    --shadow-lg: 0 12px 40px rgba(28,24,21,0.09);
    --shadow-xl: 0 20px 60px rgba(28,24,21,0.12);

    --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition: 0.25s var(--ease);
}

*,
*::before,
*::after { box-sizing: border-box; }

body {
    margin: 0;
    font-family: var(--font);
    font-size: 15px;
    line-height: 1.7;
    color: var(--ink);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
h1, h2, h3, h4, h5 { font-family: var(--font-heading); font-weight: 400; }

.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ── Announcement ── */
.announcement-bar {
    background: var(--announcement-bg);
    color: var(--announcement-text);
    text-align: center;
    padding: 10px 5vw;
    font-size: 13px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}
.announcement-bar a { color: var(--secondary); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; white-space: nowrap; }
.announcement-bar__close { background: none; border: none; color: inherit; font-size: 20px; cursor: pointer; padding: 0 4px; opacity: 0.6; line-height: 1; margin-left: auto; }
.announcement-bar__close:hover { opacity: 1; }
.announcement-bar.is-hidden { display: none; }

/* ═══════════════════════════════════════════
   Header — Single Row, Integrated Nav
   ═══════════════════════════════════════════ */

.urban-header {
    background: var(--surface);
    border-bottom: 1px solid var(--border-light);
    position: sticky;
    top: 0;
    z-index: 100;
}
.urban-header__inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5vw;
    display: flex;
    align-items: center;
    gap: 16px;
    height: 64px;
}

/* No separate top bar — everything in one row */

.urban-header .brand {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    margin-right: 8px;
}
.urban-header .brand img { max-height: 32px; width: auto; }
.urban-header .brand__text {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--primary);
    font-style: italic;
    white-space: nowrap;
}

/* Nav pills inline in header */
.urban-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.urban-nav::-webkit-scrollbar { display: none; }
.urban-nav a,
.urban-nav .nav-item > a {
    display: block;
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 500;
    color: var(--ink-light);
    white-space: nowrap;
    border-radius: var(--radius-pill);
    transition: all var(--transition);
}
.urban-nav a:hover,
.urban-nav .nav-item > a:hover {
    background: var(--primary-soft);
    color: var(--primary);
}

.urban-nav .nav-item { position: relative; }
.urban-nav .nav-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    min-width: 180px;
    padding: 6px 0;
    z-index: 50;
}
.urban-nav .nav-item:hover .nav-dropdown { display: block; }
.urban-nav .nav-dropdown a {
    display: block;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 500;
    color: var(--ink-light);
    border-radius: 0;
    background: none;
}
.urban-nav .nav-dropdown a:hover { background: var(--primary-soft); color: var(--primary); }

.urban-search {
    position: relative;
    margin-left: auto;
    max-width: 320px;
    flex: 0 1 320px;
}
.urban-search input {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: var(--radius-pill);
    padding: 8px 14px 8px 38px;
    font-size: 13px;
    font-family: var(--font);
    outline: none;
    background: var(--surface-raised);
    color: var(--ink);
    transition: all var(--transition);
}
.urban-search input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-soft);
    background: var(--surface);
}
.urban-search button {
    position: absolute;
    left: 6px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--muted);
    cursor: pointer;
    padding: 6px;
    display: flex;
}

.urban-header__icons {
    display: flex;
    align-items: center;
    gap: 2px;
    flex-shrink: 0;
}

.locale-switcher { display: flex; gap: 4px; }
.locale-switcher select {
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 4px 6px;
    font-size: 11px;
    font-family: var(--font);
    background: var(--surface);
    color: var(--ink);
    cursor: pointer;
    outline: none;
    max-width: 64px;
}
.locale-switcher select:focus { border-color: var(--primary); }

.urban-icon-btn {
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    color: var(--ink);
    position: relative;
    display: flex;
    align-items: center;
    border-radius: 50%;
    transition: all var(--transition);
}
.urban-icon-btn:hover { background: var(--primary-soft); color: var(--primary); }

.cart-link {
    display: flex;
    align-items: center;
    padding: 8px;
    color: var(--ink);
    position: relative;
    border-radius: 50%;
    transition: all var(--transition);
}
.cart-link:hover { background: var(--primary-soft); color: var(--primary); }
.cart-link [data-cart-count] {
    position: absolute;
    top: 2px;
    right: 2px;
    background: var(--primary);
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    min-width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 0 4px;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}
.hamburger__line { display: block; width: 20px; height: 2px; background: var(--ink); border-radius: 2px; }

@media (max-width: 900px) {
    .urban-nav { display: none; }
    .hamburger { display: flex; }
    .urban-search { flex: 1; max-width: none; }
    .locale-switcher select { max-width: 56px; font-size: 10px; padding: 4px; }
}
@media (max-width: 480px) {
    .urban-header__inner { height: 56px; gap: 8px; }
    .urban-search { display: none; }
    .urban-header .brand__text { font-size: 16px; }
}

/* ── Drawer ── */
.drawer-overlay { display: none; position: fixed; inset: 0; background: rgba(28,24,21,0.4); z-index: 200; }
.drawer-overlay.is-visible { display: block; }
.drawer { position: fixed; top: 0; left: -280px; width: 280px; height: 100%; background: var(--surface); z-index: 300; overflow-y: auto; transition: left 0.3s var(--ease); box-shadow: var(--shadow-xl); }
.drawer.is-open { left: 0; }
.drawer__header { display: flex; align-items: center; justify-content: space-between; padding: 16px; border-bottom: 1px solid var(--border-light); }
.drawer__title { font-family: var(--font-heading); font-size: 16px; font-style: italic; }
.drawer__close { background: none; border: none; cursor: pointer; color: var(--muted); padding: 4px; }
.drawer__nav { padding: 8px 0; }
.drawer__nav a { display: block; padding: 12px 16px; font-size: 14px; font-weight: 500; color: var(--ink); transition: background var(--transition); }
.drawer__nav a:hover { background: var(--primary-soft); }
.drawer__subitem { padding-left: 32px !important; font-size: 13px !important; color: var(--ink-light) !important; }
.drawer__locale { padding: 12px 16px; border-top: 1px solid var(--border-light); }
.drawer__locale-label { font-size: 12px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: 0.05em; display: block; margin: 8px 0 4px; }
.drawer__locale-list { display: flex; flex-wrap: wrap; gap: 6px; }
.drawer__locale-item { padding: 4px 10px; border: 1px solid var(--border); border-radius: var(--radius-sm); font-size: 12px; transition: all var(--transition); }
.drawer__locale-item.is-current { background: var(--primary); color: #fff; border-color: var(--primary); }

/* ── Dropdowns ── */
.account-menu { position: relative; }
.account-dropdown { display: none; position: absolute; top: 100%; right: 0; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-lg); min-width: 180px; padding: 6px 0; z-index: 50; }
.account-menu.is-open .account-dropdown { display: block; }
.account-dropdown__user { padding: 10px 14px; font-size: 13px; color: var(--muted); border-bottom: 1px solid var(--border-light); }
.account-dropdown__item { display: flex; align-items: center; gap: 8px; padding: 10px 14px; font-size: 13px; font-weight: 500; color: var(--ink); transition: background var(--transition); }
.account-dropdown__item:hover { background: var(--primary-soft); }
.account-dropdown__item--danger { color: var(--danger) !important; }
.account-dropdown__divider { height: 1px; background: var(--border-light); margin: 4px 12px; }

.cart-menu { position: relative; }
.cart-preview { display: none; position: absolute; top: 100%; right: 0; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-lg); min-width: 300px; max-width: 90vw; padding: 16px; z-index: 50; }
.cart-menu.is-open .cart-preview { display: block; }
.cart-preview__head { display: flex; justify-content: space-between; align-items: center; padding-bottom: 10px; border-bottom: 1px solid var(--border-light); font-size: 14px; }
.cart-preview__head strong { font-weight: 700; }
.cart-preview__head span { font-size: 12px; color: var(--muted); }
.cart-preview__item { display: flex; align-items: center; gap: 10px; padding: 10px 0; border-bottom: 1px solid var(--border-light); text-decoration: none; color: inherit; }
.cart-preview__item:last-of-type { border-bottom: none; }
.cart-preview__item img { width: 48px; height: 48px; object-fit: cover; border-radius: var(--radius-sm); flex-shrink: 0; }
.cart-preview__item span { flex: 1; min-width: 0; }
.cart-preview__item strong { display: block; font-size: 13px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.cart-preview__item small { display: block; font-size: 11px; color: var(--muted); margin-top: 2px; }
.cart-preview__total { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; font-size: 14px; font-weight: 700; border-top: 1px solid var(--border-light); margin-top: 4px; }
.cart-preview__actions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.cart-preview__actions a { display: block; text-align: center; padding: 10px; font-size: 13px; font-weight: 600; border-radius: var(--radius-pill); transition: all var(--transition); }
.cart-preview__actions a:first-child { background: var(--surface-raised); color: var(--ink); }
.cart-preview__actions a:first-child:hover { background: var(--border); }
.cart-preview__actions a:last-child { background: var(--primary); color: #fff; }
.cart-preview__actions a:last-child:hover { background: var(--primary-hover); }
.cart-preview__empty { text-align: center; padding: 20px 0; font-size: 13px; color: var(--muted); }
.cart-preview__action { display: block; text-align: center; padding: 10px; font-size: 13px; font-weight: 600; border-radius: var(--radius-pill); background: var(--surface-raised); color: var(--ink); margin-top: 10px; }

/* ═══════════════════════════════════════════
   Hero — Full-width with large typography
   ═══════════════════════════════════════════ */

.urban-hero {
    background: linear-gradient(135deg, #1c1815 0%, #2d221c 50%, #1c1815 100%);
    color: #fff;
    padding: 5rem 5vw;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.urban-hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--primary));
}
.urban-hero__tag {
    display: inline-block;
    background: var(--secondary);
    color: #1c1815;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 4px 16px;
    border-radius: var(--radius-pill);
    margin-bottom: 20px;
}
.urban-hero__title {
    font-family: var(--font-heading);
    font-size: clamp(36px, 6vw, 56px);
    margin: 0 auto 12px;
    max-width: 720px;
    line-height: 1.15;
    font-style: italic;
}
.urban-hero__desc {
    font-size: 16px;
    opacity: 0.75;
    margin: 0 auto 28px;
    max-width: 520px;
    line-height: 1.7;
}
.urban-hero__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ═══════════════════════════════════════════
   Category Strip — Horizontal Pills
   ═══════════════════════════════════════════ */

.urban-categories {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem 5vw;
    display: flex;
    align-items: center;
    gap: 10px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.urban-categories::-webkit-scrollbar { display: none; }
.urban-cat-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px 6px 6px;
    border: 1px solid var(--border);
    border-radius: var(--radius-pill);
    background: var(--surface);
    white-space: nowrap;
    flex-shrink: 0;
    font-size: 13px;
    font-weight: 500;
    transition: all var(--transition);
}
.urban-cat-pill:hover { border-color: var(--primary); background: var(--primary-soft); }
.urban-cat-pill__img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--surface-raised);
    flex-shrink: 0;
}
.urban-cat-pill__img img { width: 100%; height: 100%; object-fit: cover; }

/* ═══════════════════════════════════════════
   Sections
   ═══════════════════════════════════════════ */

.section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2.5rem 5vw;
}
.section--alt { background: var(--surface); border-top: 1px solid var(--border-light); border-bottom: 1px solid var(--border-light); }
.section--deal {
    background: linear-gradient(135deg, var(--primary), #d94e00);
    color: #fff;
    border-radius: var(--radius-lg);
    margin: 1.5rem auto;
    padding: 2rem 5vw;
}
.section--deal .section__title { color: #fff; }
.section--deal .section__link { color: var(--secondary); }
.section--deal .product-card { background: rgba(255,255,255,0.95); }

.section__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}
.section__head--centered { justify-content: center; text-align: center; }
.section__title {
    font-family: var(--font-heading);
    font-size: 28px;
    margin: 0;
    font-style: italic;
    line-height: 1.2;
}
.section__subtitle {
    font-size: 14px;
    color: var(--muted);
    display: block;
    margin-top: 4px;
    font-family: var(--font);
    font-style: normal;
}
.section__count { font-size: 13px; color: var(--muted); }
.section__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    white-space: nowrap;
}
.section__link:hover { opacity: 0.7; }

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}
@media (max-width: 480px) { .product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; } }

/* ═══════════════════════════════════════════
   Product Card
   ═══════════════════════════════════════════ */

.product-card {
    background: var(--surface);
    border-radius: var(--radius);
    overflow: hidden;
    transition: box-shadow var(--transition);
}
.product-card:hover { box-shadow: var(--shadow-md); }
.product-card__link { display: block; }
.product-card__figure {
    margin: 0;
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--surface-raised);
    border-radius: var(--radius);
}
.product-card__figure img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.product-card:hover .product-card__figure img { transform: scale(1.06); }
.product-card__badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: var(--primary);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: var(--radius-pill);
    text-transform: uppercase;
    z-index: 2;
}
.product-card__body { padding: 14px 4px 0; }
.product-card__meta { font-size: 11px; font-weight: 500; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; margin: 0 0 4px; }
.product-card__title { font-family: var(--font); font-size: 14px; font-weight: 600; margin: 0 0 4px; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.product-card__price { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; margin: 0; font-size: 16px; font-weight: 700; }
.product-card__price--old { font-size: 13px; font-weight: 400; color: var(--muted); text-decoration: line-through; }
.product-card__price--current { color: var(--primary); }

/* ═══════════════════════════════════════════
   Values Strip
   ═══════════════════════════════════════════ */

.urban-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 1400px;
    margin: 0 auto;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}
.urban-strip__item {
    padding: 24px 5vw;
    text-align: center;
    border-right: 1px solid var(--border-light);
}
.urban-strip__item:last-child { border-right: none; }
.urban-strip__item svg { color: var(--primary); margin-bottom: 6px; }
.urban-strip__item h3 { font-family: var(--font); font-size: 13px; font-weight: 700; margin: 0 0 2px; text-transform: uppercase; letter-spacing: 0.04em; }
.urban-strip__item p { font-size: 12px; color: var(--muted); margin: 0; }
@media (max-width: 600px) { .urban-strip { grid-template-columns: 1fr; } .urban-strip__item { border-right: none; border-bottom: 1px solid var(--border-light); } }

/* ═══════════════════════════════════════════
   Breadcrumbs
   ═══════════════════════════════════════════ */

.breadcrumbs { padding: 14px 5vw; font-size: 13px; color: var(--muted); max-width: 1400px; margin: 0 auto; display: flex; flex-wrap: wrap; gap: 4px; }
.breadcrumbs a { color: var(--muted); }
.breadcrumbs a:hover { color: var(--primary); }
.breadcrumbs__sep { color: var(--border); margin: 0 4px; }

/* ═══════════════════════════════════════════
   Category Page
   ═══════════════════════════════════════════ */
.category-layout { display: grid; grid-template-columns: 200px 1fr; gap: 28px; }
.category-sidebar__title { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; margin: 0 0 12px; color: var(--muted); }
.category-nav__all { display: block; padding: 8px 12px; font-size: 14px; color: var(--ink-light); border-radius: var(--radius-sm); transition: background var(--transition); }
.category-nav__all:hover { background: var(--primary-soft); }
.category-nav__list { list-style: none; padding: 0; margin: 0; }
.category-nav__item a { display: block; padding: 8px 12px 8px 20px; font-size: 14px; color: var(--ink-light); border-radius: var(--radius-sm); transition: all var(--transition); border-left: 2px solid transparent; }
.category-nav__item a:hover { background: var(--primary-soft); color: var(--ink); }
.category-nav__item.is-current > a { color: var(--primary); font-weight: 600; border-left-color: var(--primary); background: var(--primary-soft); }
.category-nav__item .category-nav__list a { padding-left: 28px; font-size: 13px; }
@media (max-width: 768px) { .category-layout { grid-template-columns: 1fr; } .category-sidebar { display: none; } }

/* ═══════════════════════════════════════════
   Product Page
   ═══════════════════════════════════════════ */
.product { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; max-width: 1400px; margin: 0 auto; padding: 0 5vw 2.5rem; }
.gallery__main { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 1; margin-bottom: 10px; }
.gallery__main img { width: 100%; height: 100%; object-fit: contain; }
.gallery__thumbs { display: flex; gap: 8px; overflow-x: auto; }
.gallery__thumb { border: 2px solid var(--border); border-radius: var(--radius-sm); width: 68px; height: 68px; overflow: hidden; cursor: pointer; background: none; padding: 0; flex-shrink: 0; transition: border-color var(--transition); }
.gallery__thumb:hover, .gallery__thumb.is-active { border-color: var(--primary); }
.gallery__thumb img { width: 100%; height: 100%; object-fit: cover; }

.product__category { font-size: 11px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; margin: 0 0 6px; }
.product__title { font-size: 28px; margin: 0 0 14px; line-height: 1.25; }
.product__price-row { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; flex-wrap: wrap; }
.product__price { font-size: 28px; font-weight: 700; color: var(--primary); }
.product__price--old { font-size: 16px; color: var(--muted); text-decoration: line-through; }
.product__badge { font-size: 11px; padding: 4px 10px; background: var(--primary); color: #fff; border-radius: var(--radius-pill); font-weight: 600; }

.product__options { display: grid; gap: 14px; margin-bottom: 24px; }
.product__option-label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 8px; }
.product__option-group { display: flex; flex-wrap: wrap; gap: 8px; }
.product__option-btn { padding: 8px 16px; border: 1px solid var(--border); border-radius: var(--radius-pill); background: var(--surface); font-family: var(--font); font-size: 13px; cursor: pointer; transition: all var(--transition); }
.product__option-btn:hover { border-color: var(--primary); }
.product__option-btn.is-selected { border-color: var(--primary); background: var(--primary-soft); color: var(--primary); font-weight: 600; }
.product__option-btn--swatch { width: 36px; height: 36px; border-radius: 50%; padding: 0; background: var(--swatch-color); }
.product__option-btn--swatch.is-selected { border-color: var(--primary); box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--primary); }

.product__action { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; flex-wrap: wrap; }
.product__qty { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 500; }
.product__qty input { width: 60px; padding: 10px; border: 1px solid var(--border); border-radius: var(--radius-sm); font-size: 14px; text-align: center; font-family: var(--font); }
.product__sku { font-size: 12px; color: var(--muted); }

.product-tabs { max-width: 1400px; margin: 2rem auto; padding: 0 5vw; }
.product-tabs__nav { display: flex; gap: 0; border-bottom: 1px solid var(--border-light); }
.product-tabs__tab { padding: 14px 24px; border: none; background: none; font-family: var(--font); font-size: 14px; font-weight: 500; color: var(--muted); cursor: pointer; border-bottom: 2px solid transparent; transition: all var(--transition); margin-bottom: -1px; }
.product-tabs__tab.is-active { color: var(--ink); border-bottom-color: var(--primary); }
.product-tabs__tab:hover { color: var(--ink); }
.product-tabs__content { padding: 28px 0; }
.product-tabs__panel { display: none; }
.product-tabs__panel.is-active { display: block; }
.product-tabs__empty { text-align: center; color: var(--muted); font-size: 14px; }
.product__desc { font-size: 15px; line-height: 1.8; color: var(--ink-light); }
.product__desc p { margin: 0 0 16px; }

@media (max-width: 768px) { .product { grid-template-columns: 1fr; gap: 24px; } }

/* ═══════════════════════════════════════════
   Buttons — Pill Shaped
   ═══════════════════════════════════════════ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-family: var(--font);
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    border: 1px solid transparent;
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: all var(--transition);
    text-align: center;
    white-space: nowrap;
}
.btn--primary { background: var(--primary); color: #fff; border-color: var(--primary); }
.btn--primary:hover { background: var(--primary-hover); border-color: var(--primary-hover); }
.btn--outline { background: transparent; color: var(--ink); border-color: var(--border); }
.btn--outline:hover { border-color: var(--primary); color: var(--primary); }
.btn--gold { background: var(--secondary); color: #1c1815; border-color: var(--secondary); font-weight: 700; }
.btn--gold:hover { background: var(--secondary-hover); }
.btn--lg { padding: 14px 32px; font-size: 15px; }
.btn--sm { padding: 8px 18px; font-size: 12px; }
.btn--block { width: 100%; }

/* ═══════════════════════════════════════════
   Cart
   ═══════════════════════════════════════════ */
.cart-page .cart__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 20px; }
.cart__trust { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; margin: 20px auto 0; padding: 16px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); max-width: 600px; }
.cart__trust-badge { display: flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 500; color: var(--ink-light); }
.cart__trust-badge svg { color: var(--primary); }

/* ═══════════════════════════════════════════
   Checkout
   ═══════════════════════════════════════════ */
.checkout-page { max-width: 960px; }
.checkout__grid { display: grid; grid-template-columns: 1fr 380px; gap: 32px; align-items: start; }
.checkout__section { margin-bottom: 24px; }
.checkout__section-title { font-family: var(--font-heading); font-size: 16px; margin: 0 0 14px; font-style: italic; }
.checkout__fields { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.checkout__field { display: grid; gap: 4px; font-size: 13px; font-weight: 500; }
.checkout__field span { color: var(--ink-light); }
.checkout__field input, .checkout__field select { padding: 10px 12px; border: 1px solid var(--border); border-radius: var(--radius-sm); font-size: 14px; font-family: var(--font); background: var(--surface); outline: none; width: 100%; }
.checkout__field input:focus, .checkout__field select:focus { border-color: var(--primary); box-shadow: 0 0 0 3px var(--primary-soft); }
.checkout__field--wide { grid-column: 1 / -1; }
.checkout__summary { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; position: sticky; top: 80px; }
.checkout__summary-title { font-size: 15px; font-weight: 700; margin: 0 0 16px; }
.checkout__coupon { margin-bottom: 16px; }
.checkout__coupon-row { display: flex; gap: 8px; }
.checkout__coupon-row input { flex: 1; padding: 8px 10px; border: 1px solid var(--border); border-radius: var(--radius-sm); font-size: 13px; font-family: var(--font); outline: none; }
.checkout__coupon-row input:focus { border-color: var(--primary); }
.checkout__edit-cart { margin-bottom: 16px; font-size: 13px; }
.checkout__edit-cart a { color: var(--muted); text-decoration: underline; }
.checkout__edit-cart a:hover { color: var(--primary); }
.checkout__terms { display: flex; align-items: flex-start; gap: 8px; font-size: 13px; color: var(--ink-light); margin: 12px 0; }
.checkout__terms a { text-decoration: underline; color: var(--primary); }
.checkout__trust { display: flex; gap: 16px; justify-content: center; margin: 16px 0; flex-wrap: wrap; }
.checkout__trust-badge { display: flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 500; color: var(--muted); }

.payment-card { margin-bottom: 16px; }
.payment-methods { display: grid; gap: 8px; margin-bottom: 12px; }
.payment-method { display: flex; align-items: center; gap: 10px; padding: 12px; border: 1px solid var(--border); border-radius: var(--radius-sm); cursor: pointer; transition: all var(--transition); }
.payment-method:hover { border-color: var(--primary); }
.payment-method.is-selected { border-color: var(--primary); background: var(--primary-soft); }
.payment-card__fields { padding: 12px; background: var(--surface-raised); border-radius: var(--radius-sm); display: grid; gap: 12px; }
.shipping-methods { display: grid; gap: 8px; }
.shipping-method { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 12px 14px; border: 1px solid var(--border); border-radius: var(--radius-sm); cursor: pointer; transition: all var(--transition); }
.shipping-method:hover { border-color: var(--primary); }
.shipping-method.is-selected { border-color: var(--primary); background: var(--primary-soft); }
.payment-overlay { position: fixed; inset: 0; background: rgba(28,24,21,0.5); display: flex; align-items: center; justify-content: center; z-index: 500; }
.payment-overlay.is-hidden { display: none; }
.payment-overlay__box { background: var(--surface); border-radius: var(--radius-lg); padding: 40px; text-align: center; max-width: 420px; width: 90vw; }
.payment-overlay__spinner { width: 40px; height: 40px; border: 3px solid var(--border); border-top-color: var(--primary); border-radius: 50%; margin: 0 auto 16px; animation: spin 0.8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.payment-overlay__text { font-size: 14px; color: var(--muted); margin: 0; }
@media (max-width: 768px) { .checkout__grid { grid-template-columns: 1fr; } .checkout__summary { position: static; } .checkout__fields { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════
   Footer — Minimal 2-Column
   ═══════════════════════════════════════════ */

.urban-footer {
    background: #1c1815;
    color: rgba(255,255,255,0.7);
    margin-top: 3rem;
}
.urban-footer__main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 48px 5vw;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}
.urban-footer__brand { }
.urban-footer__brand h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-style: italic;
    color: var(--primary);
    margin: 0 0 12px;
}
.urban-footer__brand h3 img { max-height: 30px; filter: brightness(0) saturate(100%) invert(34%) sepia(94%) saturate(2483%) hue-rotate(12deg) brightness(98%) contrast(104%); }
.urban-footer__brand p { font-size: 14px; opacity: 0.5; line-height: 1.7; margin: 0; max-width: 360px; }
.urban-footer__links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.urban-footer__col h4 {
    font-family: var(--font);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #fff;
    margin: 0 0 14px;
}
.urban-footer__col a {
    display: block;
    font-size: 13px;
    opacity: 0.5;
    padding: 4px 0;
    transition: opacity var(--transition);
}
.urban-footer__col a:hover { opacity: 1; }
.urban-footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 20px 5vw;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 12px;
    opacity: 0.4;
}
.urban-footer__bottom nav { display: flex; gap: 16px; }
.urban-footer__bottom a { opacity: 0.7; }
.urban-footer__bottom a:hover { opacity: 1; }

@media (max-width: 768px) {
    .urban-footer__main { grid-template-columns: 1fr; gap: 32px; }
    .urban-footer__links { grid-template-columns: 1fr 1fr; }
    .urban-footer__bottom { flex-direction: column; text-align: center; }
}

/* ═══════════════════════════════════════════
   Auth
   ═══════════════════════════════════════════ */
.auth-page { max-width: 420px; margin: 0 auto; padding: 3rem 5vw; }
.auth-page__header { text-align: center; margin-bottom: 28px; }
.auth-page__header h1 { font-size: 28px; margin: 0 0 6px; }
.auth-page__header p { color: var(--muted); font-size: 14px; margin: 0; }
.auth-page__card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; }
.auth-page__footer { text-align: center; font-size: 14px; color: var(--muted); margin-top: 1.5rem; }
.auth-page__footer a { color: var(--primary); font-weight: 600; }

/* ═══════════════════════════════════════════
   Account
   ═══════════════════════════════════════════ */
.account-page { max-width: 960px; margin: 0 auto; padding: 2rem 5vw; }
.account-page__header { margin-bottom: 28px; }
.account-page__header h1 { font-size: 28px; margin: 0 0 2px; }
.account-page__header p { font-size: 14px; color: var(--muted); margin: 0; }
.account-page__grid { display: grid; grid-template-columns: 200px 1fr; gap: 28px; align-items: start; }
.account-nav { display: grid; gap: 4px; position: sticky; top: 80px; }
.account-nav__btn { display: flex; align-items: center; gap: 10px; padding: 10px 14px; border: none; border-radius: var(--radius-sm); background: transparent; color: var(--muted); font: inherit; font-size: 14px; font-weight: 500; cursor: pointer; text-align: left; transition: all var(--transition); }
.account-nav__btn:hover { background: var(--primary-soft); color: var(--ink); }
.account-nav__btn.is-active { background: var(--primary) !important; color: #fff !important; }
.account-section.is-hidden { display: none !important; }
@media (max-width: 720px) { .account-page__grid { grid-template-columns: 1fr; } .account-nav { position: static !important; display: grid !important; grid-template-columns: repeat(2, 1fr); } }

/* ═══════════════════════════════════════════
   Misc
   ═══════════════════════════════════════════ */
.empty-state { text-align: center; padding: 4rem 2rem; }
.empty-state h1 { font-size: 22px; margin: 0 0 8px; }
.empty-state p { color: var(--muted); font-size: 14px; margin: 0 0 16px; }
.legal-page { max-width: 800px; }
.legal-page h1 { font-size: 28px; margin: 0 0 20px; }
.terms-article h2 { font-size: 20px; margin: 28px 0 12px; }
.terms-article p { font-size: 14px; line-height: 1.8; color: var(--ink-light); }
.terms-article a { color: var(--primary); }
.pagination { display: flex; justify-content: center; gap: 6px; margin: 36px 0; padding: 0; list-style: none; }
.pagination a, .pagination span { display: inline-flex; align-items: center; justify-content: center; min-width: 36px; height: 36px; padding: 0 10px; border: 1px solid var(--border); border-radius: var(--radius-pill); font-size: 13px; font-weight: 500; color: var(--ink-light); background: var(--surface); transition: all var(--transition); }
.pagination a:hover { border-color: var(--primary); color: var(--primary); }
.pagination .active span { background: var(--primary); color: #fff; border-color: var(--primary); }
.alert { padding: 12px 16px; border-radius: var(--radius-sm); font-size: 14px; font-weight: 500; margin-bottom: 1rem; }
.alert--success { background: var(--success-soft); color: var(--success); }
.alert--danger { background: var(--danger-soft); color: var(--danger); }
.home-banner img { width: 100%; }

/* ── About ── */
.urban-about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1400px;
    margin: 0 auto;
    background: var(--surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.urban-about__image { min-height: 300px; overflow: hidden; }
.urban-about__image img { width: 100%; height: 100%; object-fit: cover; }
.urban-about__content { padding: 48px 5vw; display: flex; flex-direction: column; justify-content: center; }
.urban-about__tag { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); margin-bottom: 8px; }
.urban-about__content h2 { font-size: 28px; margin: 0 0 12px; }
.urban-about__content p { font-size: 15px; color: var(--ink-light); line-height: 1.7; margin: 0 0 20px; }
@media (max-width: 768px) { .urban-about { grid-template-columns: 1fr; } .urban-about__image { min-height: 200px; } }

/* ── Gallery ── */
.urban-gallery { max-width: 1400px; margin: 2rem auto; padding: 0 5vw; text-align: center; }
.urban-gallery h2 { font-size: 28px; margin: 0 0 4px; font-style: italic; }
.urban-gallery p { font-size: 14px; color: var(--muted); margin: 0 0 24px; }
.urban-gallery__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.urban-gallery__item { aspect-ratio: 1; overflow: hidden; border-radius: var(--radius); }
.urban-gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.urban-gallery__item:hover img { transform: scale(1.05); }
@media (max-width: 600px) { .urban-gallery__grid { grid-template-columns: repeat(2, 1fr); } }

@media (max-width: 480px) {
    body { font-size: 14px; }
    .section { padding: 1.5rem 4vw; }
    .product-grid { gap: 10px; }
}
