/*==================================================
CAR SHOP
Premium Black & Gold Theme
Author : ChatGPT
==================================================*/

/*==========================
RESET
==========================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    background:#080808;

    color:#fff;

    font-family:'Poppins',sans-serif;

    overflow-x:hidden;

}

a{

    text-decoration:none;

    color:#fff;

    transition:.3s;

}

ul{

    list-style:none;

}

img{

    max-width:100%;

    display:block;

}

.container{

    width:90%;

    max-width:1400px;

    margin:auto;

}

/*==========================
SCROLLBAR
==========================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#111;

}

::-webkit-scrollbar-thumb{

    background:#d4af37;

    border-radius:20px;

}

/*==========================
HEADER
==========================*/

header{

    position:fixed;

    width:100%;

    top:0;

    left:0;

    z-index:999;

    background:rgba(0,0,0,.70);

    backdrop-filter:blur(12px);

    border-bottom:1px solid rgba(212,175,55,.15);

}

.navbar{

    height:90px;

    display:flex;

    align-items:center;

    justify-content:space-between;

}

/*==========================
LOGO
==========================*/

.logo{
    display:flex;
    align-items:center;
}

.logo a{
    display:flex;
    align-items:center;
    text-decoration:none;
}

.logo img{
    height:180px;
    width:auto;
    display:block;
    object-fit:contain;
    transition:.3s;
}

.logo img:hover{
    transform:scale(1.03);
}

/*==========================
MENU
==========================*/

nav ul{

    display:flex;

    gap:35px;

}

nav ul li a{

    font-size:15px;

    text-transform:uppercase;

    letter-spacing:1px;

    position:relative;

}

nav ul li a::after{

    content:"";

    position:absolute;

    width:0;

    height:2px;

    left:0;

    bottom:-8px;

    background:#d4af37;

    transition:.3s;

}

nav ul li a:hover{

    color:#d4af37;

}

nav ul li a:hover::after{

    width:100%;

}

/*==========================
RIGHT ICONS
==========================*/

.nav-icons{

    display:flex;

    align-items:center;

    gap:18px;

}

.nav-icons i{

    font-size:18px;

    transition:.3s;

}

.nav-icons i:hover{

    color:#d4af37;

}

.login-btn{

    padding:12px 24px;

    background:#d4af37;

    color:#000;

    font-weight:700;

    border-radius:40px;

}

.login-btn:hover{

    background:#fff;

}

/*==========================
HERO
==========================*/

.hero{

    min-height:100vh;

    display:flex;

    align-items:center;

    position:relative;

    padding-top:90px;

    background:linear-gradient(rgba(0,0,0,.82),rgba(0,0,0,.90)),
    url('../images/hero-bg.jpg');

    background-size:cover;

    background-position:center;

}

.hero-content{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:60px;

}

.hero .left{

    flex:1;

}

.hero .right{

    flex:1;

}

.hero h4{

    color:#d4af37;

    font-size:18px;

    letter-spacing:5px;

    margin-bottom:20px;

}

.hero h1{

    font-family:'Bebas Neue',cursive;

    font-size:110px;

    line-height:95px;

    letter-spacing:4px;

}

.hero h1 span{

    color:#d4af37;

}

.hero p{

    margin-top:30px;

    font-size:18px;

    color:#cccccc;

    width:80%;

    line-height:34px;

}

.hero img{

    width:100%;

    animation:floatCar 5s ease-in-out infinite;

}

@keyframes floatCar{

0%{

transform:translateY(0px);

}

50%{

transform:translateY(-18px);

}

100%{

transform:translateY(0px);

}

}

/*==========================
BUTTON
==========================*/

.btn{

    display:inline-block;

    margin-top:40px;

    padding:16px 42px;

    background:#d4af37;

    color:#000;

    font-weight:bold;

    border-radius:40px;

    transition:.3s;

}

.btn:hover{

    background:#fff;

    transform:translateY(-5px);

}

/*==========================
SECTION TITLE
==========================*/

.section-title{

    text-align:center;

    margin-bottom:60px;

}

.section-title h2{

    font-size:58px;

    font-family:'Bebas Neue';

    letter-spacing:4px;

}

.section-title span{

    color:#d4af37;

}

section{

    padding:100px 0;

}
/*==========================
FEATURES
==========================*/

.features{

    background:#101010;

}

.feature-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.feature-box{

    background:#151515;

    border:1px solid #222;

    padding:40px;

    text-align:center;

    border-radius:15px;

    transition:.4s;

}

.feature-box:hover{

    transform:translateY(-10px);

    border-color:#d4af37;

    box-shadow:0 0 25px rgba(212,175,55,.2);

}

.feature-box i{

    font-size:45px;

    color:#d4af37;

    margin-bottom:20px;

}

.feature-box h3{

    margin-bottom:15px;

    font-size:22px;

}

.feature-box p{

    color:#aaa;

    line-height:28px;

}
/*==========================
BRANDS
==========================*/

.brands{

    background:#080808;

}

.brands p{

    color:#999;

}

