/* ===== Global Styles ===== */
/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Poppins:wght@400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Updated to match logo: navy + gold */
    --primary-color: #091a3d; /* deep navy */
    --secondary-color: #0f355f; /* rich blue */
    --accent-color: #f5b21a; /* logo gold */
    --dark-color: #071223;
    --light-color: #f9fafb;
    --border-color: #e5e7eb;
    --text-color: #374151;
    --success-color: #10b981;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fff;
    position: relative;
}

/* Protect assets from selection/copying */
img {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Headings Typography */
h1, h2, h3, h4, h5, h6, .logo-text h1, .btn, .nav-menu a {
    font-family: 'Poppins', sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== Navigation ===== */
.navbar {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 24px;
    margin-bottom: 5px;
}

.logo .tagline {
    font-size: 12px;
    opacity: 0.9;
    font-weight: 300;
}

/* Logo (image + text) styles */
.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
}

.site-logo {
    height: 50px;
    width: auto;
    display: block;
}

.logo-text h1 {
    font-size: 18px;
    margin: 0;
}

.logo-text .tagline {
    font-size: 12px;
    margin: 0;
    opacity: 0.9;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 26px;
    cursor: pointer;
}

.footer-logo {
    margin-bottom: 18px;
}

.footer-logo-img {
    height: 48px;
    width: auto;
}

@media (max-width: 768px) {
    .site-logo { height: 48px; }
    .logo-text h1 { font-size: 18px; }
}

@media (max-width: 480px) {
    .site-logo { height: 40px; }
    .logo-text h1 { font-size: 16px; }
}

/* Highlight style for focused Send Message button */
.focus-highlight {
    box-shadow: 0 8px 24px rgba(9,26,61,0.18), 0 0 0 6px rgba(245,178,26,0.14);
    transform: translateY(-2px);
    transition: box-shadow 0.25s ease, transform 0.2s ease;
    position: relative;
}

@keyframes focusPulse {
    0% { box-shadow: 0 8px 24px rgba(9,26,61,0.12), 0 0 0 0 rgba(245,178,26,0.16); }
    50% { box-shadow: 0 12px 30px rgba(9,26,61,0.16), 0 0 0 10px rgba(245,178,26,0.08); }
    100% { box-shadow: 0 8px 24px rgba(9,26,61,0.12), 0 0 0 0 rgba(245,178,26,0.0); }
}

.focus-highlight {
    animation: focusPulse 1.2s ease-in-out 0s 2;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 5px 10px;
    border-bottom: 2px solid transparent;
}

.nav-menu a:hover,
.nav-menu a.active {
    opacity: 1;
    border-bottom-color: var(--accent-color);
}

/* ===== Hero Section ===== */
.hero {
    padding: 60px 20px;
    text-align: center;
    color: white;
    background-color: var(--primary-color); /* Fallback */
    /* background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"), linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%); */
}

.hero-content h2 {
    font-size: 36px;
    margin-bottom: 15px;
    font-weight: 700;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 25px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background-color: white;
    color: var(--primary-color);
}

/* ===== Page Header ===== */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 40px 20px;
    text-align: center;
}

.page-header h1 {
    font-size: 32px;
    margin-bottom: 10px;
}

.page-header p {
    font-size: 18px;
    opacity: 0.9;
}

/* ===== Features Section ===== */
.features {
    padding: 50px 20px;
    background-color: #f3f4f6;
}

.features h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--dark-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.feature-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05); /* Softer shadow */
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.feature-icon {
    font-size: 32px;
    margin-bottom: 15px;
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.feature-card p {
    color: var(--text-color);
    font-size: 14px;
}

/* ===== Popular Products Section ===== */
.popular-products {
    padding: 50px 20px;
}

.popular-products h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--dark-color);
}

.products-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.product-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.product-card:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    border-color: var(--primary-color);
}

.product-image {
    margin-bottom: 15px;
}

div.product-image {
    font-size: 60px;
}

