/* ========================================= */
/* GLOBAL */
/* ========================================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#f7f7f5;
    color:#111;
    overflow-x:hidden;
}

/* ========================================= */
/* TOP STRIP */
/* ========================================= */

.top-strip{

    width:100%;
    height:42px;

    background:#151515;

    color:white;

    display:flex;
    align-items:center;
    justify-content:center;

    letter-spacing:4px;
    font-size:11px;

    position:fixed;
    top:0;
    z-index:5000;
}
/* ========================================= */
/* TOP BAR */
/* ========================================= */

/* ===== PREMIUM GLASS TOP BAR ===== */

.top-bar{
    position:fixed;
    top:0;
    width:100%;
    height:52px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:rgba(10,10,10,0.72);

    backdrop-filter:blur(14px);
    -webkit-backdrop-filter:blur(14px);

    border-bottom:1px solid rgba(255,255,255,0.06);

    color:white;

    font-size:12px;
    letter-spacing:4px;
    font-weight:500;

    z-index:5000;

    transition:0.4s ease;
}

/* subtle gold glow */
.top-bar::before{
    content:"";

    position:absolute;

    width:300px;
    height:120px;

    background:radial-gradient(circle,
    rgba(184,150,60,0.18),
    transparent 70%);

    top:-40px;
    left:50%;

    transform:translateX(-50%);
}

/* hover */
.top-bar:hover{
    background:rgba(15,15,15,0.82);
}

/* ========================================= */
/* NAVBAR */
/* ========================================= */

header{

    position:fixed;

    top:50px;

    width:100%;

    height:100px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:0 8%;

    background:
    rgba(255,255,255,0.72);

    backdrop-filter:blur(16px);

    z-index:4000;

    border-bottom:
    1px solid rgba(0,0,0,0.04);
}

/* BRAND */

.brand{
    display:flex;
    align-items:center;
    gap:14px;
}

.brand img{
    height:100px;
    width:auto;
    object-fit:contain;
}

/* TEXT */
.text{
    display:flex;
    flex-direction:column;
    justify-content:center;
    line-height:1.1;
}

.text .main{
    font-size:36px;
    font-weight:600;
    letter-spacing:0.5px;
    color:#1d1d1d;
}

.text .sub{
    font-size:18px;
    color:#777;
    letter-spacing:0.3px;
}

.brand img{
    height:100px;
    width:auto;
}

.text{

    display:flex;

    flex-direction:column;
}

.text .main{

    font-size:36px;

    font-weight:600;
}

.text .sub{

    font-size:18px;

    color:#777;
}

/* NAV */

nav{

    display:flex;

    align-items:center;
}

nav a{

    margin-left:40px;

    text-decoration:none;

    color:#333;

    font-size:14px;

    position:relative;

    transition:0.3s;
}

nav a::after{

    content:"";

    position:absolute;

    left:0;
    bottom:-6px;

    width:0%;

    height:2px;

    background:#b8963c;

    transition:0.3s;
}

nav a:hover::after{
    width:100%;
}
/* ========================================= */
/* HERO */
/* ========================================= */

/*====================================================
                PRODUCTS HERO
====================================================*/

.products-hero{

    padding:180px 8% 90px;
    text-align:center;
    position:relative;

}

.products-hero::before{

    content:"";

    position:absolute;

    width:700px;
    height:700px;

    left:50%;
    top:-220px;

    transform:translateX(-50%);

    background:
    radial-gradient(circle,
    rgba(188,150,60,.12),
    transparent 70%);

    z-index:-1;

}

.hero-tag{

    color:#bc963d;

    font-size:13px;

    letter-spacing:7px;

    text-transform:uppercase;

}

.products-hero h1{

    font-size:76px;

    margin:25px 0;

    line-height:1.05;

    letter-spacing:-3px;

}

.products-hero h1 span{

    color:#bc963d;

}

