/* ==========================================================================
   AdNexus Printing Solutions - Modern E-Commerce UI Stylesheet
   ========================================================================== */

:root {
    --an-primary: #0A1128;
    --an-primary-dark: #050B1A;
    --an-primary-light: #1C274C;
    --an-orange: #FF6B00;
    --an-orange-hover: #E65A00;
    --an-orange-light: #FFF4EB;
    --an-cyan: #00D2FF;
    --an-cyan-dark: #00A6CC;
    --an-dark: #0F172A;
    --an-gray: #64748B;
    --an-light: #F8FAFC;
    --an-border: #E2E8F0;
    --an-white: #FFFFFF;
    --an-radius: 12px;
    --an-shadow-sm: 0 4px 12px rgba(10, 17, 40, 0.05);
    --an-shadow-md: 0 10px 25px rgba(10, 17, 40, 0.08);
    --an-shadow-lg: 0 20px 40px rgba(10, 17, 40, 0.12);
    --an-font-heading: 'Outfit', sans-serif;
    --an-font-body: 'Plus Jakarta Sans', sans-serif;
}

body {
    font-family: var(--an-font-body);
    color: var(--an-dark);
    background-color: #FFFFFF;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .navbar-brand {
    font-family: var(--an-font-heading);
    font-weight: 700;
    color: var(--an-primary);
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    transition: all 0.25s ease;
}

/* ================= Top Announcement Bar ================= */
.top-bar {
    background-color: var(--an-primary-dark);
    color: #94A3B8;
    font-size: 0.85rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.top-bar a {
    color: #CBD5E1;
}
.top-bar a:hover {
    color: var(--an-orange);
}

/* ================= Header & Navbar ================= */
.main-navbar {
    background-color: var(--an-primary);
    padding: 14px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    position: sticky;
    top: 0;
    z-index: 1020;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-size: 1.6rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--an-white) !important;
}

.brand-dot {
    color: var(--an-orange);
}

.main-navbar .nav-link {
    color: #E2E8F0 !important;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 8px 14px !important;
    border-radius: 8px;
    transition: all 0.25s ease;
}

.main-navbar .nav-link:hover,
.main-navbar .nav-link.active {
    color: var(--an-orange) !important;
    background-color: rgba(255, 107, 0, 0.08);
}

.dropdown-menu {
    border: 1px solid var(--an-border);
    box-shadow: var(--an-shadow-lg);
    border-radius: 12px;
    padding: 10px;
    min-width: 250px;
}

.dropdown-item {
    font-weight: 500;
    border-radius: 8px;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background-color: var(--an-orange-light);
    color: var(--an-orange);
    transform: translateX(4px);
}

.cart-btn {
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    color: var(--an-white);
    border-radius: 10px;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
}

.cart-btn:hover {
    background: var(--an-orange);
    color: var(--an-white);
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: var(--an-orange);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 50px;
    border: 2px solid var(--an-primary);
}

/* ================= Buttons ================= */
.btn-an-primary {
    background: var(--an-orange);
    color: var(--an-white);
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 10px;
    border: 2px solid var(--an-orange);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.25s ease;
}

.btn-an-primary:hover {
    background: var(--an-orange-hover);
    border-color: var(--an-orange-hover);
    color: var(--an-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 0, 0.25);
}

.btn-an-outline {
    background: transparent;
    color: var(--an-white);
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.25);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.25s ease;
}

.btn-an-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--an-white);
    color: var(--an-white);
    transform: translateY(-2px);
}

.btn-an-dark {
    background: var(--an-primary);
    color: var(--an-white);
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 8px;
    border: 1px solid var(--an-primary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
}

.btn-an-dark:hover {
    background: var(--an-primary-dark);
    color: var(--an-white);
    transform: translateY(-2px);
}

/* ================= Hero Section ================= */
.hero-section {
    background: linear-gradient(135deg, var(--an-primary) 0%, #0d1a3a 100%);
    color: var(--an-white);
    padding: 90px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.05) 1px, transparent 0);
    background-size: 32px 32px;
    pointer-events: none;
}

.hero-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.15), transparent 70%);
    top: -100px;
    right: -100px;
    pointer-events: none;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 107, 0, 0.15);
    color: #FFA35C;
    border: 1px solid rgba(255, 107, 0, 0.3);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}

.hero-title {
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    color: var(--an-white);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 22px;
}

