:root {
    --ink: #161821;
    --ink-soft: #5f6471;
    --muted: #858b98;
    --paper: #faf7ef;
    --paper-2: #f4eee1;
    --cream: #fffdf7;
    --white: #ffffff;
    --blue: #2d63ff;
    --green: #b9f34a;
    --green-dark: #719b13;
    --coral: #ff765f;
    --orange: #f3a738;
    --lavender: #e9e5ff;
    --border: rgba(22, 24, 33, .12);
    --border-strong: rgba(22, 24, 33, .24);
    --shadow-soft: 0 18px 48px rgba(22, 24, 33, .09);
    --shadow-card: 0 14px 34px rgba(22, 24, 33, .10);
    --radius-xl: 36px;
    --radius-lg: 26px;
    --radius-md: 18px;
    --radius-sm: 12px;
    --container: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: Poppins, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--ink);
    background: var(--paper);
    line-height: 1.6;
    font-size: 16px;
    text-rendering: optimizeLegibility;
}
body::before { display: none; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--blue); }
img, svg { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
button:disabled { opacity: .55; cursor: not-allowed; }
code { background: rgba(22,24,33,.07); border-radius: 8px; padding: .12rem .38rem; }
svg { width: 1.1em; height: 1.1em; stroke: currentColor; stroke-width: 2; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.container { width: min(var(--container), calc(100% - 48px)); margin: 0 auto; }
.section-pad { padding: 96px 0; }
.section-soft { background: linear-gradient(180deg, #fffdf7, #f7f1e6); border-block: 1px solid var(--border); }
.section-dark { background: #121624; color: var(--white); }
.skip-link { position: absolute; left: -999px; top: 8px; background: var(--ink); color: var(--white); padding: 10px 14px; z-index: 99; }
.skip-link:focus { left: 8px; }

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(250, 247, 239, .86);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: 82px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; letter-spacing: -.02em; font-size: 1.08rem; flex: 0 0 auto; }
.brand:hover { color: var(--ink); }
.brand-mark { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 12px; background: #151926; color: var(--green); box-shadow: 0 0 0 3px #fff, 6px 6px 0 var(--coral); font-size: .78rem; font-weight: 800; letter-spacing: -.02em; }
.brand-text { white-space: nowrap; }
.main-nav { display: flex; align-items: center; gap: 4px; padding: 5px; background: rgba(255,255,255,.72); border: 1px solid var(--border); border-radius: 999px; }
.main-nav a { padding: 9px 14px; border-radius: 999px; color: var(--ink-soft); font-weight: 700; font-size: .88rem; white-space: nowrap; }
.main-nav a.is-active, .main-nav a:hover { color: var(--ink); background: var(--white); box-shadow: 0 7px 18px rgba(22,24,33,.07); }
.header-actions, .button-row { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.header-actions { justify-content: flex-end; flex: 0 0 auto; }
.nav-toggle { display: none; width: 46px; height: 46px; border: 1px solid var(--border); background: var(--white); border-radius: 14px; }
.nav-toggle span { display: block; width: 19px; height: 2px; background: var(--ink); margin: 4px auto; }

/* Buttons */
.button {
    display: inline-flex; align-items: center; justify-content: center; gap: 9px;
    border: 1px solid var(--border-strong); border-radius: 999px; padding: 12px 20px;
    font-weight: 800; background: var(--white); color: var(--ink);
    min-height: 46px; line-height: 1.1;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
    white-space: nowrap;
}
.button:hover { color: var(--ink); transform: translateY(-2px); box-shadow: 0 12px 26px rgba(22,24,33,.12); }
.button-primary { background: var(--green); border-color: #151926; box-shadow: inset 0 -2px 0 rgba(22,24,33,.14); }
.button-secondary { background: var(--coral); border-color: transparent; color: var(--ink); }
.button-outline { background: var(--white); }
.button-ghost { background: rgba(255,255,255,.56); border-color: var(--border); box-shadow: none; }
.button-small { padding: 8px 13px; min-height: 36px; font-size: .82rem; }
.button-large { padding: 15px 24px; min-height: 54px; font-size: .96rem; }
.full-button { width: 100%; margin-top: 10px; }
.cart-link span, [data-cart-count] { display: inline-grid; place-items: center; min-width: 22px; height: 22px; padding: 0 6px; border-radius: 999px; background: var(--ink); color: var(--green); font-size: .74rem; line-height: 1; }

/* Type */
h1, h2, h3 { margin: 0; line-height: 1.08; letter-spacing: -.035em; }
h1 { font-size: clamp(3rem, 6.2vw, 6.3rem); max-width: 980px; }
h2 { font-size: clamp(2.15rem, 4.4vw, 4.35rem); }
h3 { font-size: 1.22rem; }
p { color: var(--ink-soft); margin: 0; }
.lead, .hero-copy p, .page-hero p { font-size: clamp(1.03rem, 1.3vw, 1.18rem); line-height: 1.78; max-width: 680px; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; text-transform: uppercase; letter-spacing: .12em; font-weight: 800; font-size: .74rem; color: var(--blue); margin-bottom: 14px; }
.eyebrow::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--coral); box-shadow: 13px 0 0 var(--green); }
.muted { color: var(--muted); }
.text-link { color: var(--blue); font-weight: 800; text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 5px; }
.text-link:hover { color: var(--ink); }

/* Shared layout blocks */
.section-heading { margin-bottom: 38px; }
.split-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 28px; }
.split-heading p { max-width: 460px; }
.section-dark .split-heading p, .section-dark p { color: rgba(255,255,255,.68); }
.center-heading { text-align: center; max-width: 820px; }
.center-heading .eyebrow { justify-content: center; }
.page-hero { background: linear-gradient(135deg, #fffdf7 0%, #f4eee1 100%); border-bottom: 1px solid var(--border); }
.compact-hero { padding: 80px 0 70px; }
.two-col-hero, .hero-grid, .design-detail-grid, .application-grid, .dashboard-grid, .creator-hero-card, .cart-layout, .checkout-layout { display: grid; gap: 42px; align-items: start; }
.two-col-hero { grid-template-columns: minmax(0,1fr) 420px; align-items: center; }
.notice { border-radius: 18px; padding: 15px 18px; border: 1px solid var(--border); background: var(--white); margin: 16px 0; }
.notice.success { background: #effdd5; border-color: rgba(113,155,19,.24); }
.notice.error { background: #fff0ee; border-color: rgba(255,118,95,.35); }
.empty-state { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 44px; text-align: center; box-shadow: var(--shadow-soft); }
.empty-state h2 { font-size: clamp(2rem, 3.5vw, 3.2rem); }
.empty-state p { margin: 10px auto 22px; max-width: 560px; }

/* New homepage */
.home-hero { padding: 52px 0 74px; }
.home-hero-grid { display: grid; grid-template-columns: minmax(0, .96fr) minmax(520px, 1fr); gap: 56px; align-items: center; }
.home-hero .hero-copy { position: relative; z-index: 1; }
.hero-kicker { display: inline-flex; align-items: center; gap: 10px; background: var(--white); border: 1px solid var(--border); border-radius: 999px; padding: 8px 14px; margin-bottom: 24px; color: var(--ink-soft); font-size: .9rem; font-weight: 700; box-shadow: 0 10px 24px rgba(22,24,33,.06); }
.hero-kicker span { display: inline-grid; place-items: center; width: 24px; height: 24px; border-radius: 50%; background: var(--green); color: var(--ink); font-size: .72rem; font-weight: 900; }
.hero-copy h1 { max-width: 680px; }
.hero-copy p { margin: 24px 0 0; max-width: 590px; }
.hero-copy .button-row { margin-top: 30px; }
.hero-proof-row { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; margin-top: 34px; max-width: 640px; }
.hero-proof-row article { padding: 18px; background: rgba(255,255,255,.66); border: 1px solid var(--border); border-radius: 20px; }
.hero-proof-row strong { display: block; font-size: 1.55rem; line-height: 1; letter-spacing: -.04em; }
.hero-proof-row span { display: block; color: var(--ink-soft); font-size: .82rem; font-weight: 700; margin-top: 4px; }
.hero-chip { display: inline-flex; align-items: center; gap: 9px; margin-top: 22px; color: var(--ink-soft); font-weight: 700; font-size: .88rem; }
.hero-chip-icon { display: inline-grid; place-items: center; width: 28px; height: 28px; border-radius: 9px; background: var(--ink); color: var(--green); font-size: .7rem; font-weight: 900; }

.home-specimen-board, .hero-showcase { position: relative; }
.hero-showcase { background: linear-gradient(145deg, #ffffff 0%, #f6f2e8 100%); border: 1px solid var(--border); border-radius: 34px; padding: 22px; box-shadow: var(--shadow-soft); }
.hero-showcase::before { content: ""; position: absolute; inset: 18px; border: 1px dashed rgba(22,24,33,.16); border-radius: 25px; pointer-events: none; }
.hero-showcase-head { position: relative; z-index: 1; display: flex; justify-content: space-between; gap: 18px; align-items: flex-start; padding: 2px 4px 18px; }
.hero-showcase-head strong { display: block; font-size: 1.05rem; }
.hero-showcase-head span { color: var(--ink-soft); font-size: .86rem; font-weight: 600; }
.drop-status { display: inline-flex; align-items: center; gap: 7px; padding: 7px 11px; border-radius: 999px; background: #effdd5; color: #334608; font-size: .78rem; font-weight: 800; white-space: nowrap; }
.showcase-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.1fr .9fr; gap: 16px; }
.feature-product { min-height: 460px; border-radius: 28px; border: 1px solid var(--border); background: #fff; padding: 22px; box-shadow: 0 16px 38px rgba(22,24,33,.10); display: grid; align-content: space-between; overflow: hidden; }
.feature-product .sample-art { height: 265px; border-radius: 24px; }
.feature-product h3 { font-size: 1.55rem; margin-top: 18px; }
.feature-product p { margin-top: 6px; font-weight: 600; }
.product-mock-card { background: var(--white); border: 1px solid var(--border); border-radius: 24px; padding: 16px; min-height: 222px; box-shadow: 0 12px 28px rgba(22,24,33,.08); }
.product-mock-card + .product-mock-card { margin-top: 16px; }
.mock-product-visual { height: 142px; border-radius: 18px; background: #f3f4f7; position: relative; overflow: hidden; display: grid; place-items: center; }
.mock-product-visual::before { content: ""; width: 112px; height: 126px; background: #fff; border: 1px solid rgba(22,24,33,.22); border-radius: 28px 28px 16px 16px; box-shadow: 0 12px 26px rgba(22,24,33,.10); }
.mock-product-visual.tshirt::before { clip-path: polygon(25% 0,75% 0,100% 25%,82% 42%,82% 100%,18% 100%,18% 42%,0 25%); }
.mock-product-visual.mug::before { width: 112px; height: 84px; border-radius: 16px; }
.mock-product-visual.mug::after { content: ""; position: absolute; width: 28px; height: 40px; right: 88px; border: 2px solid rgba(22,24,33,.24); border-left: 0; border-radius: 0 20px 20px 0; }
.mock-product-visual .mini-design { position: absolute; width: 52px; height: 52px; border-radius: 14px; box-shadow: 0 8px 16px rgba(22,24,33,.14); }
.product-mock-card strong { display: block; margin-top: 12px; }
.product-mock-card span { color: var(--ink-soft); font-size: .86rem; font-weight: 600; }
.home-specimen-board { min-height: auto; display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 16px; }
.home-specimen { position: static; width: auto; transform: none !important; }

/* Artwork system */
.sample-art, .design-card-art, .detail-art, .mini-design, .table-thumb {
    position: relative; overflow: hidden; display: block; border-radius: 20px; background: linear-gradient(135deg, var(--blue), var(--coral));
}
.sample-art { height: 196px; }
.design-card-art { height: 248px; }
.detail-art { height: min(72vh, 650px); border-radius: 32px; box-shadow: var(--shadow-soft); }
.mini-design { width: 54px; height: 54px; border-radius: 14px; }
.table-thumb { display: inline-block; width: 44px; height: 44px; border-radius: 12px; margin-right: 10px; vertical-align: middle; }
.art-sunny { background: radial-gradient(circle at 30% 28%, #ffd166 0 17%, transparent 18%), radial-gradient(circle at 70% 70%, #ff765f 0 20%, transparent 21%), linear-gradient(135deg,#fff4bf,#fffdf7); }
.art-sunny::after { content: "SUN"; position: absolute; left: 18px; bottom: 15px; font-size: clamp(2.5rem, 5vw, 4.4rem); font-weight: 900; letter-spacing: -.11em; color: #121624; }
.art-noise { background: repeating-linear-gradient(-7deg, #101525 0 17px, #2d63ff 17px 29px, #b9f34a 29px 39px); }
.art-noise::after { content: "MAKE\A NOISE"; white-space: pre; position: absolute; inset: 22px; color: #fff; font-size: clamp(2rem, 4vw, 3.1rem); line-height: .82; font-weight: 900; text-shadow: 0 3px 0 rgba(0,0,0,.35); }
.art-static { background: radial-gradient(circle at 18% 20%, #b9f34a 0 16%, transparent 17%), radial-gradient(circle at 78% 24%, #cab7ff 0 14%, transparent 15%), radial-gradient(circle at 50% 76%, #ff765f 0 21%, transparent 22%), #f7f0de; }
.art-arcade { background: linear-gradient(135deg, #14062e, #2d63ff 56%, #ff4e92); }
.art-arcade::after { content: "ARCADE"; position: absolute; bottom: 22px; left: 22px; color: #b9f34a; font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 900; letter-spacing: -.06em; text-shadow: 3px 3px 0 #111; }
.art-plants { background: radial-gradient(ellipse at 45% 90%, #5f8f57 0 33%, transparent 34%), radial-gradient(ellipse at 32% 45%, #96c078 0 24%, transparent 25%), radial-gradient(ellipse at 67% 38%, #2e6238 0 20%, transparent 21%), #f0d1ad; }
.art-north { background: conic-gradient(from 45deg, #2d63ff, #fff, #121624, #b9f34a, #2d63ff); }
.art-north::after { content: "N"; position: absolute; inset: 0; display: grid; place-items: center; color: #fff; font-size: clamp(5rem, 11vw, 9rem); font-weight: 900; text-shadow: 5px 5px 0 #11172a; }
.art-notes { background: linear-gradient(90deg, rgba(22,24,33,.08) 1px, transparent 1px), linear-gradient(rgba(22,24,33,.08) 1px, transparent 1px), #fff; background-size: 28px 28px; }
.art-notes::after { content: "✦ ✿ ◇ +"; position: absolute; inset: 28px; font-size: clamp(1.7rem, 4vw, 3rem); color: var(--coral); font-weight: 900; }
.art-wave { background: radial-gradient(ellipse at 50% 80%, #2d63ff 0 20%, transparent 21%), repeating-radial-gradient(circle at 50% 80%, #ffd166 0 10px, #ff765f 11px 22px, #2d63ff 23px 34px); }

/* Cards and grids */
.design-grid, .creator-grid, .creator-list-grid, .benefits-grid, .product-grid, .latest-strip, .steps-grid, .why-grid, .dashboard-stats, .admin-stats { display: grid; gap: 22px; }
.four-col { grid-template-columns: repeat(4, 1fr); }
.three-col { grid-template-columns: repeat(3, 1fr); }
.featured-six-grid { align-items: stretch; }
.design-card { background: var(--white); border: 1px solid var(--border); border-radius: 28px; padding: 12px; box-shadow: 0 12px 32px rgba(22,24,33,.08); transition: transform .18s ease, box-shadow .18s ease; }
.design-card:hover { transform: translateY(-5px); box-shadow: 0 18px 44px rgba(22,24,33,.12); }
.design-card[hidden] { display: none; }
.design-card-body { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; padding: 16px 4px 8px; }
.design-card-body h3 { font-size: 1.1rem; letter-spacing: -.02em; }
.design-card-body p, .card-description { font-size: .92rem; color: var(--ink-soft); margin-top: 4px; }
.card-description { padding: 0 4px 12px; }
.card-meta { display: flex; justify-content: space-between; gap: 16px; padding: 12px 4px 4px; border-top: 1px solid var(--border); color: var(--ink-soft); font-size: .86rem; font-weight: 700; }
.badge { position: absolute; top: 14px; left: 14px; z-index: 2; display: inline-flex; align-items: center; border: 1px solid rgba(22,24,33,.18); background: var(--green); border-radius: 999px; padding: 6px 10px; font-size: .72rem; font-weight: 800; color: var(--ink); }
.large-badge { top: 22px; left: 22px; }
.icon-button { width: 40px; height: 40px; flex: 0 0 auto; display: inline-grid; place-items: center; border: 1px solid var(--border-strong); background: var(--white); border-radius: 999px; font-weight: 900; transition: .18s ease; }
.icon-button:hover, .icon-button.is-active, [data-save].is-active, [data-follow].is-active { background: var(--green); color: var(--ink); }
.icon-button.danger { background: #fff0ee; color: #ae2d1d; }

/* Home-specific sections */
.home-steps-section { padding-top: 80px; }
.home-steps-grid, .steps-grid { grid-template-columns: repeat(4, 1fr); }
.home-step-card, .why-card, .creator-card, .creator-profile-card, .creator-apply-card, .dashboard-panel, .summary-card, .filter-panel, .application-form, .application-item { background: var(--white); border: 1px solid var(--border); border-radius: 28px; padding: 26px; box-shadow: 0 12px 32px rgba(22,24,33,.07); }
.home-step-card { position: relative; min-height: 245px; }
.home-step-card::after { content: ""; position: absolute; top: 38px; right: -23px; width: 23px; border-top: 1px dashed rgba(22,24,33,.22); }
.home-step-card:last-child::after { display: none; }
.step-icon { display: inline-grid; place-items: center; width: 54px; height: 54px; border-radius: 18px; background: #eef3ff; color: var(--blue); margin-bottom: 20px; }
.step-icon svg, .why-icon svg { width: 24px; height: 24px; }
.step-number { display: block; color: var(--coral); font-weight: 800; font-size: .78rem; margin-bottom: 5px; letter-spacing: .08em; }
.home-step-card p { margin-top: 10px; font-size: .93rem; }
.product-route-section { padding: 86px 0; }
.product-grid { grid-template-columns: repeat(6, 1fr); }
.product-pill { display: block; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.16); border-radius: 22px; padding: 22px; color: var(--white); min-height: 118px; transition: .18s ease; }
.product-pill:hover { transform: translateY(-4px); color: var(--white); background: rgba(255,255,255,.11); }
.product-pill span { display: block; font-weight: 800; }
.product-pill small { display: block; margin-top: 18px; color: var(--green); font-weight: 800; }
.creator-grid { grid-template-columns: repeat(4, 1fr); }
.creator-card { display: grid; gap: 14px; }
.creator-card-row { display: flex; align-items: center; gap: 13px; }
.avatar { display: inline-grid; place-items: center; width: 52px; height: 52px; border-radius: 18px; background: var(--lavender); color: var(--ink); font-weight: 900; flex: 0 0 auto; }
.small-avatar { width: 44px; height: 44px; border-radius: 15px; }
.large-avatar { width: 66px; height: 66px; border-radius: 22px; font-size: 1.05rem; }
.huge-avatar { width: 130px; height: 130px; border-radius: 34px; font-size: 2.1rem; }
.accent-blue .avatar, .avatar.accent-blue { background: #e8edff; color: #264ecf; }
.accent-coral .avatar, .avatar.accent-coral { background: #fff0ee; color: #b83d2d; }
.accent-lime .avatar, .avatar.accent-lime { background: #effdd5; color: #46620b; }
.accent-yellow .avatar, .avatar.accent-yellow { background: #fff2ca; color: #76520a; }
.creator-card p { font-size: .93rem; }
.creator-card-actions { display: flex; gap: 9px; flex-wrap: wrap; margin-top: auto; }
.why-join-section { text-align: center; }
.why-grid { grid-template-columns: repeat(4, 1fr); }
.why-card { text-align: left; min-height: 260px; }
.why-icon { display: inline-grid; place-items: center; width: 64px; height: 64px; border-radius: 22px; background: #eef3ff; color: var(--blue); margin-bottom: 22px; }
.why-card-2 .why-icon { background: #effdd5; color: var(--green-dark); }
.why-card-3 .why-icon { background: #fff0ee; color: var(--coral); }
.why-card-4 .why-icon { background: #fff2ca; color: #a16c0a; }
.latest-strip { grid-template-columns: repeat(4, 1fr); }
.latest-tile { background: var(--white); border: 1px solid var(--border); border-radius: 24px; padding: 12px; box-shadow: var(--shadow-card); }
.latest-tile .sample-art { height: 150px; border-radius: 18px; }
.latest-tile .sample-art small { position: absolute; top: 10px; left: 10px; background: var(--ink); color: var(--white); padding: 4px 8px; border-radius: 999px; font-size: .65rem; font-weight: 800; }
.latest-tile strong { display: block; margin-top: 12px; font-size: .98rem; }
.latest-tile em { color: var(--ink-soft); font-style: normal; font-size: .85rem; }
.cta-section { padding-top: 64px; }
.cta-card { background: radial-gradient(circle at 20% 20%, rgba(185,243,74,.16), transparent 28%), radial-gradient(circle at 82% 0%, rgba(255,118,95,.23), transparent 24%), #121624; color: var(--white); border-radius: 38px; padding: clamp(42px, 7vw, 78px); text-align: center; box-shadow: 0 22px 60px rgba(22,24,33,.20); overflow: hidden; }
.cta-card h2 { max-width: 780px; margin: 0 auto; }
.cta-card p { color: rgba(255,255,255,.72); max-width: 670px; margin: 18px auto 30px; }
.centre-buttons { justify-content: center; }
.cta-card .button-outline { border-color: rgba(255,255,255,.28); background: rgba(255,255,255,.09); color: #fff; }
.cta-card .button-outline:hover { color: #fff; }

/* Browse */
.browse-layout { display: grid; grid-template-columns: 300px minmax(0, 1fr); gap: 30px; align-items: start; }
.filter-panel { position: sticky; top: 106px; }
.filter-panel h2 { font-size: 1.8rem; margin-bottom: 8px; }
.filter-card { display: grid; gap: 8px; margin-top: 18px; }
.filter-card label, .form-row label, .application-form label, .quantity-field, .selector-block label { font-weight: 800; color: var(--ink); }
input, select, textarea { width: 100%; border: 1px solid var(--border); border-radius: 16px; background: var(--white); color: var(--ink); padding: 13px 14px; outline: none; }
input:focus, select:focus, textarea:focus { border-color: rgba(45,99,255,.62); box-shadow: 0 0 0 4px rgba(45,99,255,.10); }
.results-bar { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 22px; color: var(--ink-soft); }
.results-bar strong { color: var(--ink); }
.results-bar span { font-size: .9rem; font-weight: 700; }

/* Design detail */
.design-detail-grid { grid-template-columns: minmax(0, .95fr) minmax(420px, .8fr); align-items: start; }
.detail-art-wrap { position: sticky; top: 110px; }
.detail-art-title { position: absolute; left: 28px; bottom: 24px; font-size: clamp(2.2rem, 4vw, 4rem); font-weight: 900; letter-spacing: -.07em; color: #fff; text-shadow: 0 4px 16px rgba(0,0,0,.28); }
.palette-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 16px; }
.palette-row span { background: var(--white); border: 1px solid var(--border); border-radius: 999px; padding: 8px 12px; font-weight: 700; color: var(--ink-soft); font-size: .85rem; }
.detail-copy h1 { font-size: clamp(2.7rem, 5vw, 5.2rem); }
.creator-mini { display: flex; align-items: center; gap: 13px; background: var(--white); border: 1px solid var(--border); border-radius: 20px; padding: 13px; margin: 24px 0; }
.creator-mini small { display: block; color: var(--ink-soft); font-weight: 600; }
.detail-panel { background: var(--white); border: 1px solid var(--border); border-radius: 30px; padding: 24px; box-shadow: var(--shadow-card); margin: 26px 0; }
.detail-panel h2 { font-size: 1.65rem; margin-bottom: 16px; }
.product-choice-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.product-choice { text-align: left; border: 1px solid var(--border); background: #fbfaf6; border-radius: 18px; padding: 15px; }
.product-choice strong { display: block; }
.product-choice span { color: var(--ink-soft); font-weight: 700; }
.product-choice.is-selected { background: #effdd5; border-color: rgba(113,155,19,.38); box-shadow: inset 0 0 0 2px rgba(185,243,74,.45); }
.selector-block { margin-top: 18px; }
.chip-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.chip { border: 1px solid var(--border); background: var(--white); border-radius: 999px; padding: 9px 14px; font-weight: 800; }
.chip.is-selected { background: var(--ink); color: var(--white); border-color: var(--ink); }
.quantity-field { display: grid; gap: 8px; margin-top: 18px; }
.quantity-field input, .cart-item input[type="number"] { max-width: 120px; }
.order-summary { display: flex; align-items: center; justify-content: space-between; gap: 18px; border-top: 1px solid var(--border); padding-top: 18px; margin-top: 22px; }
.order-summary span { display: block; color: var(--ink-soft); font-size: .86rem; font-weight: 700; }
.order-summary strong { font-size: 1.5rem; }
.story-block { background: rgba(255,255,255,.66); border: 1px solid var(--border); border-radius: 24px; padding: 24px; }
.story-block h2 { font-size: 1.7rem; margin-bottom: 12px; }
.share-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.share-row button { border: 1px solid var(--border); border-radius: 999px; background: var(--white); padding: 10px 14px; font-weight: 800; }
.mockup-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 16px; }
.mockup { min-height: 142px; border: 1px solid var(--border); border-radius: 22px; background: rgba(255,255,255,.72); display: grid; place-items: center; position: relative; overflow: hidden; box-shadow: 0 12px 28px rgba(22,24,33,.08); }
.mockup::before { content: ""; position: absolute; width: 74px; height: 86px; top: 24px; border: 1px solid rgba(22,24,33,.24); background: #fff; border-radius: 20px 20px 12px 12px; }
.mockup-shirt::before { clip-path: polygon(24% 0, 76% 0, 100% 25%, 84% 42%, 84% 100%, 16% 100%, 16% 42%, 0 25%); }
.mockup-mug::before { width: 70px; height: 62px; top: 34px; border-radius: 10px; }
.mockup-mug::after { content: ""; position: absolute; width: 22px; height: 32px; top: 50px; right: 26px; border: 2px solid rgba(22,24,33,.22); border-left: 0; border-radius: 0 18px 18px 0; }
.mockup .mini-design { width: 38px; height: 38px; z-index: 2; }
.mockup span { position: absolute; left: 10px; bottom: 9px; font-size: .78rem; font-weight: 800; color: var(--ink-soft); }

/* Creators */
.creator-list-grid { grid-template-columns: repeat(3, 1fr); }
.creator-profile-card { display: grid; gap: 15px; }
.creator-profile-top { display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.creator-profile-card h2 { font-size: 1.65rem; }
.creator-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.creator-stats span, .creator-stat-stack div, .dashboard-stats article, .hero-stats div { background: #fbfaf6; border: 1px solid var(--border); border-radius: 18px; padding: 14px; }
.creator-stats strong, .creator-stat-stack strong, .dashboard-stats strong, .hero-stats strong { display: block; font-size: 1.55rem; letter-spacing: -.04em; color: var(--ink); }
.mini-design-row { display: flex; gap: 10px; margin-top: 4px; }
.creator-hero { background: linear-gradient(135deg, #fffdf7, #f1ebff); border-bottom: 1px solid var(--border); }
.creator-hero-card { grid-template-columns: auto minmax(0,1fr) 240px; align-items: center; background: var(--white); border: 1px solid var(--border); border-radius: 36px; padding: 34px; box-shadow: var(--shadow-soft); }
.creator-meta-line { display: flex; flex-wrap: wrap; gap: 9px; margin: 18px 0 24px; }
.creator-meta-line span { background: #fbfaf6; border: 1px solid var(--border); border-radius: 999px; padding: 8px 12px; color: var(--ink-soft); font-weight: 700; }
.creator-stat-stack { display: grid; gap: 10px; }

/* Applications / dashboard / admin / carts */
.application-grid { grid-template-columns: minmax(0, .8fr) minmax(430px, 1fr); }
.application-copy .lead { margin: 18px 0 26px; }
.benefit-list { display: grid; gap: 12px; padding: 0; list-style: none; margin: 22px 0 0; }
.benefit-list li { background: rgba(255,255,255,.66); border: 1px solid var(--border); border-radius: 18px; padding: 14px 16px; font-weight: 700; }
.application-form { display: grid; gap: 16px; }
.form-row.two-fields, .two-fields { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.checkbox-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin: 8px 0; }
.checkbox-grid label, .checkbox-label { display: flex !important; align-items: center; gap: 10px; padding: 12px 14px; border: 1px solid var(--border); border-radius: 16px; background: rgba(255,255,255,.72); font-weight: 750; }
.checkbox-grid input, .checkbox-label input { width: auto !important; }
.form-note { font-size: .9rem; margin: -6px 0 12px; }
.dashboard-grid { grid-template-columns: 300px minmax(0,1fr); }
.dashboard-sidebar { position: sticky; top: 106px; }
.dashboard-sidebar .avatar { margin-bottom: 14px; }
.dashboard-section { margin-top: 28px; }
.dashboard-main { display: grid; gap: 22px; }
.dashboard-stats, .admin-stats { grid-template-columns: repeat(3, 1fr); }
.dashboard-table { background: var(--white); border: 1px solid var(--border); border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-card); }
.table-row { display: grid; grid-template-columns: 1.4fr .8fr .8fr .4fr; gap: 12px; padding: 15px 18px; align-items: center; border-bottom: 1px solid var(--border); }
.table-row:last-child { border-bottom: 0; }
.table-head { background: #fbfaf6; font-weight: 800; color: var(--ink); }
.upload-preview { display: grid; gap: 14px; }
.admin-login { max-width: 560px; margin: 0 auto; display: grid; gap: 16px; }
.admin-tabs { display: flex; gap: 10px; flex-wrap: wrap; margin: 34px 0 20px; }
.admin-tabs a { display: inline-flex; border: 1px solid var(--border); border-radius: 999px; padding: 10px 14px; background: var(--white); font-weight: 800; }
.admin-panel { scroll-margin-top: 110px; padding: 34px 0; border-top: 1px solid var(--border); }
.application-list { display: grid; gap: 16px; }
.application-item dl { display: grid; grid-template-columns: 130px 1fr; gap: 8px 16px; margin: 16px 0; }
.application-item dt { font-weight: 800; }
.application-item dd { margin: 0; color: var(--ink-soft); }
.admin-actions { display: flex; gap: 10px; margin-top: 16px; flex-wrap: wrap; }
.admin-topline, .panel-heading, .record-heading { display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; }
.inline-admin-form { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.inline-admin-form select, .inline-admin-form input { width: auto; min-width: 150px; }
.admin-empty { background: var(--white); border: 1px solid var(--border); border-radius: 24px; padding: 32px; text-align: center; }

.cart-layout, .checkout-layout { grid-template-columns: minmax(0, 1fr) 370px; }
.cart-list { display: grid; gap: 14px; }
.cart-item { display: grid; grid-template-columns: 74px minmax(0,1fr) 110px 100px 44px; gap: 18px; align-items: center; background: var(--white); border: 1px solid var(--border); border-radius: 24px; padding: 16px; box-shadow: var(--shadow-card); }
.cart-item h2 { font-size: 1.35rem; margin: 0 0 4px; }
.cart-item label { display: grid; gap: 6px; color: var(--ink-soft); font-weight: 800; }
.cart-actions { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; margin-top: 14px; }
.summary-card { position: sticky; top: 106px; }
.summary-card h2 { font-size: 2.1rem; margin: 4px 0 16px; }
.summary-row { display: flex; justify-content: space-between; gap: 16px; padding: 13px 0; border-bottom: 1px solid var(--border); font-weight: 800; }
.summary-row.total { border-top: 2px solid var(--ink); border-bottom: 0; margin-top: 12px; font-size: 1.15rem; }
.summary-items { display: grid; gap: 12px; margin: 18px 0; }
.summary-items div { display: grid; gap: 4px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.summary-items small { color: var(--ink-soft); font-weight: 700; }
.order-lines { display: grid; gap: 8px; }

/* How it works */
.workflow-timeline { display: grid; gap: 18px; counter-reset: workflow; }
.workflow-timeline article { position: relative; display: grid; grid-template-columns: 74px minmax(0,1fr) auto; gap: 22px; align-items: center; background: var(--white); border: 1px solid var(--border); border-radius: 28px; padding: 24px; box-shadow: var(--shadow-card); }
.workflow-timeline article span { display: grid; place-items: center; width: 58px; height: 58px; border-radius: 18px; background: #eef3ff; color: var(--blue); font-weight: 900; }
.workflow-timeline article h2 { font-size: 1.85rem; }
.workflow-timeline article p { max-width: 680px; }

/* Footer */
.site-footer { background: #121624; color: var(--white); padding: 62px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.25fr .65fr .85fr; gap: 42px; }
.footer-grid p, .footer-bottom { color: rgba(255,255,255,.66); }
.footer-grid h3 { font-size: 1rem; letter-spacing: 0; margin: 0 0 14px; }
.footer-grid a, .footer-button { display: block; color: rgba(255,255,255,.76); margin: 8px 0; background: none; border: 0; padding: 0; text-align: left; font-weight: 650; }
.footer-grid a:hover, .footer-button:hover { color: var(--white); }
.footer-brand { margin-bottom: 16px; }
.site-footer .brand-mark { box-shadow: 0 0 0 3px rgba(255,255,255,.10), 6px 6px 0 var(--coral); }
.footer-bottom { display: flex; justify-content: space-between; gap: 16px; border-top: 1px solid rgba(255,255,255,.13); padding-top: 20px; margin-top: 42px; }
.toast { position: fixed; right: 18px; bottom: 18px; max-width: 360px; padding: 14px 16px; background: var(--ink); color: var(--white); border-radius: 18px; box-shadow: var(--shadow-soft); opacity: 0; transform: translateY(12px); pointer-events: none; transition: .22s ease; z-index: 99; font-weight: 750; }
.toast.is-visible { opacity: 1; transform: translateY(0); }
.not-found { min-height: 60vh; display: grid; place-items: center; }
mark { background: var(--green); border-radius: 999px; padding: 4px 8px; font-weight: 800; }

/* Responsive */
@media (max-width: 1160px) {
    .header-actions .button-ghost:not(.cart-link) { display: none; }
    .home-hero-grid, .hero-grid, .design-detail-grid, .application-grid, .dashboard-grid, .two-col-hero, .creator-hero-card, .cart-layout, .checkout-layout { grid-template-columns: 1fr; }
    .detail-art-wrap, .filter-panel, .dashboard-sidebar, .summary-card { position: static; }
    .product-grid { grid-template-columns: repeat(3, 1fr); }
    .creator-grid, .why-grid, .home-steps-grid, .steps-grid, .latest-strip, .four-col { grid-template-columns: repeat(2, 1fr); }
    .three-col, .creator-list-grid { grid-template-columns: repeat(2, 1fr); }
    .home-step-card::after { display: none; }
}
@media (max-width: 820px) {
    .container { width: min(100% - 32px, var(--container)); }
    .section-pad { padding: 64px 0; }
    .header-inner { min-height: 74px; }
    .nav-toggle { display: block; }
    .main-nav { position: absolute; left: 16px; right: 16px; top: 76px; display: none; flex-direction: column; align-items: stretch; background: var(--white); border: 1px solid var(--border); border-radius: 22px; padding: 12px; box-shadow: var(--shadow-soft); }
    .main-nav.is-open { display: flex; }
    .main-nav a { border-radius: 14px; }
    .header-actions { display: none; }
    h1 { font-size: clamp(2.8rem, 12vw, 4.5rem); }
    h2 { font-size: clamp(2rem, 9vw, 3.2rem); }
    .home-hero { padding-top: 42px; }
    .showcase-grid, .hero-proof-row, .home-steps-grid, .steps-grid, .product-grid, .creator-grid, .why-grid, .latest-strip, .three-col, .four-col, .creator-list-grid, .browse-layout, .dashboard-stats, .admin-stats, .form-row.two-fields, .two-fields, .checkbox-grid, .product-choice-grid, .mockup-strip { grid-template-columns: 1fr; }
    .hero-showcase, .feature-product, .product-mock-card, .home-step-card, .why-card, .creator-card, .creator-profile-card, .creator-apply-card, .dashboard-panel, .summary-card, .filter-panel, .application-form { border-radius: 24px; }
    .feature-product { min-height: auto; }
    .feature-product .sample-art, .design-card-art { height: 210px; }
    .sample-art { height: 150px; }
    .detail-art { height: 430px; }
    .split-heading, .results-bar, .panel-heading, .admin-topline, .record-heading, .order-summary { align-items: flex-start; flex-direction: column; }
    .creator-hero-card { padding: 24px; }
    .cart-item { grid-template-columns: 60px minmax(0,1fr); }
    .cart-item > label, .cart-item > strong, .cart-item > button { grid-column: 2; }
    .table-row { grid-template-columns: 1fr; }
    .workflow-timeline article { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; }
}

/* ------------------------------------------------------------------
   v9 redesign refinements
   ------------------------------------------------------------------ */
.site-header .header-actions .button-primary { padding-inline: 22px; }
.site-header .header-actions .button-ghost:not(.cart-link) { display: none !important; }

.home-hero-v9 {
    padding: 74px 0 94px;
    background:
        radial-gradient(circle at 8% 12%, rgba(185,243,74,.18), transparent 24%),
        radial-gradient(circle at 92% 18%, rgba(45,99,255,.10), transparent 22%),
        linear-gradient(180deg, #fffdf7 0%, #f7f1e6 100%);
    border-bottom: 1px solid var(--border);
}
.hero-v9-grid {
    display: grid;
    grid-template-columns: minmax(0, .94fr) minmax(540px, 1fr);
    gap: 78px;
    align-items: center;
}
.hero-v9-copy h1 {
    font-size: clamp(3.25rem, 6.4vw, 7.2rem);
    line-height: .98;
    max-width: 780px;
    letter-spacing: -.055em;
}
.hero-v9-copy p {
    margin-top: 24px;
    max-width: 650px;
    font-size: 1.12rem;
    line-height: 1.76;
}
.hero-v9-copy .button-row { margin-top: 34px; }
.hero-proof-row-v9 { max-width: 560px; }
.hero-commerce-board {
    position: relative;
    min-height: 640px;
    display: grid;
    align-items: center;
}
.hero-commerce-board::before {
    content: "";
    position: absolute;
    inset: 38px 20px 22px 56px;
    background: #121624;
    border-radius: 44px;
    transform: rotate(-2deg);
    opacity: .06;
}
.commerce-window {
    position: relative;
    z-index: 2;
    background: rgba(255,255,255,.92);
    border: 1px solid var(--border);
    border-radius: 36px;
    box-shadow: 0 28px 80px rgba(22,24,33,.15);
    padding: 22px;
    overflow: hidden;
}
.commerce-window::after {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    right: -90px;
    bottom: -80px;
    border-radius: 50%;
    background: rgba(185,243,74,.28);
    pointer-events: none;
}
.window-top {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px 4px 20px;
    color: var(--ink-soft);
    font-weight: 800;
    font-size: .86rem;
}
.window-top span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--coral);
}
.window-top span:nth-child(2) { background: var(--orange); }
.window-top span:nth-child(3) { background: var(--green); }
.window-top strong { margin-left: 6px; color: var(--ink); }
.drop-builder-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(210px, .7fr);
    gap: 20px;
    position: relative;
    z-index: 1;
}
.drop-main-art {
    display: block;
    height: 380px;
    border-radius: 30px;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.5), 0 18px 38px rgba(22,24,33,.13);
}
.drop-title-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: flex-start;
    margin-top: 20px;
}
.drop-title-row h3 { font-size: 1.6rem; }
.drop-title-row p { font-weight: 700; margin-top: 4px; }
.drop-title-row strong {
    background: #effdd5;
    border: 1px solid rgba(113,155,19,.22);
    border-radius: 999px;
    padding: 9px 12px;
    white-space: nowrap;
}
.drop-products-column { display: grid; gap: 14px; }
.mockup-card,
.mini-order-card {
    background: #fbfaf6;
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 14px;
    box-shadow: 0 12px 28px rgba(22,24,33,.08);
}
.mockup-card .mock-product-visual { height: 150px; }
.mockup-card strong,
.mini-order-card strong { display: block; margin-top: 10px; }
.mockup-card small,
.mini-order-card small { color: var(--ink-soft); font-weight: 700; }
.mini-order-card {
    display: flex;
    align-items: center;
    gap: 12px;
}
.mini-order-card span {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 16px;
    background: var(--green);
    color: var(--ink);
    flex: 0 0 auto;
}
.floating-creator-card {
    position: absolute;
    z-index: 3;
    left: -34px;
    bottom: 48px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 14px 16px;
    box-shadow: 0 18px 42px rgba(22,24,33,.14);
}
.floating-creator-card strong { display: block; }
.floating-creator-card small { color: var(--ink-soft); font-weight: 700; }
.home-steps-section-v9 { padding-top: 84px; }
.home-steps-grid-v9 {
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
.home-step-card-v9 {
    min-height: 255px;
    background: linear-gradient(180deg, #fff, #fbfaf6);
}
.home-step-card-v9 .step-number {
    display: inline-flex;
    background: #eef3ff;
    color: var(--blue);
    border-radius: 999px;
    padding: 6px 10px;
    margin-bottom: 16px;
}
.home-step-card-v9 .step-icon {
    position: absolute;
    right: 22px;
    top: 22px;
    width: 48px;
    height: 48px;
    margin: 0;
    border-radius: 16px;
    background: var(--ink);
    color: var(--green);
}
.home-step-card-v9::after { display: none; }
.home-step-card-v9 h3 { margin-top: 40px; }

/* How it works v9 */
.how-hero-v9 {
    background: radial-gradient(circle at 80% 15%, rgba(185,243,74,.16), transparent 26%), linear-gradient(135deg, #fffdf7 0%, #f5efe3 100%);
}
.how-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 440px);
    gap: 64px;
    align-items: center;
}
.how-hero-grid h1 {
    max-width: 880px;
    font-size: clamp(3rem, 6vw, 6.5rem);
}
.how-hero-grid .button-row { margin-top: 30px; }
.how-status-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 34px;
    padding: 30px;
    box-shadow: var(--shadow-soft);
}
.how-status-card > span,
.lane-label {
    display: inline-flex;
    color: var(--blue);
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: .72rem;
    font-weight: 900;
    margin-bottom: 12px;
}
.how-status-card h2 { font-size: 2.5rem; }
.how-status-card ul { margin: 20px 0 0; padding: 0; list-style: none; display: grid; gap: 10px; }
.how-status-card li {
    position: relative;
    padding-left: 26px;
    font-weight: 750;
    color: var(--ink-soft);
}
.how-status-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .56em;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 4px rgba(185,243,74,.25);
}
.journey-lanes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.journey-lane {
    position: relative;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 32px;
    padding: 30px;
    box-shadow: var(--shadow-card);
    overflow: hidden;
}
.journey-lane::after {
    content: "";
    position: absolute;
    right: -50px;
    top: -50px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(45,99,255,.08);
}
.creator-lane::after { background: rgba(185,243,74,.26); }
.customer-lane::after { background: rgba(45,99,255,.10); }
.internal-lane::after { background: rgba(255,118,95,.13); }
.journey-lane h3 { font-size: 2rem; max-width: 320px; }
.journey-lane ol { list-style: none; padding: 0; margin: 26px 0 0; display: grid; gap: 14px; counter-reset: lane; }
.journey-lane li {
    counter-increment: lane;
    display: grid;
    grid-template-columns: 38px 1fr;
    gap: 12px;
    align-items: start;
    padding: 14px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: #fbfaf6;
}
.journey-lane li::before {
    content: counter(lane, decimal-leading-zero);
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 13px;
    background: var(--ink);
    color: var(--green);
    font-size: .75rem;
    font-weight: 900;
}
.journey-lane strong { display: block; }
.journey-lane small { color: var(--ink-soft); font-weight: 650; }
.build-flow-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
.build-flow-grid article {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 28px;
    padding: 26px;
    box-shadow: var(--shadow-card);
}
.build-flow-grid span {
    display: inline-grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 15px;
    background: #eef3ff;
    color: var(--blue);
    font-weight: 900;
    margin-bottom: 22px;
}
.build-flow-grid h3 { font-size: 1.45rem; }
.build-flow-grid p { margin-top: 10px; }
.build-flow-grid small {
    display: inline-flex;
    margin-top: 20px;
    background: #effdd5;
    color: #46620b;
    border-radius: 999px;
    padding: 6px 10px;
    font-weight: 900;
}
.test-actions-card {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 36px;
    align-items: center;
    background: #121624;
    color: #fff;
    border-radius: 38px;
    padding: clamp(34px, 6vw, 64px);
    box-shadow: 0 22px 60px rgba(22,24,33,.18);
}
.test-actions-card p { color: rgba(255,255,255,.72); }
.test-actions-card .eyebrow { color: var(--green); }
.test-action-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}
.test-action-grid a {
    display: block;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 22px;
    padding: 20px;
    color: #fff;
}
.test-action-grid a:hover { background: rgba(255,255,255,.14); color: #fff; transform: translateY(-2px); }
.test-action-grid strong { display: block; }
.test-action-grid span { display: block; color: rgba(255,255,255,.68); margin-top: 6px; font-weight: 650; }

/* Admin kept private and cleaner */
.page-admin .site-header .main-nav a[href$="admin/"] { display: none; }
.admin-section .admin-topline { margin-bottom: 26px; }
.admin-section .dashboard-stats.admin-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
.admin-section .dashboard-stats article {
    background: linear-gradient(180deg, #fff, #fbfaf6);
    box-shadow: var(--shadow-card);
}
.admin-tabs {
    position: sticky;
    top: 92px;
    z-index: 8;
    background: rgba(250,247,239,.86);
    backdrop-filter: blur(12px);
    padding: 12px 0;
}
.application-item { box-shadow: var(--shadow-card); }

@media (max-width: 1160px) {
    .hero-v9-grid,
    .how-hero-grid,
    .test-actions-card { grid-template-columns: 1fr; }
    .hero-commerce-board { min-height: auto; }
    .floating-creator-card { left: 18px; bottom: -24px; }
    .journey-lanes,
    .build-flow-grid,
    .admin-section .dashboard-stats.admin-stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 820px) {
    .home-hero-v9 { padding: 44px 0 72px; }
    .hero-v9-copy h1,
    .how-hero-grid h1 { font-size: clamp(2.8rem, 13vw, 4.2rem); }
    .drop-builder-layout,
    .journey-lanes,
    .build-flow-grid,
    .test-action-grid,
    .admin-section .dashboard-stats.admin-stats { grid-template-columns: 1fr; }
    .drop-main-art { height: 260px; }
    .commerce-window { border-radius: 26px; padding: 16px; }
    .floating-creator-card { position: relative; left: auto; bottom: auto; margin-top: 18px; }
    .home-steps-grid-v9 { grid-template-columns: 1fr; }
    .test-actions-card { border-radius: 28px; }
}


/* v10 basket reliability/layout fixes */
.page-cart .compact-hero { padding: 70px 0 42px; }
.page-cart .cart-layout { align-items: start; }
.page-cart .empty-state,
.page-cart .cart-list,
.page-cart .summary-card { position: relative; z-index: 1; }
.notice { border: 1px solid var(--border); border-radius: 18px; padding: 14px 16px; margin-bottom: 18px; font-weight: 700; background: #fff; }
.notice.success { background: #effdd5; border-color: rgba(113,155,19,.25); color: #344d06; }
.notice.error { background: #fff0ee; border-color: rgba(174,45,29,.2); color: #8d2419; }
