*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

body{
background:#0d0d0d;
color:#fff;
line-height:1.6;
}

header{
background:#111;
padding:20px 8%;
display:flex;
justify-content:space-between;
align-items:center;
position:sticky;
top:0;
z-index:1000;
box-shadow:0 0 15px rgba(0,0,0,.5);
}

.logo img{
    height:70px;
    width:auto;
    transition:0.3s;
}

.logo img:hover{
    transform:scale(1.05);
}

nav a{
color:white;
text-decoration:none;
margin-left:25px;
font-weight:500;
transition:.3s;
}

nav a:hover{
color:#ffd700;
}

.hero{
height:90vh;
background:
linear-gradient(rgba(0,0,0,.6),rgba(0,0,0,.7)),
url("../images/hero-bike.jpg");
background-size:cover;
background-position:center;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
padding:20px;
}

.hero-content h1{
font-size:60px;
margin-bottom:15px;
color:#ffd700;
}

.hero-content p{
font-size:20px;
max-width:700px;
margin:auto;
margin-bottom:25px;
}

.hero-btn{
display:inline-block;
padding:15px 35px;
background:#ffd700;
color:#000;
font-weight:600;
border-radius:8px;
text-decoration:none;
transition:.3s;
}

.hero-btn:hover{
transform:translateY(-3px);
}

.section{
padding:80px 8%;
}

.section-title{
text-align:center;
font-size:40px;
margin-bottom:50px;
color:#ffd700;
}

.services{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
}

.card{
background:#1b1b1b;
padding:30px;
border-radius:15px;
text-align:center;
transition:.3s;
border:1px solid #222;
}

.card:hover{
transform:translateY(-8px);
}

.card h3{
margin-bottom:15px;
color:#ffd700;
}

.gallery{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
gap:20px;
}

.gallery img{
width:100%;
height:250px;
object-fit:cover;
border-radius:15px;
transition:.3s;
}

.gallery img:hover{
transform:scale(1.03);
}

.products-section{
padding:60px 8%;
}

#productContainer{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:25px;
}

.product-card{
background:#1b1b1b;
border-radius:18px;
overflow:hidden;
border:1px solid rgba(255,215,0,.15);
display:flex;
flex-direction:column;
height:100%;
transition:.35s;
}

.product-card:hover{
transform:translateY(-8px);
border-color:#FFD700;
box-shadow:0 15px 35px rgba(255,215,0,.25);
}

.product-image-container{

position:relative;

background:linear-gradient(
180deg,
#222,
#111
);

height:260px;

display:flex;

justify-content:center;

align-items:center;

overflow:hidden;

border-bottom:1px solid rgba(255,215,0,.15);

}

.product-image{

width:90%;

height:210px;

object-fit:contain;

transition:.4s;

filter:drop-shadow(0 12px 25px rgba(0,0,0,.45));

}

.product-card:hover .product-image{

transform:scale(1.12) rotate(-2deg);

}

.product-card h3{
margin-top:15px;
color:#ffd700;
}

.product-card p{
margin:10px 0;
}

.product-card h4{
font-size:22px;
margin-bottom:15px;
}

.cta{
background:#ffd700;
color:#000;
text-align:center;
padding:70px 20px;
}

.cta h2{
font-size:40px;
margin-bottom:20px;
}

.whatsapp-btn{
display:inline-block;
background:#25D366;
color:white;
padding:15px 35px;
border-radius:8px;
text-decoration:none;
font-weight:600;
}

footer{
background:#111;
padding:30px;
text-align:center;
margin-top:50px;
}

footer p{
margin-top:10px;
}

.contact-section{
padding:60px 8%;
text-align:center;
}

.contact-section h2{
color:#ffd700;
margin-bottom:20px;
}

.contact-section a{
color:#ffd700;
text-decoration:none;
}

@media(max-width:768px){

header{
flex-direction:column;
}

nav{
margin-top:15px;
}

nav a{
display:inline-block;
margin:10px;
}

.hero-content h1{
font-size:40px;
}

.hero-content p{
font-size:16px;
}

.section-title{
font-size:30px;
}

}#searchBox{
width:100%;
padding:15px;
margin-bottom:30px;
border:none;
border-radius:10px;
font-size:16px;
background:#1b1b1b;
color:white;
}

