/* =========================
   GLOBAL
========================= */

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins', sans-serif;
}

html{
scroll-behavior:smooth;
}

body{
background:#f5f5f5;
color:#111;
overflow-x:hidden;
}

/* =========================
   HEADER / NAVBAR
========================= */

header,
.navbar{
width:100%;
display:flex;
justify-content:space-between;
align-items:center;
padding:18px 60px;

background:rgba(255,255,255,0.92);
backdrop-filter:blur(10px);

border-bottom:1px solid #e5e5e5;

position:fixed;
top:0;
z-index:1000;
}

.logo{
font-size:34px;
font-weight:700;
color:#ff1a1a;
letter-spacing:1px;
cursor:pointer;
}

nav a{
color:#222;
margin:0 15px;
text-decoration:none;
transition:.3s;
font-weight:500;
}

nav a:hover{
color:#ff1a1a;
}

.nav-links{
display:flex;
gap:18px;

background:#fff;
padding:10px 15px;

border:1px solid #e8e8e8;
border-radius:50px;

box-shadow:0 5px 20px rgba(0,0,0,.05);
}

.nav-item{
text-decoration:none;
color:#444;

padding:12px 22px;
border-radius:30px;

font-size:15px;
font-weight:500;

transition:.3s;
}

.nav-item:hover{
background:#ffe5e5;
color:#ff1a1a;
transform:translateY(-2px);
}

