/* -------------------------------------------------------------
   ZIW Traders HOME TEXTILES - PREMIUM STYLE SHEET
   ------------------------------------------------------------- */

/* Custom Design Tokens & Variables */
:root {
    --primary: #12161f;           /* Deep Luxury Charcoal / Midnight */
    --primary-light: #1c2230;     /* Soft slate black */
    --primary-rgba: rgba(18, 22, 31, 0.85);
    
    --accent: #b3946a;            /* Champagne Gold / Warm Ochre */
    --accent-hover: #9c7f56;
    --accent-light: #f5eedf;
    
    --text-dark: #22252a;         /* High contrast body text */
    --text-muted: #5e6675;        /* Subtitles & Descriptions */
    --text-light: #a0aec0;        /* Footer links */
    
    --bg-light: #f9fafb;          /* Soft grey section backgrounds */
    --bg-white: #ffffff;
    --border-color: #ededed;
    --success-whatsapp: #52996e;  /* Soft, elegant WhatsApp Green */
    --success-whatsapp-hover: #437f5b;
    
    --font-heading: 'Outfit', sans-serif;
    --font-serif: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
    
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.03);
    --shadow-md: 0 6px 16px rgba(0,0,0,0.04);
    --shadow-lg: 0 16px 36px rgba(0,0,0,0.06);
    
    --transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    --transition-slow: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    --header-height: 85px;
}

/* 1. Global Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: var(--primary-light);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}

/* Utility Containers */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.divider {
    width: 60px;
    height: 3px;
    background-color: var(--accent);
    margin: 15px auto 25px;
    position: relative;
}

.divider::before {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    background-color: var(--accent);
    border: 3px solid var(--bg-white);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Typography & Titles */
.section-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 2.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    color: var(--primary);
    position: relative;
}

.text-left {
    text-align: left;
}

.section-subtitle {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.15rem;
    color: var(--text-muted);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 50px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 12px 28px;
    border-radius: 30px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--accent);
    color: var(--bg-white);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(179, 148, 106, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--bg-white);
    border-color: var(--bg-white);
}

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

.btn-outline {
    background-color: transparent;
    color: var(--accent);
    border-color: var(--accent);
}

.btn-outline:hover {
    background-color: var(--accent);
    color: var(--bg-white);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 8px 18px;
    font-size: 0.85rem;
    border-radius: 20px;
}

.btn-block {
    display: flex;
    width: 100%;
}

.btn-link {
    font-weight: 700;
    color: var(--accent);
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-link i {
    transition: var(--transition);
}

.btn-link:hover {
    color: var(--primary);
}

.btn-link:hover i {
    transform: translateX(5px);
}

/* 2. Header & Navigation */
.main-header {
    height: var(--header-height);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.main-header.scrolled {
    height: 75px;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
}

.header-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    flex-direction: column;
}

.logo-bold {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.8rem;
    color: var(--primary);
    letter-spacing: 2px;
    line-height: 1;
}

.logo-sub {
    font-family: var(--font-heading);
    font-size: 0.65rem;
    color: var(--accent);
    letter-spacing: 4px;
    font-weight: 600;
    margin-top: 3px;
}

/* Nav Menu Desktop */
.nav-menu ul {
    display: flex;
    gap: 32px;
}

.nav-menu a {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-dark);
    letter-spacing: 0.5px;
    position: relative;
    padding: 8px 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: var(--transition);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--accent);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-inquiry-header {
    background-color: var(--success-whatsapp);
    color: var(--bg-white);
    border: none;
    font-size: 0.85rem;
    padding: 10px 20px;
}

.btn-inquiry-header:hover {
    background-color: var(--success-whatsapp-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
}

.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary);
    cursor: pointer;
    transition: var(--transition);
}

.mobile-nav-toggle:hover {
    color: var(--accent);
}

/* 3. Mobile Navigation Drawer */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -320px;
    width: 320px;
    height: 100vh;
    background-color: var(--bg-white);
    z-index: 1010;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    padding: 30px;
    transition: var(--transition-slow);
}

.mobile-drawer.open {
    right: 0;
}

.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 50px;
}

