/* ORDER SUMMARY - SAUDI NATIONAL COLORS */
/* 🇸🇦 Pure Saudi Green (#006C35) + White */
:root {
    /* Saudi Green Shades */
    --order-summary-primary-green: #006C35;
    --order-summary-green-light: #00894a;
    --order-summary-green-dark: #005528;
    --order-summary-green-pale: #e8f5ed;
    
    /* White/Light Shades */
    --order-summary-white: #ffffff;
    --order-summary-off-white: #f8faf8;
    --order-summary-light: #f5f7f5;
    --order-summary-light-medium: #e8ece8;
    
    /* Text Colors */
    --order-summary-text-dark: rgba(0, 0, 0, 0.85);
    --order-summary-text-gray: rgba(0, 0, 0, 0.6);

    /* Gradients - SAUDI GREEN */
    --order-summary-gradient-primary: linear-gradient(135deg, #006C35, #00894a);
    --order-summary-gradient-card: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 248, 0.95));

    /* Shadows - SAUDI GREEN */
    --order-summary-shadow-card: 0 20px 60px rgba(0, 0, 0, 0.08);
    --order-summary-shadow-primary: 0 25px 80px rgba(0, 108, 53, 0.25);

    --order-summary-radius-sm: 8px;
    --order-summary-radius-md: 16px;
    --order-summary-blur-glass: blur(25px);

    --order-summary-transition-bounce: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Section */
.order-summary-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8faf8 50%, #f5f7f5 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    padding: 60px 15px;
}

.order-summary-container {
    width: 100%;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Header */
.order-summary-header {
    text-align: center;
    color: var(--order-summary-text-dark);
    padding: 1rem;
}

.order-summary-icon {
    font-size: 4rem;
    color: var(--order-summary-primary-green);
    margin-bottom: 0.5rem;
}

.order-summary-title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    color: var(--order-summary-text-dark);
}

.order-summary-subtitle {
    font-size: 1rem;
    color: var(--order-summary-text-gray);
    max-width: 500px;
    margin: 0 auto;
}

/* Card */
.order-summary-card {
    background: var(--order-summary-gradient-card);
    backdrop-filter: var(--order-summary-blur-glass);
    box-shadow: var(--order-summary-shadow-card);
    border-radius: var(--order-summary-radius-md);
    padding: 1.5rem;
    color: var(--order-summary-text-dark);
    border: 1px solid rgba(0, 108, 53, 0.15);
}

.order-summary-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.order-summary-card-header h2 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--order-summary-text-dark);
}

.order-summary-status-badge {
    background: var(--order-summary-gradient-primary);
    color: var(--order-summary-white);
    padding: 6px 14px;
    border-radius: var(--order-summary-radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Details */
.order-summary-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.order-summary-detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(0, 108, 53, 0.1);
    padding-bottom: 0.5rem;
}

.order-summary-label {
    font-weight: 500;
    color: var(--order-summary-text-gray);
}

.order-summary-value {
    font-weight: 600;
    color: var(--order-summary-text-dark);
    text-align: right;
}

.order-summary-total .order-summary-label,
.order-summary-total .order-summary-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--order-summary-primary-green);
}

/* Buttons */
.order-summary-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
}

.order-summary-btn {
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    border-radius: var(--order-summary-radius-sm);
    font-weight: 600;
    transition: var(--order-summary-transition-bounce);
    text-align: center;
    min-width: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.order-summary-btn-primary {
    background: var(--order-summary-gradient-primary);
    color: var(--order-summary-white);
    box-shadow: 0 10px 30px rgba(0, 108, 53, 0.3);
}

.order-summary-btn-primary:hover {
    box-shadow: var(--order-summary-shadow-primary);
    transform: translateY(-3px);
}

.order-summary-btn-secondary {
    background: var(--order-summary-white);
    color: var(--order-summary-text-dark);
    border: 1px solid rgba(0, 108, 53, 0.3);
}

.order-summary-btn-secondary:hover {
    background: var(--order-summary-green-pale);
    border-color: var(--order-summary-primary-green);
}

/* Responsive */
@media (max-width: 768px) {
    .order-summary-title {
        font-size: 1.6rem;
    }

    .order-summary-card-header h2 {
        font-size: 1rem;
    }

    .order-summary-detail-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .order-summary-value {
        text-align: left;
        margin-top: 0.25rem;
    }
}

@media (max-width: 480px) {
    .order-summary-icon {
        font-size: 3rem;
    }

    .order-summary-title {
        font-size: 1.4rem;
    }

    .order-summary-btn {
        min-width: 100%;
    }
}