*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Montserrat',sans-serif;
    background:#050B5C;
    color:white;
    overflow-x:hidden;
}

/* NAVBAR */

.custom-navbar{
    width:100%;
    padding:20px 0;
    background:#050B5C;
    border-bottom:1px solid rgba(255,255,255,0.1);
    position:sticky;
    top:0;
    z-index:999;
}

.nav-wrapper{
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.logo-area{
    display:flex;
    align-items:center;
    gap:12px;
    text-decoration:none;
}

.logo-icon{
    width:52px;
    height:52px;
    border-radius:14px;
    background:#F4C261;
    color:#050B5C;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    font-weight:700;
}

.logo-text{
    font-size:24px;
    font-weight:800;
    color:white;
}

.nav-menu{
    display:flex;
    align-items:center;
    gap:40px;
    list-style:none;
    margin:0;
}

.nav-menu a{
    text-decoration:none;
    color:#B8B8D4;
    font-size:16px;
    font-weight:600;
    transition:0.3s;
}

.nav-menu a:hover{
    color:#F4C261;
}

.nav-menu .active{
    background:rgba(255,255,255,0.08);
    padding:14px 24px;
    border-radius:16px;
    color:#F4C261;
}

.cart-icon{
    font-size:34px;
    cursor:pointer;
}

/* RIGHT ICON AREA */

.nav-icons{

    display:flex;

    align-items:center;

    gap:25px;
}


/* ==================
 MOBILE SIDE MENU
================== */


.mobile-menu-btn{

display:none;

background:none;

border:none;

color:white;

font-size:32px;

cursor:pointer;

}


.mobile-sidebar{

position:fixed;

top:0;

left:-330px;

width:300px;

height:100vh;

background:#080d58;   /* same page bg */

z-index:99999;

transition:.4s ease;

overflow:auto;

border-right:1px solid rgba(255,255,255,0.1);

}


.mobile-sidebar.show-menu{

left:0;

}


.mobile-search{

height:70px;

display:flex;

align-items:center;

justify-content:space-between;

padding:0 22px;

border-bottom:1px solid rgba(255,255,255,0.15);

}


.mobile-search input{

background:transparent;

border:none;

outline:none;

color:white;

font-size:15px;

width:80%;

}

.mobile-search input::placeholder{

color:#c7c9e6;

}


.mobile-tabs{

display:flex;

height:60px;

border-bottom:1px solid rgba(255,255,255,.15);

}


.mobile-tabs span{

flex:1;

display:flex;

align-items:center;

justify-content:center;

font-weight:800;

font-size:14px;

letter-spacing:1px;

color:#a8aac7;

}


.mobile-tabs .active-tab{

color:#ffc857;

border-bottom:2px solid #ffc857;

}



.mobile-sidebar ul{

padding:0;

margin:0;

}


.mobile-sidebar li{

list-style:none;

border-bottom:1px solid rgba(255,255,255,.12);

}


.mobile-sidebar a{

display:block;

padding:18px 30px;

color:white;

font-size:15px;

font-weight:800;

letter-spacing:1px;

text-decoration:none;

transition:.3s;

}

.mobile-sidebar a:hover{

color:#ffc857;

padding-left:40px;

}



/* overlay */

.menu-overlay{

display:none;

position:fixed;

inset:0;

background:rgba(0,0,0,.55);

z-index:9999;

}


.show-overlay{

display:block;

}


/* ==================
 MOBILE NAV FIX
================== */


/* ================= MOBILE NAVBAR ================= */

.mobile-menu-btn{
    display:none;
    background:none;
    border:none;
    color:white;
    font-size:30px;
    cursor:pointer;
}


@media(max-width:768px){

    .custom-navbar{
        height:75px;
        padding:0 15px;
    }


    .nav-wrapper{
        height:75px;
        display:flex;
        justify-content:space-between;
        align-items:center;
    }


    .logo-area{
        display:flex;
        align-items:center;
        gap:10px;
    }


    .logo-icon{
        width:50px;
        height:50px;
        font-size:24px;
        border-radius:14px;
    }


    .logo-text{
        font-size:22px;
    }


    /* IMPORTANT FIX */
    .nav-menu{
        display:none !important;
    }


    .mobile-menu-btn{
        display:block;
    }


    .cart-icon{
        font-size:25px;
    }


    .nav-icons{
        display:flex;
        align-items:center;
        gap:25px;
    }


}



/* MOBILE SIDEBAR */

.mobile-sidebar{

    position:fixed;

    top:0;
    left:-80%;

    width:75%;
    height:100vh;

    background:#05075d;

    z-index:9999;

    transition:.4s ease;

}


.mobile-sidebar.show-menu{

    left:0;

}



.mobile-search{

    padding:20px;

    display:flex;

    justify-content:space-between;

    color:white;

    border-bottom:1px solid rgba(255,255,255,.1);

}


.mobile-search input{

    background:transparent;

    border:none;

    outline:none;

    color:white;

    width:85%;

}


.mobile-search input::placeholder{

    color:#cfcfff;

}



.mobile-tabs{

    display:flex;

    justify-content:space-around;

    padding:18px;

    color:white;

    font-weight:800;

    letter-spacing:2px;

}



.mobile-tabs .active-tab{

    color:#ffc84d;

}



.mobile-sidebar ul{

    padding:0;

    margin:0;

}



.mobile-sidebar ul li{

    list-style:none;

}



.mobile-sidebar ul li a{

    display:block;

    padding:18px 30px;

    color:white;

    text-decoration:none;

    font-size:15px;

    font-weight:800;

    letter-spacing:1px;

    border-bottom:1px solid rgba(255,255,255,.08);

}


.mobile-sidebar ul li a.active{

    color:#ffc84d;

}



/* overlay */


.menu-overlay{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.65);

    display:none;

    z-index:9998;

}


