/* ═══════════════════════════════════════════════════════════
   Andrhacula — Master Stylesheet
   Gothic Polymer Clay Artistry · andrhacula.com
   ═══════════════════════════════════════════════════════════ */

/* ── Variables (Violet Crypt palette) ──────────────────── */
:root {
    --bg:        #10091a;
    --bg2:       #160e22;
    --ink:       #ddd4e8;
    --body:      #b0a8be;
    --mid:       #8a8098;
    --muted:     #6a5a7a;
    --bone:      #2e1e42;
    --accent:    #7a5090;
    --accent-lt: #a87ec0;
    --accent-bg: #1e1030;
    --card:      #18102a;
    --card-alt:  #1c1230;
    --card-h:    #1e1434;
    --shadow:    rgba(0,0,0,.4);
    --ok:        #5a9a6a;
    --err:       #a84040;
    --input-bg:  #120c20;
    --input-bdr: #3a2a50;
    --input-focus:#7a5090;
}

/* ── Reset & Base ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: 'Karla', sans-serif;
    font-size: 1.05rem;
    background: var(--bg);
    color: var(--body);
    background-image: repeating-linear-gradient(
        90deg, transparent, transparent 52px,
        var(--bg2) 52px, var(--bg2) 54px
    );
}

/* ── Layout ────────────────────────────────────────────── */
.wrap       { max-width: 960px; margin: 0 auto; padding: 0 24px; }
.wrap--wide { max-width: 1040px; }
.wrap--narrow { max-width: 800px; }
.wrap--card { max-width: 900px; }
.container  { max-width: 620px; width: 100%; }

/* ── Navigation ────────────────────────────────────────── */
nav {
    background: #0c0714;
    border-bottom: 1px solid var(--bone);
    padding: 14px 28px;
    display: flex;
    align-items: center;
    gap: 24px;
    position: sticky;
    top: 0;
    z-index: 100;
}
.nav-logo {
    font-family: 'Griffy', cursive;
    font-size: 1.15rem;
    color: var(--ink);
    text-decoration: none;
}
.nav-links { display: flex; gap: 20px; margin-left: auto; }
.nav-links a {
    color: var(--mid);
    text-decoration: none;
    font-size: .88rem;
    font-weight: 500;
    transition: color .2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--accent-lt); }
.nav-cart { position: relative; margin-left: 8px; }
.nav-cart-dot {
    position: absolute;
    top: -4px; right: -6px;
    width: 14px; height: 14px;
    background: var(--accent);
    border-radius: 50%;
    font-size: .6rem;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ── Typography ────────────────────────────────────────── */
h1 {
    font-family: 'Griffy', cursive;
    font-weight: 700;
    color: var(--ink);
}

/* ── Separators ────────────────────────────────────────── */
.sep {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--bone);
}
.sep::before, .sep::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--bone);
}
.sep span {
    font-family: 'Griffy', cursive;
    font-size: .85rem;
    letter-spacing: .3em;
    white-space: nowrap;
    color: var(--muted);
}

/* ── Section Titles ────────────────────────────────────── */
.sec-title {
    font-family: 'Griffy', cursive;
    font-size: 2rem;
    font-weight: 700;
    color: var(--ink);
}
.sec-sub {
    text-align: center;
    color: var(--muted);
    font-size: .9rem;
}

/* ── Badges ────────────────────────────────────────────── */
.badge {
    position: absolute;
    top: 12px; left: 12px;
    padding: 5px 10px;
    border-radius: 3px;
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    z-index: 2;
    line-height: 1;
}
.badge-new     { background: #7a5090; color: #fff; }
.badge-hot     { background: #c05a8a; color: #fff; }
.badge-limited { background: #c4a24e; color: #1a1208; }
.badge-sold    { background: rgba(10,6,16,.8); color: #6a5a7a; border: 1px solid #3a2a50; }

/* ── Buttons ───────────────────────────────────────────── */
.hero-cta {
    display: inline-block;
    padding: 14px 36px;
    background: var(--accent);
    color: #fff;
    font-family: 'Griffy', cursive;
    font-size: 1.1rem;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    transition: background .2s, transform .15s;
    cursor: pointer;
    box-shadow: 2px 3px 0 var(--shadow);
}
.hero-cta:hover {
    background: var(--accent-lt);
    transform: translate(-1px, -2px);
}

/* ── Back Link ─────────────────────────────────────────── */
a.back {
    display: inline-block;
    color: var(--mid);
    text-decoration: none;
    font-size: .85rem;
    margin-bottom: 32px;
    transition: color .2s;
}
a.back:hover { color: var(--accent-lt); }

/* ── Footer ────────────────────────────────────────────── */
footer {
    text-align: center;
    padding: 32px 24px 48px;
    border-top: 1px solid var(--bone);
}
footer p {
    font-size: .7rem;
    letter-spacing: .15em;
    color: var(--muted);
}


/* ═══════════════════════════════════════════════════════════
   Page: Site Overview (style.php)
   ═══════════════════════════════════════════════════════════ */
.page-overview {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 24px 80px;
}
.logo-wrap { display: flex; justify-content: center; margin-bottom: 12px; }
.logo-wrap svg { width: 100%; max-width: 520px; height: auto; }
.tagline {
    text-align: center;
    font-family: 'Griffy', cursive;
    font-size: 0.95rem;
    color: var(--muted);
    letter-spacing: 0.08em;
    margin-bottom: 48px;
}
.page-overview h1 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 6px;
}
p.sub {
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 36px;
}
.page-overview .sep { margin-bottom: 32px; }
.page-overview .sep span { font-size: .8rem; }
.pages { display: flex; flex-direction: column; gap: 14px; }
.page-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px;
    background: var(--card);
    border: 1.5px solid var(--bone);
    border-radius: 3px;
    text-decoration: none;
    color: var(--ink);
    transition: background .25s, border-color .25s, box-shadow .25s, transform .2s;
    box-shadow: 2px 3px 0 var(--shadow);
}
.page-link:hover {
    background: var(--card-h);
    border-color: var(--accent);
    box-shadow: 3px 5px 0 var(--shadow);
    transform: translate(-1px, -2px);
}
.page-link .info h2 {
    font-family: 'Griffy', cursive;
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--ink);
    margin-bottom: 3px;
}
.page-link .info p { font-size: 0.75rem; font-weight: 300; color: var(--muted); }
.page-link .arrow {
    font-family: 'Griffy', cursive;
    font-size: 1.4rem;
    color: var(--bone);
    transition: color .25s;
}
.page-link:hover .arrow { color: var(--accent-lt); }
.page-overview .footer { text-align: center; margin-top: 52px; }
.footer-spider { display: flex; justify-content: center; margin-bottom: 12px; }
.footer-copy { font-size: 0.65rem; font-weight: 300; letter-spacing: 0.15em; color: var(--muted); }


/* ═══════════════════════════════════════════════════════════
   Page: Under Construction (index.html, under-construction.html)
   ═══════════════════════════════════════════════════════════ */
.page-construction {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 24px;
    overflow: hidden;
    position: relative;
    color: var(--ink);
    background-image: none;
}

/* floating particles */
.particles { position: fixed; inset: 0; pointer-events: none; z-index: 0; }
.p {
    position: absolute;
    border-radius: 50%;
    opacity: 0;
    animation: drift linear infinite;
}
@keyframes drift {
    0%   { transform: translateY(0) rotate(0deg); opacity: 0; }
    10%  { opacity: 1; }
    90%  { opacity: 1; }
    100% { transform: translateY(-100vh) rotate(360deg); opacity: 0; }
}

.content { position: relative; z-index: 1; text-align: center; max-width: 560px; }

/* logo */
.logo { margin-bottom: 8px; }
.logo svg { width: 100%; max-width: 460px; height: auto; }

/* cauldron scene */
.scene { margin: 32px auto; position: relative; width: 200px; height: 180px; }
.cauldron { position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); }
.bubble {
    position: absolute;
    border-radius: 50%;
    border: 1.5px solid var(--accent-lt);
    animation: bub ease-in infinite;
    opacity: 0;
}
@keyframes bub {
    0%   { transform: translateY(0) scale(1); opacity: 0; }
    20%  { opacity: .7; }
    80%  { opacity: .4; }
    100% { transform: translateY(-120px) scale(1.6); opacity: 0; }
}
.steam {
    position: absolute;
    width: 30px; height: 30px;
    border-radius: 50%;
    background: rgba(168,126,192,.08);
    filter: blur(8px);
    animation: steamrise ease-out infinite;
    opacity: 0;
}
@keyframes steamrise {
    0%   { transform: translateY(0) scale(1); opacity: 0; }
    30%  { opacity: .5; }
    100% { transform: translateY(-100px) scale(2.5); opacity: 0; }
}

