/* --- ORDER PAGE SPECIFIC --- */

/* 1. Step Animations */
.step-section {
    animation: fadeIn 0.4s ease-out;
}

/* 2. Parcel Type Radio Cards (The big buttons) */
.btn-check + .btn-outline-danger {
    border: 2px solid #E5E7EB;     /* Gray border by default */
    color: var(--text-muted);      /* Gray text */
    background: #fff;              /* White background */
    transition: all 0.2s ease;
    box-shadow: none;
}

.btn-check:checked + .btn-outline-danger {
    background-color: #FEF2F2 !important; /* Very light red background */
    color: var(--primary-red) !important; /* Red Text */
    border-color: var(--primary-red) !important; /* Red Border */
    box-shadow: 0 4px 12px rgba(216, 6, 33, 0.15) !important; /* Red Glow */
    transform: translateY(-2px);
}

.btn-check + .btn-outline-danger:hover {
    border-color: #FECACA; /* Light pink border on hover */
    background: #FFFAFA;
}

/* 3. Upload Zone Fix */
.upload-zone {
    border: 2px dashed #E5E7EB;
    border-radius: var(--radius-md);
    padding: 30px;
    text-align: center;
    background: #F9FAFB;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}
.upload-zone:hover {
    border-color: var(--primary-red);
    background: rgba(216, 6, 33, 0.02);
}
/* assets/css/style.css */

/* --- 1. VARIABLES & RESET --- */
:root {
    --primary-red: #D80621;       /* Canada Red */
    --primary-hover: #b9051c;
    --bg-body: #F3F5F9;           /* Cool Gray Background */
    --text-main: #111827;         /* Deep Black-Blue */
    --text-muted: #6B7280;        /* Muted Gray */
    --radius-lg: 20px;
    --radius-md: 12px;
}

body {
    background-color: var(--bg-body);
    font-family: 'Manrope', sans-serif;
    color: var(--text-main);
    padding-bottom: 90px; /* Space for bottom nav */
    -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; }

/* --- 2. TYPOGRAPHY --- */
h1, h2, h3, .brand-text {
    color: var(--primary-red) !important;
    font-weight: 800;
}
.highlight-red { color: var(--text-main); font-weight: 800; }

/* --- 3. COMPONENTS: HEADER --- */
.glass-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 18px 24px;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

/* --- 4. COMPONENTS: CARDS --- */
.pro-card {
    background: #fff;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,0.8);
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.04);
    margin-bottom: 24px;
    overflow: hidden;
}

/* --- 5. COMPONENTS: INPUTS --- */
.pro-input, .pro-select {
    border: 2px solid #E5E7EB;
    border-radius: var(--radius-md);
    padding: 14px 16px;
    font-size: 0.95rem;
    font-weight: 500;
    width: 100%;
    background: #fff;
    transition: all 0.2s ease;
}
.pro-input:focus, .pro-select:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 4px rgba(216, 6, 33, 0.1);
}

/* --- 6. COMPONENTS: BOTTOM NAV --- */
.bottom-nav {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: #fff;
    padding: 12px 0 24px;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.03);
    display: flex;
    justify-content: space-around;
    z-index: 1000;
    border-top: 1px solid #f0f0f0;
}
.nav-item {
    text-align: center;
    color: #9CA3AF;
    font-size: 0.65rem;
    font-weight: 700;
    width: 25%;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: 0.2s;
}
.nav-item i { display: block; font-size: 1.3rem; margin-bottom: 5px; }
.nav-item.active { color: var(--primary-red); }

/* --- 7. HOME SPECIFIC (Slider & Grid) --- */
.hero-slider {
    margin-top: 20px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 15px 35px -5px rgba(0, 0, 0, 0.05);
    background: #fff;
    margin-bottom: 30px;
}
.carousel-item { padding: 25px 20px 35px; text-align: center; }
.img-placeholder {
    width: 180px; height: 180px;
    background-color: #f8f9fa;
    border-radius: 20px;
    margin: 0 auto 20px;
    display: flex; align-items: center; justify-content: center;
    color: #ccc; border: 2px dashed #e9ecef;
}
.cat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    padding: 0 5px;
}
.cat-item {
    background: #fff;
    border-radius: 16px;
    padding: 15px 5px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
    color: var(--text-main);
    display: flex; flex-direction: column; align-items: center;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    animation: fadeInUp 0.6s ease-out backwards;
}
.cat-item:active, .cat-item:hover { 
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(216, 6, 33, 0.15);
}
.cat-icon {
    font-size: 1.2rem; margin-bottom: 8px;
    color: var(--primary-red);
    background: rgba(216, 6, 33, 0.08);
    width: 40px; height: 40px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
}
.section-header {
    font-size: 0.85rem; font-weight: 800;
    text-transform: uppercase; letter-spacing: 1px;
    color: var(--text-muted); margin: 0 0 15px 5px;
    animation: fadeIn 1s ease-out;
}

/* Animations */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
/* Animation Delays */
.cat-item:nth-child(1) { animation-delay: 0.1s; }
.cat-item:nth-child(2) { animation-delay: 0.15s; }
.cat-item:nth-child(3) { animation-delay: 0.2s; }
.cat-item:nth-child(4) { animation-delay: 0.25s; }
.cat-item:nth-child(5) { animation-delay: 0.3s; }
.cat-item:nth-child(6) { animation-delay: 0.35s; }
.cat-item:nth-child(7) { animation-delay: 0.4s; }
.cat-item:nth-child(8) { animation-delay: 0.45s; }
