/* ==================== PAYMENT PAGES STYLES - ENHANCED ==================== */

/* Common Payment Section */
.payment-section {
    padding: 110px 20px 50px;
    background: #f9fafb;
    min-height: 100vh;
}

.payment-container {
    max-width: 1200px;
    margin: 0 auto;
}

.checkout-container {
    max-width: 800px;
    margin: 0 auto;
}

.result-container {
    max-width: 650px;
    margin: 0 auto;
}

/* Page Header */
.payment-header {
    text-align: center;
    margin-bottom: 3rem;
    animation: fadeInDown 0.6s ease;
}

.payment-header h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
}

.payment-header p {
    font-size: 1.1rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ==================== PRICING PAGE ==================== */

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 3rem;
    animation: fadeInUp 0.6s ease 0.2s backwards;
}

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05), 0 10px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.pricing-card.popular {
    border-color: #2563eb;
    transform: scale(1.05);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.popular-badge {
    position: absolute;
    top: 15px;
    right: -50px;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: white;
    padding: 8px 50px;
    transform: rotate(45deg);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(37, 99, 235, 0.4);
}

.pricing-header {
    text-align: center;
    margin-bottom: 30px;
}

.pricing-level {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
}

.pricing-description {
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.6;
}

.pricing-price {
    text-align: center;
    margin: 30px 0;
    padding: 25px 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 12px;
}

.price-amount {
    font-size: 3rem;
    font-weight: 800;
    color: #1f2937;
    font-family: 'Poppins', sans-serif;
    line-height: 1;
}

.price-currency {
    font-size: 1.5rem;
    vertical-align: super;
    margin-right: 5px;
}

.price-period {
    display: block;
    font-size: 0.9rem;
    color: #6b7280;
    margin-top: 10px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    flex: 1;
}

.pricing-features li {
    padding: 14px 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    color: #4b5563;
    border-bottom: 1px solid #f3f4f6;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li i {
    color: #10b981;
    font-size: 1.1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.pricing-cta {
    margin-top: auto;
    padding-top: 20px;
}

.btn-pricing {
    width: 100%;
    padding: 16px 24px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    border: none;
}

.btn-pricing.primary {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.btn-pricing.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4);
}

.btn-pricing.subscribed {
    background: #10b981;
    color: white;
    cursor: default;
}

.btn-pricing.subscribed:hover {
    transform: none;
}

/* Pricing Info Footer */
.pricing-info {
    text-align: center;
    margin-top: 3rem;
    padding: 30px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    animation: fadeInUp 0.6s ease 0.4s backwards;
}

.pricing-info p {
    color: #6b7280;
    font-size: 1rem;
    line-height: 1.8;
    margin: 0;
}

.pricing-info i {
    color: #2563eb;
    margin: 0 8px;
}

/* ==================== CHECKOUT PAGE ==================== */

.checkout-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05), 0 10px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    animation: fadeInUp 0.6s ease;
}

.checkout-section {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 2px solid #f3f4f6;
}

.checkout-section:last-of-type {
    border-bottom: none;
}

.payment-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Poppins', sans-serif;
}

.payment-title i {
    color: #2563eb;
    font-size: 1.1rem;
}

.order-summary {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-radius: 12px;
    padding: 30px;
    border: 1px solid #bfdbfe;
}

.order-summary h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
}

.order-summary > p {
    color: #4b5563;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.summary-label {
    font-weight: 600;
    color: #4b5563;
    font-size: 0.95rem;
}

.summary-value {
    font-weight: 700;
    color: #1f2937;
    font-size: 1rem;
}

.summary-total {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid rgba(37, 99, 235, 0.2);
}

.summary-total .summary-value {
    font-size: 2rem;
    color: #2563eb;
    font-family: 'Poppins', sans-serif;
}

.order-summary > p:last-of-type {
    margin: 1rem 0 0 0;
    text-align: center;
}

.billing-details {
    display: grid;
    gap: 16px;
}

.detail-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.detail-row:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.detail-row i {
    color: #2563eb;
    width: 24px;
    text-align: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.detail-row strong {
    min-width: 80px;
    color: #6b7280;
    font-weight: 600;
}

.detail-row span {
    color: #1f2937;
    font-weight: 500;
}

.btn-pay {
    width: 100%;
    padding: 18px 24px;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.btn-pay:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4);
}