/* text */
.page-construction h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 12px;
    animation: flicker 4s ease-in-out infinite;
}
@keyframes flicker {
    0%, 100% { opacity: 1; }
    50% { opacity: .85; }
    52% { opacity: 1; }
    54% { opacity: .7; }
    56% { opacity: 1; }
}

.subtitle {
    font-family: 'Griffy', cursive;
    font-size: 1.1rem;
    color: var(--accent-lt);
    margin-bottom: 28px;
}
.message {
    background: var(--card);
    border: 1.5px solid var(--bone);
    border-radius: 4px;
    padding: 24px 28px;
    margin-bottom: 28px;
    box-shadow: 2px 3px 0 rgba(0,0,0,.4);
}
.message p {
    font-size: .95rem;
    color: var(--mid);
    line-height: 1.7;
    margin-bottom: 10px;
}
.message p:last-child { margin-bottom: 0; }
.message em { color: var(--accent-lt); font-style: normal; }

.checklist { text-align: left; display: inline-block; margin-bottom: 28px; }
.checklist div {
    font-size: .88rem;
    color: var(--mid);
    line-height: 2;
    display: flex;
    align-items: center;
    gap: 10px;
}
.checklist .done { color: var(--accent-lt); }
.checklist .wip  { color: var(--ink); }
.check { width: 18px; text-align: center; flex-shrink: 0; }
.footer-text { font-size: .7rem; color: var(--muted); letter-spacing: .12em; margin-top: 8px; }

/* dangling spider */
.spider-hang {
    position: fixed;
    top: 0; right: 12%;
    z-index: 2;
    animation: descend 3s ease-out forwards, sway 4s ease-in-out 3s infinite;
}
@keyframes descend {
    0%   { transform: translateY(-100px); }
    100% { transform: translateY(0); }
}
@keyframes sway {
    0%, 100% { transform: rotate(0deg); }
    25%  { transform: rotate(3deg); }
    75%  { transform: rotate(-3deg); }
}

/* flying bats */
.bat { position: fixed; z-index: 2; animation: batfly linear infinite; }
.bat-1 { top: 15%; left: -40px; animation-duration: 12s; animation-delay: 2s; }
.bat-2 { top: 30%; left: -40px; animation-duration: 16s; animation-delay: 6s; }
@keyframes batfly {
    0%   { transform: translate(0, 0); }
    25%  { transform: translate(30vw, -30px); }
    50%  { transform: translate(60vw, 20px); }
    75%  { transform: translate(90vw, -10px); }
    100% { transform: translate(110vw, 0); }
}
.bat svg { animation: flap .3s ease-in-out infinite alternate; }
@keyframes flap {
    0%   { transform: scaleY(1); }
    100% { transform: scaleY(.7); }
}


/* ═══════════════════════════════════════════════════════════
   Page: Home (vc-home.html)
   ═══════════════════════════════════════════════════════════ */

/* hero */
.hero { text-align: center; padding: 72px 24px 60px; }
.hero svg { width: 100%; max-width: 540px; height: auto; }
.hero-tag {
    font-family: 'Griffy', cursive;
    font-size: 1rem;
    color: var(--muted);
    letter-spacing: .08em;
    margin-top: 8px;
}
.hero-sub {
    max-width: 520px;
    margin: 28px auto 0;
    font-size: 1.05rem;
    color: var(--body);
    line-height: 1.7;
}
.hero .hero-cta { margin-top: 32px; }