.brand-grid{

    margin-top:60px;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.brand-card{

    background:#141414;

    border:1px solid #242424;

    border-radius:18px;

    height:170px;

    display:flex;

    align-items:center;

    justify-content:center;

    transition:.35s;

    cursor:pointer;

}

.brand-card:hover{

    border-color:#d4af37;

    transform:translateY(-8px);

    box-shadow:0 0 30px rgba(212,175,55,.20);

}

.brand-card img{

    max-width:160px;

    max-height:70px;

    filter:grayscale(100%);

    opacity:.7;

    transition:.35s;

}

.brand-card:hover img{

    filter:none;

    opacity:1;

    transform:scale(1.08);

}

/*==========================
FOOTER
==========================*/

.footer{

    background:#050505;

    border-top:1px solid rgba(212,175,55,.15);

    padding:80px 0 25px;

}

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1.3fr;

    gap:50px;

}

.footer-box h3{

    color:#d4af37;

    font-size:22px;

    margin-bottom:25px;

}

.footer-logo{

    font-family:'Bebas Neue',sans-serif;

    font-size:46px;

    letter-spacing:3px;

    margin-bottom:20px;

}

.footer-logo span{

    color:#d4af37;

}

.footer-box p{

    color:#a8a8a8;

    line-height:30px;

}

.footer-box ul{

    margin:0;

    padding:0;

}

.footer-box ul li{

    margin-bottom:15px;

}

.footer-box ul li a{

    color:#bdbdbd;

    transition:.3s;

}

.footer-box ul li a:hover{

    color:#d4af37;

    padding-left:8px;

}

.contact-list li{

    color:#bdbdbd;

    display:flex;

    align-items:flex-start;

    gap:12px;

}

.contact-list i{

    color:#d4af37;

    width:18px;

    margin-top:4px;

}

.social-icons{

    margin-top:30px;

    display:flex;

    gap:15px;

}

.social-icons a{

    width:46px;

    height:46px;

    border-radius:50%;

    background:#141414;

    display:flex;

    justify-content:center;

    align-items:center;

    border:1px solid #222;

    transition:.3s;

}

.social-icons a:hover{

    background:#d4af37;

    color:#000;

    transform:translateY(-6px);

}

.footer-bottom{

    border-top:1px solid #1b1b1b;

    margin-top:60px;

    padding-top:25px;

    text-align:center;

}

.footer-bottom p{

    color:#8d8d8d;

    letter-spacing:1px;

}

/*=========================
PAGE BANNER
=========================*/

.page-banner{

padding:170px 0 90px;

background:#0b0b0b;

text-align:center;

border-bottom:1px solid #222;

}

.page-banner h1{

font-size:70px;

font-family:'Bebas Neue';

letter-spacing:4px;

}

.page-banner p{

margin-top:15px;

color:#aaa;

}

/*=========================
ABOUT PAGE
=========================*/

.about-page{

background:#111;

}

.about-grid{

display:grid;

grid-template-columns:1fr 1fr;

gap:70px;

align-items:center;

}

.about-image img{

width:100%;

border-radius:20px;

}

.about-content h5{

color:#d4af37;

letter-spacing:4px;

margin-bottom:15px;

}

.about-content h2{

font-size:60px;

font-family:'Bebas Neue';

margin-bottom:25px;

}

.about-content h2 span{

color:#d4af37;

}

.about-content p{

color:#bdbdbd;

line-height:32px;

margin-bottom:25px;

}

.owner-box{

margin-top:35px;

padding:25px;

border-left:4px solid #d4af37;

background:#181818;

}

.owner-box h3{

color:#d4af37;

margin-bottom:10px;

}

/*=========================
STORE INFO
=========================*/

.company-info{

background:#080808;

}

.info-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:30px;

margin-top:60px;

}

.info-card{

background:#151515;

padding:40px;

text-align:center;

border-radius:15px;

border:1px solid #222;

transition:.35s;

}

.info-card:hover{

transform:translateY(-8px);

border-color:#d4af37;

}

.info-card i{

font-size:42px;

color:#d4af37;

margin-bottom:20px;

}

.info-card h3{

margin-bottom:15px;

}

.info-card p{

color:#bdbdbd;

line-height:28px;

}

/*=========================
INSTAGRAM
=========================*/

.instagram-section{

background:#101010;

}

.instagram-box{

padding:70px;

text-align:center;

background:#161616;

border-radius:20px;

border:1px solid #222;

}

.instagram-box i{

font-size:70px;

color:#d4af37;

margin-bottom:20px;

}

.instagram-box h2{

font-size:40px;

margin-bottom:15px;

font-family:'Bebas Neue';

letter-spacing:3px;

}

.instagram-box h3{

color:#d4af37;

margin-bottom:35px;

font-size:28px;

}

/*==========================
CONTACT PAGE
==========================*/

.contact-page{

background:#101010;

}

.contact-grid{

display:grid;

grid-template-columns:1fr 1fr;

gap:60px;

align-items:flex-start;

}

.contact-info h5{

color:#d4af37;

letter-spacing:3px;

margin-bottom:15px;

}

.contact-info h2{

font-size:60px;

font-family:'Bebas Neue';

margin-bottom:20px;

}

.contact-info h2 span{

color:#d4af37;

}

.contact-info>p{

color:#bbb;

margin-bottom:40px;

line-height:30px;

}

