/**
 * Zann Shop — original two-card layout, ZannWebsite_2026 theme
 * Tokens: common.css (--color-bg, --color-dark, --font, etc.)
 */
.shop-page {
    --color-sage: #9AB1B6;
    --color-sage-dark: #7a9a9f;
    --shop-max: 1160px;
    --shop-pad: clamp(16px, 4vw, 48px);
    --renewa-stage: #0a2e2e;
    --shop-visual-ratio: 4 / 4.5;

    font-family: var(--font);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.55;
    color: var(--color-muted);
    background: var(--color-white);
    scroll-behavior: smooth;
    scroll-padding-top: clamp(72px, 12vh, 120px);
}

.shop-page main {
    overflow-x: clip;
}

/* Full-width site header on shop page */
.shop-page .promo-bar,
.shop-page .site-header-sticky,
.shop-page .site-header-sticky .header {
    width: 100%;
    max-width: none;
    box-sizing: border-box;
}

.shop-page .site-header-sticky .header-main {
    width: 100%;
    max-width: none;
}

.shop-page main h1,
.shop-page main h2,
.shop-page main h3 {
    font-family: var(--font);
    font-weight: 700;
    color: var(--color-dark);
    text-transform: lowercase;
}

.shop-page main p {
    font-weight: 400;
    color: var(--color-muted);
}

/* —— Hero (Zann mint / sage — same family as contact & welcome kits) —— */
.shop-hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    text-align: center;
    border-bottom: 1px solid rgba(154, 177, 182, 0.25);
    width: 100%;
    min-height: 100svh;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}
.shop-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 100% 80% at 50% 0%, rgba(184, 217, 226, 0.55) 0%, transparent 58%),
        radial-gradient(ellipse 70% 50% at 85% 20%, rgba(160, 200, 210, 0.35) 0%, transparent 45%),
        radial-gradient(ellipse 60% 45% at 10% 75%, rgba(154, 177, 182, 0.28) 0%, transparent 42%),
        linear-gradient(165deg, #c5e0e8 0%, var(--color-bg) 38%, #dceef3 78%, var(--color-bg-alt) 100%);
    z-index: 0;
}
.shop-hero-inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: var(--shop-max);
    margin: 0 auto;
    padding: clamp(48px, 10vh, 88px) var(--shop-pad);
    box-sizing: border-box;
}
.shop-hero .overline {
    display: block;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: lowercase;
    color: var(--color-sage-dark);
    margin-bottom: 16px;
}
.shop-hero h1 {
    font-size: clamp(1.85rem, 5vw + 0.65rem, 3rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.12;
    margin: 0 auto 14px;
    max-width: 20ch;
}
.shop-hero-lede {
    font-size: clamp(0.94rem, 0.35vw + 0.9rem, 1.05rem);
    line-height: 1.55;

    max-width: 52ch;
    margin: 0 auto;
}

/* —— Quick nav (Welcome_Kits) —— */
.shop-quick-nav {
    position: sticky;
    top: 0;
    z-index: 30;
    background: rgba(232, 244, 247, 0.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(154, 177, 182, 0.25);
    box-shadow: 0 8px 32px rgba(45, 60, 64, 0.06);
}
.shop-quick-nav-inner {
    width: 100%;
    max-width: var(--shop-max);
    margin: 0 auto;
    padding: 12px var(--shop-pad);
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 4px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.shop-quick-nav a {
    font-size: clamp(14px, 2vw, 16px);
    font-weight: 400;
    font-family: var(--font);
    color: var(--color-dark);
    text-decoration: none;
    text-transform: lowercase;
    padding: 10px clamp(10px, 2vw, 14px);
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    transition: background 0.2s ease, color 0.2s ease;
}
.shop-quick-nav a:last-child {
    border-right: none;
}
@media (max-width: 480px) {
    .shop-quick-nav-inner {
        flex-direction: column;
        gap: 2px;
    }
    .shop-quick-nav a {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    }
    .shop-quick-nav a:last-child {
        border-bottom: none;
    }
}
.shop-quick-nav a:hover {
    background: rgba(212, 238, 242, 0.45);
    color: var(--color-sage-dark);
}
.shop-quick-nav a.is-muted {
    color: var(--color-muted);
    pointer-events: none;
}

/* —— Products — open rows, no boxes —— */
.shop-products {
    padding: clamp(40px, 8vh, 72px) var(--shop-pad) clamp(48px, 8vh, 80px);
    background: var(--color-white);
}
.shop-products-inner {
    max-width: var(--shop-max);
    margin: 0 auto;
}
.shop-products-head {
    text-align: center;
    margin-bottom: clamp(36px, 5vh, 52px);
}
.shop-products-eyebrow {
    display: block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-sage-dark);
    margin-bottom: 10px;
}
.shop-products-title {
    font-size: clamp(1.35rem, 2.5vw, 1.75rem);
    font-weight: 700;
    text-transform: lowercase;
    letter-spacing: -0.02em;
    margin: 0;
}

.shop-products-note {
    font-size: 15px;
    color: var(--color-muted);
    margin: 10px auto 0;
    text-align: center;
    white-space: nowrap;
}

@media (max-width: 560px) {
    .shop-products-note {
        white-space: normal;
        max-width: 22em;
        margin-left: auto;
        margin-right: auto;
    }
}

/* 2×2 product grid */
.shop-products-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(28px, 4vw, 48px);
}

.shop-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.shop-card-visual {
    position: relative;
    width: 100%;
    background: var(--renewa-stage);
    overflow: hidden;
    isolation: isolate;
}

.shop-card-visual::before {
    content: "";
    display: block;
    width: 100%;
    padding-top: 100%;
    pointer-events: none;
}

.shop-card-visual .shop-product-media {
    position: absolute;
    inset: 0;
}

.shop-card-visual .shop-product-media img,
.shop-card-visual .shop-product-soon-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.shop-card--available {
    padding: clamp(12px, 2vw, 16px);
    margin: calc(-1 * clamp(12px, 2vw, 16px));
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(226, 242, 246, 0.55) 0%, rgba(255, 255, 255, 0) 42%);
    box-shadow: 0 0 0 2px var(--color-sage), 0 12px 32px rgba(45, 60, 64, 0.08);
}

