/* ==========================================================================
   /collection-v6/{slug} — Collection detail page (polish iteration)
   Class prefix: cv6- (no conflicts with collections.css)
   v5 design tokens: lime #CCEA4A, dark #0a0a0a / #111827, Bricolage 800
   ========================================================================== */

/* ── CSS variables (v5 design system) ──────────────────────────────────── */
.cv6-page,
.cv6-faq,
.cv6-mobile-bar {
    --cv6-accent:      #CCEA4A;
    --cv6-accent-dark: #b8d623;
    --cv6-accent-bg:   #f5fad4;
    --cv6-accent-text: #4d5e0f;
    --cv6-dark:        #0a0a0a;
    --cv6-dark-2:      #111827;
    --cv6-dark-3:      #1f2937;
    --cv6-mid:         #6b7280;
    --cv6-light:       #f3f4f6;
    --cv6-light-2:     #f9fafb;
    --cv6-border:      #e5e7eb;
    --cv6-white:       #ffffff;
    --cv6-max-w:       1480px;
    --cv6-rail-w:      500px;
    --cv6-gap:         56px;
    --cv6-radius:      16px;
    --cv6-radius-sm:   10px;
}

/* ── Utility ────────────────────────────────────────────────────────────── */
.cv6-container {
    max-width: var(--cv6-max-w);
    margin-inline: auto;
    padding-inline: 24px;
}

/* ── Breadcrumb bar ─────────────────────────────────────────────────────── */
.cv6-breadcrumb-bar {
    background: var(--cv6-white);
    border-bottom: 1px solid var(--cv6-border);
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}
.cv6-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--cv6-mid);
    font-size: 0.82rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.18s;
}
.cv6-breadcrumb:hover { color: var(--cv6-dark-2); }
/* Sticky variant for the link itself (within the sticky bar) */
.cv6-breadcrumb--sticky {
    /* inherits from .cv6-breadcrumb — bar itself is sticky */
}

/* ── Main body section ──────────────────────────────────────────────────── */
.cv6-body {
    background: var(--cv6-white);
    padding-block: 40px 80px;
}

/* Two-column layout */
.cv6-body-layout {
    display: grid;
    grid-template-columns: 1fr var(--cv6-rail-w);
    gap: var(--cv6-gap);
    align-items: start;
}

/* ── LEFT COLUMN ────────────────────────────────────────────────────────── */
.cv6-left {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* ── Hero cover image ───────────────────────────────────────────────────── */
.cv6-hero-cover {
    position: relative;
    border-radius: var(--cv6-radius);
    overflow: hidden;
    margin-bottom: 10px;
    background: #fef9ec;
}
.cv6-hero-cover__img {
    width: 100%;
    height: auto;
    display: block;
}

/* Save badge top-right of hero cover */
.cv6-hero-cover__save-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: var(--cv6-accent);
    color: var(--cv6-dark);
    font-size: 0.8rem;
    font-weight: 800;
    padding: 6px 14px;
    border-radius: 20px;
    z-index: 3;
    pointer-events: none;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

/* ── Hero thumbnail strip (8 small decorative tiles under cover — no links) ─ */
.cv6-hero-thumb-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 32px;
}
.cv6-hero-thumb-tile {
    flex: 1 0 calc(12.5% - 8px); /* 8 across on desktop */
    min-width: 40px;
    aspect-ratio: 1;
    display: block;
    overflow: hidden;
    background: var(--cv6-light);
    border-radius: 8px;
}
.cv6-hero-thumb-tile img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 6px;
    display: block;
}

/* ── "What's Included" heading ──────────────────────────────────────────── */
.cv6-included-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}
.cv6-included-heading__label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--cv6-dark-2);
    font-family: 'Bricolage Brand', 'Bricolage Grotesque', sans-serif;
}
.cv6-included-heading__badge {
    background: var(--cv6-accent);
    color: var(--cv6-dark);
    font-size: 0.78rem;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 20px;
    white-space: nowrap;
}

/* ── Pack cards (v1-style: cream hero left + white info right + 7 thumbs) ── */
.cv6-pack-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 48px;
}