.contact-item{

display:flex;

gap:20px;

margin-bottom:30px;

}

.contact-item i{

width:60px;

height:60px;

background:#181818;

border-radius:50%;

display:flex;

justify-content:center;

align-items:center;

color:#d4af37;

font-size:22px;

flex-shrink:0;

}

.contact-item h4{

margin-bottom:8px;

}

.contact-item p{

color:#bdbdbd;

line-height:28px;

}

/* FORM */

.contact-form{

background:#151515;

padding:40px;

border-radius:18px;

border:1px solid #222;

}

.contact-form h3{

margin-bottom:25px;

color:#d4af37;

}

.contact-form input,

.contact-form textarea{

width:100%;

background:#0f0f0f;

border:1px solid #222;

padding:15px;

margin-bottom:20px;

border-radius:8px;

color:#fff;

font-size:15px;

}

.contact-form input:focus,

.contact-form textarea:focus{

outline:none;

border-color:#d4af37;

}

.contact-form button{

border:none;

cursor:pointer;

}

/* BUSINESS HOURS */

.business-hours{

background:#080808;

}

.hours-box{

display:flex;

justify-content:center;

gap:80px;

background:#151515;

padding:35px;

border-radius:18px;

text-align:center;

}

.hours-box span{

display:block;

color:#aaa;

margin-bottom:10px;

}

.hours-box strong{

font-size:22px;

color:#d4af37;

}

/* MAP */

.map-section iframe{

width:100%;

height:500px;

border:0;

display:block;

}
/*==========================
GALLERY
==========================*/

.gallery-page{

background:#101010;

}

.gallery-filter{

display:flex;

justify-content:center;

gap:15px;

margin:50px 0;

flex-wrap:wrap;

}

.gallery-filter button{

background:#171717;

border:1px solid #222;

color:#fff;

padding:12px 28px;

border-radius:30px;

cursor:pointer;

transition:.3s;

font-weight:600;

}

.gallery-filter button:hover,

.gallery-filter .active{

background:#d4af37;

color:#000;

}

.gallery-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:30px;

}

.gallery-item{

position:relative;

overflow:hidden;

border-radius:18px;

height:300px;

cursor:pointer;

}

.gallery-item img{

width:100%;

height:100%;

object-fit:cover;

transition:.5s;

}

.gallery-overlay{

position:absolute;

left:0;

top:0;

width:100%;

height:100%;

background:rgba(0,0,0,.75);

display:flex;

justify-content:center;

align-items:center;

flex-direction:column;

opacity:0;

transition:.35s;

}

.gallery-overlay h3{

font-size:30px;

font-family:'Bebas Neue';

letter-spacing:2px;

margin-bottom:10px;

}

.gallery-overlay p{

color:#d4af37;

margin-bottom:20px;

}

.gallery-overlay a{

width:55px;

height:55px;

border-radius:50%;

background:#d4af37;

color:#000;

display:flex;

justify-content:center;

align-items:center;

font-size:20px;

}

.gallery-item:hover img{

transform:scale(1.12);

}

.gallery-item:hover .gallery-overlay{

opacity:1;

}
/*==========================
BRAND PAGE
==========================*/

.brand-page{

    background:#101010;

}

