html, body {
    overflow-x: hidden !important;
    scroll-behavior: smooth;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    outline: none !important;
    width: 100%;
}

:root {
    --primary: #FF7B00;
    --primary-dark: #E66F00;
    --dark: #1A1A1A;
    --dark-grey: #333333;
    --light-grey: #F8F9FA;
    --white: #FFFFFF;
    --text-dark: #2D2D2D;
    --text-muted: #666666;
    --border: #E5E5E5;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.25s cubic-bezier(0.2, 1, 0.3, 1);
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.6s ease;
}

#preloader.fade-out {
    opacity: 0;
    pointer-events: none;
}

.preloader-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.preloader-logo {
    width: 280px;
    height: auto;
    animation: pulse 1.5s infinite ease-in-out;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.3));
}

.preloader-bar {
    width: 100px;
    height: 3px;
    background: rgba(255,123,0,0.2);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.preloader-bar::after {
    content: '';
    position: absolute;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary);
    animation: loading 1.5s infinite ease;
}

@keyframes pulse {
    0% { transform: scale(0.95); opacity: 0.8; }
    50% { transform: scale(1.05); opacity: 1; }
    100% { transform: scale(0.95); opacity: 0.8; }
}

.preloader-text {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 10px;
    opacity: 0.7;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

/* Entrance Animations */
.hero-text, .hero-logo-card, .diff-card, .category-card, .section-title, .stat-item {
    opacity: 0;
    transform: translateY(20px);
    transition: transform 0.35s cubic-bezier(0.2, 1, 0.3, 1), opacity 0.35s ease-out;
    will-change: transform, opacity;
}

body.loaded .hero-text {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

body.loaded .hero-logo-card {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}

body.loaded .diff-card, body.loaded .category-card, body.loaded .section-title, body.loaded .stat-item {
    opacity: 1;
    transform: translateY(0);
}

body.loaded .stat-item:nth-child(1) { transition-delay: 0.5s; }
body.loaded .stat-item:nth-child(2) { transition-delay: 0.6s; }
body.loaded .stat-item:nth-child(3) { transition-delay: 0.7s; }


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

ul {
    list-style: none;
}

.highlight {
    color: var(--primary);
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.2, 1, 0.3, 1);
    font-family: var(--font-heading);
    border: none;
    touch-action: manipulation;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 123, 0, 0.2);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.1rem;
    margin-top: 30px;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    z-index: 1000;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
}

/* Header / Navbar */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    z-index: 900;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 123, 0, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo img {
    height: 55px;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.2));
}

.brand-text-fallback {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
}

.nav-menu ul {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
    font-family: var(--font-heading);
}

.nav-menu a:hover {
    color: var(--primary);
}

.nav-cta {
    background: var(--primary);
    padding: 10px 20px;
    border-radius: 6px;
    color: var(--white) !important;
}

.nav-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* Page Spacing for fixed header */
body {
    padding-top: 70px;
}

section {
    scroll-margin-top: 100px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--dark) 0%, #2A2A2A 100%);
    padding: 160px 0 100px;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, #ffffff0a 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.hero-text {
    flex: 1;
}

.location-badge {
    background: rgba(255, 123, 0, 0.1);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 20px;
    display: inline-block;
    border: 1px solid var(--primary);
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero p {
    font-size: 1.25rem;
    color: #CCCCCC;
    margin-bottom: 35px;
    max-width: 600px;
}

.hero-btns {
    display: flex;
    gap: 15px;
    margin-bottom: 50px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.stat-item {
    display: flex;
    flex-direction: column;
    min-width: 100px; /* Stabilizes width during count */
}

.stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    font-variant-numeric: tabular-nums;
    display: inline-block;
    min-height: 2.4rem;
}

.stat-label {
    font-size: 0.8rem;
    color: #888;
    font-weight: 600;
    letter-spacing: 1px;
}

.hero-logo-card {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.main-logo-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    background: transparent;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    filter: contrast(1.05) saturate(1.1) drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
}

.logo-box {
    width: 400px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

/* Diferenciais */
.diferenciais {
    padding: 80px 0;
    background: var(--white);
}

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

.diff-card {
    text-align: center;
    padding: 20px;
}

.icon-circle {
    width: 80px;
    height: 80px;
    background: var(--dark);
    color: var(--primary);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.diff-card:hover .icon-circle {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-10px) rotateY(360deg);
    box-shadow: 0 10px 20px rgba(255,123,0,0.3);
}

.diff-card {
    transition: var(--transition);
}

.diff-card:hover {
    transform: translateY(-5px);
}

.diff-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.diff-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Products */
.products {
    padding: 100px 0;
    background: var(--light-grey);
}

.section-tag {
    background: #FFF3E0;
    color: var(--primary);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    display: inline-block;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
}

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

.product-categories {
    margin-top: 50px;
    margin-bottom: 80px;
}

.category-card {
    height: 400px;
    border-radius: 15px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    padding: 30px;
    color: var(--white);
    text-align: left;
    transition: var(--transition);
    cursor: pointer;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* Interactivity Features */
#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: var(--primary);
    z-index: 9999;
}

#back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    background: var(--dark);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    border: 1px solid var(--primary);
}

#back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 25px;
    min-height: 3.5rem;
    white-space: pre-wrap; /* Garante que os espaços do typewriter apareçam */
}