.btn-pay:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.security-notice {
    margin-top: 20px;
    padding: 20px;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-radius: 12px;
    border: 1px solid #bbf7d0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.security-notice i {
    color: #10b981;
    font-size: 1.3rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.security-notice p {
    color: #065f46;
    font-size: 0.9rem;
    line-height: 1.7;
    margin: 0;
}

/* ==================== SUCCESS/FAILURE PAGES ==================== */

.result-card {
    background: white;
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05), 0 10px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    animation: fadeInUp 0.6s ease;
}

.result-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    position: relative;
}

.result-icon.success {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

.result-icon.error {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    box-shadow: 0 10px 30px rgba(239, 68, 68, 0.3);
}

.result-icon i {
    font-size: 3rem;
    color: white;
}

.result-icon::after {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 3px solid currentColor;
    opacity: 0.3;
    animation: pulse 2s ease infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.1);
        opacity: 0;
    }
}

.result-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
}

.result-message {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 40px;
    line-height: 1.6;
}

.result-details {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    text-align: left;
    border: 1px solid #e5e7eb;
}

.result-details h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
}

.result-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn-result {
    padding: 14px 24px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    border: none;
}

.btn-result.primary {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.btn-result.secondary {
    background: white;
    color: #4b5563;
    border: 2px solid #e5e7eb;
}

.btn-result:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.help-section {
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 30px;
    text-align: left;
    border: 1px solid #fde68a;
}

.help-section h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #92400e;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
}

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

.help-list li {
    padding: 10px 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #78350f;
    font-size: 0.95rem;
    line-height: 1.6;
}

.help-list li i {
    color: #f59e0b;
    margin-top: 2px;
    flex-shrink: 0;
    font-size: 1rem;
}

/* ==================== SUBSCRIPTIONS PAGE ==================== */

.subscriptions-section {
    margin-bottom: 3rem;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    animation: fadeInDown 0.6s ease;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Poppins', sans-serif;
}

.section-title i {
    color: #2563eb;
}

.btn-add-subscription {
    padding: 12px 24px;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.btn-add-subscription:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

/* Enhanced Subscription Cards */
.subscriptions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
    animation: fadeInUp 0.6s ease 0.2s backwards;
}

.subscription-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05), 0 10px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.subscription-card.active {
    border-color: #10b981;
}

.subscription-card.inactive {
    border-color: #9ca3af;
    opacity: 0.85;
}

.subscription-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.subscription-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 5px;
    z-index: 1;
}

.subscription-card.active .subscription-badge {
    background: #10b981;
    color: white;
}

.subscription-card.inactive .subscription-badge {
    background: #9ca3af;
    color: white;
}

.subscription-header {
    padding: 30px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    text-align: center;
    border-bottom: 1px solid #e5e7eb;
}

.subscription-card.inactive .subscription-header {
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
}

.subscription-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
}