#searchBox:focus{
outline:none;
border:1px solid #ffd700;
}
.contact-section{
max-width:800px;
margin:auto;
padding:60px 20px;
}

.contact-section h2{
text-align:center;
margin-bottom:30px;
color:#ffd700;
}

#contactForm{
display:flex;
flex-direction:column;
gap:15px;
}

#contactForm input,
#contactForm textarea{
padding:15px;
border:none;
border-radius:10px;
background:#1b1b1b;
color:white;
}

#contactForm textarea{
height:150px;
resize:none;
}

#contactForm button{
padding:15px;
border:none;
background:#ffd700;
color:black;
font-weight:bold;
border-radius:10px;
cursor:pointer;
}
.gallery-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
gap:20px;
padding:30px;
}

.gallery-item{
background:#111;
padding:20px;
border-radius:10px;
text-align:center;
border:1px solid #333;
}

.gallery-item img{
width:100%;
height:250px;
object-fit:cover;
border-radius:10px;
margin-bottom:15px;
}

.gallery-item h3{
color:#ffd700;
margin-bottom:10px;
}

.gallery-item p{
margin:5px 0;
}

.gallery-item button{
margin-top:10px;
width:100%;
}
.search-box{
width:100%;
max-width:500px;
height:50px;
padding:0 15px;
margin:20px auto;
display:block;
border:none;
border-radius:10px;
font-size:16px;
background:#fff;
color:#000;
}

.banner-section{
padding:20px;
background:#111;
}

#bannerContainer{
display:flex;
flex-wrap:wrap;
gap:15px;
justify-content:center;
}

.banner-item{
background:#FFD700;
color:#000;
padding:12px 20px;
border-radius:30px;
font-weight:bold;
font-size:16px;
box-shadow:0 0 15px rgba(255,215,0,.3);
}

.featured-reviews-section{
padding:80px 8%;
}

#featuredReviews{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
gap:20px;
}

.review-card{
background:#1b1b1b;
padding:25px;
border-radius:15px;
border:1px solid rgba(255,215,0,.2);
text-align:center;
}

.review-card h3{
color:#FFD700;
margin-bottom:10px;
}

.reviews-section{
padding:80px 20px;
background:#000;
text-align:center;
}

.reviews-section h2{
color:#FFD700;
font-size:48px;
margin-bottom:40px;
}

.reviews-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
gap:25px;
max-width:1200px;
margin:auto;
}

.review-card{
background:#111;
padding:25px;
border-radius:20px;
border:1px solid rgba(255,215,0,.2);
transition:.3s;
}

.review-card:hover{
transform:translateY(-5px);
box-shadow:0 0 25px rgba(255,215,0,.2);
}

.review-card h3{
color:#FFD700;
margin-bottom:15px;
}

.review-card .stars{
font-size:22px;
margin-bottom:10px;
color:#FFD700;
}

.review-card p{
line-height:1.6;
}

/*==========================
ORDER TRACKER
==========================*/

.order-status{

display:flex;
align-items:center;
justify-content:center;
gap:10px;
margin:20px 0;
flex-wrap:wrap;

}

.status-step{

    display:flex;
align-items:center;
justify-content:center;
gap:8px;

padding:10px 18px;
border-radius:30px;
background:#1a1a1a;
color:#777;
font-weight:600;
font-size:14px;
border:1px solid #333;
transition:.3s;

}

.status-step.active{

font-weight:700;
background:#FFD700;
color:#111;
border-color:#FFD700;
box-shadow:0 0 15px rgba(255,215,0,.35);

}

.status-line{

width:40px;
height:3px;
background:#333;
border-radius:10px;

}

@media(max-width:768px){

.order-status{

flex-direction:column;

}

.status-line{

width:3px;
height:25px;

}

}

.order-message{

margin-top:20px;
padding:15px;
background:#20242d;
border-left:4px solid #FFD700;
border-radius:12px;
color:#fff;
font-size:16px;

}

/*=========================
TRACK ORDER PAGE
=========================*/

.track-section{

min-height:80vh;
display:flex;
justify-content:center;
align-items:center;
padding:100px 20px;

}

.track-card{

width:100%;
max-width:700px;

background:#181818;

border:1px solid rgba(255,215,0,.15);

border-radius:20px;

padding:40px;

text-align:center;

box-shadow:0 20px 50px rgba(0,0,0,.45);

}

