/* =========================
   GOOGLE FONT
========================= */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* =========================
   RESET
========================= */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f7f7f7;
    color:#222;
}

/* =========================
   LINKS
========================= */
a{
    text-decoration:none;
    color:inherit;
}

img{
    max-width:100%;
    display:block;
}

/* =========================
   TOP BAR
========================= */
.top-bar{
    background:#000;
    color:#fff;
    padding:10px 40px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    font-size:13px;
}

.left-top,
.right-top{
    display:flex;
    gap:15px;
    align-items:center;
}

/* =========================
   HEADER
========================= */
header{
    background:#fff;
    padding:20px 40px;

    display:flex;
    justify-content:space-between;
    align-items:center;

    border-bottom:1px solid #eee;
}

.logo h1{
    color:#ff2c93;
    font-size:42px;
    line-height:1;
    font-weight:700;
}

.logo h3{
    font-size:18px;
    letter-spacing:3px;
    font-weight:600;
}

/* =========================
   SEARCH
========================= */
.search-box{
    width:500px;
    position:relative;
}

.search-box input{
    width:100%;
    padding:14px 20px;
    border:1px solid #ddd;
    border-radius:50px;
    outline:none;
}

.search-box button{
    position:absolute;
    right:5px;
    top:5px;

    width:40px;
    height:40px;

    border:none;
    border-radius:50%;

    background:#ff2c93;
    color:white;
    cursor:pointer;
}

/* =========================
   HEADER ICONS
========================= */
.header-icons{
    display:flex;
    gap:25px;
}

.header-icons div{
    text-align:center;
    cursor:pointer;
}

.header-icons i{
    font-size:20px;
}

/* =========================
   NAVIGATION
========================= */
nav{
    background:white;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:15px 40px;

    border-bottom:1px solid #eee;
}

nav ul{
    list-style:none;
    display:flex;
    gap:25px;
}

nav ul li{
    font-weight:500;
    transition:.3s;
}

nav ul li:hover{
    color:#ff2c93;
}

.active{
    color:#ff2c93;
}

.whatsapp-btn{
    background:#ff2c93;
    color:white;

    padding:10px 18px;
    border-radius:8px;
    font-weight:600;
}

/* =========================
   HERO
========================= */
.hero{
    margin:25px 40px;

    background:#fff0f7;
    border-radius:20px;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:60px;
}

.hero-left{
    max-width:500px;
}

.hero-left span{
    color:#ff2c93;
    font-weight:600;
    font-size:14px;
}

.hero-left h1{
    font-size:60px;
    line-height:1.1;
    margin:15px 0;
}

.hero-left p{
    color:#666;
    margin-bottom:25px;
    line-height:1.8;
}

.hero-buttons{
    display:flex;
    gap:15px;
}

.hero-buttons a{
    background:#ff2c93;
    color:white;

    padding:14px 25px;
    border-radius:50px;
    font-weight:600;
}

.hero-right img{
    width:500px;
    object-fit:contain;
}
#cartBtn{
    position:relative;
}

#cartCount{
    position:absolute;
    top:-8px;
    right:-12px;

    background:#ff2c93;
    color:white;

    width:20px;
    height:20px;

    border-radius:50%;

    display:flex;
    justify-content:center;
    align-items:center;

    font-size:11px;
}
/* =========================
   SECTION
========================= */
.section{
    padding:20px 40px;
}

.section-title{
    display:flex;
    justify-content:space-between;
    align-items:center;

    margin-bottom:20px;
}

.section-title h2{
    font-size:28px;
}

.section-title a{
    color:#ff2c93;
}

/* =========================
   CATEGORY GRID
========================= */
.category-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.category-card{
    background:white;
    border-radius:15px;
    padding:20px;
    text-align:center;
    transition:.3s;
}

.category-card:hover{
    transform:translateY(-5px);
}

.category-card img{
    height:120px;
    margin:auto;
    object-fit:contain;
}

.category-card h4{
    margin-top:15px;
}

/* =========================
   PRODUCTS
========================= */
.product-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.product-card{
    background:white;
    border-radius:15px;
    overflow:hidden;
    transition:.3s;
}

.product-card:hover{
    transform:translateY(-5px);
}

.product-card img{
    width:100%;
    height:220px;
    object-fit:cover;
}

.product-card h4{
    padding:15px 15px 5px;
}

.product-card p{
    padding:0 15px;
    color:#666;
    font-size:14px;
}

.product-card h3{
    padding:10px 15px;
    color:#ff2c93;
}

.product-card button{
    width:90%;
    margin:0 auto 15px;

    display:block;

    border:none;
    background:#ff2c93;
    color:white;

    padding:12px;
    border-radius:8px;

    cursor:pointer;
}

/* =========================
   PROMOTION BANNER
========================= */
.promo{
    margin:40px;
    background:#ff2c93;
    color:white;
    text-align:center;

    padding:50px;
    border-radius:20px;
}

.promo h2{
    font-size:40px;
    margin-bottom:15px;
}

.promo a{
    display:inline-block;

    margin-top:15px;

    background:white;
    color:#ff2c93;

    padding:12px 25px;
    border-radius:50px;
    font-weight:600;
}

/* =========================
   PROMOS
========================= */