.page-home .sec-title {
    font-size: 2.2rem;
    text-align: center;
    margin: 56px 0 12px;
}
.page-home .sec-sub { margin-bottom: 36px; }
.page-home .sep { margin: 56px 0 32px; }

/* featured grid */
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 48px; }
.feat-card {
    background: var(--card);
    border: 1.5px solid var(--bone);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 2px 3px 0 var(--shadow);
    transition: transform .2s, box-shadow .2s;
    text-decoration: none;
    color: inherit;
}
.feat-card:hover { transform: translate(-1px, -2px); box-shadow: 4px 6px 0 var(--shadow); }
.feat-card img { width: 100%; aspect-ratio: 1; object-fit: cover; display: block; }
.feat-card-body { padding: 16px 18px; }
.feat-card-title {
    font-family: 'Griffy', cursive;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 4px;
}
.feat-card-price { font-size: .9rem; color: var(--accent-lt); font-weight: 600; }
.feat-card-tag {
    display: inline-block;
    font-size: .65rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    background: var(--accent-bg);
    color: var(--accent-lt);
    padding: 3px 8px;
    border-radius: 2px;
    margin-bottom: 8px;
}

/* banner */
.banner {
    background: linear-gradient(135deg, #1a1030 0%, #10091a 60%, #18101a 100%);
    border: 1.5px solid var(--bone);
    border-radius: 4px;
    padding: 48px 36px;
    text-align: center;
    margin-bottom: 48px;
    box-shadow: 2px 4px 0 var(--shadow);
}
.banner-title {
    font-family: 'Griffy', cursive;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-lt);
    margin-bottom: 12px;
}
.banner p { color: var(--body); line-height: 1.7; max-width: 580px; margin: 0 auto; }

/* wide split */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: var(--card);
    border: 1.5px solid var(--bone);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 2px 3px 0 var(--shadow);
    margin-bottom: 48px;
}
.split img { width: 100%; height: 100%; object-fit: cover; display: block; }
.split-body { padding: 36px 32px; display: flex; flex-direction: column; justify-content: center; }
.split-body h3 {
    font-family: 'Griffy', cursive;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 12px;
}
.split-body p { color: var(--body); line-height: 1.7; margin-bottom: 12px; }
.split-body p:last-child { margin-bottom: 0; }

/* testimonials */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 48px; }
.testi {
    background: var(--card);
    border: 1.5px solid var(--bone);
    border-radius: 4px;
    padding: 22px;
    box-shadow: 2px 3px 0 var(--shadow);
}
.testi-stars { color: var(--accent-lt); font-size: 1.1rem; margin-bottom: 10px; }
.testi-text { font-size: .9rem; color: var(--body); line-height: 1.6; margin-bottom: 10px; font-style: italic; }
.testi-name { font-size: .8rem; color: var(--muted); font-weight: 500; }

/* panel */
.panel {
    background: var(--card);
    border: 1.5px solid var(--bone);
    border-radius: 4px;
    padding: 28px 32px;
    margin-bottom: 32px;
    box-shadow: 2px 3px 0 var(--shadow);
}
.panel p { color: var(--body); line-height: 1.7; }

/* CTA strip */
.cta-strip { text-align: center; padding: 48px 24px; margin-bottom: 48px; }
.cta-strip h3 { font-family: 'Griffy', cursive; font-size: 1.6rem; color: var(--ink); margin-bottom: 16px; }
.cta-strip p { color: var(--mid); margin-bottom: 24px; font-size: .95rem; }


/* ═══════════════════════════════════════════════════════════
   Page: Collection (vc-collection.html)
   ═══════════════════════════════════════════════════════════ */
.page-head { padding: 48px 0 12px; text-align: center; }
.page-head h1 { font-size: 2.4rem; margin-bottom: 8px; }
.page-head p { color: var(--muted); font-size: .9rem; margin-bottom: 32px; }

/* filters */
.filters { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; margin-bottom: 36px; }
.filter-btn {
    background: var(--card);
    border: 1.5px solid var(--bone);
    color: var(--mid);
    padding: 8px 18px;
    font-size: .82rem;
    font-weight: 500;
    border-radius: 3px;
    cursor: pointer;
    transition: all .2s;
    font-family: 'Karla', sans-serif;
}
.filter-btn:hover,
.filter-btn.active {
    background: var(--accent-bg);
    border-color: var(--accent);
    color: var(--accent-lt);
}

