/* ==========================================
RESET & GLOBAL
========================================== */

*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{
font-family:Arial,Helvetica,sans-serif;
background:#ffffff;
color:#222;
line-height:1.7;
overflow-x:hidden;
}

img{
max-width:100%;
display:block;
}

a{
text-decoration:none;
transition:.3s ease;
}

ul{
padding:0;
margin:0;
list-style:none;
}

section{
position:relative;
overflow:hidden;
}

.container{
width:90%;
max-width:1300px;
margin:auto;
}

/* ==========================================
TYPOGRAPHY
========================================== */

.section-title{
font-size:42px;
font-weight:800;
color:#082B6F;
text-align:center;
margin-bottom:15px;
line-height:1.2;
}

.section-subtitle{
max-width:720px;
margin:0 auto 55px;
text-align:center;
color:#666;
font-size:16px;
line-height:1.8;
}

/* ==========================================
BUTTONS
========================================== */

.btn{
display:inline-flex;
align-items:center;
justify-content:center;
background:#082B6F;
color:#fff;
padding:14px 30px;
border:none;
border-radius:12px;
font-weight:700;
transition:.35s ease;
cursor:pointer;
}

.btn:hover{
background:#1677F2;
color:#fff;
transform:translateY(-3px);
box-shadow:0 12px 30px rgba(22,119,242,.25);
}

/* ==========================================
TOPBAR
========================================== */

.topbar{
background:#082B6F;
padding:10px 0;
color:#fff;
font-size:14px;
}

.topbar-inner{
display:flex;
justify-content:space-between;
align-items:center;
gap:20px;
}

.topbar-left,
.topbar-right{
display:flex;
align-items:center;
gap:22px;
}

/* ==========================================
HEADER
========================================== */

.main-header{
background:#fff;
position:sticky;
top:0;
z-index:999;
box-shadow:0 4px 20px rgba(0,0,0,.06);
transition:transform .35s ease;
}

.main-header.header-hidden{
transform:translateY(-100%);
}


.navbar{
padding:8px 0 !important;
}

.navbar-brand{
padding:0;
margin:0;
}

.logo-img{
width:240px;
height:auto;
}

.search-box{
width:240px;
margin:0 25px;
}

.search-box input{
border:1px solid #e5e5e5;
border-radius:50px;
padding:12px 18px;
font-size:14px;
}

.search-box input:focus{
box-shadow:none;
border-color:#1677F2;
}

.navbar-nav{
gap:4px;
}

.navbar-nav .nav-link{
font-size:16px;
font-weight:600;
color:#222 !important;
padding:10px 14px !important;
}

.navbar-nav .nav-link:hover{
color:#1677F2 !important;
}

.btn-login{
background:#1677F2;
color:#fff !important;
padding:11px 22px !important;
border-radius:10px;
}

.btn-login:hover{
background:#082B6F;
}

.cart-link{
font-weight:700 !important;
}

.dropdown-menu{
border:none;
border-radius:14px;
padding:10px;
box-shadow:0 15px 40px rgba(0,0,0,.12);
}

.dropdown-item{
padding:12px 16px;
border-radius:8px;
font-weight:500;
}

.dropdown-item:hover{
background:#1677F2;
color:#fff;
}

/* ==========================================
HERO BANNER
========================================== */

.hero-banner{
width:100%;
overflow:hidden;
}

.hero-banner img{
width:100%;
display:block;
}

/* ==========================================
WHY CHOOSE US
========================================== */

.why-us{
padding:70px 0;
background:#fff;
}

.why-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:28px;
}

.why-card{
background:linear-gradient(
135deg,
#082B6F,
#1677F2
);
padding:35px 25px;
border-radius:22px;
text-align:center;
color:#fff;
box-shadow:0 15px 40px rgba(22,119,242,.18);
transition:.35s ease;
}

.why-card:hover{
transform:translateY(-10px);
}

.why-card h3{
font-size:20px;
font-weight:700;
margin-bottom:10px;
}

.why-card p{
font-size:14px;
line-height:1.7;
opacity:.95;
}