/* Scroll Reveal Base */
.diff-card, .category-card, .section-title, .mvv-card, .vendedor-card, .brand-item, .mini-prod-card, .testimonial-card, .loc-card {
    opacity: 0;
    transform: translateY(20px);
    transition: transform 0.35s cubic-bezier(0.2, 1, 0.3, 1), opacity 0.35s ease-out;
    scroll-margin-top: 100px;
    will-change: transform, opacity;
}

.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes cursorBlink {
    0%, 100% { border-color: transparent; }
    50% { border-color: var(--primary); }
}

a, button, .mini-prod-card, .category-card {
    transition: all 0.1s ease-out;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

@media (hover: hover) {
    a:hover, button:hover {
        opacity: 0.9;
    }
}

a:active, button:active, .mini-prod-card:active, .category-card:active {
    transform: scale(0.96);
    opacity: 0.8;
}

.category-card:hover {
    transform: translateY(-10px);
}

.category-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--primary);
}

.all-products-grid {
    background: var(--white);
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
}

.products-grid-container {
    background: #FFFCF7;
    padding: 40px 0;
    margin-top: 50px;
    border-radius: 30px;
}

.mini-products-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    padding: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.mini-prod-card {
    background: var(--white);
    border-radius: 18px;
    padding: 25px 20px;
    text-align: center;
    border: 1px solid #F0EAD6;
    transition: transform 0.25s cubic-bezier(0.2, 1, 0.3, 1), border-color 0.2s ease, box-shadow 0.25s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    touch-action: manipulation;
}

@media (hover: hover) {
    .mini-prod-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(
            120deg,
            transparent,
            rgba(255, 255, 255, 0.3),
            transparent
        );
        transition: 0.4s;
    }

    .mini-prod-card:hover::before {
        left: 100%;
    }

    .mini-prod-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08), 0 5px 15px rgba(255, 123, 0, 0.05);
        border-color: var(--primary);
        background: #FFFDFB;
    }

    .mini-prod-card:hover .mini-img {
        transform: scale(1.15) translateY(-5px);
    }
}

.mini-img {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s cubic-bezier(0.2, 1, 0.3, 1);
}

.mini-img img, .mini-img i {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    mix-blend-mode: multiply; /* Remove fundos brancos residuais */
}

.mini-img i {
    font-size: 24px;
    color: var(--primary);
}

.mini-prod-card span {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-dark);
    font-family: var(--font-heading);
}

@media (max-width: 768px) {
    .mobile-toggle { display: block; z-index: 1001; }
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        height: 100vh;
        background: var(--dark);
        padding: 100px 30px;
        transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        box-shadow: 10px 0 30px rgba(0,0,0,0.5);
    }
    .nav-menu.active { left: 0; }
    .nav-menu ul { flex-direction: column; gap: 30px; align-items: flex-start; }
    .hero h1 { font-size: 1.8rem; margin-top: 20px; }
    .hero p { font-size: 0.95rem; }
    .hero-content { flex-direction: column; text-align: center; padding-top: 40px; }
    .hero-text { order: 2; width: 100%; }
    .hero-logo-card { order: 1; margin-bottom: 30px; }
    .logo-box { width: 150px; height: 150px; }
    .hero-btns { flex-direction: column; width: 100%; }
    .hero-btns .btn { width: 100%; justify-content: center; }
    .hero-stats { grid-template-columns: repeat(3, 1fr); gap: 15px; margin-top: 30px; }
    .stat-value { font-size: 1.2rem; }
    .stat-label { font-size: 0.65rem; }
    .mini-products-grid { grid-template-columns: repeat(2, 1fr); padding: 15px; gap: 10px; }
    .section-title { font-size: 1.5rem; }
    section { padding: 40px 0; }
    .vendedores-grid, .mvv-grid, .testimonials-grid { grid-template-columns: 1fr !important; gap: 30px; }
    .container { padding: 0 20px; }
    #back-to-top { bottom: 85px; right: 20px; width: 40px; height: 40px; }
    .whatsapp-float { bottom: 20px; right: 20px; width: 50px; height: 50px; }
    
    /* Technical Mobile Fixes (Sub-pixel bleed) */
    .main-header {
        left: -1px;
        width: calc(100% + 2px);
        box-shadow: inset 1px 0 0 rgba(26,26,26,1), inset -1px 0 0 rgba(26,26,26,1);
    }
    .hero {
        left: -1px;
        width: calc(100% + 2px);
        padding: 60px 0;
        box-shadow: inset 1px 0 0 var(--dark), inset -1px 0 0 var(--dark);
    }
}