/* product grid */
.grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-bottom: 48px; }
.prod {
    background: var(--card);
    border: 1.5px solid var(--bone);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 2px 3px 0 var(--shadow);
    transition: transform .2s, box-shadow .2s;
    text-decoration: none;
    color: inherit;
    position: relative;
}
.prod:hover { transform: translate(-1px, -2px); box-shadow: 4px 6px 0 var(--shadow); }
.prod-img-wrap { position: relative; overflow: hidden; }
.prod-img-wrap img { width: 100%; aspect-ratio: 1; object-fit: cover; display: block; }
.prod-body { padding: 14px 16px; }
.prod-name { font-family: 'Griffy', cursive; font-size: 1.05rem; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.prod-desc { font-size: .78rem; color: var(--mid); margin-bottom: 6px; line-height: 1.4; }
.prod-price { font-size: .95rem; color: var(--accent-lt); font-weight: 600; }

.prod.sold .prod-img-wrap img { filter: grayscale(.6) brightness(.7); transition: filter .3s; }
.prod.sold:hover { transform: none; box-shadow: 2px 3px 0 var(--shadow); cursor: default; }
.prod.sold .prod-price { text-decoration: line-through; color: var(--muted); font-size: .82rem; }
.prod-sold-label { font-size: .78rem; color: var(--muted); font-style: italic; }

/* pagination */
.paging { display: flex; justify-content: center; gap: 8px; padding: 24px 0 48px; }
.paging a, .paging span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px; height: 36px;
    border-radius: 3px;
    font-size: .88rem;
    text-decoration: none;
    border: 1.5px solid var(--bone);
    color: var(--mid);
    transition: all .2s;
}
.paging a:hover { border-color: var(--accent); color: var(--accent-lt); }
.paging span.cur { background: var(--accent); border-color: var(--accent); color: #fff; }


/* ═══════════════════════════════════════════════════════════
   Page: Product Detail (vc-product.html)
   ═══════════════════════════════════════════════════════════ */

/* breadcrumb */
.crumb { padding: 20px 0; font-size: .82rem; color: var(--muted); }
.crumb a { color: var(--mid); text-decoration: none; transition: color .2s; }
.crumb a:hover { color: var(--accent-lt); }

/* product layout */
.product { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.prod-gallery { position: relative; }
.prod-main-img {
    width: 100%; aspect-ratio: 1; object-fit: cover;
    border-radius: 4px;
    border: 1.5px solid var(--bone);
    box-shadow: 2px 3px 0 var(--shadow);
    display: block;
    margin-bottom: 14px;
}
.product .badge { top: 14px; left: 14px; padding: 6px 12px; font-size: .7rem; }
.badge-hot  { background: #c05a8a; color: #fff; }
.badge-new  { background: #7a5090; color: #fff; }
.badge-limited { background: #c4a24e; color: #1a1208; }
.badge-sold { background: rgba(10,6,16,.8); color: #6a5a7a; border: 1px solid #3a2a50; }

.prod-thumbs { display: grid; grid-template-columns: repeat(auto-fill, minmax(60px, 1fr)); gap: 10px; }
.prod-thumbs img {
    width: 100%; aspect-ratio: 1; object-fit: cover;
    border-radius: 3px;
    border: 1.5px solid var(--bone);
    cursor: pointer;
    transition: border-color .2s;
    display: block;
    opacity: .7;
}
.prod-thumbs img:hover,
.prod-thumbs img.active { border-color: var(--accent); opacity: 1; }

.prod-info { padding-top: 8px; }
.prod-tag {
    display: inline-block;
    font-size: .65rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    background: var(--accent-bg);
    color: var(--accent-lt);
    padding: 4px 10px;
    border-radius: 2px;
    margin-bottom: 12px;
}
.prod-title {
    font-family: 'Griffy', cursive;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 8px;
    line-height: 1.15;
}
.prod-subtitle { font-size: .9rem; color: var(--mid); margin-bottom: 20px; }
.prod-price-row { display: flex; align-items: baseline; gap: 12px; margin-bottom: 20px; }
.prod-price-val { font-size: 2rem; font-weight: 700; color: var(--accent-lt); }
.prod-vat { font-size: .78rem; color: var(--muted); }
.prod-stock {
    font-size: .82rem; color: var(--ok); margin-bottom: 24px;
    display: flex; align-items: center; gap: 6px;
}
.prod-stock::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--ok); }

/* quantity & buttons */
.qty-row { display: flex; align-items: center; gap: 16px; margin-bottom: 16px; }
.qty-label { font-size: .85rem; color: var(--mid); min-width: 60px; }
.qty-ctrl { display: flex; align-items: center; border: 1.5px solid var(--bone); border-radius: 4px; overflow: hidden; }
.qty-btn {
    width: 36px; height: 36px;
    background: var(--card);
    border: none;
    color: var(--ink);
    font-size: 1.1rem;
    cursor: pointer;
    transition: background .2s;
}
.qty-btn:hover { background: var(--accent-bg); }
.qty-val {
    width: 44px; height: 36px;
    background: var(--card-alt);
    border: none;
    border-left: 1.5px solid var(--bone);
    border-right: 1.5px solid var(--bone);
    color: var(--ink);
    text-align: center;
    font-size: .95rem;
    font-family: 'Karla', sans-serif;
}

.btn-add {
    width: 100%; padding: 16px;
    background: var(--accent); color: #fff; border: none; border-radius: 4px;
    font-family: 'Griffy', cursive; font-size: 1.2rem;
    cursor: pointer;
    transition: background .2s, transform .15s;
    box-shadow: 2px 3px 0 var(--shadow);
    margin-bottom: 12px;
}
.btn-add:hover { background: var(--accent-lt); transform: translate(-1px, -2px); }
.btn-wish {
    width: 100%; padding: 12px;
    background: transparent; color: var(--mid);
    border: 1.5px solid var(--bone); border-radius: 4px;
    font-size: .88rem; cursor: pointer; transition: all .2s;
    font-family: 'Karla', sans-serif;
}
.btn-wish:hover { border-color: var(--accent); color: var(--accent-lt); }

.prod-meta { margin-top: 24px; font-size: .82rem; color: var(--muted); line-height: 1.8; }
.prod-meta strong { color: var(--mid); }

/* poem */
.poem-panel {
    background: var(--card);
    border: 1.5px solid var(--bone);
    border-radius: 4px;
    padding: 28px 32px;
    margin-bottom: 32px;
    box-shadow: 2px 3px 0 var(--shadow);
}
.poem-panel p { color: var(--body); line-height: 1.8; white-space: pre-line; font-size: 1.05rem; }

/* details grid */
.details-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 48px; }
.detail-card {
    background: var(--card);
    border: 1.5px solid var(--bone);
    border-radius: 4px;
    padding: 22px;
    box-shadow: 2px 3px 0 var(--shadow);
}
.detail-card h4 { font-family: 'Griffy', cursive; font-size: 1.1rem; color: var(--ink); margin-bottom: 8px; }
.detail-card p { font-size: .9rem; color: var(--body); line-height: 1.6; }

/* related */
.related-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 48px; }
.rel {
    background: var(--card);
    border: 1.5px solid var(--bone);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 2px 3px 0 var(--shadow);
    text-decoration: none;
    color: inherit;
    transition: transform .2s;
}
.rel:hover { transform: translate(-1px, -2px); }
.rel img { width: 100%; aspect-ratio: 1; object-fit: cover; display: block; }
.rel-body { padding: 12px 14px; }
.rel-name { font-family: 'Griffy', cursive; font-size: .95rem; color: var(--ink); margin-bottom: 3px; }
.rel-price { font-size: .85rem; color: var(--accent-lt); font-weight: 600; }

.page-product .sec-title { margin: 48px 0 20px; }


/* ═══════════════════════════════════════════════════════════
   Page: Checkout (vc-checkout.html)
   ═══════════════════════════════════════════════════════════ */
.page-title {
    font-family: 'Griffy', cursive;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--ink);
    padding: 40px 0 8px;
}
.steps { display: flex; gap: 8px; margin-bottom: 36px; font-size: .82rem; }
.step {
    padding: 6px 14px;
    border-radius: 3px;
    color: var(--muted);
    background: var(--card);
    border: 1.5px solid var(--bone);
}
.step.active { background: var(--accent-bg); border-color: var(--accent); color: var(--accent-lt); }
.step.done   { color: var(--ok); border-color: var(--ok); background: transparent; }

.checkout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 36px;
    margin-bottom: 48px;
    align-items: start;
}