.shop-card--available .shop-card-visual {
    border-radius: 4px;
}

.shop-card-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(
        180deg,
        rgba(10, 46, 46, 0.25) 0%,
        rgba(10, 46, 46, 0.55) 100%
    );
    pointer-events: none;
}

.shop-card-overlay-badge {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-dark);
    background: var(--color-bg);
    padding: 10px 18px;
}

.shop-card-body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding-top: clamp(16px, 2.5vw, 22px);
    text-align: left;
}

.shop-card-title {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    font-weight: 700;
    text-transform: none;
    line-height: 1.2;
    margin: 0;
    color: var(--color-dark);
}

.shop-card-meta {
    font-size: 15px;
    line-height: 1.45;
    margin: 0;
    color: var(--color-muted);
}

.shop-card-price {
    font-size: clamp(1.1rem, 1.8vw, 1.25rem);
    font-weight: 700;
    color: var(--color-dark);
    margin: 4px 0 0;
    line-height: 1.35;
}

.shop-card-footnote {
    font-size: 14px;
    margin: 4px 0 0;
    color: var(--color-muted);
}

.shop-card-paypal {
    width: 100%;
    max-width: 100%;
    margin-top: 4px;
}

.shop-card .shop-btn {
    width: 100%;
    max-width: 100%;
}

@media (max-width: 640px) {
    .shop-products-grid {
        grid-template-columns: 1fr;
    }
}

/* Legacy full-width product rows (if used elsewhere) */
.shop-product {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(24px, 4vw, 56px);
    align-items: start;
    padding: clamp(32px, 5vh, 48px) 0;
    border-bottom: 1px solid rgba(154, 177, 182, 0.35);
}
.shop-product:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.shop-product:first-of-type {
    padding-top: 0;
}

/* Visual — locked 4:5 frame; both products identical width & height */
.shop-product-visual {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0;
    background: var(--renewa-stage);
    overflow: hidden;
    flex-shrink: 0;
    isolation: isolate;
}

/* Spacer sets height from width; slightly shorter than 4:5 */
.shop-product-visual::before {
    content: "";
    display: block;
    width: 100%;
    padding-top: 112.5%;
    pointer-events: none;
}

.shop-product-status {
    position: absolute;
    top: clamp(16px, 2vw, 24px);
    left: clamp(16px, 2vw, 24px);
    z-index: 3;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(226, 242, 246, 0.95);
}
.shop-product-status--available {
    color: rgba(226, 242, 246, 0.95);
}