.promo-grid{
    padding:20px 40px;

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.promo-card{
    background:#fff0f6;

    border-radius:15px;

    padding:30px;

    min-height:180px;

    display:flex;
    flex-direction:column;
    justify-content:center;
}

.promo-card h3{
    margin-bottom:15px;
}

.promo-card a{
    background:#ff2c93;
    color:white;

    width:max-content;

    padding:10px 20px;
    border-radius:30px;
}

/* =========================
   NEWSLETTER
========================= */
.newsletter{
    margin:40px;
    background:white;
    padding:50px;
    border-radius:20px;
    text-align:center;
}

.newsletter h2{
    margin-bottom:10px;
}

.newsletter p{
    color:#666;
    margin-bottom:20px;
}

.newsletter-form{
    display:flex;
    justify-content:center;
    gap:10px;
}

.newsletter-form input{
    width:350px;

    padding:14px;
    border:1px solid #ddd;
    border-radius:50px;
}

.newsletter-form button{
    border:none;

    background:#ff2c93;
    color:white;

    padding:14px 25px;
    border-radius:50px;

    cursor:pointer;
}

/* =========================
   FOOTER
========================= */
footer{
    background:#111;
    color:white;
    padding:50px 40px;
}

.footer-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.footer-grid h3{
    margin-bottom:15px;
}

.footer-grid a{
    display:block;
    margin-bottom:10px;
    color:#ccc;
}

.footer-grid p{
    color:#ccc;
    line-height:1.8;
}

.copyright{
    text-align:center;
    margin-top:30px;
    border-top:1px solid #333;
    padding-top:20px;
    color:#aaa;
}

/* =========================
   BOTTOM NAV
========================= */
.bottom-nav{
    position:fixed;
    bottom:0;
    left:0;

    width:100%;

    background:#fff;
    border-top:1px solid #ddd;

    display:none;
    justify-content:space-around;

    padding:10px;
    z-index:999;
}

.bottom-nav div{
    text-align:center;
    font-size:12px;
}

.bottom-nav i{
    display:block;
    font-size:18px;
    margin-bottom:5px;
    color:#ff2c93;
}
/* =========================
   CART SYSTEM
========================= */

#cartBtn{
    position:relative;
    cursor:pointer;
}

#cartCount{
    position:absolute;
    top:-8px;
    right:-12px;

    background:#ff2c93;
    color:white;

    width:20px;
    height:20px;

    border-radius:50%;

    display:flex;
    justify-content:center;
    align-items:center;

    font-size:11px;
    font-weight:600;
}

/* CART MODAL */

#cartModal{
    display:none;

    position:fixed;
    top:0;
    left:0;

    width:100%;
    height:100%;

    background:rgba(0,0,0,.5);

    z-index:9999;
}

.cart-content{
    width:500px;
    max-width:95%;

    background:white;

    margin:40px auto;

    border-radius:12px;

    padding:20px;

    max-height:85vh;
    overflow-y:auto;
}

.cart-header{
    display:flex;
    justify-content:space-between;
    align-items:center;

    margin-bottom:20px;
}

.cart-header h2{
    font-size:24px;
}

#closeCart{
    font-size:24px;
    cursor:pointer;
}

.cart-item{
    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:12px 0;

    border-bottom:1px solid #eee;
}

.cart-item strong{
    color:#222;
}

.cart-item button{
    border:none;

    background:#ff2c93;
    color:white;

    width:28px;
    height:28px;

    border-radius:4px;

    cursor:pointer;
}

.cart-footer{
    display:flex;
    gap:10px;

    margin-top:20px;
}

.cart-footer button{
    flex:1;

    border:none;

    padding:12px;

    border-radius:8px;

    cursor:pointer;

    font-weight:600;
}

#clearCart{
    background:#ff2c93;
    color:white;
}

#orderWhatsapp{
    background:#25D366;
    color:white;
}

#clearCart:hover,
#orderWhatsapp:hover,
.cart-item button:hover{
    opacity:0.9;
}
.cart-item img{
    width:60px;
    height:60px;
    object-fit:cover;
    border-radius:8px;
}
/* MOBILE */

@media(max-width:768px){

    .cart-content{
        width:95%;
        margin:20px auto;
    }

    .cart-footer{
        flex-direction:column;
    }

}
/* =========================
   RESPONSIVE
========================= */
@media(max-width:992px){

    .hero{
        flex-direction:column;
        text-align:center;
        gap:30px;
    }

    .hero-right img{
        width:100%;
    }

    .product-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .category-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .footer-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .search-box{
        width:100%;
    }

    header{
        flex-direction:column;
        gap:20px;
    }
}

@media(max-width:768px){

    nav ul{
        display:none;
    }

    .top-bar{
        display:none;
    }

    .product-grid{
        grid-template-columns:1fr;
    }

    .category-grid{
        grid-template-columns:1fr;
    }

    .footer-grid{
        grid-template-columns:1fr;
    }

    .newsletter-form{
        flex-direction:column;
    }

    .newsletter-form input{
        width:100%;
    }

    .hero-left h1{
        font-size:42px;
    }

    .bottom-nav{
        display:flex;
    }

    body{
        padding-bottom:70px;
    }
}
.floating-whatsapp{
    position:fixed;
    bottom:90px;
    right:20px;

    width:60px;
    height:60px;

    background:#25D366;
    color:white;

    border-radius:50%;

    display:flex;
    justify-content:center;
    align-items:center;

    font-size:30px;
    cursor:pointer;

    z-index:999;
}