img.product-image {
    width: 100%;
    height: 160px;
    object-fit: contain;
    border-radius: 5px;
}

.product-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.product-card p {
    font-size: 13px;
    color: var(--text-color);
    margin-bottom: 8px;
}

.specs {
    font-size: 12px !important;
    color: #6b7280 !important;
    font-weight: 500;
    margin: 10px 0 !important;
}

.price {
    display: none !important;
}

.product-card .btn {
    width: 100%;
    margin-top: 12px;
    padding: 10px;
}

/* ===== Product Catalog ===== */
.product-catalog {
    padding: 40px 20px;
}

.category-filter {
    text-align: center;
    margin-bottom: 30px;
}

.category-filter h3 {
    margin-bottom: 20px;
    color: var(--dark-color);
}

.search-wrapper {
    position: relative;
    max-width: 500px;
    margin: 0 auto 30px;
}

#productSearch {
    width: 100%;
    padding: 12px 20px 12px 45px;
    border: 2px solid var(--border-color);
    border-radius: 50px;
    font-size: 16px;
    transition: all 0.3s ease;
    outline: none;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

#productSearch:focus {
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
}

.search-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    font-size: 18px;
    pointer-events: none;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-btn {
    background-color: var(--light-color);
    border: 2px solid var(--border-color);
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.product-item {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-item:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-color: var(--primary-color);
}

.product-item h3 {
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.product-item p {
    font-size: 13px;
    margin-bottom: 8px;
}

.add-to-cart {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    width: 100%;
    margin-top: auto;
    transition: all 0.3s ease;
}

.add-to-cart:hover {
    background-color: #1d4ed8;
}

/* ===== Stats Section ===== */
.stats {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 40px 20px;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.stat h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat p {
    font-size: 16px;
    opacity: 0.9;
}

/* ===== About Content ===== */
.about-content {
    padding: 40px 20px;
}

.about-section {
    margin-bottom: 30px;
}

.about-section h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.about-section p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 15px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.value-card {
    background: #f3f4f6;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.value-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.benefits-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.benefits-list li {
    padding: 15px;
    background: #f9fafb;
    border-left: 4px solid var(--primary-color);
}

.certifications {
    list-style: none;
    display: grid;
    gap: 15px;
    margin-top: 20px;
}

.certifications li {
    padding: 10px 0;
    font-size: 16px;
}

/* ===== Contact Section ===== */
.contact-section {
    padding: 40px 20px;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 60px;
}

.contact-card {
    background: #f3f4f6;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    display: flex;
    flex-direction: column;
}

/* Make address card larger */
.contact-card:last-child {
    grid-column: 1 / -1;
    padding: 0; /* Remove padding to allow full-bleed map */
    display: flex;
    flex-direction: row;
    overflow: hidden;
    min-height: 250px;
}

.address-details {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 300px;
}

.address-map {
    flex: 1.5;
    min-height: 100%;
    background-color: #e5e7eb;
}

.address-actions {
    margin-top: 20px;
}

@media (max-width: 700px) {
    #map-container {
        min-height: 220px;
    }
    
    .contact-card:last-child {
        flex-direction: column;
    }
    
    .address-map {
        min-height: 180px;
        flex: none;
    }
}

.contact-card h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.contact-card p {
    margin-bottom: 10px;
    line-height: 1.6;
}

/* Address specific sizing */
.contact-address {
    font-size: 18px;
    line-height: 1.6;
}

@media (max-width: 480px) {
    .contact-address {
        font-size: 16px;
    }
}

.hours {
    font-size: 13px !important;
    color: #6b7280 !important;
}

/* ===== Contact Form ===== */
.contact-form-section {
    background: #f9fafb;
    padding: 30px;
    border-radius: 10px;
    max-width: 700px;
    margin: 0 auto;
}

.contact-form-section h2 {
    margin-bottom: 30px;
    color: var(--dark-color);
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark-color);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: inherit;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkbox input {
    width: auto;
    margin: 0;
}

.checkbox label {
    margin: 0;
    font-weight: 400;
}

.form-group button {
    width: 100%;
    padding: 14px;
    font-size: 16px;
}

.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 5px;
    text-align: center;
    font-weight: 600;
    display: none;
}

.form-message.success {
    background-color: #ecfdf5;
    color: #065f46;
    border: 1px solid #34d399;
    border-left: 5px solid #10b981;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.form-message.success::before {
    content: "✓";
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background-color: #10b981;
    color: white;
    border-radius: 50%;
    font-size: 13px;
    font-weight: bold;
    flex-shrink: 0;
}
.form-message.error {
    background-color: #fee2e2;
    color: #dc2626;
    display: block;
}

/* ===== FAQ Section ===== */
.faq-section {
    padding: 60px 20px;
    background-color: #f9fafb;
}

.faq-section h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 50px;
    color: var(--dark-color);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.faq-item {
    background: white;
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.faq-item h3 {
    font-size: 16px;
    margin-bottom: 12px;
    color: var(--dark-color);
}

.faq-item p {
    font-size: 14px;
    line-height: 1.6;
}

/* ===== Bulk Orders Section ===== */
.bulk-orders {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 40px 20px;
    text-align: center;
}

.bulk-orders h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.bulk-orders p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

/* ===== CTA Section ===== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 50px 20px;
    text-align: center;
}

.cta-section h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

/* ===== Brand Slider ===== */
.brand-slider {
    /* Slider Configuration - Edit these numbers here */
    --slide-width: 250px;
    --unique-slides: 6;
    --total-slides: 12; /* Set this to: unique-slides * 2 */
    padding: 40px 0;
    background-color: white;
    overflow: hidden;
    border-top: 1px solid var(--border-color);
}

.brand-slider h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--dark-color);
}

