/*==================================================
        JJ SANITARYWORLD
        LUXURY UI SYSTEM
==================================================*/

:root{

    --gold:#C89B3C;
    --gold-dark:#9F7428;
    --gold-light:#E8C97A;

    --black:#0F0F0F;
    --dark:#171717;
    --card:#1D1D1D;

    --white:#ffffff;
    --text:#ECECEC;
    --muted:#B5B5B5;

    --border:rgba(255,255,255,.08);

    --glass:rgba(255,255,255,.05);

    --transition:.35s ease;

    --shadow:
    0 15px 40px rgba(0,0,0,.35);

}

/*============================*/

*{

margin:0;
padding:0;
box-sizing:border-box;

}

html{

scroll-behavior:smooth;

}

body{

font-family:'Poppins',sans-serif;

background:#0F0F0F;

color:#fff;

overflow-x:hidden;

}

/*============================*/

a{

text-decoration:none;

transition:var(--transition);

}

img{

max-width:100%;

display:block;

}

/*============================*/

.cursor-glow{

position:fixed;

width:18px;
height:18px;

border-radius:50%;

background:rgba(200,155,60,.35);

filter:blur(10px);

pointer-events:none;

z-index:9999;

}

/*==================================================
                TOP BAR
==================================================*/

.topbar{

background:#090909;

border-bottom:1px solid rgba(255,255,255,.06);

height:42px;

display:flex;

align-items:center;

position:relative;

z-index:1100;

}

.topbar-wrapper{

display:flex;

justify-content:space-between;

align-items:center;

}

.top-left{

display:flex;

gap:28px;

}

.top-left span{

font-size:13px;

color:#d2d2d2;

display:flex;

align-items:center;

gap:8px;

}

.top-left i{

color:var(--gold);

}

.top-right{

display:flex;

gap:12px;

}

.top-right a{

width:34px;

height:34px;

display:flex;

align-items:center;

justify-content:center;

border-radius:50%;

background:rgba(255,255,255,.04);

color:#fff;

transition:.35s;

}

.top-right a:hover{

background:var(--gold);

color:#111;

transform:translateY(-4px);

box-shadow:

0 8px 20px rgba(200,155,60,.35);

}

/*==================================================
                LUXURY NAVBAR
==================================================*/

.luxury-navbar{

    position:fixed;
    top:42px;
    left:0;
    width:100%;

    z-index:1050;

    background:rgba(15,15,15,.72);

    backdrop-filter:blur(18px);

    -webkit-backdrop-filter:blur(18px);

    border-bottom:1px solid rgba(200,155,60,.15);

    transition:.4s ease;

    padding:18px 0;

}

.luxury-navbar.scrolled{

    top:0;

    padding:10px 0;

    background:rgba(10,10,10,.92);

    box-shadow:0 15px 40px rgba(0,0,0,.45);

}

/*=============================
      NAVBAR SPACING
==============================*/

.navbar-space{

    height:120px;

}

/*=============================
         BRAND
==============================*/

.navbar-brand{

    display:flex;

    align-items:center;

    gap:15px;

}

.site-logo{

    width:68px;

    transition:.35s;

}

.luxury-navbar.scrolled .site-logo{

    width:58px;

}

.logo-content{

    display:flex;

    flex-direction:column;

}

.logo-content h4{

    margin:0;

    color:#fff;

    font-size:22px;

    font-weight:700;

    letter-spacing:.5px;

}

.logo-content p{

    margin:0;

    color:var(--gold);

    font-size:12px;

    letter-spacing:2px;

    text-transform:uppercase;

}

/*=============================
      NAVIGATION
==============================*/

.navbar-nav{

    gap:18px;

}

.nav-item{

    position:relative;

}

.nav-link{

    position:relative;

    color:#ddd !important;

    font-size:15px;

    font-weight:500;

    padding:10px 18px !important;

    transition:.35s;

}

.nav-link:hover{

    color:#fff !important;

}

/* Gold Underline */

.nav-link::after{

    content:"";

    position:absolute;

    left:18px;

    bottom:4px;

    width:0;

    height:2px;

    border-radius:20px;

    background:linear-gradient(
        90deg,
        var(--gold),
        #f6dc98
    );

    transition:.35s;

}

.nav-link:hover::after{

    width:calc(100% - 36px);

}

.nav-link.active{

    color:var(--gold) !important;

}

.nav-link.active::after{

    width:calc(100% - 36px);

}

/*=============================
       RIGHT ACTIONS
==============================*/

.nav-actions{

    display:flex;

    align-items:center;

    gap:14px;

}

/*=============================
        ICON BUTTONS
==============================*/

.nav-icon{

    width:46px;

    height:46px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    color:#fff;

    transition:.35s;

    position:relative;

}

.nav-icon:hover{

    background:var(--gold);

    color:#111;

    transform:translateY(-3px);

    box-shadow:0 10px 25px rgba(200,155,60,.35);

}

/*=============================
        CART BADGE
==============================*/

.cart-count{

    position:absolute;

    top:-6px;

    right:-5px;

    min-width:20px;

    height:20px;

    border-radius:50%;

    background:linear-gradient(
        135deg,
        #ff4040,
        #d00000
    );

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:11px;

    font-weight:700;

    border:2px solid #111;

}

/*=============================
      WHATSAPP BUTTON
==============================*/

.whatsapp-btn-nav{

    width:48px;

    height:48px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#25D366;

    color:#fff;

    font-size:20px;

    transition:.35s;

}

.whatsapp-btn-nav:hover{

    transform:translateY(-3px);

    box-shadow:0 10px 25px rgba(37,211,102,.35);

    color:#fff;

}

/*=============================
     DEALER BUTTON
==============================*/

.dealer-btn{

    padding:13px 28px;

    border-radius:50px;

    background:linear-gradient(
        135deg,
        var(--gold),
        var(--gold-dark)
    );

    color:#111;

    font-weight:700;

    letter-spacing:.5px;

    transition:.35s;

    white-space:nowrap;

}

.dealer-btn:hover{

    color:#111;

    transform:translateY(-3px);

    box-shadow:0 12px 30px rgba(200,155,60,.45);

}

/*==================================================
        MOBILE NAVBAR
==================================================*/

.navbar-toggler{

    width:48px;
    height:48px;

    border:none !important;

    outline:none !important;

    box-shadow:none !important;

    border-radius:12px;

    background:rgba(255,255,255,.06);

    color:#fff;

    display:flex;
    align-items:center;
    justify-content:center;

    transition:.35s;

}

.navbar-toggler i{

    font-size:20px;

}

.navbar-toggler:hover{

    background:var(--gold);

    color:#111;

}

/*==============================
     MOBILE COLLAPSE
==============================*/

@media (max-width:1199px){

.luxury-navbar{

    padding:14px 0;

}

.navbar-collapse{

    margin-top:20px;

    padding:25px;

    border-radius:22px;

    background:rgba(18,18,18,.98);

    border:1px solid rgba(255,255,255,.06);

    box-shadow:0 20px 45px rgba(0,0,0,.45);

}

.navbar-nav{

    gap:6px;

}

.nav-link{

    padding:15px 18px !important;

    border-radius:14px;

}

.nav-link:hover{

    background:rgba(255,255,255,.05);

}

.nav-link.active{

    background:rgba(200,155,60,.15);

}

.nav-link::after{

    display:none;

}

.nav-actions{

    margin-top:25px;

    justify-content:center;

    flex-wrap:wrap;

}

.dealer-btn{

    width:100%;

    text-align:center;

}

}

/*==============================
      TABLET
==============================*/

@media(max-width:991px){

.topbar{

    display:none;

}

.luxury-navbar{

    top:0;

}

.navbar-space{

    height:92px;

}

.logo-content h4{

    font-size:18px;

}

.logo-content p{

    font-size:10px;

    letter-spacing:1px;

}

.site-logo{

    width:55px;

}

}

/*==============================
        MOBILE
==============================*/

@media(max-width:768px){

.navbar-space{

    height:88px;

}

.site-logo{

    width:48px;

}

.logo-content h4{

    font-size:16px;

}

.logo-content p{

    display:none;

}

.nav-icon{

    width:44px;

    height:44px;

}

.whatsapp-btn-nav{

    width:44px;

    height:44px;

}

.dealer-btn{

    padding:14px 18px;

    font-size:14px;

}

}

/*==============================
      SMALL MOBILE
==============================*/

@media(max-width:480px){

.navbar-brand{

    gap:10px;

}

.site-logo{

    width:42px;

}

.logo-content h4{

    font-size:15px;

}

.navbar-collapse{

    padding:20px;

}

.dealer-btn{

    font-size:13px;

}

}

/*==================================================
      PREMIUM HOVER EFFECTS
==================================================*/

.navbar-brand{

    transition:.35s;

}

.navbar-brand:hover{

    transform:translateY(-2px);

}

.site-logo{

    transition:.5s ease;

}

.navbar-brand:hover .site-logo{

    transform:rotate(-4deg) scale(1.05);

}

