:root {
    --bg: #F4F6F8;
    --surface: #FFFFFF;
    --fg: #1A2332;
    --muted: #5C6B7A;
    --navy: #1F3A5F;
    --accent: #C45C26;
    --teal: #2F6F6A;
    --border: #D7DEE7;
    --shadow: 0 2px 8px rgba(31, 58, 95, 0.08);
    --shadow-lg: 0 6px 20px rgba(31, 58, 95, 0.12);
    --radius: 12px;
    --radius-sm: 8px;
    --max: 1200px;
    --font-display: 'Source Serif 4', Georgia, 'Times New Roman', serif;
    --font-body: 'Source Sans 3', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.65;
    color: var(--fg);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: var(--navy);
    text-decoration: underline;
    text-underline-offset: 2px;
}

a:hover {
    color: var(--accent);
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-display);
    color: var(--navy);
    margin: 0 0 0.5em;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2rem, 5vw, 2.75rem);
    line-height: 1.15;
    letter-spacing: -0.01em;
}

h2 {
    font-size: clamp(1.5rem, 3.5vw, 2rem);
}

h3 {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
}

p {
    margin: 0 0 1em;
}

ul,
ol {
    margin: 0 0 1em;
    padding-left: 1.25em;
}

.container {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: clamp(40px, 8vw, 64px) 0;
}

.section-tight {
    padding: clamp(28px, 5vw, 44px) 0;
}

.section-muted {
    background: var(--surface);
}

.lead {
    font-size: 1.15rem;
    color: var(--muted);
    max-width: 60ch;
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    background: var(--accent);
    color: #fff;
    padding: 12px 18px;
    border-radius: 0 0 var(--radius-sm) 0;
    z-index: 2000;
}

.skip-link:focus {
    left: 0;
    color: #fff;
}

:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 2px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    padding: 12px 24px;
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.02em;
    line-height: 1.1;
    border-radius: var(--radius-sm);
    border: 2px solid transparent;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}

.btn-primary {
    background: var(--accent);
    color: #fff;
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    background: color-mix(in srgb, var(--accent) 88%, black);
    color: #fff;
}

.btn-secondary {
    background: transparent;
    color: var(--navy);
    border-color: var(--navy);
}

.btn-secondary:hover {
    background: var(--navy);
    color: #fff;
}

.btn-ghost {
    background: transparent;
    color: var(--navy);
    border-color: var(--border);
}

.btn-ghost:hover {
    background: var(--bg);
    color: var(--navy);
}

.btn-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--surface);
    box-shadow: 0 1px 0 var(--border);
}

.header-inner {
    display: flex;
    align-items: center;
    gap: 16px;
    min-height: 72px;
    padding-top: 10px;
    padding-bottom: 10px;
    flex-wrap: wrap;
}

.site-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--navy);
}

.logo-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--navy);
    color: #fff;
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--navy);
}

.logo-slogan {
    font-size: 0.85rem;
    color: var(--muted);
}

.nav-toggle {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    background: transparent;
    border: 0;
    padding: 8px 10px;
    cursor: pointer;
    color: var(--navy);
    min-height: 48px;
    min-width: 48px;
}

.nav-toggle-bar {
    width: 26px;
    height: 3px;
    background: var(--navy);
    border-radius: 2px;
}

.nav-toggle-label {
    font-size: 0.75rem;
    color: var(--muted);
}

.main-nav {
    display: none;
    flex-basis: 100%;
}

.main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.main-nav a {
    display: inline-block;
    padding: 12px 8px;
    color: var(--navy);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 3px solid transparent;
}

.main-nav a:hover {
    color: var(--accent);
}

.main-nav a.active {
    color: var(--accent);
    border-bottom-color: var(--accent);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: auto;
}

.header-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--navy);
    text-decoration: none;
    font-weight: 600;
}

.header-phone:hover {
    color: var(--accent);
}

.header-cta {
    display: none;
}

@media (min-width: 768px) {
    .nav-toggle {
        display: none;
    }
    .main-nav {
        display: block;
        flex-basis: auto;
    }
    .main-nav ul {
        flex-direction: row;
        gap: 18px;
    }
    .header-cta {
        display: inline-flex;
    }
    .header-phone span {
        display: inline;
    }
}

@media (max-width: 480px) {
    .header-phone span {
        position: absolute;
        width: 1px;
        height: 1px;
        margin: -1px;
        padding: 0;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0;
    }
}