.menu-overlay.show-overlay{

    display:block;


}



/* Floating Contact */

.floating-contact{

position:fixed;

right:20px;

bottom:30px;

display:flex;

flex-direction:column;

gap:15px;

z-index:9999;

}


.floating-contact a{

width:50px;

height:50px;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

font-size:24px;

text-decoration:none;

box-shadow:0 5px 20px #0005;

}


.whatsapp-btn{
    position:fixed;
    right:21px;
    bottom:110px;
    z-index:999;
    display:block;
}

.whatsapp-btn img{
    width:50px;
    height:50px;
    object-fit:contain;
    transition:.3s;
}

.whatsapp-btn img:hover{
    transform:scale(1.1);
}


.phone-btn{

background:#0a7cff;


}

.phone-btn:hover{
    transform:scale(1.1);
}


.mobile-search{
position:relative;
}

#searchResults{

position:absolute;

top:55px;

left:0;

right:0;

background:white;

border-radius:10px;

overflow:hidden;

z-index:9999;

display:none;
}

.search-item{

display:block;

padding:12px;

color:#050B5C;

text-decoration:none;

border-bottom:1px solid #eee;

font-weight:600;
}

.search-item:hover{
background:#f7f7f7;
}


/* GOLDEN SPARKS */

.particles{

position:absolute;

inset:0;

overflow:hidden;

pointer-events:none;

z-index:1;

}

.spark{

position:absolute;

bottom:-50px;

width:3px;
height:12px;

border-radius:10px;

background:linear-gradient(
to top,
transparent,
#F4C261
);

box-shadow:
0 0 8px #F4C261,
0 0 15px #F4C261;

opacity:0;

animation:sparkFloat linear infinite;

}

@keyframes sparkFloat{

0%{

transform:
translateY(0);

opacity:0;

}

10%{

opacity:.9;

}

100%{

transform:
translateY(-900px);

opacity:0;

}

}

/* FEATURED PRODUCTS */

.featured-products{

padding:80px 0;

}

.section-header{

text-align:center;

margin-bottom:50px;

}

.section-header span{

color:#F4C261;

letter-spacing:4px;

font-weight:700;

font-size:12px;

}

.section-header h2{

font-size:42px;

font-weight:900;

margin-top:15px;

}

.products-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:25px;

}

.product-card{

position:relative;

background:#09106D;

border:1px solid rgba(255,255,255,.08);

border-radius:25px;

padding:20px;

overflow:hidden;

transition:.35s ease;

}

.product-card:hover{

transform:translateY(-10px);

box-shadow:
0 20px 40px rgba(0,0,0,.25);

}



.product-image{

height:220px;

padding:20px;

display:flex;

align-items:center;

justify-content:center;

}

.product-image img{

max-width:100%;

max-height:180px;

object-fit:contain;

}