.subscription-icon.associate {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.subscription-icon.professional {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
}

.subscription-icon.leader {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.subscription-card.inactive .subscription-icon {
    background: linear-gradient(135deg, #9ca3af 0%, #6b7280 100%);
}

.subscription-level {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

.subscription-details {
    padding: 25px 30px;
    flex: 1;
}

.subscription-details .detail-row {
    margin-bottom: 16px;
}

.subscription-details .detail-row:last-child {
    margin-bottom: 0;
}

.detail-label {
    color: #6b7280;
    min-width: 100px;
    font-weight: 500;
}

.detail-value {
    color: #1f2937;
    font-weight: 600;
    flex: 1;
}

.detail-value.mono {
    font-family: 'Courier New', monospace;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.subscription-actions {
    padding: 20px 30px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-top: 1px solid #e5e7eb;
}

.btn-view-tests {
    width: 100%;
    padding: 12px 20px;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.btn-view-tests:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

/* Payment History Section */
.payment-history-section {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05), 0 10px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    animation: fadeInUp 0.6s ease 0.4s backwards;
}

.table-responsive {
    overflow-x: auto;
    margin: 20px 0 0 0;
}

.payment-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
}

.payment-table thead {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.payment-table th {
    padding: 16px;
    text-align: left;
    font-size: 0.85rem;
    font-weight: 700;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid #e5e7eb;
}

.payment-table td {
    padding: 18px 16px;
    border-bottom: 1px solid #f3f4f6;
    font-size: 0.95rem;
}

.payment-table tbody tr {
    transition: all 0.3s ease;
}

.payment-table tbody tr:hover {
    background: #f9fafb;
}

.date-cell {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.date-primary {
    font-weight: 600;
    color: #1f2937;
}

.date-secondary {
    font-size: 0.8rem;
    color: #9ca3af;
}

.level-badge {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
}

.level-badge.associate {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    color: #065f46;
}

.level-badge.professional {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    color: #1e40af;
}

.level-badge.leader {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    color: #92400e;
}

.amount-cell {
    font-weight: 700;
    color: #1f2937;
    font-size: 1rem;
}

.payment-status {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.payment-status.success {
    background: #d1fae5;
    color: #065f46;
}

.payment-status.failed {
    background: #fee2e2;
    color: #991b1b;
}

.payment-status.pending {
    background: #fef3c7;
    color: #92400e;
}

.payment-id {
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
    color: #6b7280;
    cursor: help;
}

.receipt-number {
    font-size: 0.85rem;
    color: #6b7280;
}

.text-muted {
    color: #9ca3af;
}

/* Empty State */
.empty-state-card {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 16px;
    border: 2px dashed #e5e7eb;
}

.empty-icon {
    font-size: 4rem;
    color: #d1d5db;
    margin-bottom: 20px;
}

.empty-state-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
}

.empty-state-card p {
    color: #6b7280;
    margin-bottom: 25px;
    line-height: 1.6;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==================== RESPONSIVE DESIGN ==================== */

@media (max-width: 968px) {
    .pricing-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .pricing-card.popular {
        transform: none;
    }
    
    .subscriptions-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .section-header {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .payment-section {
        padding: 100px 15px 30px;
    }
    
    .payment-header h1 {
        font-size: 2rem;
    }
    
    .payment-header p {
        font-size: 1rem;
    }
    
    .checkout-card {
        padding: 30px 20px;
    }
    
    .result-card {
        padding: 40px 25px;
    }
    
    .result-title {
        font-size: 1.8rem;
    }
    
    .result-icon {
        width: 80px;
        height: 80px;
    }
    
    .result-icon i {
        font-size: 2.5rem;
    }
    
    .result-icon::after {
        width: 100px;
        height: 100px;
    }
    
    .payment-table {
        font-size: 0.85rem;
    }
    
    .payment-table th,
    .payment-table td {
        padding: 12px 10px;
    }
    
    .payment-history-section {
        padding: 20px;
        margin: 0 -5px;
    }
    
    .subscription-card {
        margin: 0;
    }
    
    .subscription-header {
        padding: 25px 20px;
    }
    
    .subscription-icon {
        width: 70px;
        height: 70px;
        font-size: 2.2rem;
    }
    
    .subscription-level {
        font-size: 1.3rem;
    }
    
    .subscription-details {
        padding: 20px;
    }
    
    .subscription-actions {
        padding: 15px 20px;
    }
}

@media (max-width: 640px) {
    .pricing-grid,
    .subscriptions-grid {
        grid-template-columns: 1fr;
    }
    
    .price-amount {
        font-size: 2.5rem;
    }
    
    .result-actions {
        width: 100%;
    }
    
    .btn-result {
        width: 100%;
    }
    
    .payment-table {
        min-width: 700px;
    }
    
    .table-responsive {
        margin: 20px -20px 0 -20px;
        padding: 0 20px;
    }
    
    .detail-row {
        flex-wrap: wrap;
    }
    
    .detail-row strong {
        min-width: auto;
        width: 100%;
        margin-bottom: 4px;
    }
    
    .payment-title {
        font-size: 1.1rem;
    }
    
    .order-summary {
        padding: 20px;
    }
    
    .order-summary h3 {
        font-size: 1.3rem;
    }
    
    .summary-total .summary-value {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .payment-header h1 {
        font-size: 1.6rem;
    }
    
    .payment-header p {
        font-size: 0.9rem;
    }
    
    .checkout-card {
        padding: 25px 15px;
    }
    
    .result-card {
        padding: 30px 20px;
    }
    
    .pricing-card {
        padding: 30px 20px;
    }
    
    .pricing-level {
        font-size: 1.5rem;
    }
    
    .price-amount {
        font-size: 2rem;
    }
    
    .subscription-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .subscription-level {
        font-size: 1.2rem;
    }
    
    .btn-pricing,
    .btn-pay,
    .btn-result {
        font-size: 0.95rem;
        padding: 14px 20px;
    }
}