/* ==========================================
FEATURED PRODUCTS
========================================== */

.featured-products{
padding:30px 0 70px;
background:#f6f9ff;
}

.product-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}

.product-card{
background:#fff;
border-radius:24px;
overflow:hidden;
position:relative;
border:1px solid #e9eefb;
box-shadow:0 10px 35px rgba(0,0,0,.06);
transition:.35s ease;
}

.product-card:hover{
transform:translateY(-10px);
box-shadow:0 25px 50px rgba(0,0,0,.12);
border-color:#1677F2;
}

.product-badge{
position:absolute;
top:15px;
left:15px;
background:#082B6F;
color:#fff;
padding:8px 14px;
font-size:12px;
font-weight:700;
border-radius:50px;
z-index:5;
}



.product-content{
padding:18px;
text-align:center;
}

.product-content h3{
font-size:20px;
font-weight:700;
color:#082B6F;
margin-bottom:8px;
min-height:auto;
}

.product-rating{
font-size:13px;
margin-bottom:12px;
color:#f5a623;
}

.product-rating span{
font-size:13px;
color:#777;
margin-left:4px;
}


.product-price{
margin-bottom:20px;
}

.product-price del{
color:#999;
margin-right:8px;
font-size:14px;
}

.product-price span{
font-size:30px;
font-weight:700;
color:#1677F2;
}

/* ==========================================
ABOUT HOME
========================================== */

.about-home{
padding:50px 0 30px;
background:#fff;
}

.about-home-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
align-items:center;
}

.about-tag{
display:inline-block;
background:#eaf2ff;
color:#1677F2;
padding:8px 18px;
border-radius:50px;
font-size:13px;
font-weight:700;
letter-spacing:.5px;
margin-bottom:20px;
}

.about-content h2{
font-size:48px;
font-weight:800;
line-height:1.2;
color:#082B6F;
margin-bottom:20px;
}

.about-content p{
font-size:17px;
color:#666;
line-height:1.9;
margin-bottom:25px;
}

.about-list{
margin-bottom:30px;
}

.about-list li{
font-size:16px;
font-weight:600;
color:#082B6F;
margin-bottom:12px;
}

.about-image img{
border-radius:24px;
box-shadow:0 25px 60px rgba(0,0,0,.12);
transition:.4s ease;
}

.about-image img:hover{
transform:translateY(-8px);
}

/* ==========================================
SHOP BY CATEGORY
========================================== */

.categories{
padding:20px 0 40px;
background:#fff;
}

.category-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;
margin-top:30px;
}

.category-card{
position:relative;
height:320px;
overflow:hidden;
border-radius:24px;
box-shadow:0 15px 40px rgba(0,0,0,.10);
transition:.35s ease;
}

.category-card:hover{
transform:translateY(-10px);
}

.category-card img{
width:100%;
height:100%;
object-fit:cover;
transition:.5s ease;
}

.category-card:hover img{
transform:scale(1.08);
}

.category-overlay{
position:absolute;
inset:0;
display:flex;
align-items:flex-end;
justify-content:center;
padding:30px;
background:linear-gradient(
to top,
rgba(8,43,111,.92),
rgba(8,43,111,.10)
);
}

.category-overlay h3{
font-size:28px;
font-weight:700;
color:#fff;
margin:0;
text-align:center;
}

/* ==========================================
HOW IT WORKS
========================================== */

.how-it-works{
padding:50px 0;
background:#f6f9ff;
}

.steps-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}

.step-card{
background:#fff;
padding:40px 30px;
border-radius:24px;
text-align:center;
border-top:5px solid #1677F2;
box-shadow:0 12px 35px rgba(0,0,0,.06);
transition:.35s ease;
}

.step-card:hover{
transform:translateY(-8px);
}

.step-card h3{
font-size:24px;
font-weight:700;
color:#082B6F;
margin-bottom:15px;
}

.step-card p{
color:#666;
line-height:1.8;
}

/* ==========================================
TRUST SECTION
========================================== */

