/* ═══════════════════════════════════════════════════════
   Vignette.shop — Design System
   Style: Official, clean, government-grade clarity
   Mobile-first (70% mobile traffic)
   ═══════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Source+Sans+3:wght@400;500;600;700&family=Fraunces:wght@600;700&display=swap');

/* ─── Variables ─────────────────────────────────────── */
:root {
    --color-primary:       #1B6B3A;
    --color-primary-dark:  #145530;
    --color-primary-light: #E8F5ED;
    --color-accent:        #D4A843;
    --color-accent-light:  #FBF5E6;
    --color-text:          #1A1A1A;
    --color-text-muted:    #5C5C5C;
    --color-text-light:    #8A8A8A;
    --color-bg:            #FAFAF8;
    --color-bg-white:      #FFFFFF;
    --color-bg-subtle:     #F3F2EE;
    --color-border:        #E2E0DA;
    --color-border-dark:   #D0CDC5;
    --color-danger:        #C5342E;
    --color-danger-light:  #FEF2F1;
    --color-success:       #1B6B3A;
    --color-success-light: #E8F5ED;
    --color-info:          #2563AA;
    --color-info-light:    #EEF4FB;
    --color-warning:       #92710A;
    --color-warning-light: #FBF5E6;
    --font-body:    'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Fraunces', Georgia, serif;
    --space-xs:  4px;
    --space-sm:  8px;
    --space-md:  16px;
    --space-lg:  24px;
    --space-xl:  40px;
    --space-2xl: 64px;
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --shadow-sm:  0 1px 2px rgba(0,0,0,0.06);
    --shadow-md:  0 2px 8px rgba(0,0,0,0.08);
    --shadow-lg:  0 4px 16px rgba(0,0,0,0.10);
    --max-width: 1120px;
    --header-height: 56px;
}

/* ─── Reset ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text);
    background: var(--color-bg);
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--color-primary); text-decoration: none; }
a:hover { text-decoration: underline; }
ul { list-style: none; }
button, input, select, textarea { font-family: inherit; font-size: inherit; border: none; outline: none; background: none; }

/* ─── Typography ────────────────────────────────────── */
h1, h2, h3 { font-family: var(--font-display); font-weight: 700; line-height: 1.2; color: var(--color-text); }
h1 { font-size: 1.75rem; }
h2 { font-size: 1.375rem; }
h3 { font-size: 1.125rem; }
p  { margin-bottom: var(--space-md); }
.text-muted { color: var(--color-text-muted); }
.text-light { color: var(--color-text-light); }
.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.8125rem; }

/* ─── Layout ────────────────────────────────────────── */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 var(--space-md); }
.section { padding: var(--space-xl) 0; }
.section-sm { padding: var(--space-lg) 0; }
.grid-2 { display: grid; grid-template-columns: 1fr; gap: var(--space-xl); }

/* ─── Trust Bar ─────────────────────────────────────── */
.trust-bar {
    background: var(--color-text);
    color: #fff;
    font-size: 0.75rem;
    padding: 6px 0;
    overflow: hidden;
}
.trust-bar .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: nowrap;
    white-space: nowrap;
}
.trust-bar-item { display: flex; align-items: center; gap: 4px; opacity: 0.9; }
.trust-bar-sep { opacity: 0.3; }
.trust-bar .stars { color: var(--color-accent); letter-spacing: 1px; }

/* Mobile: show only first 2 items */
.trust-bar-item:nth-child(n+6) { display: none; }
.trust-bar-sep:nth-child(n+5) { display: none; }

/* ─── Header ────────────────────────────────────────── */
.header {
    background: var(--color-bg-white);
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: 0;
    z-index: 100;
    height: var(--header-height);
}
.header .container { display: flex; align-items: center; justify-content: space-between; height: 100%; }
.header-logo { font-family: var(--font-body); font-size: 1.125rem; font-weight: 700; color: var(--color-text); letter-spacing: -0.02em; }
.header-logo span { color: var(--color-primary); }
.header-nav {
    display: none;
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--color-bg-white);
    border-bottom: 1px solid var(--color-border);
    flex-direction: column;
    padding: var(--space-md);
    box-shadow: var(--shadow-lg);
    z-index: 99;
}
.header-nav.is-open { display: flex; }
.header-nav a {
    color: var(--color-text-muted);
    font-size: 1rem;
    font-weight: 500;
    padding: var(--space-sm) 0;
    transition: color 0.15s;
}
.header-nav a:hover { color: var(--color-text); text-decoration: none; }
.header-nav a.active { color: var(--color-primary); }
.header-hamburger {
    display: flex;
    width: 24px;
    height: 18px;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    border: none;
    background: none;
}
.header-hamburger span { display: block; height: 2px; background: var(--color-text); border-radius: 1px; }