.track-card h1{

color:#FFD700;

margin-bottom:10px;

font-size:36px;

}

.track-card p{

color:#bbb;

margin-bottom:30px;

}

.track-card input{

margin-bottom:20px;

}

#trackingResult{

margin-top:35px;

text-align:left;

}

.qty-section{

margin-top:25px;

}

.qty-box{

display:flex;

align-items:center;

width:max-content;

background:#2b2f3a;

border-radius:12px;

overflow:hidden;

border:1px solid rgba(255,215,0,.25);

}

.qty-box button{

width:55px;

height:50px;

border:none;

background:#FFD700;

color:#111;

font-size:24px;

font-weight:bold;

cursor:pointer;

transition:.3s;

}

.qty-box button:hover{

background:#ffca00;

}

#qtyValue{

width:70px;

text-align:center;

font-size:20px;

font-weight:bold;

}

.cart-image{
width:180px;
height:180px;
object-fit:contain;
background:#111;
padding:15px;
border-radius:18px;
}

.cart-details{
flex:1;
}

.cart-name{
color:#FFD700;
font-size:30px;
margin-bottom:12px;
}

.cart-category{
display:inline-block;
padding:8px 18px;
background:#FFD700;
color:#111;
border-radius:25px;
font-weight:bold;
margin-bottom:15px;
}

.stock-in,
.stock-out{
display:inline-block;
padding:8px 18px;
border-radius:25px;
font-weight:bold;
margin-bottom:18px;
}

.stock-in{
background:#00c853;
}

.stock-out{
background:#ff3b30;
}

.cart-price,
.cart-delivery{
font-size:18px;
margin-top:12px;
}

.qty-row{
display:flex;
align-items:center;
gap:15px;
margin-top:20px;
}

.qty-btn{
width:45px;
height:45px;
border:none;
border-radius:10px;
background:#FFD700;
font-size:24px;
font-weight:bold;
}

.qty-number{
font-size:22px;
font-weight:bold;
min-width:40px;
text-align:center;
}

.cart-right{
display:flex;
flex-direction:column;
justify-content:space-between;
align-items:flex-end;
height:100%;
min-width:220px;
}

.subtotal-title{
color:#999;
font-size:18px;
}

.subtotal-price{
font-size:34px;
font-weight:bold;
color:#00e676;
margin:10px 0 25px;
}

.remove-btn{
background:#ff3b30;
color:white;
padding:14px 24px;
border:none;
border-radius:12px;
font-weight:bold;
}

.status-badge{

display:inline-block;

background:#FFD700;

color:#000;

font-weight:700;

padding:10px 18px;

border-radius:999px;

margin-bottom:20px;

font-size:15px;

}

.success-card{

background:#1b1b1b;

border:1px solid #333;

border-radius:18px;

padding:25px;

margin:30px 0;

box-shadow:0 12px 30px rgba(0,0,0,.35);

}

.success-card span{

font-size:22px;

font-weight:700;

color:#FFD700;

}

.success-card hr{

border:none;

border-top:1px solid #333;

margin:18px 0;

}

.timeline-card{

background:#1b1b1b;

border:1px solid #333;

border-radius:18px;

padding:25px;

margin-bottom:30px;

}

.timeline-card h2{

color:#FFD700;

margin-bottom:20px;

}

.timeline-item{

display:flex;

align-items:flex-start;

gap:15px;

margin-bottom:22px;

}

.timeline-item:last-child{

margin-bottom:0;

}

.timeline-icon{

width:40px;

height:40px;

border-radius:50%;

background:#333;

display:flex;

align-items:center;

justify-content:center;

font-weight:bold;

color:#fff;

flex-shrink:0;

}

.timeline-item.active .timeline-icon{

background:#FFD700;

color:#000;

}

.timeline-item strong{

color:#fff;

}

.timeline-item div{

line-height:1.6;

color:#bbb;

}

.support-card{

background:#161616;

border:1px solid #333;

border-radius:18px;

padding:25px;

margin-bottom:30px;

text-align:center;

}

.support-card h2{

color:#FFD700;

margin-bottom:10px;

}

.support-card p{

color:#bbb;

margin-bottom:20px;

line-height:1.6;

}