.product-content{

padding:20px;

text-align:center;

}

.product-content h4{

font-size:16px;

font-weight:800;

min-height:50px;

}

.price{

margin-top:10px;

font-size:20px;

font-weight:900;

color:#F4C261;

}

.discount-badge{

position:absolute;

top:15px;
left:15px;

background:#F4C261;

color:#050B5C;

padding:8px 14px;

border-radius:50px;

font-size:12px;

font-weight:800;

}

.product-price{

margin-top:15px;

display:flex;

justify-content:center;

gap:10px;

align-items:center;

}

.old-price{

text-decoration:line-through;

color:#9FA6D8;

font-size:14px;

}

.new-price{

color:#F4C261;

font-size:22px;

font-weight:900;

}

.product-btn{

display:block;

margin-top:20px;

background:#F4C261;

color:#050B5C;

padding:12px;

border-radius:12px;

text-align:center;

text-decoration:none;

font-weight:800;

}

.product-btn:hover{

background:#FFD27A;

}

@media(max-width:768px){

.products-grid{

grid-template-columns:
repeat(2,1fr);

gap:15px;

}

.product-card{

padding:15px;

border-radius:20px;

}

.product-image{

height:130px;

padding:10px;

}

.product-image img{

max-height:110px;

}

.product-content{

padding:10px;

}

.product-content h4{

font-size:14px;

min-height:auto;

margin-bottom:10px;

}

.old-price{

font-size:12px;

}

.new-price{

font-size:18px;

}

.product-btn{

padding:10px;

font-size:13px;

margin-top:15px;

}

.discount-badge{

font-size:10px;

padding:6px 10px;

}

.section-header h2{

font-size:30px;

}

}




/* HERO */

.hero-section{
    position:relative;
    min-height:620px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    overflow:hidden;
}



.hero-section::before{
    content:'';
    position:absolute;
    inset:0;
    background:url('../images/fireworks.jpg');
    background-size:cover;
    background-position:center;
    opacity:0.25;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        to bottom,
        rgba(5,11,92,0.4),
        rgba(5,11,92,0.95)
    );
}

.hero-content{
position:relative;
z-index:2;
animation:heroFade 1.2s ease;
}

@keyframes heroFade{

from{
opacity:0;
transform:translateY(40px);
}

to{
opacity:1;
transform:translateY(0);
}

}

.hero-badge{
    display:inline-block;
    padding:12px 30px;
    border-radius:50px;
    background:rgba(255,255,255,0.08);
    color:#F4C261;
    font-size:12px;
    letter-spacing:6px;
    font-weight:700;
    margin-bottom:30px;
}

.hero-title{
    font-size:65px;
    line-height:1;
    font-weight:900;
    margin-bottom:30px;
    text-transform:uppercase;
}

.hero-title span{
    color:#F4C261;
}

.hero-text{
    max-width:1000px;
    margin:auto;
    font-size:20px;
    line-height:1.8;
    color:#D4D7FF;
}

.hero-buttons{
    margin-top:30px;
    display:flex;
    justify-content:center;
    gap:25px;
    flex-wrap:wrap;
}

.launch-btn{
    background:#F4C261;
    color:#050B5C;
    text-decoration:none;
    padding:18px 45px;
    border-radius:70px;
    font-size:15px;
    font-weight:800;
}

.safety-btn{
    border:1px solid rgba(255,255,255,0.2);
    color:white;
    text-decoration:none;
    padding:18px 40px;
    border-radius:70px;
    font-size:15px;
    font-weight:700;
}

.launch-btn,
.safety-btn{

transition:.35s ease;

}

.launch-btn:hover{

transform:translateY(-4px);

box-shadow:
0 15px 35px rgba(244,194,97,.35);

}

.safety-btn:hover{

transform:translateY(-4px);

background:
rgba(255,255,255,.08);

}

.hero-features{
    margin-top:60px;
    display:flex;
    justify-content:center;
    gap:40px;
    flex-wrap:wrap;
}

.hero-features span{
    color:#F4C261;
    font-size:12px;
    font-weight:700;
    letter-spacing:4px;
}

/* HERO BURST */

#fireworkBurst{

position:absolute;

width:180px;
height:180px;

border-radius:50%;

pointer-events:none;

opacity:0;

z-index:1;

background:

