/* ===== ROY LEXIE — DESIGN SYSTEM v3 ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
:root {
    --black: #050505;
    --dark: #0d0d0d;
    --mid: #141414;
    --card: #0f0f0f;
    --border: rgba(255, 255, 255, 0.08);
    --border-m: rgba(255, 255, 255, 0.15);
    --dim: #909090;
    --gray: #c0c0c0;
    --lgray: #e2e2e2;
    --warm: #c8bc9e;
    --offwhite: #f5f2ed;
    --white: #f5f2ed;
    --pure: #ffffff;
    --accent: #b09660;
    --fd: 'Bebas Neue', sans-serif;
    --fb: 'Cormorant Garamond', 'Zen Kaku Gothic New', sans-serif;
    --fu: 'Jost', 'Zen Kaku Gothic New', sans-serif;
    --ease: cubic-bezier(.25, .1, 0, 1);
    --ease-out: cubic-bezier(.16, 1, .3, 1);
    --t: .7s;
}
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}
body {
    font-family: var(--fu);
    font-size: 16px;
    line-height: 1.75;
    font-weight: 400;
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    cursor: none;
}
a {
    color: inherit;
    text-decoration: none;
}
img {
    max-width: 100%;
    display: block;
}
button {
    cursor: none;
    border: none;
    background: none;
    font-family: inherit;
}
input, textarea, select {
    font-family: inherit;
    background: transparent;
    border: none;
    outline: none;
    color: var(--white);
}
::-webkit-scrollbar {
    width: 2px;
}
::-webkit-scrollbar-track {
    background: var(--black);
}
::-webkit-scrollbar-thumb {
    background: var(--dim);
}

/* Grain */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9985;
    opacity: .03;
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)'/%3E%3C/svg%3E");
    background-size: 200px 200px;
}

/* CURSOR */
.cur-dot, .cur-ring {
    position: fixed;
    pointer-events: none;
    z-index: 99999;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: opacity .3s;
}
.cur-dot {
    width: 4px;
    height: 4px;
    background: var(--warm);
}
.cur-ring {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(196, 184, 154, .3);
    transition: width .45s var(--ease-out), height .45s var(--ease-out), border-color .3s;
}
.cur-ring.hovering {
    width: 52px;
    height: 52px;
    border-color: rgba(196, 184, 154, .65);
}
.cur-ring.clicking {
    width: 22px;
    height: 22px;
}

/* LOADING */
#loading {
    position: fixed;
    inset: 0;
    background: var(--black);
    z-index: 99990;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 32px;
    transition: opacity .9s var(--ease), visibility .9s;
}
#loading.done {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.load-brand {
    font-family: var(--fd);
    font-size: clamp(32px, 5.5vw, 68px);
    letter-spacing: 20px;
    display: flex;
    gap: 0;
}
.load-brand span {
    display: inline-block;
    opacity: 0;
    transform: translateY(28px);
    animation: loadL .55s var(--ease-out) forwards;
}
.load-bar-wrap {
    width: 140px;
    height: 1px;
    background: var(--border-m);
    overflow: hidden;
}
.load-bar {
    height: 100%;
    background: var(--warm);
    width: 0;
    animation: loadBar 1.7s var(--ease) forwards;
}
.load-sub {
    font-size: 9px;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--gray);
    opacity: 0;
    animation: fadeIn .7s .6s forwards;
}
@keyframes loadL {
    to {
        opacity: 1;
        transform: none;
    }
}
@keyframes loadBar {
    to {
        width: 100%;
    }
}
@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* HEADER */
#hdr {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    padding: 0 60px;
    height: 72px;
    transition: background .6s var(--ease), border-color .6s;
    border-bottom: 1px solid transparent;
}
#hdr.scrolled {
    background: rgba(5, 5, 5, .94);
    backdrop-filter: blur(28px);
    border-bottom-color: var(--border);
}
.hdr-logo {
    font-family: var(--fd);
    font-size: 21px;
    letter-spacing: 8px;
    cursor: pointer;
    color: var(--white);
    white-space: nowrap;
    flex-shrink: 0;
}
.hdr-logo em {
    color: var(--warm);
    font-style: normal;
}
nav {
    display: flex;
    gap: 32px;
    align-items: center;
}
nav a {
    font-size: 9px;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gray);
    position: relative;
    padding-bottom: 2px;
    transition: color var(--t) var(--ease);
}
nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--warm);
    transition: width var(--t) var(--ease);
}
nav a:hover, nav a.active {
    color: var(--warm);
}
nav a:hover::after, nav a.active::after {
    width: 100%;
}
.hdr-right {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-shrink: 0;
}
.lang-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 9px;
    letter-spacing: 2px;
}
.lang-btn span {
    cursor: pointer;
    color: var(--gray);
    transition: color .3s;
}
.lang-btn span.on {
    color: var(--warm);
}
.lang-sep {
    color: var(--dim);
}
.cart-ico {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 9px;
    letter-spacing: 2px;
    color: var(--gray);
    position: relative;
    transition: color .3s;
}
.cart-ico:hover {
    color: var(--warm);
}
.cart-num {
    position: absolute;
    top: -8px;
    right: -10px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--warm);
    color: var(--black);
    font-size: 8px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ham {
    width: 28px;
    cursor: pointer;
    display: none;
    flex-direction: column;
    gap: 6px;
}
.ham span {
    display: block;
    height: 1.5px;
    background: var(--lgray);
    transition: transform .45s var(--ease-out), opacity .3s, background .3s;
    transform-origin: center;
}
/* X state when open */
.ham.open span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
    background: var(--warm);
}
.ham.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.ham.open span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
    background: var(--warm);
}
/* Body scroll lock */
body.mob-open {
    overflow: hidden;
}

/* MOBILE MENU */
.mob-menu {
    position: fixed;
    inset: 0;
    background: var(--black);
    z-index: 999;
    flex-direction: column;
    padding: 80px 40px 40px;
    gap: 0;
    display: none;
}
.mob-close {
    display: none;
}
.mob-menu a {
    font-family: var(--fd);
    font-size: 38px;
    letter-spacing: 3px;
    color: var(--lgray);
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    transition: color .3s;
    display: block;
}
.mob-menu a:hover {
    color: var(--warm);
}
.mob-lang {
    margin-top: auto;
    display: flex;
    gap: 16px;
    font-size: 10px;
    letter-spacing: 3px;
    color: var(--gray);
}
.mob-lang span {
    cursor: pointer;
    transition: color .3s;
}
.mob-lang span.on {
    color: var(--warm);
}

/* TOAST */
.toast {
    position: fixed;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%) translateY(16px);
    background: var(--warm);
    color: var(--black);
    padding: 12px 28px;
    font-size: 10px;
    letter-spacing: 2px;
    opacity: 0;
    transition: opacity .4s, transform .4s var(--ease-out);
    z-index: 9999;
    pointer-events: none;
    white-space: nowrap;
}
.toast.on {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* REVEAL */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
}
.reveal.show {
    opacity: 1;
    transform: none;
}
.d1 {
    transition-delay: .1s;
}
.d2 {
    transition-delay: .2s;
}
.d3 {
    transition-delay: .3s;
}
.reveal-left {
    opacity: 0;
    transform: translateX(-36px);
    transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
}
.reveal-left.show {
    opacity: 1;
    transform: none;
}
.reveal-right {
    opacity: 0;
    transform: translateX(36px);
    transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
}
.reveal-right.show {
    opacity: 1;
    transform: none;
}
.reveal-scale {
    opacity: 0;
    transform: scale(.97);
    transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}
.reveal-scale.show {
    opacity: 1;
    transform: none;
}

/* TICKER */
.ticker {
    overflow: hidden;
    white-space: nowrap;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
}
.ticker-track {
    display: inline-flex;
    animation: ticker 40s linear infinite;
}
.ticker-track:hover {
    animation-play-state: paused;
}
.ticker-item {
    font-family: var(--fd);
    font-size: 11px;
    letter-spacing: 6px;
    color: var(--gray);
    padding: 0 36px;
    text-transform: uppercase;
}
.ticker-dot {
    color: var(--accent);
    font-size: 8px;
    opacity: .7;
}
@keyframes ticker {
    to {
        transform: translateX(-50%);
    }
}

/* PRODUCT CARD */
.prod-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
}
.prod-card {
    background: var(--black);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: background .5s var(--ease);
}
.prod-card:hover {
    background: var(--card);
}
.prod-visual {
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
    background: var(--dark);
}
.prod-visual-num {
    font-family: var(--fd);
    font-size: clamp(56px, 7vw, 96px);
    color: rgba(196, 184, 154, .04);
    transition: color .5s var(--ease);
    letter-spacing: 2px;
}
.prod-card:hover .prod-visual-num {
    color: rgba(196, 184, 154, .09);
}
.prod-badge-wrap {
    position: absolute;
    top: 16px;
    left: 16px;
    display: flex;
    gap: 6px;
}
.prod-badge {
    font-size: 7px;
    font-weight: 700;
    letter-spacing: 3px;
    padding: 4px 10px;
    border: 1px solid;
}
.prod-badge.new {
    border-color: var(--warm);
    color: var(--warm);
}
.prod-badge.limited {
    border-color: rgba(255, 90, 90, .45);
    color: rgba(255, 120, 120, .9);
}
.prod-badge.sale {
    border-color: rgba(196, 184, 154, .4);
    color: var(--warm);
}
.prod-info {
    padding: 18px 22px 22px;
}
.prod-cat {
    font-family: var(--fu);
    font-size: 12px;
    letter-spacing: 2px;
    color: var(--lgray);
    margin-bottom: 10px;
    text-transform: uppercase;
    font-weight: 400;
}
.prod-name {
    font-family: var(--fd);
    font-size: 23px;
    letter-spacing: 1px;
    line-height: 1.1;
    margin-bottom: 14px;
    color: var(--white);
}
.prod-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.prod-price {
    font-family: var(--fu);
    font-size: 20px;
    font-weight: 400;
    color: var(--warm);
    letter-spacing: .5px;
}
.prod-orig {
    font-family: var(--fu);
    font-size: 15px;
    color: var(--gray);
    text-decoration: line-through;
    margin-right: 10px;
    letter-spacing: .3px;
}
.prod-add {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px 0;
    background: rgba(168, 140, 90, .92);
    color: var(--black);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-align: center;
    opacity: 0;
    transform: translateY(100%);
    transition: opacity .4s var(--ease), transform .4s var(--ease);
    cursor: pointer;
}
.prod-card:hover .prod-add {
    opacity: 1;
    transform: translateY(0);
}

/* ===== PRODUCT DETAIL — VISUAL AREA ===== */

.detail-vis {
    position: sticky;
    top: 100px;
    align-self: start;
    max-width: 440px;   /* ★PCでの画像サイズを制限 */
    width: 100%;
}

.detail-vis-inner {
    display: flex;
    flex-direction: column;
}