/* form cards */
.form-card {
    background: var(--card);
    border: 1.5px solid var(--bone);
    border-radius: 4px;
    padding: 28px;
    margin-bottom: 24px;
    box-shadow: 2px 3px 0 var(--shadow);
}
.form-card h3 {
    font-family: 'Griffy', cursive;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 20px;
}

.field { margin-bottom: 16px; }
.field label { display: block; font-size: .82rem; font-weight: 500; color: var(--mid); margin-bottom: 6px; }
.field input, .field select {
    width: 100%; padding: 12px 14px;
    background: var(--input-bg);
    border: 1.5px solid var(--input-bdr);
    border-radius: 4px;
    color: var(--ink);
    font-size: .95rem;
    font-family: 'Karla', sans-serif;
    transition: border-color .2s;
    outline: none;
}
.field input:focus, .field select:focus { border-color: var(--input-focus); }
.field input::placeholder { color: var(--muted); }
.field select { appearance: none; cursor: pointer; }
.field select option { background: var(--card); color: var(--ink); }

.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.row3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; }

.radio-group { display: flex; flex-direction: column; gap: 10px; }
.radio-opt {
    display: flex; align-items: center; gap: 12px;
    padding: 14px 16px;
    background: var(--input-bg);
    border: 1.5px solid var(--input-bdr);
    border-radius: 4px;
    cursor: pointer;
    transition: border-color .2s;
}
.radio-opt:hover { border-color: var(--accent); }
.radio-opt.selected { border-color: var(--accent); background: var(--accent-bg); }
.radio-opt input[type=radio] { accent-color: var(--accent-lt); width: 16px; height: 16px; }
.radio-opt .r-label { flex: 1; }
.radio-opt .r-label strong { display: block; font-size: .9rem; color: var(--ink); }
.radio-opt .r-label span { font-size: .78rem; color: var(--muted); }
.radio-opt .r-price { font-size: .9rem; font-weight: 600; color: var(--accent-lt); }

.checkbox { display: flex; align-items: flex-start; gap: 10px; margin-top: 4px; font-size: .85rem; color: var(--mid); }
.checkbox input { accent-color: var(--accent-lt); width: 16px; height: 16px; margin-top: 2px; flex-shrink: 0; }

/* card input icons */
.card-icons { display: flex; gap: 8px; margin-bottom: 12px; }
.card-icons span {
    display: inline-block;
    padding: 4px 10px;
    background: var(--input-bg);
    border: 1px solid var(--input-bdr);
    border-radius: 3px;
    font-size: .72rem;
    color: var(--mid);
    letter-spacing: .05em;
}

/* order summary */
.summary {
    background: var(--card);
    border: 1.5px solid var(--bone);
    border-radius: 4px;
    padding: 28px;
    box-shadow: 2px 3px 0 var(--shadow);
    position: sticky;
    top: 80px;
}
.summary h3 {
    font-family: 'Griffy', cursive;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 20px;
}
.sum-item { display: flex; gap: 14px; margin-bottom: 16px; padding-bottom: 16px; border-bottom: 1px solid var(--bone); }
.sum-item:last-of-type { border-bottom: none; margin-bottom: 20px; padding-bottom: 0; }
.sum-item img { width: 64px; height: 64px; object-fit: cover; border-radius: 3px; border: 1px solid var(--bone); flex-shrink: 0; }
.sum-item-info { flex: 1; }
.sum-item-name { font-size: .9rem; font-weight: 600; color: var(--ink); margin-bottom: 2px; }
.sum-item-meta { font-size: .78rem; color: var(--muted); }
.sum-item-price { font-size: .9rem; font-weight: 600; color: var(--accent-lt); white-space: nowrap; }

.sum-line { display: flex; justify-content: space-between; font-size: .9rem; margin-bottom: 8px; }
.sum-line.total {
    font-size: 1.1rem; font-weight: 700; color: var(--ink);
    margin-top: 12px; padding-top: 12px;
    border-top: 1.5px solid var(--bone);
}

.promo-row { display: flex; gap: 8px; margin: 16px 0 20px; }
.promo-row input {
    flex: 1; padding: 10px 12px;
    background: var(--input-bg);
    border: 1.5px solid var(--input-bdr);
    border-radius: 4px;
    color: var(--ink);
    font-size: .88rem;
    font-family: 'Karla', sans-serif;
    outline: none;
}
.promo-row input:focus { border-color: var(--input-focus); }
.promo-row button {
    padding: 10px 18px;
    background: var(--accent-bg);
    border: 1.5px solid var(--accent);
    color: var(--accent-lt);
    border-radius: 4px;
    font-size: .82rem;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Karla', sans-serif;
    transition: background .2s;
}
.promo-row button:hover { background: var(--accent); }

.btn-pay {
    width: 100%; padding: 16px;
    background: var(--accent); color: #fff;
    border: none; border-radius: 4px;
    font-family: 'Griffy', cursive; font-size: 1.2rem;
    cursor: pointer;
    transition: background .2s, transform .15s;
    box-shadow: 2px 3px 0 var(--shadow);
    margin-top: 8px;
}
.btn-pay:hover { background: var(--accent-lt); transform: translate(-1px, -2px); }