.products-hero p{

    width:700px;

    max-width:100%;

    margin:auto;

    color:#777;

    font-size:20px;

    line-height:1.8;

}

/*====================================================
                    FILTERS
====================================================*/

.product-filter{

    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:18px;

    margin-bottom:80px;

}

.product-filter button{

    padding:18px 34px;

    border:none;

    border-radius:60px;

    background:white;

    color:#333;

    font-size:14px;

    letter-spacing:2px;

    cursor:pointer;

    transition:.35s;

    box-shadow:0 8px 25px rgba(0,0,0,.06);

}

.product-filter button:hover{

    transform:translateY(-5px);

    background:#bc963d;

    color:white;

}

.product-filter button.active{

    background:#111;

    color:white;

}

/*====================================================
                    GRID
====================================================*/

/* =========================================
   PRODUCT GRID
========================================= */

.product-grid{
    max-width:1500px;
    margin:80px auto;
    padding:0 40px;

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:38px;
}

/* =========================================
   PRODUCT CARD
========================================= */

.product-card{

    position:relative;

    background:#fff;

    border:1px solid #ece9e2;

    border-radius:16px;

    overflow:hidden;

    transition:.35s ease;

    cursor:pointer;

    box-shadow:0 5px 18px rgba(0,0,0,.04);

}

.product-card:hover{

    transform:translateY(-8px);

    border-color:#c79b3b;

    box-shadow:
    0 18px 45px rgba(0,0,0,.10);

}

/* Gold line */

.product-card::before{

    content:"";

    position:absolute;

    left:0;
    top:0;

    width:100%;
    height:2px;

    background:#c79b3b;

    transform:scaleX(0);

    transition:.35s;

}

.product-card:hover::before{

    transform:scaleX(1);

}

/* =========================================
   IMAGE
========================================= */
.product-image{

    position:relative;

    aspect-ratio:1/1;

    display:flex;

    justify-content:center;

    align-items:center;

    background:#faf8f5;

    overflow:hidden;

    padding:18px;

}

.product-image img{

    position:absolute;

    max-width:78%;

    max-height:78%;

    width:auto;

    height:auto;

    object-fit:contain;

    object-position:center;

    transition:.45s ease;

}
/* OFF */

.off{

    opacity:1;

}

/* ON */

.on{

    opacity:0;

}

/* Hover */

.product-card:hover .off{

    opacity:0;

    transform:scale(.96);

}

.product-card:hover .on{

    opacity:1;

    transform:scale(1.03);

}

/* =========================================
   CONTENT
========================================= */
.product-content{

    padding:22px;

}

.category{

    display:block;

    font-size:10px;

    letter-spacing:3px;

    text-transform:uppercase;

    color:#b58d36;

    margin-bottom:8px;

}

.product-content h3{

    font-size:22px;

    font-weight:600;

    color:#111;

    margin-bottom:15px;

    transition:.3s;

}

.product-card:hover h3{

    color:#b58d36;

}

/* =========================================
   SPECS
========================================= */

.specs{

    display:flex;

    flex-wrap:wrap;

    gap:8px;

    margin-bottom:18px;

}

.specs span{

    padding:6px 12px;

    border-radius:30px;

    background:#f4f4f4;

    font-size:11px;

    font-weight:500;

    transition:.3s;

}

.product-card:hover .specs span{

    background:#c79b3b;

    color:#fff;

}

/* =========================================
   LINK
========================================= */

.product-content a{

    text-decoration:none;

    color:#222;

    font-size:13px;

    font-weight:600;

    transition:.3s;

}

.product-content a:hover{

    color:#c79b3b;

}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:1200px){

    .product-grid{

        grid-template-columns:repeat(3,1fr);

    }

}

@media(max-width:900px){

    .product-grid{

        grid-template-columns:repeat(2,1fr);

        padding:0 20px;

    }

}

@media(max-width:600px){

    .product-grid{

        grid-template-columns:1fr;

    }

}