/* Media layers fill the exact same frame */
.shop-gallery,
.shop-product-media {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

.shop-gallery-main,
.shop-product-soon-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    margin: 0;
    padding: 0;
    object-fit: cover;
    object-position: center;
    display: block;
}

.shop-product-soon-img {
    filter: saturate(0.92) brightness(0.9);
}

.shop-gallery-thumb img {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    object-fit: cover;
    object-position: center;
    display: block;
}
.shop-product-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: clamp(24px, 4vw, 40px);
    background: linear-gradient(
        180deg,
        rgba(10, 46, 46, 0.35) 0%,
        rgba(10, 46, 46, 0.55) 45%,
        rgba(10, 46, 46, 0.7) 100%
    );
    color: #fff;
}
.shop-product-overlay-kicker {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(226, 242, 246, 0.9);
    margin-bottom: 12px;
}
.shop-product-overlay-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    text-transform: none;
    color: #fff;
    margin: 0 0 16px;
    line-height: 1.1;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}
.shop-product-overlay-badge {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-dark);
    background: var(--color-bg);
    padding: 10px 20px;
    margin: 0 0 14px;
}
.shop-product-overlay-sub {
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.92);
    margin: 0;
    text-transform: lowercase;
    letter-spacing: 0.02em;
}

.shop-gallery-main {
    opacity: 1;
    transition: opacity 0.4s ease;
}
.shop-gallery-main.is-hidden {
    opacity: 0;
    pointer-events: none;
}
.shop-gallery-thumbs {
    position: absolute;
    bottom: clamp(12px, 2vw, 20px);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: clamp(8px, 1.5vw, 12px);
    z-index: 4;
    max-width: calc(100% - 24px);
}
.shop-gallery-thumb {
    flex: 0 0 auto;
    width: clamp(52px, 14vw, 72px);
    aspect-ratio: var(--shop-visual-ratio);
    height: auto;
    padding: 0;
    border: 2px solid transparent;
    border-radius: 0;
    overflow: hidden;
    cursor: pointer;
    background: var(--renewa-stage);
    opacity: 0.7;
    transition: opacity 0.2s ease, border-color 0.2s ease;
}
.shop-gallery-thumb img {
    width: 100%;
    height: 100%;
}
.shop-gallery-thumb.is-active,
.shop-gallery-thumb:hover {
    opacity: 1;
    border-color: var(--color-bg);
}
.shop-gallery-thumb:focus-visible {
    outline: 2px solid var(--color-sage);
    outline-offset: 2px;
}

/* Product copy */
.shop-product-copy {
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: center;
    padding: clamp(8px, 2vw, 24px) 0;
}
.shop-product-brand {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: lowercase;
    color: var(--color-sage-dark);
}
.shop-product-name {
    font-size: clamp(1.4rem, 2.8vw, 1.75rem);
    font-weight: 700;
    text-transform: none;
    line-height: 1.15;
    margin: 0;
    letter-spacing: -0.02em;
    color: var(--color-dark);
}
.shop-product-meta {
    font-size: 16px;
    color: var(--color-muted);
    margin: 0;
}
.shop-product-desc {
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    max-width: 48ch;
}
@media (max-width: 860px) {
    .shop-product-desc {
        max-width: none;
    }
}
.shop-product-price {
    font-size: clamp(1.2rem, 2vw, 1.4rem);
    font-weight: 700;
    color: var(--color-dark);
    margin: 8px 0 0;
}
.shop-product-price-note {
    font-size: 16px;
    font-weight: 400;
    color: var(--color-muted);
}
.shop-product-footnote {
    font-size: 16px;
    margin: 0;
    color: var(--color-muted);
}
.shop-product-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: stretch;
    margin-top: 8px;
}
.shop-product-actions .shop-paypal-btn,
.shop-product-actions .shop-btn {
    flex: 1 1 auto;
    min-width: min(100%, 200px);
}
.shop-product--soon .shop-product-copy {
    opacity: 1;
}