.brand-page-grid{

    margin-top:60px;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.brand-box{

    background:#151515;

    border:1px solid #222;

    border-radius:18px;

    padding:35px;

    text-align:center;

    transition:.35s;

}

.brand-box:hover{

    transform:translateY(-10px);

    border-color:#d4af37;

    box-shadow:0 15px 35px rgba(212,175,55,.15);

}

.brand-logo{

    height:90px;

    display:flex;

    justify-content:center;

    align-items:center;

    margin-bottom:25px;

}

.brand-logo img{

    max-width:160px;

    max-height:70px;

    filter:grayscale(100%);

    opacity:.7;

    transition:.35s;

}

.brand-box:hover img{

    filter:none;

    opacity:1;

    transform:scale(1.08);

}

.brand-box h3{

    font-size:24px;

    margin-bottom:15px;

}

.brand-box p{

    color:#bdbdbd;

    line-height:28px;

    margin-bottom:25px;

}

.brand-btn{

    display:inline-block;

    background:#d4af37;

    color:#000;

    padding:12px 28px;

    border-radius:30px;

    font-weight:600;

    transition:.3s;

}

.brand-btn:hover{

    background:#fff;

    transform:translateY(-3px);

}


/* =========================
   SHOP LAYOUT
========================= */

/*==================================================
SHOP PAGE
==================================================*/

.shop-page{

display:flex;
gap:30px;
max-width:1400px;
margin:140px auto 80px;
padding:0 20px;
align-items:flex-start;

}

/*==========================
SIDEBAR
==========================*/

.sidebar{

width:270px;
background:#111;
border:1px solid #222;
border-radius:15px;
padding:25px;
flex-shrink:0;

}

.sidebar h3{

font-size:20px;
margin:25px 0 15px;
color:#d4af37;
border-bottom:1px solid #222;
padding-bottom:10px;

}

.filter-list{

margin:0;
padding:0;
list-style:none;

}

.filter-list li{

margin-bottom:10px;

}

.filter-list li a{

display:block;
padding:10px 15px;
border-radius:8px;
color:#bbb;
transition:.3s;

}

.filter-list li a:hover{

background:#d4af37;
color:#000;

}

/*==========================
SEARCH
==========================*/

/*==========================
SEARCH
==========================*/

.search-box{
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:25px;
    width:100%;
}

.search-box input{
    flex:1;
    width:100%;
    height:46px;
    background:#080808;
    border:1px solid #222;
    color:#fff;
    padding:0 15px;
    border-radius:8px;
    outline:none;
}

.search-box input:focus{
    border-color:#d4af37;
}

.search-box .search-btn{
    width:75px;
    height:46px;
    background:#d4af37;
    color:#000;
    border:none;
    border-radius:8px;
    cursor:pointer;
    font-weight:600;
    margin:0;
    padding:0;
    transition:.3s;
}

.search-box .search-btn:hover{
    background:#fff;
}

/*==========================
PRODUCT AREA
==========================*/

.products-area{

flex:1;

}

.product-header{

display:flex;
justify-content:space-between;
align-items:center;
margin-bottom:30px;

}

.product-header h2{

font-size:34px;
font-family:'Bebas Neue';
letter-spacing:2px;

}

.product-header p{

color:#999;

}

/*==========================
GRID
==========================*/

.product-grid{

display:grid;
grid-template-columns:repeat(auto-fill,minmax(260px,1fr));
gap:30px;

}

/*==========================
CARD
==========================*/

.product-card{

background:#151515;
border:1px solid #222;
border-radius:18px;
overflow:hidden;
transition:.35s;

}

.product-card:hover{

transform:translateY(-8px);
border-color:#d4af37;
box-shadow:0 15px 35px rgba(212,175,55,.15);

}

/*==========================
IMAGE
==========================*/

.product-img{

position:relative;
height:240px;
overflow:hidden;

}

.product-img img{

width:100%;
height:100%;
object-fit:cover;
transition:.35s;

}

.product-card:hover img{

transform:scale(1.08);

}

/*==========================
DISCOUNT
==========================*/

.discount-badge{

position:absolute;
top:15px;
left:15px;
background:#ff2f2f;
color:#fff;
padding:7px 12px;
font-size:12px;
border-radius:5px;
font-weight:600;

}

/*==========================
INFO
==========================*/

.product-info{

padding:20px;
text-align:center;

}

.brand{

color:#888;
font-size:13px;
margin-bottom:8px;

}

.title{

font-size:20px;
margin-bottom:15px;
font-weight:600;

}

.title a{

color:#fff;

}

.title a:hover{

color:#d4af37;

}

.price{

margin-bottom:20px;

}

.new-price{

font-size:24px;
font-weight:700;
color:#d4af37;

}

.old-price{

margin-left:10px;
text-decoration:line-through;
color:#777;

}

/*==========================
BUTTON
==========================*/

.product-card .btn{

display:inline-block;
background:#d4af37;
color:#000;
padding:12px 25px;
border-radius:30px;
font-weight:700;

}

.product-card .btn:hover{

background:#fff;
color:#000;

}

/*==========================
PAGINATION
==========================*/

.pagination{

margin-top:50px;
text-align:center;

}

.pagination a{

display:inline-block;
padding:10px 18px;
margin:5px;
border:1px solid #333;
border-radius:8px;
color:#fff;
transition:.3s;

}

.pagination a:hover,
.pagination a.active{

background:#d4af37;
color:#000;
border-color:#d4af37;

}

/*==========================
NO PRODUCT
==========================*/

.no-products{

background:#111;
padding:60px;
border-radius:15px;
text-align:center;
color:#999;

}

/*==========================================
CART PAGE
==========================================*/

.page-banner{
    padding:140px 0;
    background:#0d0d0d;
    border-bottom:1px solid #242424;
    text-align:center;
}

.page-banner h1{
    font-size:55px;
    font-weight:900;
    color:#fff;
    margin-bottom:10px;
    text-transform:uppercase;
}

.page-banner p{
    color:#aaa;
    font-size:16px;
}

.cart-page{
    padding:60px 0;
}

.cart-wrapper{
    display:grid;
    grid-template-columns:2fr 380px;
    gap:35px;
    align-items:flex-start;
}

/*=========================
TABLE
=========================*/

.cart-table{
    background:#111;
    border:1px solid #252525;
    border-radius:15px;
    overflow:hidden;
}

.cart-table table{
    width:100%;
    border-collapse:collapse;
}

.cart-table thead{
    background:#1b1b1b;
}

.cart-table th{
    color:#d4af37;
    padding:18px;
    text-align:center;
    font-size:15px;
}

.cart-table td{
    padding:18px;
    text-align:center;
    border-bottom:1px solid #222;
    color:#fff;
}

.cart-table tbody tr:hover{
    background:#171717;
}

.cart-table img{
    width:85px;
    height:85px;
    object-fit:cover;
    border-radius:10px;
    border:2px solid #2d2d2d;
}

.cart-table h4{
    color:#fff;
    font-size:17px;
    margin:0;
}

.cart-table .price{
    color:#d4af37;
    font-weight:700;
}

.cart-table .total{
    color:#fff;
    font-weight:700;
}

/*=========================
QTY
=========================*/

.qty-box{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:10px;
}

.qty-btn{
    width:35px;
    height:35px;
    border:none;
    background:#d4af37;
    color:#000;
    font-size:20px;
    font-weight:bold;
    cursor:pointer;
    border-radius:50%;
    transition:.3s;
}

.qty-btn:hover{
    transform:scale(1.1);
}

.qty-input{
    width:60px;
    height:36px;
    text-align:center;
    background:#1b1b1b;
    color:#fff;
    border:1px solid #444;
    border-radius:6px;
    font-size:16px;
}

.qty-input::-webkit-inner-spin-button,
.qty-input::-webkit-outer-spin-button{
    display:none;
}

/*=========================
REMOVE
=========================*/

.remove-btn{
    width:38px;
    height:38px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:auto;
    background:#ff3030;
    color:#fff;
    border-radius:50%;
    transition:.3s;
    text-decoration:none;
}

.remove-btn:hover{
    background:#ff0000;
    transform:scale(1.08);
}

/*=========================
BUTTONS
=========================*/

.cart-buttons{
    padding:25px;
    display:flex;
    gap:15px;
}

.cart-buttons .btn{
    padding:14px 28px;
    border-radius:40px;
}

/*=========================
SUMMARY
=========================*/

.cart-summary{
    background:#111;
    border:1px solid #252525;
    border-radius:15px;
    padding:30px;
    position:sticky;
    top:120px;
}

.cart-summary h3{
    color:#fff;
    margin-bottom:25px;
    font-size:26px;
}

.summary-row{
    display:flex;
    justify-content:space-between;
    margin-bottom:18px;
    color:#ddd;
    font-size:16px;
}

.summary-row strong{
    color:#fff;
}

.summary-row.total{
    font-size:22px;
    font-weight:bold;
    color:#d4af37;
}

.cart-summary hr{
    border:none;
    border-top:1px solid #333;
    margin:20px 0;
}

.checkout-btn{
    display:block;
    width:100%;
    text-align:center;
    background:#d4af37;
    color:#000;
    padding:16px;
    border-radius:40px;
    font-weight:700;
    text-decoration:none;
    transition:.3s;
}

.checkout-btn:hover{
    background:#f5c542;
}

/*=========================
EMPTY CART
=========================*/

.empty-cart{
    background:#111;
    border:1px solid #252525;
    border-radius:15px;
    padding:70px;
    text-align:center;
}

.empty-cart i{
    font-size:70px;
    color:#d4af37;
    margin-bottom:20px;
}

.empty-cart h2{
    color:#fff;
    margin-bottom:15px;
}

.empty-cart p{
    color:#aaa;
    margin-bottom:30px;
}

/*=========================
RESPONSIVE
=========================*/

@media(max-width:991px){

.cart-wrapper{
    grid-template-columns:1fr;
}

.cart-summary{
    position:relative;
    top:0;
}

.cart-table{
    overflow-x:auto;
}

.cart-table table{
    min-width:800px;
}

}

@media(max-width:576px){

.page-banner{
    padding:50px 0;
}

.page-banner h1{
    font-size:38px;
}

.cart-page{
    padding:40px 0;
}

.empty-cart{
    padding:40px 20px;
}

}
/*=====================================
PRODUCT PAGE
======================================*/

.product-page{
padding:60px 0;
background:#0b0b0b;
}

.product-wrapper{
display:grid;
grid-template-columns:500px 1fr;
gap:50px;
align-items:start;
}

/*=====================================
LEFT GALLERY
======================================*/

.product-gallery{
position:sticky;
top:100px;
}

.main-image{
background:#151515;
border:1px solid #262626;
border-radius:15px;
overflow:hidden;
position:relative;
padding:20px;
height:520px;
display:flex;
align-items:center;
justify-content:center;
}

.main-image img{
max-width:100%;
max-height:100%;
transition:.3s;
cursor:zoom-in;
}

.main-image img:hover{
transform:scale(1.08);
}

.product-discount{
position:absolute;
left:15px;
top:15px;
background:#d4af37;
color:#000;
padding:8px 15px;
font-size:13px;
font-weight:700;
border-radius:30px;
}

.thumb-gallery{
margin-top:20px;
display:flex;
gap:12px;
flex-wrap:wrap;
}

.thumb{
width:82px;
height:82px;
object-fit:cover;
border-radius:10px;
border:2px solid transparent;
cursor:pointer;
background:#151515;
padding:5px;
transition:.3s;
}

.thumb:hover,
.thumb.active{
border-color:#d4af37;
}

/*=====================================
RIGHT SIDE
======================================*/

.product-details{
color:#fff;
}

.product-brand{
color:#d4af37;
font-size:15px;
letter-spacing:2px;
margin-bottom:10px;
text-transform:uppercase;
}

.product-title{
font-size:38px;
margin-bottom:15px;
line-height:1.2;
}

.product-meta{
display:flex;
gap:25px;
margin-bottom:25px;
color:#bfbfbf;
font-size:15px;
flex-wrap:wrap;
}

.product-meta strong{
color:#fff;
}

.product-price{
display:flex;
align-items:center;
gap:15px;
flex-wrap:wrap;
margin-bottom:25px;
}

.sale-price{
font-size:38px;
font-weight:bold;
color:#d4af37;
}

.old-price{
font-size:22px;
text-decoration:line-through;
color:#888;
}

.saving-price{
background:#1f4720;
padding:7px 14px;
border-radius:30px;
font-size:14px;
color:#74ff8b;
}

.product-short-desc{
line-height:1.8;
font-size:15px;
color:#d0d0d0;
margin-bottom:30px;
}

/*=====================================
QTY
======================================*/

.qty-section{
display:flex;
align-items:center;
gap:20px;
margin-bottom:35px;
}

.qty-section label{
font-size:17px;
font-weight:600;
}

.qty-box{
display:flex;
align-items:center;
border:1px solid #333;
border-radius:40px;
overflow:hidden;
}

.qty-btn{
width:48px;
height:48px;
border:none;
background:#181818;
color:#fff;
font-size:22px;
cursor:pointer;
transition:.3s;
}

.qty-btn:hover{
background:#d4af37;
color:#000;
}

.qty-box input{
width:70px;
height:48px;
text-align:center;
background:#111;
border:none;
color:#fff;
font-size:18px;
outline:none;
}

/*=====================================
BUTTONS
======================================*/

.product-buttons{
display:flex;
gap:20px;
margin-bottom:35px;
flex-wrap:wrap;
}

.add-cart-btn,
.buy-now-btn{
height:56px;
padding:0 40px;
border:none;
border-radius:40px;
font-size:16px;
font-weight:700;
cursor:pointer;
transition:.3s;
}

.add-cart-btn{
background:#d4af37;
color:#000;
}

.add-cart-btn:hover{
background:#f4d35c;
transform:translateY(-2px);
}

.buy-now-btn{
background:#fff;
color:#000;
}

.buy-now-btn:hover{
background:#ececec;
}

/*=====================================
FEATURES
======================================*/

.product-features{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:18px;
}

.feature-item{
background:#141414;
border:1px solid #222;
padding:18px;
border-radius:12px;
display:flex;
align-items:center;
gap:15px;
}

.feature-item i{
color:#d4af37;
font-size:22px;
}

.feature-item span{
font-size:15px;
}

/*=====================================
TABS
======================================*/

.product-tabs{
margin-top:70px;
}

.tab-buttons{
display:flex;
gap:15px;
margin-bottom:30px;
}

.tab-btn{
height:48px;
padding:0 35px;
background:#171717;
border:none;
color:#fff;
cursor:pointer;
border-radius:30px;
font-weight:600;
transition:.3s;
}

.tab-btn.active,
.tab-btn:hover{
background:#d4af37;
color:#000;
}

.tab-content{
display:none;
background:#131313;
padding:30px;
border-radius:15px;
border:1px solid #222;
line-height:1.9;
}

.tab-content.active{
display:block;
}

/*=====================================
SPEC TABLE
======================================*/

.spec-table{
width:100%;
border-collapse:collapse;
}

.spec-table th{
background:#1d1d1d;
width:230px;
padding:15px;
text-align:left;
color:#d4af37;
}

.spec-table td{
padding:15px;
border-bottom:1px solid #222;
}

/*=====================================
RELATED
======================================*/

.related-products{
margin-top:70px;
}

.related-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
}