.slider {
    height: 100px;
    margin: auto;
    overflow: hidden;
    position: relative;
    width: 100%;
}

/* Gradient fade effect on sides */
.slider::before,
.slider::after {
    background: linear-gradient(to right, white 0%, rgba(255, 255, 255, 0) 100%);
    content: "";
    height: 100px;
    position: absolute;
    width: 150px;
    z-index: 2;
    pointer-events: none;
}

.slider::before { left: 0; top: 0; }
.slider::after {
    right: 0;
    top: 0;
    transform: rotateZ(180deg);
}

.slide-track {
    animation: scroll 30s linear infinite;
    display: flex;
    width: calc(var(--slide-width) * var(--total-slides));
}

.slide {
    height: 100px;
    width: var(--slide-width);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 30px;
    flex-shrink: 0;
}

.slide img {
    max-width: 100%;
    max-height: 70px;
    transition: all 0.3s ease;
}

.slide img:hover {
    transform: scale(1.1);
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(var(--slide-width) * var(--unique-slides) * -1)); }
}

@media (max-width: 768px) {
    .slider::before, .slider::after { width: 50px; }
    .brand-slider h2 { font-size: 28px; }
    .brand-slider {
        --slide-width: 150px;
    }
}

/* ===== Footer ===== */
.footer {
    background-color: var(--dark-color);
    color: white;
    padding: 40px 20px 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    margin-bottom: 15px;
    font-size: 16px;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 8px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    border-top: 1px solid #4b5563;
    padding-top: 20px;
    text-align: center;
    color: #9ca3af;
    font-size: 14px;
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
    .navbar .container {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .mobile-menu-btn {
        display: block;
    }

    .nav-menu {
        display: flex;
        position: fixed;
        top: 0;
        right: 0;
        height: 100%;
        width: 75%;
        max-width: 320px;
        flex-direction: column;
        gap: 0;
        padding-top: 60px;
        background-color: rgba(7, 18, 35, 0.98);
        box-shadow: -5px 0 25px rgba(0,0,0,0.25);
        z-index: 999;
        transform: translateX(100%);
        visibility: hidden;
        transition: transform 0.35s ease-in-out, visibility 0.35s;
        margin-top: 0;
        border-radius: 0;
        overflow-y: auto;
    }

    .nav-menu.active {
        transform: translateX(0);
        visibility: visible;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        display: block;
        padding: 15px;
        border-bottom: 1px solid rgba(255,255,255,0.05);
        text-align: center;
    }

    .hero-content h2 {
        font-size: 24px;
    }

    .hero-content p {
        font-size: 15px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-section {
        padding: 20px;
    }

    .features h2,
    .popular-products h2,
    .faq-section h2,
    .brand-slider h2,
    .about-section h2,
    .cta-section h2,
    .bulk-orders h2 {
        font-size: 22px;
        margin-bottom: 30px;
    }

    .page-header h1 {
        font-size: 22px;
    }

    .page-header p {
        font-size: 16px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    /* Reduce section padding for tablet/mobile */
    .hero, .page-header, .features, .popular-products, .product-catalog, .about-content, .contact-section, .faq-section, .cta-section, .bulk-orders, .brand-slider {
        padding-top: 40px;
        padding-bottom: 40px;
    }
}

@media (max-width: 480px) {
    .navbar .container {
        padding: 0 15px;
    }

    .site-logo {
        height: 35px;
    }

    .hero-content h2 {
        font-size: 20px;
    }

    .hero-content p {
        font-size: 13px;
    }

    .features h2,
    .popular-products h2,
    .faq-section h2,
    .brand-slider h2,
    .about-section h2,
    .cta-section h2,
    .bulk-orders h2 {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .products-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

    /* Mobile 2-Column Product Grid */
    .products-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .benefits-list {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    /* Compact elements for small screens */
    .page-header h1 {
        font-size: 20px;
    }
    
    .page-header p {
        font-size: 13px;
    }

    .product-card, .feature-card, .contact-card, .faq-item, .value-card {
        padding: 15px;
    }

    .product-card h3, .feature-card h3, .contact-card h3, .value-card h3 {
        font-size: 16px;
        margin-bottom: 5px;
    }

    .product-card p, .product-item p, .feature-card p, .contact-card p, .faq-item p, .value-card p, .specs {
        font-size: 13px;
    }

    .btn, .filter-btn {
        padding: 8px 15px;
        font-size: 13px;
    }

    /* Specific styles for 2-column mobile grid items */
    .product-item {
        padding: 10px;
    }

    .product-item h3 {
        font-size: 14px;
        margin-bottom: 5px;
        line-height: 1.3;
    }

    .add-to-cart {
        padding: 8px 5px;
        font-size: 12px;
        margin-top: auto;
    }

    .logo-text h1 {
        font-size: 14px;
    }
    
    .logo-text .tagline {
        font-size: 10px;
    }

    .footer-section h4 {
        font-size: 15px;
    }

    .footer-section p, .footer-section ul li a, .footer-bottom p {
        font-size: 12px;
    }
    
    .stat h3 {
        font-size: 28px;
    }
    
    .stat p {
        font-size: 13px;
    }
}

/* Prevent body scroll when mobile menu is open */
body.mobile-menu-open {
    overflow: hidden;
}

/* Scroll to Top Button */
#scrollTopBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 1000;
    font-size: 20px;
    border: none;
    outline: none;
    background-color: var(--primary-color);
    color: white;
    cursor: pointer;
    padding: 10px 15px;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    transition: background-color 0.3s, transform 0.3s;
}

#scrollTopBtn:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
}

/* WhatsApp Chat Button */
.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    left: 30px;
    z-index: 1000;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 14px rgba(0,0,0,0.4);
    background-color: #20bd5a;
}

/* WhatsApp Tooltip */
.whatsapp-btn::after {
    content: "Chat with us";
    position: absolute;
    left: 70px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #333;
    color: white;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    pointer-events: none;
}

.whatsapp-btn:hover::after {
    opacity: 1;
    visibility: visible;
}