.detail-vis-img-wrap {
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    position: relative;
    background: var(--bg-alt, #111);
    border: 1px solid var(--border, #2a2a2a);
}

.detail-vis-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;   /* ★横幅を必ず全部見せる（縦横比を保ったまま枠内に収める） */
    object-position: center;
    display: block;
    transition: opacity .3s ease;
}

/* ===== THUMBNAILS ===== */

.detail-vis-thumbs {
    display: flex;
    gap: 10px;
    margin-top: 14px;
    flex-wrap: wrap;
}

.detail-vis-thumb {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.55;
    border: 1px solid var(--border, #2a2a2a);
    transition: opacity .2s ease, border-color .2s ease;
}

.detail-vis-thumb:hover {
    opacity: 0.85;
}

.detail-vis-thumb.on {
    opacity: 1;
    border-color: var(--warm, #c9a876);
}

.detail-vis-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ===== LABEL (品番・シーズンタグ) ===== */

.detail-vis-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 16px;
    padding-top: 12px;
    border-top: 1px solid var(--border, #2a2a2a);
}

.detail-vis-code {
    font-family: var(--fd);
    font-size: 13px;
    letter-spacing: 2px;
    color: var(--gray, #888);
}

.detail-vis-tag {
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--gray, #888);
    text-transform: uppercase;
}

/* ===== LAYOUT: 商品画像 × 商品情報の2カラム ===== */

.detail-wrap {
    display: grid;
    grid-template-columns: 440px 1fr;   /* ★画像側を固定幅に、情報側を可変に */
    gap: 64px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 24px 100px;
    justify-content: center;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 900px) {
    .detail-wrap {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 32px 20px 60px;
    }
    .detail-vis {
        position: static;
        max-width: 100%;   /* ★モバイルでは幅制限を解除 */
    }
    .detail-vis-img-wrap {
        aspect-ratio: 4 / 5;   /* ★モバイルでは少し縦を短くして全身が入りやすく */
        object-position: top;
    }
}

@media (max-width: 768px) {
    .detail-vis-thumb {
        width: 52px;
        height: 52px;
    }
    .detail-vis-thumbs {
        gap: 8px;
        margin-top: 10px;
    }
}

/* SHARED */
.page-wrap {
    padding-top: 72px;
}
.sec {
    padding: 100px 60px;
}
.sec-hdr {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 60px;
}
.sec-label {
    font-size: 8px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 8px;
}
.sec-title {
    font-family: var(--fd);
    font-size: clamp(40px, 5vw, 60px);
    letter-spacing: 2px;
    line-height: 1;
}
.sec-more {
    font-size: 9px;
    letter-spacing: 3px;
    color: var(--gray);
    border-bottom: 1px solid var(--border-m);
    padding-bottom: 2px;
    transition: color .3s, border-color .3s;
}
.sec-more:hover {
    color: var(--warm);
    border-color: var(--warm);
}
.btn-w {
    display: inline-block;
    padding: 15px 28px;
    background: var(--warm);
    color: var(--black);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: background .5s var(--ease);
}
.btn-w:hover {
    background: var(--offwhite);
}
.btn-g {
    display: inline-block;
    padding: 14px 28px;
    border: 1px solid var(--border-m);
    color: var(--lgray);
    font-size: 9px;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: border-color .4s, color .4s;
}
.btn-g:hover {
    border-color: var(--warm);
    color: var(--warm);
}

/* === HOME HERO === */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
    will-change: auto;
}
.hero-strip {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    padding: 12px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--border);
    font-size: 8px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gray);
}
.hero-display {
    display: grid;
    grid-template-columns: 1fr 300px;
    align-items: end;
    flex: 1;
    padding: 158px 60px 96px;
}
.hero-title {
    font-family: var(--fd);
    line-height: .88;
}
.hw-simply {
    display: block;
    font-size: clamp(68px, 14.5vw, 200px);
    color: var(--white);
    letter-spacing: -2px;
}
.hw-rule {
    display: block;
    width: 36%;
    height: 1px;
    background: var(--border-m);
    margin: 20px 0;
}
.hw-your {
    display: block;
    font-size: clamp(50px, 10.5vw, 140px);
    color: transparent;
    -webkit-text-stroke: 1px rgba(196, 184, 154, .22);
    margin-left: 11%;
    letter-spacing: -2px;
}
.hw-self {
    display: block;
    font-size: clamp(68px, 15vw, 210px);
    color: var(--warm);
    letter-spacing: -2px;
}

/* HERO WORD ANIMATIONS */
@keyframes hwL {
    from {
        clip-path: inset(0 102% 0 0);
        transform: translateX(-20px);
    }
    to {
        clip-path: inset(0 0% 0 0);
        transform: none;
    }
}
@keyframes hwRule {
    from {
        transform: scaleX(0);
        transform-origin: left;
        opacity: 0;
    }
    to {
        transform: scaleX(1);
        transform-origin: left;
        opacity: 1;
    }
}
@keyframes hwBlur {
    from {
        opacity: 0;
        letter-spacing: 24px;
        filter: blur(12px);
    }
    to {
        opacity: 1;
        letter-spacing: -2px;
        filter: blur(0);
    }
}
@keyframes hwU {
    from {
        transform: translateY(64px);
        opacity: 0;
        filter: blur(4px);
    }
    to {
        transform: none;
        opacity: 1;
        filter: blur(0);
    }
}
@keyframes hwStroke {
    0%, 100% {
        -webkit-text-stroke-color: rgba(196, 184, 154, .18);
    }
    50% {
        -webkit-text-stroke-color: rgba(196, 184, 154, .6);
    }
}
.hw-simply {
    animation: hwL 1.1s cubic-bezier(.16, 1, .3, 1) 2.0s both;
}
.hw-rule {
    animation: hwRule 1.2s cubic-bezier(.16, 1, .3, 1) 2.3s both;
}
.hw-your {
    animation: hwBlur 1.5s cubic-bezier(.16, 1, .3, 1) 2.65s both, hwStroke 6s ease-in-out 5s infinite;
}
.hw-self {
    animation: hwU 1.1s cubic-bezier(.16, 1, .3, 1) 3.1s both;
}
.hero-info {
    padding-left: 44px;
    border-left: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 28px;
    height: 100%;
    justify-content: flex-end;
    padding-bottom: 8px;
}
.hero-count {
    border-bottom: 1px solid var(--border);
    padding-bottom: 22px;
}
.hero-count-n {
    font-family: var(--fd);
    font-size: 60px;
    line-height: 1;
    color: rgba(196, 184, 154, .09);
}
.hero-count-l {
    font-size: 8px;
    letter-spacing: 4px;
    color: var(--gray);
    margin-top: -2px;
    text-transform: uppercase;
}
.hero-desc {
    font-family: var(--fb);
    font-size: 16px;
    font-weight: 400;
    line-height: 2;
    color: var(--lgray);
}
.hero-ctas {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.hero-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px 60px;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 8px;
    letter-spacing: 4px;
    color: var(--dim);
}
.hero-scroll {
    display: flex;
    align-items: center;
    gap: 12px;
}
.hero-scroll-line {
    width: 36px;
    height: 1px;
    background: currentColor;
}

/* Hero scan-line sweep (once on load) */
@keyframes heroScan {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }
    10% {
        opacity: .6;
    }
    90% {
        opacity: .6;
    }
    100% {
        transform: translateY(100vh);
        opacity: 0;
    }
}
.hero::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(196, 184, 154, .4), transparent);
    animation: heroScan 2.0s cubic-bezier(.4, 0, .6, 1) 2.2s both;
    pointer-events: none;
    z-index: 10;
}

/* === HOME MANIFESTO === */
.manifesto {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-bottom: 1px solid var(--border);
    border-top: 1px solid var(--border);
}
.manifesto-item {
    display: flex;
    flex-direction: column;
    padding: 72px 52px 60px;
    border-right: 1px solid var(--border);
    min-height: 480px;
    position: relative;
    overflow: hidden;
    transition: background .4s;
}
.manifesto-item:last-child {
    border-right: none;
}
.manifesto-item:hover {
    background: var(--dark);
}
.mani-num {
    font-family: var(--fd);
    font-size: clamp(100px, 14vw, 180px);
    line-height: 1;
    color: rgba(196, 184, 154, .07);
    margin-bottom: auto;
    transition: color .4s;
    user-select: none;
}
.manifesto-item:hover .mani-num {
    color: rgba(196, 184, 154, .12);
}
.mani-title {
    font-family: 'Bebas Neue', 'Zen Kaku Gothic New', sans-serif;
    font-size: clamp(22px, 2.4vw, 34px);
    font-weight: 400;
    letter-spacing: 1px;
    line-height: 1.15;
    color: var(--white);
    margin: 32px 0 16px;
}
.mani-text {
    font-family: var(--fb);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.95;
    color: var(--lgray);
    letter-spacing: .2px;
}

/* === HOME QUOTE === */
.quote-sec {
    padding: 80px 60px;
    border-bottom: 1px solid var(--border);
    background: var(--mid);
    display: flex;
    align-items: center;
    justify-content: center;
}
.quote-frame {
    border: 1px solid var(--border-m);
    padding: 60px 72px;
    max-width: 860px;
    width: 100%;
    text-align: center;
    position: relative;
}
.quote-frame::before, .quote-frame::after {
    content: '';
    position: absolute;
    width: 28px;
    height: 28px;
    border-color: var(--accent);
    border-style: solid;
}
.quote-frame::before {
    top: -1px;
    left: -1px;
    border-width: 1px 0 0 1px;
}
.quote-frame::after {
    bottom: -1px;
    right: -1px;
    border-width: 0 1px 1px 0;
}
.quote-eyebrow {
    font-size: 8px;
    letter-spacing: 6px;
    color: var(--accent);
    text-transform: uppercase;
    margin-bottom: 28px;
    display: block;
}
.quote-mark {
    font-family: var(--fb);
    font-size: 80px;
    line-height: .6;
    color: rgba(196, 184, 154, .18);
    display: block;
    margin-bottom: 16px;
    font-style: italic;
}
.quote-text {
    font-family: var(--fb);
    font-style: italic;
    font-size: clamp(20px, 2.8vw, 38px);
    letter-spacing: .3px;
    line-height: 1.65;
    color: var(--white);
    max-width: none;
    margin: 0;
    font-weight: 300;
    text-align: center;
}
.quote-by {
    font-size: 9px;
    letter-spacing: 4px;
    color: var(--gray);
    margin-top: 28px;
    text-align: right;
    display: block;
}