.logo-content h4{

    transition:.35s;

}

.navbar-brand:hover h4{

    color:var(--gold);

}

.nav-actions>*{

    transition:.35s;

}

/*==============================
    GLASS BORDER GLOW
==============================*/

.luxury-navbar::before{

    content:"";

    position:absolute;

    left:0;
    top:0;

    width:100%;
    height:1px;

    background:linear-gradient(
        90deg,
        transparent,
        rgba(200,155,60,.55),
        transparent
    );

}

.luxury-navbar::after{

    content:"";

    position:absolute;

    left:0;
    bottom:0;

    width:100%;
    height:1px;

    background:linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.08),
        transparent
    );

}

/*=========================================================
                    HERO V3
=========================================================*/

.hero{

    position:relative;

    min-height:100vh;

    display:flex;

    align-items:center;

    overflow:hidden;

    background:
    linear-gradient(
        90deg,
        rgba(10,10,10,.88) 0%,
        rgba(10,10,10,.70) 38%,
        rgba(10,10,10,.35) 68%,
        rgba(10,10,10,.18) 100%
    ),
    url("../images/hero/hero-bg.png");

    background-size:cover;

    background-position:center center;

    background-repeat:no-repeat;

}

.hero-overlay{

position:absolute;

inset:0;

background:

radial-gradient(circle at right,

rgba(200,155,60,.12),

transparent 45%);

}

.hero-gradient{

position:absolute;

left:0;

top:0;

width:100%;

height:100%;

background:

linear-gradient(90deg,

rgba(15,15,15,.92) 15%,

rgba(15,15,15,.65) 45%,

transparent 100%);

}

.hero .container{

position:relative;

z-index:5;

}

.hero-badge{

display:inline-flex;

align-items:center;

gap:12px;

padding:12px 22px;

border-radius:40px;

background:rgba(200,155,60,.12);

border:1px solid rgba(200,155,60,.25);

color:#C89B3C;

font-size:14px;

margin-bottom:30px;

backdrop-filter:blur(12px);

}

.hero h1{

font-size:76px;

line-height:1.05;

font-weight:800;

margin-bottom:28px;

max-width:720px;

}

.hero h1 span{

color:#C89B3C;

}

.hero p{

font-size:18px;

line-height:1.9;

color:#d4d4d4;

max-width:600px;

margin-bottom:40px;

}

.hero-buttons{

display:flex;

gap:20px;

flex-wrap:wrap;

}

.btn-gold{

padding:18px 38px;

border-radius:60px;

background:linear-gradient(135deg,#C89B3C,#9F7428);

color:#111;

font-weight:700;

transition:.35s;

}

.btn-gold:hover{

transform:translateY(-6px);

box-shadow:0 18px 40px rgba(200,155,60,.35);

color:#111;

}

.btn-glass{

padding:18px 38px;

border-radius:60px;

background:rgba(255,255,255,.05);

border:1px solid rgba(255,255,255,.12);

color:#fff;

backdrop-filter:blur(12px);

transition:.35s;

}

.btn-glass:hover{

background:#fff;

color:#111;

}

.hero-stats{

display:flex;

flex-direction:column;

gap:22px;

align-items:flex-end;

}

.glass-box{

width:250px;

padding:30px;

border-radius:24px;

background:rgba(255,255,255,.08);

backdrop-filter:blur(16px);

border:1px solid rgba(255,255,255,.08);

box-shadow:0 15px 35px rgba(0,0,0,.35);

transition:.35s;

}

.glass-box:hover{

transform:translateY(-10px);

border-color:#C89B3C;

}

.glass-box h2{

font-size:42px;

color:#C89B3C;

margin-bottom:8px;

}

.glass-box p{

margin:0;

color:#fff;

}

/*==========================================
        PREMIUM BRANDS
==========================================*/

.brands-section{

padding:120px 0;

background:#111;

position:relative;

}

.section-badge{

display:inline-block;

padding:10px 24px;

background:rgba(200,155,60,.08);

border:1px solid rgba(200,155,60,.25);

border-radius:40px;

color:#C89B3C;

font-size:14px;

margin-bottom:20px;

}

.section-title{

max-width:760px;

margin:auto;

margin-bottom:70px;

}

.section-title h2{

font-size:52px;

font-weight:700;

color:#fff;

margin-bottom:20px;

}

.section-title p{

font-size:18px;

line-height:1.8;

color:#cfcfcf;

}

.brands-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:25px;

}

.brand-card{

height:120px;

display:flex;

align-items:center;

justify-content:center;

border-radius:20px;

background:rgba(255,255,255,.04);

border:1px solid rgba(255,255,255,.08);

backdrop-filter:blur(12px);

transition:.35s;

position:relative;

overflow:hidden;

}

.brand-card::before{

content:"";

position:absolute;

left:-120%;

top:0;

width:60%;

height:100%;

background:linear-gradient(

90deg,

transparent,

rgba(255,255,255,.12),

transparent

);

transition:.7s;

}

.brand-card:hover::before{

left:130%;

}

.brand-card:hover{

transform:translateY(-8px);

border-color:#C89B3C;

box-shadow:0 15px 35px rgba(200,155,60,.20);

}

.brand-card h4{

margin:0;

font-size:22px;

font-weight:700;

letter-spacing:2px;

color:#fff;

transition:.3s;

}

.brand-card:hover h4{

color:#C89B3C;

}

@media(max-width:992px){

.brands-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:576px){

.brands-grid{

grid-template-columns:1fr;

}

.section-title h2{

font-size:36px;

}

.brand-card{

height:90px;

}

.brand-card h4{

font-size:18px;

}

}

/*=========================================
        COLLECTIONS
=========================================*/

.collections-section{

padding:120px 0;

background:#0f0f0f;

}

.collection-card{

position:relative;

height:560px;

overflow:hidden;

border-radius:28px;

cursor:pointer;

}

.collection-card img{

width:100%;

height:100%;

object-fit:cover;

transition:.8s;

}

.collection-overlay{

position:absolute;

inset:0;

display:flex;

flex-direction:column;

justify-content:flex-end;

padding:40px;

background:linear-gradient(

transparent,

rgba(0,0,0,.88)

);

}

.collection-overlay span{

color:#C89B3C;

font-size:14px;

letter-spacing:2px;

text-transform:uppercase;

margin-bottom:12px;

}

.collection-overlay h3{

font-size:36px;

font-weight:700;

color:#fff;

margin-bottom:25px;

}

.collection-overlay a{

color:#fff;

text-decoration:none;

font-weight:600;

transition:.3s;

}

.collection-overlay a i{

margin-left:10px;

transition:.3s;

}

.collection-card:hover img{

transform:scale(1.12);

}

.collection-card:hover a{

color:#C89B3C;

}

.collection-card:hover i{

transform:translateX(8px);

}

/*==================================================
            WHY CHOOSE SRC
==================================================*/

.why-section{

padding:120px 0;

background:#121212;

position:relative;

overflow:hidden;

}

.why-card{

background:rgba(255,255,255,.04);

border:1px solid rgba(255,255,255,.08);

border-radius:26px;

padding:45px 35px;

height:100%;

text-align:center;

transition:.45s;

position:relative;

overflow:hidden;

backdrop-filter:blur(14px);

}

.why-card::before{

content:"";

position:absolute;

left:-100%;

top:0;

width:70%;

height:100%;

background:linear-gradient(

90deg,

transparent,

rgba(255,255,255,.08),

transparent

);

transition:.7s;

}

.why-card:hover::before{

left:130%;

}

.why-card:hover{

transform:translateY(-12px);

border-color:#C89B3C;

box-shadow:0 25px 50px rgba(200,155,60,.18);

}

.why-icon{

width:90px;

height:90px;

margin:auto;

margin-bottom:25px;

display:flex;

align-items:center;

justify-content:center;

border-radius:50%;

background:rgba(200,155,60,.12);

border:1px solid rgba(200,155,60,.30);

transition:.4s;

}

.why-icon i{

font-size:34px;

color:#C89B3C;

transition:.4s;

}

.why-card:hover .why-icon{

transform:rotateY(180deg);

background:#C89B3C;

}

.why-card:hover .why-icon i{

color:#111;

transform:rotateY(180deg);

}

.why-card h4{

font-size:24px;

font-weight:700;

color:#fff;

margin-bottom:15px;

}

.why-card p{

font-size:16px;

line-height:1.8;

color:#bdbdbd;

margin:0;

}

@media(max-width:768px){

.why-section{

padding:80px 0;

}

.why-card{

padding:35px 25px;

}

.why-icon{

width:75px;

height:75px;

}

.why-icon i{

font-size:28px;

}

.why-card h4{

font-size:22px;

}

}

/*==============================================
        FEATURED PRODUCTS
==============================================*/

.featured-products{

padding:120px 0;

background:#0f0f0f;

}

.featured-card{

background:#181818;

border-radius:24px;

overflow:hidden;

transition:.4s;

border:1px solid rgba(255,255,255,.06);

height:100%;

}