.hero-accent {
    color: var(--an-orange);
    background: linear-gradient(120deg, var(--an-orange), #FFB070);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    color: #CBD5E1;
    font-size: 1.15rem;
    max-width: 540px;
    margin-bottom: 34px;
    line-height: 1.65;
}

.hero-img-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-img-wrap img {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    max-height: 480px;
    width: 100%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.floating-pill {
    position: absolute;
    bottom: -20px;
    left: -15px;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 14px 20px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: floatAnim 4s ease-in-out infinite;
}

@keyframes floatAnim {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.stat-box {
    display: flex;
    align-items: center;
    gap: 12px;
}
.stat-box strong {
    font-size: 1.8rem;
    color: var(--an-white);
    font-family: var(--an-font-heading);
    line-height: 1;
}
.stat-box span {
    font-size: 0.85rem;
    color: #94A3B8;
}

/* ================= Category Cards ================= */
.category-card {
    background: var(--an-white);
    border: 1px solid var(--an-border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.category-card:hover {
    border-color: var(--an-orange);
    transform: translateY(-6px);
    box-shadow: var(--an-shadow-md);
}

.category-img-wrap {
    height: 190px;
    position: relative;
    overflow: hidden;
}

.category-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-card:hover .category-img-wrap img {
    transform: scale(1.08);
}

.category-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(10, 17, 40, 0.85);
    backdrop-filter: blur(4px);
    color: var(--an-white);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 30px;
}

.category-icon-box {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: var(--an-orange-light);
    color: var(--an-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-top: -25px;
    margin-left: 20px;
    position: relative;
    z-index: 2;
    border: 3px solid #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.category-card:hover .category-icon-box {
    background: var(--an-orange);
    color: #fff;
    transform: scale(1.1) rotate(-5deg);
}

.category-card .card-body {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.category-card h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
    color: var(--an-primary);
}

.category-card p {
    font-size: 0.9rem;
    color: var(--an-gray);
    margin-bottom: 16px;
    flex-grow: 1;
}

/* ================= Product Cards ================= */
.product-card {
    background: var(--an-white);
    border: 1px solid var(--an-border);
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.product-card:hover {
    border-color: var(--an-orange);
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.product-img-wrap {
    height: 220px;
    position: relative;
    overflow: hidden;
    background-color: #F1F5F9;
}

.product-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-card:hover .product-img-wrap img {
    transform: scale(1.06);
}

.badge-discount {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #EF4444;
    color: #fff;
    font-weight: 700;
    font-size: 0.72rem;
    padding: 4px 8px;
    border-radius: 6px;
}

.badge-tech {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(10, 17, 40, 0.85);
    backdrop-filter: blur(4px);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 30px;
}

.product-body {
    padding: 18px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-category {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--an-orange);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.product-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--an-dark);
    line-height: 1.35;
    margin-bottom: 8px;
    height: 42px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.product-title a {
    color: inherit;
}
.product-title a:hover {
    color: var(--an-orange);
}

.product-price-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 12px;
}

.current-price {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--an-primary);
    font-family: var(--an-font-heading);
}

.old-price {
    font-size: 0.9rem;
    color: #94A3B8;
    text-decoration: line-through;
}

.product-meta-row {
    font-size: 0.8rem;
    color: var(--an-gray);
    display: flex;
    justify-content: space-between;
    padding-top: 10px;
    border-top: 1px dashed var(--an-border);
    margin-top: auto;
}

/* ================= Instant Quote Calculator ================= */
.quote-banner-section {
    background: linear-gradient(135deg, var(--an-primary) 0%, #15224D 100%);
    color: var(--an-white);
    padding: 80px 0;
    position: relative;
}

.quote-card {
    background: var(--an-white);
    border-radius: 20px;
    padding: 34px;
    color: var(--an-dark);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

/* ================= Feature Benefits Grid ================= */
.feature-box {
    background: var(--an-light);
    border: 1px solid var(--an-border);
    border-radius: 14px;
    padding: 28px 24px;
    transition: all 0.3s ease;
    height: 100%;
}

.feature-box:hover {
    background: var(--an-white);
    border-color: var(--an-orange);
    transform: translateY(-5px);
    box-shadow: var(--an-shadow-md);
}

.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: var(--an-orange-light);
    color: var(--an-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 18px;
    transition: all 0.3s ease;
}

.feature-box:hover .feature-icon {
    background: var(--an-orange);
    color: var(--an-white);
}

/* ================= Testimonial Card ================= */
.testimonial-card {
    background: var(--an-white);
    border: 1px solid var(--an-border);
    border-radius: 16px;
    padding: 30px;
    box-shadow: var(--an-shadow-sm);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.rating-stars {
    color: #F59E0B;
    font-size: 1rem;
    margin-bottom: 14px;
}

.client-review {
    font-size: 0.98rem;
    color: #334155;
    line-height: 1.7;
    margin-bottom: 24px;
    flex-grow: 1;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 14px;
}

.client-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--an-orange-light);
    color: var(--an-orange);
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--an-orange);
}

/* ================= Footer ================= */
.main-footer {
    background-color: var(--an-primary);
    color: #94A3B8;
    padding: 70px 0 25px;
    font-size: 0.92rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.main-footer h5 {
    color: var(--an-white);
    font-size: 1.15rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.main-footer h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 32px;
    height: 2px;
    background: var(--an-orange);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #94A3B8;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-links a:hover {
    color: var(--an-orange);
    transform: translateX(4px);
}

.footer-contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
}

.footer-contact-item i {
    color: var(--an-orange);
    font-size: 1.1rem;
    margin-top: 3px;
}

.social-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #CBD5E1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
}

.social-btn:hover {
    background: var(--an-orange);
    color: var(--an-white);
    transform: translateY(-3px);
}

.footer-bottom {
    margin-top: 50px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.85rem;
}

/* ================= WhatsApp Floating Button ================= */
.whatsapp-float {
    position: fixed;
    bottom: 26px;
    right: 26px;
    width: 58px;
    height: 58px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    z-index: 1030;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    color: #fff;
    background-color: #20BA5A;
    transform: scale(1.1);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.6);
}

/* ================= Order Tracking Stepper ================= */
.tracking-stepper {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin: 40px 0;
}

.tracking-stepper::before {
    content: '';
    position: absolute;
    top: 24px;
    left: 20px;
    right: 20px;
    height: 4px;
    background: #E2E8F0;
    z-index: 1;
}

.tracking-progress-fill {
    position: absolute;
    top: 24px;
    left: 20px;
    height: 4px;
    background: #10B981;
    z-index: 2;
    transition: width 0.6s ease;
}

.step-node {
    position: relative;
    z-index: 3;
    text-align: center;
    width: 120px;
}

.step-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #E2E8F0;
    color: #94A3B8;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-size: 1.2rem;
    font-weight: 700;
    border: 3px solid #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.step-node.completed .step-icon {
    background: #10B981;
    color: #fff;
}

.step-node.active .step-icon {
    background: var(--an-orange);
    color: #fff;
    box-shadow: 0 0 0 4px rgba(255, 107, 0, 0.2);
}

.step-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--an-dark);
}