.nav-item.active{
background:linear-gradient(135deg,#ff1a1a,#d60000);
color:white;

box-shadow:0 10px 25px rgba(255,0,0,.25);
}

.icons i,
.nav-icons a{
color:#222;
}

.nav-icons{
display:flex;
align-items:center;
gap:18px;
}

.nav-icons a{
width:42px;
height:42px;

display:flex;
justify-content:center;
align-items:center;

border-radius:50%;

background:#fff;
border:1px solid #ececec;

font-size:19px;
text-decoration:none;

transition:.3s;
}

.nav-icons a:hover{
background:#ff1a1a;
color:white;
transform:translateY(-3px);
}

/* HERO */

.hero{
    width:100%;
    padding:80px 8%;
    background:#ffffff;
    margin-top:120px;
}

/* CONTAINER */

.hero-container{
    max-width:1200px;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:50px;
    flex-wrap:wrap;
}

/* CONTENT */

.hero-content{
    flex:1;
    min-width:300px;
}

/* BADGE */

.hero-badge{
    display:inline-block;
    padding:8px 16px;
    background:#fff;
    border:1px solid #eee;
    border-radius:20px;
    font-size:12px;
    color:#ff2d2d;
    margin-bottom:20px;
    font-weight:600;
}

/* TITLE */

.hero-title{
    font-size:48px;
    font-weight:700;
    color:#111;
    margin-bottom:20px;
    line-height:1.2;
}

/* DESCRIPTION */

.hero-description{
    font-size:16px;
    color:#666;
    margin-bottom:30px;
    max-width:500px;
}

/* BUTTONS */

.hero-buttons{
    display:flex;
    gap:15px;
}

/* BUTTON BASE */

.btn{
    padding:14px 26px;
    border-radius:8px;
    text-decoration:none;
    font-size:14px;
    font-weight:600;
    transition:0.3s;
}

/* PRIMARY (red like your site) */

.btn-primary{
    background:#ff2d2d;
    color:white;
}

.btn-primary:hover{
    background:#e60000;
}

/* OUTLINE */

.btn-outline{
    border:1px solid #ddd;
    color:#333;
    background:white;
}

.btn-outline:hover{
    background:#f2f2f2;
}

/* IMAGE */

.hero-image{
    flex:1;
    text-align:center;
}

.hero-image img{
    width:100%;
    max-width:420px;
    border-radius:12px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

/* RESPONSIVE */

@media(max-width:900px){

    .hero-container{
        flex-direction:column;
        text-align:center;
    }

    .hero-buttons{
        justify-content:center;
    }

    .hero-title{
        font-size:36px;
    }

}
.filters{
margin:30px 0;
}

/* =========================
   BUTTONS
========================= */

.btn,
.card button,
.filters button{
padding:12px 30px;

background:#ff1a1a;
color:white;

border:none;
text-decoration:none;

border-radius:10px;
cursor:pointer;

transition:.3s;
}

.btn:hover,
.card button:hover,
.filters button:hover{
background:#111;
color:white;

transform:translateY(-2px);
}

/* =========================
   PRODUCTS
========================= */

.products{
padding:80px 50px;
text-align:center;
}

.products h2{
font-size:40px;
margin-bottom:40px;
color:#ff1a1a;
}

.cards{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
}

.card{
background:white;

padding:20px;
border-radius:22px;

border:1px solid #ececec;

transition:.4s;

box-shadow:0 5px 25px rgba(0,0,0,.05);
}

.card:hover{
transform:translateY(-10px);
box-shadow:0 0 20px red;
}

.card img{
width:100%;
height:250px;

object-fit:cover;

border-radius:15px;
background:#fafafa;
}

.card h3{
margin:15px 0;
font-size:24px;
color:#111;
}

.card p{
color:#666;
margin-bottom:15px;
}

/* =========================
   SIZES
========================= */

.sizes{
display:flex;
flex-wrap:wrap;
justify-content:center;
gap:10px;
margin:18px 0;
}

.sizes span{
padding:9px 16px;

background:#fff;
color:#333;

border-radius:25px;
font-size:15px;

cursor:pointer;

transition:.3s;

border:1px solid #ddd;
}

.sizes span:hover{
background:#ffeded;
color:#ff1a1a;
}

.sizes span.active{
background:#ff1a1a;
color:white;
border:none;
}

/* =========================
   HERO PRODUCTS
========================= */

.slider-track{
display:flex;
gap:28px;
width:max-content;
animation:heroMove 28s linear infinite;
}

.hero:hover .slider-track{
animation-play-state:paused;
}

.hero-item{
width:260px;

background:white;

border-radius:22px;

padding:18px;
text-align:center;

transition:.4s;

border:1px solid #ececec;

box-shadow:0 5px 20px rgba(0,0,0,.05);
}

.hero-item:hover{
transform:translateY(-10px) scale(1.04);

box-shadow:0 20px 40px rgba(0,0,0,.12);
}

.hero-item img{
width:100%;
height:220px;

object-fit:contain;

background:#fafafa;

padding:12px;
border-radius:18px;
}

.hero-item h3{
margin-top:15px;
font-size:20px;
color:#111;
}

/* =========================
   CART
========================= */

.cart-box{
background:white;

padding:25px;
margin:40px;

border-radius:20px;

border:1px solid #ececec;

box-shadow:0 10px 35px rgba(0,0,0,.06);
}

.cart-box h3{
color:#ff1a1a;
margin-bottom:15px;
}

.cart-box li,
#cart-items li{
display:flex;
justify-content:space-between;
align-items:center;

background:#f7f7f7;

color:#222;

padding:12px 15px;
margin-bottom:10px;

border-radius:12px;
}

/* =========================
   REMOVE BTN
========================= */

.remove-item{
width:28px;
height:28px;

display:flex;
justify-content:center;
align-items:center;

background:#ef2d2d;
color:white;

border-radius:50%;

cursor:pointer;

font-size:16px;

transition:.3s;
}

.remove-item:hover{
background:#c91c1c;
transform:rotate(90deg);
}

/* =========================
   WHATSAPP BUTTON
========================= */

#whatsapp-order,
#orderBtn{
display:block;

margin-top:20px;
padding:14px;

background:#25D366;
color:white;

text-align:center;
text-decoration:none;

border-radius:12px;

font-size:17px;
font-weight:600;

transition:.3s;
}

#whatsapp-order:hover,
#orderBtn:hover{
background:#1ebe5d;

transform:translateY(-3px);

box-shadow:0 10px 20px rgba(37,211,102,.2);
}

/* =========================
   FOOTER
========================= */

footer{
background:white;

padding:50px;
margin-top:60px;

border-top:1px solid #e8e8e8;
}

.footer-content{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
}

.footer-content h3{
color:#ff1a1a;
margin-bottom:15px;
}

.footer-content p{
color:#666;
line-height:1.6;
}