/* ─── Hero ──────────────────────────────────────────── */
.hero {
    background: linear-gradient(135deg, #1A3026 0%, #1B6B3A 60%, #2A8A4E 100%);
    color: #fff;
    padding: var(--space-xl) 0;
    position: relative;
    overflow: hidden;
}
.hero::after {
    content: '';
    position: absolute;
    top: -50%; right: -20%;
    width: 60%; height: 200%;
    background: radial-gradient(ellipse, rgba(255,255,255,0.04) 0%, transparent 70%);
    pointer-events: none;
}
.hero .container { position: relative; z-index: 2; }
.hero h1 { color: #fff; font-size: 1.75rem; margin-bottom: var(--space-sm); }
.hero-badges { font-size: 0.8125rem; opacity: 0.7; margin-bottom: var(--space-xs); }
.hero-subtitle {
    font-size: 1rem;
    opacity: 0.85;
    margin-bottom: var(--space-lg);
    line-height: 1.7;
}
.hero-split { display: flex; flex-direction: column; gap: var(--space-lg); }
.hero-content { flex: 1; }
.hero-image { display: none; }
.hero-price { display: flex; align-items: baseline; gap: var(--space-sm); margin-bottom: var(--space-md); flex-wrap: wrap; }
.hero-price-current { font-size: 2rem; font-weight: 700; font-family: var(--font-display); }
.hero-price-old { font-size: 1rem; text-decoration: line-through; opacity: 0.5; }
.hero-price-label { font-size: 0.8125rem; opacity: 0.7; width: 100%; }
.hero-checks .check-item { color: rgba(255,255,255,0.8); }

/* Hero product image */
.hero-product-img {
    width: 220px; height: 220px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto;
    position: relative;
}
.hero-product-img img { width: 100%; height: 100%; object-fit: cover; }
.hero-product-placeholder { display: none; }
.hero-product-img.placeholder img { display: none; }
.hero-product-img.placeholder .hero-product-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%; height: 100%;
    background: rgba(255,255,255,0.1);
    border: 3px solid rgba(255,255,255,0.2);
    border-radius: 50%;
}
.hero-product-num { font-size: 3.5rem; font-weight: 700; font-family: var(--font-display); }
.hero-product-label { font-size: 0.8125rem; opacity: 0.7; margin-top: var(--space-xs); }

/* ─── Buttons ───────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 14px 28px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.15s;
    text-decoration: none !important;
    line-height: 1;
}
.btn-primary { background: var(--color-primary); color: #fff; box-shadow: var(--shadow-md); }
.btn-primary:hover { background: var(--color-primary-dark); box-shadow: var(--shadow-lg); transform: translateY(-1px); }
.btn-cta {
    background: var(--color-primary);
    color: #fff;
    box-shadow: 0 2px 12px rgba(27,107,58,0.3);
    font-size: 1rem;
    padding: 16px 32px;
}
.btn-cta:hover { background: var(--color-primary-dark); box-shadow: 0 4px 20px rgba(27,107,58,0.35); transform: translateY(-1px); }
.btn-white { background: #fff; color: var(--color-primary); box-shadow: var(--shadow-md); }
.btn-white:hover { box-shadow: var(--shadow-lg); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--color-primary); border: 1.5px solid var(--color-primary); }
.btn-outline:hover { background: var(--color-primary-light); }
.btn-lg { padding: 16px 36px; }
.btn-block { width: 100%; }

/* ─── Cards ──────────────────────────────────────────── */
.card {
    background: var(--color-bg-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
}

/* ─── USP Grid ──────────────────────────────────────── */
.usp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-md); }
.usp-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--space-md);
    background: var(--color-bg-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
}
.usp-icon {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--color-primary-light);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: var(--space-sm);
    color: var(--color-primary);
}
.usp-title { font-weight: 600; font-size: 0.875rem; margin-bottom: 2px; }
.usp-desc { font-size: 0.75rem; color: var(--color-text-muted); line-height: 1.4; }

