/* ============================================
   CHECKOUT PAGE - PROFESSIONAL DESIGN
   ============================================ */

.container {
  max-width: 100%;
  padding-left: clamp(24px, 4vw, 64px);
  padding-right: clamp(24px, 4vw, 64px);
}

.checkout-page {
    background: #f8f9fa;
    padding: 50px 0 80px;
    min-height: 100vh;
}

.checkout-page .breadcrumb {
    margin-bottom: 30px;
    font-size: 14px;
    color: #6b7280;
}

.checkout-page .breadcrumb a {
    color: #4b5563;
    text-decoration: none;
}

.checkout-page .breadcrumb a:hover {
    color: #2563eb;
}

.checkout-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    align-items: start;
}

/* ============================================
   LEFT SECTION - REPORT INFO
   ============================================ */

.checkout-main {
    background: #ffffff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.checkout-header {
    margin-bottom: 30px;
}

.checkout-badge {
    display: inline-block;
    background: #10b981;
    color: white;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.checkout-header h1 {
    font-size: 28px;
    font-weight: 700;
    color: #111827;
    line-height: 1.3;
}

/* Report Details Grid */
.report-details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 30px;
}

.detail-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.detail-label {
    font-size: 13px;
    color: #6b7280;
    font-weight: 500;
}

.detail-value {
    font-size: 15px;
    color: #111827;
    font-weight: 600;
}

.section-divider {
    height: 1px;
    background: #e5e7eb;
    margin: 35px 0;
}

/* License Selection */
.license-selection h3 {
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 20px;
}

.license-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.license-card {
    position: relative;
    background: #f9fafb;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    padding: 24px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    cursor: pointer;
}

.license-card:hover {
    border-color: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
}

.license-card.active {
    border-color: #2563eb;
    background: #eff6ff;
}

.license-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 12px;
}

.license-card h4 {
    font-size: 17px;
    font-weight: 700;
    color: #111827;
}

.license-price {
    font-size: 20px;
    font-weight: 700;
    color: #2563eb;
}

.license-card > p {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 16px;
}

.license-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.license-features li {
    font-size: 13px;
    color: #4b5563;
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
}

.license-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
}

.popular-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: #2563eb;
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* What's Included */
.whats-included h3 {
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 20px;
}

.features-grid {
    display: grid;
    gap: 20px;
}

.feature-item {
    display: flex;
    gap: 16px;
}

.feature-item svg {
    flex-shrink: 0;
    color: #10b981;
}

.feature-item strong {
    display: block;
    font-size: 15px;
    color: #111827;
    margin-bottom: 4px;
}

.feature-item p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.5;
}

/* ============================================
   RIGHT SIDEBAR - PURCHASE CARD
   ============================================ */

.purchase-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 32px;
    border: 1px solid #e5e7eb;
}

/* Order Summary */
.order-summary h3 {
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 20px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.summary-item span {
    font-size: 14px;
    color: #6b7280;
}

.summary-item strong {
    font-size: 15px;
    color: #111827;
}

.summary-divider {
    height: 1px;
    background: #e5e7eb;
    margin: 20px 0;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.summary-total span {
    font-size: 15px;
    font-weight: 600;
    color: #4b5563;
}

.total-price {
    font-size: 24px;
    font-weight: 700;
    color: #2563eb;
}

/* Payment Section */
.payment-section {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #e5e7eb;
}

.payment-section h4 {
    font-size: 16px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 16px;
}

.payment-option {
    display: flex;
    align-items: start;
    gap: 12px;
    padding: 14px;
    background: #f9fafb;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    margin-bottom: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.payment-option:hover {
    background: #f3f4f6;
    border-color: #d1d5db;
}

.payment-option input[type="radio"] {
    margin-top: 3px;
    cursor: pointer;
}

.payment-option input[type="radio"]:checked + .payment-details {
    color: #2563eb;
}

.payment-details strong {
    display: block;
    font-size: 14px;
    color: #111827;
    margin-bottom: 3px;
}

.payment-details span {
    display: block;
    font-size: 13px;
    color: #6b7280;
}

/* Buyer Form */
.buyer-form {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #e5e7eb;
}

.buyer-form h4 {
    font-size: 16px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 16px;
}

.buyer-form .form-group {
    margin-bottom: 14px;
}

.buyer-form .form-input {
    width: 100%;
    padding: 12px 14px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.2s ease;
}

.buyer-form .form-input:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.btn-large {
    width: 100%;
    padding: 16px;
    font-size: 16px;
    font-weight: 600;
    margin-top: 8px;
}

/* Trust Badges */
.trust-badges {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #6b7280;
}

.trust-item svg {
    color: #10b981;
}

/* Quick Links */
.quick-links {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.quick-links a {
    text-align: center;
    font-size: 14px;
    color: #6b7280;
    text-decoration: none;
    padding: 10px;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.quick-links a:hover {
    background: #f3f4f6;
    color: #111827;
}

/* Responsive */
@media (max-width: 968px) {
    .checkout-layout {
        grid-template-columns: 1fr;
    }

    .checkout-sidebar {
        position: static;
    }

    .checkout-main {
        padding: 30px 20px;
    }

    .purchase-card {
        padding: 24px;
    }

    .report-details-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .license-options {
        grid-template-columns: 1fr;
    }

    .checkout-header h1 {
        font-size: 24px;
    }
}