radial-gradient(
circle,
rgba(244,194,97,.5) 0%,
rgba(244,194,97,.15) 30%,
transparent 70%
);

filter:blur(6px);

}


/* FEATURES */

.features-section{
    padding:60px 0;
}

.feature-card{
    background:white;
    border-radius:20px;
    padding:35px;
    height:100%;
    min-height: 190px;
    color:#050B5C;
}

.feature-icon{
    font-size:42px;
    margin-bottom:30px;
}

.feature-card h3{
    font-size:20px;
    font-weight:800;
    margin-bottom:25px;
}

.feature-card p{
    font-size:17px;
    line-height:1.8;
    color:#555;
}

.features-section,
.series-section,
.category-section,
.cta-section{

opacity:0;

transform:
translateY(50px);

transition:
all .8s ease;

}

.show{

opacity:1;

transform:
translateY(0);

}

/* =================
   GIFT BOX SECTION
================= */

.series-section{
    padding:50px 0;
}


.series-card{

    height:500px;

    padding:35px;

    border-radius:32px;

    position:relative;

    overflow:hidden;

    display:flex;

    flex-direction:column;

    justify-content:flex-end;

    transition:.5s ease;
}


/* image layer */

.card-bg{

    position:absolute;

    inset:0;

    background-size:cover;

    background-position:center;

    opacity:.85;

    transition:.7s ease;
}

.series-card::after{

    content:"";

    position:absolute;

    inset:0;

    background:
    linear-gradient(
        to top,
        rgba(0,0,0,.8),
        transparent
    );

    z-index:1;
}


.series-card:hover .card-bg{
    transform:scale(1.15);
    opacity:.45;
}



/* glow */

.series-card::before{

    content:"";

    width:180px;
    height:180px;

    position:absolute;

    top:-80px;
    right:-80px;

    border-radius:50%;

    background:rgba(255,255,255,.12);
}



/* edition */


.edition-text{

    position:relative;
    z-index:2;

    font-size:10px;

    letter-spacing:4px;

    color:#FFD166;

    font-weight:800;

    margin-bottom:20px;
}


/* title */


.series-card h3{

    position:relative;

    z-index:2;

    font-size:32px;

    line-height:1.15;

    max-width:300px;

    margin-bottom:15px;

    color:white;

    font-weight:900;
}


/* line */

.series-card hr{

    position:relative;

    z-index:2;

    width:100%;

    margin:10px 0 20px;

    opacity:.25;

}


/* description */


.series-card p{

    position:relative;

    z-index:2;

    font-size:15px;

    line-height:1.5;

    color:#eee;
}

/* price */

.price-box{

    position:relative;

    z-index:2;

    margin-top:auto;

    font-size:22px;

    font-weight:900;

    color:#FFD166;

}

/* hover */

.series-card:hover{

    transform:translateY(-12px);

    box-shadow:
    0 25px 50px rgba(0,0,0,.45);
}


/* IRON MAN */

