/* ===== Reset & Vars ===== */
:root {
    --bg: #F5F0E8;
    --bg2: #EDE8DE;
    --card: #FFFFFF;
    --text: #1a1a2e;
    --sub: #6b7280;
    --muted: #9ca3af;
    --accent: #4834d4;
    --red: #e74c3c;
    --green: #00B894;
    --yellow: #FDCB6E;
    --border: #e0dbd2;
    --radius: 16px;
    --radius-sm: 10px;
    --shadow: 0 4px 24px rgba(0,0,0,0.06);
    --shadow-lg: 0 16px 48px rgba(0,0,0,0.1);
    --font: 'Outfit', sans-serif;
    --serif: 'Instrument Serif', Georgia, serif;
    --mono: 'Space Grotesk', monospace;
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    cursor: none;
    -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== Custom Cursor ===== */
.custom-cursor {
    position: fixed;
    width: 24px;
    height: 24px;
    pointer-events: none;
    z-index: 9999;
    color: var(--accent);
    transition: transform 0.1s, opacity 0.2s;
    transform: translate(-50%, -50%);
    mix-blend-mode: difference;
}
body:not(:hover) .custom-cursor { opacity: 0; }

@media (max-width: 768px) {
    body { cursor: auto; }
    .custom-cursor { display: none; }
    button { cursor: pointer; }
}

/* ========= Snoopy Mascot v3 (clean + chat) ========= */
.snoopy-mascot {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 998;
    user-select: none;
}
.snoopy-wrapper {
    width: 96px;
    height: 104px;
    cursor: pointer;
    filter: drop-shadow(0 10px 22px rgba(0,0,0,0.16));
    animation: snoopy-idle 3s ease-in-out infinite;
    transition: transform .35s cubic-bezier(.34, 1.56, .64, 1);
    position: relative;
    z-index: 2;
}
.snoopy-mascot:hover .snoopy-wrapper { transform: scale(1.1) translateY(-3px); }
.snoopy-mascot.bounce .snoopy-wrapper { animation: snoopy-bounce .65s cubic-bezier(.34, 1.56, .64, 1); }
.snoopy-mascot.dancing .snoopy-wrapper { animation: snoopy-dance .55s ease-in-out infinite; }
.snoopy-svg { width: 100%; height: 100%; overflow: visible; }

@keyframes snoopy-idle {
    0%, 100% { transform: translateY(0) rotate(-1deg); }
    50% { transform: translateY(-6px) rotate(1.5deg); }
}
@keyframes snoopy-bounce {
    0%, 100% { transform: translateY(0) scale(1.08); }
    30% { transform: translateY(-22px) scale(1.18); }
    60% { transform: translateY(-6px) scale(1.05); }
}
@keyframes snoopy-dance {
    0% { transform: translateX(-6px) rotate(-10deg) scale(1.05); }
    50% { transform: translateY(-10px) rotate(10deg) scale(1.12); }
    100% { transform: translateX(6px) rotate(-10deg) scale(1.05); }
}

/* speech bubble (quick) */
.snoopy-bubble {
    position: absolute;
    bottom: 112px;
    right: 0;
    background: #fff;
    padding: 10px 16px;
    border-radius: 16px 16px 4px 16px;
    box-shadow: 0 8px 22px rgba(0,0,0,.14);
    font-size: .78rem;
    font-weight: 700;
    max-width: 220px;
    opacity: 0;
    transform: translateY(10px) scale(.85);
    transition: all .35s cubic-bezier(.34, 1.56, .64, 1);
    pointer-events: none;
    border: 2px solid var(--text);
    color: var(--text);
    z-index: 3;
}
.snoopy-bubble.show { opacity: 1; transform: translateY(0) scale(1); }
.snoopy-bubble::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 22px;
    width: 14px;
    height: 14px;
    background: #fff;
    border-right: 2px solid var(--text);
    border-bottom: 2px solid var(--text);
    transform: rotate(45deg);
}

/* SVG animations */
.sn-tail { transform-origin: 55px 152px; animation: tail-wag .75s ease-in-out infinite; }
.snoopy-mascot:hover .sn-tail { animation: tail-wag-fast .28s ease-in-out infinite; }
@keyframes tail-wag { 0%,100% { transform: rotate(-10deg); } 50% { transform: rotate(14deg); } }
@keyframes tail-wag-fast { 0%,100% { transform: rotate(-20deg); } 50% { transform: rotate(24deg); } }

.sn-ear-l { transform-origin: 64px 80px; animation: ear-wiggle 2.6s ease-in-out infinite alternate; }
.sn-ear-r { transform-origin: 136px 78px; animation: ear-wiggle 2.9s ease-in-out infinite alternate reverse; }
@keyframes ear-wiggle { 0% { transform: rotate(-2deg); } 100% { transform: rotate(4deg); } }

.sn-head { transition: transform .2s cubic-bezier(.25,.8,.25,1); transform-origin: 100px 110px; }

.sn-arm-r { transform-origin: 142px 168px; }
.snoopy-mascot:hover .sn-arm-r { animation: sn-arm-wave .45s ease-in-out infinite alternate; }
@keyframes sn-arm-wave {
    0% { transform: rotate(18deg); }
    100% { transform: rotate(-48deg) translate(-4px, -12px); }
}

.sn-cheek { animation: cheek-pulse 2.2s ease-in-out infinite; }
@keyframes cheek-pulse { 0%,100% { opacity: .7; } 50% { opacity: 1; } }

.sn-sparkle, .sn-sparkle-sm { animation: sparkle-twinkle 2.6s ease-in-out infinite; }
@keyframes sparkle-twinkle { 0%,100% { opacity: 1; } 50% { opacity: .45; } }

.sn-notif { animation: sn-notif-pulse 1.2s ease-in-out infinite; }
@keyframes sn-notif-pulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.15); } }

/* heart particles */
.snoopy-heart-pop {
    position: fixed;
    font-size: 24px;
    pointer-events: none;
    z-index: 10000;
    animation: heart-pop 1.6s ease-out forwards;
    will-change: transform;
    transform: translate(-50%, -50%);
}
@keyframes heart-pop {
    0% { transform: translate(-50%, -50%) scale(.2); opacity: 0; }
    20% { transform: translate(-50%, -50%) scale(1.5); opacity: 1; }
    100% {
        transform: translate(calc(-50% + var(--dx,0px)), calc(-50% + var(--dy,-100px))) scale(.5) rotate(var(--r,0deg));
        opacity: 0;
    }
}

/* confetti */
.snoopy-confetti {
    position: fixed;
    width: 10px;
    height: 14px;
    border-radius: 2px;
    pointer-events: none;
    z-index: 10001;
    animation: snc-confetti 2s cubic-bezier(.25,1,.5,1) forwards;
}
@keyframes snc-confetti {
    to { transform: translate(var(--dx), var(--dy)) rotate(var(--r)); opacity: 0; }
}

/* quick hover menu */
.snoopy-quick-menu {
    position: absolute;
    top: 4px;
    right: 100%;
    margin-right: 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    transform: translateX(14px) scale(.6);
    transform-origin: right center;
    transition: all .35s cubic-bezier(.34, 1.56, .64, 1);
    pointer-events: none;
}
.snoopy-mascot:hover .snoopy-quick-menu {
    opacity: 1;
    transform: translateX(0) scale(1);
    pointer-events: auto;
}
.sqm-item {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: #fff;
    border: 2.4px solid var(--text);
    display: flex; align-items: center; justify-content: center;
    text-decoration: none;
    color: var(--text);
    font-size: 14px; font-weight: 900;
    font-family: var(--font);
    cursor: pointer;
    box-shadow: 3px 3px 0 var(--text);
    transition: all .22s cubic-bezier(.34, 1.56, .64, 1);
    position: relative;
}
.sqm-item:hover {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
    transform: scale(1.15) translateX(-3px);
    box-shadow: 2px 2px 0 var(--accent);
}
.sqm-item[data-label]::after {
    content: attr(data-label);
    position: absolute;
    right: calc(100% + 10px);
    top: 50%;
    transform: translateY(-50%) translateX(8px);
    background: var(--text);
    color: var(--bg);
    padding: 5px 9px;
    border-radius: 100px;
    font-family: var(--mono);
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all .2s ease;
}
.sqm-item:hover::after { opacity: 1; transform: translateY(-50%) translateX(0); }

.sqm-chat {
    background: var(--accent); color: #fff; border-color: var(--accent);
    box-shadow: 3px 3px 0 #2a1d8d;
    animation: sqm-chat-pulse 2s ease-in-out infinite;
}
.sqm-chat:hover { background: #fff; color: var(--accent); }
@keyframes sqm-chat-pulse {
    0%,100% { box-shadow: 3px 3px 0 #2a1d8d, 0 0 0 0 rgba(72,52,212,.35); }
    50% { box-shadow: 3px 3px 0 #2a1d8d, 0 0 0 8px rgba(72,52,212,0); }
}

.sqm-sale {
    background: var(--red); color: #fff; border-color: var(--red);
    box-shadow: 3px 3px 0 #a33226;
    animation: sqm-sale-pulse 1.4s ease-in-out infinite;
}
.sqm-sale:hover { background: var(--yellow); border-color: var(--text); color: var(--text); box-shadow: 2px 2px 0 var(--text); }
@keyframes sqm-sale-pulse {
    0%,100% { box-shadow: 3px 3px 0 #a33226, 0 0 0 0 rgba(231,76,60,.4); }
    50% { box-shadow: 3px 3px 0 #a33226, 0 0 0 10px rgba(231,76,60,0); }
}

/* floating sale tag */
.snoopy-sale-tag {
    position: absolute;
    top: -18px;
    right: -22px;
    background: var(--yellow);
    color: var(--text);
    padding: 7px 12px;
    border-radius: 100px;
    border: 2px solid var(--text);
    box-shadow: 3px 4px 0 var(--text);
    font-family: var(--font);
    font-weight: 900;
    cursor: pointer;
    transform: rotate(10deg);
    transition: all .3s ease;
    animation: sale-tag-float 2.4s ease-in-out infinite;
    z-index: 4;
    display: flex; flex-direction: column;
    line-height: 1; text-align: center;
}
.sst-title { font-size: 13px; letter-spacing: -0.3px; }
.sst-sub { font-family: var(--mono); font-size: 7px; letter-spacing: 1.2px; opacity: .75; margin-top: 2px; }
.snoopy-sale-tag:hover {
    transform: rotate(-3deg) scale(1.12);
    background: var(--red); color: #fff;
    box-shadow: 4px 5px 0 var(--text);
}
@keyframes sale-tag-float {
    0%,100% { transform: rotate(10deg) translateY(0); }
    50% { transform: rotate(8deg) translateY(-6px); }
}

/* ========= CHAT PANEL ========= */
.snoopy-chat {
    position: absolute;
    bottom: 120px;
    right: 0;
    width: 360px;
    height: 520px;
    max-height: 80vh;
    background: #fff;
    border: 2.4px solid var(--text);
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0,0,0,.22), 6px 6px 0 var(--text);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px) scale(.92);
    transform-origin: bottom right;
    transition: all .42s cubic-bezier(.34, 1.56, .64, 1);
    pointer-events: none;
    z-index: 5;
}
.snoopy-chat.open { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }

.snc-header {
    display: flex; align-items: center; gap: 12px;
    padding: 14px 16px;
    background: var(--text); color: #fff;
    border-bottom: 2px solid var(--text);
}
.snc-avatar {
    position: relative;
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--bg);
    border: 2px solid #fff;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.snc-avatar svg { border-radius: 50%; }
.snc-online {
    position: absolute;
    bottom: -2px; right: -2px;
    width: 12px; height: 12px;
    background: var(--green);
    border: 2px solid var(--text);
    border-radius: 50%;
}
.snc-headinfo { flex: 1; min-width: 0; }
.snc-name {
    font-weight: 900;
    font-size: 15px;
    display: flex; align-items: center; gap: 6px;
    font-family: var(--font);
}
.snc-badge {
    font-family: var(--mono);
    font-size: 9px;
    background: var(--accent);
    padding: 2px 6px;
    border-radius: 8px;
    font-weight: 700;
    letter-spacing: 1px;
}
.snc-status {
    font-family: var(--mono);
    font-size: 10px;
    opacity: .75;
    display: flex; align-items: center; gap: 6px;
    margin-top: 2px;
    letter-spacing: .5px;
}
.snc-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--green);
    animation: snc-dot-pulse 1.5s ease-in-out infinite;
}
@keyframes snc-dot-pulse { 0%,100% { opacity: 1; } 50% { opacity: .4; } }
.snc-min {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,.1);
    border: none;
    color: #fff;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background .2s;
}
.snc-min:hover { background: rgba(255,255,255,.25); }

.snc-messages {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
    background: var(--bg);
    display: flex; flex-direction: column; gap: 10px;
    scroll-behavior: smooth;
}
.snc-messages::-webkit-scrollbar { width: 6px; }
.snc-messages::-webkit-scrollbar-thumb { background: var(--border); border-radius: 100px; }

.snc-msg {
    display: flex;
    animation: snc-msg-in .3s cubic-bezier(.34, 1.56, .64, 1);
    max-width: 85%;
}
.snc-msg-bot { align-self: flex-start; }
.snc-msg-user { align-self: flex-end; }
@keyframes snc-msg-in {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}
.snc-bubble {
    padding: 10px 14px;
    border-radius: 16px;
    font-size: 13.5px;
    line-height: 1.5;
    word-wrap: break-word;
}
.snc-msg-bot .snc-bubble {
    background: #fff;
    color: var(--text);
    border: 1.5px solid var(--border);
    border-bottom-left-radius: 4px;
}
.snc-msg-user .snc-bubble {
    background: var(--accent);
    color: #fff;
    border-bottom-right-radius: 4px;
}
.snc-msg-bot .snc-bubble a { color: var(--accent); font-weight: 700; text-decoration: underline; }
.snc-msg-bot .snc-bubble b { font-weight: 900; }

/* typing indicator */
.snc-typing .snc-bubble { display: flex; gap: 4px; padding: 12px 14px; }
.snc-typing .snc-bubble span {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--muted);
    animation: snc-typing-dot 1.2s ease-in-out infinite;
}
.snc-typing .snc-bubble span:nth-child(2) { animation-delay: .15s; }
.snc-typing .snc-bubble span:nth-child(3) { animation-delay: .3s; }
@keyframes snc-typing-dot {
    0%, 60%, 100% { transform: translateY(0); opacity: .4; }
    30% { transform: translateY(-5px); opacity: 1; }
}

/* product cards in chat */
.snc-msg-cards { flex-wrap: wrap; gap: 8px; max-width: 100%; display: flex !important; flex-direction: column; }
.snc-pc {
    display: flex; gap: 12px; align-items: center;
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 14px;
    padding: 10px;
    cursor: pointer;
    transition: all .2s;
}
.snc-pc:hover {
    border-color: var(--accent);
    transform: translateX(3px);
    box-shadow: 3px 3px 0 var(--accent);
}
.snc-pc-img {
    width: 56px; height: 56px;
    border-radius: 10px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}
.snc-pc-tag {
    position: absolute;
    top: 4px; left: 4px;
    background: var(--text); color: #fff;
    font-family: var(--mono);
    font-size: 7px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 2px 5px;
    border-radius: 6px;
    text-transform: uppercase;
}
.snc-pc-body { flex: 1; min-width: 0; }
.snc-pc-name {
    font-weight: 800;
    font-size: 13px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.snc-pc-price {
    font-family: var(--mono);
    font-weight: 700;
    font-size: 12px;
    color: var(--accent);
    margin-top: 3px;
}

/* quick chips */
.snc-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding: 10px 16px 0;
    background: var(--bg);
    max-height: 80px;
    overflow-y: auto;
}
.snc-chip {
    background: #fff;
    border: 1.5px solid var(--text);
    color: var(--text);
    padding: 6px 12px;
    border-radius: 100px;
    font-family: var(--mono);
    font-size: 10.5px;
    font-weight: 700;
    cursor: pointer;
    transition: all .2s;
    letter-spacing: .3px;
    white-space: nowrap;
}
.snc-chip:hover {
    background: var(--text);
    color: var(--bg);
    transform: translateY(-2px);
}

/* input */
.snc-input {
    display: flex;
    gap: 8px;
    padding: 12px 16px 14px;
    background: var(--bg);
    border-top: 1.5px solid var(--border);
}
.snc-input input {
    flex: 1;
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 100px;
    padding: 10px 16px;
    font-family: var(--font);
    font-size: 13px;
    color: var(--text);
    outline: none;
    transition: border-color .2s;
    cursor: text;
}
.snc-input input:focus { border-color: var(--accent); }
.snc-input input::placeholder { color: var(--muted); }
.snc-send {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    border: none;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: all .2s;
    flex-shrink: 0;
}
.snc-send:hover { background: var(--text); transform: scale(1.08); }

/* hide obsolete legacy styles */
#snoopyTail, #snoopyArm { display: none; }

/* ======= Chat mobile ======= */
@media (max-width: 600px) {
    .snoopy-chat {
        position: fixed;
        bottom: 10px;
        right: 10px;
        left: 10px;
        width: auto;
        height: calc(100vh - 100px);
        max-height: 600px;
        border-radius: 20px;
    }
}

/* ===== Navbar ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 16px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 10px 0;
    background: rgba(245, 240, 232, 0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-size: 1.6rem;
    font-weight: 900;
    letter-spacing: -0.04em;
    z-index: 101;
}

.nav-logo span { color: var(--accent); }

.nav-links {
    display: flex;
    gap: 6px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-link {
    padding: 8px 18px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--sub);
    border-radius: 100px;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: var(--mono);
}

.nav-link:hover, .nav-link.active { color: var(--text); background: rgba(0,0,0,0.04); }

.nav-right { display: flex; align-items: center; gap: 12px; z-index: 101; }

.cart-btn {
    padding: 10px 22px;
    background: var(--text);
    color: var(--bg);
    border: none;
    border-radius: 100px;
    font-family: var(--mono);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    transition: var(--transition);
}

.cart-btn:hover { background: var(--accent); transform: translateY(-1px); }

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    padding: 4px;
    z-index: 101;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    transition: var(--transition);
}

.mobile-toggle.active span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
.mobile-toggle.active span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }

/* ===== Buttons ===== */
.btn-main {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 36px;
    background: var(--text);
    color: var(--bg);
    border-radius: 100px;
    font-family: var(--mono);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    border: none;
    transition: var(--transition);
    text-transform: uppercase;
}

.btn-main:hover {
    background: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(72,52,212,0.3);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 36px;
    background: transparent;
    color: var(--text);
    border: 2px solid var(--text);
    border-radius: 100px;
    font-family: var(--mono);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    transition: var(--transition);
    text-transform: uppercase;
}

.btn-outline:hover {
    background: var(--text);
    color: var(--bg);
    transform: translateY(-2px);
}

/* ===== Hero ===== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 100px 24px 60px;
}

.hero-marquee-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    opacity: 0.04;
    z-index: 0;
}

.hero-marquee-track {
    display: flex;
    gap: 40px;
    white-space: nowrap;
    animation: hero-marquee 10s linear infinite;
    position: absolute;
    top: 50%;
    transform: translateY(-50%) rotate(-5deg);
}

.hero-marquee-track span {
    font-size: 15vw;
    font-weight: 900;
    letter-spacing: -0.05em;
}

@keyframes hero-marquee {
    0% { transform: translateY(-50%) rotate(-5deg) translateX(0); }
    100% { transform: translateY(-50%) rotate(-5deg) translateX(-50%); }
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 22px;
    background: rgba(72,52,212,0.08);
    border: 1px solid rgba(72,52,212,0.15);
    border-radius: 100px;
    font-family: var(--mono);
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 32px;
}

.dot-pulse {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(1.3); }
}

.hero-title { margin-bottom: 28px; }

.ht-line {
    display: block;
    font-size: clamp(3.5rem, 10vw, 7rem);
    line-height: 0.95;
    letter-spacing: -0.05em;
    font-weight: 900;
}

.ht-line.italic {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
    color: var(--sub);
}

.ht-line.bold { font-weight: 900; }

.title-dot { color: var(--accent); }

.hero-sub {
    font-size: 1.1rem;
    color: var(--sub);
    line-height: 1.7;
    margin-bottom: 40px;
    font-family: var(--mono);
}

.hero-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-snoopy-scene {
    display: flex;
    justify-content: center;
}

.snoopy-hero { width: 280px; }
.snoopy-hero-svg { width: 100%; }

.zzz { animation: zzz-float 2s ease-in-out infinite; }
.zzz.z2 { animation-delay: 0.4s; }
.zzz.z3 { animation-delay: 0.8s; }

@keyframes zzz-float {
    0%, 100% { opacity: 0.3; transform: translateY(0); }
    50% { opacity: 1; transform: translateY(-6px); }
}

.scroll-down {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.scroll-down span {
    font-family: var(--mono);
    font-size: 0.65rem;
    letter-spacing: 3px;
    color: var(--muted);
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: var(--border);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 50%;
    background: var(--accent);
    animation: scroll-line-anim 2s infinite;
}

@keyframes scroll-line-anim {
    0% { top: -50%; }
    100% { top: 150%; }
}

/* ===== Marquee Strip ===== */
.marquee-strip {
    background: var(--text);
    padding: 14px 0;
    overflow: hidden;
}

.marquee-inner {
    display: flex;
    gap: 40px;
    animation: marquee 18s linear infinite;
    width: max-content;
}

.marquee-inner span {
    font-family: var(--mono);
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--bg);
    letter-spacing: 3px;
    text-transform: uppercase;
    white-space: nowrap;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===== Section Head ===== */
.section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 48px;
    flex-wrap: wrap;
    gap: 24px;
}

.sh-tag {
    display: inline-block;
    font-family: var(--mono);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent);
    margin-bottom: 8px;
}

.sh-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.sh-title em {
    font-family: var(--serif);
    font-weight: 400;
}

.sh-tabs {
    display: flex;
    gap: 6px;
}

.tab {
    padding: 10px 22px;
    border-radius: 100px;
    font-family: var(--mono);
    font-size: 0.8rem;
    font-weight: 600;
    border: 1.5px solid var(--border);
    background: transparent;
    color: var(--sub);
    transition: var(--transition);
    letter-spacing: 0.5px;
}

.tab:hover { border-color: var(--text); color: var(--text); }
.tab.active { background: var(--text); color: var(--bg); border-color: var(--text); }

/* ===== Products ===== */
.drops-section { padding: 100px 0; }

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.product-card {
    background: var(--card);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid transparent;
    transition: var(--transition);
}

.product-card:hover {
    border-color: var(--border);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.pc-media { position: relative; overflow: hidden; }

.pc-visual {
    background: var(--bg);
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.product-card:hover .pc-visual { transform: scale(1.02); }

/* Clothing 3D Displays */
.pc-cloth { perspective: 600px; }

/* Photo product support */
.pc-photo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: inherit;
    transition: transform .4s ease;
}
.product-card:hover .pc-photo-img { transform: scale(1.06); }
.pc-cloth:has(.pc-photo-img) { perspective: none; overflow: hidden; width: 100%; height: 100%; }

/* Tee */
.tee-3d {
    position: relative;
    transition: transform 0.6s;
}

.product-card:hover .tee-3d { transform: rotateY(6deg) rotateX(-2deg); }

.tee-body {
    width: 120px;
    height: 130px;
    background: var(--color);
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    box-shadow: 8px 8px 0 rgba(0,0,0,0.08);
    position: relative;
    transition: var(--transition);
}

.product-card:hover .tee-body { box-shadow: 12px 12px 0 rgba(0,0,0,0.12); }

.tee-body span {
    color: rgba(255,255,255,0.4);
    font-weight: 900;
    font-size: 1.4rem;
    letter-spacing: 2px;
}

.tee-snoopy-mini { font-size: 1.5rem; margin-top: -4px; }

.tee-collar {
    width: 36px;
    height: 8px;
    background: var(--color);
    border-radius: 0 0 50% 50%;
    margin: 0 auto;
    filter: brightness(1.2);
}

.tee-sleeve {
    position: absolute;
    width: 30px;
    height: 35px;
    background: var(--color);
    top: 0;
    border-radius: 4px;
    filter: brightness(0.95);
}

.tee-sleeve.left { left: -24px; transform: rotate(15deg); }
.tee-sleeve.right { right: -24px; transform: rotate(-15deg); }

/* Hoodie */
.hoodie-3d {
    position: relative;
    transition: transform 0.6s;
}

.product-card:hover .hoodie-3d { transform: rotateY(6deg); }

.hoodie-body-shape {
    width: 130px;
    height: 140px;
    background: var(--color);
    border-radius: 10px 10px 6px 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 8px 8px 0 rgba(0,0,0,0.08);
    transition: var(--transition);
}

.product-card:hover .hoodie-body-shape { box-shadow: 12px 12px 0 rgba(0,0,0,0.12); }

.hoodie-body-shape span {
    color: rgba(255,255,255,0.4);
    font-weight: 900;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.hoodie-hood-shape {
    width: 65px;
    height: 26px;
    background: var(--color);
    border-radius: 50% 50% 0 0;
    margin: 0 auto;
    filter: brightness(1.15);
}

.hoodie-pocket {
    width: 60px;
    height: 20px;
    border: 2px solid rgba(255,255,255,0.15);
    border-radius: 0 0 8px 8px;
    margin: -25px auto 0;
    border-top: none;
}

/* Pants */
.pants-3d { position: relative; transition: transform 0.6s; }
.product-card:hover .pants-3d { transform: rotateY(6deg); }

.pants-waist {
    width: 110px;
    height: 14px;
    background: var(--color);
    border-radius: 4px 4px 0 0;
    margin: 0 auto;
    filter: brightness(1.1);
}

.pants-body-shape {
    display: flex;
    gap: 4px;
    justify-content: center;
}

.pants-leg {
    width: 48px;
    height: 130px;
    background: var(--color);
    border-radius: 0 0 4px 4px;
    box-shadow: 6px 6px 0 rgba(0,0,0,0.08);
}

/* Cap */
.cap-3d { position: relative; transition: transform 0.6s; }
.product-card:hover .cap-3d { transform: rotateY(8deg) rotateX(-4deg); }

.cap-crown {
    width: 100px;
    height: 55px;
    background: var(--color);
    border-radius: 50% 50% 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
    font-weight: 900;
    font-size: 1.8rem;
    box-shadow: 6px 6px 0 rgba(0,0,0,0.08);
}

.cap-brim-shape {
    width: 120px;
    height: 18px;
    background: var(--color);
    border-radius: 0 0 50% 50%;
    margin: 0 auto;
    filter: brightness(0.85);
}

/* Product Tags */
.pc-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 5px 14px;
    border-radius: 100px;
    font-family: var(--mono);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 1px;
    background: var(--accent);
    color: white;
}

.pc-tag.hot { background: var(--red); }
.pc-tag.limited { background: var(--text); }
.pc-tag.new { background: var(--green); }

.pc-hover-actions {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    opacity: 0;
    transform: translateX(8px);
    transition: var(--transition);
}

.product-card:hover .pc-hover-actions { opacity: 1; transform: translateX(0); }

.pc-action-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border: none;
    border-radius: 50%;
    font-size: 1rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.pc-action-btn:hover { transform: scale(1.15); background: var(--red); color: white; }

.pc-details { padding: 18px 20px 20px; }

.pc-colors-row { display: flex; gap: 6px; margin-bottom: 10px; }

.pc-dot {
    width: 14px;
    height: 14px;
    background: var(--c);
    border-radius: 50%;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
}

.pc-dot.active { border-color: var(--text); transform: scale(1.2); }
.pc-dot:hover { transform: scale(1.25); }

.pc-details h3 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.pc-details p {
    font-size: 0.78rem;
    color: var(--muted);
    margin-bottom: 12px;
    font-family: var(--mono);
}

.pc-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pc-price strong { font-size: 1rem; font-weight: 800; }
.pc-price s { font-size: 0.8rem; color: var(--muted); margin-left: 6px; }

.add-btn {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--text);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    font-weight: 700;
    transition: var(--bounce);
}