/* ========================================= */
/* MODAL */
/* ========================================= */

.product-modal{

    position:fixed;

    inset:0;

    background:
    rgba(0,0,0,0.6);

    display:none;

    justify-content:center;
    align-items:center;

    z-index:9999;

    padding:40px;
}

.product-modal.active{

    display:flex;
}

/* CONTENT */

.modal-content{

    background:white;

    width:100%;

    max-width:1100px;

    border-radius:35px;

    overflow:hidden;

    display:grid;

    grid-template-columns:1fr 1fr;

    position:relative;
}

/* CLOSE */

.close-modal{

    position:absolute;

    top:25px;
    right:30px;

    font-size:35px;

    cursor:pointer;

    z-index:10;
}

/* IMAGE */

.modal-content img{

    width:100%;
    height:100%;

    object-fit:cover;

    background:#efefef;
}

/* TEXT */

.modal-text{

    padding:70px;
}

.modal-text h2{

    font-size:60px;

    line-height:1;
}

.modal-text p{

    margin-top:30px;

    line-height:2;

    color:#666;
}

/* ========================================= */
/* FADE */
/* ========================================= */

.fade{

    opacity:0;

    transform:translateY(40px);

    transition:1s;
}

.fade.show{

    opacity:1;

    transform:translateY(0px);
}

/* ========================================= */
/* RESPONSIVE */
/* ========================================= */

@media(max-width:1000px){

    .hero-content h1{

        font-size:80px;
    }

    .modal-content{

        grid-template-columns:1fr;
    }

    .modal-text{

        padding:50px;
    }

}

@media(max-width:700px){

    header{

        padding:0 5%;
    }

    nav{
        display:none;
    }

    .hero-content h1{

        font-size:58px;

        letter-spacing:-2px;
    }

    .products-container{

        grid-template-columns:1fr;
    }

    .product-info h2{

        font-size:34px;
    }

    .modal-text h2{

        font-size:42px;
    }

}
/*==========================
FILTER ANIMATION
==========================*/

.product-card{

transition:

transform .45s,

opacity .45s,

box-shadow .45s;

}

.product-card.hide{

opacity:0;

transform:scale(.92);

pointer-events:none;

position:absolute;

}

.filter-btn{

transition:.35s;

}

.filter-btn.active{

background:#111;

color:white;

box-shadow:

0 10px 30px rgba(0,0,0,.12);

}
/*==========================================
        PREMIUM 3D CARD
==========================================*/

.product-card{

    transform-style:preserve-3d;

    perspective:1200px;

    cursor:pointer;

}

/* Glow follows mouse */

.card-glow{

    position:absolute;

    inset:0;

    border-radius:30px;

    pointer-events:none;

    opacity:0;

    transition:.35s;

    background:

    radial-gradient(

    250px circle at var(--x) var(--y),

    rgba(255,210,90,.28),

    transparent 45%

    );

}

/* Hover */

.product-card:hover .card-glow{

    opacity:1;

}

/* Lift */

.product-card:hover{

    transform:

    translateY(-14px)

    scale(1.02);

}

/* Image */

.product-card:hover .image-box img{

    transform:scale(1.08);

}

/* Gold Border */

.product-card::after{

content:"";

position:absolute;

inset:0;

border-radius:30px;

border:1px solid transparent;

transition:.4s;

pointer-events:none;

}

.product-card:hover::after{

border-color:#c39b43;

box-shadow:

0 0 35px rgba(188,150,60,.18);

}
/* ========================= */
/* FOOTER */
/* ========================= */