/* === HOME CONCEPT === */
.concept-sec {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-top: 1px solid var(--border);
}
.concept-visual {
    position: relative;
    overflow: hidden;
    min-height: 580px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 60px;
    border-right: 1px solid var(--border);
    background: var(--dark);
}
.concept-bg-text {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--fd);
    font-size: clamp(110px, 17vw, 240px);
    color: rgba(196, 184, 154, .03);
    pointer-events: none;
    line-height: 1;
    letter-spacing: 10px;
}
.concept-meta {
    position: relative;
    z-index: 1;
}
.concept-year {
    font-family: var(--fd);
    font-size: 72px;
    line-height: 1;
    color: rgba(196, 184, 154, .13);
}
.concept-est {
    font-size: 8px;
    letter-spacing: 5px;
    color: var(--gray);
    margin-top: -4px;
    text-transform: uppercase;
}
.concept-circle {
    display: none;
}
.concept-body-col {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.concept-heading {
    font-family: var(--fd);
    font-size: clamp(36px, 4.8vw, 62px);
    letter-spacing: 2px;
    line-height: 1.05;
    margin: 12px 0 28px;
}
.out {
    -webkit-text-stroke: 1px var(--warm);
    color: transparent;
}
.concept-body {
    font-family: var(--fb);
    font-size: 16px;
    font-weight: 400;
    line-height: 2;
    color: var(--lgray);
    margin-bottom: 12px;
}
.concept-stats {
    display: flex;
    gap: 40px;
    margin-top: 48px;
    padding-top: 28px;
    border-top: 1px solid var(--border);
}
.stat-n {
    font-family: var(--fd);
    font-size: 44px;
    letter-spacing: 1px;
    color: var(--warm);
    line-height: 1;
}
.stat-l {
    font-size: 8px;
    letter-spacing: 3px;
    color: var(--gray);
    margin-top: 4px;
    text-transform: uppercase;
}

/* === COLLECTION === */
.coll-header {
    padding: 100px 60px 60px;
    border-bottom: 1px solid var(--border);
}
.coll-title {
    font-family: var(--fd);
    font-size: clamp(48px, 7vw, 90px);
    letter-spacing: 3px;
    line-height: 1;
}
.coll-cats {
    padding: 0 60px;
    display: flex;
    gap: 0;
    border-bottom: 1px solid var(--border);
    overflow-x: auto;
}
.coll-cats::-webkit-scrollbar {
    height: 0;
}
.cat-btn {
    padding: 16px 24px;
    font-size: 9px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gray);
    cursor: pointer;
    transition: color .3s;
    border-right: 1px solid var(--border);
    border-bottom: 2px solid transparent;
    background: none;
    white-space: nowrap;
}
.cat-btn:hover {
    color: var(--white);
}
.cat-btn.on {
    color: var(--warm);
    border-bottom-color: var(--warm);
}
.coll-grid-wrap {
    padding: 60px;
}

/* === PRODUCT DETAIL === */
.detail-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: calc(100vh - 72px);
}
.detail-vis {
    position: sticky;
    top: 72px;
    height: calc(100vh - 72px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark);
    border-right: 1px solid var(--border);
    overflow: hidden;
}
.detail-vis-inner {
    text-align: center;
    position: relative;
    z-index: 1;
}
.detail-vis-num {
    font-family: var(--fd);
    font-size: clamp(100px, 18vw, 250px);
    color: rgba(196, 184, 154, .06);
    line-height: 1;
}
.detail-vis-label {
    margin-top: -12px;
}
.detail-vis-code {
    font-size: 9px;
    letter-spacing: 4px;
    color: var(--gray);
}
.detail-vis-tag {
    font-size: 8px;
    letter-spacing: 3px;
    color: var(--accent);
    margin-top: 4px;
}
.detail-panel {
    padding: 60px;
    overflow-y: auto;
}
.detail-bc {
    font-size: 9px;
    letter-spacing: 2px;
    color: var(--gray);
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.detail-bc a {
    color: var(--lgray);
    transition: color .3s;
}
.detail-bc a:hover {
    color: var(--warm);
}
.detail-bc .sep {
    color: var(--dim);
}
.detail-cat {
    font-size: 8px;
    letter-spacing: 4px;
    color: var(--accent);
    margin-bottom: 8px;
    text-transform: uppercase;
}
.detail-name {
    font-family: var(--fd);
    font-size: clamp(36px, 5vw, 60px);
    letter-spacing: 2px;
    line-height: 1;
    margin-bottom: 18px;
}
.detail-price {
    font-family: var(--fu);
    font-size: 30px;
    font-weight: 400;
    color: var(--warm);
    margin-bottom: 36px;
    letter-spacing: .5px;
}
.orig {
    color: var(--gray);
    text-decoration: line-through;
    font-size: 14px;
    margin-right: 10px;
}
.dpanel {
    padding: 22px 0;
    border-bottom: 1px solid var(--border);
}
.dpanel-lbl {
    font-size: 8px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 14px;
}
.colors {
    display: flex;
    gap: 10px;
}
.cswatch {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color .3s;
}
.cswatch.on {
    border-color: var(--warm);
}
.c-bk {
    background: #111;
}
.c-wh {
    background: #e8e8e8;
}
.c-gy {
    background: #666;
}
.sizes {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.szbtn {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-m);
    font-size: 11px;
    color: var(--lgray);
    cursor: pointer;
    transition: border-color .3s, color .3s, background .3s;
    background: none;
}
.szbtn:hover {
    border-color: var(--warm);
    color: var(--warm);
}
.szbtn.on {
    background: var(--warm);
    color: var(--black);
    border-color: var(--warm);
}
.szbtn.so {
    border-color: var(--border);
    color: var(--dim);
    cursor: not-allowed;
    text-decoration: line-through;
}
.add-btn {
    width: 100%;
    padding: 16px;
    background: var(--warm);
    color: var(--black);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    border: none;
    transition: background .5s;
    cursor: pointer;
    margin-bottom: 10px;
}
.add-btn:hover {
    background: var(--offwhite);
}
.wish-btn {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--border-m);
    color: var(--gray);
    font-size: 9px;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
    transition: border-color .3s, color .3s;
    background: none;
}
.wish-btn:hover {
    border-color: var(--warm);
    color: var(--warm);
}
.detail-desc {
    font-family: var(--fb);
    font-size: 14px;
    font-weight: 400;
    line-height: 2;
    color: var(--lgray);
}

/* === NEWS === */
.page-hero {
    padding: 100px 60px 60px;
    border-bottom: 1px solid var(--border);
}
.page-hero-inner {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
}
.page-hero-title {
    font-family: var(--fd);
    font-size: clamp(60px, 9vw, 116px);
    letter-spacing: 3px;
    line-height: 1;
}
.page-hero-sub {
    max-width: 380px;
}
.page-hero-label {
    font-size: 8px;
    letter-spacing: 5px;
    color: var(--accent);
    margin-bottom: 8px;
    text-transform: uppercase;
}
.page-hero-text {
    font-family: var(--fb);
    font-size: 15px;
    font-weight: 400;
    line-height: 2;
    color: var(--lgray);
}
.news-feat-body {
    padding: 28px;
}
.news-title {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5;
    margin: 8px 0 10px;
}
.news-featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--border);
    margin-top: 60px;
}
.news-feat-main {
    cursor: pointer;
    transition: background .4s;
}
.news-feat-main:hover {
    background: var(--dark);
}
.news-thumb {
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--mid);
    overflow: hidden;
    position: relative;
}
.news-thumb-inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .6s var(--ease);
}
.news-feat-main:hover .news-thumb-inner {
    transform: scale(1.03);
}
.news-thumb-num {
    font-family: var(--fd);
    font-size: clamp(80px, 12vw, 160px);
    color: rgba(196, 184, 154, .05);
}
.news-date {
    font-size: 8px;
    letter-spacing: 3px;
    color: var(--gray);
    margin-bottom: 8px;
}
.news-tag {
    display: inline-block;
    font-size: 7px;
    letter-spacing: 3px;
    border: 1px solid var(--border-m);
    color: var(--warm);
    padding: 4px 10px;
    margin-bottom: 12px;
}
.news-title {
    font-family: var(--fb);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 10px;
    color: var(--white);
}
.news-excerpt {
    font-family: var(--fb);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.9;
    color: var(--lgray);
}
.news-more {
    font-size: 9px;
    letter-spacing: 3px;
    color: var(--accent);
    margin-top: 14px;
}
.news-feat-side {
    display: flex;
    flex-direction: column;
    border-left: 1px solid var(--border);
}
.news-feat-sub {
    flex: 1;
    padding: 36px;
    border-bottom: 1px solid var(--border);
    cursor: pointer;
    transition: background .4s;
}
.news-feat-sub:hover {
    background: var(--dark);
}
.news-feat-sub:last-child {
    border-bottom: none;
}
.news-feat-sub-date {
    font-size: 8px;
    letter-spacing: 3px;
    color: var(--gray);
    margin-bottom: 8px;
}
.news-feat-sub-title {
    font-family: var(--fb);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.75;
    margin-top: 8px;
}
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
}
.news-card {
    background: var(--black);
    cursor: pointer;
    transition: background .4s;
}
.news-card:hover {
    background: var(--dark);
}
.news-body {
    padding: 22px 26px 26px;
}

/* === LIMITED === */
.limited-hero-bar {
    background: var(--dark);
    padding: 16px 60px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}
.limited-hero-bar-text {
    font-size: 9px;
    letter-spacing: 4px;
    color: var(--gray);
    text-transform: uppercase;
}
.limited-countdown {
    display: flex;
    align-items: center;
    gap: 10px;
}
.countdown-item {
    text-align: center;
}
.countdown-num {
    font-family: var(--fd);
    font-size: 30px;
    line-height: 1;
    color: var(--warm);
}
.countdown-label {
    font-size: 7px;
    letter-spacing: 3px;
    color: var(--gray);
    text-transform: uppercase;
}
.limited-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 60px;
    border-bottom: 1px solid var(--border);
}
.sale-badge {
    font-size: 7px;
    letter-spacing: 4px;
    border: 1px solid var(--warm);
    color: var(--warm);
    display: inline-block;
    padding: 5px 12px;
    margin-bottom: 14px;
}
.limited-banner-title {
    font-family: var(--fd);
    font-size: clamp(48px, 7vw, 90px);
    letter-spacing: 3px;
    line-height: 1;
}
.limited-banner-desc {
    font-size: 12px;
    font-weight: 400;
    line-height: 2;
    color: var(--lgray);
    max-width: 380px;
    margin-top: 14px;
}
.limited-discount-big {
    font-family: var(--fd);
    font-size: clamp(48px, 7vw, 84px);
    line-height: 1;
    color: var(--warm);
}
.limited-discount-note {
    font-size: 9px;
    letter-spacing: 3px;
    color: var(--gray);
    margin-top: 4px;
}
.limited-section-title {
    padding: 56px 60px 36px;
}
.limited-section-label {
    font-size: 8px;
    letter-spacing: 5px;
    color: var(--accent);
    margin-bottom: 8px;
    text-transform: uppercase;
}
.limited-section-h {
    font-family: var(--fd);
    font-size: clamp(48px, 6vw, 76px);
    letter-spacing: 3px;
}
.limited-grid-wrap {
    padding: 0 60px 80px;
}

