/* Checkout Specific Styling */
.checkout-page {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 1rem;
}

.checkout-card {
    background: white;
    width: 100%;
    max-width: 500px;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.checkout-header {
    text-align: center;
    margin-bottom: 2rem;
}

.success-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.checkout-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.order-summary {
    background: #fdf2f4;
    padding: 1rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.summary-item {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.summary-item img {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
}

.item-name {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
}

.item-price {
    font-size: 0.85rem;
    color: #666;
}

.checkout-form .input-group {
    margin-bottom: 1.2rem;
}

.checkout-form label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
    color: #555;
}

.checkout-form input, 
.checkout-form textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #eee;
    border-radius: 8px;
    font-family: inherit;
    background: #fafafa;
}

.payment-info {
    background: #f9f9f9;
    padding: 1rem;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.trust-note {
    font-size: 0.75rem;
    color: #666;
    margin-top: 0.5rem;
}

.btn-whatsapp {
    background: #25D366; /* WhatsApp Green */
    color: white;
    width: 100%;
    font-size: 1rem;
    border: none;
    padding: 1rem;
}

.btn-whatsapp:hover {
    background: #128c7e;
    transform: translateY(-2px);
}

.back-link {
    display: block;
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.8rem;
    color: #888;
    text-decoration: none;
}