.step-time {
    font-size: 0.75rem;
    color: var(--an-gray);
}

/* ================= Custom File Upload Field ================= */
.artwork-dropzone {
    border: 2px dashed #CBD5E1;
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    background: #F8FAFC;
    cursor: pointer;
    transition: all 0.25s ease;
}

.artwork-dropzone:hover {
    border-color: var(--an-orange);
    background: var(--an-orange-light);
}

/* ==========================================================================
   Comprehensive Responsive System (Mobile, Tablet, Desktop, Ultra-Wide)
   ========================================================================== */

/* Universal Fluid Media & Touch Helpers */
img, svg, video, canvas, audio, iframe {
    max-width: 100%;
    height: auto;
}

.table-responsive {
    -webkit-overflow-scrolling: touch;
}

/* ================= 1. Large Displays (>= 1400px) ================= */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
    .hero-title {
        font-size: 3.6rem;
    }
    .hero-img-wrap img {
        max-height: 520px;
    }
}

/* ================= 2. Medium Laptops & Desktops (992px to 1199.98px) ================= */
@media (max-width: 1199.98px) {
    .main-navbar .nav-link {
        font-size: 0.88rem;
        padding: 8px 10px !important;
    }
    .hero-title {
        font-size: 2.8rem;
    }
    .hero-img-wrap img {
        max-height: 420px;
    }
    .product-img-wrap {
        height: 200px;
    }
}

