*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial,sans-serif;
}
html{scroll-behavior:smooth;}

body{
    background:#FFF9FB;
    padding:40px;
}

/* =========================
   PRODUCT CARD
========================= */

.cat-card{
    width:315px;
    height:360px;
    border-radius:24px;
    overflow:hidden;
    position:relative;
    cursor:pointer;
    background:#111;

    border:3px solid #ff5c8a;

    box-shadow:
        0 0 10px rgba(255,92,138,0.35),
        0 10px 30px rgba(0,0,0,0.15);

    transition:0.4s;
}

.cat-card:hover{
    transform:translateY(-8px) scale(1.02);
    box-shadow:0 20px 40px rgba(0,0,0,0.25);
}

/* IMAGE */

.cat-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:0.5s;
    filter:brightness(1.25) contrast(1.05);
}

.cat-card:hover img{
    transform:scale(1.08);
}

/* DARK OVERLAY */

/* DARK OVERLAY */

.cat-card::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        to top,
        rgba(0,0,0,0.92),
        rgba(0,0,0,0.45),
        rgba(0,0,0,0.1)
    );
    z-index:1;
    pointer-events:none;
}


/* OVERLAY */

.cat-overlay{
    position:absolute;
    left:0;
    bottom:-400px;
    width:100%;
    padding:22px;
    background:linear-gradient(
        to top,
        rgba(0,0,0,0.96),
        rgba(0,0,0,0.75),
        rgba(0,0,0,0.2)
    );
    color:#fff;
    transition:0.4s;
    z-index:3;
}

.cat-card:hover .cat-overlay{
    bottom:0;
}

/* OVERLAY TITLE */

.cat-overlay h3{
    margin-bottom:12px;
    font-size:24px;
    font-weight:700;
}

/* OVERLAY TEXT */

.cat-overlay p{
    font-size:14px;
    line-height:1.8;
    margin-bottom:15px;
    color:#f1f1f1;
}

/* OVERLAY LIST */

.cat-overlay ul{
    padding-left:18px;
}

.cat-overlay ul li{
    margin-bottom:8px;
    font-size:14px;
}

/* CONTENT */

.cat-content{
    position:absolute;
    left:0;
    bottom:0;
    width:100%;
    padding:25px;
    z-index:2;
}

/* PRICE */

.price-tag{
    display:inline-block;
    background:#ffcc00;
    color:#000;
    padding:6px 12px;
    border-radius:20px;
    font-size:16px;
    font-weight:bold;
}

.price-tag del{
    color:#666;
    font-size:12px;
    margin-left:6px;
    font-weight:normal;
}

/* BADGE */

.cat-badge{
    display:inline-block;
    background:rgba(255,255,255,0.15);
    backdrop-filter:blur(10px);
    color:#fff;
    padding:8px 14px;
    border-radius:30px;
    font-size:14px;
    margin-bottom:14px;
    border:1px solid rgba(255,255,255,0.2);
}

/* TITLE */

.cat-content h2{
    color:#fff;
    font-size:16px;
    line-height:1.2;
    margin-bottom:18px;
    font-weight:700;
}

/* BUTTON */

.explore-btn{
    position:relative;
    z-index:5;
    border:none;
    background:#fff;
    color:#111;
    padding:12px 20px;
    border-radius:50px;
    font-size:12px;
    font-weight:600;
    cursor:pointer;
}

.explore-btn:hover{
    background:gold;
    transform:translateY(-2px);
}

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

.cart-item{
    display:flex;
    justify-content:space-between;
    align-items:center;
    background:#fff;
    padding:10px;
    margin-bottom:10px;
    border-radius:10px;
    font-size:12px;
}

.remove-btn{
    background:red;
    color:#fff;
    border:none;
    width:30px;
    height:30px;
    border-radius:50%;
    cursor:pointer;
    font-size:14px;
}

/* =========================
   HEADER
========================= */