.close-drawer {
    background: none;
    border: none;
    font-size: 1.6rem;
    color: var(--primary);
    cursor: pointer;
    transition: var(--transition);
}

.close-drawer:hover {
    color: var(--accent);
}

.drawer-nav ul {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.drawer-nav a {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary);
}

.drawer-nav a:hover {
    color: var(--accent);
    padding-left: 8px;
}

.drawer-footer {
    margin-top: auto;
}

.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1005;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.drawer-overlay.open {
    opacity: 1;
    visibility: visible;
}

/* 4. Hero Section & Slider */
.hero-section {
    position: relative;
    height: calc(100vh - var(--header-height));
    margin-top: var(--header-height);
    background-color: var(--primary);
    overflow: hidden;
}

.hero-slider {
    position: relative;
    height: 100%;
    width: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 1;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    transition: opacity 1.2s ease-in-out;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-container {
    width: 100%;
}

.hero-content {
    max-width: 650px;
    color: var(--bg-white);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1) 0.5s;
}

.slide.active .hero-content {
    opacity: 1;
    transform: translateY(0);
}

.hero-subtitle {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--accent);
    display: block;
    margin-bottom: 20px;
}

.hero-title-box {
    display: inline-block;
    border-left: 4px solid var(--accent);
    padding-left: 20px;
    margin-bottom: 25px;
}

.hero-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 3.8rem;
    line-height: 1.1;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-title .highlight {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--accent);
    font-weight: 600;
}

.hero-text {
    font-size: 1.1rem;
    color: #e2e8f0;
    margin-bottom: 40px;
    line-height: 1.7;
    max-width: 550px;
}

.hero-actions-btn {
    display: flex;
    gap: 16px;
}

/* Slider arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--bg-white);
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.slider-arrow:hover {
    background-color: var(--accent);
    border-color: var(--accent);
}

.slider-arrow.prev {
    left: 40px;
}

.slider-arrow.next {
    right: 40px;
}

/* Slider dots */
.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

.slider-dots .dot.active {
    background-color: var(--accent);
    transform: scale(1.2);
}

/* 5. About Us Brief Section */
.about-section {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.about-description {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin: 25px 0 35px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--primary);
}

.feature-icon {
    font-size: 1.2rem;
    color: var(--accent);
    background-color: var(--accent-light);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-visual {
    position: relative;
    padding-left: 20px;
}

.visual-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    transition: var(--transition-slow);
}

.visual-card:hover .about-img {
    transform: scale(1.05);
}

.visual-card::after {
    content: '';
    position: absolute;
    top: 20px;
    left: -20px;
    right: 20px;
    bottom: -20px;
    border: 3px solid var(--accent);
    border-radius: 8px;
    z-index: -1;
}

.badge {
    position: absolute;
    bottom: 25px;
    left: 25px;
    background-color: var(--primary);
    color: var(--bg-white);
    padding: 8px 18px;
    border-radius: 4px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 2px;
}

/* 6. Categories Section */
.categories-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.category-card {
    background-color: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.category-img-wrapper {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.category-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.category-info {
    padding: 24px;
}

.category-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.category-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    min-height: 44px;
}

/* 7. Products Section */
.products-section {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.product-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    overflow: hidden;
    transition: var(--transition);
}

.product-card:hover {
    box-shadow: var(--shadow-md);
    border-color: #d1d5db;
}

.product-img-wrapper {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background-color: #f7fafc;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 8px;
    transition: var(--transition-slow);
}

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

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(18, 22, 31, 0.4);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-details {
    padding: 20px;
    text-align: center;
}

.product-title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 6px;
    white-space: normal;
    min-height: 2.8em;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.4;
}

.product-price {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    color: var(--accent);
    font-weight: 700;
}

