/* =============================================
   FreshMart - Main Stylesheet
   Color Palette: Primary #1565C0 (Blue), #0D47A1, #1976D2
   Font: Poppins (Google Fonts)
   ============================================= */

/* ---- CSS Variables ---- */
:root {
    --primary: #1565C0;
    --primary-dark: #0D47A1;
    --primary-light: #1976D2;
    --primary-xlight: #42A5F5;
    --primary-bg: #F0F6FF;
    --accent: #E65100;
    --accent2: #FFA000;
    --dark: #1A1A2E;
    --text-muted: #6B7280;
    --border: #E5E7EB;
    --white: #FFFFFF;
    --shadow: 0 4px 24px rgba(21, 101, 192, 0.10);
    --shadow-lg: 0 8px 40px rgba(21, 101, 192, 0.16);
    --radius: 16px;
    --radius-sm: 10px;
    --radius-pill: 50px;
    --transition: 0.25s cubic-bezier(.4,0,.2,1);
}

/* ---- Base ---- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Poppins', sans-serif;
    background-color: #F4F8FF;
    color: var(--dark);
    font-size: 15px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
h1,h2,h3,h4,h5,h6 { font-weight: 700; color: var(--dark); }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; }

/* ---- Announcement Bar ---- */
.announcement-bar { font-size: 13px; }

/* ---- Navbar ---- */
#mainNavbar {
    padding: 12px 0;
    transition: box-shadow var(--transition), padding var(--transition);
    z-index: 999;
}
#mainNavbar.scrolled { box-shadow: var(--shadow); padding: 8px 0; }

.brand-logo-circle {
    width: 38px; height: 38px;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
    box-shadow: 0 4px 12px rgba(21,101,192,.3);
    flex-shrink: 0;
}
.brand-name {
    font-size: 20px; font-weight: 800;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.3px;
}