.cv6-pack-card {
    display: flex;
    flex-direction: row;
    background: var(--cv6-white);
    border: 1px solid var(--cv6-border);
    border-radius: var(--cv6-radius);
    overflow: hidden;
    color: inherit;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
    align-items: stretch;
    min-height: 220px;
    position: relative; /* stretched-link anchor */
}
.cv6-pack-card:hover {
    border-color: var(--cv6-accent);
    box-shadow: 0 6px 24px rgba(0,0,0,0.09);
    transform: translateY(-2px);
}

/* Left panel: cream/ivory background with edge-to-edge hero image (~28% width) */
.cv6-pack-card__hero {
    width: 28%;
    min-width: 180px;
    max-width: 240px;
    flex-shrink: 0;
    overflow: hidden;
    background: #fef9ec;      /* cream/ivory — fallback for transparent images / load failures */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.cv6-pack-card__hero--icon {
    /* icon pack hero uses its own PreviewColor inline style — no cream override */
    background: transparent;
}
.cv6-pack-card__hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;   /* fill edge-to-edge, crop if needed */
    padding: 0;          /* no padding — image fills the panel */
    display: block;
    position: absolute;
    inset: 0;
}
.cv6-pack-card__hero-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

/* Right panel — white, content top-to-bottom */
.cv6-pack-card__body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 20px 20px 16px;
    background: var(--cv6-white);
}

/* Row 1: name+badge left, price+included right */
.cv6-pack-card__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}
.cv6-pack-card__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    min-width: 0;
    flex: 1;
}
.cv6-pack-card__name {
    font-family: 'Bricolage Brand', 'Bricolage Grotesque', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--cv6-dark-2);
    margin: 0;
    line-height: 1.25;
    letter-spacing: -0.01em;
}
.cv6-pack-card__style-badge {
    font-size: 0.68rem;
    font-weight: 700;
    padding: 2px 10px;
    background: var(--cv6-accent-bg);
    color: var(--cv6-accent-text);
    border-radius: 20px;
    border: 1px solid #d5e0a8;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    flex-shrink: 0;
}
/* Price column — far right of header row */
.cv6-pack-card__price-col {
    flex-shrink: 0;
    text-align: right;
}
.cv6-pack-card__price-strike {
    font-size: 0.85rem;
    color: #9ca3af;
    text-decoration: line-through;
    font-weight: 500;
    line-height: 1.3;
}
.cv6-pack-card__price-included {
    font-size: 0.75rem;
    color: var(--cv6-mid);
    font-weight: 500;
    line-height: 1.3;
}

/* Row 2: description */
.cv6-pack-card__desc {
    font-size: 0.85rem;
    color: var(--cv6-mid);
    line-height: 1.55;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Row 3: element count */
.cv6-pack-card__count {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.78rem;
    color: var(--cv6-mid);
}

/* Row 4: 7 sample thumbnails — light gray bordered boxes, edge-to-edge in body */
.cv6-pack-card__sample-strip {
    display: flex;
    gap: 6px;
    flex: 0 0 auto;
    overflow: hidden;
}
.cv6-pack-card__sample-thumb {
    flex: 1;
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--cv6-light-2);
    border: 1px solid var(--cv6-border);
    border-radius: 6px;
    min-width: 0;
}
.cv6-pack-card__sample-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 4px;
    display: block;
}
.cv6-pack-card__sample-thumb--icon img {
    padding: 6px;
}

/* Row 5: view link — stretched-link pattern */
.cv6-pack-card__footer {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-top: 4px;
    margin-top: auto;
    position: relative; /* keeps the visible span above the stretched anchor */
    z-index: 3;
}
/* The actual <a> is visually hidden but covers the whole card */
.cv6-pack-card__stretched-link {
    position: absolute;
    inset: 0;
    z-index: 1;
    /* visually hidden text */
    font-size: 0;
    color: transparent;
    text-decoration: none;
}
/* Visible "View pack details →" text — rendered as a span, not a link */
.cv6-pack-card__link {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--cv6-accent-text);
    display: flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
    pointer-events: none; /* the stretched link handles clicks */
    position: relative;
    z-index: 3;
}
.cv6-pack-card:hover .cv6-pack-card__link { text-decoration: underline; }