.product-icons-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.prod-item {
    background: #FFFBF7;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #FFEEDD;
    transition: var(--transition);
}

.prod-item:hover {
    background: var(--white);
    border-color: var(--primary);
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 10px 25px rgba(255,123,0,0.15);
    z-index: 10;
}

.prod-icon {
    color: var(--primary);
    margin-bottom: 10px;
}

.prod-item span {
    font-weight: 600;
    font-size: 0.9rem;
}

/* Testimonials */
.testimonials {
    padding: 50px 0;
}

.testimonials-grid {
    margin-top: 50px;
}

.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid var(--border);
    position: relative;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 50px rgba(255,123,0,0.1);
}

.quote-icon {
    color: var(--primary);
    opacity: 0.2;
    margin-bottom: 20px;
}

.testimonial-card p {
    font-style: italic;
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.stars {
    color: #FFB400;
    margin: 10px 0;
    font-size: 0.9rem;
}

.testimonial-card h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
}

/* MVV */
.mvv {
    padding: 50px 0;
    background: var(--light-grey);
}

.mvv-card {
    padding: 40px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.03);
    transition: var(--transition);
}

.mvv-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

.mvv-card:hover .mvv-icon {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.1);
}

.mvv-icon {
    width: 70px;
    height: 70px;
    border: 3px solid var(--primary);
    color: var(--primary);
    border-radius: 50%;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.mvv-card h3 {
    font-family: var(--font-heading);
    margin-bottom: 15px;
    color: var(--primary);
}

/* Vendedores */
.vendedores {
    padding: 50px 0;
}

.vendedor-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.vendedor-card:hover {
    transform: scale(1.03);
    border-color: var(--primary);
}

.user-icon {
    width: 60px;
    height: 60px;
    background: #FFF3E0;
    color: var(--primary);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vendedor-card h3 {
    margin-bottom: 20px;
}

.vendedor-card p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 5px;
}

.vendedor-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 25px;
}

.btn-secondary, .btn-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.btn-secondary {
    background: #FFF3E0;
    color: var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 123, 0, 0.3);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.2);
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

/* Brands Section Fix */
.marcas {
    overflow: hidden;
    padding: 30px 0;
    width: 100%;
    background: var(--white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.brands-grid {
    display: flex;
    gap: 40px;
    width: max-content;
    animation: scrollBrands 30s linear infinite;
    padding: 10px 0;
}

.brand-item {
    flex: 0 0 auto;
    width: 150px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    padding: 10px;
}

.brand-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

@keyframes scrollBrands {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-150px * 12 - 40px * 12)); } /* (Item Width * 12) + (Gap * 12) */
}

/* Location */
.localizacao {
    padding: 100px 0;
    background: var(--light-grey);
}

.loc-content {
    margin-top: 50px;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    align-items: start;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transition: var(--transition);
    border: 1px solid var(--border);
}

.map-container:hover {
    transform: scale(1.02);
    box-shadow: 0 30px 60px rgba(255,123,0,0.15);
}

.loc-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.loc-card {
    background: var(--white);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.loc-card:hover {
    border-color: var(--primary);
    background: #FFFBFA;
}

.card-destaque {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--primary);
}

.loc-badge {
    background: var(--primary);
    color: var(--white);
    font-size: 0.65rem;
    padding: 2px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    vertical-align: middle;
    margin-left: 10px;
    letter-spacing: 1px;
}

.loc-card .info-block {
    display: flex;
    gap: 20px;
    align-items: center;
}

.loc-icon {
    color: var(--primary);
    width: 30px;
    height: 30px;
    flex-shrink: 0;
}

.info-text h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--dark);
}

.info-text p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.loc-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* Footer */
footer {
    background: var(--dark);
    color: var(--white);
    padding: 60px 0;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo-img {
    height: 100px;
    width: auto;
    object-fit: contain;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.copyright, .footer-address {
    margin-top: 20px;
    color: #666;
    font-size: 0.85rem;
}

.footer-address a:hover {
    color: var(--primary);
}

.footer-address {
    margin-top: 10px;
}

/* Responsiveness */
@media (max-width: 1024px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    .hero-text {
        order: 2;
    }
    .hero-logo-card {
        order: 1;
        justify-content: center;
    }
    .hero h1 {
        font-size: 2.8rem;
    }
    .hero-btns {
        justify-content: center;
    }
    .hero-stats {
        justify-content: center;
    }
    .grid-4, .grid-3, .grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }
    .product-icons-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .brands-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .loc-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }
    .hero-stats {
        gap: 20px;
        margin-top: 35px;
        justify-content: center;
        width: 100%;
    }
    .stat-value { 
        font-size: 1.5rem; 
        min-height: auto;
    }
    .stat-label { 
        font-size: 0.8rem; 
    }
    .grid-4, .grid-3, .grid-2 {
        grid-template-columns: 1fr;
    }
    .product-icons-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .logo-box {
        width: 180px;
        height: auto;
    }
    .logo-text-big {
        font-size: 3.5rem;
    }
}