.secure {
    text-align: center;
    font-size: .75rem;
    color: var(--muted);
    margin-top: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}


/* ═══════════════════════════════════════════════════════════
   Page: Logo Variants (logos-vc.html)
   ═══════════════════════════════════════════════════════════ */
.page-logos { padding: 48px 24px 80px; }
.page-logos h1 { font-size: 2rem; text-align: center; margin-bottom: 8px; }
.page-logos .sub { text-align: center; color: var(--muted); font-size: .88rem; margin-bottom: 48px; }

.sample {
    background: var(--card);
    border: 1.5px solid var(--bone);
    border-radius: 4px;
    padding: 28px;
    margin-bottom: 28px;
    box-shadow: 2px 3px 0 var(--shadow);
}
.sample-num { font-size: .7rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; color: var(--accent-lt); margin-bottom: 6px; }
.sample-meta { font-size: .82rem; color: var(--mid); margin-bottom: 18px; line-height: 1.5; }
.sample-meta strong { color: var(--ink); }
.svg-wrap { display: flex; justify-content: center; }
.svg-wrap svg { width: 100%; max-width: 620px; height: auto; }


/* ═══════════════════════════════════════════════════════════
   Page: Business Cards (vc-businesscards.html)
   ═══════════════════════════════════════════════════════════ */
.page-cards { padding: 48px 24px 80px; }
.page-cards h1 { font-size: 2rem; text-align: center; margin-bottom: 8px; }
.page-cards .sub { text-align: center; color: var(--muted); font-size: .88rem; margin-bottom: 48px; }
.page-cards .sample { background: transparent; border: none; box-shadow: none; padding: 0; margin-bottom: 40px; }

.card-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.bc {
    aspect-ratio: 7/4;
    border-radius: 6px;
    padding: 28px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 4px 6px 0 var(--shadow);
}