.iron-card{
    background:
    linear-gradient(135deg,#ff0000,#7a0000);
}

.iron-bg{
    background-image:url('../images/ironman.png');
}

/* CAPTAIN */

.captain-card{
    background:
    linear-gradient(135deg,#2563ff,#001b74);
}

.captain-bg{
    background-image:url('../images/captain.png');
}

/* THOR */

.thor-card{
    background:
    linear-gradient(135deg,#1a1a1a,#000000);
}

.thor-bg{
    background-image:url('../images/thor.png');
}

/* HULK */

.hulk-card{
    background:
    linear-gradient(135deg,#00b140,#003d12);
}

.hulk-bg{
    background-image:url('../images/hulk.png');
}

/* WIDOW */

.widow-card{
    background:
    linear-gradient(135deg,#000000,#2d0000);
}

.widow-bg{
    background-image:url('../images/widow.png');
}

/* HAWKEYE */

.hawkeye-card{
    background:
    linear-gradient(135deg,#6a0dad,#220033);
}

.hawkeye-bg{
    background-image:url('../images/hawkeye.png');
}


/* FLOATING */

.series-card{
    animation:floating 5s ease-in-out infinite;
}

@keyframes floating{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-8px);
    }

    100%{
        transform:translateY(0px);
    }

}

/* ===============================
 FINAL MOBILE NAV FIX
================================ */

@media(max-width:991px){

    .series-card h3{
        font-size:36px;
    }

    .series-card{
        min-height:auto;
    }


.custom-navbar{

height:75px;

padding:0 15px;

}


.nav-wrapper{

height:75px;

display:flex;

align-items:center;

justify-content:space-between;

}


.logo-icon{

width:48px;

height:48px;

font-size:24px;

}


.logo-text{

font-size:20px;

font-weight:900;

}


/* hide desktop menu */

.nav-menu{

display:none !important;

}


.nav-icons{

display:flex;

align-items:center;

gap:22px;

}


.cart-icon{

font-size:25px;

}


.mobile-menu-btn{

display:block !important;

background:none;

border:none;

color:white;

font-size:32px;

}




/* sidebar */

.mobile-sidebar{

position:fixed;

top:0;

left:-80%;

width:75%;

height:100vh;

background:#050B5C;

z-index:99999;

transition:.35s;

}


.mobile-sidebar.show-menu{

left:0;

}


.mobile-search{

height:60px;

padding:0 18px;

}


.mobile-tabs{

height:55px;

}


.mobile-sidebar a{

font-size:14px;

padding:18px 25px;

}


.menu-overlay{

z-index:99998;

}

}


/* CATEGORY */

.category-section{
    padding:120px 0;
}

.category-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.category-header h5{
    color:#F4C261;
    letter-spacing:5px;
}

.category-header a{
    color:white;
    text-decoration:none;
    font-weight:700;
}

.category-card{
    position:relative;
    overflow:hidden;
    border-radius:40px;
}

.category-card img{
    width:100%;
    height:350px;
    object-fit:cover;
}

.category-content{
    color: #fff;
    position:absolute;
    left:30px;
    bottom:30px;
}

.category-content span{
    color:#F4C261;
    font-size:13px;
    font-weight:700;
}

.category-content h3{
    margin-top:15px;
    font-size:27px;
    font-weight:900;
}

/* CTA */

.cta-section{
    padding:50px 0;
}

.cta-box{
    background:#F4C261;
    border-radius:35px;
    padding:50px;
    text-align:center;
    color:#050B5C;
}

.cta-box h2{
    font-size:32px;
    font-weight:900;
}

.cta-box p{
    font-size:15px;
    margin-top:30px;
    line-height:1.8;
}

.cta-btn{
    display:inline-block;
    margin-top:10px;
    background:#050B5C;
    color:white;
    text-decoration:none;
    padding:28px 40px;
    border-radius:70px;
    font-size:15px;
    font-weight:800;
}

/* FOOTER */

.footer-section{
    padding:100px 0 40px;
    border-top:1px solid rgba(255,255,255,0.1);
}

.footer-logo{
    font-size:28px;
    font-weight:900;
    color:#F4C261;
}

.footer-text{
    margin-top:25px;
    color:#C8C8E8;
    font-size:16px;
    line-height:1.8;
}

.footer-section h4{
    color:#F4C261;
    margin-bottom:30px;
    font-size:18px;
    font-weight:800;
}

.footer-section ul{
    list-style:none;
    padding:0;
}

.footer-section ul li{
    margin-bottom:18px;
}

.footer-section ul li a{
    color:#C8C8E8;
    text-decoration:none;
    font-size:15px;
}

.footer-bottom{
    margin-top:70px;
    padding-top:30px;
    border-top:1px solid rgba(255,255,255,0.1);
    display:flex;
    justify-content:space-between;
    flex-wrap:wrap;
    color:#C8C8E8;
}

.footer-credit{
    line-height:1.8;
}

.developer-label{
    color:#F4C261;
    font-weight:600;
    letter-spacing:.5px;
}

.developer-link{
    color:#ffffff;
    font-weight:700;
    text-decoration:none;
    border-bottom:2px solid #F4C261;
    transition:.3s;
}

.developer-link:hover{
    color:#F4C261;
}


.testimonial-section{

padding:50px 8%;
text-align:center;

}

.section-title span{

color:#F4C261;
font-weight:700;
letter-spacing:3px;

}

.section-title h2{

font-size:48px;
color:white;
margin:20px 0;

}

.section-title p{

color:#d6d6d6;
max-width:700px;
margin:auto;

}

.testimonial-slider{

overflow:hidden;
margin-top:40px;
padding-top: 10px;

}

.testimonial-track{

display:flex;
gap:30px;

transition:.7s ease;

}

.testimonial-card{

min-width:calc((100% - 60px)/3);

background:#09106D;

border:1px solid rgba(255,255,255,.08);

border-radius:28px;

padding:30px;

text-align:left;

transition:.35s;

}

.testimonial-card:hover{

transform:translateY(-10px);

box-shadow:0 20px 50px rgba(0,0,0,.35);

}

.testimonial-top{

display:flex;

align-items:center;

gap:15px;

margin-bottom:20px;

}

.testimonial-avatar{

width:70px;
height:70px;

border-radius:50%;
object-fit:cover;

}

.testimonial-top h4{

color:white;

font-size:22px;

margin-bottom:5px;

}

.verified{

display:inline-block;

background:#F4C261;

padding:5px 12px;

border-radius:30px;

font-size:14px;

font-weight: 700;

color:#09106D;

}

.community{

display:inline-block;

background:#555;

padding:5px 12px;

border-radius:30px;

font-size:13px;

color:white;

}

.stars{

color:#F4C261;

font-size:24px;

margin:15px 0;

}

.testimonial-text{

color:#d8d8d8;

line-height:1.8;

min-height:120px;

}

.testimonial-dots{

margin-top:40px;

display:flex;

justify-content:center;

gap:12px;

}

.testimonial-dots span{

width:12px;
height:12px;

background:#555;

border-radius:50%;

cursor:pointer;

}

.testimonial-dots span.active{

background:#F4C261;

transform:scale(1.3);

}

@media(max-width:768px){

.testimonial-card{

min-width:100%;

}

.section-title h2{

font-size:34px;

}

}



/*==========================
INSTAGRAM REELS
===========================*/

.reels-section{

padding:50px 5%;
overflow:hidden;

}

/*==========================
REELS SECTION HEADER
==========================*/

.reels-section .section-title{

text-align:center;

margin-bottom:60px;

}

.reels-section .section-title span{

display:inline-block;

padding:10px 22px;

background:rgba(244,194,97,.12);

border:1px solid rgba(244,194,97,.35);

border-radius:50px;

color:#F4C261;

font-size:14px;

font-weight:700;

letter-spacing:2px;

text-transform:uppercase;

margin-bottom:12px;

}

.reels-section .section-title h2{

font-size:35px;

font-weight:800;

color:#fff;

margin-bottom:15px;

line-height:1.2;

}

.reels-section .section-title p{

max-width:650px;

margin:auto;

font-size:17px;

line-height:1.8;

color:#d7d7d7;

}

@media(max-width:768px){

.reels-section .section-title{

margin-bottom:40px;

}

.reels-section .section-title span{

font-size:12px;

padding:8px 18px;

letter-spacing:1px;

}

.reels-section .section-title h2{

font-size:32px;

}

.reels-section .section-title p{

font-size:15px;

padding:0 10px;

}

}

.reels-slider{

overflow:hidden;
position:relative;

}

.reels-track{

display:flex;
gap:25px;

transition:transform .8s ease;

}

.reel-card{

flex:0 0 calc(25% - 19px);

position:relative;

aspect-ratio:9/16;

border-radius:25px;

overflow:hidden;

cursor:pointer;

background:#111;

box-shadow:0 20px 45px rgba(0,0,0,.25);

transition:.35s;

}

.reel-card:hover{

transform:translateY(-8px);

box-shadow:0 25px 60px rgba(0,0,0,.4);

}

.reel-card img{

width:100%;
height:100%;

object-fit:cover;

transition:.5s;

}

.reel-card:hover img{

transform:scale(1.06);

}

.play-overlay{

position:absolute;

inset:0;

display:flex;

align-items:center;

justify-content:center;

background:linear-gradient(
to top,
rgba(0,0,0,.45),
rgba(0,0,0,.1)
);

}

.play-btn{

width:72px;
height:72px;

background:rgba(255,255,255,.22);

backdrop-filter:blur(8px);

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

font-size:30px;

color:white;

transition:.3s;

}

.reel-card:hover .play-btn{

transform:scale(1.12);

background:#F4C261;
color:#09106D;

}

.mute-icon{

position:absolute;

bottom:18px;
right:18px;

width:42px;
height:42px;

border-radius:50%;

background:rgba(0,0,0,.55);

display:flex;

align-items:center;

justify-content:center;

font-size:18px;

color:white;

}

.watch-text{

position:absolute;

bottom:35px;

left:50%;

transform:translateX(-50%);

color:white;

font-weight:700;

font-size:15px;

letter-spacing:1px;

opacity:0;

transition:.3s;

}

.reel-card:hover .watch-text{

opacity:1;

bottom:45px;

}

/* Tablet */

@media(max-width:1024px){

.reel-card{

flex:0 0 calc(50% - 13px);

}

}

/* Mobile */

@media(max-width:768px){

.reel-card{

flex:0 0 100%;

}

.reels-section{

padding:70px 20px;

}

}





/* ==========================
   WELCOME POPUP
========================== */

.welcome-overlay{

position:fixed;

top:0;
left:0;

width:100%;
height:100%;

background:rgba(0,0,0,.75);

display:none;

justify-content:center;

align-items:center;

z-index:999999;

backdrop-filter:blur(6px);

animation:fadeOverlay .35s;

}

@keyframes fadeOverlay{

from{
opacity:0;
}

to{
opacity:1;
}

}

.welcome-popup{

width:90%;
max-width:480px;

max-height:80vh;

overflow-y:auto;

background:#09106D;

padding:35px;

border-radius:22px;

text-align:center;

border:1px solid rgba(244,194,97,.25);

box-shadow:0 20px 60px rgba(0,0,0,.45);

animation:popupScale .35s;

}

@keyframes popupScale{

from{

transform:scale(.9);

opacity:0;

}

to{

transform:scale(1);

opacity:1;

}

}

.welcome-icon{

font-size:50px;
margin-bottom:10px;

}

.welcome-popup h2{

font-size:26px;
line-height:1.3;
margin-bottom:18px;

}

.welcome-text{

font-size:15px;
line-height:1.7;
text-align:left;
margin-bottom:20px;

}

.popup-links{

display:flex;

justify-content:center;

gap:25px;

margin-bottom:25px;

flex-wrap:wrap;

}

.popup-links a{

color:#F4C261;

text-decoration:none;

font-weight:700;

}

.popup-links a:hover{

text-decoration:underline;

}

.popup-btn{

background:#F4C261;

color:#050B5C;

border:none;

padding:14px 30px;

border-radius:12px;

font-size:16px;

font-weight:800;

cursor:pointer;

transition:.3s;

}

.popup-btn:hover{

transform:translateY(-3px);

}


.review-btn{

width:65px;

position:fixed;
    right:21px;
    bottom:190px;
    z-index:999;
height:65px;

border-radius:50%;


display:flex;
align-items:center;
justify-content:center;

font-size:28px;

text-decoration:none;

box-shadow:0 12px 30px rgba(0,0,0,.25);

transition:.3s;

}

.review-btn:hover{

transform:scale(1.1);

}

.review-btn img{
    width:110px;
    height:110px;
    object-fit:contain;
    transition:.3s;
}

.review-overlay{

position:fixed;

top:0;
left:0;

width:100%;
height:100%;

background:rgba(0,0,0,.75);

backdrop-filter:blur(6px);

display:none;

justify-content:center;
align-items:center;

z-index:9999;

}

.review-popup{

width:90%;
max-width:520px;

max-height:85vh;

overflow-y:auto;

background:#09106D;

border-radius:22px;

padding:20px 28px;

position:relative;

animation:popupShow .35s;

}

@keyframes popupShow{

from{

opacity:0;
transform:scale(.8);

}

to{

opacity:1;
transform:scale(1);

}

}

.review-popup h2{

color:#F4C261;

text-align:center;

margin-bottom:10px;

font-size:32px;
margin-bottom:6px;

}

.review-popup p{

text-align:center;

color:white;

margin-bottom:15px;

}

.review-popup input,
.review-popup textarea{

width:100%;

padding:12px;

margin-bottom:12px;

border:none;

border-radius:12px;

font-size:15px;

}

.review-success{

position:fixed;
inset:0;

background:rgba(0,0,0,.65);

display:none;

align-items:center;
justify-content:center;

z-index:999999;
}

.review-success.show{

display:flex;

animation:fadeIn .3s;
}

.review-success-box{

width:360px;
max-width:90%;

background:#09106D;

padding:35px;

border-radius:20px;

text-align:center;

box-shadow:0 15px 45px rgba(0,0,0,.35);
}

.success-icon{

font-size:50px;

margin-bottom:15px;
}

.review-success h3{

color:#F4C261;

margin-bottom:10px;
}

.review-success p{

color:#fff;

margin-bottom:25px;
}

.review-success button{

background:#F4C261;

color:#09106D;

border:none;

padding:14px 35px;

border-radius:12px;

font-weight:700;

cursor:pointer;
}

.upload-photo{

text-align:center;

margin-bottom:20px;


}

.upload-photo img{

width:70px;
height:70px;

border-radius:50%;

object-fit:cover;

display:block;
margin:0 auto 10px;

}

.upload-btn{

display:inline-block;

padding:10px 20px;

background:#050B5C;

color:#F4C261;

font-size: 15px;

font-weight:700;

border-radius:30px;

cursor:pointer;

margin-bottom:18px;

transition:.3s;

}


#reviewImage{

display:none;

}

.star-rating{

display:flex;

justify-content:center;

gap:8px;

font-size:28px;

margin:15px 0;

}

.star-rating span{

cursor:pointer;

color:#555;

transition:.2s;

}

.star-rating span.active{

color:#FFD166;

}   

.review-submit{

width:100%;

padding:13px;

background:#F4C261;

border:none;

border-radius:15px;

font-size:17px;

font-weight:700;

cursor:pointer;

color:#050B5C;

}

.close-review{

position:absolute;

top:15px;
right:18px;

font-size:22px;

cursor:pointer;

color:white;

}


@media(max-width:768px){

.welcome-popup{

width:92%;
padding:25px;
max-height:75vh;

}

.welcome-popup h2{

font-size:24px;

}

.welcome-text{

font-size:14px;

}

}



/* HERO MOBILE */

@media(max-width:991px){

.hero-section{

    min-height:auto;

    padding:60px 20px 50px;
}


.hero-badge{

    font-size:10px;

    letter-spacing:3px;

    padding:10px 20px;
}


.hero-title{

    font-size:38px;

    line-height:1.15;

    margin-bottom:20px;
}


.hero-text{

    font-size:15px;

    line-height:1.7;

    max-width:95%;
}


.hero-buttons{

    gap:15px;
}


.launch-btn,
.safety-btn{

    width:100%;

    max-width:280px;

    padding:15px 25px;

    font-size:13px;
}


.hero-features{

    margin-top:35px;

    gap:20px;
}


.hero-features span{

    font-size:10px;

    letter-spacing:2px;
}

}



/* SAFETY CARDS */


.features-section{

    padding:40px 0;
}


.feature-card{

    padding:25px;

    min-height:auto;

    margin-bottom:20px;
}


.feature-icon{

    font-size:30px;

    margin-bottom:20px;
}


.feature-card h3{

    font-size:18px;
}


.feature-card p{

    font-size:14px;

    line-height:1.6;
}




/* GIFT BOX MOBILE */


.series-section{

    padding:40px 0;
}


.series-card{

    height:430px;

    padding:25px;

    border-radius:25px;

    margin-bottom:25px;
}


.edition-text{

    font-size:9px;

    letter-spacing:3px;
}


.series-card h3{

    font-size:28px;

    line-height:1.15;

    max-width:240px;
}


.series-card p{

    font-size:14px;

    line-height:1.5;
}


.price-box{

    font-size:22px;
}




/* CATEGORY */


.category-section{

    padding:50px 0;
}


.category-header{

    flex-direction:column;

    align-items:flex-start;

    gap:20px;
}


.category-card{

    margin-bottom:25px;
}


.category-card img{

    height:260px;
}



/* CTA */


.cta-section{

    padding:40px 0;
}


.cta-box{

    padding:45px 25px;

    border-radius:25px;
}


.cta-box h2{

    font-size:30px;

    line-height:1.2;
}


.cta-box p{

    font-size:14px;
}


.cta-btn{

    padding:18px 30px;

    font-size:13px;
}




/* FOOTER */


.footer-section{

    padding:60px 0 30px;
}


.footer-bottom{

    gap:20px;

    font-size:13px;
}




/* SMALL MOBILE */

@media(max-width:480px){


.hero-title{

    font-size:32px;
}


.series-card{

    height:400px;
}


.series-card h3{

    font-size:25px;
}


.logo-text{

    font-size:18px;
}

}