:root {
    --primary-color: #2c2c2c;
    --secondary-color: #f8f9fa;
    --accent-pink: #f4c2c2;
    --accent-purple: #d4b5d4;
    --accent-blue: #b5d4e8;
    --accent-green: #c2e8c2;
    --text-dark: #2c2c2c;
    --text-light: #6c757d;
    --text-white: #ffffff;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--secondary-color);
    padding-top: 80px; /* Prevent overlap with fixed navbar */
}

.product-image {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

.order-box {
    background-color: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.order-box h2 {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 2rem;
}

.order-box .text-muted {
    color: var(--text-light) !important;
    font-size: 1rem;
}

.order-box .form-label {
    color: var(--text-dark);
    font-weight: 500;
}

.order-box .btn-primary-custom {
    background-color: var(--text-dark);
    color: var(--text-white);
    border: 2px solid var(--text-dark);
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
}

.order-box .btn-primary-custom:hover {
    background-color: transparent;
    color: var(--text-dark);
    transform: translateY(-2px);
}

.order-box #total-price {
    font-size: 1.2rem;
    color: var(--text-dark);
    font-weight: 600;
}

.order-box .order-id {
    font-weight: bold;
    color: #3e8e41; /* Retained original green for order confirmation */
}

.order-box #order-confirmation {
    background-color: #eafaf1;
    border: 1px solid #b1e0c3;
    padding: 15px;
    border-radius: 10px;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .order-box h2 {
        font-size: 1.5rem;
    }

    .order-box .text-muted {
        font-size: 0.9rem;
    }

    .order-box {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .order-box h2 {
        font-size: 1.25rem;
    }
}