/* ── Prose body ─────────────────────────────────────────────────────────── */
.cv6-prose-body {
    border-top: 1px solid var(--cv6-border);
    padding-top: 40px;
}
.cv6-prose-body__h2 {
    font-family: 'Bricolage Brand', 'Bricolage Grotesque', sans-serif;
    font-size: clamp(1.4rem, 2.5vw, 1.9rem);
    font-weight: 800;
    color: var(--cv6-dark-2);
    margin-bottom: 20px;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.cv6-prose-html { font-size: 0.95rem; color: #374151; line-height: 1.75; }
.cv6-prose-html h2 { font-family: 'Bricolage Brand', 'Bricolage Grotesque', sans-serif; font-size: 1.3rem; font-weight: 800; color: var(--cv6-dark-2); margin: 1.8em 0 0.5em; letter-spacing: -0.015em; }
.cv6-prose-html h3 { font-family: 'Bricolage Brand', 'Bricolage Grotesque', sans-serif; font-size: 1.1rem; font-weight: 700; color: var(--cv6-dark-2); margin: 1.4em 0 0.4em; }
.cv6-prose-html p  { margin-bottom: 0.9em; }
.cv6-prose-html ul { list-style: disc outside; padding-left: 1.6em; margin-bottom: 0.9em; }
.cv6-prose-html ol { list-style: decimal outside; padding-left: 1.6em; margin-bottom: 0.9em; }
.cv6-prose-html li { margin-bottom: 0.35em; display: list-item; list-style: inherit; }
.cv6-prose-html strong { font-weight: 700; color: var(--cv6-dark-2); }
.cv6-prose-html blockquote { border-left: 3px solid var(--cv6-border); padding-left: 1em; color: var(--cv6-mid); font-style: italic; margin: 0.8em 0; }
.cv6-prose-html a  { color: var(--cv6-accent-text); text-decoration: underline; }
.cv6-prose-html a:hover { color: var(--cv6-accent-dark); }

/* ── "Continue exploring" internal-links section ────────────────────────── */
.cv6-body__continue {
    border-top: 1px solid var(--cv6-border);
    padding-top: 40px;
    margin-top: 40px;
}
.cv6-body__continue h2 {
    font-family: 'Bricolage Brand', 'Bricolage Grotesque', sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--cv6-dark-2);
    letter-spacing: -0.015em;
    margin-bottom: 20px;
}
.cv6-body__continue ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px 24px;
}
.cv6-body__continue ul li {
    display: flex;
    align-items: center;
}
.cv6-body__continue ul li::before {
    content: '\2192'; /* → arrow */
    margin-right: 7px;
    color: var(--cv6-accent-text);
    font-size: 0.9rem;
    flex-shrink: 0;
}
.cv6-body__continue ul a {
    font-size: 0.88rem;
    color: var(--cv6-dark-2);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.18s;
}
.cv6-body__continue ul a:hover {
    color: var(--cv6-accent-text);
    text-decoration: underline;
}