.add-btn:hover { background: var(--accent); transform: scale(1.15) rotate(90deg); }
.add-btn.added { background: var(--green); }

.drops-cta { text-align: center; margin-top: 48px; }

/* Feature Card (first product bigger) */
.pc-feature { grid-row: span 1; }

/* ===== Lookbook Editorial ===== */
.lookbook-section {
    padding: 100px 0;
    background: var(--bg2);
}

.lookbook-editorial {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: auto;
    gap: 16px;
}

.lb-card {
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
}

.lb-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.lb-card.lb-large { grid-row: span 2; }
.lb-card.lb-wide { grid-column: span 2; }

.lb-inner {
    background: var(--grad);
    width: 100%;
    height: 100%;
    min-height: 260px;
    display: flex;
    align-items: flex-end;
    padding: 28px;
    position: relative;
    overflow: hidden;
}

.lb-large .lb-inner { min-height: 540px; }

.lb-overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 6rem;
    font-weight: 900;
    color: rgba(255,255,255,0.08);
    letter-spacing: 0.1em;
    white-space: nowrap;
    pointer-events: none;
}

.lb-mannequin-scene {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -55%);
}

.lb-figure {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.fig-head {
    width: 24px;
    height: 24px;
    background: rgba(255,255,255,0.35);
    border-radius: 50%;
    margin-bottom: 3px;
}

.fig-body {
    width: 50px;
    height: 60px;
    background: var(--c);
    border-radius: 8px 8px 4px 4px;
    box-shadow: 4px 4px 0 rgba(0,0,0,0.12);
    margin-bottom: 2px;
}

.fig-legs {
    width: 46px;
    height: 70px;
    background: var(--c);
    border-radius: 4px;
    box-shadow: 4px 4px 0 rgba(0,0,0,0.12);
}

.fig-shoes {
    display: flex;
    gap: 8px;
    margin-top: 2px;
}

.fig-shoes::before, .fig-shoes::after {
    content: '';
    width: 18px;
    height: 8px;
    background: rgba(255,255,255,0.3);
    border-radius: 4px;
}

.lb-text { position: relative; z-index: 1; }

.lb-num {
    font-family: var(--mono);
    font-size: 0.72rem;
    font-weight: 700;
    color: rgba(255,255,255,0.5);
    letter-spacing: 2px;
    margin-bottom: 4px;
    display: block;
}

.lb-text h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    line-height: 1.15;
    margin-bottom: 4px;
}

.lb-text h3 em {
    font-family: var(--serif);
    font-weight: 400;
}

.lb-text p {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.65);
    font-family: var(--mono);
}

/* ===== About ===== */
.about-section { padding: 100px 0; }

.about-bigtext {
    margin-bottom: 64px;
}