.in-stock{
color:#3cff67;
font-weight:bold;
}

.out-stock{
color:#ff5454;
font-weight:bold;
}

/*=====================================
RESPONSIVE
======================================*/

@media(max-width:1200px){

.product-wrapper{
grid-template-columns:1fr;
}

.product-gallery{
position:relative;
top:0;
}

.related-grid{
grid-template-columns:repeat(3,1fr);
}

}

@media(max-width:768px){

.product-title{
font-size:30px;
}

.sale-price{
font-size:30px;
}

.related-grid{
grid-template-columns:repeat(2,1fr);
}

.product-buttons{
flex-direction:column;
}

.add-cart-btn,
.buy-now-btn{
width:100%;
}

.product-features{
grid-template-columns:1fr;
}

.tab-buttons{
overflow:auto;
}

}

@media(max-width:500px){

.main-image{
height:340px;
}

.thumb{
width:65px;
height:65px;
}

.related-grid{
grid-template-columns:1fr;
}

.product-title{
font-size:25px;
}

.sale-price{
font-size:26px;
}

.product-meta{
flex-direction:column;
gap:8px;
}

.qty-section{
flex-direction:column;
align-items:flex-start;
}

}
.toast-message{

position:fixed;
top:100px;
right:25px;
background:#111;
color:#fff;
padding:15px 22px;
border-left:5px solid #d4af37;
border-radius:10px;
box-shadow:0 10px 30px rgba(0,0,0,.4);
opacity:0;
transform:translateX(100px);
transition:.35s;
z-index:99999;
font-weight:600;
display:flex;
align-items:center;
gap:12px;

}