/* Buttons — Zann site pattern */
.shop-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 12px 22px;
    font-size: 16px;
    font-weight: 400;
    font-family: var(--font);
    text-decoration: none;
    border-radius: 6px;
    border: 1px solid var(--color-dark);
    text-transform: lowercase;
    transition: 0.2s ease;
    cursor: pointer;
}
.shop-btn--primary {
    background: var(--color-dark);
    color: var(--color-white);
    border-color: var(--color-dark);
}
.shop-btn--primary:hover {
    background: var(--color-muted);
    border-color: var(--color-muted);
    color: var(--color-white);
}
.shop-btn--outline {
    background: var(--color-white);
    color: var(--color-dark);
}
.shop-btn--outline:hover {
    background: var(--color-dark);
    color: var(--color-white);
}
.shop-btn--disabled,
.shop-btn--disabled:hover {
    background: rgba(84, 86, 88, 0.1);
    color: var(--color-muted);
    border-color: rgba(84, 86, 88, 0.2);
    cursor: not-allowed;
    pointer-events: none;
}

/* PayPal */
.shop-paypal-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    padding: 12px 20px;
    font-family: var(--font);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    text-transform: lowercase;
    color: #fff;
    background: linear-gradient(180deg, #0070ba 0%, #003087 100%);
    border: none;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 48, 135, 0.2);
    transition: 0.2s ease;
}
.shop-paypal-btn:hover {
    filter: brightness(1.05);
    color: #fff;
}
.shop-paypal-btn:focus-visible {
    outline: 2px solid var(--color-sage-dark);
    outline-offset: 2px;
}
.shop-paypal-btn.is-placeholder {
    pointer-events: none;
    opacity: 0.88;
}
.shop-paypal-logo {
    font-style: italic;
    font-weight: 800;
}
.shop-paypal-btn .shop-paypal-logo span {
    color: #fff !important;
}

/* —— Shopping information — open, no boxes —— */
.shop-info {
    padding: clamp(48px, 8vh, 88px) var(--shop-pad) clamp(56px, 9vh, 96px);
    background:
        radial-gradient(ellipse 90% 50% at 50% 0%, rgba(226, 242, 246, 0.8) 0%, transparent 65%),
        var(--color-bg);
    border-top: 1px solid rgba(154, 177, 182, 0.22);
}
.shop-info-inner {
    max-width: var(--shop-max);
    margin: 0 auto;
}

.shop-info-intro {
    text-align: center;
    max-width: 52ch;
    margin: 0 auto clamp(40px, 6vh, 56px);
}
.shop-info-eyebrow {
    display: block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-sage-dark);
    margin-bottom: 12px;
}
.shop-info-intro h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    text-transform: lowercase;
    margin: 0 0 12px;
}
.shop-info-intro p {
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

.shop-info-body {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(220px, 280px);
    gap: clamp(40px, 6vw, 72px);
    align-items: start;
    margin-bottom: clamp(48px, 7vh, 64px);
}
@media (max-width: 820px) {
    .shop-info-body {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .shop-info-contact-lede {
        max-width: none;
    }
}

/* Policy list — hairline dividers only */
.shop-info-item {
    padding: 22px 0;
    border-bottom: 1px solid rgba(154, 177, 182, 0.35);
}
.shop-info-item--last {
    border-bottom: none;
    padding-bottom: 0;
}
.shop-info-item:first-child {
    padding-top: 0;
}
.shop-info-item h3 {
    font-size: 16px;
    font-weight: 700;
    text-transform: lowercase;
    color: var(--color-dark);
    margin: 0 0 8px;
    display: flex;
    align-items: baseline;
    gap: 12px;
}
.shop-info-num {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--color-sage-dark);
    flex-shrink: 0;
}
.shop-info-item p {
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    max-width: 58ch;
}
.shop-info-item a {
    color: var(--color-dark);
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.shop-info-item a:hover {
    color: var(--color-sage-dark);
}
.shop-info-item strong {
    font-weight: 600;
    color: var(--color-dark);
}

/* Contact column — typography only */
.shop-info-contact {
    padding-top: 4px;
}
.shop-info-contact h3 {
    font-size: 18px;
    font-weight: 700;
    text-transform: lowercase;
    margin: 0 0 12px;
    color: var(--color-dark);
}
.shop-info-contact-lede {
    font-size: 16px;
    line-height: 1.55;
    margin: 0 0 20px;
    max-width: 28ch;
}
.shop-info-contact-line {
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: var(--color-dark);
    text-decoration: none;
    margin-bottom: 10px;
    line-height: 1.45;
}
a.shop-info-contact-line:hover {
    text-decoration: underline;
}
.shop-info-contact-address {
    font-weight: 400;
    color: var(--color-muted);
    margin-bottom: 24px;
}
.shop-info-contact .shop-btn {
    width: 100%;
    box-sizing: border-box;
}

/* FAQ — divider lines, no boxes */
.shop-info-faq {
    padding-top: clamp(32px, 5vh, 48px);
    border-top: 1px solid rgba(154, 177, 182, 0.35);
}
.shop-info-faq-title {
    font-size: 16px;
    font-weight: 700;
    text-transform: lowercase;
    color: var(--color-dark);
    margin: 0 0 8px;
    letter-spacing: -0.01em;
}
.shop-info-faq-item {
    border-bottom: 1px solid rgba(154, 177, 182, 0.3);
    background: transparent;
}
.shop-info-faq-item:last-child {
    border-bottom: none;
}
.shop-info-faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 18px 0;
    padding-right: 32px;
    font-size: 16px;
    font-weight: 600;
    color: var(--color-dark);
    text-transform: lowercase;
    position: relative;
}
.shop-info-faq-item summary::-webkit-details-marker {
    display: none;
}
.shop-info-faq-item summary::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--color-sage-dark);
}
.shop-info-faq-item[open] summary::after {
    content: "−";
}
.shop-info-faq-item summary:hover {
    color: var(--color-sage-dark);
}
.shop-info-faq-item p {
    margin: 0 0 20px;
    padding: 0;
    font-size: 16px;
    line-height: 1.6;
    max-width: 65ch;
    border: none;
}