/* === STORY === */
.story-hero {
    position: relative;
    min-height: 58vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 60px;
    border-bottom: 1px solid var(--border);
    overflow: hidden;
    text-align: center;
}
.story-hero-bg {
    position: absolute;
    inset: 0;
    background: var(--dark);
}
.story-hero-title {
    font-family: var(--fd);
    font-size: clamp(60px, 10vw, 136px);
    letter-spacing: 6px;
    position: relative;
    z-index: 1;
}
.story-hero-sub {
    font-size: 13px;
    letter-spacing: 4px;
    color: var(--warm);
    margin-top: 12px;
    position: relative;
    z-index: 1;
}
.story-body {
    padding: 80px 60px;
    max-width: 880px;
    margin: 0 auto;
}
.story-block {
    margin-bottom: 80px;
    position: relative;
}
.story-n {
    font-family: var(--fd);
    font-size: 96px;
    color: rgba(196, 184, 154, .04);
    position: absolute;
    top: -20px;
    left: -20px;
    line-height: 1;
    pointer-events: none;
}
.story-h {
    font-family: var(--fb);
    font-size: clamp(26px, 3.2vw, 42px);
    font-weight: 400;
    letter-spacing: .5px;
    margin-bottom: 22px;
    color: var(--warm);
    font-style: italic;
}
.story-p {
    font-family: var(--fb);
    font-size: 16px;
    font-weight: 400;
    line-height: 2;
    color: var(--lgray);
    margin-bottom: 14px;
}
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    margin: 60px -60px;
}
.value-item {
    background: var(--black);
    padding: 48px 36px;
    transition: background .4s;
}
.value-item:hover {
    background: var(--dark);
}
.value-n {
    font-family: var(--fd);
    font-size: 56px;
    color: rgba(196, 184, 154, .05);
    line-height: 1;
    margin-bottom: -4px;
}
.value-title {
    font-family: var(--fd);
    font-size: 24px;
    letter-spacing: 2px;
    margin-bottom: 14px;
    color: var(--white);
}
.value-text {
    font-family: var(--fb);
    font-size: 15px;
    font-weight: 400;
    line-height: 2;
    color: var(--lgray);
}

/* === CONTACT === */
.contact-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: calc(100vh - 72px);
}
.contact-left {
    padding: 80px 60px;
    border-right: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.contact-big {
    font-family: var(--fd);
    font-size: clamp(48px, 7vw, 90px);
    letter-spacing: 3px;
    line-height: 1;
    margin-bottom: 44px;
}
.contact-info-block {
    margin-bottom: 28px;
}
.contact-lbl {
    font-size: 8px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 8px;
}
.contact-val {
    font-family: var(--fb);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.9;
    color: var(--lgray);
}
.contact-right {
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.form-h {
    font-family: var(--fd);
    font-size: 26px;
    letter-spacing: 2px;
    margin-bottom: 36px;
}
.fgrp {
    margin-bottom: 26px;
}
.flbl {
    display: block;
    font-size: 8px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 10px;
}
.finput {
    width: 100%;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-m);
    font-size: 13px;
    font-weight: 400;
    color: var(--white);
    transition: border-color .4s;
}
.finput:focus {
    border-bottom-color: var(--warm);
}
.finput::placeholder {
    color: var(--dim);
}
textarea.finput {
    resize: none;
    height: 88px;
    padding-top: 0;
}
select.finput option {
    background: var(--dark);
}
.fsubmit {
    width: 100%;
    padding: 16px;
    background: var(--warm);
    color: var(--black);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    border: none;
    transition: background .5s;
    margin-top: 10px;
    cursor: pointer;
}
.fsubmit:hover {
    background: var(--offwhite);
}
.fnote {
    font-size: 11px;
    color: var(--gray);
    line-height: 1.9;
    margin-top: 12px;
}

/* === CART === */
.cart-head {
    padding: 100px 60px 40px;
    border-bottom: 1px solid var(--border);
}
.cart-title {
    font-family: var(--fd);
    font-size: clamp(48px, 7vw, 84px);
    letter-spacing: 4px;
    line-height: 1;
    margin-top: 8px;
}
.cart-body {
    min-height: 50vh;
}
.cart-empty {
    padding: 100px 60px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}
.cart-empty-icon {
    color: var(--dim);
}
.cart-empty-msg {
    font-size: 13px;
    color: var(--gray);
    letter-spacing: 1px;
}
.cart-shop-btn {
    display: inline-block;
    padding: 14px 36px;
    border: 1px solid var(--border-m);
    font-size: 9px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--lgray);
    transition: color .3s, border-color .3s;
}
.cart-shop-btn:hover {
    color: var(--warm);
    border-color: var(--warm);
}
.cart-main {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 0;
    align-items: start;
    padding: 0 60px 80px;
}
.cart-items {
    padding-right: 56px;
    border-right: 1px solid var(--border);
}
.cart-row {
    display: grid;
    grid-template-columns: 76px 1fr auto;
    gap: 20px;
    padding: 26px 0;
    border-bottom: 1px solid var(--border);
    align-items: center;
}
.cart-row-vis {
    background: var(--dark);
    border: 1px solid var(--border);
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cart-row-num {
    font-family: var(--fd);
    font-size: 30px;
    color: rgba(196, 184, 154, .07);
}
.cart-row-name {
    font-size: 13px;
    font-weight: 400;
    margin-bottom: 4px;
}
.cart-row-meta {
    font-size: 10px;
    color: var(--gray);
    letter-spacing: 1.5px;
    margin-bottom: 10px;
}
.cart-row-price {
    font-family: var(--fu);
    font-size: 18px;
    color: var(--lgray);
    font-weight: 400;
    letter-spacing: .3px;
}
.cart-row-controls {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}
.cart-row-total {
    font-size: 14px;
    font-weight: 500;
    color: var(--warm);
}
.cart-remove {
    font-size: 10px;
    color: var(--gray);
    transition: color .3s;
    letter-spacing: 1px;
}
.cart-remove:hover {
    color: var(--white);
}
.qty-ctrl {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-m);
}
.qty-btn {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: var(--lgray);
    transition: color .3s;
}
.qty-btn:hover {
    color: var(--warm);
}
.qty-num {
    width: 34px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    font-size: 12px;
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
}
.cart-summary {
    padding: 40px 0 40px 56px;
    position: sticky;
    top: 88px;
}
.cart-sum-h {
    font-family: var(--fd);
    font-size: 22px;
    letter-spacing: 2px;
    margin-bottom: 24px;
}
.cart-sum-row {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--lgray);
    margin-bottom: 12px;
}
.cart-sum-note {
    font-size: 10px;
    color: var(--accent);
    text-align: right;
    margin-bottom: 12px;
}
.cart-sum-total {
    display: flex;
    justify-content: space-between;
    font-family: var(--fu);
    font-size: 22px;
    font-weight: 500;
    color: var(--warm);
    padding-top: 14px;
    margin-top: 14px;
    border-top: 1px solid var(--border);
    letter-spacing: .3px;
}
.cart-checkout-btn {
    width: 100%;
    padding: 16px;
    background: var(--warm);
    color: var(--black);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    border: none;
    margin-top: 22px;
    transition: background .5s;
    display: block;
    cursor: pointer;
}
.cart-checkout-btn:hover {
    background: var(--offwhite);
}
.cart-continue {
    display: block;
    text-align: center;
    font-size: 9px;
    color: var(--gray);
    letter-spacing: 2px;
    margin-top: 14px;
    transition: color .3s;
}
.cart-continue:hover {
    color: var(--warm);
}

/* === LEGAL === */
.legal-wrap {
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 40px;
}
.legal-head {
    padding-top: 40px;
    margin-bottom: 56px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 40px;
}
.legal-title {
    font-family: var(--fd);
    font-size: clamp(40px, 6vw, 68px);
    letter-spacing: 4px;
    margin-top: 8px;
    line-height: 1;
}
.legal-subtitle {
    font-size: 9px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gray);
    margin-top: 10px;
}
.legal-updated {
    font-size: 9px;
    letter-spacing: 2px;
    color: var(--gray);
    margin-top: 14px;
}
.legal-intro {
    font-family: var(--fb);
    font-size: 14px;
    font-weight: 400;
    line-height: 2;
    color: var(--lgray);
    margin-bottom: 44px;
}
.legal-section {
    margin-bottom: 40px;
}
.legal-sec-h {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 14px;
    color: var(--accent);
}
.legal-section p {
    font-family: var(--fb);
    font-size: 14px;
    font-weight: 400;
    line-height: 2;
    color: var(--lgray);
    margin-bottom: 10px;
}
.legal-list {
    list-style: none;
    margin-top: 8px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.legal-list li {
    font-family: var(--fb);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.8;
    color: var(--lgray);
    padding-left: 16px;
    position: relative;
}
.legal-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--gray);
}
.legal-note {
    font-size: 9px;
    color: var(--gray);
    letter-spacing: 1px;
    margin-top: 44px;
    padding-top: 22px;
    border-top: 1px solid var(--border);
}
.legal-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 8px;
}
.legal-table th, .legal-table td {
    padding: 13px 16px;
    text-align: left;
    font-size: 12px;
    font-weight: 300;
    border: 1px solid var(--border);
    color: var(--lgray);
    vertical-align: top;
    line-height: 1.9;
}
.legal-table th {
    width: 165px;
    background: var(--dark);
    font-weight: 500;
    color: var(--white);
    font-size: 11px;
    letter-spacing: .5px;
}
.legal-table td strong {
    color: var(--white);
    font-weight: 500;
}

