*{
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 */
/* ===================================================== */

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

.topCategories {
    position: sticky;
    top: 0;
    z-index: 999;
    display: flex;
    gap: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 14px 12px;
    backdrop-filter: blur(14px);
    background: rgba(10,10,10,0.88);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

    /* Hide scrollbar */

    .topCategories::-webkit-scrollbar {
        height: 0;
    }

.catBtn {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .3px;
    color: #fff;
    background: linear-gradient( 180deg, #1f1f1f, #121212 );
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 4px 14px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.05);
    transition: transform .18s ease, background .25s ease, color .25s ease, border-color .25s ease;
    white-space: nowrap;
}

    .catBtn:hover {
        transform: translateY(-2px);
        background: linear-gradient( 180deg, #ffcc00, #ffb300 );
        color: #000;
        border-color: #ffcc00;
    }

    .catBtn:active {
        transform: scale(.96);
    }

/* MOBILE */

@media(max-width:768px) {

    .topCategories {
        gap: 8px;
        padding: 10px 8px;
    }

    .catBtn {
        padding: 10px 16px;
        font-size: 13px;
        border-radius: 20px;
    }
}

/* DESKTOP */

@media(min-width:1200px) {

    .topCategories {
        justify-content: center;
        flex-wrap: wrap;
        overflow-x: visible;
    }
}
/* ===================================================== */
/* 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;
    align-items: stretch;
}
.card img{
    width:100%;
    height:280px;
    object-fit:cover;
    object-position:center;
    display:block;
}

/* ===================================== */
/* FLOATING CART */
/* ===================================== */

#cartToggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: #00c853;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    cursor: pointer;
    z-index: 99999;
    box-shadow: 0 8px 25px rgba(0,0,0,.45);
}

#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;
    right: 20px;
    bottom: 100px;
    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{
padding:8px 5px;
gap:4px;
justify-content:center;
}

.catBtn{
font-size:11px;
padding:5px 10px;
border-radius:16px;
min-height:30px;
}

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

    /* =========================
   CARD IMAGE
   ========================= */

    .card img {
        width: 100%;
        height: 220px;
        object-fit: cover;
        object-position: center;
        display: block;
        background: #111;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }

    /* MOBILE */

    @media(max-width:768px) {

        .card img {
            height: 180px;
        }
    }

.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;
}
/* ===================================== */
/* MENU CARDS FIX */
/* ===================================== */

.card{
    display:flex;
    flex-direction:column;
    height:100%;
    background:#111;
    border-radius:18px;
    overflow:hidden;
}

.card img{
    width:100%;
    height:280px;
    object-fit:cover;
    object-position:center;
    display:block;
    background:#111;
}

.info{
    display:flex;
    flex-direction:column;
    flex:1;
    padding:12px;
}

.info h3{
    min-height:52px;
    font-size:20px;
    font-weight:700;
    margin-bottom:8px;
}

.desc{
    flex:1;
    color:#ddd;
    line-height:1.4;
    font-size:14px;
}

.price{
    margin-top:auto;
    color:#ffcc00;
    font-size:24px;
    font-weight:800;
    padding-top:10px;
}

.addBtn{
    width:100%;
    margin-top:10px;
    border:none;
    border-radius:12px;
    padding:12px;
    background:#ffcc00;
    color:#000;
    font-weight:700;
    cursor:pointer;
    transition:.2s;
}

.addBtn:hover{
    transform:translateY(-2px);
}

/* ===================================== */
/* DESKTOP CART SPACE */
/* ===================================== */

@media(min-width:1200px){

.container{
    padding-right:420px;
}

}

/* ===================================== */
/* PLACE BOX */
/* ===================================== */

.placeBox{
    background:#181818;
    border:1px solid #333;
    border-radius:12px;
    padding:10px;
    margin-bottom:10px;
    text-align:center;
    color:#ffcc00;
    font-weight:700;
    font-size:16px;
}

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

@media(max-width:768px){

.card img{
    height:180px;
}

.info h3{
    min-height:auto;
    font-size:15px;
}

.price{
    font-size:18px;
}

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

.cartVisible{
    width:95%;
    left:2.5%;
    right:auto;
    top:120px;
}

}
}