/* 🌸 BASE */
body{
    margin:0;
    font-family: Arial, sans-serif;
    text-align:center;
    background: linear-gradient(135deg,#ffe6f0,#fff6e6);
}
/* 🔥 LOGO */
.logo{
    width:80px !important;
    height:auto;
    animation:glow 2s infinite alternate;
    margin-bottom:10px ;
}

/* ✨ soft glow background */
body::before,
body::after{
    content:"";
    position:fixed;
    width:300px;
    height:300px;
    border-radius:50%;
    filter:blur(100px);
    opacity:0.3;
    z-index:-1;
}

body::before{
    background:pink;
    top:-50px;
    left:-50px;
}

body::after{
    background:peachpuff;
    bottom:-50px;
    right:-50px;
}

/* 🧱 container */
.container{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:15px;
    margin-top:20px;
}

/* 💎 cards */
.card{
    width:200px;
    background:rgba(255,255,255,0.85);
    border-radius:15px;
    overflow:hidden;
    text-decoration:none;
    color:black;
    box-shadow:0 4px 12px rgba(0,0,0,0.1);
    transition:0.3s;
}

.card:hover{
    transform:scale(1.06);
    box-shadow:0 10px  25px rgba(0,0,0,0.15);
}

/* images */
.card img{
    width:100%;
    height:180px;
    object-fit:cover;
}

/* 🛍 product */
.product{
    width:170px;
    background:white;
    margin:10px;
    padding:10px;
    border-radius:12px;
    box-shadow:0 3px 10px rgba(0,0,0,0.1);
    position:relative;
}

.product img{
    width:130px;
    height:130px;
    object-fit:cover;
    border-radius:8px;
    cursor:pointer;
}

/* badge */
.badge{
    position:absolute;
    top:5px;
    right:5px;
    background:linear-gradient(45deg,#ff69b4,#ffb6c1);
    color:white;
    padding:3px 8px;
    font-size:10px;
    border-radius:10px;
}

/* button */
button{
    background:black;
    color:white;
    border:none;
    padding:14px 22px;
    border-radius:12px;
    font-size:18px;
    cursor:pointer;
}

/* cart button */
.cart-fixed{
    position:fixed;
    bottom:20px;
    right:20px;
    background:linear-gradient(45deg,#000,#333);
    box-shadow:0 4px 12px rgba(0,0,0,0.3);
    color:white;
    padding:14px 18px;
    border-radius:50px;
    font-size:30px;
box-shadow:0 4px 12px rgba (0,0,0,0.3);
    z-index:99999;
    text-decoration:none;
}

/* lightbox */
#lightbox{
    display:none;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.85);
    justify-content:center;
    align-items:center;
}

#lightbox img{
    max-width:90%;
    max-height:90%;
    border-radius:10px;
}

/* 📱 mobile */
@media(max-width:768px){
h1{
        font-size:32px;
    }
    .item{
        font-size:22px;
        padding:20px;
    }
    .item img{
        width:90px !important;
        height:90px !important;
    }
   .btn{font-size:24px;
        paddi1ng:12px 20px;
    }
    .copy-btn{
        width:90%;
        font-size:24px;
    }
    .cart-fixed{bottom:25px;
                right:20px;
                padding:18px 25px;
                font-size:36px;
                border-radius:60px;
        }
    .container{
        display:grid;
        grid-template-columns:repeat(2,1fr);
        gap:10px;
        padding:10px;
        flex-direction:column;
        align-items:center;
    }
.logo{
        width:90px;
    }
    .card,.product{
        width:160px;
    }
    .product{
        width:auto;
        margin:0;
        padding:8px;
    }
    .product img{
        width:100%;
        height:120px;
        object-fit:cover;
    }
    .box{
        width:95%;
    }
}

/* 🌟 HERO SECTION */
.hero{
    margin-top:10px;
    padding:40px 10px;
}
.hero-box{
    background:rgba(255,255,255,0.7);
    backdrop-filter:blur(10px);
    display:inline-block;
    padding:25px 20px;
    border-radius:20px;
    box-shadow:0 8px 20px rgba(0,0,0,0.1);
    animation:float 4s ease-in-out infinite;
}

/* ✨ floating box */
@keyframes float{
    0%{transform:translateY(0px);}
    50%{transform:translateY(-6px);}
    100%{transform:translateY(0px);}
}

/* ✨ glow effect */
@keyframes glow{
    from{filter:drop-shadow(0 0 5px pink);}
    to{filter:drop-shadow(0 0 15px hotpink);}
}

/* text styles */
.hero h1{
    font-size:22px;
    margin:5px 0;
    color:#444;
}


.hero p{
    font-size:20px;
    color:#999;
}
