/* ==========================
   WAVELINK PREMIUM STORE
   STYLE.CSS
========================== */

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

html{
scroll-behavior:smooth;
}

body{
background:#fff;
color:#111;
overflow-x:hidden;
}

a{
text-decoration:none;
}

img{
max-width:100%;
display:block;
}

.container{
width:90%;
max-width:1300px;
margin:auto;
}

/* TOP BAR */

.top-bar{
background:#000;
color:#fff;
text-align:center;
padding:12px;
font-size:14px;
font-weight:600;
letter-spacing:.5px;
}

/* HEADER */

.header{
position:sticky;
top:0;
z-index:999;
background:#fff;
box-shadow:0 2px 20px rgba(0,0,0,.05);
}

.nav-wrapper{
display:flex;
align-items:center;
justify-content:space-between;
height:85px;
}

.logo{
display:flex;
align-items:center;
gap:12px;
font-size:30px;
font-weight:800;
color:#111;
}

.logo-icon{
width:48px;
height:48px;
border-radius:50%;
background:#111;
color:#fff;
display:flex;
align-items:center;
justify-content:center;
font-size:22px;
}

.nav{
display:flex;
gap:35px;
}

.nav a{
color:#111;
font-weight:500;
position:relative;
}

.nav a::after{
content:"";
position:absolute;
bottom:-6px;
left:0;
width:0;
height:2px;
background:#ff6b00;
transition:.3s;
}

.nav a:hover::after{
width:100%;
}

.header-icons{
display:flex;
align-items:center;
gap:25px;
font-size:22px;
cursor:pointer;
}

.cart-icon{
position:relative;
}

.cart-count{
position:absolute;
top:-8px;
right:-8px;
width:18px;
height:18px;
border-radius:50%;
background:#ff6b00;
color:#fff;
font-size:10px;
display:flex;
align-items:center;
justify-content:center;
}

.menu-btn{
display:none;
font-size:28px;
cursor:pointer;
}

/* MOBILE MENU */

.mobile-menu{
position:fixed;
top:85px;
left:-100%;
width:280px;
height:100vh;
background:#fff;
padding:40px;
transition:.4s;
z-index:998;
box-shadow:0 5px 30px rgba(0,0,0,.1);
}

.mobile-menu.active{
left:0;
}

.mobile-menu a{
display:block;
margin-bottom:25px;
font-size:18px;
color:#111;
font-weight:600;
}

/* HERO */

.hero{
display:grid;
grid-template-columns:1fr 1fr;
align-items:center;
gap:60px;
padding:80px 8%;
min-height:90vh;
background:
linear-gradient(
to right,
#ffffff,
#f5f5f5
);
}

.hero-tag{
background:#111;
color:#fff;
padding:10px 20px;
border-radius:40px;
display:inline-block;
font-size:13px;
margin-bottom:20px;
}

.hero-content h1{
font-size:72px;
font-weight:800;
line-height:1.1;
margin-bottom:20px;
}

.hero-content p{
font-size:18px;
color:#666;
line-height:1.8;
max-width:550px;
margin-bottom:35px;
}

.hero-buttons{
display:flex;
gap:15px;
}

.btn-primary{
background:#111;
color:#fff;
padding:16px 34px;
border-radius:50px;
font-weight:600;
transition:.3s;
}

.btn-primary:hover{
transform:translateY(-4px);
}

.btn-secondary{
border:2px solid #111;
color:#111;
padding:16px 34px;
border-radius:50px;
font-weight:600;
transition:.3s;
}

.btn-secondary:hover{
background:#111;
color:#fff;
}

.hero-image{
display:flex;
justify-content:center;
align-items:center;
}

.hero-image img{
width:100%;
max-width:600px;
border-radius:30px;
animation:float 5s infinite ease-in-out;
box-shadow:0 30px 80px rgba(0,0,0,.15);
}

@keyframes float{
0%{transform:translateY(0);}
50%{transform:translateY(-20px);}
100%{transform:translateY(0);}
}

/* TRUST BAR */

.trust-bar{
display:grid;
grid-template-columns:repeat(4,1fr);
padding:40px 8%;
background:#111;
color:#fff;
}

.trust-item{
display:flex;
align-items:center;
justify-content:center;
gap:10px;
font-size:18px;
font-weight:500;
}

.trust-item i{
font-size:24px;
}

/* SECTIONS */

.categories,
.products{
padding:100px 0;
}

.section-header{
text-align:center;
margin-bottom:60px;
}

.section-header h2{
font-size:48px;
margin-bottom:15px;
}

.section-header p{
color:#666;
font-size:18px;
}

/* CATEGORY GRID */

.category-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
}

.category-card{
padding:50px 20px;
background:#fff;
border-radius:25px;
text-align:center;
box-shadow:0 10px 30px rgba(0,0,0,.06);
transition:.4s;
cursor:pointer;
}

.category-card:hover{
transform:translateY(-12px);
}

.category-card i{
font-size:50px;
margin-bottom:20px;
color:#ff6b00;
}

.category-card h3{
font-size:20px;
}

/* PRODUCTS */