header{
    background:linear-gradient(135deg,#fbc2eb,#a6c1ee);
    color:#fff;
    padding:15px 20px;
    border-radius:10px;
    margin-bottom:30px;
    margin-top:-20px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo{
    display:flex;
    align-items:center;
    gap:10px;
    font-size:28px;
    font-weight:700;
    color:#222;
}

.logo img{
    width:70px;
    height:70px;
    border-radius:50%;
    object-fit:cover;
    border:2px solid #fff;
    box-shadow:0 3px 8px rgba(0,0,0,0.15);
}

.cart-box{
    position:relative;
    cursor:pointer;
    font-size:20px;
}

.cart-count{
    position:absolute;
    top:-10px;
    right:-10px;
    background:red;
    color:#fff;
    width:20px;
    height:20px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:12px;
}

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

.hero{
    position:relative;
    width:100%;
    height:300px;
    overflow:hidden;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#000;
}

.hero-slider{
    width:100%;
    overflow:hidden;
    position:absolute;
    height:100%;
}

.slide-track{
    display:flex;
    width:max-content;
    animation:scrollImages 20s linear infinite;
}

.slide-track img{
    width:300px;
    height:300px;
    object-fit:cover;
    flex-shrink:0;
}

/* ANIMATION */

@keyframes scrollImages{

    0%{
        transform:translateX(0);
    }

    100%{
        transform:translateX(-50%);
    }

}

/* HERO OVERLAY */

.hero-overlay{
    position:absolute;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.45);
    z-index:1;
}

/* HERO CONTENT */

.hero-content{
    position:relative;
    z-index:2;
    text-align:center;
    color:#fff;
    padding:20px;
}

.hero-tag{
    display:inline-block;
    background:rgba(255,255,255,0.2);
    padding:8px 18px;
    border-radius:30px;
    font-size:14px;
    margin-bottom:20px;
    backdrop-filter:blur(4px);
}

.hero-content h1{
    font-size:32px;
    font-weight:700;
}

.hero-content p{
    font-size:18px;
    margin-top:15px;
    margin-bottom:30px;
    color:#f5f5f5;
}

/* BUTTON */

.shop-btn{
    background:#ff6b81;
    color:#fff;
    border:none;
    padding:14px 34px;
    border-radius:40px;
    font-size:14px;
    transition:0.3s;
    font-weight:600;
}

.shop-btn:hover{
    background:#ff3f61;
    transform:scale(1.05);
}

/* =========================
   PRODUCTS
========================= */

.products-title{
    text-align:center;
    font-size:24px;
    margin-bottom:30px;
}

.products{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

/* =========================
   CART SIDEBAR
========================= */

.cart{
    position:fixed;
    top:0;
    right:-100%;
    width:350px;
    height:100vh;
    background:#fff;
    box-shadow:-5px 0 10px rgba(0,0,0,0.2);
    padding:16px;
    transition:0.4s ease;
    overflow-y:auto;
    z-index:9999;
}

.cart.active{
    right:0;
}

.cart h2{
    margin-bottom:16px;
}

.total{
    margin-top:20px;
    font-size:18px;
    font-weight:bold;
}

.whatsapp-btn{
    width:100%;
    margin-top:20px;
    background:#25D366;
    color:#fff;
    border:none;
    padding:15px;
    border-radius:5px;
    font-size:18px;
    cursor:pointer;
}
 

/* =========================
   FLOAT BUTTONS
========================= */

.floating-buttons{
    position:fixed;
    right:20px;
    top:50%;
    transform:translateY(-50%);
    display:flex;
    flex-direction:column;
    gap:15px;
    z-index:9999;
}

.float-btn{
    width:60px;
    height:60px;
    border:none;
    border-radius:50%;
    background:linear-gradient(135deg,#ff758c,#ff7eb3);
    color:#fff;
    font-size:24px;
    cursor:pointer;
    box-shadow:0 5px 15px rgba(0,0,0,0.2);
    transition:0.3s;
    position:relative;
}

.float-btn:hover{
    transform:scale(1.1);
}

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

/* =========================
   SOCIAL
========================= */

.social-wrap{
    display:flex;
    justify-content:center;
    align-items:center;
    width:100%;
    margin-top:20px;
}

.instagram-btn{
    width:42px;
    height:42px;
    border-radius:50%;
    background:#E1306C;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    box-shadow:0 4px 10px rgba(0,0,0,0.15);
    transition:0.3s;
}

.instagram-btn:hover{
    transform:scale(1.1);
}

/* =========================
   REVIEWS
========================= */

.reviews-section{
    background:#000;
    padding:70px 0;
    overflow:hidden;
}

.rev-h{
    text-align:center;
    color:#fff;
    font-size:24px;
    font-weight:700;
    font-family:Georgia,serif;
}

.rev-sub{
    text-align:center;
    color:#f4c430;
    font-size:12px;
    margin-top:8px;
    margin-bottom:50px;
}

.rev-wrapper{
    width:100%;
    overflow:hidden;
    position:relative;
    padding-top:15px;
}

.rev-track{
    display:flex;
    gap:20px;
    width:max-content;
     animation:reviewScroll 25s linear infinite;
   /*animation:reviewScroll 25s linear infinite;*/
}

.rev-card{
    width:320px;
    min-height:220px;
 background:linear-gradient(
    145deg,
    #4a102a,
    #ff5c8a
);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:22px;
    padding:30px;
    flex-shrink:0;
    box-shadow:0 10px 25px rgba(0,0,0,0.4);
    transition:0.3s;
}

.rev-card:hover{
    transform:translateY(-8px);
    border-color:#f4c430;
}

.rev-quote{
    font-size:50px;
    color:#f4c430;
    line-height:1;
    margin-bottom:15px;
}

.rev-text{
    color:#d7d7d7;
    font-size:15px;
    line-height:1.9;
    margin-bottom:28px;
    min-height:95px;
}

.rev-person{
    display:flex;
    align-items:center;
    gap:14px;
}

.rev-avatar{
    width:44px;
    height:44px;
    border-radius:50%;
    background:#2d2d2d;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
    font-size:20px;
}

.rev-name{
    color:#fff;
    font-size:16px;
    font-weight:600;
}

.rev-loc{
    color:#f4c430;
    font-size:14px;
    margin-top:3px;
}

@keyframes reviewScroll{

    0%{
        transform:translateX(0);
    }

    100%{
        transform:translateX(-50%);
    }

}

.rev-wrapper:hover .rev-track{
    animation-play-state:paused;
}


/* TAB MENU */

.product-tabs{
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
    margin-bottom:40px;
}

/* TAB BUTTON */

.tab-btn{
    border:none;
    padding:14px 28px;
    border-radius:40px;
    background:#fff;
    color:#111;
    font-size:15px;
    font-weight:600;
    cursor:pointer;
    transition:0.3s;
    box-shadow:0 4px 10px rgba(0,0,0,0.08);
}

/* ACTIVE TAB */

.tab-btn.active{
    background:linear-gradient(135deg,#ff758c,#ff7eb3);
    color:#fff;
}

/* HOVER */

.tab-btn:hover{
    transform:translateY(-3px);
}

/* TAB CONTENT */

.tab-content{
    display:none;
}

/* ACTIVE CONTENT */

.tab-content.active{
    display:block;
}

.product-code{
    font-size:12px;
    font-weight:400;
    opacity:0.8;
    display:block; /* moves code to next line */
    margin-top:4px;
}

/* trust section */
.trust-section{
    width:100%;
    margin:60px auto;
    padding:50px 20px;
    text-align:center;
    background:#ffe4ec;
    border-radius:25px;
    box-shadow:0 10px 30px rgba(255,105,180,0.12);
}

.trust-h{
    font-size:2.3rem;
    font-weight:700;
    color:#d63384;
    margin-bottom:10px;
}

.trust-sub{
    color:#8a4f6d;
    font-size:1.05rem;
    margin-bottom:40px;
}

/* Stats */
.stats-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:20px;
    margin-bottom:40px;
}

.stat-card{
    background:#fff;
    padding:30px 20px;
    border-radius:20px;
    border:1px solid #ffd6e7;
    box-shadow:0 8px 25px rgba(255,105,180,0.12);
    transition:.3s;
}

.stat-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(255,105,180,0.2);
}

.stat-num{
    font-size:2rem;
    font-weight:800;
    background:linear-gradient(135deg,#ff4f9a,#ff7eb3);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    margin-bottom:8px;
}

.stat-lbl{
    color:#6d4c5b;
    font-weight:600;
}

/* Features */
.feat-strip{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:15px;
}

.feat-item{
    display:flex;
    align-items:center;
    gap:8px;
    padding:12px 20px;
    background:#fff;
    border:1px solid #ffd6e7;
    border-radius:50px;
    color:#d63384;
    font-weight:600;
    box-shadow:0 4px 12px rgba(255,105,180,0.1);
    transition:.3s;
}

.feat-item:hover{
    background:linear-gradient(135deg,#ff4f9a,#ff7eb3);
    color:#fff;
    transform:translateY(-4px);
}

.feat-item span:first-child{
    font-size:1.2rem;
}

/* Alert Message*/

.custom-alert{
    display:none;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.5);
    z-index:9999;
    justify-content:center;
    align-items:center;
}

.alert-box{
    width:320px;
    background:#fff;
    border-radius:20px;
    padding:25px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.2);
    animation:popup .3s ease;
}

.alert-icon{
    font-size:50px;
    color:#28a745; 
    width:90px;
    height:90px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 15px;
    border:3px solid #ff4f9a;
    border-radius:50%;
    background:linear-gradient(135deg,#fff5f8,#ffe4ec);
    box-shadow:
        0 0 0 6px rgba(255,105,180,0.12),
        0 8px 20px rgba(255,105,180,0.2);
}
.alert-icon-Top{
    font-size:50px;
    color:#ff4f9a; /* Pink color */
}
.alert-box h3{
    color:#e91e63;
    margin:10px 0;
}

.alert-box p{
    color:#555;
    margin-bottom:20px;
}

.alert-box button{
    background:linear-gradient(135deg,#ff4f9a,#ff7eb3);
    color:#fff;
    border:none;
    padding:10px 25px;
    border-radius:30px;
    cursor:pointer;
    font-weight:bold;
}

@keyframes popup{
    from{
        transform:scale(.7);
        opacity:0;
    }
    to{
        transform:scale(1);
        opacity:1;
    }
}

.close-cart{
   background:#fff;
    color:#ff4f9a;
    border:2px solid #ff4f9a;
    padding:6px 12px;
    border-radius:20px;
    font-size:12px;
    font-weight:300;
    cursor:pointer;
    transition:0.3s;
}

.close-cart:hover{
   background:#ff4f9a;
    color:#fff;
}

.clear-cart-btn{
    background:#fff;
    color:#ff4f9a;
    border:2px solid #ff4f9a;
    padding:6px 12px;
    border-radius:20px;
    font-size:12px;
    font-weight:300;
    cursor:pointer;
    transition:0.3s;
}

.clear-cart-btn:hover{
    background:#ff4f9a;
    color:#fff;
}
 
 .logoRight{
    display:flex;
    align-items:center;
    justify-content:center;
    padding:8px 14px;
    background:#fff;
    border-radius:16px;
    box-shadow:0 6px 18px rgba(0,0,0,0.08);
    transition:0.3s ease;
}
.logoRight img{
    width:auto;
    height:55px;
    object-fit:contain;
    display:block;
}
    
/* =========================
   FOOTER
========================= */

footer{
    margin-top:50px;
    margin-bottom:-40px; 
    background:#111;
    color:#fff;
    text-align:center;
    padding:20px;
    border-radius:10px;
}

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

@media(max-width:768px){

    .rev-card{
        width:280px;
        padding:24px;
    }
   .logo img{
        width:45px;
        height:45px;
    }

     .logoRight img{
        height:50px;
    }
}

@media(max-width:600px){

    body{
        padding:15px;
    }
 .header
    {
        margin-top:100;
    }
    .hero h1{
        font-size:28px;
    }

    .cart{
        width:100%;
    }

    .cat-card{
        width:100%;
        height:350px;
    }

    .cat-content h2{
        font-size:16px;
    }
     .logoRight img{
        height:30px;
    }
}



/* =========================
   ELIVAE PREMIUM ENHANCEMENTS
========================= */

html{
    scroll-behavior:smooth;
}

.products{
    justify-content:center;
}

.whatsapp-btn{
    transition:.3s;
}

.whatsapp-btn:hover{
    background:#1ebe5d;
    transform:translateY(-2px);
}

 

@media(max-width:600px){

    .logo{
        font-size:20px;
    }
    .header
    {
        margin-top:100;
    }
    .logo img{
        width:50px;
        height:50px;
    }
    .logoRight img{
        width:auto;
        height:30px;
    }
    .tab-btn{
        padding:10px 16px;
        font-size:13px;
    }
}