.support-buttons{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(160px,1fr));

gap:15px;

}

.support-btn{

display:flex;

align-items:center;

justify-content:center;

padding:14px;

border-radius:12px;

text-decoration:none;

font-weight:600;

transition:.25s;

color:#fff;

}

.support-btn:hover{

transform:translateY(-3px);

}

.support-btn.whatsapp{

background:#25D366;

}

.support-btn.email{

background:#3b82f6;

}

.support-btn.call{

background:#FFD700;

color:#000;

}

.next-actions{

margin-bottom:35px;

}

.next-actions h2{

text-align:center;

color:#FFD700;

margin-bottom:20px;

}

.action-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

gap:20px;

}

.action-card{

background:#161616;

border:1px solid #333;

border-radius:18px;

padding:22px;

text-align:center;

text-decoration:none;

color:#fff;

transition:.3s;

}

.action-card:hover{

transform:translateY(-5px);

border-color:#FFD700;

box-shadow:0 12px 30px rgba(255,215,0,.15);

}

.action-icon{

font-size:40px;

margin-bottom:12px;

}

.action-card h3{

margin-bottom:10px;

color:#FFD700;

}

.action-card p{

color:#bbb;

line-height:1.6;

font-size:14px;

}

/*==========================
BOTTOM MOBILE NAV
==========================*/

.mobile-bottom-nav{

display:none;

}

@media(max-width:768px){

.mobile-bottom-nav{

display:flex;

position:fixed;

left:12px;

right:12px;

bottom:12px;

height:72px;

background:rgba(20,20,20,.96);

backdrop-filter:blur(18px);

border:1px solid rgba(255,215,0,.18);

border-radius:22px;

justify-content:space-around;

align-items:center;

box-shadow:0 18px 40px rgba(0,0,0,.45);

z-index:99999;

padding:0 8px;

}

.bottom-item{

display:flex;

flex-direction:column;

align-items:center;

justify-content:center;

gap:4px;

flex:1;

text-decoration:none;

color:#9b9b9b;

font-size:13px;

font-weight:600;

transition:.30s;

}

.bottom-item i{

width:24px;

height:24px;

stroke-width:2;

transition:.30s;

}

.bottom-item.active{

color:#FFD700;

}

.bottom-item.active i{

color:#FFD700;

transform:translateY(-3px) scale(1.15);

filter:drop-shadow(0 0 10px rgba(255,215,0,.5));

}

.bottom-item:hover{

color:#FFD700;

}

.bottom-item:hover i{

transform:scale(1.1);

}

body{

padding-bottom:95px;

}

}

.nav-icon{

position:relative;

display:flex;

justify-content:center;

align-items:center;

}

.nav-badge{

position:absolute;

top:-8px;

right:-10px;

min-width:20px;

height:20px;

padding:0 6px;

border-radius:50px;

background:#ff3b30;

color:#fff;

font-size:11px;

font-weight:bold;

display:flex;

justify-content:center;

align-items:center;

border:2px solid #181818;

animation:popBadge .35s;

}

@keyframes popBadge{

0%{

transform:scale(0);

}

80%{

transform:scale(1.15);

}

100%{

transform:scale(1);

}

}

#footerPhone{

display:flex;

justify-content:center;

align-items:center;

gap:15px;

flex-wrap:wrap;

margin-top:10px;

}

.footer-phone{

display:inline-flex;

align-items:center;

justify-content:center;

padding:10px 18px;

background:#1b1b1b;

border:1px solid rgba(255,215,0,.25);

border-radius:30px;

color:white;

text-decoration:none;

font-weight:600;

transition:.3s;

}

.footer-phone:hover{

background:#FFD700;

color:#111;

transform:translateY(-3px);

box-shadow:0 8px 20px rgba(255,215,0,.35);

}

/*==========================
SOCIAL BUTTONS
==========================*/

.social-links{

display:flex;

justify-content:center;

align-items:center;

gap:18px;

margin:25px 0;

}

.social-btn{

width:58px;

height:58px;

border-radius:50%;

display:flex;

justify-content:center;

align-items:center;

text-decoration:none;

color:white;

font-size:22px;

transition:.35s;

box-shadow:0 10px 25px rgba(0,0,0,.35);

}

.facebook{

background:#1877F2;

}