.products{
background:#fafafa;
}

.product-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
}

.product-card{
background:#fff;
padding:20px;
border-radius:25px;
position:relative;
overflow:hidden;
transition:.4s;
box-shadow:0 8px 25px rgba(0,0,0,.05);
}

.product-card:hover{
transform:translateY(-10px);
}

.product-card img{
height:250px;
width:100%;
object-fit:cover;
border-radius:18px;
margin-bottom:20px;
}

.badge{
position:absolute;
top:15px;
left:15px;
background:#ff6b00;
color:#fff;
padding:8px 14px;
border-radius:30px;
font-size:12px;
font-weight:700;
}

.product-card h3{
font-size:22px;
margin-bottom:10px;
}

.rating{
color:orange;
margin-bottom:10px;
}

.price{
font-size:28px;
font-weight:700;
margin-bottom:20px;
}

.price span{
font-size:16px;
color:#999;
margin-left:8px;
text-decoration:line-through;
}

.product-card button{
width:100%;
padding:14px;
border:none;
background:#111;
color:#fff;
border-radius:50px;
cursor:pointer;
font-weight:600;
transition:.3s;
}

.product-card button:hover{
background:#ff6b00;
}

/* DEAL SECTION */

.deal-section{
padding:100px 0;
background:
linear-gradient(
135deg,
#111,
#222
);
color:#fff;
text-align:center;
}

.deal-content h2{
font-size:60px;
margin-bottom:20px;
}

.deal-content p{
font-size:20px;
margin-bottom:40px;
}

.countdown{
display:flex;
justify-content:center;
gap:25px;
margin-bottom:40px;
}

.countdown div{
width:120px;
height:120px;
background:rgba(255,255,255,.08);
backdrop-filter:blur(15px);
border-radius:20px;
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
}

.countdown span{
font-size:40px;
font-weight:700;
}

.countdown p{
margin-top:5px;
font-size:14px;
}

/* FOOTER PREVIEW */

footer{
background:#000;
color:#fff;
padding:60px 8%;
text-align:center;
}

/* RESPONSIVE */

@media(max-width:1100px){

.hero{
grid-template-columns:1fr;
text-align:center;
}

.hero-content p{
margin:auto auto 35px;
}

.hero-buttons{
justify-content:center;
}

.category-grid{
grid-template-columns:repeat(2,1fr);
}

.product-grid{
grid-template-columns:repeat(2,1fr);
}

.trust-bar{
grid-template-columns:repeat(2,1fr);
gap:20px;
}
}

@media(max-width:768px){

.nav{
display:none;
}

.menu-btn{
display:block;
}

.hero{
padding-top:40px;
}

.hero-content h1{
font-size:46px;
}

.section-header h2{
font-size:34px;
}

.category-grid{
grid-template-columns:1fr;
}

.product-grid{
grid-template-columns:1fr;
}

.trust-bar{
grid-template-columns:1fr;
gap:25px;
}

.countdown{
flex-wrap:wrap;
}

.countdown div{
width:90px;
height:90px;
}

.countdown span{
font-size:28px;
}

.deal-content h2{
font-size:40px;
}
}
/* REVIEWS */

.reviews{
padding:100px 0;
background:#fff;
}

.review-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
}

.review-card{
padding:35px;
border-radius:25px;
background:#fff;
box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.stars{
font-size:22px;
color:orange;
margin-bottom:15px;
}

.review-card p{
line-height:1.8;
color:#555;
margin-bottom:20px;
}

.review-card h4{
margin-bottom:5px;
}

.review-card span{
color:#888;
}

/* NEWSLETTER */

.newsletter{
padding:100px 0;
background:#f7f7f7;
}

.newsletter-box{
background:#111;
color:#fff;
padding:70px;
border-radius:30px;
text-align:center;
}

.newsletter-box h2{
font-size:42px;
margin-bottom:15px;
}

.newsletter-box p{
margin-bottom:30px;
}

.newsletter form{
display:flex;
justify-content:center;
gap:15px;
flex-wrap:wrap;
}

.newsletter input{
width:420px;
padding:18px;
border:none;
border-radius:50px;
outline:none;
}

.newsletter button{
padding:18px 35px;
border:none;
border-radius:50px;
background:#ff6b00;
color:#fff;
cursor:pointer;
font-weight:600;
}

/* FOOTER */

.footer-container{
display:grid;
grid-template-columns:2fr 1fr 1fr 1fr;
gap:40px;
}

.footer-col h3,
.footer-col h4{
margin-bottom:20px;
}

.footer-col p{
color:#bbb;
line-height:1.8;
}

.footer-col a{
display:block;
color:#bbb;
margin-bottom:10px;
}

.footer-bottom{
margin-top:50px;
padding-top:30px;
border-top:1px solid rgba(255,255,255,.1);
text-align:center;
color:#999;
}

@media(max-width:768px){

.review-grid{
grid-template-columns:1fr;
}

.footer-container{
grid-template-columns:1fr;
}

.newsletter-box{
padding:40px 25px;
}

.newsletter-box h2{
font-size:30px;
}

.newsletter input{
width:100%;
}
}
