/* RESET & BASE STYLES */
* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
    font-family: 'Arial', sans-serif; 
}

body { 
    color: #333; 
    line-height: 1.6; 
    background: #fff; 
    scroll-behavior: smooth; 
    /* FORCE RESET POSITION DARI GOOGLE TRANSLATE */
    top: 0px !important; 
    position: static !important; 
}

html {
    margin-top: 0px !important;
}

/* Container utama */
.container { 
    max-width: 1100px; 
    margin: 0 auto; 
    padding: 0 25px; 
}

.section { padding: 60px 0; }
.bg-light { background: #f8fafc; }

/* Navbar */
nav { 
    background: #1e293b; 
    color: white; 
    padding: 15px 0; 
    position: sticky; 
    top: 0; 
    z-index: 1000; 
}

.nav-container { display: flex; justify-content: space-between; align-items: center; }
.logo { font-weight: bold; font-size: 1.1rem; }
.logo .red { color: #e11d48; }
.nav-list { display: flex; list-style: none; gap: 25px; align-items: center; }
.nav-list a { color: white; text-decoration: none; font-size: 0.9rem; transition: 0.3s; }
.nav-list a:hover { color: #e11d48; }

/* Hamburger Menu Icon */
.menu-toggle { display: none; flex-direction: column; cursor: pointer; gap: 5px; z-index: 1001; }
.bar { width: 25px; height: 3px; background-color: white; transition: 0.4s; }

/* Hero Section */
.hero { 
    background: url('https://images.unsplash.com/photo-1504917595217-d4dc5ebe6122?q=80&w=1200') center/cover; 
    height: 400px; 
    color: white; 
}

.hero-overlay { 
    background: rgba(0,0,0,0.7); 
    height: 100%; 
    display: flex; 
    align-items: center; 
    text-align: center; 
}

.hero h2 { font-size: 2.2rem; margin-bottom: 10px; width: 100%;}

.her0 h2 {
    margin-top: 20pxs;
}

.btn-primary { 
    display: inline-block; 
    background: #e11d48; 
    color: white; 
    padding: 12px 25px; 
    text-decoration: none; 
    margin-top: 15px;
    border-radius: 5px; 
    font-weight: bold; 
    transition: 0.3s; 
}

.btn-primary:hover { 
    background: #be123c; 
    transform: translateY(-3px); 
}

/* Section Title */
.section-title { 
    font-size: 1.8rem; 
    margin-bottom: 25px; 
    border-left: 5px solid #e11d48; 
    padding-left: 15px; 
}

/* Product Grid */
.grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); 
    gap: 20px; 
}

.card { 
    background: white; 
    border-radius: 8px; 
    overflow: hidden; 
    border: 1px solid #e2e8f0; 
    transition: 0.3s; 
}

.card:hover { 
    transform: translateY(-5px); 
    box-shadow: 0 10px 20px rgba(0,0,0,0.1); 
}

.card img { width: 100%; height: 180px; object-fit: cover; }
.card-content { padding: 20px; }

.btn-wa { 
    display: block; 
    background: #1e293b; 
    color: white; 
    text-align: center; 
    padding: 10px; 
    text-decoration: none; 
    border-radius: 5px; 
    margin-top: 15px; 
    font-weight: bold; 
    transition: 0.3s; 
}

.btn-wa:hover { background: #2563eb; }

/* Footer */
footer { 
    background: #1e293b; 
    color: #94a3b8; 
    padding: 40px 0; 
    text-align: center; 
    font-size: 0.85rem; 
}

/* --- THE ULTIMATE GOOGLE TRANSLATE CLEANUP --- */

/* 1. Sembunyikan Bar & Frame Google */
.goog-te-banner-frame.skiptranslate,
.goog-te-banner-frame,
#goog-gt-tt,
.goog-te-balloon-frame,
iframe.goog-te-menu-frame,
.skiptranslate iframe {
    display: none !important;
    visibility: hidden !important;
}

/* 2. MATIKAN SEMUA HIGHLIGHT (KOTAK PUTIH) PAS DIKLIK */
font {
    background-color: transparent !important;
    box-shadow: none !important;
    position: relative !important;
    display: inline !important;
}

[class*="goog-text-highlight"], 
[class*="VIpgJd-y6oGMc-ti6h9c"],
.goog-text-highlight,
.skiptranslate font {
    background-color: transparent !important;
    box-shadow: none !important;
    border: none !important;
    padding: 0 !important;
}

/* Sembunyikan Tooltip Popup */
.goog-tooltip, .goog-tooltip:hover {
    display: none !important;
}

/* Pastikan widget asli tersembunyi */
#google_translate_element {
    display: none !important;
}

/* RESPONSIVE MOBILE */
@media screen and (max-width: 768px) {
    .container { padding: 0 20px; }
    
    .menu-toggle { display: flex; }

    .menu-toggle.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .menu-toggle.active .bar:nth-child(2) { opacity: 0; }
    .menu-toggle.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

    .nav-list {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #1e293b;
        text-align: left;
        max-height: 0;
        overflow: hidden;
        transition: all 0.25s ease-in-out;
        opacity: 0;
        border-top: 0px solid #e11d48;
    }

    .nav-list.active {
        max-height: 500px; 
        opacity: 1;
        padding: 20px 0;
        border-top: 4px solid #e11d48;
    }

    .nav-list li {
        padding: 12px 20px;
        width: 100%;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }

    .hero h2 { font-size: 1.6rem; }
    .section-title { font-size: 1.5rem; }
    
    .about-content p {
        text-align: justify;
        font-size: 0.95rem;
    }
}