/* === ARTICLE === */
.article-hero {
    padding: 100px 60px 72px;
    border-bottom: 1px solid var(--border);
}
.article-meta-row {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 24px;
}
.article-num {
    font-family: var(--fd);
    font-size: 11px;
    letter-spacing: 3px;
    color: var(--dim);
}
.article-tag-h {
    display: inline-block;
    font-size: 7px;
    letter-spacing: 3px;
    border: 1px solid var(--border-m);
    color: var(--warm);
    padding: 4px 10px;
}
.article-date-h {
    font-size: 9px;
    letter-spacing: 2px;
    color: var(--gray);
}
.article-title {
    font-family: var(--fd);
    font-size: clamp(36px, 6vw, 76px);
    letter-spacing: 2px;
    line-height: 1.05;
    color: var(--white);
    margin-bottom: 18px;
    max-width: 820px;
}
.article-lead {
    font-family: var(--fb);
    font-size: 17px;
    font-weight: 400;
    line-height: 2;
    color: var(--lgray);
    max-width: 620px;
    font-style: italic;
}
.article-layout {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 0;
    padding: 72px 60px;
}
.article-body p {
    font-family: var(--fb);
    font-size: 16px;
    font-weight: 400;
    line-height: 2.1;
    color: var(--lgray);
    margin-bottom: 28px;
}
.article-body h2 {
    font-family: var(--fd);
    font-size: clamp(22px, 2.8vw, 32px);
    letter-spacing: 2px;
    color: var(--white);
    margin: 52px 0 18px;
}
.article-pull {
    padding: 32px 0;
    margin: 44px 0;
    border-top: 1px solid var(--border-m);
    border-bottom: 1px solid var(--border-m);
}
.article-pull-q {
    font-family: var(--fd);
    font-size: clamp(18px, 2.5vw, 28px);
    letter-spacing: 1px;
    line-height: 1.45;
    color: var(--warm);
}
.article-back {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 9px;
    letter-spacing: 3px;
    color: var(--gray);
    margin-top: 56px;
    transition: color .3s;
}
.article-back:hover {
    color: var(--warm);
}
.article-back-line {
    width: 28px;
    height: 1px;
    background: currentColor;
    transition: width .3s var(--ease);
}
.article-back:hover .article-back-line {
    width: 44px;
}
.article-sidebar {
    padding-left: 56px;
    border-left: 1px solid var(--border);
    position: sticky;
    top: 96px;
    align-self: start;
}
.article-sidebar-h {
    font-size: 8px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 22px;
}
.article-rel-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.article-rel-item {
    cursor: pointer;
    padding: 18px 0;
    border-bottom: 1px solid var(--border);
    transition: opacity .3s;
}
.article-rel-item:first-child {
    border-top: 1px solid var(--border);
}
.article-rel-item:hover {
    opacity: .65;
}
.article-rel-date {
    font-size: 8px;
    letter-spacing: 2px;
    color: var(--gray);
    margin-bottom: 4px;
}
.article-rel-tag {
    font-size: 7px;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 5px;
    text-transform: uppercase;
}
.article-rel-title {
    font-size: 11px;
    font-weight: 300;
    line-height: 1.75;
    color: var(--lgray);
}

/* ===== ARTICLE BODY ===== */