.about-bigtext h2 {
    font-size: clamp(2rem, 5vw, 4rem);
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.abt-line {
    display: block;
    font-weight: 900;
}

.abt-line.italic {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
    color: var(--sub);
}

.abt-line.bold { color: var(--accent); }

.about-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.about-card {
    padding: 32px 24px;
    background: var(--card);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.about-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: transparent;
}

.ac-num {
    font-family: var(--mono);
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.about-card h3 {
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.about-card p {
    font-size: 0.85rem;
    color: var(--sub);
    line-height: 1.6;
}

/* ===== Reviews ===== */
.reviews-section {
    padding: 100px 0;
    background: var(--bg2);
    overflow: hidden;
}

.reviews-scroll { overflow: hidden; margin-top: -8px; }

.reviews-track {
    display: flex;
    gap: 16px;
    animation: reviews-slide 30s linear infinite;
    width: max-content;
}

.reviews-track:hover { animation-play-state: paused; }

.review-card {
    width: 340px;
    flex-shrink: 0;
    padding: 28px;
    background: var(--card);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.review-card:hover { border-color: transparent; box-shadow: var(--shadow); }

.rv-stars {
    color: var(--yellow);
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 14px;
}

.review-card p {
    font-size: 0.88rem;
    color: var(--sub);
    line-height: 1.7;
    margin-bottom: 18px;
}

.rv-author {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.rv-av {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
    color: white;
}

.rv-author strong { font-size: 0.88rem; }
.rv-author span { font-size: 0.75rem; color: var(--muted); display: block; }

.rv-product {
    font-family: var(--mono);
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 0.5px;
}

@keyframes reviews-slide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===== CTA ===== */
.cta-section { padding: 100px 0; }

.cta-box {
    background: var(--text);
    border-radius: var(--radius);
    padding: 64px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.cta-left h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: white;
    font-weight: 900;
    letter-spacing: -0.03em;
    margin-bottom: 12px;
}

.cta-left h2 em {
    font-family: var(--serif);
    font-weight: 400;
}

.cta-left p {
    color: rgba(255,255,255,0.6);
    margin-bottom: 28px;
    font-size: 1rem;
}

.cta-left strong { color: var(--yellow); }

.cta-form {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.cta-form input {
    flex: 1;
    padding: 14px 20px;
    border-radius: 100px;
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.08);
    color: white;
    font-family: var(--mono);
    font-size: 0.88rem;
    outline: none;
}

.cta-form input::placeholder { color: rgba(255,255,255,0.35); }
.cta-form input:focus { border-color: var(--accent); background: rgba(255,255,255,0.12); }

.cta-form .btn-main {
    background: var(--accent);
    color: white;
    flex-shrink: 0;
}

.cta-left small {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.3);
    font-family: var(--mono);
}

.cta-right { display: flex; justify-content: center; }

.cta-snoopy { width: 180px; filter: drop-shadow(0 8px 20px rgba(0,0,0,0.3)); }

.snoopy-heart { animation: heartbeat 1.5s ease-in-out infinite; transform-origin: 140px 62px; }

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    15% { transform: scale(1.2); }
    30% { transform: scale(1); }
    45% { transform: scale(1.15); }
}

/* ===== Footer ===== */
.footer {
    padding: 64px 0 0;
    border-top: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-logo { font-size: 1.8rem; }

.ft-brand p {
    font-size: 0.85rem;
    color: var(--sub);
    margin-top: 12px;
    max-width: 260px;
    line-height: 1.6;
}

.ft-socials {
    display: flex;
    gap: 8px;
    margin-top: 20px;
}

.ft-socials a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid var(--border);
    border-radius: 50%;
    font-family: var(--mono);
    font-size: 0.7rem;
    font-weight: 700;
    transition: var(--transition);
}

.ft-socials a:hover { background: var(--text); color: white; border-color: var(--text); }

.ft-links h4 {
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
    font-family: var(--mono);
}

.ft-links a {
    display: block;
    font-size: 0.85rem;
    color: var(--sub);
    margin-bottom: 10px;
    transition: var(--transition);
}

.ft-links a:hover { color: var(--accent); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-top: 1px solid var(--border);
    font-size: 0.78rem;
    color: var(--muted);
    font-family: var(--mono);
}

.ft-pay { display: flex; gap: 8px; }

.ft-pay span {
    padding: 4px 12px;
    background: var(--bg2);
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 600;
}

.footer-bigtext {
    font-size: clamp(6rem, 20vw, 14rem);
    font-weight: 900;
    color: var(--border);
    text-align: center;
    letter-spacing: -0.06em;
    line-height: 0.85;
    margin-top: -20px;
    pointer-events: none;
    user-select: none;
}

/* ===== Toast ===== */
.toast {
    position: fixed;
    bottom: 120px;
    right: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 22px;
    background: var(--card);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    transform: translateX(140%);
    transition: var(--bounce);
    font-size: 0.85rem;
}

.toast.show { transform: translateX(0); }

.toast-check {
    width: 32px;
    height: 32px;
    background: #d4edda;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
    font-weight: 800;
}

.toast span { font-size: 0.78rem; color: var(--sub); display: block; }

/* ===== Animations ===== */
[data-anim] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
}

[data-anim].visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: repeat(2, 1fr); }
    .lookbook-editorial { grid-template-columns: repeat(2, 1fr); }
    .lb-card.lb-large { grid-row: auto; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .cta-box { grid-template-columns: 1fr; text-align: center; }
    .cta-right { order: -1; }
    .cta-snoopy { width: 140px; }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        inset: 0;
        background: rgba(245,240,232,0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 8px;
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        z-index: 100;
        transform: none;
        left: 0;
    }

    .nav-links.active { opacity: 1; visibility: visible; }
    .nav-link { font-size: 1.2rem; }
    .mobile-toggle { display: flex; }

    .hero { padding: 120px 24px 80px; }
    .ht-line { font-size: clamp(2.5rem, 12vw, 4rem); }

    .products-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .about-grid { grid-template-columns: 1fr; }
    .lookbook-editorial { grid-template-columns: 1fr; }
    .lb-card.lb-wide { grid-column: auto; }

    .sh-tabs { flex-wrap: wrap; }
    .section-head { flex-direction: column; align-items: flex-start; }

    .footer-top { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    .ft-pay { flex-wrap: wrap; justify-content: center; }
    .cta-box { padding: 40px 24px; }
    .cta-form { flex-direction: column; }

    .snoopy-mascot { bottom: 12px; right: 12px; }
    .snoopy-wrapper { width: 60px; height: 66px; }
    .snoopy-bubble { display: none; }
    /* sale tag: move to left side so it doesn't overflow the right edge */
    .snoopy-sale-tag { right: auto; left: -54px; top: -14px; padding: 5px 9px; }
    .sst-title { font-size: 11px; }
    .snoopy-quick-menu { display: none; }

    .snoopy-hero { width: 200px; }
}


/* CLUBO_CAMPAIGN_CSS */
.ops-campaign {
    padding: 36px 0;
    background: #111;
    color: #fff;
    border-top: 1px solid rgba(255,255,255,.08);
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.ops-campaign-inner {
    display: grid;
    grid-template-columns: minmax(0,1.2fr) minmax(260px,.8fr);
    gap: 28px;
    align-items: center;
}
.ops-kicker {
    display: inline-flex;
    margin-bottom: 10px;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: #d8d8d8;
}
.ops-campaign h2 {
    font-size: clamp(2rem, 4vw, 4rem);
    line-height: .95;
    letter-spacing: -0.02em;
    max-width: 820px;
}
.ops-campaign p {
    margin-top: 14px;
    color: rgba(255,255,255,.72);
    max-width: 620px;
    font-size: 1rem;
    line-height: 1.65;
}
.ops-campaign-actions {
    display: grid;
    gap: 18px;
    justify-items: start;
}
.ops-points {
    display: grid;
    gap: 8px;
    width: 100%;
}
.ops-points span {
    display: block;
    padding: 10px 12px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 10px;
    color: rgba(255,255,255,.82);
    background: rgba(255,255,255,.04);
}
@media (max-width: 820px) {
    .ops-campaign-inner { grid-template-columns: 1fr; }
}

/* ===== Editorial Photo-Zine Vibe Refresh ===== */
:root {
    --bg: #f4efe4;
    --bg2: #e9dfd0;
    --card: rgba(255, 252, 242, 0.88);
    --text: #151426;
    --sub: #5f6474;
    --muted: #9a9288;
    --accent: #ed2f56;
    --red: #e33b30;
    --green: #16c083;
    --yellow: #f4df58;
    --cyan: #42d8cf;
    --ink: #11111f;
    --paper: #fff8e4;
    --border: rgba(21, 20, 38, 0.16);
    --radius: 28px;
    --radius-sm: 18px;
    --shadow: 0 12px 0 rgba(21, 20, 38, 0.08), 0 22px 60px rgba(21, 20, 38, 0.12);
    --shadow-lg: 0 18px 0 rgba(21, 20, 38, 0.1), 0 32px 80px rgba(21, 20, 38, 0.18);
}

body {
    background:
        radial-gradient(circle at 15% 8%, rgba(255, 106, 42, 0.22) 0 7%, transparent 18%),
        radial-gradient(circle at 87% 20%, rgba(66, 216, 207, 0.24) 0 6%, transparent 17%),
        radial-gradient(circle at 74% 80%, rgba(244, 223, 88, 0.28) 0 8%, transparent 19%),
        linear-gradient(135deg, #f8f1e6 0%, #eee2d2 45%, #f7f0df 100%);
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 9997;
    pointer-events: none;
    opacity: 0.16;
    mix-blend-mode: multiply;
    background-image:
        repeating-radial-gradient(circle at 20% 30%, rgba(0,0,0,.42) 0 1px, transparent 1px 5px),
        repeating-linear-gradient(90deg, rgba(255,255,255,.4) 0 1px, transparent 1px 4px);
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image:
        radial-gradient(circle, #11111f 0 5px, transparent 6px),
        radial-gradient(circle, #ed2f56 0 7px, transparent 8px),
        radial-gradient(circle, #42d8cf 0 6px, transparent 7px),
        radial-gradient(circle, #f4df58 0 7px, transparent 8px),
        radial-gradient(circle, #16c083 0 5px, transparent 6px);
    background-position: 8vw 22vh, 86vw 16vh, 16vw 68vh, 78vw 78vh, 50vw 42vh;
    background-size: 260px 260px, 340px 340px, 300px 300px, 360px 360px, 240px 240px;
    opacity: .18;
}

.navbar {
    padding: 20px 0;
}

.navbar.scrolled,
.nav-links.active {
    background: rgba(248, 241, 230, 0.88);
    border-bottom: 2px solid rgba(21,20,38,.1);
}

.nav-container {
    max-width: 1320px;
}

.nav-logo {
    font-size: clamp(1.7rem, 3vw, 2.7rem);
    letter-spacing: -0.08em;
    text-transform: uppercase;
}

.nav-logo span,
.title-dot {
    color: #4834d4;
}

.nav-link {
    color: var(--ink);
    background: rgba(255, 248, 228, 0.45);
    border: 1px solid rgba(21,20,38,.08);
}

.nav-link:hover,
.nav-link.active {
    color: var(--paper);
    background: var(--ink);
}

.cart-btn,
.btn-main {
    background: var(--ink);
    color: var(--paper);
    border: 2px solid var(--ink);
    box-shadow: 7px 7px 0 #f4df58;
}

.cart-btn:hover,
.btn-main:hover {
    background: #ed2f56;
    border-color: #ed2f56;
    box-shadow: 7px 7px 0 #42d8cf;
}

.btn-outline {
    background: rgba(255,248,228,.55);
    border: 2px solid var(--ink);
    box-shadow: 5px 5px 0 rgba(21,20,38,.12);
}

.btn-outline:hover {
    background: var(--yellow);
    color: var(--ink);
    box-shadow: 7px 7px 0 var(--ink);
}

.hero {
    isolation: isolate;
    min-height: 112vh;
    padding-top: 140px;
    background:
        linear-gradient(90deg, rgba(21,20,38,.09) 1px, transparent 1px),
        linear-gradient(rgba(21,20,38,.08) 1px, transparent 1px);
    background-size: 86px 86px;
}

.hero::before,
.hero::after,
.drops-section::before,
.lookbook-section::before,
.reviews-section::before,
.cta-box::before {
    content: "";
    position: absolute;
    pointer-events: none;
    z-index: 1;
    background: var(--yellow);
    clip-path: polygon(50% 0%, 58% 32%, 88% 12%, 68% 42%, 100% 50%, 68% 58%, 88% 88%, 58% 68%, 50% 100%, 42% 68%, 12% 88%, 32% 58%, 0% 50%, 32% 42%, 12% 12%, 42% 32%);
}

.hero::before {
    width: 96px;
    height: 96px;
    left: 9vw;
    top: 22vh;
    transform: rotate(-18deg);
}

.hero::after {
    width: 150px;
    height: 150px;
    right: 8vw;
    bottom: 20vh;
    transform: rotate(12deg);
}

.hero-marquee-bg {
    opacity: .12;
    mix-blend-mode: multiply;
}

.hero-marquee-track {
    top: 47%;
    transform: translateY(-50%) rotate(-9deg);
}

.hero-marquee-track span {
    color: transparent;
    -webkit-text-stroke: 2px rgba(21,20,38,.5);
    font-size: 14vw;
}

.hero-content {
    max-width: 900px;
    padding: 34px 32px;
    border-radius: 38px;
    background: rgba(255, 248, 228, 0.52);
    border: 1px solid rgba(21,20,38,.09);
    backdrop-filter: blur(2px);
}

.hero-tag,
.sh-tag {
    color: var(--ink);
    background: transparent;
    border: 0;
    font-weight: 900;
    letter-spacing: .36em;
}

.hero-tag::before,
.sh-tag::before {
    content: "";
    display: inline-block;
    width: 12px;
    height: 12px;
    margin-right: 10px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 22px 0 0 var(--cyan), 44px 0 0 var(--yellow), 66px 0 0 var(--green);
    vertical-align: 1px;
}

.dot-pulse {
    display: none;
}

.hero-title {
    text-transform: uppercase;
}

.ht-line {
    font-size: clamp(4rem, 11vw, 9.8rem);
    line-height: .82;
    letter-spacing: -.095em;
}

.ht-line.italic,
.sh-title em,
.lb-text h3 em,
.cta-left h2 em {
    font-family: var(--serif);
    color: #ed2f56;
    text-transform: none;
    letter-spacing: -.05em;
}

.hero-sub {
    max-width: 620px;
    margin: 0 auto 40px;
    color: var(--ink);
    font-size: clamp(.95rem, 1.8vw, 1.25rem);
    line-height: 1.45;
    text-transform: uppercase;
}

.vibe-collage {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.vibe-photo {
    position: absolute;
    width: clamp(150px, 18vw, 270px);
    aspect-ratio: 4 / 5;
    border: 10px solid rgba(255,248,228,.76);
    box-shadow: 18px 20px 0 rgba(21,20,38,.12);
    background-size: cover;
    background-position: center;
    filter: saturate(1.15) contrast(1.08);
}

.vibe-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(237,47,86,.2), rgba(244,223,88,.14));
    mix-blend-mode: screen;
}

.vibe-photo-1 {
    left: 6vw;
    bottom: 12vh;
    transform: rotate(-8deg);
    background-image: url("https://iili.io/BrEt6kg.jpg");
}

.vibe-photo-2 {
    right: 9vw;
    top: 18vh;
    transform: rotate(7deg);
    background-image: url("https://iili.io/B07ijdF.jpg");
}

.vibe-word {
    position: absolute;
    z-index: 2;
    color: var(--paper);
    font-family: var(--mono);
    font-size: clamp(.68rem, 1.3vw, 1.05rem);
    font-weight: 900;
    line-height: .9;
    text-transform: uppercase;
    text-shadow: 0 1px 0 var(--ink), 1px 0 0 var(--ink), 0 -1px 0 var(--ink), -1px 0 0 var(--ink);
    letter-spacing: .08em;
}

.vw-1 { left: 7vw; top: 18vh; letter-spacing: .9em; }
.vw-2 { left: 20vw; top: 36vh; }
.vw-3 { right: 22vw; top: 24vh; font-style: italic; text-transform: lowercase; }
.vw-4 { right: 8vw; bottom: 35vh; }

.vibe-dot {
    position: absolute;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    z-index: 2;
}

.vd-1 { left: 22vw; top: 26vh; background: var(--cyan); box-shadow: 120px 210px 0 var(--accent), 290px 70px 0 var(--green); }
.vd-2 { right: 31vw; top: 16vh; background: var(--yellow); box-shadow: 120px 250px 0 var(--cyan), -180px 360px 0 var(--red); }
.vd-3 { left: 12vw; bottom: 29vh; background: #ff8a1f; box-shadow: 160px -80px 0 #d8f018; }
.vd-4 { right: 17vw; bottom: 22vh; background: #7a4bd8; box-shadow: 98px -152px 0 #ed2f56; }

.vibe-star {
    position: absolute;
    z-index: 2;
    width: 74px;
    height: 74px;
    background: var(--yellow);
    clip-path: polygon(50% 0%, 58% 32%, 88% 12%, 68% 42%, 100% 50%, 68% 58%, 88% 88%, 58% 68%, 50% 100%, 42% 68%, 12% 88%, 32% 58%, 0% 50%, 32% 42%, 12% 12%, 42% 32%);
}

.vs-1 { left: 17vw; top: 47vh; transform: rotate(12deg); }
.vs-2 { right: 26vw; bottom: 20vh; transform: rotate(-16deg) scale(1.35); }

.hero-snoopy-scene {
    position: relative;
    z-index: 2;
    margin-top: -26px;
    filter: drop-shadow(12px 16px 0 rgba(21,20,38,.12));
}

.scroll-down {
    z-index: 3;
}

.marquee-strip {
    background: var(--ink);
    border-top: 3px solid var(--paper);
    border-bottom: 3px solid var(--paper);
}

.marquee-inner span {
    color: var(--paper);
    font-size: .92rem;
}

.drops-section,
.lookbook-section,
.reviews-section,
.cta-section,
.about-section,
.shop-section,
.pd-section {
    position: relative;
    z-index: 1;
}

.drops-section {
    padding-top: 120px;
}

.drops-section::before {
    width: 70px;
    height: 70px;
    right: 11vw;
    top: 80px;
    transform: rotate(24deg);
}

.section-head {
    align-items: center;
}

.sh-title {
    font-size: clamp(2.8rem, 6vw, 5.8rem);
    letter-spacing: -.08em;
    text-transform: uppercase;
}

.sh-tabs {
    gap: 12px;
}

.tab {
    border: 2px solid rgba(21,20,38,.15);
    background: rgba(255,248,228,.5);
    font-size: .95rem;
    font-weight: 900;
}

.tab.active,
.tab:hover {
    background: var(--ink);
    color: var(--paper);
    border-color: var(--ink);
    box-shadow: 6px 6px 0 var(--yellow);
}

.product-card,
.review-card,
.about-card,
.pd-gallery,
.pd-info > *,
.checkout-card,
.order-summary,
.empty-cart {
    background: rgba(255, 248, 228, 0.78);
    border: 2px solid rgba(21,20,38,.12);
    box-shadow: 10px 10px 0 rgba(21,20,38,.08);
    backdrop-filter: blur(5px);
}

.product-card {
    border-radius: 32px;
}

.product-card:nth-child(3n + 1) {
    transform: rotate(-1.2deg);
}

.product-card:nth-child(3n + 2) {
    transform: rotate(.8deg);
}

.product-card:hover {
    transform: rotate(0deg) translateY(-8px);
    border-color: var(--ink);
    box-shadow: 13px 13px 0 var(--yellow), 0 30px 80px rgba(21,20,38,.2);
}

.pc-visual {
    background:
        radial-gradient(circle at 25% 22%, rgba(66,216,207,.42) 0 9%, transparent 10%),
        radial-gradient(circle at 74% 66%, rgba(237,47,86,.38) 0 8%, transparent 9%),
        linear-gradient(135deg, var(--bg), var(--bg2)) !important;
}

.pc-media::before {
    content: "CLUBO";
    position: absolute;
    z-index: 2;
    left: 18px;
    bottom: 18px;
    color: rgba(255,248,228,.82);
    font-family: var(--mono);
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .38em;
    text-shadow: 1px 1px 0 var(--ink);
}

.pc-tag {
    background: var(--yellow);
    color: var(--ink);
    border: 2px solid var(--ink);
    box-shadow: 4px 4px 0 var(--ink);
}

.pc-tag.hot,
.pc-tag.new,
.pc-tag.limited {
    background: var(--yellow);
    color: var(--ink);
}

.pc-details h3 {
    font-size: 1.3rem;
    letter-spacing: -.04em;
}

.pc-details p,
.review-card p,
.about-card p {
    color: #4f5261;
}

.add-btn,
.pc-action-btn,
.snc-send {
    background: var(--accent);
    box-shadow: 4px 4px 0 var(--ink);
}

.lookbook-section,
.reviews-section {
    background:
        radial-gradient(circle at 12% 18%, rgba(237,47,86,.2) 0 9%, transparent 22%),
        radial-gradient(circle at 86% 80%, rgba(66,216,207,.18) 0 8%, transparent 20%),
        var(--bg2);
}

.lookbook-section::before {
    width: 120px;
    height: 120px;
    left: 8vw;
    top: 72px;
}

.lb-card {
    border: 8px solid rgba(255,248,228,.55);
    box-shadow: 14px 14px 0 rgba(21,20,38,.12);
}

.lb-inner {
    background:
        radial-gradient(circle at 20% 25%, rgba(255,255,255,.22) 0 8%, transparent 9%),
        radial-gradient(circle at 74% 58%, rgba(244,223,88,.36) 0 9%, transparent 10%),
        var(--grad) !important;
}

.lb-overlay-text,
.footer-bigtext {
    color: transparent;
    -webkit-text-stroke: 2px rgba(21,20,38,.18);
}

.reviews-section::before {
    width: 90px;
    height: 90px;
    right: 10vw;
    top: 64px;
}

.review-card {
    transform: rotate(-1deg);
}

.review-card:nth-child(even) {
    transform: rotate(1deg);
}

.cta-box,
.footer {
    background:
        linear-gradient(rgba(21,20,38,.78), rgba(21,20,38,.78)),
        radial-gradient(circle at 60% 20%, rgba(237,47,86,.6), transparent 28%),
        var(--ink);
}

.cta-box {
    border: 2px solid rgba(255,248,228,.16);
    box-shadow: 18px 18px 0 var(--yellow);
}

.cta-box::before {
    width: 140px;
    height: 140px;
    right: 9%;
    top: 12%;
    opacity: .9;
}

.footer {
    color: var(--paper);
    border-top: 0;
}

.footer a,
.footer p,
.footer-bottom,
.ft-links a {
    color: rgba(255,248,228,.72);
}

.footer .nav-logo,
.footer .ft-links h4 {
    color: var(--paper);
}

.ft-socials a,
.ft-pay span {
    border-color: rgba(255,248,228,.25);
    background: rgba(255,248,228,.08);
}

.snoopy-bubble,
.snoopy-chat,
.snc-msg-bot .snc-bubble,
.snc-input,
.snc-chips {
    background: var(--paper);
}

.snoopy-sale-tag {
    background: var(--yellow);
}

@media (max-width: 900px) {
    body::after {
        opacity: .12;
    }

    .hero {
        min-height: 100vh;
        padding-top: 116px;
    }

    .hero-content {
        padding: 22px 4px;
        background: transparent;
        border: 0;
    }

    .vibe-photo {
        opacity: .34;
        width: 150px;
        border-width: 6px;
    }

    .vibe-photo-1 {
        left: -28px;
        bottom: 16vh;
    }

    .vibe-photo-2 {
        right: -34px;
        top: 17vh;
    }

    .vibe-word {
        display: none;
    }

    .hero::before {
        left: 6vw;
        top: 17vh;
        width: 62px;
        height: 62px;
    }

    .hero::after {
        right: -10vw;
        bottom: 28vh;
        width: 110px;
        height: 110px;
    }

    .ht-line {
        font-size: clamp(3.3rem, 18vw, 5.6rem);
    }

    .hero-sub {
        font-size: .86rem;
        padding: 0 10px;
    }

    .product-card:nth-child(n),
    .review-card,
    .review-card:nth-child(even) {
        transform: none;
    }

    .sh-title {
        font-size: clamp(2.4rem, 12vw, 4.3rem);
    }

    .cart-btn,
    .btn-main,
    .btn-outline,
    .tab.active,
    .tab:hover {
        box-shadow: 4px 4px 0 var(--yellow);
    }
}

/* ===== Calm Editorial Pass: reduce visual noise and keep one restrained vibe ===== */
:root {
    --bg: #ffffff;
    --bg2: #f5f5f2;
    --paper: #ffffff;
    --text: #15141b;
    --ink: #15141b;
    --sub: #6f6a62;
    --muted: #a39b90;
    --accent: #b4322d;
    --red: #b4322d;
    --yellow: #d8c875;
    --cyan: #6f9d98;
    --green: #6f9d77;
    --border: rgba(21,20,27,.14);
    --shadow: 0 14px 45px rgba(21,20,27,.1);
    --shadow-lg: 0 24px 70px rgba(21,20,27,.16);
}

body {
    background: #ffffff;
    color: var(--text);
}

body::before {
    opacity: .055;
    background-image: repeating-radial-gradient(circle at 30% 20%, rgba(0,0,0,.45) 0 1px, transparent 1px 6px);
}

body::after,
.hero::before,
.hero::after,
.drops-section::before,
.lookbook-section::before,
.reviews-section::before,
.cta-box::before,
.zine-hero::after,
.zh-dot,
.zh-star,
.manifesto-title::after,
.wishlist-board::before,
.review-poster::before,
.vibe-collage,
.vibe-dot,
.vibe-star {
    display: none !important;
}

.navbar {
    padding: 18px 0;
}

.navbar.scrolled,
.nav-links.active {
    background: rgba(255,255,255,.9);
    backdrop-filter: blur(18px);
}

.nav-logo {
    font-size: clamp(1.55rem, 2.2vw, 2rem);
    letter-spacing: -.055em;
}

.nav-logo span,
.title-dot {
    color: var(--accent);
}

.nav-links {
    gap: 4px;
}

.nav-link {
    background: transparent;
    border: 0;
    color: rgba(21,20,27,.58);
    letter-spacing: .14em;
    font-size: .72rem;
}

.nav-link:hover,
.nav-link.active {
    background: transparent;
    color: var(--ink);
}

.cart-btn,
.btn-main,
.btn-outline {
    box-shadow: none;
    border-radius: 999px;
}

.cart-btn,
.btn-main {
    background: var(--ink);
    border-color: var(--ink);
    color: var(--paper);
}

.cart-btn:hover,
.btn-main:hover {
    background: var(--accent);
    border-color: var(--accent);
    box-shadow: none;
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    color: var(--ink);
    border: 1.5px solid rgba(21,20,27,.42);
}

.btn-outline:hover {
    background: var(--ink);
    color: var(--paper);
    box-shadow: none;
}

.zine-hero {
    min-height: 94svh;
    padding: 128px 24px 72px;
    background:
        linear-gradient(rgba(255,255,255,.48), rgba(255,255,255,.82)),
        url("https://iili.io/BrEt6kg.jpg") center / cover;
}

.zine-hero::before {
    content: "CLUBO";
    left: clamp(24px, 6vw, 96px);
    top: clamp(94px, 12vh, 140px);
    color: rgba(251,246,235,.92);
    font-size: clamp(2.8rem, 7vw, 7.4rem);
    letter-spacing: -.07em;
    text-shadow: 0 2px 18px rgba(21,20,27,.18);
}

.zine-hero-media {
    z-index: 1;
}

.zh-photo-main {
    display: none;
}

.zh-photo-small {
    width: clamp(190px, 22vw, 330px);
    right: clamp(22px, 9vw, 150px);
    bottom: clamp(74px, 13vh, 160px);
    border: 0;
    border-radius: 2px;
    box-shadow: 0 22px 70px rgba(21,20,27,.24);
    opacity: .9;
    transform: rotate(2.5deg);
}

.zh-photo-strip {
    width: clamp(150px, 17vw, 250px);
    left: clamp(22px, 8vw, 130px);
    bottom: clamp(110px, 18vh, 210px);
    border: 0;
    border-radius: 2px;
    box-shadow: 0 20px 60px rgba(21,20,27,.18);
    opacity: .72;
    transform: rotate(-2deg);
}

.zh-photo::after {
    background: linear-gradient(rgba(251,246,235,.04), rgba(21,20,27,.1));
}

.zine-hero-copy {
    max-width: 860px;
    margin-top: 6vh;
    padding: 0;
    text-align: center;
}

.zine-kicker,
.hero-tag,
.sh-tag {
    color: var(--accent);
    letter-spacing: .24em;
    font-size: .68rem;
}

.hero-tag::before,
.sh-tag::before {
    display: none;
}

.zine-hero-copy h1 {
    margin: 14px auto 22px;
    max-width: 820px;
    color: var(--ink);
    font-size: clamp(4.2rem, 10vw, 10.5rem);
    line-height: .82;
    letter-spacing: -.09em;
}

.zine-hero-copy h1 span:nth-child(2) {
    color: rgba(21,20,27,.64);
}

.zine-lede {
    max-width: 560px;
    color: rgba(21,20,27,.72);
    font-size: clamp(.84rem, 1.2vw, 1.03rem);
    font-weight: 600;
    line-height: 1.55;
    text-transform: none;
}

.zine-side-notes span,
.zh-word {
    color: rgba(251,246,235,.88);
    text-shadow: none;
    font-size: .72rem;
    letter-spacing: .08em;
    opacity: .82;
}

.zine-side-notes span:nth-child(1) { left: 5vw; top: 28vh; }
.zine-side-notes span:nth-child(2) { left: 6vw; top: 62vh; }
.zine-side-notes span:nth-child(3) { right: 6vw; top: 28vh; }
.zine-side-notes span:nth-child(4) { right: 6vw; bottom: 23vh; }

.word-a,
.word-b,
.word-c {
    display: none;
}

.zine-ticker {
    background: var(--ink);
    border: 0;
}

.zine-ticker div {
    padding: 12px 0;
}

.zine-ticker span {
    color: rgba(251,246,235,.82);
    font-size: .72rem;
    letter-spacing: .28em;
}

.zine-manifesto,
.wishlist-section,
.zine-products,
.zine-lookbook,
.zine-reviews,
.zine-join {
    padding: clamp(64px, 8vw, 112px) 0;
}

.manifesto-grid {
    grid-template-columns: 1fr 1fr;
}

.manifesto-title h2,
.wishlist-main h2,
.review-poster h2,
.sh-title {
    color: var(--ink);
    font-size: clamp(2.6rem, 5.8vw, 6rem);
    line-height: .9;
    letter-spacing: -.075em;
}

.manifesto-notes,
.review-notes {
    gap: 16px;
}

.manifesto-notes p,
.review-notes p {
    color: rgba(21,20,27,.72);
    font-size: clamp(.94rem, 1.5vw, 1.28rem);
    line-height: 1.2;
    font-weight: 600;
    text-transform: none;
}

.manifesto-notes span,
.review-notes span {
    width: 8px;
    height: 8px;
    background: var(--accent);
}

.wishlist-board {
    min-height: 610px;
    color: var(--paper);
    border-radius: 8px;
    background:
        linear-gradient(rgba(21,20,27,.42), rgba(21,20,27,.55)),
        url("https://iili.io/BrEmu1V.jpg") center / cover;
    box-shadow: var(--shadow-lg);
}

.wishlist-main h2 {
    color: rgba(251,246,235,.94);
    text-shadow: none;
}

.wishlist-date {
    color: rgba(251,246,235,.82);
}

.wishlist-date strong {
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: 700;
}

.wishlist-item {
    color: rgba(251,246,235,.82);
    font-size: clamp(.72rem, 1vw, .9rem);
    font-weight: 700;
    letter-spacing: .03em;
}

.sh-title em,
.lb-text h3 em,
.cta-left h2 em,
.ht-line.italic {
    color: var(--accent);
}

.sh-tabs {
    gap: 8px;
}

.tab {
    background: transparent;
    border: 1px solid rgba(21,20,27,.2);
    color: rgba(21,20,27,.62);
    font-size: .74rem;
    letter-spacing: .08em;
}

.tab.active,
.tab:hover {
    background: var(--ink);
    color: var(--paper);
    border-color: var(--ink);
    box-shadow: none;
}

.product-card,
.review-card,
.about-card,
.pd-gallery,
.pd-info > *,
.checkout-card,
.order-summary,
.empty-cart {
    background: rgba(251,246,235,.76);
    border: 1px solid rgba(21,20,27,.1);
    box-shadow: var(--shadow);
}

.product-card,
.product-card:nth-child(3n + 1),
.product-card:nth-child(3n + 2),
.review-card,
.review-card:nth-child(even) {
    transform: none;
}

.product-card {
    border-radius: 6px;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-4px);
    border-color: rgba(21,20,27,.22);
    box-shadow: var(--shadow-lg);
}

.pc-visual {
    background: #f4f4f1 !important;
}

.pc-media::before,
.pc-tag {
    display: none;
}

.pc-details h3 {
    font-size: 1.06rem;
    letter-spacing: -.025em;
}

.pc-details p {
    font-size: .78rem;
}

.add-btn,
.pc-action-btn,
.snc-send {
    background: var(--ink);
    box-shadow: none;
}

.zine-products .product-card:nth-child(n) {
    margin-top: 0;
}

.zine-products .products-grid {
    gap: 26px;
}

.lookbook-section,
.reviews-section,
.zine-products {
    background: transparent;
}

.annotation-grid {
    grid-template-columns: 1fr 1fr 1fr;
}

.annotation-card {
    min-height: 440px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.annotation-card p,
.annotation-card h3 {
    color: inherit;
    font-size: clamp(.92rem, 1.4vw, 1.18rem);
    line-height: 1.18;
    letter-spacing: .01em;
    text-transform: none;
}

.annotation-card h3 {
    font-size: clamp(2.1rem, 3.4vw, 3.5rem);
    line-height: .92;
    letter-spacing: -.07em;
    text-transform: uppercase;
}

.anno-dot {
    width: 8px;
    height: 8px;
}

.ac-dark {
    background: #1e1c1a;
}

.review-poster {
    min-height: 560px;
    border-radius: 8px;
    background:
        linear-gradient(rgba(255,255,255,.78), rgba(255,255,255,.88)),
        url("https://iili.io/B07i1zx.jpg") center / cover;
    box-shadow: var(--shadow-lg);
}

.review-poster h2 {
    max-width: 720px;
}

.review-notes {
    max-width: 700px;
    margin-top: 30px;
}

.cta-box {
    border-radius: 8px;
    background: #1e1c1a;
    box-shadow: var(--shadow-lg);
}

.zine-join .cta-left h2 {
    font-size: clamp(2.6rem, 5.8vw, 6rem);
}

.footer {
    background: #1e1c1a;
}

@media (max-width: 900px) {
    .zine-hero {
        min-height: 92svh;
        padding: 118px 18px 54px;
    }

    .zine-hero::before {
        font-size: 2.9rem;
        top: 104px;
    }

    .zh-photo-small {
        width: 138px;
        right: 16px;
        bottom: 96px;
        opacity: .45;
    }

    .zh-photo-strip {
        width: 118px;
        left: 14px;
        bottom: 140px;
        opacity: .36;
    }

    .zine-hero-copy {
        margin-top: 9vh;
    }

    .zine-hero-copy h1 {
        font-size: clamp(3.8rem, 18vw, 6rem);
    }

    .zine-lede {
        max-width: 330px;
        font-size: .82rem;
    }

    .zine-side-notes {
        display: none;
    }

    .manifesto-grid,
    .annotation-grid,
    .review-notes {
        grid-template-columns: 1fr;
    }

    .wishlist-board,
    .review-poster {
        min-height: 560px;
        box-shadow: var(--shadow);
    }

    .wishlist-item {
        display: none;
    }

    .annotation-card {
        min-height: 340px;
    }
}

/* ===== No Background Gradients ===== */
body,
.zine-home,
.zine-hero,
.zine-manifesto,
.wishlist-section,
.zine-products,
.zine-lookbook,
.zine-reviews,
.zine-join,
.drops-section,
.lookbook-section,
.reviews-section,
.about-section,
.cta-section,
.shop-section,
.pd-section {
    background: #ffffff !important;
    background-image: none !important;
}

body::before,
body::after,
.zh-photo::after {
    display: none !important;
}

.wishlist-board {
    background-color: #1e1c1a !important;
    background-image: url("https://iili.io/BrEmu1V.jpg") !important;
}

.review-poster {
    background-color: #ffffff !important;
    background-image: url("https://iili.io/B07i1zx.jpg") !important;
}

.ac-photo-one::before {
    background-image: url("https://iili.io/BrEbDJt.jpg") !important;
}

.ac-photo-two::before {
    background-image: url("https://iili.io/B1Zbcj1.jpg") !important;
}

.cta-box,
.footer {
    background: #1e1c1a !important;
    background-image: none !important;
}

/* ===== Windowed Product Layout ===== */
.products-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr)) !important;
    gap: 22px !important;
    align-items: start;
}

.product-card {
    grid-column: span 4;
    border-radius: 10px !important;
    overflow: hidden;
    background: #fff !important;
    border: 1px solid rgba(21,20,27,.12) !important;
    box-shadow: 0 20px 45px rgba(21,20,27,.12) !important;
}

.product-card:nth-child(6n + 1) {
    grid-column: 1 / span 4;
    margin-top: 6px;
}

.product-card:nth-child(6n + 2) {
    grid-column: 5 / span 4;
    margin-top: 72px;
}

.product-card:nth-child(6n + 3) {
    grid-column: 9 / span 4;
    margin-top: 0;
}

.product-card:nth-child(6n + 4) {
    grid-column: 2 / span 4;
    margin-top: -12px;
}

.product-card:nth-child(6n + 5) {
    grid-column: 6 / span 4;
    margin-top: 58px;
}

.product-card:nth-child(6n + 6) {
    grid-column: 10 / span 3;
    margin-top: 6px;
}

.product-card,
.product-card:nth-child(3n + 1),
.product-card:nth-child(3n + 2) {
    transform: none !important;
}

.product-card:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 26px 60px rgba(21,20,27,.18) !important;
}

.pc-window-bar {
    height: 28px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 10px;
    padding: 0 10px 0 8px;
    background: linear-gradient(180deg, #f0f0f0 0%, #dddddd 100%);
    border-bottom: 1px solid rgba(21,20,27,.08);
    font-family: var(--mono);
    font-size: .68rem;
    color: rgba(21,20,27,.7);
}

.pc-window-dots {
    display: flex;
    gap: 4px;
}

.pc-window-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #c8c8c8;
    border: 1px solid rgba(21,20,27,.08);
}

.pc-window-name {
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pc-window-caret {
    font-size: .8rem;
    line-height: 1;
}

.pc-media {
    background: #fff;
}

.pc-visual {
    aspect-ratio: .86;
    background: #fff !important;
    padding: 16px;
}

.pc-cloth {
    width: 100%;
    height: 100%;
}

.pc-cloth:has(.pc-photo-img) {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible !important;
}

.pc-photo-img {
    object-fit: contain !important;
    background: transparent;
}

.pc-details {
    padding: 14px 16px 16px !important;
    background: #fff;
}

.pc-colors-row {
    margin-bottom: 8px;
}

.pc-details h3 {
    font-size: .96rem !important;
    line-height: 1.15;
}

.pc-details p {
    font-size: .72rem !important;
    line-height: 1.35;
}

.pc-footer {
    margin-top: 12px;
}

.zine-products .products-grid {
    gap: 22px !important;
}

@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
    }

    .product-card:nth-child(4n + 1) {
        grid-column: 1 / span 3;
        margin-top: 0;
    }

    .product-card:nth-child(4n + 2) {
        grid-column: 4 / span 3;
        margin-top: 40px;
    }

    .product-card:nth-child(4n + 3) {
        grid-column: 1 / span 3;
        margin-top: -10px;
    }

    .product-card:nth-child(4n + 4) {
        grid-column: 4 / span 3;
        margin-top: 24px;
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 16px !important;
        max-width: none !important;
    }

    .product-card {
        grid-column: span 1 !important;
        margin-top: 0 !important;
    }

    .product-card:nth-child(2n + 2) {
        margin-top: 34px !important;
    }

    .pc-window-bar {
        height: 26px;
        font-size: .62rem;
    }

    .pc-visual {
        aspect-ratio: .92;
        padding: 12px;
    }

    .pc-details {
        padding: 12px 12px 14px !important;
    }
}

/* ===== Head Intro Loader ===== */
.head-intro-lock,
.head-intro-lock body {
    overflow: hidden;
}

.head-intro {
    position: fixed;
    inset: 0;
    z-index: 20000;
    display: grid;
    place-items: center;
    background: #fff;
    color: #111;
    transition: opacity .42s ease, transform .42s ease;
}

.head-intro.is-done {
    opacity: 0;
    transform: translateY(-18px);
    pointer-events: none;
}

.head-intro-top,
.head-intro-bottom {
    position: absolute;
    left: clamp(18px, 4vw, 56px);
    right: clamp(18px, 4vw, 56px);
    display: flex;
    justify-content: space-between;
    font-family: var(--mono);
    font-size: clamp(.68rem, 1vw, .86rem);
    font-weight: 800;
    letter-spacing: .22em;
    text-transform: uppercase;
}

.head-intro-top {
    top: clamp(18px, 4vw, 46px);
}

.head-intro-bottom {
    bottom: clamp(18px, 4vw, 46px);
    justify-content: center;
    color: rgba(21,20,27,.48);
}

.head-page-stack {
    position: relative;
    width: min(72vw, 430px);
    height: min(72vh, 560px);
}

.head-page {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    background: transparent;
    border: 0;
    box-shadow: none;
    opacity: 0;
    transform: translate(calc(var(--x) * 3), calc(var(--y) * 3)) rotate(calc(var(--rot) * 2)) scale(.82);
    transition: opacity .22s ease, transform .48s cubic-bezier(.2,.9,.18,1);
}

.head-page.active {
    opacity: 1;
    transform: translate(var(--x), var(--y)) rotate(var(--rot)) scale(1);
}

.head-page.leaving {
    opacity: 0;
    transform: translate(var(--x), calc(var(--y) + 16px)) rotate(var(--rot)) scale(.92);
}

.head-spin {
    width: min(58vw, 330px);
    max-height: 78%;
    object-fit: contain;
    filter: drop-shadow(0 30px 46px rgba(17, 17, 17, .13)) contrast(1.04) saturate(.98);
    transform-origin: center center;
    animation: head-spin-in .84s cubic-bezier(.18,.92,.22,1) both;
}

.head-page.leaving .head-spin {
    animation: head-spin-out .34s ease both;
}

@keyframes head-spin-in {
    0% {
        transform: perspective(760px) rotateY(-540deg) rotate(-18deg) scale(.34);
        opacity: 0;
    }
    54% {
        transform: perspective(760px) rotateY(-90deg) rotate(8deg) scale(1.08);
        opacity: 1;
    }
    100% {
        transform: perspective(760px) rotateY(0deg) rotate(0deg) scale(1);
        opacity: 1;
    }
}

@keyframes head-spin-out {
    0% {
        transform: perspective(760px) rotateY(0deg) scale(1);
        opacity: 1;
    }
    100% {
        transform: perspective(760px) rotateY(140deg) scale(.84);
        opacity: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .head-spin,
    .head-page.leaving .head-spin {
        animation: none;
        opacity: 1;
    }
}

@media (max-width: 700px) {
    .head-page-stack {
        width: min(82vw, 330px);
        height: min(66vh, 480px);
    }

    .head-spin {
        width: min(68vw, 250px);
    }
}

/* ===== Homepage Cleanup Pass v2 ===== */
.zine-hero {
    min-height: 76svh;
    padding: 120px 24px 56px;
    background: #ffffff !important;
}

.zine-hero::before {
    content: none;
}

.zine-hero-media,
.zine-side-notes,
.zine-ticker {
    display: none !important;
}

.zine-hero-copy {
    margin-top: 0;
    max-width: 880px;
}

.zine-hero-copy h1 {
    font-size: clamp(3.8rem, 9vw, 8.5rem);
    line-height: .86;
    letter-spacing: -.08em;
}

.zine-hero-copy h1 span:nth-child(2) {
    font-family: var(--font);
    font-style: normal;
    font-weight: 900;
    color: var(--ink);
    text-transform: uppercase;
}

.zine-lede {
    max-width: 640px;
    font-size: 1rem;
    line-height: 1.6;
}

.zine-manifesto,
.wishlist-section {
    padding-top: 48px;
}

.manifesto-grid {
    grid-template-columns: minmax(0, .9fr) minmax(320px, .7fr);
    gap: 48px;
    align-items: start;
}

.manifesto-title::after {
    display: none !important;
}

.manifesto-title h2 {
    font-size: clamp(2.6rem, 5.2vw, 5rem);
    line-height: .92;
    max-width: 700px;
}

.manifesto-notes {
    gap: 14px;
    padding-top: 16px;
}

.manifesto-notes p {
    font-family: var(--font);
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.45;
}

.manifesto-notes span {
    width: 10px;
    height: 10px;
}

.wishlist-board {
    min-height: 360px;
    padding: 34px 36px;
    background: #f5f5f2 !important;
    color: var(--ink);
    box-shadow: none;
    border: 1px solid rgba(21,20,27,.08);
    border-radius: 18px;
}

.wishlist-main {
    position: static;
    transform: none;
    width: 100%;
    text-align: left;
    max-width: 680px;
}

.wishlist-main h2 {
    color: var(--ink);
    text-shadow: none;
    max-width: 560px;
}

.wishlist-date {
    position: static;
    inset: auto;
    margin-bottom: 28px;
    justify-content: flex-start;
    gap: 18px;
    color: var(--ink);
}

.wishlist-date strong {
    font-size: 3rem;
    line-height: 1;
}

.wishlist-date span {
    font-size: .8rem;
    color: rgba(21,20,27,.56);
    letter-spacing: .14em;
}

.wishlist-item {
    position: static;
    display: inline-flex;
    align-items: center;
    margin: 18px 12px 0 0;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid rgba(21,20,27,.12);
    background: #ffffff;
    color: var(--ink);
    max-width: none;
    font-size: .8rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: .08em;
}

.footer {
    background: #ffffff !important;
    color: var(--ink) !important;
    border-top: 1px solid rgba(21,20,27,.08);
}

.footer a,
.footer p,
.footer-bottom,
.ft-links a {
    color: rgba(21,20,27,.68) !important;
}

.footer .nav-logo,
.footer .ft-links h4 {
    color: var(--ink) !important;
}

.ft-socials a,
.ft-pay span {
    background: #ffffff !important;
    border-color: rgba(21,20,27,.16) !important;
    color: var(--ink) !important;
}

.footer-bigtext {
    color: rgba(21,20,27,.05) !important;
    -webkit-text-stroke: 0 !important;
}

@media (max-width: 900px) {
    .zine-hero {
        min-height: auto;
        padding: 112px 18px 42px;
    }

    .zine-hero-copy h1 {
        font-size: clamp(3rem, 16vw, 5rem);
    }

    .manifesto-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .wishlist-board {
        min-height: auto;
        padding: 24px 20px;
    }

    .wishlist-date {
        margin-bottom: 20px;
        gap: 12px;
    }

    .wishlist-date strong {
        font-size: 2rem;
    }

    .wishlist-item {
        margin-top: 10px;
        margin-right: 8px;
        font-size: .72rem;
    }
}

/* ===== Full Zine Structure Rebuild ===== */
.snoopy-mascot,
.hero-snoopy-scene,
.cta-right {
    display: none !important;
}

.zine-home {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.zine-hero {
    min-height: 100svh;
    position: relative;
    display: grid;
    place-items: center;
    padding: 132px 24px 80px;
    isolation: isolate;
    background:
        linear-gradient(90deg, rgba(21,20,38,.08) 1px, transparent 1px),
        linear-gradient(rgba(21,20,38,.08) 1px, transparent 1px),
        radial-gradient(circle at 22% 34%, rgba(237,47,86,.26), transparent 24%),
        radial-gradient(circle at 79% 16%, rgba(66,216,207,.25), transparent 21%),
        #f5efe2;
    background-size: 72px 72px, 72px 72px, auto, auto, auto;
}

.zine-hero::before {
    content: "MoMA";
    position: absolute;
    left: clamp(24px, 7vw, 110px);
    top: clamp(104px, 14vh, 160px);
    z-index: 3;
    color: white;
    font-size: clamp(3.8rem, 10vw, 9rem);
    font-weight: 900;
    letter-spacing: -.08em;
    text-shadow: 0 3px 0 var(--ink), 3px 0 0 var(--ink), -3px 0 0 var(--ink), 0 -3px 0 var(--ink);
}

.zine-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background-image:
        radial-gradient(circle, #ff8a1f 0 11px, transparent 12px),
        radial-gradient(circle, #42d8cf 0 9px, transparent 10px),
        radial-gradient(circle, #16c083 0 11px, transparent 12px),
        radial-gradient(circle, #ed2f56 0 10px, transparent 11px),
        radial-gradient(circle, #d8f018 0 9px, transparent 10px),
        radial-gradient(circle, #7a4bd8 0 8px, transparent 9px);
    background-position: 13% 28%, 27% 23%, 43% 33%, 58% 25%, 75% 41%, 89% 30%;
    background-size: 260px 220px;
    opacity: .88;
}

.zine-hero-media {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.zh-photo {
    position: absolute;
    background-size: cover;
    background-position: center;
    filter: saturate(1.2) contrast(1.05);
}

.zh-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(255,255,255,.08), rgba(0,0,0,.05)),
        repeating-linear-gradient(0deg, rgba(255,255,255,.08) 0 1px, transparent 1px 4px);
    mix-blend-mode: screen;
}

.zh-photo-main {
    inset: 0;
    background-image: url("https://iili.io/BrEt6kg.jpg");
    opacity: .38;
    filter: saturate(1.4) contrast(1.08) blur(.2px);
}

.zh-photo-small {
    width: clamp(220px, 25vw, 410px);
    aspect-ratio: 4 / 5;
    right: 9vw;
    bottom: 9vh;
    border: 12px solid rgba(255,248,228,.78);
    box-shadow: 18px 18px 0 rgba(21,20,38,.16);
    background-image: url("https://iili.io/B07ijdF.jpg");
    transform: rotate(5deg);
}

.zh-photo-strip {
    width: clamp(180px, 19vw, 310px);
    aspect-ratio: 3 / 4;
    left: 7vw;
    bottom: 13vh;
    border: 10px solid rgba(255,248,228,.7);
    background-image: url("https://iili.io/B1Zbcj1.jpg");
    transform: rotate(-7deg);
    box-shadow: 16px 16px 0 rgba(21,20,38,.14);
}

.zine-hero-copy {
    position: relative;
    z-index: 4;
    width: min(100%, 1060px);
    margin-top: 7vh;
    color: var(--ink);
    text-align: center;
}

.zine-kicker {
    font-family: var(--mono);
    font-size: clamp(.72rem, 1vw, .92rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .34em;
    color: var(--accent);
}

.zine-hero-copy h1 {
    margin: 10px 0 22px;
    font-size: clamp(4.1rem, 13vw, 14rem);
    line-height: .72;
    letter-spacing: -.115em;
    text-transform: uppercase;
}

.zine-hero-copy h1 span {
    display: block;
}

.zine-hero-copy h1 span:nth-child(2) {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
    letter-spacing: -.08em;
    color: var(--accent);
    text-transform: lowercase;
}

.zine-lede {
    max-width: 680px;
    margin: 0 auto 30px;
    font-family: var(--mono);
    font-size: clamp(.9rem, 1.6vw, 1.25rem);
    font-weight: 700;
    line-height: 1.45;
    text-transform: uppercase;
}

.zine-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.zine-side-notes {
    position: absolute;
    inset: 0;
    z-index: 4;
    pointer-events: none;
}

.zine-side-notes span {
    position: absolute;
    max-width: 150px;
    color: var(--paper);
    font-family: var(--mono);
    font-size: clamp(.75rem, 1.1vw, 1.05rem);
    font-weight: 900;
    line-height: .92;
    text-transform: uppercase;
    text-shadow: 1px 1px 0 var(--ink), -1px 1px 0 var(--ink), 1px -1px 0 var(--ink), -1px -1px 0 var(--ink);
}

.zine-side-notes span:nth-child(1) { left: 5vw; top: 24vh; }
.zine-side-notes span:nth-child(2) { left: 6vw; top: 54vh; }
.zine-side-notes span:nth-child(3) { right: 8vw; top: 24vh; }
.zine-side-notes span:nth-child(4) { right: 6vw; bottom: 25vh; }

.zh-word {
    position: absolute;
    z-index: 4;
    color: white;
    font-family: var(--mono);
    font-weight: 900;
    text-transform: lowercase;
    text-shadow: 1px 1px 0 var(--ink), -1px 1px 0 var(--ink), 1px -1px 0 var(--ink), -1px -1px 0 var(--ink);
}

.word-a { top: 12vh; left: 6vw; letter-spacing: .95em; }
.word-b { top: 24vh; left: 31vw; font-style: italic; }
.word-c { bottom: 18vh; right: 21vw; }

.zh-dot {
    position: absolute;
    z-index: 5;
    width: 20px;
    height: 20px;
    border-radius: 50%;
}

.dot-a { left: 21vw; top: 32vh; background: #16c083; box-shadow: 210px 120px 0 #ed2f56, 420px -40px 0 #42d8cf; }
.dot-b { right: 23vw; top: 24vh; background: #d8f018; box-shadow: 170px 200px 0 #ff8a1f; }
.dot-c { left: 14vw; bottom: 25vh; background: #ff8a1f; box-shadow: 330px -90px 0 #7a4bd8; }
.dot-d { right: 13vw; bottom: 22vh; background: #ed2f56; box-shadow: -160px 100px 0 #16c083; }

.zh-star,
.manifesto-title::after,
.wishlist-board::before,
.review-poster::before {
    position: absolute;
    display: block;
    background: var(--yellow);
    clip-path: polygon(50% 0%, 58% 32%, 88% 12%, 68% 42%, 100% 50%, 68% 58%, 88% 88%, 58% 68%, 50% 100%, 42% 68%, 12% 88%, 32% 58%, 0% 50%, 32% 42%, 12% 12%, 42% 32%);
}

.zh-star { z-index: 5; width: 96px; height: 96px; }
.star-a { left: 14vw; top: 42vh; transform: rotate(18deg); }
.star-b { right: 21vw; top: 29vh; transform: rotate(-11deg) scale(1.2); }

.zine-ticker {
    overflow: hidden;
    background: var(--ink);
    border-block: 3px solid var(--paper);
}

.zine-ticker div {
    display: flex;
    width: max-content;
    gap: 46px;
    padding: 15px 0;
    animation: marquee 18s linear infinite;
}

.zine-ticker span {
    color: var(--paper);
    font-family: var(--mono);
    font-size: .86rem;
    font-weight: 900;
    letter-spacing: .3em;
}

.zine-manifesto,
.wishlist-section,
.zine-products,
.zine-lookbook,
.zine-reviews,
.zine-join {
    padding: clamp(76px, 9vw, 132px) 0;
}

.manifesto-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: clamp(24px, 5vw, 80px);
    align-items: center;
}

.manifesto-title {
    position: relative;
}

.manifesto-title::after {
    content: "";
    width: 96px;
    height: 96px;
    right: 8%;
    top: -20px;
}

.manifesto-title h2,
.wishlist-main h2,
.review-poster h2 {
    margin-top: 12px;
    font-size: clamp(3rem, 7vw, 7rem);
    line-height: .83;
    letter-spacing: -.09em;
    text-transform: uppercase;
}

.manifesto-notes,
.review-notes {
    display: grid;
    gap: 22px;
}

.manifesto-notes p,
.review-notes p {
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: var(--mono);
    font-size: clamp(1rem, 2vw, 1.7rem);
    font-weight: 700;
    line-height: 1.05;
}

.manifesto-notes span,
.review-notes span {
    width: 19px;
    height: 19px;
    border-radius: 50%;
    background: var(--ink);
    flex: 0 0 auto;
}

.wishlist-board {
    min-height: 720px;
    position: relative;
    overflow: hidden;
    border-radius: 42px;
    padding: clamp(30px, 5vw, 70px);
    color: var(--paper);
    background:
        linear-gradient(rgba(17,17,31,.68), rgba(17,17,31,.74)),
        url("https://iili.io/BrEmu1V.jpg") center / cover;
    box-shadow: 20px 20px 0 var(--yellow);
}

.wishlist-board::before {
    content: "";
    width: 130px;
    height: 130px;
    right: 16%;
    top: 22%;
}

.wishlist-main {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 2;
    width: min(520px, 78%);
    transform: translate(-50%, -50%);
    text-align: center;
}

.wishlist-main h2 {
    color: #fff8b8;
    text-shadow: 3px 3px 0 rgba(21,20,38,.45);
}

.wishlist-date {
    position: absolute;
    inset: auto 42px 34px 42px;
    z-index: 3;
    display: flex;
    align-items: end;
    justify-content: space-between;
    color: #fff8b8;
}

.wishlist-date strong {
    font-size: clamp(4rem, 9vw, 8rem);
    line-height: .75;
}

.wishlist-date span {
    font-family: var(--mono);
    font-weight: 900;
    text-transform: uppercase;
}

.wishlist-item {
    position: absolute;
    z-index: 4;
    max-width: 190px;
    color: #fff8b8;
    font-family: var(--mono);
    font-size: clamp(.82rem, 1.3vw, 1.12rem);
    font-weight: 900;
    line-height: .9;
    text-transform: uppercase;
}

.wi-1 { left: 19%; top: 20%; }
.wi-2 { right: 8%; top: 15%; }
.wi-3 { left: 7%; top: 13%; }
.wi-4 { left: 6%; top: 54%; }
.wi-5 { right: 7%; top: 58%; }

.zine-products {
    background:
        radial-gradient(circle at 12% 20%, rgba(66,216,207,.22), transparent 24%),
        radial-gradient(circle at 88% 72%, rgba(237,47,86,.18), transparent 28%),
        transparent;
}

.zine-products .products-grid {
    align-items: start;
}

.zine-products .product-card:nth-child(1) {
    margin-top: 44px;
}

.zine-products .product-card:nth-child(2) {
    margin-top: -22px;
}

.zine-products .product-card:nth-child(3) {
    margin-top: 72px;
}

.annotation-grid {
    display: grid;
    grid-template-columns: 1.25fr .85fr 1fr;
    gap: 20px;
}

.annotation-card {
    min-height: 460px;
    position: relative;
    overflow: hidden;
    border-radius: 36px;
    padding: 28px;
    color: var(--ink);
    background: var(--paper);
    box-shadow: 16px 16px 0 rgba(21,20,38,.13);
}

.annotation-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.annotation-card > * {
    position: relative;
    z-index: 2;
}

.ac-photo-one::before {
    background-image: linear-gradient(rgba(255,248,228,.1), rgba(255,248,228,.2)), url("https://iili.io/BrEbDJt.jpg");
}

.ac-photo-two::before {
    background-image: linear-gradient(rgba(255,248,228,.08), rgba(255,248,228,.24)), url("https://iili.io/B1Zbcj1.jpg");
}

.ac-dark {
    background: var(--ink);
    color: var(--paper);
}

.annotation-card p,
.annotation-card h3 {
    max-width: 260px;
    font-family: var(--mono);
    font-size: clamp(1rem, 2vw, 1.6rem);
    font-weight: 900;
    line-height: .95;
    text-transform: uppercase;
}

.annotation-card h3 {
    font-size: clamp(2.4rem, 4vw, 4.4rem);
    letter-spacing: -.08em;
    margin-bottom: 18px;
}

.anno-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: block;
    margin-bottom: 18px;
    background: var(--ink);
}

.ac-dark .anno-dot {
    background: var(--yellow);
}

.review-poster {
    min-height: 640px;
    position: relative;
    display: grid;
    align-content: center;
    border-radius: 44px;
    padding: clamp(30px, 6vw, 78px);
    overflow: hidden;
    background:
        linear-gradient(rgba(255,248,228,.58), rgba(255,248,228,.64)),
        url("https://iili.io/B07i1zx.jpg") center / cover;
    box-shadow: 20px 20px 0 var(--ink);
}

.review-poster::before {
    content: "";
    width: 124px;
    height: 124px;
    right: 12%;
    top: 16%;
}

.review-poster h2 {
    max-width: 780px;
}

.review-notes {
    margin-top: 36px;
    max-width: 760px;
    grid-template-columns: repeat(2, 1fr);
}

.zine-join .cta-box {
    display: block;
    max-width: 880px;
    margin: 0 auto;
    text-align: center;
}

.zine-join .cta-left h2 {
    font-size: clamp(3rem, 7vw, 7rem);
    line-height: .82;
}

@media (max-width: 900px) {
    .zine-hero {
        min-height: 100svh;
        padding: 128px 18px 64px;
    }

    .zine-hero::before {
        font-size: 3.4rem;
        left: 28px;
        top: 112px;
    }

    .zh-photo-main {
        opacity: .25;
    }

    .zh-photo-small {
        width: 170px;
        right: -44px;
        bottom: 10vh;
        border-width: 7px;
    }

    .zh-photo-strip {
        width: 140px;
        left: -32px;
        bottom: 20vh;
        border-width: 7px;
    }

    .zine-hero-copy {
        margin-top: 10vh;
    }

    .zine-hero-copy h1 {
        font-size: clamp(4.2rem, 20vw, 6.5rem);
    }

    .zine-lede {
        font-size: .82rem;
    }

    .zine-side-notes,
    .zh-word {
        display: none;
    }

    .zh-star {
        width: 70px;
        height: 70px;
    }

    .star-a {
        left: 8vw;
        top: 35vh;
    }

    .star-b {
        right: 2vw;
        top: 26vh;
    }

    .manifesto-grid,
    .annotation-grid,
    .review-notes {
        grid-template-columns: 1fr;
    }

    .wishlist-board,
    .review-poster {
        min-height: 620px;
        border-radius: 30px;
        box-shadow: 10px 10px 0 var(--yellow);
    }

    .wishlist-main {
        width: 86%;
    }

    .wishlist-item {
        font-size: .72rem;
        max-width: 110px;
    }

    .wi-1 { left: 12%; top: 22%; }
    .wi-2 { right: 5%; top: 17%; }
    .wi-3 { left: 6%; top: 12%; }
    .wi-4 { left: 7%; top: 62%; }
    .wi-5 { right: 6%; top: 62%; }

    .wishlist-date {
        inset: auto 20px 24px 20px;
    }

    .annotation-card {
        min-height: 390px;
    }

    .zine-products .product-card:nth-child(n) {
        margin-top: 0;
    }

.review-poster {
        box-shadow: 10px 10px 0 var(--ink);
    }
}

/* ===== Review Trust Refresh ===== */
.zine-reviews .review-poster {
    max-width: 1080px;
    min-height: auto;
    padding: 56px 48px;
    border-radius: 32px;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 28px 60px rgba(0,0,0,0.08);
}

.zine-reviews .review-score {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 10px 0 20px;
    flex-wrap: wrap;
}

.zine-reviews .review-score strong {
    font-size: 28px;
    font-weight: 900;
    letter-spacing: -0.03em;
    color: var(--text);
}

.zine-reviews .review-score span {
    font-size: 14px;
    color: var(--sub);
}

.zine-reviews .review-stars {
    color: #f3a51b;
    letter-spacing: 2px;
    font-size: 18px;
}

.zine-reviews .review-poster h2 {
    max-width: 760px;
    font-size: clamp(38px, 5vw, 68px);
    line-height: 0.96;
    margin-bottom: 32px;
}

.zine-reviews .review-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.zine-reviews .review-card {
    background: #faf8f3;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 22px;
    padding: 22px 22px 20px;
}

.zine-reviews .review-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    margin-bottom: 10px;
}

.zine-reviews .review-card-top strong {
    font-size: 16px;
    font-weight: 800;
    color: var(--text);
}

.zine-reviews .review-card-top span {
    color: #f3a51b;
    font-size: 13px;
    letter-spacing: 1px;
}

.zine-reviews .review-card p {
    margin: 0;
    font-size: 16px;
    line-height: 1.65;
    color: rgba(26,26,46,0.78);
}

@media (max-width: 900px) {
    .zine-reviews .review-poster {
        padding: 34px 22px;
        border-radius: 24px;
    }

    .zine-reviews .review-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== Homepage Density Pass ===== */
.zine-hero {
    min-height: 94svh;
    background:
        radial-gradient(circle at 18% 24%, rgba(198, 62, 50, 0.12), transparent 16%),
        radial-gradient(circle at 84% 72%, rgba(232, 205, 101, 0.16), transparent 18%),
        linear-gradient(90deg, rgba(23, 29, 44, 0.06) 1px, transparent 1px),
        linear-gradient(rgba(23, 29, 44, 0.06) 1px, transparent 1px),
        #f6f8fb;
    background-size: auto, auto, 44px 44px, 44px 44px, auto;
}

.zine-hero::before {
    content: none !important;
}

.zine-hero::after {
    opacity: 0.28;
    background-image:
        radial-gradient(circle, rgba(198, 62, 50, 0.38) 0 10px, transparent 11px),
        radial-gradient(circle, rgba(17, 19, 28, 0.12) 0 6px, transparent 7px),
        radial-gradient(circle, rgba(232, 205, 101, 0.42) 0 12px, transparent 13px);
    background-position: 18% 30%, 74% 26%, 85% 74%;
    background-size: 260px 220px, 220px 200px, 300px 260px;
}

.zine-hero-media {
    display: block !important;
    opacity: 1;
}

.zh-photo-main {
    inset: auto;
    width: clamp(210px, 20vw, 300px);
    aspect-ratio: 4 / 5;
    left: clamp(34px, 6vw, 90px);
    top: clamp(150px, 18vh, 200px);
    border: 10px solid rgba(255,255,255,0.88);
    background-image: url("https://iili.io/B07ijdF.jpg");
    opacity: .88;
    box-shadow: 18px 18px 0 rgba(22, 25, 33, 0.08);
    transform: rotate(-4deg);
    filter: saturate(1.02) contrast(1.02);
}

.zh-photo-small {
    width: clamp(220px, 23vw, 340px);
    right: clamp(40px, 6vw, 98px);
    top: clamp(150px, 18vh, 210px);
    bottom: auto;
    border: 10px solid rgba(255,255,255,0.9);
    background-image: url("https://iili.io/BrEmu1V.jpg");
    box-shadow: 18px 18px 0 rgba(22, 25, 33, 0.08);
    transform: rotate(5deg);
}

.zh-photo-strip {
    width: clamp(160px, 15vw, 220px);
    left: auto;
    right: clamp(180px, 18vw, 320px);
    bottom: clamp(86px, 12vh, 130px);
    border: 8px solid rgba(255,255,255,0.86);
    background-image: url("https://iili.io/B1Zbcj1.jpg");
    box-shadow: 14px 14px 0 rgba(22, 25, 33, 0.08);
    transform: rotate(-7deg);
}

.zh-word,
.zh-dot,
.zh-star {
    display: none;
}

.zine-hero-copy {
    width: min(100%, 820px);
    margin: 6vh auto 0;
}

.zine-hero-copy h1 {
    font-size: clamp(4.6rem, 12vw, 11.5rem);
    line-height: .77;
    letter-spacing: -.095em;
}

.zine-lede {
    max-width: 620px;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(1rem, 1.5vw, 1.24rem);
    font-weight: 500;
    line-height: 1.55;
    text-transform: none;
    color: rgba(24, 35, 58, 0.75);
}

.manifesto-grid {
    align-items: start;
}

.manifesto-notes {
    gap: 14px;
    padding: 18px 0 0;
}

.manifesto-notes p {
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(19, 22, 31, 0.08);
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(1.08rem, 1.55vw, 1.46rem);
    font-weight: 600;
    line-height: 1.18;
    letter-spacing: -0.03em;
    color: rgba(21, 32, 53, 0.78);
}

.manifesto-notes span {
    width: 14px;
    height: 14px;
    background: #c63e32;
    box-shadow: 0 0 0 8px rgba(198, 62, 50, 0.08);
}

.wishlist-board {
    min-height: 760px;
    background:
        linear-gradient(rgba(191, 213, 241, 0.86), rgba(191, 213, 241, 0.88)),
        url("https://iili.io/BrEmu1V.jpg") center 58% / 58% auto no-repeat,
        radial-gradient(circle at 20% 80%, rgba(232, 205, 101, 0.18), transparent 20%),
        linear-gradient(90deg, rgba(21, 20, 38, 0.05) 1px, transparent 1px),
        linear-gradient(rgba(21, 20, 38, 0.05) 1px, transparent 1px),
        #dbe8f7;
    background-size: auto, auto, auto, 44px 44px, 44px 44px, auto;
}

.wishlist-board::before {
    content: "";
    position: absolute;
    inset: 36px;
    border-radius: 28px;
    border: 1px solid rgba(255,255,255,0.35);
    background:
        radial-gradient(circle at 22% 26%, rgba(255,255,255,0.38), transparent 16%),
        radial-gradient(circle at 78% 20%, rgba(255,255,255,0.28), transparent 18%);
    pointer-events: none;
}

.wishlist-main {
    width: min(580px, 82%);
}

.wishlist-main h2 {
    color: #e7efba;
    text-shadow: 4px 4px 0 rgba(33, 42, 62, 0.22);
}

.wishlist-item {
    background: rgba(239, 245, 255, 0.7);
    backdrop-filter: blur(4px);
    color: rgba(215, 222, 166, 0.96);
}

@media (max-width: 900px) {
    .zine-hero {
        min-height: auto;
        padding-top: 132px;
        padding-bottom: 54px;
    }

    .zine-hero-copy {
        width: 100%;
        margin-top: 0;
    }

    .zh-photo-main {
        width: 140px;
        top: 110px;
        left: 18px;
    }

    .zh-photo-small {
        width: 150px;
        top: 120px;
        right: 18px;
    }

    .zh-photo-strip {
        width: 112px;
        right: 112px;
        bottom: 26px;
    }

    .wishlist-board {
        min-height: 680px;
        background-size: auto, 92% auto, auto, 34px 34px, 34px 34px, auto;
        background-position: center, center 62%, center, center, center, center;
    }

    .wishlist-board::before {
        inset: 18px;
    }

    .manifesto-notes p {
        font-size: 1.02rem;
    }
}

/* ===== Sitewide Upgrade Pass ===== */
body {
    background: #ffffff;
    color: #141722;
}

.navbar {
    backdrop-filter: blur(14px);
    background: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(20, 23, 34, 0.08);
}

.nav-container {
    max-width: 1320px;
}

.nav-logo {
    font-size: clamp(2rem, 2.4vw, 2.6rem);
    letter-spacing: -0.06em;
}

.nav-links {
    gap: 32px;
}

.nav-link {
    font-family: var(--mono);
    font-size: 0.78rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(20, 23, 34, 0.6);
}

.nav-link:hover,
.nav-link.active {
    color: #141722;
}

.cart-btn,
.btn-main,
.btn-outline {
    min-height: 54px;
    border-radius: 999px;
    font-family: var(--mono);
    font-size: 0.82rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.btn-main,
.cart-btn {
    box-shadow: 0 10px 24px rgba(20, 23, 34, 0.08);
}

.btn-outline {
    background: rgba(255,255,255,0.82);
}

.section-head {
    align-items: end;
    gap: 20px;
    margin-bottom: 30px;
}

.sh-tag {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid rgba(20, 23, 34, 0.1);
    background: #fff;
    color: #c63e32;
    font-family: var(--mono);
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.sh-title {
    max-width: 780px;
    letter-spacing: -0.06em;
}

.zine-products .product-card,
.products-grid .product-card {
    border: 1px solid rgba(20, 23, 34, 0.08);
    box-shadow: 0 18px 40px rgba(20, 23, 34, 0.06);
    background: #fff;
}

.pc-window-bar {
    background: linear-gradient(180deg, #f9f9f7, #ecebe6);
    border-bottom: 1px solid rgba(20, 23, 34, 0.08);
}

.pc-details {
    background: #fff;
}

.pc-name {
    letter-spacing: -0.04em;
}

.pc-subtitle {
    color: rgba(20, 23, 34, 0.56);
}

.pc-price-row {
    align-items: baseline;
}

.drops-section,
.lookbook-section,
.reviews-section,
.wishlist-section,
.zine-manifesto {
    position: relative;
}

.annotation-card,
.review-card,
.wishlist-board,
.review-poster {
    box-shadow: 0 22px 52px rgba(20, 23, 34, 0.07);
}

.annotation-card {
    border: 1px solid rgba(20, 23, 34, 0.08);
}

.zine-reviews .review-card-top strong {
    text-transform: uppercase;
    font-family: var(--mono);
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    color: rgba(20, 23, 34, 0.64);
}

.footer {
    background: #fff;
    border-top: 1px solid rgba(20, 23, 34, 0.08);
}

.footer-top {
    padding-top: 60px;
}

.footer a,
.footer p,
.footer-bottom {
    color: rgba(20, 23, 34, 0.64);
}

.footer .nav-logo,
.footer .ft-links h4 {
    color: #141722;
}

.ft-socials a {
    border-color: rgba(20, 23, 34, 0.14);
    background: #fff;
}

.toast {
    border-radius: 22px;
    border: 1px solid rgba(20, 23, 34, 0.08);
    box-shadow: 0 20px 40px rgba(20, 23, 34, 0.14);
}

@media (max-width: 900px) {
    .nav-links {
        gap: 18px;
    }

    .nav-link {
        font-size: 0.74rem;
        letter-spacing: 0.16em;
    }

    .cart-btn,
    .btn-main,
    .btn-outline {
        min-height: 50px;
        font-size: 0.76rem;
    }

    .section-head {
        align-items: flex-start;
    }
}

/* ===== Unified Editorial System Pass ===== */
body {
    cursor: auto;
    background: #fcfbf7;
}

a,
button,
select,
input,
textarea {
    cursor: pointer;
}

.custom-cursor,
.snoopy-mascot {
    display: none !important;
}

.zine-home,
body[data-page="shop"],
body[data-page="detail"],
body[data-page="checkout"],
body[data-page="about"] {
    background:
        radial-gradient(circle at 12% 8%, rgba(180, 50, 45, 0.06), transparent 18%),
        radial-gradient(circle at 88% 14%, rgba(216, 200, 117, 0.1), transparent 18%),
        linear-gradient(90deg, rgba(20, 23, 34, 0.035) 1px, transparent 1px),
        linear-gradient(rgba(20, 23, 34, 0.035) 1px, transparent 1px),
        #fcfbf7;
    background-size: auto, auto, 38px 38px, 38px 38px, auto;
}

.page-meta-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.page-meta-strip span {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid rgba(20, 23, 34, 0.08);
    background: rgba(251, 249, 243, 0.96);
    color: rgba(20, 23, 34, 0.62);
    font-family: var(--mono);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.zine-hero {
    padding: 148px 24px 60px;
}

.zine-hero-copy {
    position: relative;
    width: min(100%, 960px);
    padding: 42px 42px 34px;
    border: 1px solid rgba(20, 23, 34, 0.08);
    border-radius: 38px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 28px 64px rgba(20, 23, 34, 0.08);
    backdrop-filter: blur(12px);
    text-align: left;
}

.hero-meta-strip {
    margin-bottom: 18px;
}

.zine-hero-copy .zine-kicker {
    margin-bottom: 10px;
}

.zine-hero-copy h1 {
    max-width: 860px;
}

.zine-lede {
    max-width: 680px;
    margin: 16px 0 0;
}

.zine-actions {
    margin-top: 28px;
}

.hero-mini-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 26px;
}

.hero-mini-card {
    min-height: 132px;
    padding: 18px;
    border-radius: 24px;
    border: 1px solid rgba(20, 23, 34, 0.08);
    background: linear-gradient(180deg, #ffffff, #f9f6f0);
    box-shadow: 0 18px 36px rgba(20, 23, 34, 0.05);
}

.hero-mini-card strong {
    display: block;
    margin-bottom: 10px;
    color: #141722;
    font-size: 1.08rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.hero-mini-card span {
    display: block;
    color: rgba(20, 23, 34, 0.62);
    font-size: 0.95rem;
    line-height: 1.55;
}

.manifesto-shell {
    padding: 34px 34px 18px;
    border: 1px solid rgba(20, 23, 34, 0.08);
    border-radius: 34px;
    background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(249,247,241,.94));
    box-shadow: 0 24px 56px rgba(20, 23, 34, 0.06);
}

.manifesto-grid {
    gap: 42px;
}

.wishlist-board {
    display: grid;
    grid-template-columns: 120px minmax(0, 1.2fr) minmax(300px, 0.88fr);
    grid-template-rows: auto auto;
    align-items: start;
    gap: 24px;
    min-height: unset;
    padding: 38px;
    background:
        linear-gradient(180deg, rgba(255,255,255,.92), rgba(247,244,237,.9)),
        linear-gradient(90deg, rgba(20,23,34,.04) 1px, transparent 1px),
        linear-gradient(rgba(20,23,34,.04) 1px, transparent 1px),
        #f7f4ee;
    background-size: auto, 28px 28px, 28px 28px, auto;
}

.wishlist-board::before {
    inset: 22px;
    border-radius: 24px;
    background:
        radial-gradient(circle at 20% 22%, rgba(216,200,117,.12), transparent 14%),
        radial-gradient(circle at 82% 18%, rgba(180,50,45,.08), transparent 16%);
}

.wishlist-date {
    grid-column: 1;
    grid-row: 1 / span 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100%;
    padding: 12px 0;
}

.wishlist-date strong {
    font-size: clamp(4.2rem, 8vw, 6.2rem);
    line-height: .9;
    letter-spacing: -0.08em;
    color: rgba(216, 200, 117, 0.9);
}

.wishlist-date span {
    font-family: var(--mono);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(20, 23, 34, 0.54);
}

.wishlist-main {
    grid-column: 2;
    grid-row: 1;
    width: 100%;
    max-width: none;
}

.wishlist-main h2 {
    max-width: 620px;
    font-size: clamp(3.4rem, 6vw, 5.5rem);
    line-height: .9;
    color: #141722;
    text-shadow: none;
}

.wishlist-aside {
    grid-column: 3;
    grid-row: 1;
    padding: 22px;
    border: 1px solid rgba(20, 23, 34, 0.08);
    border-radius: 26px;
    background: rgba(255,255,255,.94);
    box-shadow: 0 18px 36px rgba(20, 23, 34, 0.05);
}

.wishlist-note-label {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    background: #fbf9f3;
    border: 1px solid rgba(20,23,34,.08);
    color: #b4322d;
    font-family: var(--mono);
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.wishlist-aside p {
    margin: 14px 0 0;
    color: rgba(20, 23, 34, 0.66);
    font-size: 0.98rem;
    line-height: 1.65;
}

.wishlist-stack {
    grid-column: 2 / 4;
    grid-row: 2;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.wishlist-preview {
    min-height: 168px;
    padding: 18px;
    border-radius: 24px;
    border: 1px solid rgba(20, 23, 34, 0.08);
    background: #fff;
    box-shadow: 0 18px 34px rgba(20, 23, 34, 0.05);
}

.wishlist-preview span {
    display: block;
    margin-bottom: 14px;
    color: rgba(20, 23, 34, 0.48);
    font-family: var(--mono);
    font-size: 0.64rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.wishlist-preview strong {
    display: block;
    margin-bottom: 10px;
    color: #141722;
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.wishlist-preview p {
    margin: 0;
    color: rgba(20, 23, 34, 0.64);
    font-size: 0.94rem;
    line-height: 1.55;
}

.wishlist-item {
    display: none;
}

.shop-hero-content,
.about-hero-content,
.checkout-hero-content {
    border-radius: 36px;
}

.shop-hero-meta,
.about-hero-meta,
.checkout-hero-meta {
    justify-content: center;
    margin-top: 22px;
}

.shop-controls,
.pd-gallery-shell,
.pd-info-shell,
.pd-panel-card,
.co-section,
.qris-screen-inner,
.story-visual,
.value-card,
.team-card,
.cta-box,
.review-poster {
    border-radius: 32px;
}

.pd-gallery-shell,
.pd-info-shell,
.pd-panel-card {
    background: linear-gradient(180deg, #ffffff, #faf8f3);
    border: 1px solid rgba(20, 23, 34, 0.08);
    box-shadow: 0 24px 52px rgba(20, 23, 34, 0.06);
}

.zine-join .cta-box {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
    gap: 24px;
    align-items: stretch;
    background: linear-gradient(180deg, #ffffff, #faf8f3);
}

.cta-right {
    display: flex;
}

.join-sheet {
    width: 100%;
    padding: 22px;
    border-radius: 26px;
    border: 1px solid rgba(20, 23, 34, 0.08);
    background: #fff;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.9);
}

.join-kicker {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    background: #fbf9f3;
    border: 1px solid rgba(20,23,34,.08);
    color: #b4322d;
    font-family: var(--mono);
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.join-sheet strong {
    display: block;
    margin: 14px 0 10px;
    color: #141722;
    font-size: 1.4rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.04em;
}

.join-sheet p {
    margin: 0;
    color: rgba(20, 23, 34, 0.64);
    font-size: 0.98rem;
    line-height: 1.65;
}

.join-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.join-points span {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid rgba(20, 23, 34, 0.08);
    background: #fbf9f3;
    color: rgba(20, 23, 34, 0.62);
    font-family: var(--mono);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

body[data-page="about"] .values-grid,
body[data-page="about"] .team-grid {
    gap: 22px;
}

body[data-page="checkout"] .checkout-wrap,
body[data-page="detail"] .pd-section,
body[data-page="about"] .story-section,
body[data-page="about"] .values-section,
body[data-page="about"] .timeline-section,
body[data-page="about"] .team-section {
    background: linear-gradient(180deg, #f8f5ef 0, #ffffff 180px);
}

@media (max-width: 1024px) {
    .wishlist-board {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .wishlist-date,
    .wishlist-main,
    .wishlist-aside,
    .wishlist-stack {
        grid-column: auto;
        grid-row: auto;
    }

    .wishlist-date {
        flex-direction: row;
        align-items: center;
        min-height: auto;
        gap: 16px;
    }

    .wishlist-stack {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .zine-join .cta-box {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .zine-hero-copy {
        padding: 28px 22px 24px;
        border-radius: 28px;
        text-align: center;
    }

    .hero-meta-strip,
    .shop-hero-meta,
    .about-hero-meta,
    .checkout-hero-meta {
        justify-content: center;
    }

    .zine-lede {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-mini-grid,
    .wishlist-stack {
        grid-template-columns: 1fr;
    }

    .manifesto-shell,
    .wishlist-board {
        padding: 22px;
        border-radius: 28px;
    }

    .wishlist-main h2 {
        font-size: clamp(2.6rem, 12vw, 4rem);
    }
}

/* ===== Homepage Cleanup Pass ===== */
body[data-page="home"] .zine-hero {
    min-height: auto;
    padding: 132px 24px 42px;
    background:
        radial-gradient(circle at 50% 0%, rgba(216, 200, 117, 0.12), transparent 18%),
        linear-gradient(90deg, rgba(20, 23, 34, 0.03) 1px, transparent 1px),
        linear-gradient(rgba(20, 23, 34, 0.03) 1px, transparent 1px),
        #fcfbf7;
    background-size: auto, 36px 36px, 36px 36px, auto;
}

body[data-page="home"] .zine-hero::before,
body[data-page="home"] .zine-hero::after,
body[data-page="home"] .manifesto-title::after,
body[data-page="home"] .zine-reviews .review-poster::before {
    content: none !important;
    display: none !important;
}

body[data-page="home"] .zine-hero-media,
body[data-page="home"] .zine-ticker {
    display: none !important;
}

body[data-page="home"] .zine-hero-copy {
    width: min(100%, 860px);
    margin: 0 auto;
    padding: 34px 30px 28px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 20px 48px rgba(20, 23, 34, 0.06);
    text-align: center;
}

body[data-page="home"] .hero-meta-strip,
body[data-page="home"] .zine-actions {
    justify-content: center;
}

body[data-page="home"] .zine-hero-copy h1 {
    max-width: none;
    margin: 10px auto 0;
    font-size: clamp(3.8rem, 10vw, 8.6rem);
    line-height: 0.82;
    letter-spacing: -0.09em;
}

body[data-page="home"] .zine-lede {
    max-width: 640px;
    margin: 16px auto 0;
}

body[data-page="home"] .hero-mini-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 22px;
}

body[data-page="home"] .hero-mini-card {
    min-height: 36px;
    padding: 0 16px;
    border-radius: 999px;
    background: #fbf9f3;
    box-shadow: none;
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(20, 23, 34, 0.08);
}

body[data-page="home"] .hero-mini-card strong {
    margin: 0;
    font-family: var(--mono);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

body[data-page="home"] .hero-mini-card span {
    display: none;
}

body[data-page="home"] .zine-manifesto {
    padding-top: 12px;
}

body[data-page="home"] .manifesto-shell {
    max-width: 1180px;
    margin: 0 auto;
    padding: 30px;
    background: #fff;
    box-shadow: 0 18px 42px rgba(20, 23, 34, 0.05);
}

body[data-page="home"] .manifesto-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 30px;
    align-items: start;
}

body[data-page="home"] .manifesto-title h2 {
    max-width: 520px;
    font-size: clamp(2.5rem, 4.8vw, 4.1rem);
    line-height: 0.94;
}

body[data-page="home"] .manifesto-notes {
    gap: 12px;
    padding-top: 4px;
}

body[data-page="home"] .manifesto-notes p {
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(20, 23, 34, 0.08);
    font-family: var(--mono);
    font-size: clamp(0.82rem, 1vw, 0.95rem);
    font-weight: 700;
    line-height: 1.65;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(20, 23, 34, 0.7);
}

body[data-page="home"] .manifesto-notes span {
    width: 10px;
    height: 10px;
    background: #b4322d;
    box-shadow: none;
}

body[data-page="home"] .wishlist-section {
    padding-top: 16px;
}

body[data-page="home"] .wishlist-board {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.95fr);
    gap: 24px;
    min-height: auto;
    padding: 30px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(249, 247, 241, 0.94)),
        linear-gradient(90deg, rgba(20, 23, 34, 0.03) 1px, transparent 1px),
        linear-gradient(rgba(20, 23, 34, 0.03) 1px, transparent 1px),
        #fcfbf7;
    background-size: auto, 24px 24px, 24px 24px, auto;
}

body[data-page="home"] .wishlist-board::before,
body[data-page="home"] .wishlist-date,
body[data-page="home"] .wishlist-aside,
body[data-page="home"] .wishlist-item {
    display: none !important;
}

body[data-page="home"] .wishlist-main,
body[data-page="home"] .wishlist-stack {
    grid-column: auto;
    grid-row: auto;
}

body[data-page="home"] .wishlist-main {
    align-self: center;
    padding-right: 12px;
}

body[data-page="home"] .wishlist-main h2 {
    max-width: 420px;
    font-size: clamp(2.6rem, 4.8vw, 4.2rem);
    line-height: 0.95;
    color: #141722;
}

body[data-page="home"] .wishlist-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    align-content: start;
}

body[data-page="home"] .wishlist-preview {
    min-height: 140px;
    padding: 16px 18px;
    border-radius: 20px;
}

body[data-page="home"] .wishlist-preview strong {
    font-size: 1rem;
}

body[data-page="home"] .wishlist-preview p {
    font-size: 0.9rem;
}

body[data-page="home"] .zine-reviews .review-poster {
    padding: 40px 32px;
}

body[data-page="home"] .zine-reviews .review-poster h2 {
    max-width: 700px;
    font-size: clamp(2.4rem, 5vw, 4.1rem);
}

body[data-page="home"] .zine-join .cta-box {
    gap: 18px;
}

@media (max-width: 900px) {
    body[data-page="home"] .zine-hero {
        padding: 118px 20px 28px;
    }

    body[data-page="home"] .zine-hero-copy {
        padding: 26px 18px 22px;
        border-radius: 24px;
    }

    body[data-page="home"] .zine-hero-copy h1 {
        font-size: clamp(3rem, 16vw, 5.4rem);
    }

    body[data-page="home"] .manifesto-grid,
    body[data-page="home"] .wishlist-board {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    body[data-page="home"] .manifesto-shell,
    body[data-page="home"] .wishlist-board {
        padding: 22px 18px;
        border-radius: 24px;
    }

    body[data-page="home"] .wishlist-main {
        padding-right: 0;
    }

    body[data-page="home"] .wishlist-main h2,
    body[data-page="home"] .zine-reviews .review-poster h2 {
        font-size: clamp(2rem, 9vw, 3.2rem);
    }

    body[data-page="home"] .hero-mini-grid,
    body[data-page="home"] .wishlist-stack {
        gap: 8px;
    }

    body[data-page="home"] .wishlist-stack {
        grid-template-columns: 1fr;
    }

    body[data-page="home"] .hero-mini-card {
        min-height: 34px;
        padding: 0 12px;
    }

    body[data-page="home"] .manifesto-notes p {
        font-size: 0.76rem;
        line-height: 1.7;
    }
}

/* ===== Homepage Cleanup Pass v3 ===== */
body[data-page="home"] .zine-hero-copy {
    padding: 0;
    background: transparent;
    border-color: transparent;
    box-shadow: none;
    backdrop-filter: none;
}

body[data-page="home"] .zine-manifesto {
    display: none !important;
}

body[data-page="home"] .wishlist-section {
    padding-top: 8px;
}

body[data-page="home"] .wishlist-board {
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: start;
}

body[data-page="home"] .wishlist-main {
    position: static;
    inset: auto;
    left: auto;
    top: auto;
    z-index: auto;
    width: 100%;
    max-width: none;
    transform: none;
    align-self: start;
    padding-right: 0;
    text-align: left;
}

body[data-page="home"] .wishlist-main h2 {
    max-width: 760px;
    font-size: clamp(2.6rem, 4.8vw, 4.4rem);
    line-height: 0.94;
}

body[data-page="home"] .wishlist-stack {
    grid-column: 1 / -1;
    grid-row: auto;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

body[data-page="home"] .zine-join .cta-box {
    padding: 0;
    gap: 20px;
    background: transparent !important;
    border: 0;
    box-shadow: none;
}

body[data-page="home"] .zine-join .cta-left {
    padding: 10px 0;
}

body[data-page="home"] .zine-join .cta-left p,
body[data-page="home"] .zine-join .cta-left small {
    color: rgba(20, 23, 34, 0.64);
}

body[data-page="home"] .zine-join .join-sheet {
    background: rgba(255, 255, 255, 0.76);
    box-shadow: none;
}

@media (max-width: 1100px) {
    body[data-page="home"] .wishlist-stack {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* ===== Footer & Mobile Finish Pass ===== */
.footer {
    padding-top: 40px;
    background:
        linear-gradient(180deg, rgba(252, 251, 247, 0), rgba(255, 255, 255, 0.94) 110px, #ffffff 100%);
}

.footer-top {
    grid-template-columns: minmax(0, 1.6fr) repeat(3, minmax(140px, 0.8fr));
    gap: 28px;
    padding-top: 40px;
    padding-bottom: 28px;
}

.ft-brand p {
    max-width: 320px;
    margin-top: 14px;
    font-size: 0.92rem;
    line-height: 1.72;
}

.ft-links h4 {
    margin-bottom: 14px;
}

.ft-links a {
    margin-bottom: 8px;
    line-height: 1.55;
}

.footer-bottom {
    padding: 18px 0 22px;
}

.ft-pay {
    flex-wrap: wrap;
}

.ft-pay span {
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid rgba(20, 23, 34, 0.08);
    background: #fbf9f3;
}

.footer-bigtext {
    margin-top: 2px;
    font-size: clamp(5rem, 16vw, 11rem);
    line-height: 0.78;
    color: rgba(20, 23, 34, 0.04) !important;
}

@media (max-width: 900px) {
    .container {
        padding-inline: 18px;
    }

    .section-head {
        gap: 14px;
        margin-bottom: 22px;
    }

    .sh-title {
        font-size: clamp(2.2rem, 10vw, 3.4rem);
        line-height: 0.94;
    }

    .sh-tabs {
        gap: 10px;
    }

    .tab {
        min-height: 44px;
        padding-inline: 18px;
    }

    .page-meta-strip {
        gap: 8px;
    }

    .page-meta-strip span {
        min-height: 30px;
        padding: 0 10px;
        font-size: 0.62rem;
        letter-spacing: 0.14em;
    }

    body[data-page="home"] .zine-hero,
    body[data-page="shop"] .shop-hero,
    body[data-page="about"] .about-hero,
    body[data-page="checkout"] .checkout-hero {
        padding-top: 112px;
    }

    body[data-page="home"] .zine-products,
    body[data-page="home"] .zine-lookbook,
    body[data-page="home"] .zine-reviews,
    body[data-page="home"] .zine-join,
    body[data-page="home"] .wishlist-section,
    body[data-page="about"] .story-section,
    body[data-page="about"] .values-section,
    body[data-page="about"] .timeline-section,
    body[data-page="about"] .team-section,
    body[data-page="detail"] .pd-description {
        padding-block: 64px;
    }

    body[data-page="home"] .zine-actions {
        flex-direction: column;
        align-items: stretch;
    }

    body[data-page="home"] .zine-actions .btn-main,
    body[data-page="home"] .zine-actions .btn-outline {
        width: 100%;
        justify-content: center;
    }

    .shop-hero-content,
    .about-hero-content,
    .checkout-hero-content,
    .co-section,
    .qris-screen-inner,
    .story-visual,
    .value-card,
    .team-card,
    .review-poster,
    .pd-gallery-shell,
    .pd-info-shell,
    .pd-panel-card {
        border-radius: 24px;
    }

    .footer {
        padding-top: 26px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 20px;
        padding-top: 28px;
        padding-bottom: 22px;
    }

    .ft-brand p {
        max-width: none;
        font-size: 0.9rem;
    }

    .ft-socials {
        margin-top: 16px;
    }

    .ft-socials a {
        width: 34px;
        height: 34px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        text-align: left;
    }

    .ft-pay {
        justify-content: flex-start;
    }

    .footer-bigtext {
        display: none;
    }
}

@media (max-width: 640px) {
    .shop-controls {
        gap: 12px;
    }

    .product-card,
    .value-card,
    .team-card,
    .review-card {
        border-radius: 20px;
    }

    .pc-window-bar {
        min-height: 34px;
    }

    .pd-layout {
        gap: 22px;
    }

    .trust-row {
        gap: 12px;
        flex-wrap: wrap;
    }

    .checkout-wrap {
        padding-bottom: 56px;
    }
}

/* ===== Homepage Product Hero Pass ===== */
body[data-page="home"] .zine-hero {
    display: grid !important;
    grid-template-columns: minmax(0, 0.96fr) minmax(360px, 0.74fr) !important;
    gap: clamp(28px, 5vw, 74px) !important;
    align-items: center !important;
    min-height: min(780px, 92svh) !important;
    padding: 126px clamp(24px, 5vw, 82px) 48px !important;
    overflow: hidden !important;
    isolation: isolate;
}

body[data-page="home"] .zine-hero-copy {
    grid-column: 1 !important;
    grid-row: 1 !important;
    width: min(100%, 760px) !important;
    margin: 0 !important;
    text-align: left !important;
    position: relative;
    z-index: 2;
}

body[data-page="home"] .hero-meta-strip,
body[data-page="home"] .zine-actions {
    justify-content: flex-start !important;
}

body[data-page="home"] .zine-hero-copy h1 {
    max-width: 760px !important;
    font-size: clamp(4rem, 8.2vw, 8.8rem) !important;
    line-height: 0.8 !important;
}

body[data-page="home"] .zine-lede {
    max-width: 570px !important;
    margin-inline: 0 !important;
}

body[data-page="home"] .hero-mini-grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    justify-content: stretch !important;
    max-width: 640px !important;
}

body[data-page="home"] .hero-mini-card {
    width: 100% !important;
    min-height: 74px !important;
    align-items: flex-start !important;
    justify-content: center !important;
    flex-direction: column !important;
    padding: 14px 16px !important;
    border-radius: 20px !important;
}

body[data-page="home"] .hero-mini-card span {
    display: block !important;
    margin-top: 7px;
    font-size: 0.78rem;
    line-height: 1.35;
    color: rgba(20, 23, 34, 0.62);
}

body[data-page="home"] .zine-hero-media {
    display: block !important;
    grid-column: 2 !important;
    grid-row: 1 !important;
    position: relative !important;
    width: min(100%, 570px) !important;
    height: clamp(460px, 46vw, 610px) !important;
    justify-self: end !important;
    z-index: 1;
}

body[data-page="home"] .zh-photo {
    position: absolute !important;
    display: block !important;
    border: 1px solid rgba(20, 23, 34, 0.1) !important;
    border-radius: 28px !important;
    background-color: #fff !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: 82% auto !important;
    box-shadow: 0 22px 54px rgba(20, 23, 34, 0.1) !important;
    opacity: 1 !important;
    filter: none !important;
}

body[data-page="home"] .zh-photo::after {
    content: none !important;
    display: none !important;
}

body[data-page="home"] .zh-photo-main {
    inset: 3% auto auto 8% !important;
    width: 78% !important;
    height: 72% !important;
    background-image: url("../img/products/lany-soft-jacket.png") !important;
    transform: rotate(-2.5deg) !important;
    z-index: 2;
}

body[data-page="home"] .zh-photo-small {
    inset: auto 0 4% auto !important;
    width: 46% !important;
    height: 38% !important;
    background-image: url("../img/products/daniel-caesar-knit.png") !important;
    transform: rotate(4.5deg) !important;
    z-index: 3;
}

body[data-page="home"] .zh-photo-strip {
    inset: auto auto 0 0 !important;
    width: 41% !important;
    height: 31% !important;
    background-image: url("../img/products/frank-ocean-jersey.png") !important;
    transform: rotate(-6deg) !important;
    z-index: 4;
}

body[data-page="home"] .zh-word,
body[data-page="home"] .zh-dot,
body[data-page="home"] .zh-star {
    display: none !important;
}

@media (max-width: 1100px) {
    body[data-page="home"] .zine-hero {
        grid-template-columns: minmax(0, 1fr) minmax(300px, 0.62fr) !important;
        gap: 28px !important;
    }

    body[data-page="home"] .hero-mini-grid {
        grid-template-columns: 1fr !important;
        max-width: 520px !important;
    }
}

@media (max-width: 900px) {
    body[data-page="home"] .zine-hero {
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        min-height: auto !important;
        gap: 16px !important;
        padding: 94px 18px 22px !important;
    }

    body[data-page="home"] .zine-hero-media {
        order: 1;
        width: 100% !important;
        height: 205px !important;
        max-width: none !important;
        align-self: stretch !important;
    }

    body[data-page="home"] .zine-hero-copy {
        order: 2;
        width: 100% !important;
    }

    body[data-page="home"] .zine-hero-copy h1 {
        font-size: clamp(2.4rem, 14vw, 3.8rem) !important;
        line-height: 0.86 !important;
    }

    body[data-page="home"] .hero-mini-grid {
        display: none !important;
    }

    body[data-page="home"] .zh-photo {
        border-radius: 22px !important;
        background-size: 78% auto !important;
        box-shadow: 0 16px 36px rgba(20, 23, 34, 0.09) !important;
    }

    body[data-page="home"] .zh-photo-main {
        inset: 7% auto auto 1% !important;
        width: 68% !important;
        height: 84% !important;
    }

    body[data-page="home"] .zh-photo-small {
        inset: 2% 1% auto auto !important;
        width: 39% !important;
        height: 47% !important;
    }

    body[data-page="home"] .zh-photo-strip {
        inset: auto 8% 0 auto !important;
        width: 42% !important;
        height: 37% !important;
    }

    .sh-tabs {
        flex-wrap: wrap !important;
        overflow: visible !important;
        padding-bottom: 0 !important;
    }
}

@media (max-width: 640px) {
    body[data-page="home"] .zine-hero-media {
        height: 190px !important;
    }

    body[data-page="home"] .hero-mini-card span {
        font-size: 0.76rem;
    }

    .sh-tabs {
        gap: 8px !important;
    }

    .sh-tabs .tab {
        min-height: 44px !important;
        padding-inline: 16px !important;
    }
}

/* ===== Micro Interaction Pass ===== */
:root {
    --clubo-ease: cubic-bezier(0.22, 1, 0.36, 1);
    --clubo-ease-soft: cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-link,
.cart-btn,
.btn-main,
.btn-outline,
.tab,
.sh-tag,
.page-meta-strip span,
.hero-mini-card,
.wishlist-preview,
.join-points span,
.product-card,
.annotation-card,
.review-card,
.value-card,
.team-card,
.pd-gallery-shell,
.pd-info-shell,
.pd-panel-card,
.co-section,
.qris-screen-inner,
.review-poster,
.cta-box,
.join-sheet,
.ft-socials a,
.ft-links a,
.add-btn,
body[data-page="checkout"] .cart-item,
body[data-page="checkout"] .ship-option,
body[data-page="checkout"] .form-group input,
body[data-page="checkout"] .form-group select,
body[data-page="checkout"] .form-group textarea,
body[data-page="detail"] .pd-tab,
body[data-page="detail"] .qty-btn,
body[data-page="detail"] .size-pill,
body[data-page="detail"] .trust-card {
    transition:
        transform 0.32s var(--clubo-ease),
        box-shadow 0.32s var(--clubo-ease),
        border-color 0.26s ease,
        background-color 0.26s ease,
        color 0.22s ease,
        opacity 0.22s ease;
}

.nav-link {
    position: relative;
    padding-block: 6px;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -4px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: center;
    opacity: 0.72;
    transition: transform 0.28s var(--clubo-ease-soft);
}

.nav-link.active::after {
    transform: scaleX(1);
}

.page-meta-strip span,
.hero-mini-card,
.wishlist-preview,
.join-points span,
.sh-tag {
    will-change: transform;
}

.ft-links a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.ft-links a::before {
    content: "";
    width: 0;
    height: 1px;
    background: currentColor;
    opacity: 0.6;
    transition: width 0.24s var(--clubo-ease);
}

.add-btn.added {
    animation: clubo-added-pop 0.55s var(--clubo-ease);
}

.product-card {
    transform-origin: center bottom;
}

.pc-window-bar,
.pc-window-name,
.pc-window-dots span,
.pc-photo-img,
.pc-cloth,
.pc-details h3,
.pc-price {
    transition:
        transform 0.32s var(--clubo-ease),
        color 0.24s ease,
        background-color 0.24s ease,
        box-shadow 0.32s var(--clubo-ease),
        filter 0.32s var(--clubo-ease);
}

body[data-page="checkout"] .form-group input:focus,
body[data-page="checkout"] .form-group select:focus,
body[data-page="checkout"] .form-group textarea:focus,
.cta-form input:focus,
body[data-page="detail"] .pd-tab:focus-visible,
body[data-page="detail"] .qty-btn:focus-visible,
body[data-page="detail"] .size-pill:focus-visible,
.tab:focus-visible,
.btn-main:focus-visible,
.btn-outline:focus-visible,
.cart-btn:focus-visible,
.add-btn:focus-visible,
.nav-link:focus-visible {
    outline: none;
    border-color: rgba(180, 50, 45, 0.32) !important;
    box-shadow: 0 0 0 4px rgba(180, 50, 45, 0.12);
}

body[data-page="checkout"] .form-group input::placeholder,
body[data-page="checkout"] .form-group textarea::placeholder,
.cta-form input::placeholder {
    transition: opacity 0.22s ease;
}

body[data-page="checkout"] .form-group input:focus::placeholder,
body[data-page="checkout"] .form-group textarea:focus::placeholder,
.cta-form input:focus::placeholder {
    opacity: 0.46;
}

@media (hover: hover) {
    .nav-link:hover::after {
        transform: scaleX(1);
    }

    .cart-btn:hover,
    .btn-main:hover {
        transform: translateY(-3px);
        box-shadow: 0 16px 34px rgba(20, 23, 34, 0.14);
    }

    .btn-outline:hover {
        transform: translateY(-2px);
        background: rgba(255, 255, 255, 0.96);
        border-color: rgba(20, 23, 34, 0.16);
        box-shadow: 0 12px 26px rgba(20, 23, 34, 0.08);
    }

    .btn-main:active,
    .btn-outline:active,
    .cart-btn:active,
    .add-btn:active {
        transform: translateY(0) scale(0.985);
    }

    .tab:hover,
    .page-meta-strip span:hover,
    .hero-mini-card:hover,
    .wishlist-preview:hover,
    .join-points span:hover,
    .sh-tag:hover {
        transform: translateY(-2px);
        border-color: rgba(20, 23, 34, 0.16);
        box-shadow: 0 10px 22px rgba(20, 23, 34, 0.06);
    }

    .product-card:hover {
        transform: translateY(-7px) !important;
        box-shadow: 0 30px 64px rgba(21, 20, 27, 0.18) !important;
    }

    .product-card:hover .pc-window-bar {
        background: linear-gradient(180deg, #f6f4ee 0%, #e4e1d7 100%);
    }

    .product-card:hover .pc-window-dots span:nth-child(1) {
        background: #f26d6d;
        border-color: rgba(242, 109, 109, 0.4);
    }

    .product-card:hover .pc-window-dots span:nth-child(2) {
        background: #efc55a;
        border-color: rgba(239, 197, 90, 0.4);
    }

    .product-card:hover .pc-window-dots span:nth-child(3) {
        background: #78c980;
        border-color: rgba(120, 201, 128, 0.4);
    }

    .product-card:hover .pc-window-name {
        color: #141722;
    }

    .product-card:hover .pc-photo-img {
        transform: scale(1.065);
        filter: saturate(1.03) contrast(1.01);
    }

    .product-card:hover .pc-details h3,
    .product-card:hover .pc-price {
        transform: translateY(-1px);
    }

    .annotation-card:hover,
    .review-card:hover,
    .value-card:hover,
    .team-card:hover,
    .pd-gallery-shell:hover,
    .pd-info-shell:hover,
    .pd-panel-card:hover,
    .co-section:hover,
    .qris-screen-inner:hover,
    .review-poster:hover,
    .join-sheet:hover {
        transform: translateY(-4px);
        box-shadow: 0 28px 60px rgba(20, 23, 34, 0.1);
    }

    body[data-page="detail"] .trust-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 16px 32px rgba(20, 23, 34, 0.08);
    }

    body[data-page="detail"] .pd-tab:hover {
        transform: translateY(-1px);
        color: #141722 !important;
    }

    body[data-page="detail"] .qty-btn:hover {
        transform: scale(1.06);
        box-shadow: 0 10px 18px rgba(20, 23, 34, 0.08);
    }

    body[data-page="detail"] .size-pill:hover {
        transform: translateY(-2px);
        border-color: rgba(20, 23, 34, 0.16);
        box-shadow: 0 10px 20px rgba(20, 23, 34, 0.06);
    }

    body[data-page="checkout"] .cart-item:hover {
        transform: translateY(-2px) !important;
        background: rgba(255, 255, 255, 0.52) !important;
        box-shadow: 0 18px 38px rgba(20, 23, 34, 0.08);
    }

    body[data-page="checkout"] .ship-option:hover {
        transform: translateY(-2px);
        border-color: rgba(20, 23, 34, 0.14) !important;
        background: rgba(255, 255, 255, 0.92) !important;
        box-shadow: 0 14px 28px rgba(20, 23, 34, 0.05);
    }

    body[data-page="checkout"] .ship-option.active:hover {
        border-color: rgba(180, 50, 45, 0.22) !important;
    }

    .ft-socials a:hover {
        transform: translateY(-2px) scale(1.04);
        box-shadow: 0 14px 28px rgba(20, 23, 34, 0.08);
    }

    .ft-links a:hover {
        transform: translateX(4px);
    }

    .ft-links a:hover::before {
        width: 14px;
    }
}

@keyframes clubo-added-pop {
    0% {
        transform: scale(1);
    }

    45% {
        transform: scale(1.16);
    }

    100% {
        transform: scale(1);
    }
}

@media (prefers-reduced-motion: reduce) {
    html:focus-within {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ===== Final Consistency Pass ===== */
body[data-page="home"] .zine-hero-copy {
    width: min(100%, 980px) !important;
    margin: 0 auto !important;
    padding: 18px 0 8px !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    text-align: center !important;
}

body[data-page="home"] .zine-manifesto {
    display: none !important;
}

body[data-page="home"] .wishlist-board {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
    min-height: auto !important;
    padding: 30px !important;
}

body[data-page="home"] .wishlist-main {
    position: relative !important;
    inset: auto !important;
    left: auto !important;
    top: auto !important;
    z-index: 2 !important;
    width: 100% !important;
    max-width: 760px !important;
    transform: none !important;
    align-self: start !important;
    padding-right: 0 !important;
    text-align: left !important;
}

body[data-page="home"] .wishlist-main h2 {
    max-width: 760px !important;
    margin: 6px 0 2px !important;
    font-size: clamp(2.3rem, 4.4vw, 4.6rem) !important;
    line-height: 0.98 !important;
    color: #141722 !important;
    position: relative !important;
    z-index: 2 !important;
}

body[data-page="home"] .wishlist-stack {
    grid-column: 1 / -1 !important;
    grid-row: auto !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 12px !important;
    align-content: start !important;
}

body[data-page="home"] .zine-join .cta-box {
    gap: 18px !important;
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

body[data-page="home"] .zine-join .cta-left {
    padding: 8px 0 0 !important;
}

body[data-page="home"] .zine-join .cta-left h2 {
    color: #141722 !important;
}

body[data-page="home"] .zine-join .cta-left p,
body[data-page="home"] .zine-join .cta-left small {
    color: rgba(20, 23, 34, 0.64) !important;
}

body[data-page="home"] .zine-join .cta-form input {
    background: #fff !important;
    border: 1px solid rgba(20, 23, 34, 0.08) !important;
}

body[data-page="checkout"] .cart-item,
body[data-page="checkout"] .cart-item:hover {
    background: transparent !important;
    box-shadow: none !important;
}

body[data-page="checkout"] .cart-item:hover {
    transform: translateY(-2px) !important;
    border-color: rgba(20, 23, 34, 0.16) !important;
}

body[data-page="checkout"] .qris-mode-chip,
body[data-page="checkout"] .qris-logo-img {
    display: none !important;
}

@media (max-width: 1100px) {
    body[data-page="home"] .wishlist-stack {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 900px) {
    body[data-page="home"] .zine-hero-copy {
        width: 100% !important;
        padding: 8px 0 0 !important;
    }

    body[data-page="home"] .wishlist-board {
        grid-template-columns: 1fr !important;
        padding: 22px 18px !important;
        border-radius: 24px !important;
    }

    body[data-page="home"] .wishlist-main {
        max-width: none !important;
    }

    body[data-page="home"] .wishlist-main h2 {
        max-width: none !important;
        font-size: clamp(2rem, 9vw, 3.2rem) !important;
    }

    body[data-page="home"] .wishlist-stack {
        grid-template-columns: 1fr !important;
        gap: 10px !important;
    }
}

/* ===== Product photo backdrop override ===== */
.pc-visual {
    background: var(--bg, #ffffff) !important;
}

/* ===== Mobile Stability Pass ===== */
@media (max-width: 900px) {
    .navbar {
        padding: 12px 0 !important;
    }

    .nav-container {
        padding-inline: 18px !important;
        gap: 12px;
    }

    .nav-logo {
        font-size: 1.45rem !important;
    }

    .cart-btn {
        padding: 10px 16px !important;
        font-size: 0.74rem !important;
    }

    .mobile-toggle {
        padding: 8px 0 8px 8px !important;
    }

    .section-head {
        align-items: flex-start !important;
        gap: 14px !important;
    }

    .sh-tabs {
        width: 100%;
        flex-wrap: nowrap !important;
        overflow-x: auto;
        padding-bottom: 4px;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .sh-tabs::-webkit-scrollbar {
        display: none;
    }

    .tab {
        flex: 0 0 auto;
    }

    body[data-page="home"] .zine-hero {
        padding: 110px 18px 24px !important;
    }

    body[data-page="home"] .zine-hero-copy {
        text-align: left !important;
    }

    body[data-page="home"] .hero-meta-strip,
    body[data-page="home"] .zine-actions {
        justify-content: flex-start !important;
    }

    body[data-page="home"] .hero-meta-strip {
        flex-wrap: wrap;
    }

    body[data-page="home"] .zine-hero-copy h1 {
        font-size: clamp(2.55rem, 16vw, 4.3rem) !important;
        line-height: 0.86 !important;
    }

    body[data-page="home"] .zine-lede {
        max-width: none !important;
        margin-top: 14px !important;
        font-size: 0.96rem !important;
    }

    body[data-page="home"] .hero-mini-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 10px !important;
        margin-top: 18px !important;
    }

    body[data-page="home"] .hero-mini-card {
        width: 100% !important;
        min-height: auto !important;
        justify-content: flex-start !important;
        padding: 14px !important;
        border-radius: 18px !important;
    }

    body[data-page="home"] .wishlist-section {
        padding-top: 0 !important;
    }

    body[data-page="home"] .wishlist-board {
        padding: 20px 16px !important;
        gap: 14px !important;
    }

    body[data-page="home"] .wishlist-main h2 {
        margin: 0 !important;
        font-size: clamp(1.9rem, 10vw, 2.7rem) !important;
        line-height: 0.92 !important;
    }

    body[data-page="home"] .wishlist-stack {
        gap: 10px !important;
    }

    body[data-page="home"] .wishlist-preview {
        min-height: auto !important;
        padding: 16px !important;
    }

    body[data-page="home"] .zine-products .products-grid,
    body[data-page="shop"] .products-grid,
    body[data-page="detail"] .pd-related .products-grid {
        grid-template-columns: 1fr !important;
        gap: 18px !important;
        max-width: none !important;
        margin: 0 !important;
    }

    .product-card,
    .products-grid .product-card,
    .product-card:nth-child(2n + 2),
    .product-card:nth-child(4n + 1),
    .product-card:nth-child(4n + 2),
    .product-card:nth-child(4n + 3),
    .product-card:nth-child(4n + 4) {
        grid-column: auto !important;
        margin-top: 0 !important;
    }

    .pc-window-bar {
        min-height: 30px !important;
    }

    .pc-visual {
        aspect-ratio: 0.92 !important;
        padding: 14px !important;
    }

    .pc-details {
        padding: 14px 14px 16px !important;
    }

    body[data-page="home"] .annotation-grid {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }

    body[data-page="home"] .zine-reviews .review-poster {
        padding: 28px 18px !important;
    }

    body[data-page="home"] .review-score {
        flex-wrap: wrap;
        gap: 8px !important;
    }

    body[data-page="home"] .review-grid {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }

    body[data-page="home"] .zine-join .cta-box {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }

    body[data-page="home"] .zine-join .cta-left h2 {
        font-size: clamp(2rem, 11vw, 3rem) !important;
        line-height: 0.92 !important;
    }

    body[data-page="home"] .zine-join .cta-form {
        flex-direction: column !important;
    }

    body[data-page="about"] .story-grid,
    body[data-page="about"] .mascot-wrap {
        grid-template-columns: 1fr !important;
        gap: 28px !important;
    }

    body[data-page="about"] .story-visual {
        padding: 20px !important;
    }

    body[data-page="about"] .story-cast {
        grid-template-columns: 1fr !important;
    }

    body[data-page="about"] .story-head.main img {
        max-width: 180px !important;
    }

    body[data-page="about"] .values-grid,
    body[data-page="about"] .team-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }

    body[data-page="checkout"] .checkout-wrap {
        padding: 0 18px 56px !important;
        gap: 20px !important;
    }

    body[data-page="checkout"] .co-section {
        padding: 22px 18px !important;
    }

    body[data-page="checkout"] .cart-item {
        grid-template-columns: 72px 1fr !important;
        gap: 14px !important;
        padding: 16px !important;
    }

    body[data-page="checkout"] .ci-right {
        grid-column: 2 / -1 !important;
        width: 100% !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between !important;
    }

    body[data-page="checkout"] .promo-row {
        flex-direction: column !important;
    }

    body[data-page="checkout"] .place-order-btn {
        min-height: 56px !important;
    }

    body[data-page="checkout"] .trust-badges {
        flex-wrap: wrap !important;
    }

    body[data-page="checkout"] .tb-item {
        min-width: calc(33.333% - 8px);
    }

    body[data-page="checkout"] .qris-screen {
        padding: 88px 18px 48px !important;
    }

    body[data-page="checkout"] .qris-header {
        padding: 16px 18px !important;
        flex-wrap: wrap !important;
        gap: 10px !important;
    }

    body[data-page="checkout"] .qris-body {
        grid-template-columns: 1fr !important;
    }

    body[data-page="checkout"] .qris-qr-wrap,
    body[data-page="checkout"] .qris-detail {
        padding: 24px 18px !important;
    }

    body[data-page="checkout"] .qris-qr-code {
        width: min(100%, 230px) !important;
    }

    body[data-page="checkout"] .qris-amount-value {
        font-size: clamp(1.8rem, 10vw, 2.5rem) !important;
    }

    body[data-page="detail"] .pd-section {
        padding-top: 108px !important;
    }

    body[data-page="detail"] .pd-layout {
        gap: 18px !important;
    }

    body[data-page="detail"] .pd-gallery-shell,
    body[data-page="detail"] .pd-info-shell {
        padding: 18px !important;
    }

    body[data-page="detail"] #pdName {
        font-size: clamp(2.2rem, 12vw, 3.6rem) !important;
        line-height: 0.92 !important;
    }

    body[data-page="detail"] .pd-tabs {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 10px !important;
    }

    body[data-page="detail"] .pd-tabs button,
    body[data-page="detail"] .pd-tab,
    body[data-page="detail"] .pd-tabs .tab {
        flex: 1 1 calc(50% - 10px) !important;
        min-width: 0 !important;
        justify-content: center !important;
    }

    body[data-page="detail"] .pd-actions {
        flex-direction: column !important;
    }

    body[data-page="detail"] .trust-row {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 10px !important;
    }

    .footer-top {
        grid-template-columns: 1fr !important;
        gap: 18px !important;
    }

    .footer-bottom {
        align-items: flex-start !important;
        text-align: left !important;
    }
}

@media (max-width: 640px) {
    .container,
    .nav-container {
        padding-inline: 16px !important;
    }

    .cart-btn {
        padding: 9px 14px !important;
    }

    .sh-title {
        font-size: clamp(1.9rem, 11vw, 2.8rem) !important;
    }

    body[data-page="home"] .zine-hero-copy h1 {
        font-size: clamp(2.35rem, 15vw, 3.65rem) !important;
    }

    body[data-page="home"] .wishlist-main h2 {
        font-size: clamp(1.75rem, 10vw, 2.35rem) !important;
    }

    body[data-page="home"] .hero-mini-card,
    body[data-page="home"] .wishlist-preview,
    .review-card,
    .annotation-card {
        border-radius: 18px !important;
    }

    body[data-page="checkout"] .tb-item {
        min-width: calc(50% - 8px);
    }

    body[data-page="detail"] .pd-tabs button,
    body[data-page="detail"] .pd-tab,
    body[data-page="detail"] .pd-tabs .tab {
        flex-basis: 100% !important;
    }
}

/* ===== Final Hero + Mobile Filter Guard ===== */
body[data-page="home"] .zine-hero {
    display: grid !important;
    grid-template-columns: minmax(0, 0.96fr) minmax(360px, 0.74fr) !important;
    gap: clamp(28px, 5vw, 74px) !important;
    align-items: center !important;
    min-height: min(780px, 92svh) !important;
    padding: 126px clamp(24px, 5vw, 82px) 48px !important;
    overflow: hidden !important;
    isolation: isolate;
}

body[data-page="home"] .zine-hero-copy {
    grid-column: 1 !important;
    grid-row: 1 !important;
    width: min(100%, 760px) !important;
    margin: 0 !important;
    text-align: left !important;
    position: relative;
    z-index: 2;
}

body[data-page="home"] .hero-meta-strip,
body[data-page="home"] .zine-actions {
    justify-content: flex-start !important;
}

body[data-page="home"] .zine-hero-copy h1 {
    max-width: 760px !important;
    font-size: clamp(4rem, 8.2vw, 8.8rem) !important;
    line-height: 0.8 !important;
}

body[data-page="home"] .zine-lede {
    max-width: 570px !important;
    margin-inline: 0 !important;
}

body[data-page="home"] .hero-mini-grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    justify-content: stretch !important;
    max-width: 640px !important;
}

body[data-page="home"] .hero-mini-card {
    width: 100% !important;
    min-height: 74px !important;
    align-items: flex-start !important;
    justify-content: center !important;
    flex-direction: column !important;
    padding: 14px 16px !important;
    border-radius: 20px !important;
}

body[data-page="home"] .hero-mini-card span {
    display: block !important;
    margin-top: 7px;
    font-size: 0.78rem;
    line-height: 1.35;
    color: rgba(20, 23, 34, 0.62);
}

body[data-page="home"] .zine-hero-media {
    display: block !important;
    grid-column: 2 !important;
    grid-row: 1 !important;
    position: relative !important;
    width: min(100%, 570px) !important;
    height: clamp(460px, 46vw, 610px) !important;
    justify-self: end !important;
    z-index: 1;
}

body[data-page="home"] .zh-photo {
    position: absolute !important;
    display: block !important;
    border: 1px solid rgba(20, 23, 34, 0.1) !important;
    border-radius: 28px !important;
    background-color: #fff !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: 82% auto !important;
    box-shadow: 0 22px 54px rgba(20, 23, 34, 0.1) !important;
    opacity: 1 !important;
    filter: none !important;
}

body[data-page="home"] .zh-photo::after {
    content: none !important;
    display: none !important;
}

body[data-page="home"] .zh-photo-main {
    inset: 3% auto auto 8% !important;
    width: 78% !important;
    height: 72% !important;
    background-image: url("../img/products/lany-soft-jacket.png") !important;
    transform: rotate(-2.5deg) !important;
    z-index: 2;
}

body[data-page="home"] .zh-photo-small {
    inset: auto 0 4% auto !important;
    width: 46% !important;
    height: 38% !important;
    background-image: url("../img/products/daniel-caesar-knit.png") !important;
    transform: rotate(4.5deg) !important;
    z-index: 3;
}

body[data-page="home"] .zh-photo-strip {
    inset: auto auto 0 0 !important;
    width: 41% !important;
    height: 31% !important;
    background-image: url("../img/products/frank-ocean-jersey.png") !important;
    transform: rotate(-6deg) !important;
    z-index: 4;
}

body[data-page="home"] .zh-word,
body[data-page="home"] .zh-dot,
body[data-page="home"] .zh-star {
    display: none !important;
}

@media (max-width: 1100px) {
    body[data-page="home"] .zine-hero {
        grid-template-columns: minmax(0, 1fr) minmax(300px, 0.62fr) !important;
        gap: 28px !important;
    }

    body[data-page="home"] .hero-mini-grid {
        grid-template-columns: 1fr !important;
        max-width: 520px !important;
    }
}

@media (max-width: 900px) {
    body[data-page="home"] .zine-hero {
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        min-height: auto !important;
        gap: 16px !important;
        padding: 94px 18px 22px !important;
    }

    body[data-page="home"] .zine-hero-media {
        order: 1;
        width: 100% !important;
        height: 205px !important;
        max-width: none !important;
        align-self: stretch !important;
    }

    body[data-page="home"] .zine-hero-copy {
        order: 2;
        width: 100% !important;
    }

    body[data-page="home"] .zine-hero-copy h1 {
        font-size: clamp(2.4rem, 14vw, 3.8rem) !important;
        line-height: 0.86 !important;
    }

    body[data-page="home"] .hero-mini-grid {
        display: none !important;
    }

    body[data-page="home"] .zh-photo {
        border-radius: 22px !important;
        background-size: 78% auto !important;
        box-shadow: 0 16px 36px rgba(20, 23, 34, 0.09) !important;
    }

    body[data-page="home"] .zh-photo-main {
        inset: 7% auto auto 1% !important;
        width: 68% !important;
        height: 84% !important;
    }

    body[data-page="home"] .zh-photo-small {
        inset: 2% 1% auto auto !important;
        width: 39% !important;
        height: 47% !important;
    }

    body[data-page="home"] .zh-photo-strip {
        inset: auto 8% 0 auto !important;
        width: 42% !important;
        height: 37% !important;
    }

    .sh-tabs,
    body[data-page="shop"] #categoryTabs {
        flex-wrap: wrap !important;
        overflow: visible !important;
        padding-bottom: 0 !important;
    }
}

@media (max-width: 640px) {
    body[data-page="home"] .zine-hero-media {
        height: 190px !important;
    }

    body[data-page="home"] .hero-mini-card span {
        font-size: 0.76rem;
    }

    .sh-tabs,
    body[data-page="shop"] #categoryTabs {
        gap: 8px !important;
    }

    .sh-tabs .tab,
    body[data-page="shop"] #categoryTabs .tab {
        flex: 0 1 auto !important;
        min-height: 44px !important;
        padding-inline: 16px !important;
    }
}

/* ===== Superclean White Glass Redesign ===== */
:root {
    --bg: #ffffff !important;
    --bg2: rgba(247, 248, 250, 0.78) !important;
    --card: rgba(255, 255, 255, 0.72) !important;
    --text: #11131a !important;
    --sub: #5d6673 !important;
    --muted: #a0a7b2 !important;
    --accent: #11131a !important;
    --red: #b4322d !important;
    --green: #1f8f72 !important;
    --yellow: #e8ddad !important;
    --border: rgba(17, 19, 26, 0.08) !important;
    --radius: 22px !important;
    --radius-sm: 14px !important;
    --shadow: 0 20px 70px rgba(17, 19, 26, 0.06) !important;
    --shadow-lg: 0 36px 110px rgba(17, 19, 26, 0.1) !important;
}

html {
    background: #fff !important;
}

body,
.zine-home,
body[data-page="shop"],
body[data-page="detail"],
body[data-page="checkout"],
body[data-page="about"] {
    background:
        radial-gradient(circle at 22% 8%, rgba(17, 19, 26, 0.035), transparent 24%),
        radial-gradient(circle at 92% 0%, rgba(180, 50, 45, 0.045), transparent 22%),
        #fff !important;
    color: #11131a !important;
}

body::before,
body::after,
.zine-home::before,
.zine-home::after,
.zine-hero::before,
.zine-hero::after,
.shop-hero::before,
.shop-hero::after,
.about-hero::before,
.about-hero::after,
.checkout-hero::before,
.checkout-hero::after,
.pd-section::before,
.pd-section::after,
.hero-marquee-bg,
.hero-marquee-track,
.zine-ticker,
.footer-bigtext,
.timeline-bigtext,
.mascot-marquee,
.mascot-marquee-track,
.zh-word,
.zh-dot,
.zh-star {
    content: none !important;
    display: none !important;
}

.navbar {
    position: fixed !important;
    top: 14px !important;
    left: 50% !important;
    width: min(calc(100% - 32px), 1240px) !important;
    transform: translateX(-50%) !important;
    border: 1px solid rgba(17, 19, 26, 0.08) !important;
    border-radius: 999px !important;
    background: rgba(255, 255, 255, 0.72) !important;
    box-shadow: 0 18px 55px rgba(17, 19, 26, 0.08) !important;
    backdrop-filter: blur(24px) saturate(1.25) !important;
    -webkit-backdrop-filter: blur(24px) saturate(1.25) !important;
    z-index: 999 !important;
    padding: 0 !important;
}

.nav-container {
    min-height: 68px !important;
    padding: 0 18px 0 24px !important;
}

.nav-logo {
    letter-spacing: -0.06em !important;
}

.nav-links {
    gap: clamp(18px, 4vw, 54px) !important;
}

.nav-link {
    color: rgba(17, 19, 26, 0.56) !important;
    letter-spacing: 0.18em !important;
}

.nav-link.active,
.nav-link:hover {
    color: #11131a !important;
}

.nav-link::after {
    bottom: 0 !important;
    height: 1px !important;
}

.cart-btn,
.btn-main,
.place-order-btn,
.qris-confirm-btn,
.promo-row button {
    border: 1px solid #11131a !important;
    background: #11131a !important;
    color: #fff !important;
    border-radius: 999px !important;
    box-shadow: 0 16px 42px rgba(17, 19, 26, 0.12) !important;
}

.btn-outline,
.pd-wishlist-btn,
.qris-cancel-btn,
.loc-btn {
    border: 1px solid rgba(17, 19, 26, 0.12) !important;
    background: rgba(255, 255, 255, 0.48) !important;
    color: #11131a !important;
    border-radius: 999px !important;
    box-shadow: none !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
}

.btn-main:hover,
.cart-btn:hover,
.place-order-btn:hover:not(:disabled),
.qris-confirm-btn:hover,
.promo-row button:hover {
    background: #000 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 22px 54px rgba(17, 19, 26, 0.16) !important;
}

.btn-outline:hover,
.pd-wishlist-btn:hover,
.loc-btn:hover {
    border-color: rgba(17, 19, 26, 0.24) !important;
    background: rgba(255, 255, 255, 0.8) !important;
    transform: translateY(-2px) !important;
}

.zine-hero,
.shop-hero,
.about-hero,
.checkout-hero,
.pd-section {
    background: transparent !important;
}

body[data-page="home"] .zine-hero {
    grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.72fr) !important;
    min-height: min(760px, 92svh) !important;
    padding-top: 138px !important;
    padding-bottom: 58px !important;
}

body[data-page="home"] .zine-hero-copy h1,
.shop-hero .sh-title,
.about-hero h1,
.checkout-hero h1,
body[data-page="detail"] #pdName,
.sh-title,
.wishlist-main h2,
.review-poster h2,
.cta-left h2 {
    color: #11131a !important;
    letter-spacing: -0.075em !important;
}

body[data-page="home"] .zine-hero-copy h1 {
    font-size: clamp(4.6rem, 8.6vw, 9.2rem) !important;
}

.zine-kicker,
.sh-tag,
.page-tag,
.join-kicker {
    color: #b4322d !important;
    background: transparent !important;
}

.page-meta-strip {
    gap: 8px !important;
}

.page-meta-strip span,
.hero-mini-card,
.wishlist-preview,
.join-points span,
.tab,
.shop-results-count,
.qa,
.step-pill,
.ci-chip,
.order-number {
    border: 1px solid rgba(17, 19, 26, 0.08) !important;
    background: rgba(255, 255, 255, 0.56) !important;
    color: rgba(17, 19, 26, 0.64) !important;
    box-shadow: none !important;
    backdrop-filter: blur(14px) !important;
    -webkit-backdrop-filter: blur(14px) !important;
}

.tab.active,
.step-pill.active,
.ship-option.active {
    background: #11131a !important;
    border-color: #11131a !important;
    color: #fff !important;
}

.step-pill.active .sp-dot,
.ship-option.active .ship-radio {
    background: #fff !important;
    color: #11131a !important;
    border-color: #fff !important;
}

body[data-page="home"] .zine-hero-media {
    filter: none !important;
}

body[data-page="home"] .zh-photo,
.pd-photo-main,
.pd-photo-thumbs img,
.pc-visual,
.ci-media,
.story-visual,
.story-head,
.team-card img,
.qris-qr-frame,
.qris-logo-img,
.qris-qr-code {
    border: 1px solid rgba(17, 19, 26, 0.08) !important;
    background-color: rgba(255, 255, 255, 0.62) !important;
    box-shadow: 0 22px 70px rgba(17, 19, 26, 0.07) !important;
    backdrop-filter: blur(18px) !important;
    -webkit-backdrop-filter: blur(18px) !important;
}

body[data-page="home"] .zh-photo-main {
    background-size: 78% auto !important;
}

body[data-page="home"] .zh-photo-small,
body[data-page="home"] .zh-photo-strip {
    background-size: 74% auto !important;
}

.wishlist-section,
.drops-section,
.lookbook-section,
.reviews-section,
.cta-section,
.shop-section,
.story-section,
.values-section,
.timeline-section,
.team-section,
.mascot-section,
.pd-description,
.pd-related {
    background: transparent !important;
}

.container {
    max-width: 1180px !important;
}

.wishlist-board,
.review-poster,
.cta-box,
.join-sheet,
.shop-hero-content,
.shop-controls,
.about-hero-content,
.story-wrap,
.story-card,
.value-card,
.timeline-item,
.team-card,
.mascot-wrap,
.checkout-hero-content,
.co-section,
.checkout-success,
.qris-screen-inner,
.pd-gallery,
.pd-gallery-shell,
.pd-info-shell,
.pd-panel-card,
.trust-card,
.product-card,
.annotation-card,
.review-card,
.footer {
    border: 1px solid rgba(17, 19, 26, 0.08) !important;
    background: rgba(255, 255, 255, 0.62) !important;
    box-shadow: 0 28px 90px rgba(17, 19, 26, 0.055) !important;
    backdrop-filter: blur(24px) saturate(1.12) !important;
    -webkit-backdrop-filter: blur(24px) saturate(1.12) !important;
}

.wishlist-board,
.review-poster,
.cta-box,
.shop-hero-content,
.about-hero-content,
.checkout-hero-content,
.pd-gallery-shell,
.pd-info-shell,
.pd-panel-card,
.co-section,
.qris-screen-inner {
    border-radius: 30px !important;
}

.product-card {
    border-radius: 24px !important;
    overflow: hidden !important;
}

.product-card .pc-media {
    border-radius: 24px 24px 0 0 !important;
}

.product-card .pc-visual {
    border: 0 !important;
    border-radius: 24px 24px 0 0 !important;
    box-shadow: none !important;
}

.product-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 38px 100px rgba(17, 19, 26, 0.11) !important;
}

.pc-window-bar {
    background: rgba(255, 255, 255, 0.46) !important;
    border-bottom: 1px solid rgba(17, 19, 26, 0.06) !important;
}

.pc-window-name,
.pc-window-caret,
.pc-details p,
.zine-lede,
.shop-hero-sub,
.page-sub,
.review-card p,
.wishlist-preview p,
.cta-left p,
.join-sheet p,
.story-card p,
.value-card p,
.timeline-content p,
.team-card p,
.pd-subtitle,
.pd-desc-card p,
.form-group label,
.summary-row,
.trust-card span,
.ft-brand p,
.ft-links a,
.footer-bottom {
    color: rgba(17, 19, 26, 0.62) !important;
}

.pc-details,
.pd-info-shell,
.co-section,
.qris-detail,
.qris-qr-wrap {
    background: transparent !important;
}

.pc-colors-row,
.pc-hover-actions,
.pc-window-bar,
.pc-window-dots,
.pd-window-bar,
.qris-mode-chip,
.qris-logo-img,
.story-snoopy,
.snoopy-mascot,
.custom-cursor {
    display: none !important;
}

.pc-tag,
.pd-tag,
.pd-discount {
    background: rgba(17, 19, 26, 0.9) !important;
    color: #fff !important;
    border: 0 !important;
    border-radius: 999px !important;
}

.add-btn,
.qty-btn,
.ci-qty button {
    border: 1px solid rgba(17, 19, 26, 0.1) !important;
    background: rgba(255, 255, 255, 0.72) !important;
    color: #11131a !important;
    box-shadow: none !important;
}

.add-btn:hover,
.qty-btn:hover,
.ci-qty button:hover {
    background: #11131a !important;
    color: #fff !important;
}

.pd-section {
    padding-top: 142px !important;
}

.breadcrumb,
.pd-breadcrumb {
    border: 1px solid rgba(17, 19, 26, 0.08) !important;
    background: rgba(255, 255, 255, 0.56) !important;
    border-radius: 999px !important;
    padding: 10px 16px !important;
    width: fit-content !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
}

.pd-tabs {
    border: 1px solid rgba(17, 19, 26, 0.08) !important;
    background: rgba(255, 255, 255, 0.46) !important;
    border-radius: 999px !important;
    padding: 6px !important;
}

.pd-tab,
.size-pill,
.ship-option,
.form-group input,
.form-group select,
.form-group textarea,
.promo-row input,
.cta-form input,
.shop-sort select {
    border: 1px solid rgba(17, 19, 26, 0.1) !important;
    background: rgba(255, 255, 255, 0.68) !important;
    color: #11131a !important;
    border-radius: 18px !important;
    box-shadow: none !important;
    backdrop-filter: blur(14px) !important;
    -webkit-backdrop-filter: blur(14px) !important;
}

.pd-tab.active,
.size-pill.active {
    background: #11131a !important;
    color: #fff !important;
    border-color: #11131a !important;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus,
.promo-row input:focus,
.cta-form input:focus,
.shop-sort select:focus {
    background: #fff !important;
    border-color: rgba(17, 19, 26, 0.34) !important;
    box-shadow: 0 0 0 4px rgba(17, 19, 26, 0.06) !important;
}

.checkout-steps {
    padding-bottom: 36px !important;
}

.empty-cart svg,
.checkout-success svg {
    display: none !important;
}

.empty-cart {
    min-height: 340px !important;
    display: flex;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
}

.cart-item,
.ship-option {
    border-radius: 22px !important;
    background: rgba(255, 255, 255, 0.48) !important;
}

.qris-header,
.qris-amount-box {
    background: rgba(255, 255, 255, 0.46) !important;
}

.qris-timer-wrap {
    background: rgba(180, 50, 45, 0.08) !important;
    color: #8b2d29 !important;
}

.footer {
    margin: 56px auto 24px !important;
    width: min(calc(100% - 32px), 1240px) !important;
    border-radius: 32px !important;
    overflow: hidden !important;
}

.footer-top,
.footer-bottom {
    border-color: rgba(17, 19, 26, 0.08) !important;
}

.ft-socials a,
.ft-pay span {
    border: 1px solid rgba(17, 19, 26, 0.1) !important;
    background: rgba(255, 255, 255, 0.56) !important;
    color: #11131a !important;
}

.toast {
    border: 1px solid rgba(17, 19, 26, 0.08) !important;
    background: rgba(255, 255, 255, 0.82) !important;
    color: #11131a !important;
    box-shadow: 0 22px 70px rgba(17, 19, 26, 0.12) !important;
    backdrop-filter: blur(22px) !important;
    -webkit-backdrop-filter: blur(22px) !important;
}

.toast-check {
    background: #11131a !important;
    color: #fff !important;
}

@media (max-width: 900px) {
    .navbar {
        top: 10px !important;
        width: calc(100% - 20px) !important;
        border-radius: 26px !important;
    }

    .nav-container {
        min-height: 60px !important;
        padding-inline: 16px !important;
    }

    .nav-links.active {
        top: 74px !important;
        width: calc(100vw - 20px) !important;
        margin-inline: 10px !important;
        border: 1px solid rgba(17, 19, 26, 0.08) !important;
        border-radius: 26px !important;
        background: rgba(255, 255, 255, 0.86) !important;
        box-shadow: 0 24px 80px rgba(17, 19, 26, 0.12) !important;
        backdrop-filter: blur(24px) !important;
        -webkit-backdrop-filter: blur(24px) !important;
    }

    body[data-page="home"] .zine-hero,
    .shop-hero,
    .about-hero,
    .checkout-hero {
        padding-top: 106px !important;
    }

    body[data-page="home"] .zine-hero-media {
        height: 220px !important;
    }

    body[data-page="home"] .zine-hero-copy h1,
    .shop-hero .sh-title,
    .about-hero h1,
    .checkout-hero h1 {
        letter-spacing: -0.07em !important;
    }

    .shop-hero-content,
    .about-hero-content,
    .checkout-hero-content,
    .wishlist-board,
    .review-poster,
    .cta-box,
    .pd-gallery-shell,
    .pd-info-shell,
    .pd-panel-card,
    .co-section {
        border-radius: 24px !important;
    }

    .pd-tabs {
        border-radius: 22px !important;
    }
}

@media (max-width: 640px) {
    body[data-page="home"] .zine-hero-media {
        height: 205px !important;
    }

    body[data-page="home"] .zine-hero-copy h1 {
        font-size: clamp(2.45rem, 14vw, 3.7rem) !important;
    }

    .cart-btn {
        min-width: 88px !important;
    }

    .page-meta-strip span {
        font-size: 0.62rem !important;
    }
}

/* ===== Morteils-Like Catalog Rebuild ===== */
:root {
    --bg: #fff !important;
    --bg2: #fff !important;
    --card: transparent !important;
    --text: #111 !important;
    --sub: #111 !important;
    --muted: #777 !important;
    --accent: #111 !important;
    --border: rgba(0, 0, 0, 0.08) !important;
    --shadow: none !important;
    --shadow-lg: none !important;
    --font: Roboto, Arial, system-ui, sans-serif !important;
    --mono: Roboto, Arial, system-ui, sans-serif !important;
    --serif: Roboto, Arial, system-ui, sans-serif !important;
}

html,
body,
.zine-home,
body[data-page="shop"],
body[data-page="detail"],
body[data-page="checkout"],
body[data-page="about"] {
    background: #fff !important;
    color: #111 !important;
    font-family: Roboto, Arial, system-ui, sans-serif !important;
}

body {
    cursor: auto !important;
}

a,
button,
input,
select,
textarea {
    cursor: pointer !important;
}

.custom-cursor,
.snoopy-mascot,
.zine-hero,
.zine-ticker,
.wishlist-section,
.lookbook-section,
.reviews-section,
.zine-join,
.drops-cta,
.shop-hero,
.shop-controls,
.footer-bigtext,
.hero-marquee-bg,
.hero-marquee-track,
.toast-check {
    display: none !important;
}

.navbar {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;
    width: 100% !important;
    height: 88px !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: #fff !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

.nav-container {
    max-width: none !important;
    min-height: 88px !important;
    padding: 0 47px !important;
    display: grid !important;
    grid-template-columns: 1fr auto 1fr !important;
    align-items: center !important;
    gap: 0 !important;
}

.nav-logo {
    grid-column: 2 !important;
    justify-self: center !important;
    font-family: Roboto, Arial, system-ui, sans-serif !important;
    font-size: 2rem !important;
    font-weight: 900 !important;
    line-height: 1 !important;
    letter-spacing: -0.08em !important;
    color: #111 !important;
}

.nav-logo span {
    color: #111 !important;
}

.nav-links {
    grid-column: 1 !important;
    grid-row: 1 !important;
    justify-self: start !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 28px !important;
    position: static !important;
    width: auto !important;
    height: auto !important;
    padding: 0 !important;
    margin: 0 !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    transform: none !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

.nav-links li:nth-child(1),
.nav-links li:nth-child(3),
.nav-links li:nth-child(5) {
    display: none !important;
}

.nav-link {
    padding: 0 !important;
    color: #111 !important;
    font-family: Roboto, Arial, system-ui, sans-serif !important;
    font-size: 0.86rem !important;
    font-weight: 500 !important;
    letter-spacing: 0 !important;
    text-transform: uppercase !important;
}

.nav-link::after,
.nav-link.active::after {
    display: none !important;
}

.nav-right {
    grid-column: 3 !important;
    justify-self: end !important;
    display: flex !important;
    align-items: center !important;
    gap: 24px !important;
}

.cart-btn {
    min-width: 0 !important;
    min-height: auto !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    color: #111 !important;
    font-family: Roboto, Arial, system-ui, sans-serif !important;
    font-size: 0.86rem !important;
    font-weight: 500 !important;
    letter-spacing: 0 !important;
    text-transform: uppercase !important;
}

.mobile-toggle {
    width: 22px !important;
    height: 18px !important;
    display: none !important;
}

.drops-section.zine-products,
body[data-page="shop"] .shop-section {
    display: block !important;
    padding: 49px 47px 80px !important;
    background: #fff !important;
}

body[data-page="home"] .zine-products .container,
body[data-page="shop"] .shop-section .container {
    max-width: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

body[data-page="home"] .zine-products .section-head {
    display: none !important;
}

.products-grid,
body[data-page="home"] .zine-products .products-grid,
body[data-page="shop"] .products-grid,
body[data-page="detail"] .pd-related .products-grid {
    display: grid !important;
    grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
    gap: 74px 24px !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    align-items: start !important;
}

.product-card,
.products-grid .product-card,
.product-card:nth-child(n),
.product-card:nth-child(2n + 2),
.product-card:nth-child(3n + 1),
.product-card:nth-child(3n + 2),
.product-card:nth-child(4n + 1),
.product-card:nth-child(4n + 2),
.product-card:nth-child(4n + 3),
.product-card:nth-child(4n + 4),
.zine-products .product-card:nth-child(n) {
    display: block !important;
    grid-column: auto !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    transform: none !important;
    overflow: visible !important;
}

.product-card:hover {
    transform: none !important;
    box-shadow: none !important;
}

.pc-window-bar,
.pc-colors-row,
.pc-hover-actions,
.pc-tag,
.pc-details p,
.pc-price,
.add-btn {
    display: none !important;
}

.pc-media,
.product-card .pc-media {
    display: block !important;
    width: 100% !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
}

.pc-visual,
.product-card .pc-visual {
    width: 100% !important;
    aspect-ratio: 1 / 1 !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    overflow: visible !important;
}

.pc-cloth {
    width: 100% !important;
    height: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.pc-photo-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    transform: none !important;
    filter: none !important;
}

.product-card:hover .pc-photo-img {
    transform: none !important;
}

.pc-details {
    padding: 18px 0 0 !important;
    background: transparent !important;
    text-align: left !important;
}

.pc-details a {
    display: block !important;
}

.pc-details h3 {
    margin: 0 !important;
    color: #111 !important;
    font-family: Roboto, Arial, system-ui, sans-serif !important;
    font-size: 0.86rem !important;
    font-weight: 500 !important;
    line-height: 1.35 !important;
    letter-spacing: 0 !important;
    text-transform: uppercase !important;
}

.pc-footer {
    display: none !important;
}

.footer {
    display: none !important;
}

.pd-section,
.checkout-hero,
.checkout-wrap,
.about-hero,
.story-section,
.values-section,
.timeline-section,
.team-section,
.mascot-section {
    margin-top: 0 !important;
}

@media (max-width: 900px) {
    .navbar {
        position: relative !important;
        top: auto !important;
        width: 100% !important;
        height: 62px !important;
        border-radius: 0 !important;
    }

    .nav-container {
        min-height: 62px !important;
        padding: 0 47px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
    }

    .nav-logo {
        grid-column: auto !important;
        justify-self: auto !important;
        font-size: 1.55rem !important;
    }

    .nav-links {
        display: none !important;
    }

    .nav-right {
        grid-column: auto !important;
        gap: 18px !important;
    }

    .cart-btn {
        display: inline-flex !important;
        font-size: 0 !important;
    }

    .cart-btn::before {
        content: "BAG";
        font-size: 0.78rem !important;
    }

    .cart-btn span {
        display: none !important;
    }

    .mobile-toggle {
        display: flex !important;
        flex-direction: column !important;
        justify-content: space-between !important;
        padding: 0 !important;
        border: 0 !important;
        background: transparent !important;
    }

    .mobile-toggle span {
        width: 22px !important;
        height: 1.5px !important;
        background: #111 !important;
        border-radius: 0 !important;
    }

    .drops-section.zine-products,
    body[data-page="shop"] .shop-section {
        padding: 45px 47px 80px !important;
    }

    .products-grid,
    body[data-page="home"] .zine-products .products-grid,
    body[data-page="shop"] .products-grid,
    body[data-page="detail"] .pd-related .products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 80px 24px !important;
    }

    .pc-details {
        padding-top: 16px !important;
    }

    .pc-details h3 {
        font-size: 0.78rem !important;
        line-height: 1.35 !important;
    }
}

@media (max-width: 420px) {
    .nav-container {
        padding-inline: 47px !important;
    }

    .drops-section.zine-products,
    body[data-page="shop"] .shop-section {
        padding-inline: 47px !important;
    }
}

@media (max-width: 900px) {
    .nav-links.active {
        position: fixed !important;
        top: 62px !important;
        left: 0 !important;
        right: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 16px !important;
        width: 100% !important;
        padding: 26px 47px !important;
        background: #fff !important;
        z-index: 998 !important;
    }

    .nav-links.active li:nth-child(1),
    .nav-links.active li:nth-child(3),
    .nav-links.active li:nth-child(5) {
        display: none !important;
    }
}

body[data-page="home"] .zine-hero,
body[data-page="home"] .wishlist-section,
body[data-page="home"] .lookbook-section,
body[data-page="home"] .reviews-section,
body[data-page="home"] .zine-join {
    display: none !important;
}

body[data-page="home"] .drops-section.zine-products {
    display: block !important;
    padding: 49px 47px 80px !important;
}

@media (max-width: 900px) {
    body[data-page="home"] .drops-section.zine-products {
        padding: 45px 47px 80px !important;
    }
}

/* ===== Morteils-Like Detail + Checkout Finish ===== */
body[data-page="detail"] .pd-section,
body[data-page="checkout"] .checkout-wrap {
    padding: 49px 47px 80px !important;
    background: #fff !important;
}

body[data-page="detail"] .pd-section .container,
body[data-page="detail"] .pd-description .container,
body[data-page="detail"] .pd-related .container,
body[data-page="checkout"] .checkout-wrap {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
}

body[data-page="detail"] .breadcrumb,
body[data-page="detail"] .pd-window-bar,
body[data-page="detail"] .pd-meta-row,
body[data-page="detail"] .trust-row,
body[data-page="detail"] .pd-related .section-head,
body[data-page="detail"] .pd-tag,
body[data-page="checkout"] .checkout-hero,
body[data-page="checkout"] .checkout-steps,
body[data-page="checkout"] .trust-badges,
body[data-page="checkout"] .qris-info-badge,
body[data-page="checkout"] .qris-note {
    display: none !important;
}

body[data-page="detail"] .pd-layout {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 360px !important;
    gap: 47px !important;
    align-items: start !important;
}

body[data-page="detail"] .pd-gallery-shell,
body[data-page="detail"] .pd-info-shell,
body[data-page="detail"] .pd-panel-card,
body[data-page="checkout"] .co-section,
body[data-page="checkout"] .qris-screen-inner,
body[data-page="checkout"] .checkout-success {
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    overflow: visible !important;
}

body[data-page="detail"] .pd-gallery,
body[data-page="detail"] .pd-photo-main,
body[data-page="detail"] .pd-gallery .pc-visual {
    width: 100% !important;
    aspect-ratio: 1 / 1 !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    overflow: visible !important;
}

body[data-page="detail"] .pd-photo-gallery {
    gap: 16px !important;
}

body[data-page="detail"] .pd-photo-main img {
    width: 100% !important;
    height: 100% !important;
    padding: 0 !important;
    object-fit: contain !important;
    transform: none !important;
    filter: none !important;
}

body[data-page="detail"] .pd-photo-thumbs {
    gap: 8px !important;
}

body[data-page="detail"] .pd-thumb {
    width: 52px !important;
    height: 52px !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    opacity: .42 !important;
}

body[data-page="detail"] .pd-thumb.active,
body[data-page="detail"] .pd-thumb:hover {
    opacity: 1 !important;
}

body[data-page="detail"] .pd-info {
    gap: 18px !important;
    padding: 0 !important;
    background: transparent !important;
}

body[data-page="detail"] .pd-info > div,
body[data-page="detail"] .pd-name-wrap,
body[data-page="detail"] .pd-price-wrap {
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

body[data-page="detail"] #pdName {
    margin: 0 !important;
    color: #111 !important;
    font-family: Roboto, Arial, system-ui, sans-serif !important;
    font-size: 1rem !important;
    font-weight: 500 !important;
    line-height: 1.35 !important;
    letter-spacing: 0 !important;
    text-transform: uppercase !important;
}

body[data-page="detail"] .pd-subtitle {
    margin-top: 4px !important;
    color: #777 !important;
    font-family: Roboto, Arial, system-ui, sans-serif !important;
    font-size: .78rem !important;
    font-weight: 400 !important;
    line-height: 1.5 !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
}

body[data-page="detail"] .pd-price {
    display: flex !important;
    gap: 8px !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
}

body[data-page="detail"] .pd-price strong,
body[data-page="checkout"] .summary-total .st-value {
    color: #111 !important;
    font-family: Roboto, Arial, system-ui, sans-serif !important;
    font-size: 1rem !important;
    font-weight: 500 !important;
    line-height: 1.35 !important;
    letter-spacing: 0 !important;
}

body[data-page="detail"] .pd-price s,
body[data-page="detail"] .pd-price .pd-discount {
    display: none !important;
}

body[data-page="detail"] .pd-option-label,
body[data-page="detail"] .pd-panel-label,
body[data-page="checkout"] .co-count,
body[data-page="checkout"] .form-group label,
body[data-page="checkout"] .summary-total .st-label {
    margin-bottom: 8px !important;
    color: #777 !important;
    font-family: Roboto, Arial, system-ui, sans-serif !important;
    font-size: .72rem !important;
    font-weight: 500 !important;
    line-height: 1.4 !important;
    letter-spacing: 0 !important;
    text-transform: uppercase !important;
}

body[data-page="detail"] .pd-colors,
body[data-page="detail"] .size-pills {
    gap: 8px !important;
}

body[data-page="detail"] .size-pill,
body[data-page="detail"] .qty-control,
body[data-page="detail"] .pd-wishlist-btn,
body[data-page="detail"] .pd-tab,
body[data-page="checkout"] .ship-option,
body[data-page="checkout"] .form-group input,
body[data-page="checkout"] .form-group select,
body[data-page="checkout"] .form-group textarea,
body[data-page="checkout"] .promo-row input,
body[data-page="checkout"] .promo-row button,
body[data-page="checkout"] .ci-qty,
body[data-page="checkout"] .ci-qty button {
    border: 1px solid rgba(0, 0, 0, .12) !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

body[data-page="detail"] .size-pill,
body[data-page="detail"] .pd-tab,
body[data-page="checkout"] .promo-row button {
    min-height: 42px !important;
    padding: 0 14px !important;
    color: #111 !important;
    font-family: Roboto, Arial, system-ui, sans-serif !important;
    font-size: .76rem !important;
    font-weight: 500 !important;
    letter-spacing: 0 !important;
    text-transform: uppercase !important;
}

body[data-page="detail"] .size-pill.active,
body[data-page="detail"] .pd-tab.active,
body[data-page="checkout"] .promo-row button {
    background: #111 !important;
    border-color: #111 !important;
    color: #fff !important;
}

body[data-page="checkout"] .ship-option.active {
    background: transparent !important;
    border-color: #111 !important;
    color: #111 !important;
}

body[data-page="checkout"] .ship-option.active .ship-info h4,
body[data-page="checkout"] .ship-option.active .ship-info p,
body[data-page="checkout"] .ship-option.active .ship-price {
    color: #111 !important;
}

body[data-page="detail"] .qty-btn,
body[data-page="detail"] .qty-value {
    width: 42px !important;
    height: 42px !important;
    border-color: rgba(0, 0, 0, .12) !important;
    background: transparent !important;
    color: #111 !important;
    line-height: 42px !important;
}

body[data-page="detail"] .pd-inline-tabs,
body[data-page="detail"] .pd-actions {
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
}

body[data-page="detail"] .pd-tabs {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
}

body[data-page="detail"] .pd-actions {
    display: flex !important;
    gap: 8px !important;
}

body[data-page="detail"] .pd-actions .btn-main,
body[data-page="checkout"] .place-order-btn,
body[data-page="checkout"] .qris-confirm-btn {
    min-height: 48px !important;
    padding: 0 18px !important;
    border: 1px solid #111 !important;
    border-radius: 0 !important;
    background: #111 !important;
    color: #fff !important;
    box-shadow: none !important;
    font-family: Roboto, Arial, system-ui, sans-serif !important;
    font-size: .82rem !important;
    font-weight: 500 !important;
    letter-spacing: 0 !important;
    text-transform: uppercase !important;
}

body[data-page="detail"] .pd-wishlist-btn {
    width: 48px !important;
    height: 48px !important;
    flex: 0 0 48px !important;
}

body[data-page="detail"] .pd-description {
    padding: 0 47px 80px !important;
    border: 0 !important;
    background: #fff !important;
}

body[data-page="detail"] .pd-desc-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 47px !important;
}

body[data-page="detail"] .pd-desc-left h3,
body[data-page="detail"] .pd-desc-left p,
body[data-page="detail"] .pd-details-list li,
body[data-page="checkout"] .summary-row,
body[data-page="checkout"] .ship-info p,
body[data-page="checkout"] .ci-info .ci-sub {
    color: #111 !important;
    font-family: Roboto, Arial, system-ui, sans-serif !important;
    font-size: .86rem !important;
    font-weight: 400 !important;
    line-height: 1.55 !important;
    letter-spacing: 0 !important;
}

body[data-page="detail"] .pd-details-list li,
body[data-page="detail"] .pd-size-table th,
body[data-page="detail"] .pd-size-table td {
    padding: 12px 0 !important;
    border-bottom: 1px solid rgba(0, 0, 0, .08) !important;
}

body[data-page="detail"] .pd-details-list .detail-check,
body[data-page="detail"] .pd-size-note,
body[data-page="checkout"] .loc-btn,
body[data-page="checkout"] .ship-radio,
body[data-page="checkout"] .qris-badge-icon,
body[data-page="checkout"] .qris-badge-check,
body[data-page="checkout"] .ci-chip {
    display: none !important;
}

body[data-page="detail"] .pd-related {
    padding: 0 47px 80px !important;
    background: #fff !important;
}

body[data-page="checkout"] .checkout-wrap {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px !important;
    gap: 47px !important;
    align-items: start !important;
}

body[data-page="checkout"] .co-section {
    margin: 0 0 34px !important;
}

body[data-page="checkout"] .co-section-head {
    margin: 0 0 18px !important;
    padding: 0 0 14px !important;
    border-bottom: 1px solid rgba(0, 0, 0, .08) !important;
}

body[data-page="checkout"] .co-section-head h2,
body[data-page="checkout"] .co-section-head h2 em {
    color: #111 !important;
    font-family: Roboto, Arial, system-ui, sans-serif !important;
    font-size: .92rem !important;
    font-style: normal !important;
    font-weight: 500 !important;
    line-height: 1.35 !important;
    letter-spacing: 0 !important;
    text-transform: uppercase !important;
}

body[data-page="checkout"] .cart-items {
    gap: 12px !important;
}

body[data-page="checkout"] .cart-item {
    grid-template-columns: 82px minmax(0, 1fr) auto !important;
    gap: 16px !important;
    padding: 0 0 14px !important;
    border: 0 !important;
    border-bottom: 1px solid rgba(0, 0, 0, .08) !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

body[data-page="checkout"] .cart-item:hover {
    transform: none !important;
}

body[data-page="checkout"] .ci-media {
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

body[data-page="checkout"] .ci-info h3 {
    margin: 0 0 4px !important;
    color: #111 !important;
    font-family: Roboto, Arial, system-ui, sans-serif !important;
    font-size: .86rem !important;
    font-weight: 500 !important;
    line-height: 1.35 !important;
    letter-spacing: 0 !important;
    text-transform: uppercase !important;
}

body[data-page="checkout"] .ci-price,
body[data-page="checkout"] .ship-price,
body[data-page="checkout"] .summary-row .sr-value {
    color: #111 !important;
    font-weight: 500 !important;
}

body[data-page="checkout"] .form-row {
    gap: 14px !important;
    margin-bottom: 14px !important;
}

body[data-page="checkout"] .form-group input,
body[data-page="checkout"] .form-group select,
body[data-page="checkout"] .form-group textarea,
body[data-page="checkout"] .promo-row input {
    padding: 12px 0 !important;
    border-width: 0 0 1px !important;
    color: #111 !important;
    font-family: Roboto, Arial, system-ui, sans-serif !important;
    font-size: .9rem !important;
}

body[data-page="checkout"] .ship-options {
    gap: 8px !important;
}

body[data-page="checkout"] .ship-option {
    padding: 14px 0 !important;
    border-width: 0 0 1px !important;
}

body[data-page="checkout"] .ship-info h4 {
    color: #111 !important;
    font-family: Roboto, Arial, system-ui, sans-serif !important;
    font-size: .86rem !important;
    font-weight: 500 !important;
    letter-spacing: 0 !important;
    text-transform: uppercase !important;
}

body[data-page="checkout"] .co-summary {
    position: sticky !important;
    top: 24px !important;
}

body[data-page="checkout"] .promo-row {
    display: flex !important;
    gap: 8px !important;
}

body[data-page="checkout"] .summary-total {
    border-top: 1px solid rgba(0, 0, 0, .12) !important;
}

body[data-page="checkout"] .empty-cart {
    min-height: 320px !important;
    margin: 49px 47px 80px !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

body[data-page="checkout"] .empty-cart h3,
body[data-page="checkout"] .empty-cart h3 em {
    color: #111 !important;
    font-family: Roboto, Arial, system-ui, sans-serif !important;
    font-size: 1rem !important;
    font-style: normal !important;
    font-weight: 500 !important;
    letter-spacing: 0 !important;
    text-transform: uppercase !important;
}

@media (max-width: 900px) {
    body[data-page="detail"] .pd-section,
    body[data-page="checkout"] .checkout-wrap {
        padding: 45px 47px 80px !important;
    }

    body[data-page="detail"] .pd-layout,
    body[data-page="checkout"] .checkout-wrap {
        grid-template-columns: 1fr !important;
        gap: 32px !important;
    }

    body[data-page="detail"] .pd-description,
    body[data-page="detail"] .pd-related {
        padding: 0 47px 80px !important;
    }

    body[data-page="detail"] .pd-desc-grid {
        grid-template-columns: 1fr !important;
        gap: 28px !important;
    }

    body[data-page="detail"] .pd-tabs button,
    body[data-page="detail"] .pd-tab,
    body[data-page="detail"] .pd-tabs .tab {
        flex: 1 1 auto !important;
    }

    body[data-page="detail"] .pd-actions {
        flex-direction: row !important;
    }

    body[data-page="checkout"] .co-summary {
        position: static !important;
    }

    body[data-page="checkout"] .cart-item {
        grid-template-columns: 72px minmax(0, 1fr) !important;
    }

    body[data-page="checkout"] .ci-right {
        grid-column: 2 / -1 !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
    }
}

@media (max-width: 420px) {
    body[data-page="detail"] .pd-section,
    body[data-page="detail"] .pd-description,
    body[data-page="detail"] .pd-related,
    body[data-page="checkout"] .checkout-wrap {
        padding-inline: 47px !important;
    }
}

/* ===== Minimal Catalog Prices ===== */
body[data-page="home"] .product-card .pc-footer,
body[data-page="shop"] .product-card .pc-footer,
body[data-page="detail"] .pd-related .product-card .pc-footer {
    display: block !important;
    margin: 7px 0 0 !important;
    padding: 0 !important;
}

body[data-page="home"] .product-card .pc-price,
body[data-page="shop"] .product-card .pc-price,
body[data-page="detail"] .pd-related .product-card .pc-price {
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    color: #777 !important;
    font-family: Roboto, Arial, system-ui, sans-serif !important;
    font-size: 0.78rem !important;
    font-weight: 400 !important;
    line-height: 1.35 !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
}

body[data-page="home"] .product-card .pc-price strong,
body[data-page="shop"] .product-card .pc-price strong,
body[data-page="detail"] .pd-related .product-card .pc-price strong {
    color: #777 !important;
    font-family: Roboto, Arial, system-ui, sans-serif !important;
    font-size: inherit !important;
    font-weight: 400 !important;
    line-height: inherit !important;
    letter-spacing: 0 !important;
}

body[data-page="home"] .product-card .pc-price s,
body[data-page="shop"] .product-card .pc-price s,
body[data-page="detail"] .pd-related .product-card .pc-price s,
body[data-page="home"] .product-card .add-btn,
body[data-page="shop"] .product-card .add-btn,
body[data-page="detail"] .pd-related .product-card .add-btn {
    display: none !important;
}

@media (max-width: 900px) {
    body[data-page="home"] .product-card .pc-footer,
    body[data-page="shop"] .product-card .pc-footer,
    body[data-page="detail"] .pd-related .product-card .pc-footer {
        margin-top: 6px !important;
    }

    body[data-page="home"] .product-card .pc-price,
    body[data-page="shop"] .product-card .pc-price,
    body[data-page="detail"] .pd-related .product-card .pc-price {
        font-size: 0.74rem !important;
    }
}

/* ===== Homepage Price Visibility Final ===== */
body[data-page="home"] .zine-products .product-card .pc-footer,
body[data-page="home"] .zine-products .product-card .pc-price {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

body[data-page="home"] .zine-products .product-card .pc-price,
body[data-page="home"] .zine-products .product-card .pc-price strong {
    color: #4f4f4f !important;
    font-size: 0.8rem !important;
    font-weight: 400 !important;
}

@media (max-width: 900px) {
    body[data-page="home"] .zine-products .product-card .pc-price,
    body[data-page="home"] .zine-products .product-card .pc-price strong {
        font-size: 0.76rem !important;
    }
}

/* ===== Catalog Compare Prices ===== */
body[data-page="home"] .zine-products .product-card .pc-price,
body[data-page="shop"] .product-card .pc-price,
body[data-page="detail"] .pd-related .product-card .pc-price {
    display: flex !important;
    align-items: baseline !important;
    gap: 7px !important;
    white-space: nowrap !important;
}

body[data-page="home"] .zine-products .product-card .pc-price strong,
body[data-page="shop"] .product-card .pc-price strong,
body[data-page="detail"] .pd-related .product-card .pc-price strong {
    color: #111 !important;
}

body[data-page="home"] .zine-products .product-card .pc-price s,
body[data-page="shop"] .product-card .pc-price s,
body[data-page="detail"] .pd-related .product-card .pc-price s {
    display: inline !important;
    margin: 0 !important;
    color: #9a9a9a !important;
    font-family: Roboto, Arial, system-ui, sans-serif !important;
    font-size: 0.76rem !important;
    font-weight: 400 !important;
    line-height: 1.35 !important;
    letter-spacing: 0 !important;
    text-decoration: line-through !important;
    text-decoration-thickness: 1px !important;
}

@media (max-width: 900px) {
    body[data-page="home"] .zine-products .product-card .pc-price,
    body[data-page="shop"] .product-card .pc-price,
    body[data-page="detail"] .pd-related .product-card .pc-price {
        gap: 6px !important;
    }

body[data-page="home"] .zine-products .product-card .pc-price s,
body[data-page="shop"] .product-card .pc-price s,
body[data-page="detail"] .pd-related .product-card .pc-price s {
        font-size: 0.72rem !important;
    }
}

/* ===== Checkout Current Location ===== */
body[data-page="checkout"] .loc-btn {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    min-height: 38px !important;
    margin: 0 0 18px !important;
    padding: 0 0 10px !important;
    border: 0 !important;
    border-bottom: 1px solid rgba(0, 0, 0, .14) !important;
    border-radius: 0 !important;
    background: transparent !important;
    color: #111 !important;
    box-shadow: none !important;
    font-family: Roboto, Arial, system-ui, sans-serif !important;
    font-size: .82rem !important;
    font-weight: 500 !important;
    line-height: 1.2 !important;
    letter-spacing: 0 !important;
    text-transform: uppercase !important;
}

body[data-page="checkout"] .loc-btn svg {
    width: 15px !important;
    height: 15px !important;
    flex: 0 0 auto !important;
}

body[data-page="checkout"] .loc-btn.loading {
    opacity: .54 !important;
    pointer-events: none !important;
}

body[data-page="checkout"] .loc-btn.success {
    color: #137a46 !important;
    border-bottom-color: rgba(19, 122, 70, .42) !important;
}

body[data-page="checkout"] .loc-btn.error {
    color: #b4322d !important;
    border-bottom-color: rgba(180, 50, 45, .42) !important;
}

body[data-page="checkout"] .loc-btn:hover {
    color: #555 !important;
    transform: none !important;
}

@media (max-width: 900px) {
    body[data-page="checkout"] .loc-btn {
        width: 100% !important;
        justify-content: flex-start !important;
        font-size: .78rem !important;
    }
}

/* ===== Checkout Payment Minimal Finish ===== */
body[data-page="checkout"] .qris-timer-wrap {
    border: 1px solid rgba(0, 0, 0, .14) !important;
    border-radius: 999px !important;
    background: transparent !important;
    color: #111 !important;
    box-shadow: none !important;
    font-family: Roboto, Arial, system-ui, sans-serif !important;
    font-size: .82rem !important;
    font-weight: 400 !important;
    line-height: 1 !important;
    letter-spacing: 0 !important;
}

body[data-page="checkout"] .qris-timer-wrap svg {
    color: #111 !important;
}

body[data-page="checkout"] .qris-timer-wrap strong,
body[data-page="checkout"] .qris-timer-wrap.urgent strong {
    color: #111 !important;
    font-family: Roboto, Arial, system-ui, sans-serif !important;
    font-size: .82rem !important;
    font-weight: 600 !important;
    letter-spacing: 0 !important;
    animation: none !important;
}

body[data-page="checkout"] .qris-amount-box {
    border-color: rgba(0, 0, 0, .14) !important;
    background: transparent !important;
}

body[data-page="checkout"] .qris-amount-value {
    color: #111 !important;
    font-family: Roboto, Arial, system-ui, sans-serif !important;
    font-size: clamp(2.3rem, 12vw, 3.7rem) !important;
    font-weight: 600 !important;
    line-height: .98 !important;
    letter-spacing: -0.03em !important;
}

body[data-page="checkout"] #qrisAmountStep {
    color: #111 !important;
}

body[data-page="checkout"] .qris-unique-code {
    margin-top: 8px;
    color: #777;
    font-family: Roboto, Arial, system-ui, sans-serif;
    font-size: .8rem;
    font-weight: 500;
}

body[data-page="checkout"] .qris-detect-card {
    padding: 18px 0;
    border-top: 1px solid rgba(0, 0, 0, .1);
    border-bottom: 1px solid rgba(0, 0, 0, .1);
}

body[data-page="checkout"] .qris-detect-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
    color: #777;
    font-family: Roboto, Arial, system-ui, sans-serif;
    font-size: .72rem;
    font-weight: 500;
    text-transform: uppercase;
}

body[data-page="checkout"] .payment-status-pill {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 0 10px;
    border: 1px solid rgba(0, 0, 0, .14);
    border-radius: 999px;
    color: #111;
    background: transparent;
    white-space: nowrap;
}

body[data-page="checkout"] .payment-status-pill.error {
    border-color: rgba(180, 50, 45, .35);
    color: #b4322d;
}

body[data-page="checkout"] .payment-status-pill.detected {
    border-color: rgba(19, 122, 70, .36);
    color: #137a46;
}

body[data-page="checkout"] .payment-status-pill.review {
    border-color: rgba(0, 0, 0, .28);
    color: #111;
}

body[data-page="checkout"] #paymentStatusText {
    margin: 0;
    color: #777;
    font-family: Roboto, Arial, system-ui, sans-serif;
    font-size: .82rem;
    line-height: 1.5;
}

body[data-page="checkout"] .payment-review-state .success-kicker {
    color: #111 !important;
}

/* ===== 50K One-Day Promo ===== */
.promo-50-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    max-width: min(1180px, calc(100% - 40px));
    margin: 92px auto 0;
    padding: 12px 0;
    border-top: 1px solid rgba(0, 0, 0, .12);
    border-bottom: 1px solid rgba(0, 0, 0, .12);
    background: rgba(255, 255, 255, .72);
    color: #111;
    backdrop-filter: blur(14px);
}

.promo-50-copy {
    display: flex;
    align-items: baseline;
    gap: 12px;
    min-width: 0;
}

.promo-50-copy span,
.promo-50-timer {
    font-family: Roboto, Arial, system-ui, sans-serif;
    font-size: .72rem;
    font-weight: 500;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #777;
}

.promo-50-copy strong {
    font-family: Roboto, Arial, system-ui, sans-serif;
    font-size: .95rem;
    font-weight: 600;
    letter-spacing: 0;
    white-space: nowrap;
}

.promo-50-timer {
    color: #111;
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}

.pc-promo-chip {
    display: inline-flex;
    align-items: center;
    min-height: 18px;
    padding: 0 7px;
    border: 1px solid rgba(0, 0, 0, .14);
    border-radius: 999px;
    color: #555;
    font-size: .62rem;
    font-weight: 500;
    line-height: 1;
}

body[data-page="detail"] .pd-discount.promo {
    display: inline-flex !important;
    align-items: center;
    border-color: rgba(0, 0, 0, .14);
    background: transparent;
    color: #111;
}

body[data-page="detail"] .pd-price s,
body[data-page="detail"] .pd-price .pd-discount {
    display: inline-flex !important;
}

body[data-page="detail"] .pd-price s {
    color: #9a9a9a !important;
    font-family: Roboto, Arial, system-ui, sans-serif !important;
    font-size: .86rem !important;
    font-weight: 400 !important;
    text-decoration: line-through !important;
}

body[data-page="detail"] .pd-price .pd-discount {
    align-items: center;
    min-height: 22px;
    padding: 0 8px;
    border: 1px solid rgba(0, 0, 0, .14);
    border-radius: 999px;
    background: transparent !important;
    color: #555 !important;
    font-size: .62rem !important;
    font-weight: 500 !important;
    letter-spacing: .08em !important;
}

body[data-page="checkout"] .payment-proof-upload {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: 14px;
    padding: 13px 0 0;
    border-top: 1px solid rgba(0, 0, 0, .1);
    color: #111;
    cursor: pointer;
}

body[data-page="checkout"] .payment-proof-input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
}

body[data-page="checkout"] .payment-proof-upload span,
body[data-page="checkout"] .payment-proof-upload strong {
    font-family: Roboto, Arial, system-ui, sans-serif;
    font-size: .8rem;
    font-weight: 500;
    letter-spacing: 0;
}

body[data-page="checkout"] .payment-proof-upload strong {
    max-width: 52%;
    color: #777;
    font-weight: 400;
    text-align: right;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

@media (max-width: 700px) {
    .promo-50-banner {
        max-width: calc(100% - 28px);
        margin-top: 86px;
        align-items: flex-start;
    }

    .promo-50-copy {
        flex-direction: column;
        gap: 3px;
    }

    .promo-50-copy strong {
        white-space: normal;
    }

    body[data-page="checkout"] .payment-proof-upload {
        align-items: flex-start;
        flex-direction: column;
        gap: 5px;
    }

    body[data-page="checkout"] .payment-proof-upload strong {
        max-width: 100%;
        text-align: left;
    }
}