.site-header.nav-open .main-nav {
    display: block;
}

.intro-section {
    background: var(--surface);
    border-bottom: 1px solid var(--border);
}

.intro-inner {
    display: grid;
    gap: 28px;
    padding: clamp(28px, 6vw, 56px) 0;
}

.intro-eyebrow {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--teal);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
}

.intro-text h1 {
    margin-bottom: 0.4em;
}

.intro-text .lead {
    margin-bottom: 1.4em;
}

.intro-image {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4 / 3;
    background: var(--bg);
}

.intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (min-width: 1024px) {
    .intro-inner {
        grid-template-columns: 1.05fr 0.95fr;
        align-items: center;
    }
}

.trust-row {
    display: grid;
    gap: 16px;
    grid-template-columns: 1fr;
    margin: 0;
    padding: 0;
    list-style: none;
}

.trust-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 18px;
}

.trust-icon {
    flex-shrink: 0;
    color: var(--teal);
}

.trust-text strong {
    display: block;
    color: var(--navy);
    font-weight: 600;
}

.trust-text span {
    color: var(--muted);
    font-size: 0.95rem;
}

@media (min-width: 768px) {
    .trust-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .trust-row {
        grid-template-columns: repeat(4, 1fr);
    }
}

.section-heading {
    text-align: center;
    max-width: 60ch;
    margin: 0 auto 32px;
}

.section-heading .lead {
    margin: 0 auto;
}

.product-grid {
    display: grid;
    gap: 22px;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.product-card {
    display: flex;
    flex-direction: column;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: box-shadow 0.15s ease, transform 0.15s ease;
}

.product-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.product-card-media {
    position: relative;
    aspect-ratio: 4 / 3;
    background: var(--bg);
    overflow: hidden;
}

.product-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-card-badges {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 600;
    background: var(--navy);
    color: #fff;
    letter-spacing: 0.02em;
}

.badge-oblubene {
    background: var(--accent);
}

.badge-novinka {
    background: var(--teal);
}

.badge-set {
    background: var(--navy);
}

.product-card-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 18px;
    gap: 8px;
}

.product-card-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--navy);
    margin: 0;
}

.product-card-link {
    text-decoration: none;
    color: inherit;
}

.product-card-link:hover .product-card-title {
    color: var(--accent);
}

.product-card-short {
    color: var(--muted);
    font-size: 0.95rem;
    margin: 0;
    flex: 1;
}

.product-card-price {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-top: 4px;
}

.price-now {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--navy);
}

.price-old {
    color: var(--muted);
    opacity: 0.7;
    font-size: 1rem;
}

.product-card-cta {
    margin-top: 10px;
}

.steps {
    display: grid;
    gap: 22px;
    grid-template-columns: 1fr;
    list-style: none;
    margin: 0;
    padding: 0;
    counter-reset: step;
}

@media (min-width: 768px) {
    .steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .steps {
        grid-template-columns: repeat(4, 1fr);
    }
}

.step-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 22px;
    position: relative;
}

.step-number {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--accent);
    opacity: 0.85;
    line-height: 1;
    margin-bottom: 8px;
}

.step-card h3 {
    margin: 0 0 6px;
    font-size: 1.2rem;
}

.step-card p {
    margin: 0;
    color: var(--muted);
}

.audience-grid {
    display: grid;
    gap: 22px;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .audience-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.audience-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
}

.audience-icon {
    color: var(--teal);
    margin-bottom: 12px;
}

.audience-card h3 {
    margin: 0 0 8px;
}

.audience-card p {
    margin: 0;
    color: var(--muted);
}

.reviews-grid {
    display: grid;
    gap: 22px;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.review-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow);
}

.review-card blockquote {
    margin: 0 0 14px;
    color: var(--fg);
    font-size: 1.02rem;
}

.review-author {
    color: var(--navy);
    font-weight: 600;
}

.review-author span {
    color: var(--muted);
    font-weight: 400;
}

.faq-teaser {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
}

.faq-teaser details {
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
}

.faq-teaser details:last-of-type {
    border-bottom: 0;
}

.faq-teaser summary {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--navy);
    cursor: pointer;
    list-style: none;
    padding-left: 28px;
    position: relative;
}

.faq-teaser summary::-webkit-details-marker {
    display: none;
}

.faq-teaser summary::before {
    content: "+";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
    font-size: 1.2rem;
}

.faq-teaser details[open] summary::before {
    content: "–";
}