.bottom{
text-align:center;
margin-top:30px;

border-top:1px solid #eee;

padding-top:20px;

color:#777;
}

/* =========================
   POPUP
========================= */

.popup{
display:none;

position:fixed;
top:0;
left:0;

width:100%;
height:100%;

background:rgba(255,255,255,.5);

backdrop-filter:blur(8px);

z-index:9999;

justify-content:center;
align-items:center;
}

.popup-box{
position:relative;

background:white;

padding:40px 30px;

border-radius:22px;

text-align:center;

width:90%;
max-width:430px;

border:1px solid #ececec;

box-shadow:0 20px 45px rgba(0,0,0,.1);
}

.popup-box h2{
color:#111;
font-size:30px;
margin-bottom:20px;
}

.popup-box p{
color:#555;
font-size:18px;
margin:14px 0;
}

.close{
position:absolute;
top:12px;
right:18px;

font-size:32px;

color:#111;

cursor:pointer;

transition:.3s;
}

.close:hover{
transform:rotate(90deg);
color:#ff1a1a;
}

.popup-btn{
position:relative;
display:inline-block;
margin-top:22px;
padding:13px 28px;
background:linear-gradient(135deg,#25D366,#1fa855);
color:white;
text-decoration:none;
border-radius:30px;
font-weight:bold;
transition:0.3s;
z-index:2;
}

.popup-btn:hover{
transform:scale(1.08);
box-shadow:0 0 20px rgba(37,211,102,0.5);
}

.popup-btn:hover{
transform:scale(1.08);
box-shadow:0 0 20px rgba(37,211,102,0.5);
}

/* =========================
   SOCIAL ICONS
========================= */

.social-icons{
margin-top:20px;

display:flex;
justify-content:center;
gap:18px;
}

.social-icons a{
width:48px;
height:48px;

display:flex;
justify-content:center;
align-items:center;

border-radius:50%;

background:#fff;

color:#222;

font-size:22px;
text-decoration:none;

transition:.3s;

border:1px solid #ececec;
}

.social-icons a:hover{
transform:translateY(-6px) scale(1.08);

box-shadow:0 10px 20px rgba(0,0,0,.08);
}

.social-icons a:first-child:hover{
color:#E1306C;
}

.social-icons a:last-child:hover{
color:#1877F2;
}

/* =========================
   SEARCH
========================= */

.search-box{
text-align:center;
margin:30px;
}

.search-box input{
width:320px;

padding:12px;

border:1px solid #ddd;

background:white;

border-radius:10px;

font-size:16px;

outline:none;
}

/* =========================
   LOADER
========================= */

#loader{
position:fixed;
top:0;
left:0;

width:100%;
height:100%;

background:white;

display:flex;
justify-content:center;
align-items:center;

z-index:9999;
}

#loader h1{
color:#ff1a1a;
font-size:60px;
letter-spacing:5px;

animation:pulse 1s infinite;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:768px){

header,
.navbar{
flex-direction:column;
padding:15px 20px;
gap:10px;
}

.hero h1{
font-size:34px;
}

.hero p{
font-size:18px;
}

.cards{
grid-template-columns:1fr;
}

.footer-content{
grid-template-columns:1fr;
text-align:center;
}

.nav-links{
gap:10px;
padding:8px;
}

.nav-item{
padding:10px 15px;
font-size:13px;
}

.logo{
font-size:24px;
}


    .nav-icons{
        font-size:17px;
        gap:12px;
    }
}

.footer-socials{
display:flex;
align-items:center;
gap:18px;
margin-top:18px;
flex-wrap:wrap;
}

.footer-socials a{
display:flex;
align-items:center;
gap:10px;
text-decoration:none;
color:#1a1a1a;
font-size:16px;
font-weight:500;
transition:.3s;
}

.footer-socials a i{
width:42px;
height:42px;
display:flex;
justify-content:center;
align-items:center;
border-radius:50%;
background:#ef2d2d;
font-size:18px;
transition:.3s;
}

.footer-socials a:hover{
color:#000000;
transform:translateY(-3px);
}

.footer-socials a:hover i{
background:#ef2d2d;
box-shadow:0 0 18px #ff000059;
}

.logo img{
height:60px;
width:auto;
object-fit:contain;
}