.toast-message i{

color:#d4af37;
font-size:20px;

}

.toast-message.show{

opacity:1;
transform:translateX(0);

}
/*=====================================
CHECKOUT
======================================*/

.checkout-page{
padding:60px 0;
background:#0b0b0b;
}

.checkout-wrapper{
display:grid;
grid-template-columns:2fr 1fr;
gap:30px;
align-items:start;
}

.checkout-card,
.order-summary{
background:#141414;
border:1px solid #262626;
border-radius:15px;
padding:30px;
margin-bottom:25px;
}

.checkout-card h3,
.order-summary h3{
margin-bottom:25px;
font-size:24px;
color:#d4af37;
}

.form-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:20px;
}

.form-group{
display:flex;
flex-direction:column;
}

.form-group.full{
grid-column:1/3;
}

.form-group label{
margin-bottom:8px;
font-weight:600;
}

.form-group input,
.form-group textarea{
background:#0f0f0f;
border:1px solid #333;
color:#fff;
padding:14px;
border-radius:10px;
outline:none;
transition:.3s;
}

.form-group input:focus,
.form-group textarea:focus{
border-color:#d4af37;
}

.payment-list label{
display:flex;
align-items:center;
gap:15px;
padding:18px;
border:1px solid #333;
border-radius:10px;
margin-bottom:15px;
cursor:pointer;
}