.article-body {
    max-width: 680px;
    color: var(--lgray, #ccc);
    font-size: 15px;
    line-height: 1.9;
}

.article-body h2 {
    font-family: var(--fd);
    font-size: 22px;
    letter-spacing: 1px;
    color: var(--warm, #c9a876);
    margin-top: 56px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border, #2a2a2a);
}

.article-body h2:first-child {
    margin-top: 0;
}

.article-body p {
    margin-bottom: 22px;
}

.article-body p:last-of-type {
    margin-bottom: 0;
}

.article-body strong {
    color: #fff;
    font-weight: 500;
}

/* 引用風の強調ブロック（pull要素を将来使う場合） */
.article-pull {
    margin: 40px 0;
    padding: 24px 28px;
    border-left: 2px solid var(--warm, #c9a876);
    background: var(--bg-alt, #111);
}

.article-pull-q {
    font-family: var(--fd);
    font-size: 17px;
    font-style: italic;
    color: var(--lgray, #ddd);
    line-height: 1.7;
}

/* 署名部分（最後の ROY LEXIE / Est. 2022 / Aichi, Japan） */
.article-body p:last-child {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid var(--border, #2a2a2a);
    font-size: 13px;
    letter-spacing: 1px;
    color: var(--gray, #888);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .article-body {
        font-size: 14px;
        line-height: 1.8;
    }
    .article-body h2 {
        font-size: 19px;
        margin-top: 40px;
    }
}

/* === FOOTER === */
footer {
    padding: 80px 60px 36px;
    border-top: 1px solid var(--border);
}
.ft-top {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 56px;
    margin-bottom: 56px;
}
.ft-logo {
    font-family: var(--fd);
    font-size: 22px;
    letter-spacing: 7px;
    margin-bottom: 14px;
    color: var(--white);
}
.ft-tagline {
    font-family: var(--fb);
    font-size: 13px;
    font-weight: 400;
    line-height: 2;
    color: var(--gray);
    margin-bottom: 18px;
}
.ft-social {
    display: flex;
    gap: 10px;
}
.ft-soc {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    font-size: 9px;
    color: var(--gray);
    transition: border-color .3s, color .3s;
}
.ft-soc:hover {
    border-color: var(--warm);
    color: var(--warm);
}
.ft-col-h {
    font-size: 8px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 18px;
}
.ft-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.ft-links a {
    font-size: 13px;
    font-weight: 300;
    color: var(--gray);
    transition: color .3s;
}
.ft-links a:hover {
    color: var(--warm);
}
.ft-btm {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 28px;
    border-top: 1px solid var(--border);
}
.ft-copy {
    font-size: 10px;
    color: var(--dim);
    letter-spacing: 1px;
}
.ft-legal {
    display: flex;
    gap: 22px;
}
.ft-legal a {
    font-size: 10px;
    color: var(--dim);
    transition: color .3s;
}
.ft-legal a:hover {
    color: var(--gray);
}


/* === SEARCH BAR === */
.coll-search, .lim-search {
    padding: 32px 60px 36px;
    border-bottom: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 0;
}
.search-label {
    font-size: 8px;
    letter-spacing: 5px;
    color: var(--accent);
    text-transform: uppercase;
    margin-bottom: 16px;
}
.search-row {
    display: flex;
    align-items: center;
    gap: 24px;
}
.search-inner {
    display: flex;
    align-items: center;
    gap: 16px;
    border: 1px solid var(--border-m);
    padding: 14px 20px;
    flex: 1;
    max-width: 680px;
    transition: border-color .35s, background .35s;
    background: rgba(255, 255, 255, .02);
}
.search-inner:focus-within {
    border-color: var(--warm);
    background: rgba(196, 184, 154, .04);
}
.search-icon {
    color: var(--warm);
    flex-shrink: 0;
}
.search-input {
    flex: 1;
    font-size: 15px;
    color: var(--white);
    background: transparent;
    border: none;
    outline: none;
    font-family: var(--fu);
    font-weight: 300;
    letter-spacing: .8px;
}
.search-input::placeholder {
    color: var(--gray);
}
.search-clear {
    font-size: 13px;
    color: var(--gray);
    cursor: pointer;
    padding: 4px 6px;
    opacity: .7;
    transition: opacity .2s, color .2s;
    flex-shrink: 0;
    font-family: var(--fu);
}
.search-clear:hover {
    opacity: 1;
    color: var(--white);
}
.search-count {
    font-size: 10px;
    letter-spacing: 4px;
    color: var(--accent);
    text-transform: uppercase;
    padding: 10px 0 0 0;
}
.search-no-results {
    padding: 60px 60px 80px;
    font-size: 14px;
    color: var(--dim);
    letter-spacing: 1px;
}



/* ===== INDEX ARRIVALS SECTION ===== */
.arrivals-sec {
    padding: 80px 0;
    border-bottom: 1px solid var(--border);
}
.arrivals-hdr {
    padding: 0 60px 40px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}
.arrivals-title {
    font-family: var(--fd);
    font-size: clamp(32px, 4.5vw, 58px);
    letter-spacing: 2px;
    line-height: 1;
}

/* ===== INDEX NEWS SECTION ===== */
.news-sec {
    padding: 100px 60px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.news-sec-hdr {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 52px;
    flex-wrap: wrap;
    gap: 16px;
}
.news-sec-title {
    font-family: var(--fd);
    font-size: clamp(32px, 4.5vw, 58px);
    letter-spacing: 2px;
    line-height: 1;
}
.index-news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
}
.index-news-card {
    background: var(--black);
    padding: 40px;
    cursor: pointer;
    transition: background .4s;
}
.index-news-card:hover {
    background: var(--card);
}
.index-news-tag {
    font-size: 7px;
    letter-spacing: 4px;
    color: var(--accent);
    margin-bottom: 16px;
    text-transform: uppercase;
}
.index-news-h {
    font-family: var(--fd);
    font-size: 28px;
    letter-spacing: 1px;
    line-height: 1.1;
    margin-bottom: 16px;
}
.index-news-p {
    font-size: 12px;
    line-height: 1.9;
    color: var(--lgray);
    margin-bottom: 28px;
}
.index-news-date {
    font-size: 8px;
    letter-spacing: 2px;
    color: var(--gray);
}

/* === RESPONSIVE === */

/* ===== MISSING / PATCH CLASSES ===== */

/* Collection filter bar */
.coll-top-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 28px;
}
.coll-meta {
    text-align: right;
    font-size: 9px;
    letter-spacing: 3px;
    color: var(--gray);
}
.filter-bar {
    padding: 0 60px;
    display: flex;
    gap: 0;
    border-bottom: 1px solid var(--border);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.filter-bar::-webkit-scrollbar {
    height: 0;
}
.filter-btn {
    font-size: 9px;
    letter-spacing: 3px;
    padding: 16px 22px;
    border: none;
    border-bottom: 2px solid transparent;
    background: none;
    color: var(--gray);
    cursor: pointer;
    white-space: nowrap;
    transition: color .3s, border-color .3s;
    text-transform: uppercase;
    min-height: 44px;
}
.filter-btn:hover {
    color: var(--warm);
}
.filter-btn.active {
    color: var(--warm);
    border-bottom-color: var(--warm);
}

/* Cart missing wrappers */
.cart-wrap {
    min-height: calc(100vh - 72px);
}
.cart-row-info {
    flex: 1;
    min-width: 0;
}

/* Limited banner sides */
.limited-banner-left {
    max-width: 520px;
}
.limited-banner-right {
    text-align: right;
    flex-shrink: 0;
}

/* Countdown separator */
.countdown-sep {
    font-family: var(--fd);
    font-size: 28px;
    color: var(--dim);
    line-height: 1;
    align-self: flex-start;
    padding-top: 2px;
}

/* Contact form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.form-group {
    margin-bottom: 24px;
}
.form-label {
    font-size: 8px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gray);
    display: block;
    margin-bottom: 10px;
}
.form-input, .form-textarea, .form-select {
    width: 100%;
    padding: 14px 0;
    border: none;
    border-bottom: 1px solid var(--border-m);
    background: none;
    color: var(--white);
    font-size: 13px;
    font-weight: 300;
    transition: border-color .3s;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
    border-bottom-color: var(--warm);
    outline: none;
}
.form-textarea {
    resize: none;
    height: 120px;
}
.form-select option {
    background: var(--dark);
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.form-submit {
    margin-top: 12px;
    padding: 16px;
    width: 100%;
    background: var(--warm);
    color: var(--black);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: background .5s;
}
.form-submit:hover {
    background: var(--offwhite);
}
.form-note {
    font-size: 10px;
    color: var(--gray);
    margin-top: 10px;
    line-height: 1.8;
}

/* ===== EXTENDED RESPONSIVE ===== */

/* Tablet (1100px) */

/* Mobile (900px) */

/* Small mobile (600px) */

/* Legal body */
.legal-body {
    font-size: 13px;
}

/* ===== LOGIN / ACCOUNT ICON ===== */
.login-ico {
    gap: 6px;
}
.login-ico svg {
    opacity: .7;
    transition: opacity .3s;
}
.login-ico:hover svg {
    opacity: 1;
}

/* ===== AUTH PAGES (login, register) ===== */
.auth-wrap {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 28px 60px;
    background: var(--black);
}
.auth-box {
    width: 100%;
    max-width: 440px;
}
.auth-brand {
    font-family: var(--fd);
    font-size: 22px;
    letter-spacing: 8px;
    color: var(--white);
    margin-bottom: 48px;
    text-align: center;
}
.auth-brand em {
    color: var(--warm);
    font-style: normal;
}
.auth-title {
    font-family: var(--fd);
    font-size: clamp(28px, 5vw, 44px);
    letter-spacing: 3px;
    margin-bottom: 6px;
}
.auth-sub {
    font-size: 10px;
    letter-spacing: 2px;
    color: var(--gray);
    margin-bottom: 40px;
}
.auth-form {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.auth-group {
    margin-bottom: 22px;
}
.auth-label {
    font-size: 8px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gray);
    display: block;
    margin-bottom: 10px;
}
.auth-input {
    width: 100%;
    padding: 14px 0;
    border: none;
    border-bottom: 1px solid var(--border-m);
    background: none;
    color: var(--white);
    font-family: var(--fb);
    font-size: 15px;
    font-weight: 400;
    transition: border-color .3s;
}
.auth-input:focus {
    border-bottom-color: var(--warm);
    outline: none;
}
.auth-btn {
    width: 100%;
    padding: 16px;
    background: var(--warm);
    color: var(--black);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: background .5s;
    margin-top: 12px;
}
.auth-btn:hover {
    background: var(--offwhite);
}
.auth-link {
    display: block;
    text-align: center;
    font-size: 10px;
    color: var(--gray);
    letter-spacing: 1px;
    margin-top: 22px;
    transition: color .3s;
}
.auth-link a {
    color: var(--warm);
    text-decoration: none;
}
.auth-link a:hover {
    color: var(--offwhite);
}
.auth-divider {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 24px 0;
    color: var(--dim);
    font-size: 9px;
    letter-spacing: 2px;
}
.auth-divider::before, .auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
}
.auth-check {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    cursor: pointer;
}
.auth-check input {
    accent-color: var(--warm);
    width: 14px;
    height: 14px;
}
.auth-check-label {
    font-size: 11px;
    color: var(--gray);
    font-weight: 300;
}
.auth-err {
    font-size: 10px;
    color: #e06060;
    letter-spacing: 1px;
    margin-top: 4px;
    display: none;
}

/* ===== ACCOUNT PAGE ===== */
.account-wrap {
    padding: 100px 60px 80px;
    max-width: 1100px;
    margin: 0 auto;
}
.account-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 56px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--border);
}
.account-name {
    font-family: var(--fd);
    font-size: clamp(32px, 5vw, 56px);
    letter-spacing: 3px;
    line-height: 1;
}
.account-email {
    font-size: 11px;
    color: var(--gray);
    margin-top: 6px;
    letter-spacing: 1px;
}
.account-logout {
    font-size: 9px;
    letter-spacing: 2px;
    color: var(--gray);
    border: 1px solid var(--border);
    padding: 10px 20px;
    transition: color .3s, border-color .3s;
    cursor: pointer;
    background: none;
}
.account-logout:hover {
    color: var(--warm);
    border-color: var(--warm);
}
.account-tabs {
    display: flex;
    gap: 0;
    border-bottom: 1px solid var(--border);
    margin-bottom: 52px;
    overflow-x: auto;
}
.account-tab {
    font-size: 9px;
    letter-spacing: 3px;
    padding: 14px 24px;
    border: none;
    border-bottom: 2px solid transparent;
    background: none;
    color: var(--gray);
    cursor: pointer;
    white-space: nowrap;
    transition: color .3s, border-color .3s;
    text-transform: uppercase;
    min-height: 44px;
}
.account-tab:hover {
    color: var(--warm);
}
.account-tab.active {
    color: var(--warm);
    border-bottom-color: var(--warm);
}
.account-panel {
    display: none;
}
.account-panel.active {
    display: block;
}
.order-card {
    border: 1px solid var(--border);
    margin-bottom: 1px;
    background: var(--black);
    transition: background .3s;
}
.order-card:hover {
    background: var(--card);
}
.order-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 28px;
    cursor: pointer;
}
.order-num {
    font-family: var(--fd);
    font-size: 16px;
    letter-spacing: 2px;
    color: var(--white);
}
.order-date {
    font-size: 9px;
    letter-spacing: 2px;
    color: var(--gray);
}
.order-status {
    font-size: 8px;
    letter-spacing: 2px;
    padding: 4px 12px;
    border: 1px solid;
}
.order-status.paid {
    border-color: rgba(196, 184, 154, .4);
    color: var(--warm);
}
.order-status.pending {
    border-color: rgba(255, 200, 60, .3);
    color: rgba(255, 200, 80, .8);
}
.order-status.shipped {
    border-color: rgba(60, 200, 120, .3);
    color: rgba(80, 210, 130, .9);
}
.order-card-body {
    padding: 0 28px 22px;
    display: none;
}
.order-card-body.open {
    display: block;
}
.order-item-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-size: 12px;
    font-weight: 300;
    color: var(--lgray);
}
.order-total-row {
    display: flex;
    justify-content: space-between;
    padding: 14px 0 0;
    font-size: 13px;
    font-weight: 500;
    color: var(--warm);
}
.profile-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.profile-section {
    margin-bottom: 44px;
}
.profile-section-h {
    font-size: 8px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 22px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
}
.profile-save-btn {
    padding: 14px 32px;
    background: var(--warm);
    color: var(--black);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 3px;
    border: none;
    cursor: pointer;
    transition: background .5s;
    margin-top: 8px;
}
.profile-save-btn:hover {
    background: var(--offwhite);
}

/* ===== CHECKOUT PAGES ===== */
.checkout-wrap {
    max-width: 1000px;
    margin: 0 auto;
    padding: 100px 60px 80px;
}
.checkout-steps {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 60px;
}
.checkout-step {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 8px;
    letter-spacing: 3px;
    color: var(--gray);
    text-transform: uppercase;
}
.checkout-step.active {
    color: var(--warm);
}
.checkout-step.done {
    color: var(--accent);
}
.checkout-step-n {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid currentColor;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    flex-shrink: 0;
}
.checkout-step.active .checkout-step-n {
    background: var(--warm);
    border-color: var(--warm);
    color: var(--black);
}
.checkout-step.done .checkout-step-n {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--black);
}
.checkout-step-line {
    flex: 1;
    height: 1px;
    background: var(--border);
    max-width: 80px;
}
.checkout-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 60px;
    align-items: start;
}
.checkout-main h2 {
    font-family: var(--fd);
    font-size: 28px;
    letter-spacing: 2px;
    margin-bottom: 32px;
}
.checkout-summary {
    padding: 32px;
    border: 1px solid var(--border);
    background: var(--card);
    position: sticky;
    top: 90px;
}
.checkout-sum-h {
    font-family: var(--fd);
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 22px;
}
.checkout-sum-item {
    display: flex;
    gap: 14px;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
}
.checkout-sum-thumb {
    width: 52px;
    height: 52px;
    background: var(--dark);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.checkout-sum-num {
    font-family: var(--fd);
    font-size: 20px;
    color: rgba(196, 184, 154, .1);
}
.checkout-sum-info {
    flex: 1;
    min-width: 0;
}
.checkout-sum-name {
    font-size: 11px;
    font-weight: 400;
    margin-bottom: 2px;
}
.checkout-sum-meta {
    font-size: 9px;
    color: var(--gray);
    letter-spacing: 1px;
}
.checkout-sum-price {
    font-size: 12px;
    color: var(--warm);
    flex-shrink: 0;
}
.checkout-sum-rows {
    margin-top: 18px;
}
.checkout-sum-row {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: var(--lgray);
    margin-bottom: 8px;
}
.checkout-sum-total {
    display: flex;
    justify-content: space-between;
    font-family: var(--fu);
    font-size: 18px;
    font-weight: 500;
    color: var(--warm);
    padding-top: 14px;
    margin-top: 6px;
    border-top: 1px solid var(--border);
    letter-spacing: .3px;
}
.checkout-next-btn {
    width: 100%;
    padding: 16px;
    background: var(--warm);
    color: var(--black);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: background .5s;
    margin-top: 28px;
}
.checkout-next-btn:hover {
    background: var(--offwhite);
}
.checkout-back {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 9px;
    letter-spacing: 2px;
    color: var(--gray);
    margin-bottom: 32px;
    transition: color .3s;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
}
.checkout-back:hover {
    color: var(--warm);
}
.checkout-section {
    margin-bottom: 36px;
    padding-bottom: 36px;
    border-bottom: 1px solid var(--border);
}
.checkout-section:last-child {
    border-bottom: none;
}
.checkout-section-h {
    font-size: 8px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 20px;
}
.payment-option {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px;
    border: 1px solid var(--border);
    margin-bottom: 8px;
    cursor: pointer;
    transition: border-color .3s;
}
.payment-option.selected {
    border-color: var(--warm);
}
.payment-option input[type=radio] {
    accent-color: var(--warm);
    margin-top: 2px;
    flex-shrink: 0;
}
.payment-option-title {
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 4px;
}
.payment-option-desc {
    font-family: var(--fb);
    font-size: 12px;
    color: var(--gray);
    line-height: 1.7;
    font-weight: 300;
}
.bank-info-box {
    background: var(--dark);
    border: 1px solid var(--border);
    padding: 22px;
    margin-top: 24px;
}
.bank-info-h {
    font-size: 8px;
    letter-spacing: 3px;
    color: var(--accent);
    margin-bottom: 16px;
    text-transform: uppercase;
}
.bank-row {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    margin-bottom: 8px;
}
.bank-label {
    color: var(--gray);
    font-weight: 300;
    font-family: var(--fu);
}
.bank-val {
    color: var(--white);
    font-weight: 400;
    letter-spacing: .5px;
    font-family: var(--fb);
}
.complete-hero {
    text-align: center;
    padding: 60px 0 48px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 56px;
}
.complete-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 1px solid var(--warm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: var(--warm);
}
.complete-title {
    font-family: var(--fd);
    font-size: clamp(32px, 5vw, 52px);
    letter-spacing: 3px;
    margin-bottom: 12px;
}
.complete-sub {
    font-family: var(--fb);
    font-size: 14px;
    font-weight: 300;
    line-height: 2;
    color: var(--lgray);
}
.complete-order-n {
    font-size: 9px;
    letter-spacing: 3px;
    color: var(--accent);
    margin-top: 10px;
}

/* ===== ACCOUNT / AUTH RESPONSIVE ===== */

/* ===== DESIGN REFINEMENTS v4 ===== */

/* Jost for all UI / functional text */
nav a, .cart-ico, .lang-btn, .sec-label, .sec-more,
.btn-w, .btn-g, .prod-cat, .prod-price, .prod-add,
.cat-btn, .filter-btn, .news-tag, .news-date, .news-more,
.page-hero-label, .article-tag-h, .article-date-h, .article-num,
.detail-cat, .detail-bc, .detail-bc a, .dpanel-lbl,
.szbtn, .add-btn, .wish-btn, .flbl, .fsubmit,
.cart-sum-h, .cart-sum-row, .cart-sum-note, .cart-sum-total,
.cart-checkout-btn, .cart-continue, .cart-remove,
.toast, .load-sub,
.auth-label, .auth-btn, .auth-link, .auth-check,
.account-tab, .account-logout,
.checkout-section-h, .checkout-next-btn, .checkout-back, .checkout-step,
.profile-section-h, .profile-save-btn,
.order-num, .order-date, .order-status,
.limited-hero-bar-text, .sale-badge,
.form-label, .form-submit, .contact-lbl,
.legal-sec-h, .legal-note, .legal-subtitle, .legal-updated,
.article-sidebar-h, .article-back, .article-rel-date, .article-rel-tag,
.ft-col-h, .ft-links a, .ft-copy,
.header-strip, .hero-strip, .hero-bottom, .hero-count-l,
.ticker-item {
    font-family: var(--fu);
}

/* Cormorant italic for section eyebrows — more fashion-forward */
.sec-label, .page-hero-label, .detail-cat, .article-tag-h,
.contact-lbl, .legal-sec-h, .bank-info-h,
.checkout-section-h, .profile-section-h {
    font-family: var(--fu);
    letter-spacing: 4px;
}

/* Quote eyebrow — vertical label style handled in main rule */

/* Hero count number — keep Bebas */
.hero-count-n {
    font-family: var(--fd);
}

/* Mani title — slightly warmer Bebas treatment */
.mani-title {
    letter-spacing: 1px;
}

/* Article pull quote — more editorial */
.article-pull-q {
    font-family: var(--fb);
    font-style: italic;
    font-size: clamp(16px, 2.2vw, 24px);
    letter-spacing: 0;
    font-weight: 300;
    color: var(--warm);
    line-height: 1.6;
}

/* Article related items title */
.article-rel-title {
    font-family: var(--fb);
    font-size: 12px;
}

/* Form note text */
.fnote, .form-note {
    font-family: var(--fb);
    font-size: 12px;
}

/* Cart row name — a bit more elegant */
.cart-row-name {
    font-family: var(--fb);
    font-size: 15px;
}

/* Limited banner desc */
.limited-banner-desc {
    font-family: var(--fb);
    font-size: 15px;
    font-weight: 300;
}

/* Nav — Jost with slightly tighter weight */
nav a {
    font-weight: 400;
    letter-spacing: 2.5px;
}


/* Ticker dot — warmer */
.ticker-dot {
    color: var(--warm);
    opacity: .5;
}

/* Product price — warmer feel with serif alternative kept warm */
.prod-price {
    font-family: var(--fu);
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    letter-spacing: .5px;
}

/* Product card category — Jost clean */
.prod-cat {
    font-family: var(--fu);
    font-size: 12px;
    letter-spacing: 2px;
    font-weight: 400;
}

/* Detail price — elegant */
.detail-price {
    font-family: var(--fu);
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    letter-spacing: .5px;
}

/* Contact big heading gets more air */
.contact-big {
    letter-spacing: 2px;
}

/* Legal table body font */
.legal-table td {
    font-family: var(--fb);
    font-size: 13px;
}

/* Story hero sub — italic Cormorant */
.story-hero-sub {
    font-family: var(--fb);
    font-style: italic;
    letter-spacing: 2px;
    font-size: 14px;
}

/* Account name — keep Bebas, it's large branding */
.account-name {
    font-family: var(--fd);
}
.account-email {
    font-family: var(--fu);
}

/* Order item rows — Cormorant */
.order-item-row {
    font-family: var(--fb);
    font-size: 13px;
}

/* Order total */
.order-total-row {
    font-family: var(--fu);
}

/* Complete title */
.complete-title {
    font-family: var(--fd);
}

/* Cart row meta */
.cart-row-meta {
    font-family: var(--fu);
}

/* Payment option title */
.payment-option-title {
    font-family: var(--fu);
}

/* Auth title */
.auth-title {
    font-family: var(--fd);
}
.auth-sub {
    font-family: var(--fu);
}
.auth-brand {
    font-family: var(--fd);
}

/* Checkout section subtitles */
.checkout-main h2 {
    font-family: var(--fd);
}
.checkout-sum-h {
    font-family: var(--fd);
}
.checkout-sum-name {
    font-family: var(--fb);
    font-size: 12px;
}
.checkout-sum-row {
    font-family: var(--fu);
}

/* Complete order number */
.complete-order-n {
    font-family: var(--fu);
}

/* ===== COMPREHENSIVE RESPONSIVE FIX v5 ===== */

/* --- 1100px tablet --- */

/* --- 900px mobile --- */

/* --- 600px small mobile --- */

/* =====================================================
   ROY LEXIE — RESPONSIVE SYSTEM (Single Source of Truth)
   Breakpoints: 1100px (tablet) | 900px (mobile) | 600px (small)
   ===================================================== */

/* ── 1100px TABLET ───────────────────────────────── */
@media(max-width:1100px) {
    /* Header */
    #hdr {
        padding: 0 40px;
    }

    /* Hero */
    .hero-display {
        padding: 156px 40px 80px;
    }
    .hero-strip, .hero-bottom {
        padding-left: 40px;
        padding-right: 40px;
    }

    /* Manifesto: 2-column, 3rd spans full width as row */
    .manifesto {
        grid-template-columns: 1fr 1fr;
    }
    .manifesto-item:nth-child(2) {
        border-right: none;
    }
    .manifesto-item:last-child {
        grid-column: 1/-1;
        flex-direction: row;
        align-items: center;
        gap: 60px;
        border-right: none;
        border-top: 1px solid var(--border);
        padding: 52px 60px;
    }
    .manifesto-item:last-child .mani-num {
        margin-bottom: 0;
        font-size: clamp(70px, 10vw, 120px);
    }
    .manifesto-item:last-child .mani-title {
        margin: 0;
    }
    .manifesto-item:last-child .mani-text {
        margin-left: auto;
        max-width: 340px;
    }

    /* Sections */
    .sec {
        padding: 80px 40px;
    }
    .arrivals-sec {
        padding: 60px 0;
    }
    .arrivals-hdr {
        padding: 0 40px 32px;
    }
    .news-sec {
        padding: 80px 40px;
    }
    .index-news-grid {
        grid-template-columns: 1fr 1fr;
    }

    /* Collection */
    .coll-header {
        padding: 80px 40px 40px;
    }
    .coll-grid-wrap {
        padding: 40px;
    }
    .filter-bar {
        padding-left: 40px;
        padding-right: 40px;
    }

    /* Story */
    .story-body {
        padding: 80px 40px;
    }

    /* Contact */
    .contact-wrap {
        min-height: auto;
    }
    .contact-left, .contact-right {
        padding: 64px 40px;
    }

    /* Article */
    .article-layout {
        grid-template-columns: 1fr 240px;
    }
    .article-hero {
        padding: 80px 40px 56px;
    }
    .article-layout {
        padding: 56px 40px;
    }

    /* Page hero */
    .page-hero {
        padding: 80px 40px 44px;
    }

    /* Legal */
    .legal-wrap {
        padding: 72px 40px;
    }

    /* Limited */
    .limited-hero-bar, .limited-banner,
    .limited-section-title, .limited-grid-wrap {
        padding-left: 40px;
        padding-right: 40px;
    }

    /* Cart */
    .cart-head {
        padding: 80px 40px 28px;
    }
    .cart-main {
        padding: 0 40px 56px;
    }
    .cart-empty {
        padding: 80px 40px;
    }

    /* News */
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Footer */
    .ft-top {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

/* ── 900px MOBILE ────────────────────────────────── */
@media(max-width:900px) {
    /* Kill custom cursor */
    body {
        font-size: 17px;
        cursor: auto;
        overflow-x: hidden;
    }
    .cur-dot, .cur-ring {
        display: none;
    }

    /* Header */
    #hdr {
        padding: 0 24px;
    }
    .hdr-right {
        gap: 16px;
    }
    nav {
        display: none;
    }
    .ham {
        display: flex;
    }

    /* Mobile menu */
    .mob-menu {
        display: flex;
        transform: translateX(100%);
        transition: transform .55s var(--ease);
    }
    .mob-menu.open {
        transform: none;
    }
    .mob-menu a {
        font-size: 40px;
        letter-spacing: 2px;
    }

    /* Hero */
    .hero-strip, .hero-bottom {
        padding-left: 24px;
        padding-right: 24px;
    }
    .hero-display {
        grid-template-columns: 1fr;
        padding: 144px 24px 80px;
    }
    .hero-info {
        border-left: none;
        border-top: 1px solid var(--border);
        padding-left: 0;
        padding-top: 24px;
        height: auto;
    }
    .hero-desc {
        font-size: 16px;
        line-height: 1.85;
    }

    /* Manifesto — RESET to single column */
    .manifesto {
        grid-template-columns: 1fr;
    }
    .manifesto-item {
        border-right: none;
        border-top: 1px solid var(--border);
        min-height: auto;
        padding: 48px 24px 40px;
    }
    .manifesto-item:last-child {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        grid-column: auto;
        padding: 48px 24px 40px;
        border-top: 1px solid var(--border);
    }
    .manifesto-item:last-child .mani-num {
        margin-bottom: auto;
        font-size: clamp(80px, 20vw, 130px);
    }
    .manifesto-item:last-child .mani-title {
        margin: 28px 0 16px;
    }
    .manifesto-item:last-child .mani-text {
        margin-left: 0;
        max-width: none;
    }
    .mani-num {
        font-size: clamp(80px, 20vw, 130px);
    }
    .mani-title {
        font-size: clamp(22px, 5.5vw, 32px);
    }
    .mani-text {
        font-size: 15px;
        line-height: 1.85;
    }

    /* Quote */
    .quote-sec {
        padding: 48px 24px;
    }
    .quote-frame {
        padding: 36px 24px;
    }
    .quote-text {
        font-size: clamp(17px, 4.5vw, 24px);
    }

    /* Concept */
    .concept-sec {
        grid-template-columns: 1fr;
    }
    .concept-visual {
        min-height: 240px;
        border-right: none;
        border-bottom: 1px solid var(--border);
    }
    .concept-body-col {
        padding: 44px 24px;
    }
    .concept-body {
        font-size: 16px;
        line-height: 1.9;
    }
    .concept-stats {
        gap: 28px;
    }

    /* Sections */
    .sec {
        padding: 56px 24px;
    }
    .sec-hdr {
        margin-bottom: 36px;
        flex-wrap: wrap;
        gap: 12px;
    }
    .sec-label {
        font-size: 10px;
        letter-spacing: 4px;
    }

    /* Products */
    .prod-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .prod-info {
        padding: 14px 16px 18px;
    }
    .prod-cat {
        font-size: 13px;
    }
    .prod-name {
        font-size: 20px;
    }
    .prod-price {
        font-size: 22px;
    }

    /* Arrivals section */
    .arrivals-sec {
        padding: 44px 0;
    }
    .arrivals-hdr {
        padding: 0 24px 28px;
    }

    /* News index */
    .news-sec {
        padding: 52px 24px;
    }
    .news-sec-hdr {
        margin-bottom: 32px;
    }
    .index-news-grid {
        grid-template-columns: 1fr;
    }
    .index-news-card {
        padding: 28px 24px;
    }

    /* News page */
    .news-grid {
        grid-template-columns: 1fr;
    }
    .news-featured {
        grid-template-columns: 1fr;
    }
    .news-feat-side {
        border-left: none;
        border-top: 1px solid var(--border);
    }
    .news-feat-body {
        padding: 20px 24px;
    }
    .page-hero {
        padding: 72px 24px 40px;
    }
    .page-hero-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    /* Collection */
    .coll-header {
        padding: 72px 24px 28px;
    }
    .coll-cats {
        padding-left: 16px;
    }
    .coll-grid-wrap {
        padding: 0 0 56px;
    }
    .filter-bar {
        padding-left: 16px;
        padding-right: 0;
    }
    .filter-btn {
        padding: 14px 16px;
    }
    .coll-search, .lim-search {
        padding: 20px 24px 24px;
    }
    .search-inner {
        max-width: 100%;
    }
    .search-input {
        font-size: 16px;
    }
    .search-no-results {
        padding: 44px 24px 56px;
    }

    /* Product detail */
    .detail-wrap {
        grid-template-columns: 1fr;
    }
    .detail-vis {
        position: relative;
        height: 50vw;
        top: 0;
    }
    .detail-panel {
        padding: 32px 24px;
    }
    .detail-price {
        font-size: 26px;
    }
    .detail-bc {
        display: none;
    }

    /* Limited */
    .limited-hero-bar, .limited-banner,
    .limited-section-title, .limited-grid-wrap {
        padding-left: 24px;
        padding-right: 24px;
    }
    .limited-banner {
        flex-direction: column;
        align-items: flex-start;
        padding-top: 44px;
        padding-bottom: 44px;
    }
    .limited-banner-right {
        text-align: left;
    }
    .limited-countdown {
        flex-wrap: wrap;
    }
    .limited-section-title {
        padding-top: 44px;
        padding-bottom: 24px;
    }
    .limited-grid-wrap {
        padding-bottom: 56px;
    }

    /* Story */
    .story-body {
        padding: 48px 28px;
    }
    .story-p {
        font-size: 16px;
        line-height: 1.9;
    }
    .values-grid {
        grid-template-columns: 1fr;
        margin: 48px -28px;
    }

    /* Contact */
    .contact-wrap {
        grid-template-columns: 1fr;
    }
    .contact-left {
        padding: 52px 24px;
        border-right: none;
        border-bottom: 1px solid var(--border);
    }
    .contact-right {
        padding: 52px 24px;
    }
    .form-row {
        grid-template-columns: 1fr;
    }

    /* Cart */
    .cart-head {
        padding: 72px 24px 24px;
    }
    .cart-empty {
        padding: 72px 24px;
    }
    .cart-main {
        grid-template-columns: 1fr;
        padding: 0 24px 52px;
    }
    .cart-items {
        padding-right: 0;
        border-right: none;
        border-bottom: 1px solid var(--border);
        padding-bottom: 32px;
        margin-bottom: 32px;
    }
    .cart-summary {
        padding: 0;
        position: static;
    }
    .cart-row {
        grid-template-columns: 60px 1fr;
    }
    .cart-row-controls {
        grid-column: 1/-1;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding-top: 12px;
        border-top: 1px solid var(--border);
    }
    .cart-row-name {
        font-size: 15px;
    }
    .cart-sum-total {
        font-size: 22px;
    }

    /* Article */
    .article-hero {
        padding: 72px 24px 44px;
    }
    .article-layout {
        grid-template-columns: 1fr;
        padding: 48px 24px;
    }
    .article-sidebar {
        border-left: none;
        border-top: 1px solid var(--border);
        padding-left: 0;
        padding-top: 40px;
        position: static;
        margin-top: 40px;
    }
    .article-meta-row {
        flex-wrap: wrap;
        gap: 10px;
    }
    .article-body p {
        font-size: 16px;
        line-height: 2;
    }

    /* Legal */
    .legal-wrap {
        padding: 52px 22px;
    }
    .legal-table th {
        width: 110px;
    }

    /* Auth / Account */
    .account-wrap {
        padding: 80px 24px 56px;
    }
    .account-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }
    .profile-grid {
        grid-template-columns: 1fr;
    }
    .checkout-wrap {
        padding: 80px 24px 56px;
    }
    .checkout-grid {
        grid-template-columns: 1fr;
    }
    .checkout-summary {
        position: static;
    }
    .checkout-steps {
        gap: 0;
        overflow-x: auto;
    }
    .checkout-step-line {
        max-width: 40px;
    }

    /* Footer */
    footer {
        padding: 48px 24px 24px;
    }
    .ft-top {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }
    .ft-btm {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    .ft-links a {
        font-size: 14px;
    }
}

/* ── 600px SMALL MOBILE ──────────────────────────── */
@media(max-width:600px) {
    /* Header */
    #hdr {
        padding: 0 16px;
    }
    .hdr-right {
        gap: 12px;
    }
    .hdr-logo {
        font-size: 18px;
        letter-spacing: 5px;
    }

    /* Hero */
    .hero-strip {
        display: none;
    }
    .hero-display {
        padding: 116px 18px 64px;
    }
    .hero-bottom {
        padding-left: 18px;
        padding-right: 18px;
    }
    .hw-simply {
        font-size: clamp(52px, 16vw, 88px);
    }
    .hw-your {
        font-size: clamp(40px, 12vw, 66px);
    }
    .hw-self {
        font-size: clamp(52px, 16vw, 90px);
    }

    /* Manifesto */
    .manifesto-item {
        padding: 36px 18px 32px;
    }
    .mani-title {
        font-size: clamp(24px, 7vw, 38px);
    }
    .mani-text {
        font-size: 14px;
    }
    .manifesto-item:last-child {
        padding: 36px 18px 32px;
    }

    /* Sections */
    .sec {
        padding: 44px 18px;
    }
    .sec-hdr {
        margin-bottom: 28px;
    }
    .sec-title {
        font-size: clamp(32px, 10vw, 48px);
    }

    /* Products: 1 column */
    .prod-grid {
        grid-template-columns: 1fr;
    }
    .prod-name {
        font-size: 22px;
    }
    .prod-price {
        font-size: 22px;
    }

    /* Quote */
    .quote-sec {
        padding: 36px 16px;
    }
    .quote-frame {
        padding: 28px 18px;
    }
    .quote-text {
        font-size: clamp(16px, 4.5vw, 22px);
    }
    .quote-mark {
        font-size: 56px;
    }

    /* Concept */
    .concept-stats {
        flex-direction: column;
        gap: 16px;
    }

    /* Arrivals */
    .arrivals-sec {
        padding: 36px 0;
    }
    .arrivals-hdr {
        padding: 0 18px 22px;
    }

    /* News index */
    .news-sec {
        padding: 40px 18px;
    }
    .index-news-card {
        padding: 24px 18px;
    }
    .index-news-h {
        font-size: 24px;
    }

    /* Collection */
    .coll-header {
        padding: 60px 18px 24px;
    }
    .coll-cats {
        padding-left: 12px;
    }
    .filter-btn {
        padding: 12px 14px;
        font-size: 8px;
        letter-spacing: 2px;
    }
    .coll-search, .lim-search {
        padding: 18px 18px 22px;
    }

    /* Detail */
    .detail-panel {
        padding: 28px 18px;
    }
    .szbtn {
        width: 40px;
        height: 40px;
        font-size: 10px;
    }

    /* Story */
    .story-body {
        padding: 40px 18px;
    }
    .values-grid {
        margin: 36px -18px;
    }

    /* Limited */
    .limited-hero-bar {
        padding-left: 18px;
        padding-right: 18px;
        gap: 12px;
    }
    .countdown-num {
        font-size: 24px;
    }
    .limited-banner {
        padding-left: 18px;
        padding-right: 18px;
    }
    .limited-section-title, .limited-grid-wrap {
        padding-left: 18px;
        padding-right: 18px;
    }
    .limited-banner-title {
        font-size: clamp(40px, 13vw, 60px);
    }
    .limited-discount-big {
        font-size: clamp(40px, 13vw, 60px);
    }

    /* Contact */
    .contact-left, .contact-right {
        padding: 44px 18px;
    }

    /* Cart */
    .cart-head {
        padding: 60px 18px 20px;
    }
    .cart-main {
        padding: 0 18px 36px;
    }
    .qty-btn {
        width: 36px;
        height: 36px;
    }

    /* Article */
    .article-hero {
        padding: 60px 18px 40px;
    }
    .article-layout {
        padding: 36px 18px;
    }

    /* Legal */
    .legal-wrap {
        padding: 48px 16px;
    }
    .legal-table {
        display: block;
        overflow-x: auto;
    }
    .legal-table th {
        width: 90px;
        font-size: 9px;
    }

    /* Auth / Account */
    .auth-wrap {
        padding: 80px 18px 48px;
    }
    .account-wrap {
        padding: 72px 18px 48px;
    }
    .account-tabs {
        gap: 0;
    }
    .account-tab {
        padding: 12px 14px;
        font-size: 8px;
        letter-spacing: 2px;
    }
    .order-card-head {
        padding: 18px 20px;
        flex-wrap: wrap;
        gap: 8px;
    }
    .order-card-body {
        padding: 0 20px 16px;
    }

    /* Checkout */
    .checkout-wrap {
        padding: 72px 18px 48px;
    }
    .checkout-steps {
        flex-wrap: nowrap;
        font-size: 0;
    }
    .checkout-step span:last-child {
        display: none;
    }
    .checkout-step-line {
        max-width: 24px;
    }

    /* Page hero */
    .page-hero {
        padding: 60px 18px 36px;
    }

    /* Footer */
    footer {
        padding: 40px 18px 20px;
    }
    .ft-top {
        grid-template-columns: 1fr;
    }
    .ft-btm {
        padding-top: 20px;
    }
    .ft-legal {
        display: none;
    }
    .ft-tagline {
        font-size: 13px;
    }
}