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

    /* Gradients - SAUDI GREEN */
    --order-confirm-gradient-primary: linear-gradient(135deg, #006C35, #00894a);
    --order-confirm-gradient-secondary: linear-gradient(135deg, #f8faf8, #ffffff);
    --order-confirm-gradient-glass: linear-gradient(
        135deg,
        rgba(0, 108, 53, 0.08),
        rgba(0, 137, 74, 0.04)
    );
    --order-confirm-gradient-overlay: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.95),
        rgba(248, 250, 248, 0.9)
    );
    --order-confirm-gradient-card: linear-gradient(
        145deg,
        rgba(255, 255, 255, 0.98),
        rgba(248, 250, 248, 0.95)
    );

    /* Shadows - SAUDI GREEN */
    --order-confirm-shadow-glow: 0 0 50px rgba(0, 108, 53, 0.2);
    --order-confirm-shadow-card: 0 20px 60px rgba(0, 0, 0, 0.08);
    --order-confirm-shadow-hover: 0 30px 80px rgba(0, 108, 53, 0.15);
    --order-confirm-shadow-primary: 0 25px 80px rgba(0, 108, 53, 0.25);
    --order-confirm-shadow-secondary: 0 15px 50px rgba(0, 0, 0, 0.1);

    --order-confirm-transition-smooth: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --order-confirm-transition-bounce: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);

    --order-confirm-radius-sm: 8px;
    --order-confirm-radius-md: 16px;
    --order-confirm-radius-lg: 24px;
    --order-confirm-radius-xl: 32px;

    --order-confirm-blur-glass: blur(25px);
}

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

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

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

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

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

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

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

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

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

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

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

.order-confirm-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-confirm-label {
    font-weight: 500;
    color: var(--order-confirm-text-gray);
}

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

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

.order-confirm-btn {
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    border-radius: var(--order-confirm-radius-sm);
    font-weight: 600;
    transition: var(--order-confirm-transition-bounce);
    text-align: center;
    min-width: 180px;
}

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

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

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

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

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

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

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

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

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

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

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