@media (max-width: 900px) {
    .cv6-body__continue ul {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 480px) {
    .cv6-body__continue ul {
        grid-template-columns: 1fr;
    }
}

/* ── RIGHT RAIL ─────────────────────────────────────────────────────────── */
.cv6-rail {
    position: sticky;
    top: 96px;
    align-self: start;
}

/* No outer border — clean content placed on page background */
.cv6-deal-card {
    background: transparent;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
/* Borderless variant (explicit, for clarity) */
.cv6-deal-card--borderless {
    border: none;
    box-shadow: none;
    border-radius: 0;
}

/* 1. Badges row */
.cv6-deal-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.cv6-deal-badge {
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    white-space: nowrap;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.cv6-deal-badge--lime {
    background: #fef9ec;
    color: #92400e;
    font-size: 12px;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 600;
    border: none;
    text-transform: none;
    letter-spacing: normal;
}
.cv6-deal-badge--gray {
    background: var(--cv6-light);
    color: var(--cv6-mid);
    border: 1px solid var(--cv6-border);
}

/* 2. Title */
.cv6-deal-title {
    font-family: 'Bricolage Brand', 'Bricolage Grotesque', sans-serif;
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 800;
    color: var(--cv6-dark-2);
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin: 0;
}

/* 3. Byline */
.cv6-deal-byline {
    font-size: 0.875rem;
    color: var(--cv6-mid);
    line-height: 1.6;
    margin: 0;
}

/* 4. Price row */
.cv6-deal-price-row {
    display: flex;
    align-items: baseline;
    gap: 10px;
    flex-wrap: wrap;
}
.cv6-deal-price {
    font-family: 'Bricolage Brand', 'Bricolage Grotesque', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--cv6-dark-2);
    line-height: 1;
    letter-spacing: -0.03em;
}
.cv6-deal-price-strike {
    font-size: 1rem;
    color: #9ca3af;
    text-decoration: line-through;
    font-weight: 500;
}
.cv6-deal-price-label {
    font-size: 0.78rem;
    color: var(--cv6-mid);
    font-weight: 500;
}

/* 5. Savings pill (full-width lime) */
.cv6-deal-savings-pill {
    background: var(--cv6-accent-bg);
    color: var(--cv6-accent-text);
    font-size: 0.82rem;
    font-weight: 700;
    padding: 10px 16px;
    border-radius: 10px;
    border: 1px solid #d5e0a8;
    text-align: center;
    line-height: 1.4;
}

/* 6. Format badges */
.cv6-deal-formats {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}
.cv6-deal-format-chip {
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 10px;
    background: var(--cv6-light);
    color: var(--cv6-dark-2);
    border-radius: 6px;
    border: 1px solid var(--cv6-border);
    letter-spacing: 0.02em;
}

/* 7. Collection Summary subcard — keeps its subtle tint (it's a subcard, not the rail) */
.cv6-summary-card {
    background: var(--cv6-light-2);
    border: 1px solid var(--cv6-border);
    border-radius: var(--cv6-radius-sm);
    padding: 20px 22px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.cv6-summary-title {
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--cv6-mid);
}
.cv6-summary-table {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.cv6-summary-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.85rem;
}
.cv6-summary-label {
    color: var(--cv6-mid);
}
.cv6-summary-value {
    font-weight: 600;
    color: var(--cv6-dark-2);
    text-align: right;
    max-width: 55%;
    word-break: break-word;
}
.cv6-summary-value--strike {
    text-decoration: line-through;
    color: #9ca3af;
    font-weight: 400;
}
.cv6-summary-value--accent {
    color: var(--cv6-accent-text);
    font-weight: 800;
    font-size: 1rem;
}
.cv6-summary-divider {
    height: 1px;
    background: var(--cv6-border);
    margin: 4px 0;
}
/* Lime savings row */
.cv6-summary-savings-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.85rem;
    font-weight: 700;
    background: var(--cv6-accent-bg);
    color: var(--cv6-accent-text);
    padding: 8px 12px;
    border-radius: 8px;
    margin-top: 4px;
    border: 1px solid #d5e0a8;
}

/* CTA button inside summary card */
.cv6-deal-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 999px;
    font-size: 1rem;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.18s, transform 0.12s, box-shadow 0.18s;
    margin-top: 4px;
    text-align: center;
    font-family: 'Bricolage Brand', 'Bricolage Grotesque', sans-serif;
    letter-spacing: -0.01em;
}
.cv6-deal-cta--buy {
    background: var(--cv6-accent);
    color: var(--cv6-dark);
}
.cv6-deal-cta--buy:hover {
    background: var(--cv6-accent-dark);
    color: var(--cv6-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(204,234,74,0.45);
}
.cv6-deal-cta--dark {
    background: var(--cv6-dark-2);
    color: var(--cv6-white);
    text-decoration: none;
}
.cv6-deal-cta--dark:hover {
    background: var(--cv6-dark);
    color: var(--cv6-white);
    transform: translateY(-1px);
}
.cv6-deal-cta--owned {
    background: var(--cv6-accent);
    color: var(--cv6-dark);
    pointer-events: none;
}

/* "Included in your plan" note */
.cv6-deal-plan-note {
    font-size: 0.75rem;
    color: var(--cv6-mid);
    text-align: center;
    margin: 0;
    font-style: italic;
}

/* All Access upsell box (inside summary card, below CTA) */
.cv6-allaccess-box {
    margin-top: 10px;
    padding: 12px 14px;
    background: linear-gradient(135deg, #f0f4e4 0%, #e8efd8 100%);
    border-radius: 10px;
    border: 1px solid #d5e0a8;
}
.cv6-allaccess-box-label {
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--cv6-accent-text);
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 5px;
}
.cv6-allaccess-box-text {
    font-size: 0.78rem;
    color: #000;
    line-height: 1.5;
    margin-bottom: 8px;
}
.cv6-allaccess-box-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    padding: 8px;
    background: #000;
    color: #fff;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
    text-decoration: none;
}
.cv6-allaccess-box-btn:hover { background: #1f2937; color: #fff; }

/* 8. Trust bullets */
.cv6-trust-list {
    display: flex;
    flex-direction: column;
    gap: 9px;
    font-size: 0.82rem;
    color: var(--cv6-dark-2);
    padding-top: 4px;
}
.cv6-trust-item {
    display: flex;
    align-items: center;
    gap: 9px;
}
.cv6-trust-item svg { flex-shrink: 0; }

/* ── Mobile bottom bar — permanently removed ────────────────────────────── */
.cv6-mobile-bar {
    display: none !important;
}
/* (kept below for reference — never shown) */
.cv6-mobile-bar--disabled {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.94);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-top: 1px solid var(--cv6-border);
    padding: 12px 16px;
    z-index: 990;
    box-shadow: 0 -4px 16px rgba(0,0,0,0.08);
}
.cv6-mobile-bar-inner {
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: var(--cv6-max-w);
    margin-inline: auto;
}
.cv6-mobile-price-label {
    font-family: 'Bricolage Brand', 'Bricolage Grotesque', sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--cv6-dark-2);
    white-space: nowrap;
}
.cv6-mobile-cta {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px 16px;
    background: var(--cv6-accent);
    color: var(--cv6-dark);
    border: none;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
    white-space: nowrap;
}
.cv6-mobile-cta-dark {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px 16px;
    background: var(--cv6-dark-2);
    color: #fff;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
}
.cv6-mobile-owned {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px 16px;
    background: var(--cv6-accent);
    color: var(--cv6-dark);
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 800;
    pointer-events: none;
}