/* Card A: Dark */
.bc-a-front { background: #10091a; border: 1.5px solid #2e1e42; }
.bc-a-front .bc-logo { margin-bottom: auto; }
.bc-a-front .bc-logo svg { width: 240px; height: auto; }
.bc-a-front .bc-tagline { font-family: 'Griffy', cursive; font-size: .7rem; color: #6a5a7a; letter-spacing: .08em; margin-top: 4px; }
.bc-a-front .bc-bottom { display: flex; justify-content: space-between; align-items: flex-end; }
.bc-a-front .bc-title { font-family: 'Griffy', cursive; font-size: .85rem; color: #a87ec0; }
.bc-a-front .bc-name { font-size: .75rem; color: #8a8098; }

.bc-a-back { background: #10091a; border: 1.5px solid #2e1e42; justify-content: space-between; }
.bc-a-back .bc-info { font-size: .7rem; color: #8a8098; line-height: 2; }
.bc-a-back .bc-info span { color: #a87ec0; font-weight: 600; display: inline-block; width: 100px; }
.bc-a-back .bc-footer-row { display: flex; justify-content: space-between; align-items: center; }
.bc-a-back .bc-small { font-size: .6rem; color: #6a5a7a; letter-spacing: .1em; }

/* Card B: Parchment */
.bc-b-front { background: #f4f0ea; border: 1.5px solid #d6cec2; }
.bc-b-front .bc-logo svg { width: 220px; height: auto; }
.bc-b-front .bc-bottom { display: flex; justify-content: space-between; align-items: flex-end; margin-top: auto; }
.bc-b-front .bc-title { font-family: 'Griffy', cursive; font-size: .85rem; color: #7a5090; }
.bc-b-front .bc-name { font-size: .75rem; color: #5a4a6a; }

.bc-b-back { background: #f4f0ea; border: 1.5px solid #d6cec2; justify-content: space-between; }
.bc-b-back .bc-info { font-size: .7rem; color: #5a4a6a; line-height: 2; }
.bc-b-back .bc-info span { color: #7a5090; font-weight: 600; display: inline-block; width: 100px; }
.bc-b-back .bc-footer-row { display: flex; justify-content: space-between; align-items: center; }
.bc-b-back .bc-small { font-size: .6rem; color: #a098b0; letter-spacing: .1em; }

/* Card C: Gradient */
.bc-c-front { background: linear-gradient(135deg, #1a1030, #10091a 50%, #0c0618); border: 1.5px solid #3a2a52; }
.bc-c-front .bc-center { text-align: center; margin: auto 0; }
.bc-c-front .bc-center svg { width: 260px; height: auto; margin: 0 auto; display: block; }
.bc-c-front .bc-subtitle { font-family: 'Griffy', cursive; font-size: .75rem; color: #6a5a7a; text-align: center; margin-top: 8px; letter-spacing: .12em; }

.bc-c-back { background: linear-gradient(135deg, #1a1030, #10091a 50%, #0c0618); border: 1.5px solid #3a2a52; text-align: center; justify-content: center; gap: 6px; }
.bc-c-back .bc-name-big { font-family: 'Griffy', cursive; font-size: 1rem; color: #ddd4e8; margin-bottom: 2px; }
.bc-c-back .bc-role { font-size: .7rem; color: #a87ec0; letter-spacing: .08em; margin-bottom: 14px; }
.bc-c-back .bc-info-center { font-size: .65rem; color: #8a8098; line-height: 2; }

/* Card D: Stripe */
.bc-d-front { background: #10091a; border: 1.5px solid #2e1e42; flex-direction: row; align-items: stretch; padding: 0; }
.bc-d-front .bc-stripe { width: 8px; background: linear-gradient(180deg, #a87ec0, #7a5090); flex-shrink: 0; border-radius: 4px 0 0 4px; }
.bc-d-front .bc-content { padding: 24px 28px; display: flex; flex-direction: column; justify-content: center; flex: 1; }
.bc-d-front .bc-content svg { width: 200px; height: auto; margin-bottom: auto; }
.bc-d-front .bc-content .bc-title { font-family: 'Griffy', cursive; font-size: .8rem; color: #a87ec0; margin-top: 8px; }
.bc-d-front .bc-content .bc-name { font-size: .7rem; color: #8a8098; }

.bc-d-back { background: #10091a; border: 1.5px solid #2e1e42; flex-direction: row; align-items: stretch; padding: 0; }
.bc-d-back .bc-stripe { width: 8px; background: linear-gradient(180deg, #a87ec0, #7a5090); flex-shrink: 0; border-radius: 4px 0 0 4px; }
.bc-d-back .bc-content { padding: 24px 28px; display: flex; flex-direction: column; justify-content: center; flex: 1; }
.bc-d-back .bc-info { font-size: .68rem; color: #8a8098; line-height: 2.1; }
.bc-d-back .bc-info span { color: #a87ec0; font-weight: 600; display: inline-block; width: 105px; }
.bc-d-back .bc-small { font-size: .58rem; color: #6a5a7a; letter-spacing: .1em; margin-top: auto; }

/* Card 1: Chosen One */
.bc-1-front { background: #10091a; border: 1.5px solid #2e1e42; justify-content: center; align-items: center; }
.bc-1-front svg { width: 280px; height: auto; }

.bc-1-back { background: #7a5090; border: 1.5px solid #9a6ab0; justify-content: space-between; }
.bc-1-back .bc-left { margin-bottom: auto; }
.bc-1-back .bc-title { font-family: 'Griffy', cursive; font-size: .85rem; color: #fff; }
.bc-1-back .bc-name { font-size: .75rem; color: rgba(255,255,255,.55); }
.bc-1-back .bc-info { font-size: .7rem; color: rgba(255,255,255,.6); line-height: 2; }
.bc-1-back .bc-info span { color: #fff; font-weight: 600; display: inline-block; width: 105px; }
.bc-1-back .bc-footer-row { display: flex; justify-content: space-between; align-items: center; }
.bc-1-back .bc-small { font-size: .6rem; color: rgba(255,255,255,.35); letter-spacing: .1em; }

/* Card E: Minimal */
.bc-e-front { background: #10091a; border: 1.5px solid #2e1e42; justify-content: center; align-items: center; }
.bc-e-front svg { width: 280px; height: auto; }

.bc-e-back { background: #10091a; border: 1.5px solid #2e1e42; }
.bc-e-back .bc-top { margin-bottom: auto; }
.bc-e-back .bc-name-big { font-family: 'Griffy', cursive; font-size: .95rem; color: #ddd4e8; }
.bc-e-back .bc-role { font-size: .65rem; color: #a87ec0; letter-spacing: .05em; margin-top: 2px; }
.bc-e-back .bc-divider { width: 40px; height: 1px; background: #2e1e42; margin: 10px 0; }
.bc-e-back .bc-info-min { font-size: .65rem; color: #8a8098; line-height: 1.9; }

/* Card F: Inverted */
.bc-f-front { background: #7a5090; border: 1.5px solid #9a6ab0; }
.bc-f-front .bc-logo svg text:first-child { fill: #fff !important; }
.bc-f-front .bc-bottom { display: flex; justify-content: space-between; align-items: flex-end; margin-top: auto; }
.bc-f-front .bc-title { font-family: 'Griffy', cursive; font-size: .85rem; color: rgba(255,255,255,.7); }
.bc-f-front .bc-name { font-size: .75rem; color: rgba(255,255,255,.5); }

.bc-f-back { background: #7a5090; border: 1.5px solid #9a6ab0; justify-content: space-between; }
.bc-f-back .bc-info { font-size: .7rem; color: rgba(255,255,255,.6); line-height: 2; }
.bc-f-back .bc-info span { color: #fff; font-weight: 600; display: inline-block; width: 100px; }
.bc-f-back .bc-small { font-size: .6rem; color: rgba(255,255,255,.35); letter-spacing: .1em; }


/* ═══════════════════════════════════════════════════════════
   Page: Dark Palette Variants (samples-dark.html)
   ═══════════════════════════════════════════════════════════ */

/* top nav */
.topnav {
    position: sticky; top: 0; z-index: 100;
    background: #0a0d12;
    border-bottom: 1px solid #222;
    padding: 14px 28px;
    display: flex; gap: 24px; justify-content: center; flex-wrap: wrap;
}
.topnav a {
    font-family: 'Griffy', cursive;
    font-size: .95rem;
    color: #888;
    text-decoration: none;
    transition: color .2s;
}
.topnav a:hover { color: #ddd; }

/* shared sample structure */
.sample-section { padding: 64px 0 80px; }
.sw { max-width: 860px; margin: 0 auto; padding: 0 28px; }

.s-label {
    display: inline-block;
    font-family: 'Karla', sans-serif;
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .2em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 3px;
    margin-bottom: 24px;
}
.s-logo svg { width: 100%; max-width: 480px; height: auto; }
.s-logo { text-align: center; margin-bottom: 10px; }
.s-tagline { text-align: center; font-size: .9rem; letter-spacing: .08em; margin-bottom: 40px; }
.s-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 28px; }
.s-card { border-radius: 4px; overflow: hidden; }
.s-card img { width: 100%; aspect-ratio: 1; object-fit: cover; display: block; }
.s-card-body { padding: 18px 20px; }
.s-card-title { font-size: 1.4rem; font-weight: 700; margin-bottom: 8px; }
.s-card-poem { font-size: .92rem; line-height: 1.6; white-space: pre-line; }
.s-quote { padding: 22px 28px; border-radius: 0 4px 4px 0; margin-bottom: 28px; }
.s-quote-text { font-size: 1.2rem; line-height: 1.5; margin-bottom: 6px; }
.s-quote-attr { font-size: .8rem; }
.s-panel { border-radius: 4px; padding: 24px 28px; margin-bottom: 28px; }
.s-panel p { line-height: 1.7; }
.s-testi { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.s-testi-card { border-radius: 4px; padding: 20px; }
.s-testi-stars { font-size: 1rem; margin-bottom: 8px; }
.s-testi-text { font-size: .88rem; line-height: 1.55; margin-bottom: 8px; font-style: italic; }
.s-testi-name { font-size: .78rem; font-weight: 500; }

/* Variant A: Midnight & Cream */
.va { background: #0e1218; color: #c8c0b4; background-image: repeating-linear-gradient(90deg, transparent, transparent 48px, #121820 48px, #121820 50px); }
.va .s-label { background: #1e2430; color: #c55454; }
.va .s-tagline { color: #6b6358; font-family: 'Griffy', cursive; }
.va .s-card { background: #161c26; border: 1.5px solid #2a3040; box-shadow: 2px 3px 0 rgba(0,0,0,.35); }
.va .s-card-title { font-family: 'Griffy', cursive; color: #e2dcd0; }
.va .s-card-poem { color: #c8c0b4; }
.va .s-quote { background: #1c2230; border-left: 4px solid #a84040; }
.va .s-quote-text { font-family: 'Griffy', cursive; color: #e2dcd0; }
.va .s-quote-attr { color: #6b6358; }
.va .s-panel { background: #161c26; border: 1.5px solid #2a3040; }
.va .s-testi-card { background: #161c26; border: 1.5px solid #2a3040; }
.va .s-testi-stars { color: #c55454; }
.va .s-testi-text { color: #b0a89c; }
.va .s-testi-name { color: #6b6358; }

/* Variant B: Crimson & Bone */
.vb { background: #120a0a; color: #c9bfb2; background-image: repeating-linear-gradient(90deg, transparent, transparent 60px, #180e0e 60px, #180e0e 62px); }
.vb .s-label { background: #2a1515; color: #d4665a; }
.vb .s-tagline { color: #7a5c50; font-family: 'IM Fell English', serif; font-style: italic; }
.vb .s-card { background: #1a0e0e; border: 1.5px solid #3a2020; box-shadow: 2px 3px 0 rgba(0,0,0,.4); }
.vb .s-card-title { font-family: 'Griffy', cursive; color: #e8ddd0; }
.vb .s-card-poem { color: #c0b4a6; font-family: 'IM Fell English', serif; }
.vb .s-quote { background: #1e1010; border-left: 4px solid #8b2020; }
.vb .s-quote-text { font-family: 'Griffy', cursive; color: #e8ddd0; }
.vb .s-quote-attr { color: #7a5c50; }
.vb .s-panel { background: #1a0e0e; border: 1.5px solid #3a2020; }
.vb .s-panel p { font-family: 'IM Fell English', serif; color: #c0b4a6; }
.vb .s-testi-card { background: #1a0e0e; border: 1.5px solid #3a2020; }
.vb .s-testi-stars { color: #d4665a; }
.vb .s-testi-text { color: #b0a496; font-family: 'IM Fell English', serif; }
.vb .s-testi-name { color: #7a5c50; }

/* Variant C: Emerald & Gold */
.vc { background: #0a1210; color: #b8c4b0; background-image: repeating-linear-gradient(90deg, transparent, transparent 44px, #0e1814 44px, #0e1814 46px); }
.vc .s-label { background: #152820; color: #c4a24e; }
.vc .s-tagline { color: #6a7a62; font-family: 'Cormorant SC', serif; letter-spacing: .15em; }
.vc .s-card { background: #101c18; border: 1.5px solid #1e3028; box-shadow: 2px 3px 0 rgba(0,0,0,.35); }
.vc .s-card-title { font-family: 'Griffy', cursive; color: #d8dcd0; }
.vc .s-card-poem { color: #aab8a2; }
.vc .s-quote { background: #121e1a; border-left: 4px solid #c4a24e; }
.vc .s-quote-text { font-family: 'Griffy', cursive; color: #d8dcd0; }
.vc .s-quote-attr { color: #6a7a62; }
.vc .s-panel { background: #101c18; border: 1.5px solid #1e3028; }
.vc .s-panel p { color: #aab8a2; }
.vc .s-testi-card { background: #101c18; border: 1.5px solid #1e3028; }
.vc .s-testi-stars { color: #c4a24e; }
.vc .s-testi-text { color: #9aaa92; }
.vc .s-testi-name { color: #6a7a62; }

/* Variant D: Violet Crypt */
.vd { background: #10091a; color: #beb4c8; background-image: repeating-linear-gradient(90deg, transparent, transparent 52px, #160e22 52px, #160e22 54px); }
.vd .s-label { background: #221430; color: #a87ec0; }
.vd .s-tagline { color: #6a5a7a; font-family: 'Cormorant SC', serif; letter-spacing: .12em; }
.vd .s-card { background: #18102a; border: 1.5px solid #2e1e42; box-shadow: 2px 3px 0 rgba(0,0,0,.35); }
.vd .s-card-title { font-family: 'Griffy', cursive; color: #ddd4e8; }
.vd .s-card-poem { color: #b0a8be; }
.vd .s-quote { background: #1c1230; border-left: 4px solid #7a5090; }
.vd .s-quote-text { font-family: 'Griffy', cursive; color: #ddd4e8; }
.vd .s-quote-attr { color: #6a5a7a; }
.vd .s-panel { background: #18102a; border: 1.5px solid #2e1e42; }
.vd .s-panel p { color: #b0a8be; }
.vd .s-testi-card { background: #18102a; border: 1.5px solid #2e1e42; }
.vd .s-testi-stars { color: #a87ec0; }
.vd .s-testi-text { color: #a098b0; }
.vd .s-testi-name { color: #6a5a7a; }


/* ═══════════════════════════════════════════════════════════
   Responsive
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 820px) {
    .grid { grid-template-columns: repeat(2, 1fr); }
    .checkout { grid-template-columns: 1fr; }
    .summary { position: static; }
}
@media (max-width: 720px) {
    .feat-grid, .testi-grid { grid-template-columns: 1fr; }
    .split { grid-template-columns: 1fr; }
    .product { grid-template-columns: 1fr; }
    .details-grid { grid-template-columns: 1fr; }
    .related-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
    .card-pair { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
    .s-row, .s-testi { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
    .grid { grid-template-columns: 1fr; }
}