.payment-list input{
transform:scale(1.2);
}

.summary-item{
display:flex;
justify-content:space-between;
padding:15px 0;
border-bottom:1px solid #262626;
}

.summary-row{
display:flex;
justify-content:space-between;
padding:15px 0;
}

.summary-row.total{
font-size:22px;
font-weight:bold;
color:#d4af37;
}

.place-order-btn{
width:100%;
height:55px;
border:none;
border-radius:40px;
background:#d4af37;
color:#000;
font-size:18px;
font-weight:bold;
cursor:pointer;
margin-top:20px;
transition:.3s;
}

.place-order-btn:hover{
background:#f2cf53;
transform:translateY(-2px);
}

/* Mobile */

@media(max-width:900px){

.checkout-wrapper{
grid-template-columns:1fr;
}

.form-grid{
grid-template-columns:1fr;
}

.form-group.full{
grid-column:auto;
}

}

/*====================================
ORDER SUCCESS
====================================*/

.order-success-page{

padding:80px 0;

background:#0b0b0b;

}

.success-box{

max-width:700px;

margin:auto;

background:#141414;

border:1px solid #262626;

border-radius:18px;

padding:50px;

text-align:center;

}

.success-icon{

width:120px;

height:120px;

margin:auto;

border-radius:50%;

background:#183b1d;

display:flex;

align-items:center;

justify-content:center;

margin-bottom:30px;

animation:pop .5s ease;

}

.success-icon i{

font-size:65px;

color:#31d158;

}

.success-box h2{

font-size:36px;

margin-bottom:15px;

}

.success-box p{

color:#cfcfcf;

margin-bottom:30px;

}

.order-number{

background:#101010;

border:1px dashed #d4af37;

padding:25px;

border-radius:12px;

margin-bottom:35px;

}

.order-number h3{

margin-top:10px;

font-size:28px;

color:#d4af37;

letter-spacing:2px;

}

.success-buttons{

display:flex;

gap:20px;

justify-content:center;

flex-wrap:wrap;

}

.success-buttons .btn{

min-width:200px;

}

.btn-dark{

background:#333;

color:#fff;

}

.btn-dark:hover{

background:#444;

}

.btn-gold{

background:#d4af37;

color:#000;

}

.btn-gold:hover{

background:#f3ce4b;

}

@keyframes pop{

0%{

transform:scale(.2);

opacity:0;

}

100%{

transform:scale(1);

opacity:1;

}

}

@media(max-width:768px){

.success-box{

padding:30px;

}

.success-buttons{

flex-direction:column;

}

.success-buttons .btn{

width:100%;

}

}

/*=========================
TRACK ORDER
=========================*/

.track-order-page{

padding:60px 0;

}

.track-form{

max-width:700px;

margin:auto 0 40px;

display:flex;

gap:15px;

}

.track-form input{

flex:1;

height:55px;

border:1px solid #333;

background:#111;

color:#fff;

padding:0 20px;

border-radius:10px;

}

.track-form button{

width:180px;

background:#d4af37;

border:none;

border-radius:10px;

font-weight:bold;

cursor:pointer;

}

.track-card{

background:#111;

border:1px solid #2d2d2d;

border-radius:12px;

padding:30px;

}

.track-card h2{

margin-bottom:25px;

color:#d4af37;

}

.track-table{

width:100%;

border-collapse:collapse;

}

.track-table th,

.track-table td{

padding:15px;

border-bottom:1px solid #222;

text-align:left;

}

.track-table th{

width:220px;

color:#d4af37;

}

.status{

padding:6px 14px;

background:#d4af37;

color:#000;

border-radius:20px;

font-weight:bold;

}

.track-error{

background:#861d1d;

padding:20px;

border-radius:10px;

text-align:center;

font-size:18px;

}
/*====================================
ORDER HISTORY
====================================*/

.order-history-page{

padding:60px 0;

}

.history-search{

max-width:600px;

margin:0 auto 40px;

background:#111;

padding:30px;

border-radius:12px;

border:1px solid #222;

box-shadow:0 10px 30px rgba(0,0,0,.35);

}