/* ── Responsive ─────────────────────────────────────────────────────────── */

/* 1400px — narrow rail slightly */
@media (max-width: 1400px) {
    .cv6-body-layout {
        grid-template-columns: 1fr 460px;
        gap: 44px;
    }
}

/* 1200px — narrow rail more */
@media (max-width: 1200px) {
    .cv6-body-layout {
        grid-template-columns: 1fr 420px;
        gap: 36px;
    }
}

/* 1024px — stack columns */
@media (max-width: 1024px) {
    .cv6-body-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .cv6-rail {
        position: static;
        order: -1; /* rail above left column on mobile/tablet */
    }
    .cv6-deal-card {
        max-width: 560px;
    }
    /* mobile bar is permanently removed — no display:block here */
    .cv6-body { padding-bottom: 48px; }
}

/* 768px */
@media (max-width: 768px) {
    .cv6-container { padding-inline: 16px; }
    .cv6-body { padding-block: 28px 48px; }
    .cv6-deal-card { max-width: 100%; }
    .cv6-deal-title { font-size: 1.6rem; }
    .cv6-pack-card { flex-direction: column; }
    .cv6-pack-card__hero {
        width: 100%;
        min-width: 0;
        max-width: 100%;
        min-height: 180px;
        max-height: 200px;
    }
    .cv6-pack-card__sample-strip { display: none; }
    .cv6-hero-thumb-strip { gap: 4px; }
    .cv6-hero-thumb-tile img { padding: 4px; }
}

