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

body{
font-family:'Poppins',sans-serif;
background:#111;
color:#fff;
padding-bottom:450px;
}

/* ===================================================== */
/* HERO */
/* ===================================================== */

.hero{
padding:60px 20px;
text-align:center;
background:linear-gradient(180deg,#000,#111);
border-bottom:1px solid #222;
}

.hero h1{
font-size:42px;
font-weight:800;
color:#ffcc00;
margin-bottom:10px;
}

.hero p{
color:#aaa;
font-size:15px;
}

/* ===================================================== */
/* TRANSLATE */
/* ===================================================== */

.translateBox{
position:fixed;
top:15px;
right:15px;
z-index:999999;
background:#181818;
padding:10px;
border-radius:14px;
border:1px solid #333;
box-shadow:0 10px 25px rgba(0,0,0,.35);
}

.goog-te-banner-frame.skiptranslate{
display:none!important;
}

body{
top:0!important;
}

.goog-logo-link{
display:none!important;
}

.goog-te-gadget{
font-size:0!important;
color:transparent!important;
}

.goog-te-combo{
background:#111!important;
color:#fff!important;
border:1px solid #333!important;
border-radius:10px!important;
padding:8px!important;
font-family:Poppins!important;
}

/* =========================
   TOP CATEGORIES
   ========================= */

.topCategories{
    position:sticky;
    top:0;
    z-index:999;
    background:#000;
    padding:8px;
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:6px;
    border-bottom:1px solid #222;
}

.catBtn{
    padding:6px 12px;
    background:linear-gradient(135deg,#1d1d1d,#2b2b2b);
    color:#fff;
    border-radius:18px;
    text-decoration:none;
    font-size:11px;
    font-weight:600;
    border:1px solid #333;
    transition:.2s;
    white-space:nowrap;
}

.catBtn:hover{
    background:#ffcc00;
    color:#000;
    transform:translateY(-1px);
}

@media(max-width:768px){

    .topCategories{
        justify-content:center;
        gap:4px;
        padding:6px;
    }

    .catBtn{
        padding:5px 8px;
        font-size:10px;
        border-radius:14px;
    }
}

/* ===================================================== */
/* CONTAINER */
/* ===================================================== */

.container{
width:min(1300px,95%);
margin:auto;
padding:30px 0;
}

/* ===================================================== */
/* SECTION */
/* ===================================================== */

.section{
margin-bottom:50px;
}

.sectionTitle{
font-size:34px;
font-weight:800;
margin-bottom:22px;
color:#ffcc00;
}

/* ===================================================== */
/* GRID */
/* ===================================================== */

.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:20px;
}
/* ===================================== */
/* FLOATING CART */
/* ===================================== */

#cartToggle {
    position: fixed;
    top: 80px;
    right: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #00c853;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    cursor: pointer;
    z-index: 99999;
    box-shadow: 0 5px 20px rgba(0,0,0,.4);
}

#cartBadge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: red;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.cartHidden {
    display: none;
}

.cartVisible {
    display: block;
    position: fixed;
    top: 150px;
    right: 20px;
    width: 380px;
    max-width: 95%;
    max-height: 70vh;
    overflow: auto;
    background: #111;
    border: 1px solid #333;
    border-radius: 20px;
    padding: 15px;
    z-index: 99998;
}

/* ===================================================== */
/* IMAGE MODAL */
/* ===================================================== */

.imgModal{
display:none;
position:fixed;
z-index:999999;
left:0;
top:0;
width:100%;
height:100%;
background:rgba(0,0,0,.94);
justify-content:center;
align-items:center;
padding:20px;
}

.imgModal img{
max-width:90%;
max-height:90%;
border-radius:20px;
}

.closeModal{
position:absolute;
top:20px;
right:30px;
font-size:42px;
color:#fff;
cursor:pointer;
}

/* ===================================================== */
/* MOBILE */
/* ===================================================== */

@media(max-width:768px){

.topCategories{
justify-content:flex-start;
padding:10px 6px;
}

.grid{
grid-template-columns:repeat(2,1fr);
gap:10px;
}

.card img{
height:140px;
}

.info h3{
font-size:14px;
}

.price{
font-size:18px;
}

.addBtn{
font-size:13px;
padding:10px;
}

.hero h1{
font-size:30px;
}

body{
padding-bottom:210px;
}

}
/* =========================
   FOOTER
   ========================= */

.footer{
    background:#111;
    margin-top:60px;
    padding:40px 20px;
    border-top:1px solid #333;
}

.footerGrid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
    max-width:1400px;
    margin:auto;
}

.footerBox h3{
    color:#ffcc00;
    margin-bottom:15px;
}

.footerBox p{
    margin:8px 0;
    color:#ddd;
}

.footerBox a{
    color:#fff;
    text-decoration:none;
    line-height:28px;
}

.footerBox a:hover{
    color:#ffcc00;
}

.planetLogo{
    max-width:180px;
    width:100%;
    margin-bottom:10px;
}

.footer iframe{
    width:100%;
    border:none;
    border-radius:12px;
}

@media(max-width:768px){

.footerGrid{
    grid-template-columns:1fr;
}

}