.trust-section{
padding:90px 0;
background:linear-gradient(
135deg,
#082B6F,
#1677F2
);
color:#fff;
}

.trust-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;
text-align:center;
}

.trust-grid h2{
font-size:52px;
font-weight:800;
margin-bottom:10px;
}

.trust-grid p{
font-size:17px;
opacity:.95;
margin:0;
}

/* ==========================================
REVIEWS
========================================== */

.reviews-section{
padding:90px 0;
background:#fff;
}

.reviews-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}

.review-card{
background:#fff;
padding:35px;
border-radius:24px;
border-top:5px solid #1677F2;
box-shadow:0 12px 35px rgba(0,0,0,.08);
text-align:center;
transition:.35s ease;
}

.review-card:hover{
transform:translateY(-8px);
}

.stars{
font-size:24px;
color:#ffb400;
margin-bottom:15px;
}

.review-card p{
color:#666;
line-height:1.8;
}

.review-card h4{
margin-top:18px;
color:#082B6F;
font-weight:700;
}

/* ==========================================
NEWSLETTER
========================================== */

.newsletter-section{
padding:90px 0;
background:#fff;
text-align:center;
}

.newsletter-section h2{
font-size:44px;
font-weight:800;
color:#082B6F;
margin-bottom:15px;
}

.newsletter-section p{
color:#666;
margin-bottom:30px;
}

.newsletter-form{
display:flex;
justify-content:center;
gap:15px;
flex-wrap:wrap;
}

.newsletter-form input{
width:460px;
max-width:100%;
padding:16px 22px;
border:1px solid #d9d9d9;
border-radius:50px;
outline:none;
font-size:15px;
}

.newsletter-form input:focus{
border-color:#1677F2;
box-shadow:none;
}

/* ==========================================
CTA SECTION
========================================== */

.cta-section{
padding:90px 20px;
text-align:center;
background:linear-gradient(
135deg,
#082B6F,
#1677F2
);
color:#fff;
}

.cta-section h2{
font-size:52px;
font-weight:800;
margin-bottom:20px;
}

.cta-section p{
font-size:20px;
max-width:800px;
margin:0 auto 30px;
opacity:.95;
}

.cta-section .btn{
background:#fff;
color:#082B6F;
font-weight:700;
}

.cta-section .btn:hover{
background:#f5f5f5;
color:#082B6F;
}

/* ==========================================
PREMIUM FAQ
========================================== */

.faq-section{
padding:90px 0;
background:#0F4DB7;
}

.faq-section .section-title{
color:#fff;
margin-bottom:10px;
}

.faq-subtitle{
text-align:center;
color:rgba(255,255,255,.80);
margin-bottom:45px;
font-size:15px;
}

.faq-wrapper{
max-width:900px;
margin:auto;
}

.faq-item{
background:#082B6F;
border-radius:18px;
margin-bottom:18px;
overflow:hidden;
border:1px solid rgba(255,255,255,.10);
box-shadow:0 10px 25px rgba(0,0,0,.15);
transition:.3s ease;
}

.faq-item:hover{
transform:translateY(-3px);
}

.faq-question{
width:100%;
background:none;
border:none;
padding:22px 25px;
display:flex;
justify-content:space-between;
align-items:center;
color:#fff;
font-size:18px;
font-weight:600;
cursor:pointer;
text-align:left;
}

.faq-question span{
font-size:24px;
font-weight:700;
}

.faq-answer{
display:none;
padding:0 25px 22px;
}

.faq-answer p{
margin:0;
line-height:1.8;
color:rgba(255,255,255,.85);
}

.faq-item.active .faq-answer{
display:block;
}

/* ==========================================
PREMIUM FOOTER
========================================== */

.footer-main{
background:#061c4f;
padding:80px 0 30px;
color:#fff;
}

.footer-top{
display:grid;
grid-template-columns:1.5fr 1fr 1fr 1.5fr;
gap:50px;
margin-bottom:50px;
}

.footer-logo{
width:240px;
max-width:100%;
margin-bottom:25px;
}

.footer-about p{
color:rgba(255,255,255,.80);
line-height:1.8;
margin-top:20px;
margin-bottom:25px;
}

