/* Eren Perde Master Stylesheet - 100% Unified Deep Dark Gold Mode & 100% Bulletproof Mobile Responsive */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --primary-gold: #d4af37;
    --primary-gold-bright: #f3e5ab;
    --primary-gold-dark: #aa7c11;
    --primary-gold-light: #e5c158;
    
    --bg-dark-root: #0b0c10;
    --bg-dark-card: #14161e;
    --bg-dark-header: #0b0c10;
    --bg-dark-nav: #0b0c10;

    --text-light: #f8fafc;
    --text-muted: #94a3b8;
    --text-gold: #d4af37;
    
    --gold-border: rgba(212, 175, 55, 0.3);
    --gold-border-bright: rgba(212, 175, 55, 0.7);
    --gold-shadow: 0 8px 30px rgba(212, 175, 55, 0.25);
    --gold-gradient: linear-gradient(135deg, #f3e5ab 0%, #d4af37 50%, #aa7c11 100%);
    
    --transition-fast: all 0.3s ease;
    --radius-sm: 8px;
    --radius-md: 14px;
}

/* ZERO HORIZONTAL SCROLL & BASE RESET */
*, *:before, *:after {
    margin: 0;
    padding: 0;
    box-sizing: border-box !important;
    max-width: 100%;
}

html, body {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden !important;
    position: relative;
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: #0b0c10 !important;
    color: var(--text-light);
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 { font-family: 'Montserrat', sans-serif; font-weight: 700; color: #ffffff; line-height: 1.3; word-wrap: break-word; }
a { text-decoration: none; color: inherit; transition: var(--transition-fast); }
ul { list-style: none; }
img, video, iframe { max-width: 100%; height: auto; display: block; }

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 16px;
}

/* TOP HEADER */
.top-header { background-color: #0b0c10 !important; color: #cbd5e1; font-size: 0.83rem; padding: 8px 0; border-bottom: 1px solid var(--gold-border); width: 100%; overflow: hidden; }
.top-header .container { display: flex; justify-content: space-between; align-items: center; }
.top-info { display: flex; gap: 25px; align-items: center; }
.top-info span { display: flex; align-items: center; gap: 8px; white-space: nowrap; }
.top-info i { color: var(--primary-gold); font-size: 0.9rem; }
.top-contact { display: flex; align-items: center; gap: 20px; }
.top-contact a { color: #ffffff; display: flex; align-items: center; gap: 6px; font-weight: 600; white-space: nowrap; }
.top-contact a:hover { color: var(--primary-gold-bright); }
.social-links { display: flex; gap: 10px; align-items: center; }
.social-links a { width: 28px; height: 28px; border-radius: 50%; background: rgba(212,175,55,0.1); border: 1px solid var(--gold-border); display: flex; align-items: center; justify-content: center; font-size: 0.8rem; color: var(--primary-gold); flex-shrink: 0; }
.social-links a:hover { background: var(--gold-gradient); color: #000000; box-shadow: 0 0 15px rgba(212,175,55,0.5); }

/* MAIN NAVBAR */
.main-header { background: #0b0c10 !important; position: sticky; top: 0; z-index: 1000; box-shadow: 0 5px 25px rgba(0,0,0,0.8); border-bottom: 1px solid var(--gold-border); width: 100%; }
.navbar { display: flex; justify-content: space-between; align-items: center; min-height: 75px; padding: 10px 0; width: 100%; }
.brand-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.brand-logo img { height: 48px; width: auto; max-width: 220px; display: block; filter: drop-shadow(0 0 8px rgba(212,175,55,0.3)); }

.nav-menu { display: flex; align-items: center; gap: 24px; list-style: none; margin: 0; padding: 0; }
.nav-link { font-weight: 600; font-size: 0.85rem; color: #e2e8f0; padding: 10px 0; position: relative; text-transform: uppercase; letter-spacing: 0.5px; white-space: nowrap; display: inline-flex; align-items: center; gap: 5px; }
.nav-link::after { content: ''; position: absolute; bottom: 2px; left: 0; width: 0%; height: 2px; background: var(--gold-gradient); transition: var(--transition-fast); }
.nav-link:hover, .nav-link.active { color: var(--primary-gold-bright); text-shadow: 0 0 10px rgba(212,175,55,0.4); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.nav-arrow { font-size: 0.7rem; margin-left: 2px; transition: transform 0.3s ease; color: var(--primary-gold); }
.dropdown { position: relative; }
.dropdown:hover .nav-arrow { transform: rotate(180deg); }

.dropdown-menu { position: absolute; top: 100%; left: 0; width: 280px; background: #14161e !important; box-shadow: 0 15px 40px rgba(0,0,0,0.9); border-radius: var(--radius-sm); padding: 10px 0; opacity: 0; visibility: hidden; transform: translateY(10px); transition: var(--transition-fast); border: 1px solid var(--gold-border-bright); max-height: 420px; overflow-y: auto; z-index: 1100; }
.dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu li a { display: block; padding: 10px 20px; font-size: 0.83rem; font-weight: 600; color: #cbd5e1; white-space: nowrap; }
.dropdown-menu li a:hover { background-color: rgba(212,175,55,0.12); color: var(--primary-gold-bright); padding-left: 25px; }

.header-btn { background: var(--gold-gradient); color: #0b0c10 !important; padding: 11px 22px; border-radius: var(--radius-sm); font-weight: 800; font-size: 0.84rem; letter-spacing: 0.5px; box-shadow: 0 4px 20px rgba(212,175,55,0.4); border: none; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; gap: 8px; flex-shrink: 0; white-space: nowrap; height: 44px; }
.header-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(212,175,55,0.65); color: #000000; }
.mobile-toggle { display: none; font-size: 1.6rem; background: none; border: none; color: var(--primary-gold); cursor: pointer; padding: 5px; }

/* HERO SLIDER */
.hero-slider { position: relative; width: 100%; height: 70vh; min-height: 480px; max-height: 650px; background-color: #0b0c10 !important; overflow: hidden; border-bottom: 2px solid var(--gold-border); }
.slide { position: absolute; inset: 0; opacity: 0; transition: opacity 0.8s ease-in-out; background-size: cover; background-position: center; display: flex; align-items: center; }
.slide.active { opacity: 1; }
.slide-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(11,12,16,0.92) 0%, rgba(11,12,16,0.7) 60%, rgba(11,12,16,0.3) 100%); }
.slide-content { position: relative; z-index: 10; max-width: 650px; color: #ffffff; }
.slide-tag { display: inline-block; background: rgba(212, 175, 55, 0.15); border: 1px solid var(--primary-gold); color: var(--primary-gold-bright); padding: 6px 16px; border-radius: 50px; font-size: 0.85rem; font-weight: 700; margin-bottom: 15px; text-transform: uppercase; letter-spacing: 1.5px; box-shadow: 0 0 15px rgba(212,175,55,0.2); }
.slide-title { font-size: 2.8rem; font-weight: 800; color: #ffffff; margin-bottom: 18px; line-height: 1.2; }
.slide-title span { color: var(--primary-gold-bright); text-shadow: 0 0 20px rgba(212,175,55,0.4); }
.slide-desc { font-size: 1.05rem; color: #cbd5e1; margin-bottom: 30px; font-weight: 400; }

.btn-group { display: flex; gap: 15px; flex-wrap: wrap; }
.btn-primary { background: var(--gold-gradient); color: #0b0c10; padding: 14px 28px; border-radius: var(--radius-sm); font-weight: 800; font-size: 0.92rem; letter-spacing: 0.5px; display: inline-flex; align-items: center; gap: 8px; box-shadow: 0 5px 25px rgba(212, 175, 55, 0.45); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 35px rgba(212, 175, 55, 0.7); color: #000000; }
.btn-outline { background: rgba(212,175,55,0.1); border: 2px solid var(--primary-gold); color: var(--primary-gold-bright); padding: 12px 26px; border-radius: var(--radius-sm); font-weight: 700; font-size: 0.92rem; display: inline-flex; align-items: center; gap: 8px; backdrop-filter: blur(5px); }
.btn-outline:hover { background: var(--primary-gold); color: #0b0c10; }

/* SECTIONS */
.section-padding { padding: 80px 0; background-color: #0b0c10 !important; width: 100%; overflow: hidden; }
.section-header { text-align: center; margin-bottom: 50px; }
.section-subtitle { font-size: 0.85rem; font-weight: 800; letter-spacing: 2px; color: var(--primary-gold); text-transform: uppercase; margin-bottom: 8px; display: block; text-shadow: 0 0 10px rgba(212,175,55,0.3); }
.section-title { font-size: 2.2rem; color: #ffffff; font-weight: 800; position: relative; padding-bottom: 15px; }
.section-title::after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 70px; height: 3px; background: var(--gold-gradient); border-radius: 2px; box-shadow: 0 0 10px rgba(212,175,55,0.5); }
.section-desc { max-width: 650px; margin: 15px auto 0 auto; color: var(--text-muted); font-size: 0.98rem; }

/* PRODUCT CARDS */
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 25px; width: 100%; }
.product-card { background: #14161e !important; border-radius: var(--radius-md); overflow: hidden; box-shadow: 0 8px 30px rgba(0,0,0,0.7); transition: var(--transition-fast); border: 1px solid var(--gold-border); display: flex; flex-direction: column; text-align: center; position: relative; width: 100%; }
.product-card:hover { transform: translateY(-8px); box-shadow: var(--gold-shadow); border-color: var(--primary-gold); }
.product-img-wrapper { position: relative; width: 100%; height: 210px; overflow: hidden; background-color: #050608; }
.product-img-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.product-card:hover .product-img-wrapper img { transform: scale(1.08); }
.product-info { padding: 18px 15px; background: #14161e !important; }
.product-name { font-size: 0.95rem; font-weight: 700; color: #ffffff; display: block; text-transform: uppercase; letter-spacing: 0.5px; }
.product-card:hover .product-name { color: var(--primary-gold-bright); }

/* FEATURES & ASSEMBLY GRIDS */
.why-us-section { background: #0b0c10 !important; border-top: 1px solid var(--gold-border); border-bottom: 1px solid var(--gold-border); width: 100%; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 25px; width: 100%; }
.feature-card { background: #14161e !important; padding: 30px 20px; border-radius: var(--radius-md); border: 1px solid var(--gold-border); text-align: center; transition: var(--transition-fast); }
.feature-card:hover { border-color: var(--primary-gold); transform: translateY(-5px); box-shadow: var(--gold-shadow); }
.feature-icon { width: 65px; height: 65px; border-radius: 50%; background: rgba(212,175,55,0.12); border: 1px solid var(--gold-border-bright); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px auto; color: var(--primary-gold-bright); font-size: 1.6rem; }
.feature-title { font-size: 1.1rem; color: #ffffff; margin-bottom: 10px; }
.feature-desc { font-size: 0.9rem; color: var(--text-muted); }

.assembly-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); gap: 20px; width: 100%; }
.assembly-card { background: #14161e !important; border: 1px solid var(--gold-border); border-radius: var(--radius-md); padding: 25px 15px; text-align: center; transition: var(--transition-fast); }
.assembly-card:hover { border-color: var(--primary-gold); transform: translateY(-4px); box-shadow: var(--gold-shadow); }
.assembly-card i { font-size: 2.2rem; color: var(--primary-gold); margin-bottom: 12px; display: block; }
.assembly-card h4 { font-size: 0.95rem; color: #ffffff; font-weight: 700; margin: 0; }

/* CTA BANNER & PAGE HEADER */
.cta-banner { background: #0b0c10 !important; border-top: 2px solid var(--primary-gold); padding: 60px 0; color: #ffffff; width: 100%; }
.cta-content { display: flex; justify-content: space-between; align-items: center; gap: 30px; flex-wrap: wrap; }
.cta-text h2 { font-size: 2.1rem; color: var(--primary-gold-bright); margin-bottom: 10px; }
.cta-text p { color: #cbd5e1; font-size: 1.05rem; margin: 0; }
.cta-actions { display: flex; gap: 15px; align-items: center; flex-wrap: wrap; }
.phone-link { display: inline-flex; align-items: center; gap: 8px; color: #ffffff; font-weight: 800; font-size: 1.2rem; }
.phone-link:hover { color: var(--primary-gold-bright); }

.page-header { background: #0b0c10 !important; padding: 50px 0; text-align: center; border-bottom: 1px solid var(--gold-border); width: 100%; }
.page-title { font-size: 2.5rem; color: var(--primary-gold-bright); margin-bottom: 10px; font-weight: 800; }
.breadcrumb { color: var(--text-muted); font-size: 0.9rem; }
.breadcrumb a { color: var(--primary-gold); }

/* FOOTER */
.site-footer { background: #0b0c10 !important; color: #94a3b8; border-top: 2px solid var(--primary-gold); padding-top: 60px; width: 100%; overflow: hidden; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 40px; margin-bottom: 50px; width: 100%; }
.footer-col h3 { font-size: 1.15rem; color: var(--primary-gold-bright); margin-bottom: 22px; position: relative; padding-bottom: 10px; font-weight: 800; }
.footer-col h3::after { content: ''; position: absolute; bottom: 0; left: 0; width: 35px; height: 2px; background: var(--primary-gold); }
.footer-about p { font-size: 0.9rem; line-height: 1.7; margin-bottom: 20px; color: #94a3b8; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: #cbd5e1; font-size: 0.9rem; display: flex; align-items: center; gap: 8px; }
.footer-links a i { color: var(--primary-gold); font-size: 0.8rem; }
.footer-links a:hover { color: var(--primary-gold-bright); padding-left: 5px; }
.footer-contact li { display: flex; gap: 12px; margin-bottom: 15px; font-size: 0.9rem; color: #cbd5e1; }
.footer-contact i { color: var(--primary-gold); font-size: 1.1rem; margin-top: 3px; flex-shrink: 0; }
.map-container { margin-top: 15px; border-radius: var(--radius-sm); overflow: hidden; height: 140px; border: 1px solid var(--gold-border); width: 100%; }
.map-container iframe { width: 100%; height: 100%; border: none; }
.footer-bottom { background: #07080a !important; padding: 20px 0; text-align: center; border-top: 1px solid rgba(255,255,255,0.05); font-size: 0.85rem; color: #64748b; width: 100%; }

/* FLOATING BUTTONS SUITE */
.whatsapp-float { position: fixed; bottom: 30px; right: 30px; width: 58px; height: 58px; background-color: #25d366; color: #ffffff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2rem; box-shadow: 0 8px 25px rgba(37,211,102,0.4); z-index: 9999; transition: var(--transition-fast); }
.whatsapp-float:hover { transform: scale(1.1); color: #ffffff; }
.whatsapp-pulse { position: absolute; inset: -4px; border-radius: 50%; border: 2px solid #25d366; animation: waPulse 2s infinite; }
@keyframes waPulse { 0% { transform: scale(1); opacity: 0.8; } 100% { transform: scale(1.4); opacity: 0; } }

.location-float { position: fixed; bottom: 30px; right: 98px; width: 58px; height: 58px; background: linear-gradient(135deg, #ea4335 0%, #c5221f 100%); color: #ffffff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.7rem; box-shadow: 0 8px 25px rgba(234, 67, 53, 0.45); z-index: 9999; border: 1px solid rgba(255, 255, 255, 0.2); transition: var(--transition-fast); }
.location-float:hover { transform: scale(1.1); color: #ffffff; box-shadow: 0 10px 30px rgba(234, 67, 53, 0.65); }
.location-pulse { position: absolute; inset: -4px; border-radius: 50%; border: 2px solid #ea4335; animation: locPulse 2s infinite; }
@keyframes locPulse { 0% { transform: scale(1); opacity: 0.8; } 100% { transform: scale(1.4); opacity: 0; } }

.instagram-float { position: fixed; bottom: 30px; right: 166px; width: 58px; height: 58px; background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aebe6 90%), linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045); color: #ffffff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; box-shadow: 0 8px 25px rgba(214, 36, 159, 0.45); z-index: 9999; border: 1px solid rgba(255, 255, 255, 0.2); transition: var(--transition-fast); }
.instagram-float:hover { transform: scale(1.1); color: #ffffff; box-shadow: 0 10px 30px rgba(214, 36, 159, 0.7); }
.instagram-pulse { position: absolute; inset: -4px; border-radius: 50%; border: 2px solid #d6249f; animation: igPulse 2s infinite; }
@keyframes igPulse { 0% { transform: scale(1); opacity: 0.8; } 100% { transform: scale(1.4); opacity: 0; } }

.whatsapp-tooltip, .location-tooltip, .instagram-tooltip { position: absolute; right: 68px; background: #14161e; color: #ffffff; border: 1px solid var(--primary-gold); padding: 8px 14px; border-radius: 6px; font-size: 0.82rem; font-weight: 600; white-space: nowrap; opacity: 0; visibility: hidden; transition: var(--transition-fast); pointer-events: none; }
.whatsapp-float:hover .whatsapp-tooltip, .location-float:hover .location-tooltip, .instagram-float:hover .instagram-tooltip { opacity: 1; visibility: visible; }

/* CONTENT BOX DARK MODE READABILITY OVERRIDES */
.content-box {
    background: #14161e !important;
    color: #f8fafc !important;
    padding: 40px !important;
    border-radius: 14px !important;
    border: 1px solid rgba(212, 175, 55, 0.3) !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8) !important;
    width: 100%;
}
.content-box h1, .content-box h2, .content-box h3, .content-box h4 {
    color: #f3e5ab !important; font-weight: 800 !important; margin-top: 25px !important; margin-bottom: 15px !important; text-shadow: 0 0 10px rgba(212, 175, 55, 0.2) !important;
}
.content-box p { color: #f1f5f9 !important; font-size: 1.05rem !important; line-height: 1.8 !important; margin-bottom: 20px !important; }
.content-box div[style*="border-left"] {
    background: #1c1f2b !important; border: 1px solid rgba(212, 175, 55, 0.4) !important; border-left: 5px solid #d4af37 !important; border-radius: 10px !important; padding: 25px !important; margin: 30px 0 !important;
}

/* ==========================================================================
   MASTER RESPONSIVE BREAKPOINTS (TABLETS, PHONES, COMPACT SCREENS)
   ========================================================================== */

@media (max-width: 991px) {
    .hero-slider { height: 60vh; min-height: 440px; }
    .slide-title { font-size: 2.2rem; }
    .page-title { font-size: 2.1rem; }
    .cta-content { flex-direction: column; text-align: center; justify-content: center; }
}

@media (max-width: 768px) {
    .top-header { display: none !important; } /* Hide top info bar on mobile for clean screen fit */
    
    .navbar { padding: 8px 0; min-height: 60px; }
    .brand-logo img { height: 38px !important; max-width: 160px; }
    
    .nav-menu {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 60px);
        background: #0b0c10 !important;
        flex-direction: column;
        align-items: flex-start;
        padding: 30px 20px;
        transition: left 0.3s ease;
        z-index: 1050;
        border-top: 1px solid var(--gold-border);
        overflow-y: auto;
    }
    .nav-menu.active { left: 0; }
    .nav-link { font-size: 0.95rem; padding: 12px 0; width: 100%; justify-content: space-between; border-bottom: 1px solid rgba(255,255,255,0.05); }
    
    .dropdown { width: 100%; }
    .dropdown-menu {
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        width: 100% !important;
        max-height: none !important;
        box-shadow: none !important;
        border: none !important;
        border-left: 2px solid var(--primary-gold) !important;
        background: #14161e !important;
        margin-top: 8px;
        padding: 5px 0 5px 15px;
        display: none;
    }
    .dropdown.active .dropdown-menu { display: block !important; }
    
    .mobile-toggle { display: block !important; }
    .header-btn { display: none !important; }

    .hero-slider { height: auto; min-height: 380px; max-height: none; padding: 40px 0; }
    .slide-content { max-width: 100%; text-align: center; }
    .slide-tag { font-size: 0.75rem; padding: 4px 12px; margin-bottom: 10px; }
    .slide-title { font-size: 1.6rem !important; line-height: 1.25 !important; margin-bottom: 12px !important; }
    .slide-desc { font-size: 0.9rem !important; line-height: 1.5 !important; margin-bottom: 20px !important; }
    
    .btn-group { flex-direction: column; width: 100%; gap: 10px; }
    .btn-primary, .btn-outline { width: 100%; justify-content: center; text-align: center; padding: 12px 18px; }

    .section-padding { padding: 40px 0 !important; }
    .section-header { margin-bottom: 30px !important; }
    .section-title { font-size: 1.55rem !important; }
    .section-subtitle { font-size: 0.78rem !important; }
    .section-desc { font-size: 0.88rem !important; }

    .products-grid { display: grid !important; grid-template-columns: repeat(2, 1fr) !important; gap: 10px !important; }
    .product-card { border-radius: 10px !important; border-color: var(--gold-border) !important; }
    .product-card .product-img-wrapper { height: 130px !important; }
    .product-info { padding: 10px 5px !important; }
    .product-name { font-size: 0.78rem !important; font-weight: 700 !important; line-height: 1.25 !important; }

    .features-grid { grid-template-columns: 1fr !important; gap: 15px !important; }
    .feature-card { padding: 20px 15px !important; }
    
    .assembly-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 10px !important; }
    .assembly-card { padding: 18px 10px !important; }

    .content-box { padding: 20px 14px !important; border-radius: 10px !important; margin: 15px 0 !important; }
    .content-box h1 { font-size: 1.45rem !important; }
    .content-box h2 { font-size: 1.3rem !important; }
    .content-box h3 { font-size: 1.15rem !important; }
    .content-box p { font-size: 0.9rem !important; line-height: 1.6 !important; }
    .content-box table { display: block !important; width: 100% !important; overflow-x: auto !important; white-space: nowrap !important; }
    
    .footer-grid { grid-template-columns: 1fr !important; gap: 25px !important; margin-bottom: 30px !important; }

    /* FLOATING BUTTONS MOBILE POSITIONING (PREVENTS OVERFLOW & TOOLTIP SHIFT) */
    .whatsapp-float { bottom: 15px !important; right: 15px !important; width: 48px !important; height: 48px !important; font-size: 1.55rem !important; }
    .location-float { bottom: 15px !important; right: 71px !important; width: 48px !important; height: 48px !important; font-size: 1.35rem !important; }
    .instagram-float { bottom: 15px !important; right: 127px !important; width: 48px !important; height: 48px !important; font-size: 1.4rem !important; }
    
    .whatsapp-tooltip, .location-tooltip, .instagram-tooltip { display: none !important; } /* Hidden on mobile touch to avoid horizontal viewport stretching */
}

@media (max-width: 480px) {
    .container { padding: 0 12px; }
    .slide-title { font-size: 1.45rem !important; }
    .products-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 8px !important; }
    .product-card .product-img-wrapper { height: 115px !important; }
    .product-name { font-size: 0.73rem !important; }
    
    .whatsapp-float { bottom: 12px !important; right: 12px !important; width: 42px !important; height: 42px !important; font-size: 1.35rem !important; }
    .location-float { bottom: 12px !important; right: 60px !important; width: 42px !important; height: 42px !important; font-size: 1.15rem !important; }
    .instagram-float { bottom: 12px !important; right: 108px !important; width: 42px !important; height: 42px !important; font-size: 1.2rem !important; }
}