/* Search Form */
.search-form { max-width: 380px; }
.search-form .input-group { border-radius: var(--radius-pill); overflow: hidden; border: 2px solid var(--border); transition: border-color var(--transition); }
.search-form .input-group:focus-within { border-color: var(--primary); }
.search-icon { background: #fff; border: none; padding-left: 14px; padding-right: 8px; }
.search-input { border: none; padding: 10px 12px; font-size: 13px; font-family: 'Poppins', sans-serif; }
.search-input:focus { box-shadow: none; border: none; outline: none; }
.search-btn { background: var(--primary); color: #fff; border: none; padding: 10px 20px; font-size: 13px; font-weight: 600; transition: background var(--transition); border-radius: 0 var(--radius-pill) var(--radius-pill) 0; }
.search-btn:hover { background: var(--primary-dark); color: #fff; }

/* Location Pill */
.location-pill {
    background: var(--primary-bg);
    border-radius: var(--radius-pill);
    padding: 6px 14px;
    cursor: pointer;
    font-size: 13px;
    border: 1px solid rgba(21,101,192,.1);
}

/* Nav Icon Buttons */
.nav-icon-btn {
    width: 40px; height: 40px;
    border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    color: var(--dark) !important;
    font-size: 16px;
    position: relative;
    transition: background var(--transition), color var(--transition);
}
.nav-icon-btn:hover { background: var(--primary-bg); color: var(--primary) !important; }
@media (max-width: 991px) {
    .nav-icon-btn { width: auto; height: auto; border-radius: 0; padding: 8px 0; justify-content: flex-start; }
}

/* Cart Badge */
.cart-badge {
    position: absolute; top: 0; right: 0;
    background: #EF4444; color: #fff;
    width: 16px; height: 16px;
    border-radius: 50%;
    font-size: 9px; font-weight: 700;
    display: none; align-items: center; justify-content: center;
    border: 2px solid #fff;
}

/* Mobile Search */
.mobile-search .input-group { border-radius: var(--radius-sm); overflow: hidden; border: 1.5px solid var(--border); }
.mobile-search .input-group:focus-within { border-color: var(--primary); }

/* ---- Hero Section ---- */
.hero-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
    min-height: 480px;
    position: relative;
    overflow: hidden;
    display: flex; align-items: center;
}
.hero-section::before {
    content: '';
    position: absolute; top: -40%; right: -10%;
    width: 600px; height: 600px;
    background: rgba(255,255,255,.05);
    border-radius: 50%;
    pointer-events: none;
}
.hero-section::after {
    content: '';
    position: absolute; bottom: -50%; left: -5%;
    width: 400px; height: 400px;
    background: rgba(255,255,255,.04);
    border-radius: 50%;
    pointer-events: none;
}
.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,.25);
    border-radius: var(--radius-pill);
    padding: 6px 18px; font-size: 12px; color: #fff;
    font-weight: 600; letter-spacing: 0.5px; margin-bottom: 18px;
    animation: fadeInDown .6s ease both;
}
.hero-title {
    font-size: clamp(28px, 5vw, 54px);
    font-weight: 900; color: #fff; line-height: 1.1;
    animation: fadeInUp .6s .1s ease both;
}
.hero-title span { color: var(--accent2); }
.hero-subtitle {
    font-size: 16px; color: rgba(255,255,255,.85);
    max-width: 440px; margin-bottom: 32px;
    animation: fadeInUp .6s .2s ease both;
}
.hero-btn-group { animation: fadeInUp .6s .3s ease both; }
.hero-btn-primary {
    background: #fff; color: var(--primary);
    border: none; border-radius: var(--radius-pill);
    padding: 14px 32px; font-size: 15px; font-weight: 700;
    box-shadow: 0 8px 24px rgba(0,0,0,.15);
    transition: transform var(--transition), box-shadow var(--transition);
}
.hero-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(0,0,0,.2); }
.hero-btn-outline {
    background: transparent; color: #fff;
    border: 2px solid rgba(255,255,255,.5); border-radius: var(--radius-pill);
    padding: 12px 28px; font-size: 15px; font-weight: 600;
    transition: all var(--transition);
}
.hero-btn-outline:hover { background: rgba(255,255,255,.15); border-color: #fff; }
.hero-stats {
    display: flex; gap: 32px; margin-top: 40px;
    animation: fadeInUp .6s .4s ease both;
}
.hero-stat { text-align: center; }
.hero-stat-num { font-size: 24px; font-weight: 800; color: #fff; }
.hero-stat-label { font-size: 11px; color: rgba(255,255,255,.7); font-weight: 500; }
.hero-image-wrap {
    position: relative;
    animation: float 3s ease-in-out infinite alternate;
}
@keyframes float { from { transform: translateY(0); } to { transform: translateY(-20px); } }

/* ---- Banner Carousel ---- */
.banner-card {
    border-radius: 20px; overflow: hidden;
    position: relative; height: 200px;
    box-shadow: var(--shadow);
    transition: transform var(--transition);
}
.banner-card:hover { transform: translateY(-4px); }
.banner-card .banner-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,.7), transparent);
}
.banner-card .banner-content {
    position: absolute; left: 22px; top: 50%;
    transform: translateY(-50%);
}
.banner-tag {
    display: inline-block; border-radius: 6px;
    padding: 3px 10px; font-size: 10px; font-weight: 700;
    letter-spacing: 1px; color: #fff; margin-bottom: 8px;
}
.banner-title { font-size: 22px; font-weight: 800; color: #fff; line-height: 1.2; }
.banner-sub { font-size: 13px; color: rgba(255,255,255,.85); margin-bottom: 10px; }
.banner-cta {
    background: #fff; color: var(--dark);
    border: none; border-radius: 8px;
    padding: 7px 16px; font-size: 12px; font-weight: 700;
    cursor: pointer; transition: background var(--transition);
}
.banner-cta:hover { background: var(--primary-bg); }

/* ---- Section Titles ---- */
.section-label {
    font-size: 11px; font-weight: 700; letter-spacing: 2px;
    color: var(--primary); text-transform: uppercase; margin-bottom: 4px;
}
.section-title { font-size: clamp(20px, 3vw, 30px); font-weight: 800; margin-bottom: 0; }
.section-desc { color: var(--text-muted); max-width: 500px; }

/* ---- Category Cards ---- */
.category-card {
    background: #fff;
    border-radius: 20px;
    text-align: center; cursor: pointer;
    transition: all var(--transition);
    border: 1px solid #e5e7eb;
    position: relative; overflow: hidden;
    height: 200px;
    display: flex;
    flex-direction: column;
}
.category-card::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(21,101,192,0.05), rgba(102,126,234,0.08));
    opacity: 0; transition: opacity var(--transition);
    z-index: 0;
}
.category-card:hover, .category-card.active {
    border-color: #667eea;
    transform: translateY(-8px);
}
.category-card:hover::before, .category-card.active::before { opacity: 1; }
.category-emoji { font-size: 38px; margin-bottom: 8px; display: block; }
.category-name { font-size: 14px; font-weight: 700; color: var(--dark); margin: 0; text-transform: capitalize; }
.category-count { font-size: 12px; color: #667eea; font-weight: 600; background: linear-gradient(135deg, rgba(102,126,234,0.1), rgba(118,75,162,0.1)); padding: 4px 12px; border-radius: 20px; display: inline-block; }

/* ---- Product Cards ---- */
.product-card {
    background: #fff;
    border-radius: var(--radius); overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,.06);
    transition: all var(--transition);
    position: relative;
    height: 100%;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.product-img-wrap {
    position: relative; height: 180px; overflow: hidden;
    background: var(--primary-bg);
}
.product-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.product-card:hover .product-img-wrap img { transform: scale(1.06); }
.product-badge {
    position: absolute; top: 10px; left: 10px;
    background: var(--primary); color: #fff;
    border-radius: 6px; padding: 2px 10px;
    font-size: 10px; font-weight: 700; letter-spacing: 0.5px;
}
.product-badge.fresh { background: #10B981; }
.product-badge.sale { background: var(--accent); }
.product-wishlist {
    position: absolute; top: 10px; right: 10px;
    width: 32px; height: 32px; background: rgba(255,255,255,.9);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: all var(--transition);
    border: none;
    color: var(--text-muted);
}
.product-wishlist:hover, .product-wishlist.active { background: #FEF2F2; color: #EF4444; transform: scale(1.1); }
.product-body { padding: 14px; }
.product-category { font-size: 11px; font-weight: 600; color: var(--primary); text-transform: uppercase; letter-spacing: 0.5px; }
.product-name { font-size: 14px; font-weight: 700; color: var(--dark); margin: 4px 0 2px; line-height: 1.3; }
.product-rating { font-size: 12px; color: var(--text-muted); display: flex; align-items: center; gap: 4px; }
.product-rating .star { color: var(--accent2); }
.product-footer { padding: 0 14px 14px; display: flex; align-items: center; justify-content: space-between; }
.product-price { font-size: 18px; font-weight: 800; color: var(--primary); }
.product-unit { font-size: 11px; color: var(--text-muted); font-weight: 500; }
.add-to-cart-btn {
    background: var(--primary); color: #fff; border: none;
    width: 36px; height: 36px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 16px; cursor: pointer;
    transition: all var(--transition); flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(21,101,192,.35);
}
.add-to-cart-btn:hover { background: var(--primary-dark); transform: scale(1.1); }

/* ---- Pill Category Tabs ---- */
.pill-tabs { display: flex; gap: 10px; overflow-x: auto; padding-bottom: 4px; }
.pill-tabs::-webkit-scrollbar { height: 0; }
.pill-tab {
    flex-shrink: 0; background: #fff; border: 2px solid var(--border);
    border-radius: var(--radius-pill); padding: 8px 20px;
    font-size: 13px; font-weight: 600; color: var(--text-muted);
    cursor: pointer; transition: all var(--transition);
}
.pill-tab:hover, .pill-tab.active {
    background: var(--primary); border-color: var(--primary); color: #fff;
}

/* ---- Feature Cards (Why Choose Us) ---- */
.feature-card {
    background: #fff;
    border-radius: 20px;
    padding: 35px 24px;
    text-align: center;
    border: 1px solid #e2e8f0;
    height: 100%;
}
.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: var(--theme-bg);
    color: var(--theme-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto;
}

/* ---- Testimonial Cards ---- */
.testimonial-card {
    background: #fff; border-radius: var(--radius); padding: 28px;
    box-shadow: 0 2px 12px rgba(0,0,0,.06);
    transition: all var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.testimonial-quote { font-size: 32px; color: var(--primary); line-height: 1; margin-bottom: 8px; }
.testimonial-avatar {
    width: 48px; height: 48px; border-radius: 50%;
    object-fit: cover; border: 3px solid var(--primary-bg);
}

/* ---- CTA Banner ---- */
.cta-banner {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary), var(--primary-light));
    border-radius: 24px; padding: 50px 40px;
    position: relative; overflow: hidden;
}
.cta-banner::before {
    content: ''; position: absolute;
    top: -30%; right: -5%; width: 400px; height: 400px;
    background: rgba(255,255,255,.06); border-radius: 50%;
}

/* ---- Page Hero (inner pages) ---- */
.page-hero {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    padding: 50px 0 70px; color: #fff; position: relative; overflow: hidden;
}
.page-hero::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 40px;
    background: #F4F8FF; border-radius: 40px 40px 0 0;
}
.page-hero .breadcrumb-item a { color: rgba(255,255,255,.7); }
.page-hero .breadcrumb-item.active { color: #fff; }
.page-hero .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.5); }