.footer{

    background:linear-gradient(
    135deg,
    #5f5a57,
    #4f4a47);

    padding:90px 80px 40px;

    position:relative;

    overflow:hidden;

    color:white;
}

/* KMS WATERMARK */

.footer::after{

    content:"KMS";

    position:absolute;

    right:40px;

    bottom:30px;

    font-size:240px;

    font-weight:700;

    opacity:0.03;

    pointer-events:none;
}

/* GRID */

.footer-container{

    display:grid;

    grid-template-columns:
    1fr 1fr 1.5fr;

    gap:80px;
}

/* COLUMN */

.footer-column{

    display:flex;

    flex-direction:column;
}

.footer-column h4{

    font-size:22px;

    margin-bottom:30px;

    position:relative;
}

.footer-column h4::before{

    content:"";

    position:absolute;

    width:60px;

    height:2px;

    background:white;

    top:-15px;

    left:0;
}

/* LINKS */

.footer-column a{

    color:#ececec;

    text-decoration:none;

    margin-bottom:18px;

    transition:.3s;
}

.footer-column a:hover{

    color:#b8963c;

    transform:translateX(5px);
}

/* CTA CARD */

.footer-cta{

    background:white;

    border-radius:25px;

    padding:45px;

    box-shadow:
    0 20px 60px rgba(0,0,0,.1);
}

.footer-cta h2{

    color:#111;

    font-size:48px;

    line-height:1.1;

    margin-bottom:20px;
}

.footer-cta p{

    color:#666;

    line-height:1.8;

    margin-bottom:30px;
}

/* BUTTONS */

.footer-buttons{

    display:flex;

    gap:15px;

    flex-wrap:wrap;
}

.footer-btn{

    background:#b8963c;

    color:white;

    text-decoration:none;

    padding:14px 28px;

    border-radius:40px;

    transition:.3s;
}

.footer-btn:hover{

    transform:translateY(-3px);
}

.footer-btn-outline{

    border:1px solid #ddd;

    color:#111;

    text-decoration:none;

    padding:14px 28px;

    border-radius:40px;

    transition:.3s;
}

.footer-btn-outline:hover{

    background:#111;

    color:white;
}

/* CONTACT */

.footer-contact-mini{

    display:flex;

    flex-direction:column;

    gap:10px;

    margin-top:25px;

    color:#666;

    font-size:14px;
}

/* BOTTOM */

.footer-bottom{

    margin-top:60px;

    padding-top:25px;

    border-top:1px solid rgba(255,255,255,.1);

    display:flex;

    justify-content:space-between;

    align-items:center;
}

/* MOBILE */

@media(max-width:1000px){

    .footer{

        padding:70px 30px 30px;
    }

    .footer-container{

        grid-template-columns:1fr;

        gap:50px;
    }

    .footer-cta h2{

        font-size:38px;
    }

    .footer-bottom{

        flex-direction:column;

        gap:15px;

        text-align:center;
    }
}
.lux-footer{

    background:#0f0f0f;

    color:white;

    padding:80px 10% 35px;
}

.footer-top{

    text-align:center;

    margin-bottom:60px;
}

.footer-top h2{

    font-size:42px;

    font-weight:600;

    margin-bottom:15px;

    letter-spacing:1px;
}

.footer-top p{

    color:#bdbdbd;

    max-width:600px;

    margin:auto;

    line-height:1.8;
}

.footer-grid{

    display:grid;

    grid-template-columns:
    repeat(3,1fr);

    gap:80px;

    margin-bottom:60px;
}

.footer-grid h3{

    color:#c7a03d;

    margin-bottom:25px;

    font-size:18px;

    letter-spacing:1px;
}

.footer-grid a{

    display:block;

    color:#d7d7d7;

    text-decoration:none;

    margin-bottom:15px;

    transition:.3s;
}

.footer-grid a:hover{

    color:#c7a03d;

    transform:translateX(5px);
}

.socials{

    margin-top:25px;
}

.footer-bottom{

    border-top:
    1px solid rgba(255,255,255,.1);

    padding-top:25px;

    display:flex;

    justify-content:space-between;

    flex-wrap:wrap;

    color:#9a9a9a;

    font-size:14px;

    letter-spacing:1px;
}