.footer-about h4{
font-size:22px;
font-weight:700;
margin-bottom:20px;
color:#fff;
}

.footer-about{
max-width:500px;
}

.footer-badges{
display:flex;
flex-wrap:wrap;
gap:10px;
}

.footer-badges span{
background:rgba(255,255,255,.08);
padding:10px 14px;
border-radius:50px;
font-size:13px;
}

.footer-links h4,
.footer-contact h4{
font-size:22px;
font-weight:700;
margin-bottom:20px;
}

.footer-links ul,
.footer-contact ul{
list-style:none;
padding:0;
margin:0;
}

.footer-links li,
.footer-contact li{
margin-bottom:12px;
}

.footer-links a{
color:rgba(255,255,255,.80);
text-decoration:none;
transition:.3s ease;
}

.footer-links a:hover{
color:#fff;
padding-left:5px;
}

.footer-contact li{
color:rgba(255,255,255,.80);
}

.footer-trust{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:20px;
text-align:center;
padding:25px 0;
margin-bottom:25px;
border-top:1px solid rgba(255,255,255,.10);
border-bottom:1px solid rgba(255,255,255,.10);
}

.trust-item{
font-weight:600;
}



.footer-bottom p{
margin:0;
color:rgba(255,255,255,.70);
}

.footer-bottom-right{
display:flex;
gap:20px;
flex-wrap:wrap;
}

.footer-bottom-right a{
color:rgba(255,255,255,.75);
text-decoration:none;
}

.footer-bottom-right a:hover{
color:#fff;
}

/* ==========================================
TABLET RESPONSIVE
========================================== */

@media(max-width:991px){

.topbar-inner{
flex-direction:column;
gap:10px;
}

.topbar-left,
.topbar-right{
justify-content:center;
flex-wrap:wrap;
}

.search-box{
width:100%;
margin:15px 0;
}

.logo-img{
width:210px;
}

.why-grid,
.product-grid,
.category-grid,
.trust-grid{
grid-template-columns:repeat(2,1fr);
}

.steps-grid,
.reviews-grid{
grid-template-columns:1fr;
}

.about-home-grid{
grid-template-columns:1fr;
gap:40px;
}

.footer-top{
grid-template-columns:1fr 1fr;
}

.footer-trust{
grid-template-columns:1fr 1fr;
}

.section-title{
font-size:36px;
}

.about-content h2{
font-size:38px;
}

.newsletter-section h2{
font-size:36px;
}

.cta-section h2{
font-size:40px;
}

}

/* ==========================================
MOBILE RESPONSIVE
========================================== */

@media(max-width:576px){

.container{
width:92%;
}

.logo-img{
width:180px;
}

.section-title{
font-size:30px;
}

.section-subtitle{
font-size:15px;
}

.about-content h2{
font-size:30px;
}

.newsletter-section h2{
font-size:30px;
}

.cta-section h2{
font-size:32px;
}

.cta-section p{
font-size:17px;
}

.product-card img{
width:100%;
height:260px;
object-fit:contain;
padding:15px;
background:#fff;
}

.why-grid,
.product-grid,
.category-grid,
.trust-grid,
.reviews-grid,
.footer-top,
.footer-trust{
grid-template-columns:1fr;
}

.steps-grid{
grid-template-columns:1fr;
}

.footer-main{
text-align:center;
}

.footer-logo{
margin:auto auto 25px;
display:block;
}

.footer-badges{
justify-content:center;
}

.footer-bottom{
flex-direction:column;
text-align:center;
}

.footer-bottom-right{
justify-content:center;
}

.faq-question{
font-size:16px;
padding:18px 20px;
}

}

/* ==========================================
FINAL CLEANUP
========================================== */

.why-card,
.product-card,
.category-card,
.step-card,
.review-card,
.faq-item{
will-change:transform;
}

.featured-products,
.categories,
.about-home,
.how-it-works,
.reviews-section,
.newsletter-section{
overflow:hidden;
}

::selection{
background:#1677F2;
color:#fff;
}