.featured-card:hover{

transform:translateY(-10px);

border-color:#C89B3C;

box-shadow:0 20px 45px rgba(200,155,60,.18);

}

.featured-image{

position:relative;

height:280px;

overflow:hidden;

}

.featured-image img{

width:100%;

height:100%;

object-fit:cover;

transition:.6s;

}

.featured-card:hover img{

transform:scale(1.08);

}

.featured-category{

position:absolute;

top:20px;

left:20px;

padding:8px 18px;

border-radius:40px;

background:#C89B3C;

color:#111;

font-size:13px;

font-weight:600;

}

.featured-content{

padding:25px;

}

.featured-content h4{

font-size:22px;

font-weight:700;

margin-bottom:10px;

color:#fff;

min-height:55px;

}

.featured-brand{

color:#C89B3C;

margin-bottom:20px;

font-weight:500;

}

.featured-price{

font-size:28px;

font-weight:700;

color:#fff;

margin-bottom:25px;

}

.featured-buttons{

display:flex;

gap:12px;

}

.btn-view{

flex:1;

padding:12px;

text-align:center;

background:#222;

border-radius:12px;

color:#fff;

text-decoration:none;

transition:.3s;

}

.btn-view:hover{

background:#C89B3C;

color:#111;

}

.btn-whatsapp{

width:50px;

display:flex;

justify-content:center;

align-items:center;

border-radius:12px;

background:#25D366;

color:#fff;

text-decoration:none;

font-size:20px;

transition:.3s;

}

.btn-whatsapp:hover{

transform:scale(1.08);

color:#fff;

}

@media(max-width:768px){

.featured-image{

height:220px;

}

.featured-content h4{

font-size:20px;

}

.featured-price{

font-size:24px;

}

}

/*=================================================
            DEALER CTA
=================================================*/

.dealer-section{

padding:120px 0;

position:relative;

background:#111;

overflow:hidden;

}

.dealer-overlay{

position:absolute;

inset:0;

background:

linear-gradient(

90deg,

rgba(15,15,15,.95),

rgba(15,15,15,.75)

),

url("../images/dealer-bg.png");

background-size:cover;

background-position:center;

}

.dealer-section .container{

position:relative;

z-index:2;

}

.dealer-badge{

display:inline-block;

padding:10px 22px;

border-radius:40px;

background:rgba(200,155,60,.15);

border:1px solid rgba(200,155,60,.3);

color:#C89B3C;

margin-bottom:25px;

font-weight:600;

}

.dealer-section h2{

font-size:58px;

font-weight:800;

color:#fff;

margin-bottom:25px;

}

.dealer-section p{

font-size:18px;

line-height:1.9;

color:#d0d0d0;

margin-bottom:35px;

}

.dealer-features{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:20px;

margin-bottom:40px;

}

.dealer-features div{

color:#fff;

font-size:18px;

}

.dealer-features i{

color:#C89B3C;

margin-right:10px;

}

.dealer-buttons{

display:flex;

gap:20px;

flex-wrap:wrap;

}

.btn-gold{

padding:15px 35px;

background:#C89B3C;

color:#111;

border-radius:50px;

font-weight:700;

text-decoration:none;

transition:.3s;

}

.btn-gold:hover{

background:#fff;

color:#111;

}

.btn-outline-gold{

padding:15px 35px;

border:1px solid #C89B3C;

border-radius:50px;

color:#C89B3C;

text-decoration:none;

font-weight:700;

transition:.3s;

}

.btn-outline-gold:hover{

background:#C89B3C;

color:#111;

}

.dealer-image{

border-radius:25px;

overflow:hidden;

box-shadow:0 30px 60px rgba(0,0,0,.45);

}

.dealer-image img{

width:100%;

display:block;

transition:.6s;

}

.dealer-image:hover img{

transform:scale(1.06);

}

@media(max-width:991px){

.dealer-section{

text-align:center;

}

.dealer-section h2{

font-size:40px;

}

.dealer-features{

grid-template-columns:1fr;

}

.dealer-buttons{

justify-content:center;

margin-bottom:50px;

}

}

/*=========================================
            PREMIUM FOOTER
=========================================*/

.footer-section{

background:#090909;

padding:100px 0 30px;

border-top:1px solid rgba(255,255,255,.06);

}

.footer-logo{

width:85px;

margin-bottom:20px;

}

.footer-about h3{

color:#fff;

font-size:28px;

margin-bottom:20px;

font-weight:700;

}

.footer-about p{

color:#bdbdbd;

line-height:1.9;

}

.footer-section h4{

color:#fff;

margin-bottom:28px;

font-size:22px;

position:relative;

padding-bottom:15px;

}

.footer-section h4::after{

content:"";

position:absolute;

left:0;

bottom:0;

width:45px;

height:3px;

background:#C89B3C;

}

.footer-section ul{

padding:0;

margin:0;

list-style:none;

}

.footer-section ul li{

margin-bottom:15px;

color:#bdbdbd;

}

.footer-section ul li a{

color:#bdbdbd;

text-decoration:none;

transition:.3s;

}

.footer-section ul li a:hover{

color:#C89B3C;

padding-left:6px;

}

.footer-social{

display:flex;

gap:15px;

margin-top:30px;

}

.footer-social a{

width:48px;

height:48px;

border-radius:50%;

background:#171717;

display:flex;

align-items:center;

justify-content:center;

color:#C89B3C;

font-size:18px;

transition:.35s;

text-decoration:none;

}

.footer-social a:hover{

background:#C89B3C;

color:#111;

transform:translateY(-6px);

}

.footer-contact p{

color:#bdbdbd;

margin-bottom:18px;

}

.footer-contact i{

width:30px;

color:#C89B3C;

}

.footer-section hr{

margin:60px 0 25px;

border-color:rgba(255,255,255,.08);

}

.footer-bottom{

display:flex;

justify-content:space-between;

align-items:center;

color:#8d8d8d;

font-size:15px;

flex-wrap:wrap;

gap:15px;

}

.footer-bottom i{

color:#C89B3C;

margin:0 5px;

}
/*=========================================
        PRODUCTS HERO
=========================================*/

.products-hero{

position:relative;

height:72vh;

display:flex;

align-items:center;

background:url("../images/product-hero.png");

background-size:cover;

background-position:center;

overflow:hidden;

}

.hero-dark{

position:absolute;

inset:0;

background:

linear-gradient(

90deg,

rgba(10,10,10,.92),

rgba(10,10,10,.45)

);

}

.products-hero .container{

position:relative;

z-index:5;

}

.products-hero-content{

max-width:650px;

}

.hero-tag{

display:inline-block;

padding:10px 22px;

border-radius:40px;

background:rgba(200,155,60,.18);

border:1px solid rgba(200,155,60,.35);

color:#C89B3C;

font-weight:600;

margin-bottom:25px;

}

.products-hero h1{

font-size:72px;

font-weight:800;

line-height:1.05;

color:#fff;

margin-bottom:30px;

}

.products-hero p{

font-size:20px;

color:#d6d6d6;

line-height:1.9;

margin-bottom:40px;

}

@media(max-width:992px){

.products-hero{

height:60vh;

}

.products-hero h1{

font-size:46px;

}

.products-hero p{

font-size:17px;

}

}

/*=========================================
        PRODUCTS FILTER
=========================================*/

.products-filter-section{

margin-top:-70px;

position:relative;

z-index:20;

}

.filter-wrapper{

background:rgba(20,20,20,.92);

backdrop-filter:blur(25px);

border:1px solid rgba(255,255,255,.06);

padding:35px;

border-radius:25px;

box-shadow:0 30px 60px rgba(0,0,0,.45);

}

.filter-label{

display:block;

margin-bottom:10px;

color:#C89B3C;

font-weight:600;

}

.luxury-input,

.luxury-select{

height:58px;

background:#111;

border:1px solid rgba(255,255,255,.08);

color:#fff;

border-radius:14px;

}

.luxury-input:focus,

.luxury-select:focus{

border-color:#C89B3C;

box-shadow:none;

background:#111;

color:#fff;

}

.results-header{

padding:70px 0 20px;

}

.results-card{

display:flex;

justify-content:space-between;

align-items:center;

flex-wrap:wrap;

gap:20px;

padding:30px;

background:#171717;

border-radius:22px;

border:1px solid rgba(255,255,255,.06);

}

.results-card h3{

color:#fff;

font-size:32px;

margin-bottom:6px;

}

.results-card p{

margin:0;

color:#999;

}

.active-filters{

display:flex;

gap:12px;

flex-wrap:wrap;

align-items:center;

}

.active-filters span{

padding:10px 18px;

background:#111;

border-radius:50px;

color:#ddd;

border:1px solid rgba(200,155,60,.25);

}

.clear-filter{

padding:10px 20px;

background:#C89B3C;

color:#111;

font-weight:600;

border-radius:50px;

text-decoration:none;

transition:.3s;

}