/* ================= 3. Tablets & Mobile (< 992px) ================= */
@media (max-width: 991.98px) {
    /* Navbar Mobile Drawer */
    .main-navbar .navbar-collapse {
        background-color: var(--an-primary-dark);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 14px;
        padding: 16px 20px;
        margin-top: 14px;
        box-shadow: 0 14px 35px rgba(0, 0, 0, 0.4);
    }

    .main-navbar .nav-link {
        padding: 11px 12px !important;
        font-size: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .main-navbar .nav-item:last-child .nav-link {
        border-bottom: none;
    }

    /* Mobile Submenu / Dropdown */
    .main-navbar .dropdown-menu {
        background-color: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 10px;
        box-shadow: none;
        padding: 8px;
        margin: 6px 0 10px;
    }

    .main-navbar .dropdown-item {
        color: #E2E8F0;
        padding: 9px 12px;
        font-size: 0.92rem;
    }

    .main-navbar .dropdown-item:hover {
        background-color: rgba(255, 107, 0, 0.15);
        color: var(--an-orange);
    }

    .main-navbar .dropdown-item .text-muted {
        color: #94A3B8 !important;
    }

    /* Hero Section */
    .hero-section {
        padding: 60px 0 50px;
        text-align: center;
    }

    .hero-badge {
        margin: 0 auto 18px;
    }

    .hero-desc {
        margin: 0 auto 28px;
        max-width: 600px;
    }

    .hero-section .d-flex.flex-wrap {
        justify-content: center;
    }

    .hero-img-wrap {
        margin-top: 30px;
    }

    .hero-img-wrap img {
        max-height: 380px;
    }

    .floating-pill {
        position: static;
        margin-top: 16px;
        justify-content: center;
        width: 100%;
        max-width: 360px;
        margin-left: auto;
        margin-right: auto;
    }

    /* Quote Banner & Estimator */
    .quote-banner-section {
        padding: 60px 0;
    }

    .quote-card {
        margin-top: 20px;
        padding: 26px 20px;
    }

    /* Vertical Order Tracking Stepper */
    .tracking-stepper {
        flex-direction: column;
        gap: 24px;
        position: relative;
        padding-left: 20px;
        margin: 30px 0;
    }

    .tracking-stepper::before {
        content: '';
        position: absolute;
        top: 20px;
        bottom: 20px;
        left: 36px;
        width: 4px;
        height: auto;
        background: #E2E8F0;
        z-index: 1;
        display: block;
    }

    .tracking-progress-fill {
        display: none !important;
    }

    .step-node {
        display: flex;
        align-items: flex-start;
        width: 100%;
        text-align: left;
        gap: 16px;
        position: relative;
        z-index: 2;
    }

    .step-icon {
        margin: 0;
        flex-shrink: 0;
        z-index: 3;
    }
}

/* ================= 4. Standard Mobile (< 768px) ================= */
@media (max-width: 767.98px) {
    /* Top Announcement Bar */
    .top-bar {
        font-size: 0.78rem;
        padding: 6px 0;
    }

    .top-bar .container {
        text-align: center;
    }

    /* Navbar Brand */
    .navbar-brand {
        font-size: 1.4rem;
    }

    /* Product Cards Grid */
    .product-img-wrap {
        height: 185px;
    }

    .product-body {
        padding: 14px;
    }

    .product-title {
        font-size: 0.98rem;
        height: 40px;
    }

    .current-price {
        font-size: 1.15rem;
    }

    /* Category Cards */
    .category-img-wrap {
        height: 160px;
    }

    /* Product Detail Page */
    .product-detail-hero {
        padding: 30px 0 20px;
    }

    .product-detail-img {
        max-height: 340px;
        margin-bottom: 20px;
    }

    /* Cart & Checkout */
    .cart-summary-card {
        margin-top: 20px;
    }

    .artwork-dropzone {
        padding: 18px 14px;
    }

    /* Footer */
    .main-footer {
        padding: 50px 0 20px;
    }

    .footer-bottom {
        margin-top: 35px;
        text-align: center;
    }

    /* Floating WhatsApp Button */
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 52px;
        height: 52px;
        font-size: 27px;
    }
}

/* ================= 5. Compact Mobile Screens (< 576px) ================= */
@media (max-width: 575.98px) {
    /* Hero Title & Stats */
    .hero-title {
        font-size: 2.15rem;
        line-height: 1.2;
    }

    .hero-desc {
        font-size: 0.95rem;
        line-height: 1.55;
    }

    .hero-section {
        padding: 45px 0 35px;
    }

    /* 3-Column Stats Row on Tiny Phones */
    .stat-box {
        flex-direction: column;
        text-align: center;
        gap: 4px;
    }

    .stat-box strong {
        font-size: 1.35rem;
    }

    .stat-box span {
        font-size: 0.7rem;
        line-height: 1.2;
    }

    /* Hero Action Buttons */
    .hero-section .btn {
        width: 100%;
        justify-content: center;
    }

    /* Product Cards in 2-Column or 1-Column grids */
    .product-card {
        border-radius: 12px;
    }

    .product-img-wrap {
        height: 160px;
    }

    .product-body {
        padding: 12px;
    }

    .product-title {
        font-size: 0.9rem;
        height: 38px;
        margin-bottom: 6px;
    }

    .current-price {
        font-size: 1.05rem;
    }

    .old-price {
        font-size: 0.8rem;
    }

    .product-meta-row {
        font-size: 0.72rem;
        flex-direction: column;
        gap: 3px;
    }

    /* Quote Card on Mobile */
    .quote-card {
        padding: 20px 14px;
        border-radius: 14px;
    }

    /* Modals & Forms */
    .modal-dialog {
        margin: 12px;
    }

    /* WhatsApp Button on Small Phones */
    .whatsapp-float {
        bottom: 16px;
        right: 16px;
        width: 48px;
        height: 48px;
        font-size: 25px;
    }
}