.footer-bottom{
display:flex;
justify-content:space-between;
align-items:center;
gap:30px;
flex-wrap:wrap;
}

.footer-bottom-center{
flex:1;
display:flex;
justify-content:center;
align-items:center;
}

.footer-bottom-logo{
max-width:260px;
width:100%;
height:auto;
filter:drop-shadow(0 0 10px rgba(255,255,255,.15));
}

@media(max-width:576px){

.footer-bottom{
flex-direction:column;
text-align:center;
}

.footer-bottom-logo{
height:45px;
margin:10px 0;
}
}
/* ==========================================
STORE PAGE
========================================== */

.store-hero{
padding:18px 0;
background:linear-gradient(135deg,#082B6F,#1677F2);
text-align:center;
color:#fff;
}

.store-hero h1{
font-size:52px;
font-weight:800;
margin-bottom:15px;
}

.store-hero p{
max-width:750px;
margin:auto;
font-size:18px;
opacity:.95;
}

.store-filters{
padding:40px 0;
background:#fff;
}

.store-search-form{
display:flex;
justify-content:center;
gap:10px;
}

.store-search-form input{
width:500px;
max-width:100%;
padding:15px 22px;
border:1px solid #d9d9d9;
border-radius:50px;
outline:none;
font-size:15px;
}

.store-search-form input:focus{
border-color:#1677F2;
}



.store-empty{
grid-column:1/-1;
background:#fff;
padding:70px 30px;
border-radius:24px;
text-align:center;
border:1px solid #e9eefb;
box-shadow:0 10px 30px rgba(0,0,0,.06);
}

.store-empty h3{
font-size:32px;
font-weight:700;
color:#082B6F;
margin-bottom:15px;
}

.store-empty p{
color:#666;
margin-bottom:25px;
}

.product-content .product-rating{
font-size:13px;
font-weight:700;
text-transform:uppercase;
letter-spacing:.5px;
color:#1677F2;
margin-bottom:10px;
}

.product-content .product-price{
margin-top:5px;
margin-bottom:15px;
}

.product-content .product-price span{
font-size:28px;
font-weight:800;
color:#1677F2;
}

.store-search-form .btn{
border:none;
padding:14px 25px;
border-radius:12px;
}

.store-layout{
display:grid;
grid-template-columns:280px 1fr;
gap:40px;
align-items:start;
}

.store-sidebar{
background:#fff;
padding:25px;
border-radius:20px;
box-shadow:0 10px 30px rgba(0,0,0,.08);
position:sticky;
top:120px;
}

.store-sidebar h3{
font-size:24px;
font-weight:700;
margin-bottom:20px;
color:#082B6F;
}

.store-sidebar a{
display:block;
padding:12px 15px;
margin-bottom:10px;
background:#f5f7fb;
border-radius:10px;
color:#082B6F;
font-weight:600;
}

.store-sidebar a.active,
.store-sidebar a:hover{
background:#1677F2;
color:#fff;
}

.store-products{
width:100%;
}

.product-category{
font-size:13px;
font-weight:700;
color:#1677F2;
text-transform:none;
letter-spacing:.5px;
margin-bottom:8px;
}

.product-price span{
display:block;
font-size:28px;
font-weight:800;
white-space:nowrap;
color:#1677F2;
}

@media(max-width:768px){


.store-hero h1{
font-size:38px;
}

.store-hero p{
font-size:16px;
}

.store-search-form{
flex-direction:column;
align-items:center;
}

.store-search-form input{
width:100%;
}

.category-filter{
gap:10px;
}

.category-filter a{
padding:10px 18px;
font-size:14px;
}

}

@media(max-width:991px){

.store-layout{
grid-template-columns:1fr;
}

.store-sidebar{
position:relative;
top:0;
}

.product-grid{
grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:576px){

.product-grid{
grid-template-columns:1fr;
}

}

#loadMoreBtn{
background:#061c4f;
padding:14px 35px;
border-radius:12px;
font-weight:700;
}

#loadMoreBtn:hover{
background:#082B6F;
}