/* ---- Login / Register Cards ---- */
.auth-wrapper {
    min-height: calc(100vh - 220px);
    display: flex; align-items: center; justify-content: center;
    padding: 40px 16px;
}
.auth-card {
    background: #fff; border-radius: 24px;
    box-shadow: 0 10px 60px rgba(21,101,192,.15);
    overflow: hidden; width: 100%; max-width: 440px;
}
.auth-header {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
    padding: 40px 32px 50px; text-align: center; position: relative;
}
.auth-header::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 30px;
    background: #fff; border-radius: 30px 30px 0 0;
}
.auth-logo {
    width: 76px; height: 76px; background: rgba(255,255,255,.95);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 36px; margin: 0 auto 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,.15);
}
.auth-title { font-size: 24px; font-weight: 800; color: #fff; margin-bottom: 4px; }
.auth-subtitle { font-size: 13px; color: rgba(255,255,255,.8); }
.auth-body { padding: 28px 32px 36px; }
.auth-form .form-label { font-size: 13px; font-weight: 600; color: var(--dark); margin-bottom: 6px; }
.auth-form .form-control {
    border-radius: var(--radius-sm); border: 1.5px solid var(--border);
    padding: 12px 14px; font-size: 14px; font-family: 'Poppins', sans-serif;
    background: var(--primary-bg);
    transition: border-color var(--transition), box-shadow var(--transition);
}
.auth-form .form-control:focus {
    border-color: var(--primary); box-shadow: 0 0 0 3px rgba(21,101,192,.1);
    background: #fff; outline: none;
}
.auth-form .input-group-text {
    background: var(--primary-bg); border: 1.5px solid var(--border);
    border-right: none; color: var(--primary); border-radius: var(--radius-sm) 0 0 var(--radius-sm);
}
.auth-form .input-group .form-control { border-left: none; border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }
.auth-form .input-group:focus-within .input-group-text { border-color: var(--primary); }
.btn-auth {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
    color: #fff; border: none; border-radius: var(--radius-sm);
    padding: 14px; font-size: 15px; font-weight: 700;
    width: 100%; transition: all var(--transition);
    box-shadow: 0 4px 16px rgba(21,101,192,.35);
}
.btn-auth:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(21,101,192,.45); color: #fff; }
.social-btn {
    border: 1.5px solid var(--border); background: #fff;
    border-radius: var(--radius-sm); padding: 10px;
    font-size: 13px; font-weight: 600; color: var(--dark);
    display: flex; align-items: center; justify-content: center; gap: 8px;
    flex: 1; transition: all var(--transition); cursor: pointer;
}
.social-btn:hover { border-color: var(--primary); background: var(--primary-bg); color: var(--primary); }

/* ---- Product Detail ---- */
.product-detail-img {
    border-radius: 20px; overflow: hidden;
    position: relative; background: var(--primary-bg);
    aspect-ratio: 1; max-height: 400px;
}
.product-detail-img img { width: 100%; height: 100%; object-fit: cover; }
.qty-selector {
    display: inline-flex; align-items: center; gap: 0;
    border: 1.5px solid var(--border); border-radius: var(--radius-sm);
    overflow: hidden; background: var(--primary-bg);
}
.qty-btn {
    width: 40px; height: 40px; border: none; background: transparent;
    font-size: 18px; color: var(--primary); cursor: pointer;
    font-weight: 700; transition: background var(--transition);
}
.qty-btn:hover { background: var(--primary-bg); }
.qty-input {
    width: 48px; height: 40px; border: none; background: transparent;
    text-align: center; font-size: 16px; font-weight: 700;
    font-family: 'Poppins', sans-serif; color: var(--dark);
}
.info-card {
    background: var(--primary-bg); border-radius: var(--radius-sm);
    padding: 14px; border: 1px solid rgba(21,101,192,.1);
    display: flex; align-items: center; gap: 12px;
}
.info-card-icon { color: var(--primary); font-size: 22px; }

/* ---- Cart Page ---- */
.cart-item {
    background: #fff; border-radius: var(--radius); padding: 16px;
    box-shadow: 0 2px 10px rgba(0,0,0,.05); margin-bottom: 16px;
}
.cart-item-img { width: 80px; height: 80px; border-radius: 12px; object-fit: cover; background: var(--primary-bg); }
.order-summary-card {
    background: #fff; border-radius: var(--radius);
    box-shadow: 0 2px 10px rgba(0,0,0,.05);
    position: sticky; top: 80px; padding: 24px;
}

/* ---- Footer ---- */
.footer-main { position: relative; margin-top: 20px; }
.footer-wave {
    height: 80px;
    background: var(--primary-dark);
    clip-path: ellipse(55% 100% at 50% 100%);
    margin-bottom: -1px; /* Prevent any sub-pixel gap */
}
.footer-body {
    background: linear-gradient(160deg, var(--primary-dark) 0%, #1A237E 100%);
    padding: 60px 0 0;
}
.footer-heading { font-size: 13px; font-weight: 700; color: rgba(255,255,255,.9); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 8px; font-size: 13px; color: rgba(255,255,255,.6); }
.footer-links a { color: rgba(255,255,255,.6); transition: color var(--transition); }
.footer-links a:hover { color: #fff; }
.social-icon {
    width: 38px; height: 38px; border-radius: 50%;
    background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,.7); font-size: 14px;
    transition: all var(--transition);
}
.social-icon:hover { background: var(--primary-light); color: #fff; border-color: var(--primary-light); }
.app-store-btn {
    display: flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
    border-radius: var(--radius-sm); padding: 8px 14px;
    color: #fff; font-size: 13px; transition: all var(--transition);
}
.app-store-btn:hover { background: rgba(255,255,255,.18); color: #fff; }
.footer-bottom {
    display: flex; align-items: center; justify-content: space-between;
    padding: 20px 0; border-top: 1px solid rgba(255,255,255,.08);
    flex-wrap: wrap; gap: 10px;
}

/* ---- Utility Classes ---- */
.text-primary { color: var(--primary) !important; }
.bg-primary { background: var(--primary) !important; }
.btn-primary { background: var(--primary); border-color: var(--primary); }
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); }
.badge-fresh { background: rgba(16,185,129,.1); color: #059669; border: 1px solid rgba(16,185,129,.2); padding: 4px 10px; border-radius: 6px; font-size: 11px; font-weight: 700; }
.badge-pending { background: rgba(245,158,11,.1); color: #D97706; border: 1px solid rgba(245,158,11,.2); padding: 4px 10px; border-radius: 6px; font-size: 11px; font-weight: 700; }
.badge-hot { background: rgba(239,68,68,.1); color: #DC2626; border: 1px solid rgba(239,68,68,.2); padding: 4px 10px; border-radius: 6px; font-size: 11px; font-weight: 700; }

/* ---- Animations ---- */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-16px); }
    to   { opacity: 1; transform: translateY(0); }
}
.anim-fade-up { animation: fadeInUp .6s ease both; }
.anim-delay-1 { animation-delay: .1s; }
.anim-delay-2 { animation-delay: .2s; }
.anim-delay-3 { animation-delay: .3s; }
.anim-delay-4 { animation-delay: .4s; }

/* Scroll reveal (JS-driven) */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ---- Toast Notifications ---- */
.fm-toast {
    position: fixed; bottom: 24px; right: 24px; z-index: 9999;
    background: var(--dark); color: #fff;
    border-radius: var(--radius-sm); padding: 14px 20px;
    display: flex; align-items: center; gap: 10px;
    box-shadow: 0 8px 32px rgba(0,0,0,.2);
    font-size: 14px; font-weight: 500;
    animation: toastIn .3s ease, toastOut .3s ease 2.7s forwards;
    min-width: 240px; max-width: 320px;
}
.fm-toast.success { background: #059669; }
.fm-toast.error { background: #DC2626; }
@keyframes toastIn { from { opacity: 0; transform: translateX(40px); } to { opacity: 1; transform: none; } }
@keyframes toastOut { from { opacity: 1; } to { opacity: 0; } }

/* ---- Responsive Adjustments ---- */
@media (max-width: 767px) {
    .hero-section { min-height: 340px; padding: 40px 0; }
    .hero-stats { gap: 20px; }
    .cta-banner { padding: 36px 24px; }
    .auth-body { padding: 24px 22px 30px; }
    .auth-header { padding: 32px 22px 42px; }
}
@media (max-width: 575px) {
    .banner-card { height: 160px; }
    .banner-title { font-size: 18px; }
}