.clear-filter:hover{

background:#fff;

color:#111;

}

/*=========================================
        LUXURY PRODUCT CARD V2
=========================================*/

.luxury-product-card{

position:relative;

background:#171717;

border-radius:24px;

overflow:hidden;

border:1px solid rgba(255,255,255,.06);

transition:.45s;

height:100%;

}

.luxury-product-card:hover{

transform:translateY(-12px);

border-color:#C89B3C;

box-shadow:0 35px 70px rgba(0,0,0,.45);

}

.product-image{

height:300px;

overflow:hidden;

background:#111;

}

.product-image img{

width:100%;

height:100%;

object-fit:cover;

transition:.6s;

}

.luxury-product-card:hover img{

transform:scale(1.08);

}

.premium-badge{

position:absolute;

top:18px;

left:18px;

z-index:5;

background:linear-gradient(135deg,#C89B3C,#9F7428);

padding:8px 18px;

border-radius:50px;

font-size:13px;

font-weight:700;

color:#111;

}

.quick-view-btn{

position:absolute;

top:18px;

right:18px;

width:46px;

height:46px;

background:rgba(17,17,17,.92);

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

color:#fff;

text-decoration:none;

transition:.35s;

z-index:5;

}

.quick-view-btn:hover{

background:#C89B3C;

color:#111;

}

.product-content{

padding:28px;

}

.product-brand{

display:inline-block;

font-size:13px;

letter-spacing:2px;

color:#C89B3C;

text-transform:uppercase;

margin-bottom:10px;

}

.product-title{

color:#fff;

font-size:24px;

font-weight:700;

margin-bottom:14px;

min-height:60px;

}

.product-rating{

color:#ffc107;

margin-bottom:22px;

}

.product-rating span{

color:#aaa;

margin-left:6px;

}

.product-info{

display:flex;

justify-content:space-between;

margin-bottom:25px;

padding-bottom:20px;

border-bottom:1px solid rgba(255,255,255,.06);

}

.product-info small{

display:block;

color:#888;

margin-bottom:6px;

}

.product-info strong{

color:#fff;

font-size:15px;

}

.price-box{

display:flex;

justify-content:space-between;

align-items:center;

margin-bottom:30px;

}

.current-price{

font-size:30px;

font-weight:800;

color:#fff;

}

.old-price{

color:#888;

text-decoration:line-through;

}

.save-tag{

padding:8px 16px;

background:rgba(200,155,60,.15);

color:#C89B3C;

border-radius:40px;

font-size:13px;

font-weight:700;

}

.product-buttons{

display:grid;

gap:12px;

}

.product-buttons .btn-view{

background:#C89B3C;

color:#111;

padding:15px;

border-radius:14px;

text-align:center;

font-weight:700;

text-decoration:none;

transition:.35s;

}

.product-buttons .btn-view:hover{

background:#fff;

}

.product-buttons .btn-inquiry{

border:1px solid #C89B3C;

color:#C89B3C;

padding:15px;

border-radius:14px;

text-align:center;

font-weight:700;

text-decoration:none;

transition:.35s;

}

.product-buttons .btn-inquiry:hover{

background:#C89B3C;

color:#111;

}

/*=========================================
        EMPTY STATE
=========================================*/

.empty-products{

padding:80px 40px;

text-align:center;

background:#171717;

border-radius:24px;

border:1px solid rgba(255,255,255,.06);

}

.empty-products img{

width:180px;

opacity:.8;

margin-bottom:30px;

}

.empty-products h2{

color:#fff;

font-size:36px;

margin-bottom:15px;

}

.empty-products p{

color:#888;

margin-bottom:35px;

}

/*=========================================
        DEALER CTA
=========================================*/

.dealer-cta-section{

padding:100px 0;

}

.dealer-box{

background:

linear-gradient(rgba(10,10,10,.78),rgba(10,10,10,.78)),

url('../images/dealer-banner.jpg');

background-size:cover;

background-position:center;

padding:70px;

border-radius:28px;

border:1px solid rgba(200,155,60,.2);

position:relative;

overflow:hidden;

}

.dealer-box span{

display:inline-block;

color:#C89B3C;

letter-spacing:3px;

text-transform:uppercase;

margin-bottom:12px;

}

.dealer-box h2{

color:#fff;

font-size:48px;

margin-bottom:20px;

font-weight:700;

max-width:700px;

}

.dealer-box p{

color:#ccc;

font-size:18px;

line-height:1.8;

max-width:650px;

}

.btn-outline-gold{

display:inline-flex;

align-items:center;

justify-content:center;

padding:15px 32px;

border:2px solid #C89B3C;

border-radius:50px;

color:#C89B3C;

text-decoration:none;

transition:.35s;

font-weight:600;

}

.btn-outline-gold:hover{

background:#C89B3C;

color:#111;

}

/*=========================================
        MOBILE
=========================================*/

@media(max-width:768px){

.dealer-box{

padding:40px 30px;

text-align:center;

}

.dealer-box h2{

font-size:34px;

}

.results-card{

padding:25px;

}

.product-title{

font-size:20px;

}

.product-image{

height:250px;

}

}
/*======================================
PRODUCT DETAILS HERO
======================================*/

.product-header{

padding-top:120px;

padding-bottom:25px;

background:#111;

border-bottom:1px solid rgba(255,255,255,.05);

}

.product-breadcrumb{

color:#888;

font-size:15px;

}

.product-breadcrumb a{

color:#C89B3C;

text-decoration:none;

}

.product-breadcrumb span{

margin:0 10px;

color:#555;

}

/*======================================
DETAIL PAGE
======================================*/

.product-detail-section{

padding:80px 0;

}

.product-gallery{

position:sticky;

top:120px;

}

.gallery-card{

background:#171717;

padding:30px;

border-radius:30px;

overflow:hidden;

border:1px solid rgba(255,255,255,.06);

}

.main-product-image{

width:100%;

border-radius:22px;

transition:.5s;

}

.gallery-card:hover .main-product-image{

transform:scale(1.05);

}

.product-summary-card{

background:#171717;

padding:45px;

border-radius:30px;

border:1px solid rgba(255,255,255,.06);

position:sticky;

top:120px;

}

.product-category{

display:inline-block;

padding:8px 20px;

border-radius:50px;

background:rgba(200,155,60,.12);

color:#C89B3C;

font-size:13px;

letter-spacing:2px;

text-transform:uppercase;

}

.product-heading{

font-size:46px;

font-weight:700;

margin:20px 0;

color:#fff;

line-height:1.2;

}

.product-meta-row{

display:flex;

justify-content:space-between;

padding:25px 0;

border-top:1px solid rgba(255,255,255,.06);

border-bottom:1px solid rgba(255,255,255,.06);

margin-bottom:25px;

}

.product-meta-row small{

display:block;

color:#777;

margin-bottom:8px;

}

.product-meta-row strong{

color:#fff;

font-size:16px;

}

.stock-badge{

display:inline-flex;

align-items:center;

gap:10px;

background:#18351f;

padding:12px 22px;

border-radius:50px;

color:#7DFFAE;

font-weight:600;

margin-bottom:30px;

}

/*=========================================
SECTION HEADINGS
=========================================*/

.section-heading{

margin-bottom:40px;

}

.section-heading span{

color:#C89B3C;

letter-spacing:3px;

text-transform:uppercase;

font-size:13px;

}

.section-heading h2{

color:#fff;

font-size:42px;

margin-top:10px;

}

/*=========================================
PRODUCT PRICE BOX
=========================================*/

.luxury-price-box{

display:flex;
justify-content:space-between;
align-items:center;

margin:35px 0;

padding:28px 30px;

background:linear-gradient(135deg,#171717,#111);

border:1px solid rgba(200,155,60,.18);

border-radius:22px;

box-shadow:0 15px 35px rgba(0,0,0,.35);

}

.current-price{

font-size:42px;

font-weight:700;

color:#C89B3C;

line-height:1;

}

.old-price{

margin-top:10px;

font-size:18px;

color:#777;

text-decoration:line-through;

}

.save-badge{

padding:10px 18px;

background:rgba(200,155,60,.12);

border:1px solid rgba(200,155,60,.25);

border-radius:50px;

color:#C89B3C;

font-weight:600;

font-size:14px;

}


/*=========================================
PRODUCT FORM
=========================================*/

.product-cart-form{

margin-top:35px;

}


/*=========================================
QUANTITY LABEL
=========================================*/

.qty-label{

display:block;

margin-bottom:15px;

font-size:15px;

font-weight:600;

color:#ddd;

}


/*=========================================
LUXURY QUANTITY
=========================================*/

.luxury-qty{

display:flex;

align-items:center;

justify-content:flex-start;

gap:15px;

margin-bottom:35px;

}

.qty-btn{

width:55px;

height:55px;

border:none;

border-radius:50%;

background:#202020;

color:#fff;

font-size:18px;

transition:.35s;

cursor:pointer;

}

.qty-btn:hover{

background:#C89B3C;

color:#111;

transform:scale(1.08);

}

.qty-input{

width:90px;

height:55px;

border-radius:14px;

border:1px solid rgba(255,255,255,.08);

background:#171717;

text-align:center;

font-size:18px;

font-weight:600;

color:#fff;

outline:none;

}

.qty-input:focus{

border-color:#C89B3C;

box-shadow:0 0 15px rgba(200,155,60,.25);

}


/*=========================================
ADD TO CART BUTTON
=========================================*/

.btn-gold{

display:flex;

justify-content:center;

align-items:center;

gap:10px;

width:100%;

height:60px;

border:none;

border-radius:60px;

background:linear-gradient(135deg,#C89B3C,#9F7428);

color:#111;

font-size:17px;

font-weight:700;

text-decoration:none;

transition:.35s;

box-shadow:0 10px 30px rgba(200,155,60,.28);

}

.btn-gold:hover{

transform:translateY(-3px);

box-shadow:0 20px 45px rgba(200,155,60,.45);

color:#111;

}


/*=========================================
WHATSAPP BUTTON
=========================================*/

.btn-dark-outline{

display:flex;

justify-content:center;

align-items:center;

gap:10px;

width:100%;

height:60px;

border-radius:60px;

border:2px solid #333;

background:transparent;

color:#fff;

font-weight:600;

text-decoration:none;

transition:.35s;

}

.btn-dark-outline:hover{

background:#25D366;

border-color:#25D366;

color:#fff;

}


/*=========================================
TRUST FEATURES
=========================================*/

.trust-features{

margin-top:40px;

padding-top:35px;

border-top:1px solid rgba(255,255,255,.08);

display:grid;

grid-template-columns:repeat(2,1fr);

gap:18px;

}

.trust-item{

display:flex;

align-items:center;

gap:12px;

padding:14px;

background:#1B1B1B;

border-radius:14px;

border:1px solid rgba(255,255,255,.05);

transition:.3s;

}

.trust-item:hover{

border-color:#C89B3C;

transform:translateY(-3px);

}

.trust-item i{

font-size:18px;

color:#C89B3C;

}

.trust-item span{

color:#ddd;

font-size:14px;

line-height:1.5;

}


/*=========================================
RESPONSIVE
=========================================*/

@media(max-width:768px){

.luxury-price-box{

flex-direction:column;

align-items:flex-start;

gap:20px;

}

.current-price{

font-size:34px;

}

.luxury-qty{

justify-content:center;

}

.trust-features{

grid-template-columns:1fr;

}

.btn-gold,
.btn-dark-outline{

height:55px;

font-size:15px;

}

}

/*=========================================
DESCRIPTION
=========================================*/

.product-description-section{

padding:80px 0 40px;

}

.description-card{

background:#171717;

padding:40px;

border-radius:24px;

border:1px solid rgba(255,255,255,.06);

color:#bbb;

line-height:1.9;

font-size:17px;

}

/*=========================================
SPECIFICATIONS
=========================================*/

.specification-section{

padding:40px 0 80px;

}

.specification-card{

background:#171717;

padding:35px;

border-radius:24px;

border:1px solid rgba(255,255,255,.06);

}

.specification-table{

margin:0;

color:#ddd;

}

.specification-table th{

width:220px;

color:#C89B3C;

font-weight:600;

background:transparent;

}

.specification-table td{

background:transparent;
color:#ffffff;

}

/*=========================================
WHY CHOOSE
=========================================*/

.why-product-section{

padding:80px 0;

}

.why-card{

background:#171717;

padding:35px;

border-radius:24px;

text-align:center;

height:100%;

transition:.35s;

border:1px solid rgba(255,255,255,.06);

}

.why-card:hover{

transform:translateY(-8px);

border-color:#C89B3C;

}

.why-card i{

font-size:42px;

color:#C89B3C;

margin-bottom:20px;

}

.why-card h4{

color:#fff;

margin-bottom:15px;

}

.why-card p{

color:#999;

}

/*=========================================
DELIVERY
=========================================*/

.delivery-section{

padding-bottom:90px;

}

.delivery-card{

background:#111;

padding:50px;

border-radius:26px;

border:1px solid rgba(200,155,60,.15);

}

.delivery-card h3{

color:#fff;

margin-bottom:15px;

}

.delivery-card i{

color:#C89B3C;

margin-right:10px;

}

.delivery-card p{

color:#999;

line-height:1.8;

}

/*=========================
RELATED PRODUCTS
==========================*/

.related-products-section{

padding:100px 0;
background:#080808;

}

.related-products-section .section-heading span{

letter-spacing:4px;
font-size:12px;
color:#c89b3c;

}

.related-products-section h2{

font-size:46px;
font-weight:700;
color:#fff;
margin:12px 0;

}

.related-products-section p{

color:#aaa;

}

/* Card */

.related-card{

background:#111;
border:1px solid rgba(255,255,255,.08);
border-radius:22px;
overflow:hidden;
transition:.45s;
height:100%;
position:relative;

}

.related-card:hover{

transform:translateY(-12px);
border-color:#c89b3c;
box-shadow:0 30px 60px rgba(0,0,0,.45);

}

/* Image */

.related-image{

height:270px;
background:#161616;
overflow:hidden;

}

.related-image img{

width:100%;
height:100%;
object-fit:contain;
transition:.6s;

}

.related-card:hover img{

transform:scale(1.08);

}

/* Content */

.related-content{

padding:28px;

}

.related-category{

display:inline-block;
padding:6px 14px;
background:#c89b3c;
color:#000;
font-size:12px;
border-radius:50px;
font-weight:600;
margin-bottom:18px;

}

.related-content h4{

color:#fff;
font-size:22px;
margin-bottom:12px;
min-height:58px;

}

.related-brand{

color:#999;
margin-bottom:18px;

}

.related-price{

font-size:28px;
font-weight:700;
color:#d9b25f;
margin-bottom:25px;

}

.related-btn{

display:block;
text-align:center;
padding:15px;
border-radius:12px;
background:linear-gradient(135deg,#d7b15a,#8e6726);
color:#111;
font-weight:700;
text-decoration:none;
transition:.35s;

}

.related-btn:hover{

background:#fff;
color:#000;

}

/* Empty */

.empty-related{

padding:70px;
border:1px solid rgba(255,255,255,.08);
background:#121212;
border-radius:20px;
color:#888;
text-align:center;

}

/*=========================
CART PAGE
==========================*/

.cart-items{

display:flex;
flex-direction:column;
gap:35px;

}

.cart-card{

background:#111;
border:1px solid rgba(255,255,255,.08);
border-radius:24px;
padding:30px;
transition:.4s;

}

.cart-card:hover{

border-color:#c89b3c;
transform:translateY(-5px);

}

.cart-image{

height:170px;
background:#181818;
border-radius:18px;
display:flex;
justify-content:center;
align-items:center;

}

.cart-image img{

width:100%;
height:100%;
object-fit:contain;

}

.cart-category{

display:inline-block;
padding:6px 16px;
background:#c89b3c;
color:#000;
border-radius:40px;
font-size:12px;
font-weight:600;
margin-bottom:15px;

}

.cart-card h4{

color:#fff;
margin-bottom:15px;

}

.cart-card p{

color:#999;
margin-bottom:8px;

}

.cart-label{

font-size:13px;
color:#777;
margin-bottom:8px;

}

.cart-price{

font-size:24px;
font-weight:700;
color:#fff;

}

.cart-total{

font-size:28px;
font-weight:700;
color:#d4af37;
margin-bottom:15px;

}

.cart-qty{

width:100%;
height:55px;
background:#181818;
border:1px solid rgba(255,255,255,.08);
border-radius:12px;
text-align:center;
color:#fff;
font-size:18px;

}

.remove-item{

color:#ff6565;
text-decoration:none;
font-size:14px;

}

.remove-item:hover{

color:#fff;

}

/*==========================
CART HERO
==========================*/

.cart-hero{

height:45vh;
background:url('../images/cart-banner.png') center/cover;
position:relative;
display:flex;
align-items:center;

}

.cart-hero::before{

content:"";
position:absolute;
inset:0;
background:rgba(0,0,0,.65);

}

.page-hero-content{

position:relative;
z-index:2;
text-align:center;

}

.hero-subtitle{

letter-spacing:5px;
color:#c89b3c;
font-size:13px;

}

.page-hero-content h1{

font-size:58px;
font-weight:700;
color:#fff;
margin:18px 0;

}

.page-hero-content p{

color:#d6d6d6;
font-size:18px;
max-width:700px;
margin:auto;

}

/*==========================
EMPTY CART
==========================*/

.empty-cart-card{

background:#101010;
border:1px solid rgba(255,255,255,.08);
border-radius:28px;
padding:70px;
text-align:center;
transition:.4s;

}

.empty-cart-card:hover{

border-color:#c89b3c;

}

.empty-icon{

width:120px;
height:120px;
margin:auto;
margin-bottom:30px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:50px;
background:linear-gradient(135deg,#d4af37,#8f6828);
color:#000;

}

.empty-cart-card h2{

color:#fff;
margin-bottom:20px;

}

.empty-cart-card p{

color:#9b9b9b;
font-size:17px;
max-width:600px;
margin:auto;
margin-bottom:35px;

}

.empty-features{

display:flex;
justify-content:center;
gap:35px;
flex-wrap:wrap;
margin-bottom:40px;

}

.empty-features div{

color:#ddd;

}

.empty-features i{

color:#d4af37;
margin-right:8px;

}
/*==========================
SUMMARY
==========================*/

.luxury-summary{

background:#101010;
border:1px solid rgba(255,255,255,.08);
padding:40px;
border-radius:24px;
position:sticky;
top:120px;

}

.luxury-summary h3{

color:#fff;
margin-bottom:35px;

}

.summary-row{

display:flex;
justify-content:space-between;
margin-bottom:22px;
font-size:17px;
color:#ddd;

}

.gold-price{

font-size:32px;
color:#d4af37;

}

.summary-benefits{

margin-top:25px;

}

.summary-benefits div{

padding:12px 0;
color:#aaa;

}

.summary-benefits i{

color:#d4af37;
width:28px;

}

.luxury-btn{

display:block;
text-align:center;
padding:16px;
border-radius:14px;
background:linear-gradient(135deg,#d4af37,#8f6828);
color:#111;
font-weight:700;
text-decoration:none;

}

.luxury-btn:hover{

color:#000;

}

.luxury-outline-btn{

background:transparent;
border:1px solid #d4af37;
color:#d4af37;
padding:16px;
border-radius:14px;
font-weight:600;

}

.luxury-outline-btn:hover{

background:#d4af37;
color:#111;

}

/*=========================
CHECKOUT
=========================*/

.checkout-hero{

background:
linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.75)),
url("../images/checkout-banner.png");

background-size:cover;
background-position:center;
min-height:55vh;

}
.checkout-section{

background:#090909;
position:relative;
z-index:20;
margin-top:-40px;

}
.checkout-section .container{

position:relative;
z-index:30;

}
.checkout-section form{

position:relative;
z-index:50;

}
.checkout-card{

position:relative;
z-index:100;

background:#111;
border:1px solid rgba(255,255,255,.08);
border-radius:24px;
padding:45px;

}

.checkout-title{
    color:#fff;
    font-size:34px;
    margin-bottom:10px;
}

.checkout-subtitle{
    color:#999;
    margin-bottom:35px;
}

.luxury-label{
    display:block;
    color:#d4af37;
    font-weight:600;
    margin-bottom:10px;
    font-size:15px;
}

.luxury-input{

width:100%;
display:block;

position:relative;
z-index:999;

height:58px;

padding:0 18px;

background:#181818;

border:1px solid #2f2f2f;

border-radius:14px;

color:#fff;

outline:none;

pointer-events:auto;

}

textarea.luxury-input{

min-height:140px;
padding:16px;

}

.luxury-input:focus{

background:#181818;
color:#fff;

border-color:#d4af37;

box-shadow:0 0 0 3px rgba(212,175,55,.15);

}
.luxury-input::placeholder{
    color:#777;
}

.luxury-input:focus{

    background:#181818;

    color:#fff;

    border-color:#d4af37;

    box-shadow:0 0 0 3px rgba(212,175,55,.12);

}
.page-hero{

position:relative;
overflow:hidden;

}

.page-hero .hero-overlay{

position:absolute;
top:0;
left:0;
width:100%;
height:100%;

background:rgba(0,0,0,.45);

z-index:1;

pointer-events:none;

}

.page-hero-content{

position:relative;
z-index:5;

}

/* SUMMARY */

.checkout-summary{

    background:#111;

    border:1px solid rgba(255,255,255,.08);

    border-radius:24px;

    padding:35px;

    position:sticky;

    top:120px;

}

.checkout-summary h3{

    color:#fff;

    margin-bottom:5px;

}

.checkout-summary>p{

    color:#888;

    margin-bottom:30px;

}

.checkout-summary hr{

    border-color:#2b2b2b;

}

.checkout-summary strong{

    color:#fff;

}

.checkout-summary h4{

    color:#d4af37 !important;

}

.checkout-summary img{

    border-radius:12px;

}
.checkout-summary{

background:#111;

border:1px solid rgba(255,255,255,.08);

border-radius:24px;

padding:35px;

position:sticky;

top:120px;

}

.summary-small-title{

color:#d4af37;

letter-spacing:3px;

font-size:12px;

text-transform:uppercase;

}

.summary-title{

color:#fff;

font-size:30px;

margin:10px 0;

}

.summary-desc{

color:#888;

margin-bottom:30px;

}
.summary-item{

display:flex;

gap:18px;

padding:20px 0;

border-bottom:1px solid rgba(255,255,255,.08);

}

.summary-image{

width:85px;

flex-shrink:0;

}

.summary-image img{

width:85px;

height:85px;

object-fit:cover;

border-radius:14px;

}

.summary-content{

flex:1;

}

.summary-content h5{

color:#fff;

font-size:17px;

margin-bottom:8px;

}

.summary-meta{

color:#999;

font-size:14px;

}

.summary-bottom{

display:flex;

justify-content:space-between;

margin-top:15px;

align-items:center;

}

.summary-bottom span{

color:#bfbfbf;

}

.summary-bottom strong{

color:#d4af37;

font-size:18px;

font-weight:700;

}
.summary-total{

margin-top:30px;

padding-top:25px;

border-top:1px solid rgba(255,255,255,.08);

}

.summary-row{

display:flex;

justify-content:space-between;

align-items:center;

margin-bottom:16px;

color:#ddd;

}

.summary-row span{

color:#999;

}

.total-row{

margin-top:25px;

padding-top:20px;

border-top:1px solid rgba(255,255,255,.08);

}

.total-row h2{

margin:0;

font-size:34px;

color:#d4af37;

font-weight:700;

}
.luxury-submit-btn{

width:100%;

height:60px;

margin-top:30px;

border:none;

border-radius:14px;

background:linear-gradient(135deg,#d4af37,#f5d36d);

color:#111;

font-size:17px;

font-weight:700;

transition:.35s;

}

.luxury-submit-btn:hover{

transform:translateY(-3px);

box-shadow:0 15px 35px rgba(212,175,55,.35);

}
/*======================================
THANK YOU HERO
======================================*/

.thankyou-hero{

background:
linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.78)),
url("../images/thankyou-banner.png");

background-size:cover;
background-position:center;
min-height:55vh;

}


/*======================================
THANK YOU SECTION
======================================*/

.thankyou-section{

background:#090909;
padding:90px 0;

}


/*======================================
MAIN CARD
======================================*/

.thankyou-card{

background:#111;

border:1px solid rgba(255,255,255,.08);

border-radius:30px;

padding:70px 55px;

text-align:center;

box-shadow:0 20px 70px rgba(0,0,0,.45);

position:relative;

overflow:hidden;

}


/* Gold Glow */

.thankyou-card::before{

content:"";

position:absolute;

top:-150px;
right:-150px;

width:300px;
height:300px;

background:radial-gradient(circle,
rgba(212,175,55,.18),
transparent 70%);

pointer-events:none;

}


/*======================================
SUCCESS ICON
======================================*/

.success-circle{

width:120px;
height:120px;

margin:auto;

border-radius:50%;

display:flex;
align-items:center;
justify-content:center;

background:linear-gradient(135deg,#d4af37,#f3d56c);

box-shadow:
0 10px 35px rgba(212,175,55,.35);

margin-bottom:35px;

}

.success-circle i{

font-size:52px;

color:#111;

}


/*======================================
TITLE
======================================*/

.thankyou-card h2{

font-size:42px;

font-weight:700;

color:#fff;

margin-bottom:15px;

}


/*======================================
TEXT
======================================*/

.thankyou-text{

font-size:18px;

line-height:32px;

color:#b8b8b8;

max-width:720px;

margin:auto;

margin-bottom:45px;

}


/*======================================
INQUIRY NUMBER
======================================*/

.inquiry-number-box{

background:#181818;

border:1px solid rgba(212,175,55,.25);

border-radius:22px;

padding:35px;

max-width:500px;

margin:auto;

}

.inquiry-number-box span{

display:block;

font-size:13px;

letter-spacing:3px;

text-transform:uppercase;

color:#d4af37;

margin-bottom:10px;

}

.inquiry-number-box h1{

font-size:42px;

font-weight:700;

letter-spacing:3px;

color:#fff;

margin:0;

}


/*======================================
RESPONSIVE
======================================*/

@media(max-width:768px){

.thankyou-card{

padding:45px 25px;

}

.success-circle{

width:90px;
height:90px;

}

.success-circle i{

font-size:40px;

}

.thankyou-card h2{

font-size:30px;

}

.thankyou-text{

font-size:16px;
line-height:28px;

}

.inquiry-number-box h1{

font-size:28px;

}

}
/*==============================
INFO CARDS
==============================*/

.info-card{

background:#151515;

border:1px solid rgba(255,255,255,.08);

border-radius:22px;

padding:35px;

height:100%;

}

.info-card h3{

color:#fff;

font-size:24px;

margin-bottom:30px;

}

.info-card h3 i{

color:#d4af37;

margin-right:10px;

}

.info-row{

display:flex;

justify-content:space-between;

padding:16px 0;

border-bottom:1px solid rgba(255,255,255,.07);

}

.info-row:last-child{

border:none;

}

.info-row span{

color:#999;

}

.info-row strong{

color:#fff;

font-weight:600;

}

.status-badge{

background:#d4af37;

color:#111!important;

padding:6px 14px;

border-radius:50px;

font-size:13px;

}

.price{

color:#d4af37!important;

font-size:22px;

}
.section-heading{

color:#fff;

font-size:34px;

margin-bottom:25px;

}

.luxury-table{

overflow:hidden;

border-radius:20px;

border:1px solid rgba(255,255,255,.08);

}

.luxury-table table{

width:100%;

border-collapse:collapse;

background:#151515;

}

.luxury-table th{

background:#1d1d1d;

color:#d4af37;

padding:18px;

}

.luxury-table td{

padding:18px;

color:#fff;

border-top:1px solid rgba(255,255,255,.05);

}

.gold-text{

color:#d4af37;

font-weight:700;

}
.timeline{

display:flex;

justify-content:space-between;

margin:70px 0;

gap:25px;

}

.timeline-step{

flex:1;

text-align:center;

position:relative;

}

.timeline-step::after{

content:"";

position:absolute;

top:26px;

left:55%;

width:90%;

height:2px;

background:#333;

}

.timeline-step:last-child::after{

display:none;

}

.circle{

width:52px;

height:52px;

margin:auto;

border-radius:50%;

background:#222;

border:2px solid #444;

display:flex;

align-items:center;

justify-content:center;

color:#fff;

font-weight:700;

}

.timeline-step.active .circle{

background:#d4af37;

color:#111;

border:none;

}

.timeline-step p{

margin-top:16px;

color:#ccc;

}
.thankyou-buttons{

display:flex;

justify-content:center;

gap:20px;

margin-top:60px;

flex-wrap:wrap;

}

.gold-btn,
.dark-btn,
.outline-btn{

padding:16px 34px;

border-radius:14px;

font-weight:600;

text-decoration:none;

transition:.35s;

}

.gold-btn{

background:#d4af37;

color:#111;

}

.gold-btn:hover{

transform:translateY(-4px);

box-shadow:0 15px 35px rgba(212,175,55,.35);

}

.dark-btn{

background:#1a1a1a;

color:#fff;

border:1px solid #333;

}

.dark-btn:hover{

background:#222;

color:#fff;

}

.outline-btn{

border:1px solid #d4af37;

color:#d4af37;

}

.outline-btn:hover{

background:#d4af37;

color:#111;

}
.contact-hero{

background:
linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.75)),
url("../images/contact-banner.png");

background-size:cover;
background-position:center;
min-height:55vh;

}

.contact-section{

background:#090909;
padding:90px 0;

}

.contact-card,
.contact-info-card{

background:#111;
border:1px solid rgba(255,255,255,.08);
border-radius:24px;
padding:45px;
height:100%;

}

.contact-title{

font-size:34px;
color:#fff;

}

.contact-subtitle{

color:#999;
margin-bottom:35px;

}

.contact-item{

display:flex;
gap:20px;
margin-bottom:35px;

}

.contact-item i{

width:58px;
height:58px;
border-radius:50%;
background:#1b1b1b;
color:#d4af37;

display:flex;
align-items:center;
justify-content:center;

font-size:22px;

flex-shrink:0;

}

.contact-item h5{

color:#fff;
margin-bottom:6px;

}

.contact-item p{

color:#aaa;
margin:0;

}

.map-section iframe{

width:100%;
height:500px;
border:0;
display:block;

}








/* 
:root{

--gold:#C89B3C;
--gold-dark:#9F7428;
--gold-light:#E5C57A;

--black:#0F0F0F;
--dark:#171717;
--card:#1D1D1D;

}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    background:var(--black);
    color:white;
    overflow-x:hidden;
}

::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-track{
    background:#020817;
}

::-webkit-scrollbar-thumb{
    background:var(--gold);
    border-radius:20px;
}


.cursor-glow{
    width:250px;
    height:250px;
    position:fixed;
    background:radial-gradient(circle,#C89B3C30 0%,transparent 70%);
    border-radius:50%;
    pointer-events:none;
    transform:translate(-50%,-50%);
    z-index:-1;
}

.luxury-navbar{
    background:rgba(15,15,15,.88);
    backdrop-filter:blur(14px);
    border-bottom:1px solid rgba(255,255,255,0.08);
    padding:15px 0;
    transition:0.4s;
    z-index:999;
}

.navbar-scrolled{
    background:#111;
    box-shadow:0 10px 40px rgba(0,0,0,0.5);
    padding:10px 0;
}

.luxury-logo{

color:var(--gold);

font-size:28px;

font-weight:700;

}

.site-logo{
    height:82px;
    width:auto;
    object-fit:contain;
    border-radius:12px;
}

.nav-link{
    color:white !important;
    margin-left:20px;
    font-size:16px;
    font-weight:500;
    position:relative;
    transition:0.4s;
}

.nav-link:hover{
    color:var(--gold);
}

.nav-link::after{
    content:'';
    position:absolute;
    width:0%;
    height:2px;
    background:var(--gold);
    left:0;
    bottom:-5px;
    transition:0.4s;
}

.nav-link:hover::after{
    width:100%;
}

.nav-btn{
    background:linear-gradient(
135deg,
#C89B3C,
#9F7428
);
    color:white;
    padding:12px 30px;
    border-radius:50px;
    text-decoration:none;
    transition:0.4s;
    font-weight:500;
    display:inline-block;
    box-shadow:0 0 20px rgba(13,110,253,0.4);
}

.nav-btn:hover{
    background:#fff;
color:#9F7428;
    transform:translateY(-4px);
}


.hero{
    position:relative;
    min-height:100vh;
    width:100%;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;

    background:

linear-gradient(

135deg,

#0F0F0F,

#1A1A1A,

#0B0B0B

);

    padding-top:120px;
}


.hero-overlay{
    position:absolute;
    inset:0;

    background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);

    background-size:55px 55px;

    z-index:1;
}

.hero-main-content{
    position:relative;
    z-index:999 !important;

    width:100%;
    max-width:950px;

    text-align:center;

    padding:20px;
}


.hero-main-content h1{
    font-size:82px !important;
    font-weight:800;
    line-height:1.1;
    color:#ffffff !important;

    margin-bottom:25px;

    display:block !important;
    visibility:visible !important;
    opacity:1 !important;

text-shadow:
0 0 30px rgba(200,155,60,.25);
}

.hero-main-content p{
    font-size:21px !important;
    color:#d8d8d8 !important;

    line-height:1.8;

    max-width:820px;

    margin:auto;

    display:block !important;
    visibility:visible !important;
    opacity:1 !important;
}


.hero-buttons{
    margin-top:40px;
    position:relative;
    z-index:999;
}

.floating-icon{
    position:absolute;
    color:rgba(200,155,60,.12);
    z-index:2;

    animation:float 4s ease-in-out infinite;
}

.icon1{
    top:16%;
    left:8%;
    font-size:70px;
}

.icon2{
    top:65%;
    left:18%;
    font-size:85px;
}

.icon3{
    top:40%;
    right:10%;
    font-size:80px;
}


@media(max-width:768px){

    .hero-main-content h1{
        font-size:42px !important;
    }

    .hero-main-content p{
        font-size:16px !important;
    }

}
.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-size:48px;
    font-weight:700;
}


.category-card{
    background:#1A1A1A;
    border:1px solid rgba(255,255,255,0.08);
    backdrop-filter:blur(12px);
    border-radius:24px;
    padding:50px 30px;
    text-align:center;
    transition:0.4s;
    position:relative;
    overflow:hidden;
    height:100%;
}

.category-card::before{
    content:'';
    position:absolute;
    width:120px;
    height:120px;
    background:#0d6efd33;
    border-radius:50%;
    top:-40px;
    right:-40px;
    transition:0.5s;
}

.category-card:hover::before{
    transform:scale(1.8);
}

.category-card:hover{
    transform:translateY(-10px);
    border-color:#C89B3C;
    box-shadow:0 15px 40px rgba(200,155,60,.18);
}

.category-card i{
    font-size:60px;
    color:#C89B3C;
    margin-bottom:25px;
}

.category-card h4{
    font-size:28px;
    font-weight:600;
}


.glass-card{
    background:rgba(255,255,255,0.05);
    backdrop-filter:blur(14px);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:30px;
    padding:40px;
}


.stats-box{
    text-align:center;
    padding:30px 20px;
}

.stats-box h2{
    font-size:60px;
    font-weight:700;
    color:#0d6efd;
    margin-bottom:15px;
}

.stats-box p{
    color:#d0d0d0;
    font-size:18px;
}
.product-card{

background:#1A1A1A;

border-radius:22px;

overflow:hidden;

position:relative;

border:1px solid rgba(255,255,255,.08);

transition:.35s;

height:100%;

}

.product-card:hover{

transform:translateY(-10px);

box-shadow:0 20px 60px rgba(13,110,253,.25);

border-color:#C89B3C;

}


.product-image{

height:300px;

background:#fff;

display:flex;

align-items:center;

justify-content:center;

padding:20px;

overflow:hidden;

}

.product-image img{

max-width:100%;

max-height:100%;

object-fit:contain;

transition:.5s;

}

.product-card:hover .product-image img{

transform:scale(1.08);

}


.category-badge{

position:absolute;

top:15px;

left:15px;

background:#0d6efd;

padding:7px 16px;

border-radius:30px;

font-size:12px;

font-weight:600;

color:#fff;

z-index:5;

}

.quick-view{

position:absolute;

top:15px;

right:15px;

width:45px;

height:45px;

background:#ffffff;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

transition:.35s;

box-shadow:0 5px 20px rgba(0,0,0,.15);

z-index:5;

}

.quick-view a{

color:#0d6efd;

font-size:18px;

text-decoration:none;

}

.quick-view:hover{

background:#0d6efd;

transform:scale(1.08);

}

.quick-view:hover a{

color:#fff;

}

.product-content{

padding:22px;

}

.product-title{

font-size:20px;

font-weight:700;

line-height:1.5;

height:60px;

overflow:hidden;

color:#fff;

}


.rating{

color:#FFC107;

margin:12px 0;

font-size:15px;

}

.rating span{

color:#bbb;

margin-left:5px;

}


.product-meta{

display:flex;

justify-content:space-between;

margin-top:15px;

font-size:14px;

color:#ddd;

}

.product-meta p{

margin:0;

}

.product-meta i{

color:#0d6efd;

margin-right:6px;

}


.price-section{

display:flex;

justify-content:space-between;

align-items:center;

margin-top:25px;

}

.price{

font-size:30px;

font-weight:700;

color:#C89B3C;

}

.old-price{

text-decoration:line-through;

color:#888;

font-size:14px;

display:block;

}

.save-price{

color:#28a745;

font-size:14px;

font-weight:600;

}

.btn-view{

background:#0d6efd;

color:#fff;

padding:12px;

border-radius:10px;

font-weight:600;

}

.btn-view:hover{

background:#0b5ed7;

color:#fff;

}

.btn-inquiry{

background:#25D366;

color:#fff;

padding:12px;

border-radius:10px;

font-weight:600;

}

.btn-inquiry:hover{

background:#1ea952;

color:#fff;

}


.form-control{
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.08);
    color:white;
    padding:15px;
    border-radius:16px;
}

.form-control:focus{
    background:rgba(255,255,255,0.08);
    color:white;
    box-shadow:none;
    border-color:#0d6efd;
}


.luxury-footer{
   background:#090909;
    position:relative;
    overflow:hidden;
    padding-top:80px;
    border-top:1px solid rgba(255,255,255,0.08);
}

.footer-links a{
    display:block;
    color:#d0d0d0;
    text-decoration:none;
    margin-bottom:14px;
    transition:0.3s;
}

.footer-links a:hover{
    color:#C89B3C;
    transform:translateX(5px);
}

.social-icons a{
    width:45px;
    height:45px;
    border-radius:50%;
    background:rgba(255,255,255,0.08);
    display:inline-flex;
    align-items:center;
    justify-content:center;
    color:white;
    margin-right:10px;
    transition:0.4s;
    text-decoration:none;
}

.social-icons a:hover{
    background:#0d6efd;
    transform:translateY(-5px);
}


.whatsapp-btn{
    position:fixed;
    right:20px;
    bottom:20px;
    width:65px;
    height:65px;
    border-radius:50%;
    background:#25d366;
    display:flex;
    align-items:center;
    justify-content:center;
    color:white;
    font-size:30px;
    z-index:999;
    text-decoration:none;
    box-shadow:0 0 25px rgba(37,211,102,0.5);
}


@media(max-width:768px){

    .hero{
        padding-top:140px;
    }

    .hero-content h1{
        font-size:42px;
    }

    .hero-content p{
        font-size:16px;
    }

    .section-title h2{
        font-size:34px;
    }

    .luxury-logo{
        font-size:24px;
    }

    .icon1,
    .icon2,
    .icon3{
        font-size:45px;
    }

    .stats-box h2{
        font-size:42px;
    }

    .brand-item{

width:160px;

height:95px;

margin:0 10px;

}

.brand-item img{

max-width:100px;

}

}

.search-box{

margin-top:-30px;
margin-bottom:30px;

}

.search-group{

background:#111827;
border-radius:60px;
overflow:hidden;
box-shadow:0 10px 35px rgba(0,0,0,.25);

}

.search-input{

height:65px;
background:transparent;
border:none;
color:#fff;
padding-left:25px;
font-size:16px;

}

.search-input:focus{

background:transparent;
color:#fff;
box-shadow:none;

}

.search-input::placeholder{

color:#bdbdbd;

}

.search-btn{

padding:0 35px;
background:#0d6efd;
color:#fff;
border:none;
font-weight:600;

}

.search-btn:hover{

background:#005ce6;
color:#fff;

}

.category-filter{

display:flex;

gap:15px;

flex-wrap:wrap;

justify-content:center;

margin-bottom:30px;

}

.category-btn{

padding:12px 28px;

background:#141b2d;

border:1px solid rgba(255,255,255,.08);

color:#fff;

text-decoration:none;

border-radius:40px;

transition:.3s;

font-weight:500;

}

.category-btn:hover{

background:#0d6efd;

color:#fff;

}

.category-btn.active{

background:#0d6efd;

color:#fff;

}


.product-image-box{
    background:#fff;
    border-radius:20px;
    padding:25px;
    text-align:center;
    border:1px solid rgba(255,255,255,.08);
}

.main-product-image{
    width:100%;
    max-height:500px;
    object-fit:contain;
}

.detail-price{
    font-size:40px;
    font-weight:700;
    color:#0d6efd;
    margin-top:20px;
}

.qty-box{

display:flex;

align-items:center;

width:180px;

border-radius:12px;

overflow:hidden;

border:1px solid rgba(255,255,255,.15);

}

.qty-btn{

width:50px;

height:50px;

background:#0d6efd;

color:#fff;

border:none;

font-size:18px;

transition:.3s;

}

.qty-btn:hover{

background:#0b5ed7;

}

.qty-input{

width:80px;

height:50px;

text-align:center;

border:none;

background:#fff;

font-size:18px;

font-weight:600;

outline:none;

}
.table-dark{

border-radius:15px;

overflow:hidden;

}

.table-dark td{

vertical-align:middle;

}

.table-dark img{

border-radius:12px;

}

.table input{

text-align:center;

font-weight:600;

}

.success-icon{

font-size:90px;

color:#22c55e;

animation:pop .6s ease;

}

@keyframes pop{

0%{
transform:scale(.3);
opacity:0;
}

100%{
transform:scale(1);
opacity:1;
}

}

.timeline{

display:flex;

justify-content:space-between;

margin-top:40px;

gap:20px;

flex-wrap:wrap;

}

.timeline .step{

flex:1;

background:#111827;

padding:15px;

border-radius:10px;

text-align:center;

color:#aaa;

font-weight:600;

}

.timeline .active{

background:#16a34a;

color:#fff;

} 


.brands-section{

padding:90px 0;

background:#131313;

position:relative;

overflow:hidden;

}

.brands-section .section-title p{

color:#bcbcbc;

font-size:17px;

margin-top:10px;

}

.brand-slider{

overflow:hidden;

position:relative;

}

.brand-track{

display:flex;

align-items:center;

width:max-content;

animation:brandScroll 28s linear infinite;

}

.brand-slider:hover .brand-track{

animation-play-state:paused;

}

.brand-item{

width:220px;

height:120px;

margin:0 18px;

background:#1c1c1c;

border:1px solid rgba(255,255,255,.08);

border-radius:18px;

display:flex;

align-items:center;

justify-content:center;

transition:.4s;

}

.brand-item img{

max-width:130px;

max-height:60px;

filter:grayscale(100%);

opacity:.65;

transition:.4s;

}

.brand-item:hover{

border-color:#C89B3C;

transform:translateY(-8px);

box-shadow:0 15px 40px rgba(200,155,60,.15);

}

.brand-item:hover img{

filter:none;

opacity:1;

transform:scale(1.08);

}

@keyframes brandScroll{

0%{

transform:translateX(0);

}

100%{

transform:translateX(-50%);

}

} */