/* —— CTA — full-screen, same mint as footer —— */
.shop-cta-band {
    width: 100%;
    min-height: 100svh;
    min-height: 100vh;
    padding: clamp(32px, 6vw, 64px) var(--shop-pad);
    text-align: center;
    background: var(--color-bg);
    border-top: 1px solid var(--color-border);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
}
.shop-cta-band h2 {
    font-size: clamp(1.85rem, 5vw + 0.65rem, 3rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.12;
    margin: 0 0 12px;
    max-width: none;
    white-space: nowrap;
}

@media (max-width: 520px) {
    .shop-cta-band h2 {
        font-size: clamp(1.25rem, 4.5vw, 1.85rem);
        white-space: normal;
        max-width: 18em;
    }
}
.shop-cta-band p {
    margin: 0 auto 22px;
    max-width: 52ch;
    font-size: 16px;
}
.shop-cta-band .shop-btn--outline {
    background: var(--color-white);
}
.shop-cta-band .shop-btn--outline:hover {
    background: var(--color-dark);
    color: var(--color-white);
}

.shop-cta-band .shop-btn--primary {
    display: inline-flex;
    margin: 0 auto;
}

.shop-cta-band-inner {
    width: 100%;
    max-width: var(--shop-max);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.shop-bulk-cta p {
    max-width: 52ch;
}

@media (max-width: 600px) {
    .shop-hero {
        min-height: min(100svh, 720px);
    }
    .shop-cta-band {
        min-height: min(100svh, 640px);
    }
}

/* —— Responsive: tablet & mobile —— */
@media (max-width: 860px) {
    .shop-product {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .shop-product--soon .shop-product-visual,
    .shop-product--soon .shop-product-copy {
        order: unset;
    }
    .shop-product-copy {
        padding: 0;
    }
    .shop-card--available {
        margin: 0;
    }
}

@media (max-width: 600px) {
    .shop-hero h1 {
        max-width: none;
    }
    .shop-product-actions {
        flex-direction: column;
    }
    .shop-product-actions .shop-paypal-btn,
    .shop-product-actions .shop-btn {
        width: 100%;
        min-width: 0;
    }
    .shop-product-overlay-title {
        font-size: clamp(1.35rem, 6vw, 1.75rem);
    }
    .shop-product-overlay-badge {
        font-size: 12px;
        padding: 8px 16px;
    }
    .shop-info-contact .shop-btn {
        width: 100%;
    }
}

@media (min-width: 861px) {
    .shop-product--soon .shop-product-visual {
        order: 2;
    }
    .shop-product--soon .shop-product-copy {
        order: 1;
    }
}

@media (min-width: 992px) {
    .shop-product {
        gap: clamp(40px, 5vw, 64px);
    }
}

@media (max-width: 640px) {
    .shop-info-item h3 {
        flex-wrap: wrap;
    }
    .shop-info-faq-item summary {
        padding-right: 28px;
        font-size: 15px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .shop-gallery-main,
    .shop-gallery-thumb,
    .shop-info-faq-item summary {
        transition: none;
    }
}