.faq-teaser p {
    margin: 8px 0 0;
    color: var(--muted);
}

.cta-band {
    background: var(--navy);
    color: #fff;
    border-radius: var(--radius);
    padding: clamp(28px, 5vw, 44px);
    text-align: center;
}

.cta-band h2 {
    color: #fff;
}

.cta-band p {
    color: rgba(255, 255, 255, 0.85);
    max-width: 60ch;
    margin: 0 auto 20px;
}

.cta-band .btn-primary {
    background: var(--accent);
}

.breadcrumbs {
    font-size: 0.95rem;
    color: var(--muted);
    padding: 16px 0 0;
}

.breadcrumbs ol {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.breadcrumbs li::after {
    content: "/";
    margin-left: 6px;
    color: var(--border);
}

.breadcrumbs li:last-child::after {
    content: "";
}

.breadcrumbs a {
    color: var(--muted);
    text-decoration: none;
}

.breadcrumbs a:hover {
    color: var(--accent);
}

.breadcrumbs [aria-current="page"] {
    color: var(--fg);
}

.filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
}

.filter-btn {
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--navy);
    padding: 10px 18px;
    border-radius: 999px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    min-height: 44px;
}

.filter-btn:hover {
    border-color: var(--navy);
}

.filter-btn.active {
    background: var(--navy);
    color: #fff;
    border-color: var(--navy);
}

.product-detail {
    display: grid;
    gap: 32px;
    grid-template-columns: 1fr;
    align-items: start;
}

@media (min-width: 1024px) {
    .product-detail {
        grid-template-columns: 1fr 1fr;
    }
}

.product-detail-media {
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--bg);
    aspect-ratio: 4 / 3;
    box-shadow: var(--shadow);
}

.product-detail-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-detail-title {
    margin: 0 0 8px;
}

.product-detail-price {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin: 0 0 20px;
}

.product-detail-price .price-now {
    font-size: 1.8rem;
}

