/* ==================== JO JO ELECTRONIC - MAIN STYLES ==================== */
/* Light & Elegant Design - Fully Responsive */
/* Version: Final - Error Free */

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

body {
    font-family: 'Segoe UI', 'Poppins', 'Inter', sans-serif;
    background-color: #FFFFFF;
    color: #1A1A1A;
    line-height: 1.6;
    overflow-x: hidden;
}

html { scroll-behavior: smooth; }

/* ==================== NAVBAR ==================== */
.navbar {
    background-color: #0A1929;
    height: 80px;
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.nav-logo { display: flex; align-items: baseline; gap: 4px; }
.logo-text { color: #FFFFFF; font-size: 1.8rem; font-weight: 700; letter-spacing: 1px; }
.logo-text-light { color: #3B82F6; font-size: 1.8rem; font-weight: 300; letter-spacing: 2px; }

.nav-menu { display: flex; list-style: none; gap: 40px; }

.nav-link {
    color: #CCCCCC; text-decoration: none; font-size: 1.1rem; font-weight: 500;
    transition: color 0.3s ease; padding-bottom: 5px; border-bottom: 2px solid transparent;
}
.nav-link:hover { color: #FFFFFF; }
.nav-link.active { color: #3B82F6; border-bottom: 2px solid #3B82F6; }

.nav-wa-btn {
    background-color: #25D366; color: #FFFFFF; text-decoration: none; padding: 10px 20px;
    border-radius: 50px; font-weight: 600; font-size: 0.95rem; transition: all 0.3s ease;
    display: inline-block; box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3);
}
.nav-wa-btn:hover { background-color: #20BA5A; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4); }

.nav-toggle { display: none; flex-direction: column; cursor: pointer; padding: 10px; margin-right: -10px; }

.bar {
    width: 25px; height: 3px; background-color: #FFFFFF; margin: 3px 0;
    transition: 0.3s; border-radius: 5px;
}

.nav-toggle.active .bar:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active .bar:nth-child(2) { opacity: 0; }
.nav-toggle.active .bar:nth-child(3) { transform: rotate(-45deg) translate(7px, -7px); }

/* ==================== OFFER BANNER ==================== */
.offer-banner {
    background-color: #F8FAFC; color: #0A1929; border-bottom: 1px solid #E2E8F0;
    border-left: 4px solid #1E3A8A; padding: 12px 20px; display: flex;
    justify-content: center; align-items: center; gap: 10px; position: relative; z-index: 1001;
}
.offer-content { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; justify-content: center; }
.offer-icon { font-size: 1.2rem; }
.offer-text { font-size: 0.95rem; color: #475569; }
.offer-text strong { color: #0A1929; }
.offer-countdown {
    background-color: #FFFFFF; padding: 5px 15px; border-radius: 30px;
    font-size: 0.9rem; color: #1E3A8A; border: 1px solid #E2E8F0;
}
.offer-countdown strong { font-weight: 700; letter-spacing: 0.5px; color: #0F172A; }
.offer-close {
    background: none; border: none; color: #94A3B8; font-size: 1.2rem;
    cursor: pointer; padding: 0 5px; transition: color 0.3s;
}
.offer-close:hover { color: #DC143C; }

/* ==================== HERO SECTION ==================== */
.hero {
    height: 90vh; min-height: 600px;
    background: linear-gradient(135deg, #0A1929 0%, #1E3A8A 40%, #3B82F6 100%);
    position: relative; display: flex; align-items: center; justify-content: center; text-align: center;
}
.hero-overlay { display: none; }
.hero-content {
    position: relative; z-index: 2; max-width: 900px; padding: 0 30px;
    color: #FFFFFF; animation: float 6s ease-in-out infinite;
}
.hero-title {
    font-size: 3.5rem; font-weight: 700; margin-bottom: 20px; line-height: 1.2;
    color: #FFFFFF; text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
.highlight {
    background: linear-gradient(135deg, #FBBF24 0%, #F59E0B 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    display: inline-block; font-weight: 800;
}
.hero-subtitle { font-size: 1.5rem; font-weight: 400; margin-bottom: 15px; color: #E2E8F0; }
.hero-description { font-size: 1.2rem; margin-bottom: 35px; color: #CBD5E1; letter-spacing: 2px; }
.hero-buttons { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }

.btn {
    padding: 15px 35px; font-size: 1.1rem; font-weight: 600; text-decoration: none;
    border-radius: 50px; transition: all 0.3s ease; display: inline-block; cursor: pointer;
}
.btn-primary { background-color: #FFFFFF; color: #0A1929; box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3); }
.btn-primary:hover { background-color: #F8FAFC; transform: translateY(-3px); box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4); }
.btn-outline { background-color: transparent; color: #FFFFFF; border: 2px solid #FFFFFF; }
.btn-outline:hover { background-color: #FFFFFF; color: #0A1929; transform: translateY(-3px); }

/* ==================== HERO PARTICLES ==================== */
.hero::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, rgba(255,255,255,0.2), transparent),
        radial-gradient(2px 2px at 40% 70%, rgba(255,255,255,0.2), transparent),
        radial-gradient(2px 2px at 80% 50%, rgba(255,255,255,0.2), transparent),
        radial-gradient(2px 2px at 10% 80%, rgba(255,255,255,0.2), transparent),
        radial-gradient(2px 2px at 70% 40%, rgba(255,255,255,0.2), transparent),
        radial-gradient(2px 2px at 90% 90%, rgba(255,255,255,0.2), transparent),
        radial-gradient(2px 2px at 30% 60%, rgba(255,255,255,0.2), transparent);
    background-size: 200% 200%; animation: particles 20s linear infinite; z-index: 1; pointer-events: none;
}
@keyframes particles {
    0% { background-position: 0% 0%; }
    100% { background-position: 100% 100%; }
}
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* ==================== FEATURED PRODUCTS SECTION ==================== */
.featured-products { padding: 80px 0; background-color: #F8FAFC; }
.container { max-width: 1300px; margin: 0 auto; padding: 0 30px; }
.section-header { text-align: center; margin-bottom: 50px; }
.section-title { font-size: 2.8rem; font-weight: 700; color: #0A1929; margin-bottom: 10px; }
.section-title .highlight {
    background: linear-gradient(135deg, #1E3A8A 0%, #3B82F6 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.section-subtitle { font-size: 1.2rem; color: #64748B; }
.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; margin-bottom: 50px; }

/* ==================== PRODUCT CARD ==================== */
.product-card {
    background-color: #FFFFFF; border-radius: 16px; overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04); transition: all 0.35s ease;
    position: relative; border: 1px solid #F1F5F9;
}
.product-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1); border-color: #3B82F6; }
.product-card::after {
    content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 4px;
    background: linear-gradient(90deg, #3B82F6, #1E3A8A); transform: scaleX(0); transition: transform 0.4s ease;
}
.product-card:hover::after { transform: scaleX(1); }

.product-image {
    position: relative; height: 220px; overflow: hidden; background-color: #F8FAFC;
    display: flex; align-items: center; justify-content: center;
}
.product-image img {
    width: 100%; height: 100%; object-fit: contain; padding: 10px; transition: transform 0.5s ease;
}
.product-card:hover .product-image img { transform: scale(1.08); }

.product-category {
    position: absolute; top: 15px; left: 15px; background-color: #0A1929; color: #FFFFFF;
    padding: 5px 12px; border-radius: 30px; font-size: 0.7rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 1px; transition: all 0.3s ease;
}
.product-card:hover .product-category { background-color: #3B82F6; }

.product-info { padding: 20px; }
.product-name {
    font-size: 1rem; font-weight: 600; color: #0A1929; margin-bottom: 8px;
    transition: color 0.3s ease; white-space: normal; word-wrap: break-word;
    overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.product-card:hover .product-name { color: #1E3A8A; }
.product-price { font-size: 1.3rem; font-weight: 700; color: #1E3A8A; margin-bottom: 8px; }
.product-desc {
    font-size: 0.85rem; color: #64748B; margin-bottom: 18px;
    overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.product-actions { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }

.btn-small {
    padding: 8px 16px; font-size: 0.85rem; background-color: #1E3A8A; color: #FFFFFF; transition: all 0.3s ease;
}
.btn-small:hover { background-color: #3B82F6; transform: translateY(-2px); }
.btn-wa-small {
    background-color: #25D366; color: #FFFFFF; padding: 8px 12px; border-radius: 50px;
    font-size: 0.85rem; text-decoration: none; font-weight: 500; transition: all 0.3s ease; display: inline-block;
}
.btn-wa-small:hover { background-color: #20BA5A; transform: translateY(-2px); }
.view-all-wrapper { text-align: center; }
.btn-outline-dark {
    background-color: transparent; color: #0A1929; border: 2px solid #1E3A8A;
    padding: 12px 35px; font-weight: 600; transition: all 0.3s ease;
}
.btn-outline-dark:hover { background-color: #1E3A8A; color: #FFFFFF; transform: translateY(-3px); }

/* ==================== PRODUCTS PAGE FILTER BAR ==================== */
.filter-bar {
    background-color: #FFFFFF; padding: 20px 0; border-bottom: 1px solid #E2E8F0;
    position: sticky; top: 80px; z-index: 99; box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.filter-container {
    max-width: 1300px; margin: 0 auto; padding: 0 30px;
    display: flex; flex-wrap: wrap; gap: 20px; align-items: center; justify-content: space-between;
}
.search-wrapper { flex: 2; min-width: 280px; position: relative; }
.search-wrapper i { position: absolute; left: 15px; top: 50%; transform: translateY(-50%); color: #94A3B8; }
.search-input {
    width: 100%; padding: 14px 20px 14px 45px; border: 2px solid #E2E8F0;
    border-radius: 50px; font-size: 1rem; transition: all 0.3s ease;
}
.search-input:focus { outline: none; border-color: #3B82F6; box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1); }
.filter-controls { display: flex; gap: 15px; flex-wrap: wrap; }
.filter-select {
    padding: 12px 20px; border: 2px solid #E2E8F0; border-radius: 50px;
    font-size: 0.95rem; background-color: #FFFFFF; cursor: pointer; transition: all 0.3s ease;
}
.filter-select:focus { outline: none; border-color: #3B82F6; }
.results-count { color: #64748B; font-size: 0.95rem; }
.all-products { padding: 60px 0; background-color: #F8FAFC; min-height: 500px; }
.no-results { text-align: center; padding: 60px 20px; color: #64748B; grid-column: 1 / -1; }
.no-results i { font-size: 4rem; color: #CBD5E1; margin-bottom: 20px; }

/* ==================== ABOUT & CONTACT PAGES ==================== */
.about-header, .contact-header {
    background: linear-gradient(135deg, #0A1929 0%, #1E3A8A 100%);
    padding: 60px 0; text-align: center; color: #FFFFFF;
}
.about-header h1, .contact-header h1 { font-size: 3rem; margin-bottom: 10px; }
.about-header p, .contact-header p { font-size: 1.2rem; color: #CBD5E1; }
.about-content, .contact-content { padding: 60px 0; background-color: #F8FAFC; }
.about-grid, .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.about-text h2, .contact-info h2 { font-size: 2rem; color: #0A1929; margin-bottom: 20px; }
.about-text p { color: #475569; margin-bottom: 20px; font-size: 1.1rem; line-height: 1.8; }
.about-highlight { background-color: #FFFFFF; padding: 30px; border-radius: 16px; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); text-align: center; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 50px; }
.feature-card {
    background-color: #FFFFFF; padding: 30px; border-radius: 16px; text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05); transition: all 0.3s ease;
}
.feature-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); }
.feature-card i { color: #3B82F6; font-size: 2.5rem; margin-bottom: 20px; }

.info-card {
    background-color: #FFFFFF; padding: 25px; border-radius: 16px; margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05); display: flex; align-items: flex-start;
    gap: 20px; transition: all 0.3s ease;
}
.info-card:hover { transform: translateX(5px); box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1); }
.info-icon {
    background: linear-gradient(135deg, #1E3A8A 0%, #3B82F6 100%); width: 50px; height: 50px;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    color: #FFFFFF; font-size: 1.3rem; flex-shrink: 0;
}
.info-details h4 { color: #0A1929; margin-bottom: 5px; font-size: 1.1rem; }
.info-details p { color: #64748B; line-height: 1.6; }
.info-details a { color: #3B82F6; text-decoration: none; font-weight: 500; transition: color 0.3s ease; }
.info-details a:hover { color: #1E3A8A; text-decoration: underline; }
.business-hours { background-color: #FFFFFF; padding: 25px; border-radius: 16px; box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05); }
.business-hours h3 { color: #0A1929; margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.hours-item { display: flex; justify-content: space-between; color: #475569; padding: 8px 0; border-bottom: 1px solid #E2E8F0; }
.hours-item:last-child { border-bottom: none; }
.map-container { background-color: #FFFFFF; padding: 10px; border-radius: 16px; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); }
#map { height: 400px; width: 100%; border-radius: 12px; z-index: 1; }

/* ==================== FOOTER ==================== */
.footer { background-color: #0A1929; color: #FFFFFF; padding: 50px 0 20px; }
.footer-content { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-bottom: 40px; }
.footer-section h3 { color: #FFFFFF; font-size: 1.5rem; margin-bottom: 20px; }
.footer-section h4 { color: #FFFFFF; font-size: 1.2rem; margin-bottom: 20px; }
.footer-section p { color: #CBD5E1; line-height: 1.8; margin-bottom: 20px; }
.footer-section ul { list-style: none; }
.footer-section ul li { margin-bottom: 10px; }
.footer-section ul li a { color: #CBD5E1; text-decoration: none; transition: color 0.3s ease; }
.footer-section ul li a:hover { color: #3B82F6; }
.footer-section i { margin-right: 10px; color: #3B82F6; width: 20px; }
.social-links { display: flex; gap: 15px; margin-top: 15px; }
.social-links a {
    background-color: #1E3A8A; color: #FFFFFF; width: 40px; height: 40px;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    text-decoration: none; transition: all 0.3s ease;
}
.social-links a:hover { background-color: #3B82F6; transform: translateY(-3px); }
.social-links i { margin-right: 0 !important; color: #FFFFFF; font-size: 1.2rem; }
.footer-bottom { text-align: center; padding-top: 30px; border-top: 1px solid #1E3A8A; color: #94A3B8; font-size: 0.9rem; }

/* ==================== REVIEWS SYSTEM ==================== */
.reviews-section { margin-top: 40px; padding: 30px; background: #FFFFFF; border-radius: 16px; box-shadow: 0 4px 15px rgba(0,0,0,0.05); }
.reviews-section h3 { color: #0A1929; margin-bottom: 10px; font-size: 1.5rem; }
.reviews-section h3 i { color: #FBBF24; margin-right: 8px; }
.average-rating { display: flex; align-items: center; gap: 15px; margin-bottom: 25px; padding: 20px; background: #F8FAFC; border-radius: 12px; }
.rating-big { font-size: 3rem; font-weight: 700; color: #0A1929; }
.rating-stars-display { color: #FBBF24; font-size: 1.4rem; }
.rating-text { color: #64748B; font-size: 0.95rem; }
.review-form { margin-bottom: 30px; padding: 25px; background: #F8FAFC; border-radius: 12px; border: 1px solid #E2E8F0; }
.review-form h4 { color: #0A1929; margin-bottom: 15px; }
.stars-input { display: flex; gap: 8px; margin-bottom: 15px; font-size: 2rem; cursor: pointer; }
.stars-input i { color: #CBD5E1; transition: all 0.2s ease; }
.stars-input i:hover, .stars-input i.active { color: #FBBF24; transform: scale(1.2); }
.review-form input, .review-form textarea {
    width: 100%; padding: 12px 15px; margin-bottom: 12px; border: 1px solid #E2E8F0;
    border-radius: 10px; font-size: 1rem; font-family: inherit; transition: border-color 0.3s;
}
.review-form input:focus, .review-form textarea:focus { outline: none; border-color: #3B82F6; box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1); }
.review-form textarea { resize: vertical; min-height: 80px; }
.btn-submit-review {
    background: linear-gradient(135deg, #3B82F6 0%, #1E3A8A 100%); color: #FFFFFF;
    padding: 12px 30px; border: none; border-radius: 50px; font-size: 1rem; font-weight: 600;
    cursor: pointer; transition: all 0.3s ease;
}
.btn-submit-review:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3); }
.review-card { padding: 20px; margin-bottom: 15px; background: #F8FAFC; border-radius: 12px; border-left: 4px solid #3B82F6; transition: transform 0.2s; }
.review-card:hover { transform: translateX(5px); }
.review-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.review-stars { color: #FBBF24; font-size: 0.9rem; }
.review-name { font-weight: 600; color: #0A1929; font-size: 1.05rem; }
.review-text { color: #475569; font-size: 0.95rem; line-height: 1.6; margin-top: 8px; }
.review-date { color: #94A3B8; font-size: 0.8rem; margin-top: 8px; }
.no-reviews { text-align: center; padding: 30px; color: #94A3B8; }
.no-reviews i { font-size: 3rem; margin-bottom: 10px; }
.review-success { display: none; background: #25D366; color: #FFFFFF; padding: 12px 20px; border-radius: 10px; text-align: center; margin-bottom: 15px; font-weight: 600; animation: fadeIn 0.3s; }
.product-rating-mini { display: flex; align-items: center; gap: 5px; margin-bottom: 8px; }
.product-rating-mini .stars { color: #FBBF24; font-size: 0.8rem; }
.product-rating-mini .count { color: #64748B; font-size: 0.75rem; }

/* ==================== SCROLL TO TOP ==================== */
.scroll-top-btn {
    position: fixed; bottom: 30px; left: 30px; width: 50px; height: 50px;
    background: #FFFFFF; color: #1E3A8A; border: 2px solid #1E3A8A; border-radius: 50%;
    font-size: 1.3rem; cursor: pointer; z-index: 997; display: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1); transition: all 0.3s ease;
}
.scroll-top-btn:hover { background: #1E3A8A; color: #FFFFFF; transform: translateY(-5px); box-shadow: 0 8px 25px rgba(30, 58, 138, 0.3); }
.scroll-top-btn.visible { display: block; }

/* ==================== FLOATING WHATSAPP ==================== */
.whatsapp-float {
    position: fixed; bottom: 30px; right: 30px; width: 60px; height: 60px;
    background: #25D366; color: #FFFFFF; border-radius: 50%; text-align: center;
    font-size: 2rem; display: flex; align-items: center; justify-content: center;
    text-decoration: none; box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4); z-index: 998; transition: all 0.3s ease;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6); }

/* ==================== BOUNCE ARROW ==================== */
.bounce-arrow {
    position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
    color: #FFFFFF; font-size: 2rem; animation: bounce 2s infinite; z-index: 3; cursor: pointer;
}
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-20px); }
    60% { transform: translateX(-50%) translateY(-10px); }
}

/* ==================== TYPEWRITER CURSOR ==================== */
.cursor { display: inline-block; color: #FBBF24; font-weight: 300; animation: blink 0.8s infinite; }
@keyframes blink { 0%, 50% { opacity: 1; } 51%, 100% { opacity: 0; } }
@keyframes fadeIn { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* ==================== REVEAL ON SCROLL ==================== */
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s ease; }
.reveal.active { opacity: 1; transform: translateY(0); }

/* ==================== CUSTOM SCROLLBAR ==================== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #F1F5F9; }
::-webkit-scrollbar-thumb { background: #CBD5E1; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #94A3B8; }
::selection { background: #3B82F6; color: #FFFFFF; }
::-moz-selection { background: #3B82F6; color: #FFFFFF; }

/* ==================== RESPONSIVE (Mobile) ==================== */
@media screen and (max-width: 768px) {
    .nav-menu {
        position: fixed; left: -100%; top: 80px; flex-direction: column;
        background-color: #0A1929; width: 100%; height: calc(100vh - 80px);
        text-align: center; padding: 30px 0; gap: 25px;
        transition: 0.3s ease-in-out; box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
        z-index: 999; overflow-y: auto;
    }
    .nav-menu.active { left: 0; }
    .nav-menu .nav-link { font-size: 1.3rem; padding: 12px 0; display: block; }
    .nav-contact { display: none; }
    .nav-toggle { display: flex; }
    .logo-text, .logo-text-light { font-size: 1.4rem; }

    .hero { height: 70vh; min-height: 450px; }
    .hero-content { padding: 0 20px; }
    .hero-title { font-size: 1.8rem; }
    .hero-subtitle { font-size: 1rem; }
    .hero-description { font-size: 0.85rem; }

    .btn { padding: 12px 25px; font-size: 1rem; width: 90%; max-width: 280px; }
    .hero-buttons { flex-direction: column; align-items: center; }

    .products-grid { grid-template-columns: 1fr; gap: 20px; padding: 0 10px; }
    .product-card { max-width: 100%; margin: 0 auto; }
    .product-image { height: 180px; }
    .product-image img { object-fit: contain; padding: 10px; }
    .product-name { font-size: 0.95rem; }
    .product-price { font-size: 1.1rem; }
    .product-desc { font-size: 0.8rem; }
    .product-actions { flex-direction: column; gap: 8px; }
    .btn-small, .btn-wa-small { width: 100%; text-align: center; padding: 10px; }
    .btn-outline-dark { width: 90%; }

    .section-title { font-size: 1.6rem; }
    .featured-products { padding: 40px 0; }

    .filter-bar { position: relative; top: 0; padding: 15px 0; }
    .filter-container { flex-direction: column; gap: 12px; align-items: stretch; padding: 0 20px; }
    .search-wrapper { min-width: 100%; }
    .search-input { padding: 12px 20px 12px 45px; font-size: 0.9rem; }
    .filter-controls { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; width: 100%; }
    .filter-select { padding: 10px 12px; font-size: 0.85rem; width: 100%; }
    .results-count { text-align: center; font-size: 0.9rem; padding-top: 5px; }
    .all-products { padding: 30px 0; }

        .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 30px; }
    .about-header h1, .contact-header h1 { font-size: 2rem; }
    .features-grid { grid-template-columns: 1fr; gap: 20px; }

    .footer { padding: 40px 0 20px; }
    .footer-content { grid-template-columns: 1fr; text-align: center; gap: 30px; }
    .social-links { justify-content: center; }

    #map { height: 250px; }
    .info-card { padding: 15px; }
    .info-icon { width: 40px; height: 40px; font-size: 1.1rem; }

    .whatsapp-float { bottom: 25px; right: 20px; width: 55px; height: 55px; font-size: 1.8rem; }
    .scroll-top-btn { bottom: 20px; left: 20px; width: 45px; height: 45px; font-size: 1.1rem; }
}

/* ==================== RESPONSIVE (Extra Small Phones) ==================== */
@media screen and (max-width: 480px) {
    .hero-title { font-size: 1.5rem; }
    .hero-subtitle { font-size: 0.9rem; }
    .hero-content { margin-top: -20px; }
    .product-name { font-size: 0.9rem; }
    .product-price { font-size: 1rem; }
    .filter-controls { grid-template-columns: 1fr; }
}

/* ==================== RESPONSIVE (Tablet) ==================== */
@media screen and (max-width: 1024px) and (min-width: 769px) {
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-title { font-size: 2.5rem; }
}
    
    