/* 480px */
@media (max-width: 480px) {
    .cv6-deal-price { font-size: 2rem; }
    .cv6-hero-thumb-strip { gap: 3px; }
    /* At 480px: hero thumbs wrap to 4×2 grid instead of 8 in one cramped row */
    .cv6-hero-thumb-tile {
        flex: 1 0 calc(25% - 4px); /* 4 across → 2 rows */
        min-width: 0;
    }
    .cv6-pack-card__hero { min-height: 140px; max-height: 180px; }
}

/* 375px — prevent any horizontal overflow */
@media (max-width: 400px) {
    .cv6-container { padding-inline: 12px; }
    .cv6-deal-title { font-size: 1.45rem; }
    .cv6-deal-price { font-size: 1.8rem; }
    .cv6-pack-card__name { font-size: 1rem; }
    .cv6-pack-card__hero { min-height: 120px; max-height: 160px; }
}

/* ── FAQ section — pricing-plans style, 2 columns on desktop ────────────── */
.cv6-faq {
    background: var(--cv6-white);
    border-top: 1px solid var(--cv6-border);
    padding-block: 96px 112px;
}

.cv6-faq__head {
    text-align: center;
    margin-bottom: 56px;
}
.cv6-faq__title {
    font-family: 'Bricolage Brand', 'Bricolage Grotesque', sans-serif;
    font-size: clamp(2.25rem, 4vw, 3.5rem);
    font-weight: 800;
    font-style: normal;
    letter-spacing: -0.025em;
    color: var(--cv6-dark-2);
    margin: 0;
    line-height: 1.05;
}

/* 2-column grid on desktop */
.cv6-faq__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 56px;
    /* Top border under the heading spans both columns */
    border-top: 1px solid var(--cv6-border);
}

/* FAQ accordion item — <details> element, pricing-plans style */
.cv6-faq__item {
    border-bottom: 1px solid var(--cv6-border);
    padding: 22px 0;
    transition: padding 0.2s ease;
}
.cv6-faq__item[open] {
    padding: 24px 0 28px;
}

/* Question = <summary> */
.cv6-faq__question {
    cursor: pointer;
    list-style: none;
    font-family: 'Bricolage Brand', 'Bricolage Grotesque', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--cv6-dark-2);
    letter-spacing: -0.01em;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    transition: color 0.18s;
    /* Reset <summary> default markers */
    margin: 0;
    line-height: 1.4;
}
.cv6-faq__question:hover { color: var(--cv6-mid); }
.cv6-faq__question::-webkit-details-marker { display: none; }
.cv6-faq__question::after {
    content: '+';
    font-size: 22px;
    font-weight: 300;
    color: var(--cv6-mid);
    line-height: 1;
    transition: transform 0.25s, color 0.18s;
    flex-shrink: 0;
}
.cv6-faq__item[open] .cv6-faq__question::after {
    content: '–';
    color: var(--cv6-dark-2);
}

/* Answer */
.cv6-faq__answer {
    font-size: 0.9rem;
    color: #374151;
    line-height: 1.7;
    margin-top: 14px;
    letter-spacing: -0.005em;
}
.cv6-faq__answer p   { margin-bottom: 0.5em; }
.cv6-faq__answer p:last-child { margin-bottom: 0; }
.cv6-faq__answer a   {
    color: var(--cv6-dark-2);
    border-bottom: 2px solid var(--cv6-accent);
    padding-bottom: 1px;
    text-decoration: none;
}
.cv6-faq__answer strong { font-weight: 700; color: var(--cv6-dark-2); }

/* ── FAQ responsive ─────────────────────────────────────────────────────── */
@media (max-width: 900px) {
    .cv6-faq__list {
        grid-template-columns: 1fr;
        column-gap: 0;
    }
}

@media (max-width: 768px) {
    .cv6-faq { padding-block: 64px 80px; }
    .cv6-faq__head { margin-bottom: 36px; }
    .cv6-faq__title { font-size: 2rem; }
    .cv6-faq__item { padding: 18px 0; }
    .cv6-faq__item[open] { padding: 20px 0 24px; }
}

@media (max-width: 480px) {
    .cv6-faq { padding-block: 48px 72px; }
    .cv6-faq__title { font-size: 1.7rem; }
    .cv6-faq__question { font-size: 0.93rem; }
}