.history-search form{

display:flex;

gap:15px;

}

.history-search input{

flex:1;

height:52px;

padding:0 18px;

background:#1a1a1a;

border:1px solid #333;

border-radius:8px;

color:#fff;

font-size:15px;

outline:none;

transition:.3s;

}

.history-search input:focus{

border-color:#d4af37;

}

.history-search .btn{

padding:0 30px;

height:52px;

border:none;

border-radius:8px;

background:#d4af37;

color:#000;

font-weight:700;

cursor:pointer;

transition:.3s;

}

.history-search .btn:hover{

background:#f5c542;

}

.history-table{

overflow-x:auto;

background:#111;

border-radius:12px;

border:1px solid #222;

padding:10px;

}

.history-table table{

width:100%;

border-collapse:collapse;

min-width:850px;

}

.history-table th{

background:#1b1b1b;

color:#d4af37;

padding:16px;

font-size:15px;

font-weight:600;

text-align:center;

border-bottom:1px solid #333;

}

.history-table td{

padding:16px;

text-align:center;

border-bottom:1px solid #222;

font-size:15px;

color:#ddd;

vertical-align:middle;

}

.history-table tr:hover{

background:#181818;

}

.status{

display:inline-block;

padding:6px 14px;

border-radius:30px;

background:#d4af37;

color:#000;

font-size:13px;

font-weight:700;

}

.view-btn{

display:inline-block;

padding:9px 18px;

background:#d4af37;

color:#000;

border-radius:8px;

text-decoration:none;

font-weight:700;

transition:.3s;

}

.view-btn:hover{

background:#f5c542;

transform:translateY(-2px);

}

.empty-cart{

max-width:600px;

margin:40px auto;

text-align:center;

background:#111;

padding:50px;

border-radius:12px;

border:1px solid #222;

}

.empty-cart h3{

font-size:28px;

margin-bottom:15px;

color:#fff;

}

.empty-cart p{

color:#999;

font-size:15px;

margin-bottom:20px;

}

/*====================================
RESPONSIVE
====================================*/

@media(max-width:992px){

.history-search form{

flex-direction:column;

}

.history-search .btn{

width:100%;

}

.history-table{

padding:0;

}

}

@media(max-width:768px){

.order-history-page{

padding:40px 0;

}

.history-search{

padding:20px;

}

.history-search input{

height:48px;

font-size:14px;

}

.history-search .btn{

height:48px;

}

.history-table table{

min-width:700px;

}

.history-table th,
.history-table td{

padding:12px;

font-size:13px;

}

.status{

padding:5px 10px;

font-size:12px;

}

.view-btn{

padding:7px 14px;

font-size:13px;

}

}
/*=========================
ORDER DETAILS
=========================*/

.order-details-page{

padding:60px 0;

}

.order-info{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:25px;

margin-bottom:35px;

}

.order-info>div{

background:#111;

padding:25px;

border:1px solid #222;

border-radius:12px;

}

.order-info h3{

margin-bottom:15px;

color:#f5b301;

}

.order-info p{

margin:8px 0;

color:#ddd;

line-height:1.7;

}

.status{

padding:4px 12px;

background:#27ae60;

border-radius:20px;

color:#fff;

font-size:13px;

}

.order-items{

overflow:auto;

margin-bottom:30px;

}

.order-items table{

width:100%;

border-collapse:collapse;

background:#111;

}

.order-items th{

background:#181818;

padding:15px;

text-align:left;

}

.order-items td{

padding:15px;

border-top:1px solid #222;

}

.order-items img{

border-radius:8px;

}

.order-total{

text-align:right;

margin:25px 0;

}

.order-total h2{

font-size:28px;

color:#f5b301;

}

@media(max-width:768px){

.order-info{

grid-template-columns:1fr;

}

.order-items table{

min-width:700px;

}

.order-total{

text-align:center;

}

}

/*=========================
HOME PRODUCTS
=========================*/

.home-products{
    padding:70px 0;
     background:#101010;
}

.home-product-grid{
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:18px;
    margin-top:40px;
}

.home-product-card{
    background:#111;
    border:1px solid rgba(255,255,255,.08);
    border-radius:12px;
    overflow:hidden;
    transition:.35s;
}

.home-product-card:hover{
    transform:translateY(-6px);
    border-color:#d4af37;
}

.home-product-image{
    height:170px;
    background:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:12px;
}

.home-product-image img{
    width:100%;
    height:100%;
    object-fit:contain;
}

.home-product-info{
    padding:15px;
    text-align:center;
}

.home-product-info h4{
    font-size:15px;
    margin-bottom:12px;
    height:42px;
    overflow:hidden;
}

.home-product-info h4 a{
    color:#fff;
    text-decoration:none;
}

.price{
    margin-bottom:15px;
}

.new-price{
    color:#d4af37;
    font-size:20px;
    font-weight:700;
}

.old-price{
    color:#888;
    margin-left:8px;
    text-decoration:line-through;
    font-size:14px;
}

.home-product-info .btn{
    width:100%;
    display:block;
    padding:10px;
    border-radius:8px;
}