.product-detail-desc {
    color: var(--fg);
    margin-bottom: 24px;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 24px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.specs-table th,
.specs-table td {
    padding: 12px 14px;
    text-align: left;
    border-bottom: 1px solid var(--border);
    vertical-align: top;
}

.specs-table tr:last-child th,
.specs-table tr:last-child td {
    border-bottom: 0;
}

.specs-table th {
    background: var(--bg);
    color: var(--navy);
    font-weight: 600;
    width: 40%;
}

.variant-select,
.form-input,
.form-textarea,
.form-select {
    width: 100%;
    min-height: 48px;
    font-size: 18px;
    padding: 10px 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    color: var(--fg);
    background: var(--surface);
}

.form-textarea {
    min-height: 140px;
    resize: vertical;
}

.form-label {
    display: block;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 6px;
}

.form-group {
    margin-bottom: 18px;
}

.form-row {
    display: grid;
    gap: 18px;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .form-row.cols-2 {
        grid-template-columns: 1fr 1fr;
    }
    .form-row.cols-3 {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

.form-error {
    color: #B23A2A;
    font-size: 0.92rem;
    margin-top: 4px;
    display: block;
}

.field-error .form-input,
.field-error .form-textarea,
.field-error .form-select {
    border-color: #B23A2A;
}

.choice-list {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.choice {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 12px 14px;
    background: var(--surface);
    cursor: pointer;
}

.choice input {
    margin-top: 4px;
    min-width: 18px;
    min-height: 18px;
}

.choice:hover {
    border-color: var(--navy);
}

.choice-text strong {
    display: block;
    color: var(--navy);
}

.choice-text span {
    color: var(--muted);
    font-size: 0.95rem;
}

.form-success {
    background: #E8F2EE;
    border: 1px solid var(--teal);
    color: var(--teal);
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
}

.honeypot {
    position: absolute;
    left: -9999px;
    top: 0;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.consent-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.consent-row input {
    margin-top: 6px;
    min-width: 18px;
    min-height: 18px;
}

.form-grid {
    display: grid;
    gap: 32px;
    grid-template-columns: 1fr;
}

@media (min-width: 1024px) {
    .form-grid {
        grid-template-columns: 1fr 1.4fr;
    }
}

.contact-info {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
}

.contact-info dl {
    margin: 0;
}

.contact-info dt {
    font-weight: 600;
    color: var(--navy);
    margin-top: 12px;
}

.contact-info dt:first-child {
    margin-top: 0;
}

.contact-info dd {
    margin: 0;
    color: var(--muted);
}

.map-placeholder {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--bg);
    padding: 24px;
    margin-top: 24px;
    text-align: center;
}

.faq-list {
    display: grid;
    gap: 12px;
}

.faq-list details {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 16px 20px;
}

.faq-list summary {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--navy);
    cursor: pointer;
    list-style: none;
    padding-left: 28px;
    position: relative;
    font-size: 1.08rem;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary::before {
    content: "+";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
    font-size: 1.3rem;
}

.faq-list details[open] summary::before {
    content: "–";
}

.faq-list p {
    margin: 10px 0 0;
    color: var(--muted);
}

.delivery-table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.delivery-table th,
.delivery-table td {
    padding: 14px;
    text-align: left;
    border-bottom: 1px solid var(--border);
    vertical-align: top;
}

.delivery-table th {
    background: var(--navy);
    color: #fff;
}

.delivery-table tr:last-child td {
    border-bottom: 0;
}

.delivery-table tr:nth-child(even) td {
    background: var(--bg);
}

.prose {
    max-width: 70ch;
}

.prose h2 {
    margin-top: 1.5em;
}

.prose h3 {
    margin-top: 1.2em;
}

.prose ul,
.prose ol {
    color: var(--fg);
}

.cookie-banner[hidden] {
    display: none;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--surface);
    box-shadow: 0 -6px 20px rgba(31, 58, 95, 0.15);
    padding: 18px 0;
    z-index: 1000;
    border-top: 1px solid var(--border);
}

.cookie-inner {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
}

.cookie-banner p {
    margin: 0;
    flex: 1;
    min-width: 260px;
}

.site-footer {
    background: var(--surface);
    border-top: 1px solid var(--border);
    padding: clamp(36px, 6vw, 56px) 0 24px;
    margin-top: clamp(36px, 6vw, 56px);
}

.footer-grid {
    display: grid;
    gap: 28px;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.footer-heading {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--navy);
    margin: 0 0 12px;
}

.footer-address {
    font-style: normal;
    color: var(--muted);
    margin: 0 0 8px;
}

.footer-line {
    margin: 0 0 6px;
    color: var(--muted);
}

.footer-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-list li {
    margin-bottom: 8px;
}

.footer-list a,
.footer-line a,
.footer-address a {
    color: var(--muted);
    text-decoration: none;
}

.footer-list a:hover,
.footer-line a:hover {
    color: var(--accent);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    margin-top: 28px;
    padding-top: 18px;
    color: var(--muted);
    font-size: 0.92rem;
}

.footer-bottom p {
    margin: 0;
}

.notfound-wrap {
    text-align: center;
    padding: clamp(40px, 8vw, 80px) 0;
}

.notfound-code {
    font-family: var(--font-display);
    font-size: clamp(3rem, 12vw, 6rem);
    color: var(--accent);
    line-height: 1;
    margin: 0 0 8px;
}

.tagline-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1em;
    display: grid;
    gap: 8px;
}

.tagline-list li {
    padding-left: 26px;
    position: relative;
}

.tagline-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 14px;
    height: 2px;
    background: var(--accent);
}

.related-title {
    font-size: 1.4rem;
    margin: 32px 0 18px;
}

.order-summary {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    margin-bottom: 22px;
}

.order-summary dl {
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 16px;
}

.order-summary dt {
    color: var(--muted);
}

.order-summary dd {
    margin: 0;
    color: var(--navy);
    font-weight: 600;
    text-align: right;
}

.step-flow {
    list-style: none;
    counter-reset: flow;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 16px;
}

.step-flow li {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 18px 20px 18px 64px;
    position: relative;
    counter-increment: flow;
}

.step-flow li::before {
    content: counter(flow, decimal-leading-zero);
    position: absolute;
    left: 18px;
    top: 18px;
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--accent);
}

.step-flow h3 {
    margin: 0 0 4px;
    font-size: 1.1rem;
}

.step-flow p {
    margin: 0;
    color: var(--muted);
}

.about-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
}

.values-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: 1fr;
    margin-top: 16px;
}

@media (min-width: 768px) {
    .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.value-item {
    background: var(--bg);
    border-radius: var(--radius);
    padding: 18px;
}

.value-item h3 {
    margin: 0 0 6px;
    font-size: 1.1rem;
}

.value-item p {
    margin: 0;
    color: var(--muted);
}