/* ─── Check List ────────────────────────────────────── */
.check-list { display: flex; flex-direction: column; gap: var(--space-sm); }
.check-item {
    display: flex; align-items: flex-start; gap: var(--space-sm);
    font-size: 0.9375rem; color: var(--color-text-muted); line-height: 1.4;
}
.check-item::before {
    content: '✓';
    color: var(--color-primary);
    font-weight: 700;
    font-size: 0.875rem;
    flex-shrink: 0;
    margin-top: 1px;
}

/* ─── Price Compare ─────────────────────────────────── */
.price-compare {
    background: var(--color-bg-subtle);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
}
.price-compare-title {
    font-size: 0.75rem; font-weight: 600; color: var(--color-text-light);
    text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: var(--space-md);
}
.price-compare-row {
    display: flex; justify-content: space-between; align-items: center;
    font-size: 0.875rem; padding: 6px 0; color: var(--color-text-muted);
}
.price-compare-row.active { color: var(--color-primary); font-weight: 600; font-size: 0.9375rem; }
.price-compare-row .strike { text-decoration: line-through; color: var(--color-text-light); }

/* ─── Product Cards (Home) ──────────────────────────── */
.product-grid { display: grid; grid-template-columns: 1fr; gap: var(--space-lg); }
.product-card {
    background: var(--color-bg-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: box-shadow 0.2s, transform 0.2s;
}
.product-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.product-card-flag { height: 5px; width: 100%; }
.product-card-flag.de { background: linear-gradient(to right, #000 33%, #DD0000 33%, #DD0000 66%, #FFCC00 66%); }
.product-card-flag.fr { background: linear-gradient(to right, #002395 33%, #FFF 33%, #FFF 66%, #ED2939 66%); }
.product-card-body { padding: var(--space-lg); }
.product-card-img { margin-bottom: var(--space-md); }
.product-card-img img {
    width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: var(--radius-md);
    background: var(--color-bg-subtle);
}
.product-card-name { font-family: var(--font-display); font-size: 1.25rem; margin-bottom: var(--space-sm); }
.product-card-desc { font-size: 0.875rem; color: var(--color-text-muted); margin-bottom: var(--space-md); line-height: 1.6; }
.product-card-price { font-family: var(--font-display); font-size: 1.5rem; color: var(--color-primary); margin-bottom: var(--space-md); }
.product-card-price .old { font-size: 0.875rem; color: var(--color-text-light); text-decoration: line-through; margin-left: var(--space-sm); font-family: var(--font-body); }

/* ─── Form Elements ─────────────────────────────────── */
.form-group { margin-bottom: var(--space-md); }
.form-label { display: block; font-size: 0.875rem; font-weight: 500; color: var(--color-text-muted); margin-bottom: var(--space-xs); }
.form-input {
    width: 100%; height: 48px;
    border: 1.5px solid var(--color-border-dark);
    border-radius: var(--radius-md);
    padding: 0 var(--space-md);
    font-size: 1rem;
    color: var(--color-text);
    background: var(--color-bg-white);
    transition: border-color 0.15s;
    -webkit-appearance: none;
}
.form-input:focus { border-color: var(--color-primary); }
.form-input::placeholder { color: var(--color-text-light); }
.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%238A8A8A' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-md); }

/* ─── Alerts ────────────────────────────────────────── */
.alert { border-radius: var(--radius-md); padding: var(--space-md); font-size: 0.875rem; display: flex; align-items: center; gap: var(--space-sm); }
.alert-warning { background: var(--color-warning-light); border: 1px solid #EDE0B8; color: var(--color-warning); }
.alert-info { background: var(--color-info-light); border: 1px solid #C4D9F0; color: var(--color-info); }
.alert-success { background: var(--color-success-light); border: 1px solid #B7DFBF; color: var(--color-success); }

/* ─── Bundle Selection ──────────────────────────────── */
.bundle-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-md); }
.bundle-card {
    background: var(--color-bg-white);
    border: 2px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    text-align: center;
    cursor: pointer;
    position: relative;
    transition: all 0.2s;
}
.bundle-card:hover { border-color: #B7DFBF; }
.bundle-card.selected { border-color: var(--color-primary); background: var(--color-primary-light); }
.bundle-badge {
    position: absolute; top: -10px; left: 50%; transform: translateX(-50%);
    background: var(--color-primary); color: #fff;
    font-size: 0.625rem; padding: 2px 10px; border-radius: 20px; font-weight: 600; white-space: nowrap;
}
.bundle-name { font-size: 0.8125rem; font-weight: 600; margin: 4px 0 6px; }
.bundle-price { font-size: 1.25rem; font-weight: 700; font-family: var(--font-display); }
.bundle-old { text-decoration: line-through; color: var(--color-text-light); font-size: 0.75rem; }
.bundle-desc { font-size: 0.75rem; color: var(--color-text-muted); margin-top: 4px; }

/* ─── FAQ ───────────────────────────────────────────── */
.faq-category { margin-bottom: var(--space-xl); }
.faq-category-title {
    font-family: var(--font-display); font-size: 1.125rem;
    margin-bottom: var(--space-md); padding-bottom: var(--space-sm); border-bottom: 2px solid var(--color-border);
}
.faq-item { border-bottom: 1px solid var(--color-border); }
.faq-question {
    display: flex; justify-content: space-between; align-items: center;
    padding: var(--space-md) 0; cursor: pointer; font-weight: 500; font-size: 0.9375rem;
    width: 100%; text-align: left; color: var(--color-text);
}
.faq-question::after {
    content: '+'; font-size: 1.25rem; color: var(--color-text-light);
    transition: transform 0.2s; flex-shrink: 0; margin-left: var(--space-md);
}
.faq-item.active .faq-question::after { content: '−'; }
.faq-answer {
    display: none; padding: 0 0 var(--space-md);
    font-size: 0.9375rem; color: var(--color-text-muted); line-height: 1.7;
}
.faq-item.active .faq-answer { display: block; }

/* ─── Review Card ───────────────────────────────────── */
.review-card { background: var(--color-bg-subtle); border-radius: var(--radius-lg); padding: var(--space-lg); }
.review-stars { color: var(--color-accent); font-size: 0.875rem; letter-spacing: 1px; margin-bottom: var(--space-sm); }
.review-text { font-size: 0.875rem; color: var(--color-text-muted); line-height: 1.6; font-style: italic; margin-bottom: var(--space-sm); }
.review-author { font-size: 0.8125rem; color: var(--color-text-light); font-weight: 500; }

/* ─── Contact ───────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: var(--space-xl); }
.contact-info-item { display: flex; gap: var(--space-md); margin-bottom: var(--space-lg); }
.contact-info-icon {
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--color-primary-light); display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; color: var(--color-primary);
}
.contact-info-label { font-weight: 600; font-size: 0.875rem; }
.contact-info-value { font-size: 0.875rem; color: var(--color-text-muted); }

/* ─── Folie image ───────────────────────────────────── */
.folie-image-wrap { text-align: center; }
.folie-img {
    max-width: 200px; margin: 0 auto; border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
}

/* ─── Footer ────────────────────────────────────────── */
.footer {
    background: var(--color-text); color: rgba(255,255,255,0.7);
    padding: var(--space-xl) 0; font-size: 0.875rem;
}
.footer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-lg); }
.footer-brand { font-family: var(--font-body); font-size: 1.125rem; font-weight: 700; color: #fff; margin-bottom: var(--space-md); }
.footer-brand span { color: var(--color-primary); }
.footer-desc { line-height: 1.6; margin-bottom: var(--space-md); font-size: 0.875rem; }
.footer-title { font-weight: 600; color: #fff; margin-bottom: var(--space-sm); font-size: 0.8125rem; text-transform: uppercase; letter-spacing: 0.5px; }
.footer-links { display: flex; flex-direction: column; gap: var(--space-xs); }
.footer-links a { color: rgba(255,255,255,0.6); transition: color 0.15s; font-size: 0.875rem; }
.footer-links a:hover { color: #fff; text-decoration: none; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1); margin-top: var(--space-lg); padding-top: var(--space-md);
    display: flex; justify-content: space-between; align-items: center; font-size: 0.75rem; opacity: 0.5;
}

/* ═══════════════════════════════════════════════════════
   TABLET (≥600px)
   ═══════════════════════════════════════════════════════ */
@media (min-width: 600px) {
    .container { padding: 0 var(--space-lg); }
    .product-grid { grid-template-columns: 1fr 1fr; }
    .contact-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}

/* ═══════════════════════════════════════════════════════
   DESKTOP (≥960px)
   ═══════════════════════════════════════════════════════ */
@media (min-width: 960px) {
    :root { --header-height: 64px; }

    h1 { font-size: 2.25rem; }
    h2 { font-size: 1.625rem; }
    h3 { font-size: 1.25rem; }

    .section { padding: var(--space-2xl) 0; }
    .section-sm { padding: var(--space-xl) 0; }
    .grid-2 { grid-template-columns: 1fr 1fr; }

    /* Trust bar — show all */
    .trust-bar { font-size: 0.8125rem; padding: 8px 0; }
    .trust-bar .container { gap: var(--space-lg); }
    .trust-bar-item:nth-child(n+6) { display: flex; }
    .trust-bar-sep:nth-child(n+5) { display: inline; }

    /* Header — horizontal nav */
    .header-nav {
        display: flex !important;
        position: static;
        flex-direction: row;
        padding: 0;
        box-shadow: none;
        border: none;
        gap: var(--space-lg);
    }
    .header-nav a { font-size: 0.9375rem; padding: 0; }
    .header-hamburger { display: none; }
    .header-logo { font-size: 1.25rem; }

    /* Hero */
    .hero { padding: var(--space-2xl) 0; }
    .hero h1 { font-size: 2.5rem; }
    .hero-subtitle { font-size: 1.125rem; }
    .hero-split { flex-direction: row; align-items: center; gap: var(--space-2xl); }
    .hero-image { display: block; flex-shrink: 0; }
    .hero-price-current { font-size: 2.5rem; }
    .hero-price-label { width: auto; }

    /* USP grid */
    .usp-grid { grid-template-columns: repeat(4, 1fr); }
    .usp-item { padding: var(--space-lg); }
    .usp-icon { width: 48px; height: 48px; margin-bottom: var(--space-md); }
    .usp-title { font-size: 0.9375rem; margin-bottom: var(--space-xs); }
    .usp-desc { font-size: 0.8125rem; }

    /* Bundle */
    .bundle-badge { font-size: 0.6875rem; padding: 3px 12px; }
    .bundle-name { font-size: 0.875rem; }
    .bundle-price { font-size: 1.5rem; }

    /* FAQ */
    .faq-category-title { font-size: 1.25rem; }

    /* Footer */
    .footer { padding: var(--space-2xl) 0 var(--space-xl); }

    /* Checkout desktop */
    .checkout-section { padding: var(--space-xl) 0 var(--space-2xl); }
}

/* ═══════════════════════════════════════════════════════
   CHECKOUT
   ═══════════════════════════════════════════════════════ */
.checkout-trust-bar {
    background: var(--color-primary-light);
    padding: 8px 0;
    font-size: 0.75rem;
    color: var(--color-primary);
    font-weight: 500;
}
.checkout-trust-bar .container {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
    flex-wrap: wrap;
}
.checkout-title {
    font-family: var(--font-display);
    font-size: 1.375rem;
    text-align: center;
    margin-bottom: var(--space-lg);
}
.checkout-section { padding: var(--space-md) 0 var(--space-xl); }

.checkout-step {
    background: var(--color-bg-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    margin-bottom: var(--space-md);
}
.checkout-step-title {
    font-family: var(--font-display);
    font-size: 1.0625rem;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}
.checkout-step-num {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: var(--color-primary);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.8125rem;
    font-family: var(--font-body);
    font-weight: 700;
    flex-shrink: 0;
}
.form-input-license {
    text-align: center;
    background: #FFFBE6;
    border-color: #E0D48B;
}
.form-input-license:focus { border-color: var(--color-primary); background: #fff; }

.checkout-summary {
    background: var(--color-bg-subtle);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    margin-bottom: var(--space-md);
}
.checkout-summary-title {
    font-size: 0.75rem; font-weight: 600; text-transform: uppercase;
    letter-spacing: 0.5px; color: var(--color-text-light);
    margin-bottom: var(--space-md);
}
.checkout-summary-row {
    display: flex; justify-content: space-between;
    font-size: 0.9375rem; padding: 4px 0;
    color: var(--color-text-muted);
}
.checkout-summary-divider {
    height: 1px; background: var(--color-border);
    margin: var(--space-sm) 0;
}
.checkout-summary-total {
    font-weight: 700; font-size: 1.0625rem; color: var(--color-text);
}
.checkout-free { color: var(--color-primary); font-weight: 600; }

.checkout-pay-btn {
    font-size: 1.125rem;
    padding: 18px;
    margin-bottom: var(--space-sm);
}
.checkout-secure {
    text-align: center;
    font-size: 0.75rem;
    color: var(--color-text-light);
    margin-bottom: var(--space-lg);
}
.checkout-usps {
    background: var(--color-bg-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-md) var(--space-lg);
}
.checkout-usps .check-item { font-size: 0.8125rem; }