.tiktok{

background:#111;

border:1px solid rgba(255,255,255,.2);

}

.social-btn:hover{

transform:translateY(-6px) scale(1.08);

box-shadow:0 15px 35px rgba(255,215,0,.35);

}

.facebook:hover{

background:#0f66db;

}

.tiktok:hover{

background:#FFD700;

color:#111;

}

.product-buttons{

display:flex;

gap:10px;

margin-top:10px;

}

.product-content{

padding:20px;

display:flex;

flex-direction:column;

gap:12px;

}

.product-category{

position:absolute;

top:12px;

left:12px;

background:#FFD700;

color:#111;

padding:6px 14px;

border-radius:20px;

font-size:12px;

font-weight:700;

}

.product-stars{

color:#FFD700;

font-size:18px;

letter-spacing:2px;

}

.product-price{

font-size:28px;

font-weight:700;

color:#00E676;

}

.stock-badge{

font-weight:600;

font-size:15px;

}

.product-buttons{

display:flex;

gap:10px;

margin-top:10px;

}

.cart-btn,

.buy-btn{

flex:1;

height:48px;

border:none;

border-radius:12px;

font-weight:700;

cursor:pointer;

transition:.3s;

}

.cart-btn{

background:linear-gradient(135deg,#FFD700,#FFC107);

color:#111;

font-size:15px;

font-weight:700;

box-shadow:0 8px 20px rgba(255,215,0,.30);

}

.buy-btn{

background:linear-gradient(135deg,#25D366,#18b955);

color:#fff;

font-size:15px;

font-weight:700;

box-shadow:0 8px 20px rgba(37,211,102,.30);

}

.cart-btn:hover,

.buy-btn:hover{

transform:translateY(-4px);

filter:brightness(1.05);

}

.product-content{

display:flex;

flex-direction:column;

height:100%;

}

.product-buttons{

margin-top:auto;

}

.product-card{

animation:fadeUp .45s ease;

}

@keyframes fadeUp{

from{

opacity:0;

transform:translateY(20px);

}

to{

opacity:1;

transform:translateY(0);

}

}

.cart-btn:hover,

.buy-btn:hover{

transform:translateY(-3px);

}

/* Floating Buttons */

.product-actions{

position:absolute;

top:12px;

right:12px;

display:flex;

flex-direction:column;

gap:10px;

z-index:5;

}

.action-btn{

width:42px;

height:42px;

border:none;

border-radius:50%;

background:rgba(20,20,20,.85);

backdrop-filter:blur(10px);

color:#fff;

font-size:18px;

cursor:pointer;

transition:.35s;

display:flex;

justify-content:center;

align-items:center;

box-shadow:0 8px 18px rgba(0,0,0,.35);

}

.action-btn:hover{

background:#FFD700;

color:#111;

transform:scale(1.15);

}

.wishlist-btn:hover{

color:#ff1744;

}

.quick-btn:hover{

color:#111;

}

.product-actions{

opacity:0;

transform:translateX(20px);

transition:.35s;

}

.product-card:hover .product-actions{

opacity:1;

transform:translateX(0);

}

/*==========================
INSTALL POPUP MOBILE FIX
==========================*/

.ab-popup{

max-width:500px !important;

width:92% !important;

border-radius:24px;

padding:22px;

}

.ab-popup .swal2-html-container{
    overflow:visible !important;
    max-height:none !important;
    padding-right:0;
}

.ab-popup .swal2-actions{
    margin-top:22px;
}

.ab-popup .swal2-confirm,

.ab-popup .swal2-cancel{

    min-width:140px;

}

@media (max-width:768px){

    .ab-popup{

        width:95vw!important;

        max-height:90vh!important;

        margin:10px auto!important;

    }

    .ab-popup .swal2-title{

        font-size:26px!important;

    }

    .ab-popup .swal2-html-container{

font-size:16px!important;

overflow:visible !important;

max-height:none !important;

}

    .ab-popup .swal2-actions{

        flex-direction:column-reverse;

        gap:12px;

    }

    .ab-popup .swal2-confirm,

    .ab-popup .swal2-cancel{

        width:100%!important;

        margin:0!important;

    }

}

.swal2-container{

padding:20px !important;

}

.swal2-html-container{

overflow-y:auto !important;

}