.page-header {
    padding: 160px 0 60px;
    background-color: var(--bg-alt);
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.checkout-section {
    padding: 60px 0 100px;
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.order-summary,
.lead-form-container {
    background: var(--bg-white);
    border-radius: var(--radius-3xl);
    padding: 2.5rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
}

.order-summary h2 {
    font-size: 1.5rem;
    text-align: left;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

.checkout-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.checkout-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.checkout-item-img {
    width: 100px;
    height: 100px;
    background: var(--bg-alt);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    flex-shrink: 0;
}

.checkout-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.checkout-item-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.checkout-item-info h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.lead-form-container h2 {
    font-size: 1.5rem;
    text-align: left;
    margin-bottom: 0.5rem;
}

.lead-form-container p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.form-control {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background-color: var(--bg-alt);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-light);
    background-color: var(--bg-white);
}

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

.theme-privacy-check {
    align-items: flex-start;
    color: var(--text-muted);
    display: flex;
    font-size: 0.92rem;
    gap: 10px;
    line-height: 1.5;
    margin: 0 0 1.5rem;
}

.theme-privacy-check input {
    accent-color: #f9c123;
    appearance: none;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 5px;
    cursor: pointer;
    flex: 0 0 18px;
    height: 18px;
    margin: 3px 0 0;
    min-height: 18px;
    min-width: 18px;
    padding: 0;
    position: relative;
    width: 18px;
}

.theme-privacy-check input:checked {
    background: var(--primary);
    border-color: var(--primary);
}

.theme-privacy-check input:checked::after {
    border: solid #111827;
    border-width: 0 2px 2px 0;
    content: "";
    height: 9px;
    left: 6px;
    position: absolute;
    top: 2px;
    transform: rotate(45deg);
    width: 4px;
}

.theme-privacy-check input:focus-visible {
    box-shadow: 0 0 0 3px var(--primary-light);
    outline: none;
}

.theme-privacy-check span {
    flex: 1;
    min-width: 0;
}

.theme-privacy-check a {
    color: var(--text-main);
    font-weight: 700;
    text-decoration: underline;
}

.empty-state {
    text-align: center;
    padding: 3rem 0;
    color: var(--text-muted);
}

.empty-state i {
    width: 64px;
    height: 64px;
    margin-bottom: 1rem;
    color: var(--border);
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    margin-top: 1rem;
    justify-content: center;
}

@media (max-width: 992px) {
    .checkout-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .order-summary {
        order: 2;
    }

    .lead-form-container {
        order: 1;
    }
}