/* 8. Showroom Section */
.showroom-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.showroom-box {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    background-color: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.showroom-details {
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.showroom-details h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.showroom-text {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.showroom-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.showroom-features li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.95rem;
    color: var(--primary-light);
    font-weight: 500;
}

.showroom-features li i {
    color: var(--accent);
    font-size: 1.1rem;
}

.showroom-map {
    background-color: #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.map-placeholder {
    text-align: center;
    color: var(--text-muted);
}

.map-icon {
    font-size: 3.5rem;
    color: var(--accent);
    margin-bottom: 15px;
}

.map-placeholder h4 {
    color: var(--primary);
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.map-placeholder p {
    font-size: 0.9rem;
    margin-bottom: 25px;
}

/* 9. Footer & Contacts */
.main-footer {
    background-color: var(--primary);
    color: var(--text-light);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-col h3 {
    color: var(--bg-white);
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.footer-about .footer-logo {
    font-weight: 800;
    font-size: 1.8rem;
    letter-spacing: 2px;
    color: var(--bg-white);
    margin-bottom: 20px;
}

.footer-desc {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    font-size: 0.95rem;
}

.footer-social a:hover {
    background-color: var(--accent);
    color: var(--bg-white);
    transform: translateY(-3px);
}

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

.footer-links a {
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 6px;
}

.footer-contact-details li {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

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

.footer-bottom {
    padding: 30px 0;
    font-size: 0.85rem;
    background-color: var(--primary-light);
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.4);
}

/* 10. WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--success-whatsapp);
    color: var(--bg-white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.1rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-float:hover {
    background-color: var(--success-whatsapp-hover);
    transform: scale(1.1) rotate(5deg);
}

.whatsapp-badge {
    position: absolute;
    right: 70px;
    background-color: var(--primary-light);
    color: var(--bg-white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.75rem;
    padding: 6px 14px;
    border-radius: 20px;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    transition: var(--transition);
    pointer-events: none;
    box-shadow: var(--shadow-sm);
}

.whatsapp-float:hover .whatsapp-badge {
    opacity: 1;
    transform: translateX(0);
}

/* Pulse animation for WhatsApp widget */
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.whatsapp-float {
    animation: pulse 2s infinite;
}


/* -------------------------------------------------------------
   11. RESPONSIVE MEDIA QUERIES (Breakpoints)
   ------------------------------------------------------------- */

/* Large Tablets & Desktop scaling */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3.2rem;
    }
    .categories-grid {
        gap: 20px;
    }
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

/* Medium Tablets / iPads */
@media (max-width: 992px) {
    :root {
        --header-height: 75px;
    }
    .nav-menu {
        display: none; /* Hide navigation links, show toggle */
    }
    .mobile-nav-toggle {
        display: block;
    }
    .hero-title {
        font-size: 2.8rem;
    }
    .slider-arrow {
        width: 45px;
        height: 45px;
    }
    .slider-arrow.prev {
        left: 20px;
    }
    .slider-arrow.next {
        right: 20px;
    }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-visual {
        padding-left: 0;
    }
    .about-img {
        height: 380px;
    }
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .showroom-box {
        grid-template-columns: 1fr;
    }
    .showroom-details {
        padding: 40px;
    }
    .showroom-map {
        height: 300px;
        padding: 20px;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

/* Mobile Devices */
@media (max-width: 768px) {
    .hero-content {
        text-align: center;
        margin: 0 auto;
        padding: 0 10px;
    }
    .hero-title-box {
        border-left: none;
        border-bottom: 3px solid var(--accent);
        padding-left: 0;
        padding-bottom: 10px;
    }
    .hero-title {
        font-size: 2.3rem;
    }
    .hero-text {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }
    .hero-actions-btn {
        justify-content: center;
    }
    .slider-arrow {
        display: none; /* Hide arrows on mobile */
    }
    .section-title {
        font-size: 1.8rem;
    }
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 35px;
    }
    .categories-grid {
        grid-template-columns: 1fr;
    }
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .product-details {
        padding: 12px;
    }
    .product-title {
        font-size: 0.95rem;
    }
    .product-price {
        font-size: 0.85rem;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer-bottom-container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    .whatsapp-badge {
        display: none; /* Hide Badge on mobile to save space */
    }
}

/* Small Mobiles */
@media (max-width: 480px) {
    .hero-title {
        font-size: 1.9rem;
    }
    .hero-actions-btn {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }
    .hero-actions-btn .btn {
        width: 100%;
    }
    .products-grid {
        grid-template-columns: 1fr;
    }
    .btn-inquiry-header {
        display: none; /* Hide top inquiry button on small mobiles */
    }
}
