/* Checkout Page Styles */

.checkout-card {
    max-width: 600px;
}

.order-summary {
    background: var(--primary-light);
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.order-summary h3 {
    margin-bottom: 1rem;
    color: var(--dark);
}

.order-items {
    margin-bottom: 1rem;
}

.order-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(10, 92, 62, 0.1);
}

.order-item:last-child {
    border-bottom: none;
}

.item-name {
    color: var(--dark);
}

.item-price {
    font-weight: 600;
    color: var(--primary);
}

.order-total {
    display: flex;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 2px solid rgba(10, 92, 62, 0.2);
    font-size: 1.2rem;
    font-weight: 700;
}

.total-amount {
    color: var(--primary);
    font-size: 1.4rem;
}

.payment-instructions {
    background: white;
    border: 2px solid var(--primary);
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.payment-instructions h3 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.account-info {
    background: var(--light);
    padding: 1.5rem;
    border-radius: 10px;
}

.account-row {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.account-row:last-child {
    border-bottom: none;
}

.account-row .label {
    color: var(--gray);
}

.account-row .value {
    font-weight: 600;
    color: var(--dark);
}

.account-row.highlight {
    background: var(--primary);
    margin: 1rem -1.5rem -1.5rem;
    padding: 1rem 1.5rem;
    border-radius: 0 0 10px 10px;
}

.account-row.highlight .label,
.account-row.highlight .value {
    color: white;
}

.account-row.highlight .value {
    font-size: 1.3rem;
}

.account-number {
    font-size: 1.4rem;
    letter-spacing: 2px;
    color: var(--primary);
}

.payment-note {
    margin-top: 1.5rem;
    padding: 1rem;
    background: #fff9e6;
    border-radius: 10px;
    display: flex;
    gap: 0.75rem;
}

.payment-note i {
    color: var(--secondary);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.payment-note p {
    margin: 0;
    color: var(--dark);
    font-size: 0.9rem;
    line-height: 1.5;
}

.checkout-notification {
    background: #e8f4fd;
    border: 1px solid #b8daff;
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkout-notification i {
    color: #004085;
    font-size: 1.3rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.checkout-notification p {
    margin: 0;
    color: #004085;
    font-size: 0.9rem;
    line-height: 1.5;
}

.checkout-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.checkout-actions .btn {
    flex: 0 0 auto;
    padding: 0.8rem 1.5rem;
    white-space: nowrap;
}

.btn-whatsapp {
    background: #25D366;
    color: white;
}

.btn-whatsapp:hover {
    background: #128C7E;
    color: white;
}

@media (max-width: 480px) {
    .checkout-actions {
        flex-direction: column;
    }
    
    .checkout-actions .btn {
        max-width: 100%;
    }
}

@media (max-width: 600px) {
    .checkout-actions {
        flex-wrap: wrap;
    }
    
    .checkout-actions .btn {
        flex: 1 1 100%;
        max-width: 100%;
    }
}
