/* ==================================================
   ATGLANCE MANNEQUINS
   MAIN STYLESHEET
================================================== */

/* ==========================
   ROOT VARIABLES
========================== */

:root {

    --black:#0a0a0a;
    --black-light: #121212;
    --black-card: #181818;

    --gold: #c9a84c;
    --gold-dark: #a8872f;
    --gold-light: #e0c36e;

    --white: #ffffff;
    --gray: #f5f5f5;
    --gray-dark: #9a9a9a;

    --success: #25d366;
    --danger: #ff4d4d;

    --heading-font: 'Playfair Display', serif;
    --body-font: 'Inter', sans-serif;

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;

    --shadow:
        0 4px 24px rgba(0, 0, 0, 0.30);

    --transition: 0.3s ease;

    --container:
        min(1320px, calc(100% - 40px));

}


html,
body{
    width:100%;
    overflow-x:hidden;
}


/* ==========================
   RESET
========================== */

*,
*::before,
*::after {

    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

html {

    scroll-behavior: smooth;

}

body {

    font-family: var(--body-font);
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.7;

}

img {

    max-width: 100%;
    display: block;

}

a {

    text-decoration: none;
    color: inherit;

}

ul {

    list-style: none;

}

button,
input,
textarea,
select {

    font-family: inherit;
    outline: none;
    border: none;

}

button {

    cursor: pointer;

}

section {

    position: relative;

}

/* ==========================
   GLOBAL
========================== */

.container {

    width: var(--container);
    margin: auto;

}

.section {

    padding: 100px 0;

}

.section-heading {

    text-align: center;
    margin-bottom: 60px;

}

.section-heading span {

    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;

}

.section-heading h2 {

    font-family: var(--heading-font);
    font-size: 48px;
    margin-top: 10px;

}

/* ==========================
   BUTTONS
========================== */

.btn {

    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 50px;

    padding: 14px 30px;

    border-radius: var(--radius-sm);

    font-weight: 600;

    letter-spacing: 1px;

    text-transform: uppercase;

    transition: var(--transition);

}

.btn-primary {

    background: var(--gold);
    color: var(--black);

}

.btn-primary:hover {

    background: var(--gold-light);
    transform: translateY(-3px);

}

.btn-outline {

    border: 2px solid var(--gold);
    color: var(--gold);

}

.btn-outline:hover {

    background: var(--gold);
    color: var(--black);

}

/* ==========================
   NAVBAR
========================== */

.navbar {

    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    z-index: 1000;

    transition: var(--transition);

    padding: 15px 0;

}

.navbar.scrolled {

    background:
        rgba(10, 10, 10, 0.85);

    backdrop-filter: blur(18px);

    box-shadow: var(--shadow);

}

.nav-container {

    display: flex;

    justify-content: space-between;

    align-items: center;

}

.logo {

    display: flex;

    align-items: center;

    gap: 14px;

}

.logo-box {

    width: 37.6px;
    height: 37.6px;


    border-radius: 12px;

    overflow: hidden;

    display: flex;
    justify-content: center;
    align-items: center;

}

.logo-box img {

    width: 100%;
    height: 100%;
    object-fit: contain;

}

.logo-text h2 {

    font-family: var(--heading-font);
    color: var(--gold);

    font-size: 24px;

    line-height: 1;

}

.logo-text span {

    font-size: 12px;
    letter-spacing: 3px;

    text-transform: uppercase;

}

/* ==========================
   MENU
========================== */

.nav-menu {

    display: flex;
    gap: 35px;

}

.nav-menu a {

    position: relative;

    font-weight: 500;

}

.nav-menu a::after {

    content: "";

    position: absolute;

    left: 0;
    bottom: -8px;

    width: 0;
    height: 2px;

    background: var(--gold);

    transition: var(--transition);

}

.nav-menu a:hover::after {

    width: 100%;

}

/* ==========================
   NAV RIGHT
========================== */

.nav-right {

    display: flex;
    align-items: center;
    gap: 12px;

}

.icon-btn {

    width: 48px;
    height: 48px;

    border-radius: 50%;

    background: rgba(255,255,255,.06);

    color: white;

    position: relative;

    transition: var(--transition);

}

.icon-btn:hover {

    background: var(--gold);
    color: var(--black);

}

.count-badge {

    position: absolute;

    top: -4px;
    right: -4px;

    width: 20px;
    height: 20px;

    border-radius: 50%;

    background: var(--gold);

    color: var(--black);

    font-size: 12px;
    font-weight: 700;

    display: flex;
    align-items: center;
    justify-content: center;

}

/* ==========================
   SEARCH EXPAND
========================== */

.search-wrapper {

    position: relative;

}

.search-expand {

    position: absolute;

    top: 60px;
    right: 0;

    width: 0;

    overflow: hidden;

    transition: .4s ease;

    background: #171717;

    border-radius: 12px;

    display: flex;
    align-items: center;

}

.search-expand.active {

    width: 380px;

}

.search-logo {

    width: 55px;
    height: 55px;

    border-right: 1px solid rgba(255,255,255,.1);

    display: flex;
    justify-content: center;
    align-items: center;

}

.search-logo img {

    width: 40px;

}

.search-expand input {

    flex: 1;

    background: transparent;

    color: white;

    padding: 16px;

}

/* ==========================
   HAMBURGER
========================== */

.hamburger{

    display:none;

    width:48px;
    height:48px;

    flex-direction:column;
    justify-content:center;
    align-items:center;

    gap:5px;

    background:none;

    border:none;

    position:relative;

    z-index:1001;
}

.hamburger span{

    width:28px;

    height:3px;

    background:#ffffff;

    border-radius:20px;

    display:block;

    transition:.3s ease;
}

/* ==========================
   HERO
========================== */

.hero {

    min-height: 100vh;

    position: relative;

    display: flex;

    align-items: center;

    justify-content: center;

    overflow: hidden;

}

.hero-bg {

    position: absolute;

    inset: 0;

    background:
        url("../images/bagr.jpeg")
        center center/cover no-repeat;

}

.hero-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to right,
            rgba(0,0,0,.90),
            rgba(0,0,0,.55)
        );

}

.hero-content {

    position: relative;

    z-index: 3;

    max-width: 760px;

}

.hero-tag {

    display: inline-block;

    color: var(--gold);

    letter-spacing: 4px;

    margin-bottom: 20px;

}

.hero h1 {

    font-family: var(--heading-font);

    font-size: 76px;

    line-height: 1.1;

    margin-bottom: 20px;

}

.hero p {

    font-size: 20px;

    color: #ddd;

    margin-bottom: 35px;

}

.hero-buttons {

    display: flex;

    gap: 16px;

}

/* ==========================
   FLOATING SHAPES
========================== */

.shape {

    position: absolute;

    border-radius: 50%;

    background:
        rgba(201,168,76,.08);

    backdrop-filter: blur(20px);

    animation: float 8s infinite;

}

.shape1 {

    width: 220px;
    height: 220px;

    top: 10%;
    left: 8%;

}

.shape2 {

    width: 160px;
    height: 160px;

    bottom: 10%;
    right: 10%;

}

.shape3 {

    width: 120px;
    height: 120px;

    top: 30%;
    right: 20%;

}

.shape4 {

    width: 80px;
    height: 80px;

    bottom: 25%;
    left: 30%;

}

/* ==========================
   TRUST BAR
========================== */

.trust-bar {

    background: #111;

    border-top: 1px solid rgba(201,168,76,.2);
    border-bottom: 1px solid rgba(201,168,76,.2);

    padding: 25px 0;

}

.trust-grid {

    display: grid;

    grid-template-columns:
        repeat(4,1fr);

    gap: 20px;

}

.trust-item {

    text-align: center;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

}

.trust-item i {

    color: var(--gold);

}

/* ==========================
   CATEGORY SECTION
========================== */

.category-grid {

    display: grid;

    grid-template-columns:
        repeat(5,1fr);

    gap: 25px;

}

.category-card {

    position: relative;

    background: var(--black-card);

    border-radius: 12px;

    overflow: hidden;

    cursor: pointer;

    transition: var(--transition);

    min-height: 260px;

}
/* ==========================================
   LUXURY COMPACT CATEGORY SECTION
========================================== */

.category-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:14px;
    margin-top:40px;
}

.category-card{
    background:
        linear-gradient(
            180deg,
            #161616 0%,
            #101010 100%
        );

    border:1px solid rgba(255,255,255,.05);

    border-radius:14px;

    min-height:95px;

    display:flex;
    align-items:center;
    justify-content:center;

    padding:18px 14px;

    cursor:pointer;

    transition:.35s ease;

    position:relative;

    overflow:hidden;
}

.category-card::before{
    content:"";

    position:absolute;

    inset:0;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(201,168,76,.06),
            transparent
        );

    transform:translateX(-100%);
    transition:.5s ease;
}

.category-card:hover::before{
    transform:translateX(100%);
}

.category-card:hover{
    border-color:var(--gold);

    transform:translateY(-4px);

    box-shadow:
        0 10px 25px rgba(0,0,0,.35);
}

/* REMOVE IMAGE COMPLETELY */

.category-card img{
    display:none;
}

.category-content{
    padding:0;
    text-align:center;
}

.category-content h3{
    font-size:16px;
    font-weight:600;
    line-height:1.4;
    color:var(--white);

    transition:.3s ease;
}

.category-card:hover h3{
    color:var(--gold);
}
/* ==========================================
   MODERN COMPACT PRODUCT GRID
========================================== */

.products-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:18px;
}

.product-card{

    background:linear-gradient(
        180deg,
        #171717 0%,
        #101010 100%
    );

    border:1px solid rgba(255,255,255,.06);

    border-radius:14px;

    overflow:hidden;

    transition:.35s ease;

    width:100%;
}

.product-card:hover{

    transform:translateY(-5px);

    border-color:var(--gold);

    box-shadow:
        0 12px 25px rgba(0,0,0,.35);

}

.product-image{
    position:relative;
    overflow:hidden;
}

.product-image img{

    width:100%;

    height:180px;   /* reduced */

    object-fit:cover;

    transition:.4s ease;
}

.product-card:hover .product-image img{
    transform:scale(1.04);
}

.product-badge{

    position:absolute;

    top:10px;
    left:10px;

    padding:5px 12px;

    border-radius:20px;

    background:var(--gold);

    color:#000;

    font-size:11px;

    font-weight:700;
}

.product-info{
    padding:14px;
}

.product-title{

    font-size:18px;

    font-weight:600;

    margin-bottom:6px;

    line-height:1.3;
}

.product-spec{

    font-size:13px;

    color:#aaa;

    margin-bottom:8px;
}

.product-rating{

    font-size:12px;

    margin-bottom:10px;

    color:#ffc107;
}

.product-price{

    font-size:22px;

    font-weight:700;

    color:var(--gold);

    margin-bottom:12px;
}

.product-actions{

    display:flex;

    gap:8px;
}

.wishlist-btn{

    width:40px;

    height:40px;

    border-radius:10px;

    background:#202020;

    color:#fff;
}

.add-cart-btn{

    flex:1;

    height:40px;

    border-radius:10px;

    background:var(--gold);

    color:#000;

    font-size:14px;

    font-weight:600;
}

.quick-view-btn{

    padding:10px 16px;

    font-size:13px;

    border-radius:8px;
}
/* ==========================================
   SHOP CONTROLS
========================================== */

.shop-controls{
    display:flex;
    justify-content:space-between;
    gap:20px;
    margin-bottom:40px;
    flex-wrap:wrap;
}

.filter-buttons{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
}

.filter-btn{
    padding:12px 18px;
    border-radius:30px;
    background:#1a1a1a;
    color:white;
}

.filter-btn.active{
    background:var(--gold);
    color:black;
}

.shop-tools{
    display:flex;
    gap:10px;
}

.shop-tools input,
.shop-tools select{
    background:#171717;
    color:white;
    padding:12px 15px;
    border-radius:8px;
}

/* ==========================================
   MODALS
========================================== */

.modal{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.8);
    display:none;
    justify-content:center;
    align-items:center;
    z-index:3000;
}

.modal.active{
    display:flex;
}

.modal-content{
    background:#111;
    width:min(1100px,90%);
    border-radius:20px;
    overflow:hidden;
    position:relative;
}

.modal-close{
    position:absolute;
    right:15px;
    top:15px;
    width:45px;
    height:45px;
    border-radius:50%;
    background:red;
    color:white;
}

.quick-view-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
}

.quick-view-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.quick-view-content{
    padding:40px;
}

.quick-view-content h2{
    margin-bottom:15px;
}

.quick-view-content .price{
    color:var(--gold);
    font-size:30px;
    margin-bottom:20px;
}

.qty-box{
    display:flex;
    gap:10px;
    align-items:center;
    margin:20px 0;
}

.qty-btn{
    width:40px;
    height:40px;
    background:#222;
    color:white;
}

/* ==========================================
   CART SIDEBAR
========================================== */

.cart-sidebar{
    position:fixed;
    top:0;
    right:-500px;
    width:420px;
    max-width:100%;
    height:100vh;
    background:#111;
    z-index:4000;
    transition:.4s ease;
    display:flex;
    flex-direction:column;
}

.cart-sidebar.active{
    right:0;
}

.cart-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px;
    border-bottom:1px solid rgba(255,255,255,.08);
}

.cart-items{
    flex:1;
    overflow:auto;
    padding:20px;
}

.cart-item{
    display:flex;
    gap:15px;
    margin-bottom:20px;
}

.cart-item img{
    width:80px;
    height:100px;
    object-fit:cover;
}

.cart-footer{
    padding:20px;
    border-top:1px solid rgba(255,255,255,.08);
}

.cart-total{
    font-size:22px;
    color:var(--gold);
    margin-bottom:15px;
}

/* ==========================================
   CHECKOUT
========================================== */

.checkout-wrapper{
    width:min(1200px,95%);
    background:#111;
    display:grid;
    grid-template-columns:1.2fr .8fr;
    border-radius:20px;
    overflow:hidden;
}

.checkout-left,
.checkout-right{
    padding:35px;
}

.checkout-left{
    border-right:1px solid rgba(255,255,255,.08);
}

.checkout-left form{
    display:grid;
    gap:15px;
}

.checkout-left input,
.checkout-left textarea,
.checkout-left select{
    background:#1a1a1a;
    color:white;
    padding:14px;
    border-radius:8px;
}

.checkout-summary-item{
    display:flex;
    justify-content:space-between;
    margin-bottom:15px;
}

/* ==========================================
   BULK ORDER
========================================== */

.bulk-order{
    background:#121212;
    padding:100px 0;
    text-align:center;
    margin-bottom: 30px;
}

.bulk-order h2{
    font-size:52px;
    font-family:var(--heading-font);
    margin-bottom:15px;
}

.bulk-order p{
    color:#ccc;
    margin-bottom:35px;
}

.bulk-order form{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:15px;
}

.bulk-order input{
    background:#1a1a1a;
    color:white;
    padding:16px;
    border-radius:8px;
}

/* ==========================================
   ABOUT
========================================== */

.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.about-text h2{
    font-size:52px;
    margin:20px 0;
    font-family:var(--heading-font);
}

.about-text p{
    margin-bottom:20px;
    color:#d7d7d7;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.stat-card{
    text-align:center;
    background:#151515;
    padding:35px 20px;
    border-radius:12px;
}

.stat-card h3{
    color:var(--gold);
    font-size:48px;
}

/* ==========================================
   TESTIMONIALS
========================================== */

.testimonial-slider{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.testimonial-card{
    background:#151515;
    padding:30px;
    border-radius:12px;
}

.testimonial-card .stars{
    color:#ffc107;
    margin-bottom:15px;
}

.testimonial-card p{
    margin-bottom:15px;
    color:#ddd;
}

/* ==========================================
   CONTACT
========================================== */

.contact-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
}

.contact-info{
    display:flex;
    flex-direction:column;
    gap:15px;
}

.contact-info h2{
    font-size:52px;
    font-family:var(--heading-font);
}

.contact-form{
    display:grid;
    gap:15px;
}

.contact-form input,
.contact-form textarea{
    background:#171717;
    color:white;
    padding:15px;
    border-radius:8px;
}

/* ==========================================
   FOOTER
========================================== */

.footer{
    background:#050505;
    border-top:1px solid rgba(201,168,76,.15);
}

.footer-grid{
    padding:70px 0;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:40px;
}

.footer h3,
.footer h4{
    margin-bottom:15px;
    color:var(--gold);
}

.footer a{
    display:block;
    margin-bottom:10px;
    color:#ccc;
}

.footer a:hover{
    color:var(--gold);
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.08);
    padding:20px;
    text-align:center;
    color:#aaa;
}

/* ==========================================
   OVERLAY
========================================== */

#overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.7);
    display:none;
    z-index:2500;
}

#overlay.active{
    display:block;
}

/* ==========================================
   ANIMATIONS
========================================== */

@keyframes fadeIn{
    from{
        opacity:0;
    }
    to{
        opacity:1;
    }
}

@keyframes slideInRight{
    from{
        opacity:0;
        transform:translateX(50px);
    }
    to{
        opacity:1;
        transform:translateX(0);
    }
}

@keyframes scaleUp{
    from{
        transform:scale(.8);
        opacity:0;
    }
    to{
        transform:scale(1);
        opacity:1;
    }
}

@keyframes pulse{
    0%{
        transform:scale(1);
    }
    50%{
        transform:scale(1.05);
    }
    100%{
        transform:scale(1);
    }
}

@keyframes float{
    0%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-25px);
    }
    100%{
        transform:translateY(0);
    }
}

.fade-in{
    animation:fadeIn .6s ease forwards;
}

.slide-right{
    animation:slideInRight .6s ease forwards;
}

.scale-up{
    animation:scaleUp .5s ease forwards;
}

.pulse{
    animation:pulse 2s infinite;
}



/* ==========================================
   CHAT ASSISTANT
========================================== */

.chat-widget{

    position:fixed;

    right:20px;
    bottom:20px;

    z-index:9999;

}

.chat-toggle{

    width:60px;
    height:60px;

    border-radius:50%;

    background:#c9a84c;

    color:#000;

    font-size:22px;
}

.chat-box{

    width:340px;

    height:500px;

    background:#121212;

    border-radius:16px;

    overflow:hidden;

    display:none;

    margin-bottom:15px;

    box-shadow:
        0 15px 35px rgba(0,0,0,.4);

}

.chat-box.active{

    display:flex;

    flex-direction:column;

}

.chat-header{

    background:#c9a84c;

    color:#000;

    padding:15px;

}

.chat-body{

    flex:1;

    padding:15px;

    overflow-y:auto;

}

.bot-message,
.user-message{

    padding:10px 14px;

    border-radius:10px;

    margin-bottom:10px;

}

.bot-message{

    background:#222;

}

.user-message{

    background:#c9a84c;

    color:#000;

    margin-left:auto;

}

.chat-footer{

    display:flex;

    border-top:1px solid #333;

}

.chat-footer input{

    flex:1;

    background:#1a1a1a;

    color:white;

    padding:15px;

}

.chat-footer button{

    width:60px;

    background:#c9a84c;

}

/* ==========================================
   ENQUIRY SECTION
========================================== */

.enquiry-section{
   

    padding:100px 0;

    background:#111;

    overflow:hidden;

}

.enquiry-wrapper{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:40px;

    align-items:center;

    width:100%;
    
}


.enquiry-content h2{

    font-size:48px;
    border-radius: 15%;
    color:#c9a84c;

}

#enquiryForm{

    display:grid;

    gap:15px;

}

#enquiryForm input{

    background:#1a1a1a;
    
    color:white;
    padding:15px;

    border-radius:21px;

}

/* ==========================
   MOBILE SIDEBAR MENU
========================== */



.mobile-sidebar{

    position:fixed;

    top:0;

    right:-320px;

    width:300px;

    max-width:85vw;

    height:100vh;

    background:#0a0a0a;

    z-index:3000;

    transition:.35s ease;

    padding:25px;

}

.mobile-sidebar.active{

    right:0;

}

.menu-overlay{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.65);

    opacity:0;

    visibility:hidden;

    transition:.3s ease;

    z-index:2999;

}

.menu-overlay.active{

    opacity:1;

    visibility:visible;

}

/* ==========================================
   SIDEBAR CONTENT
========================================== */

.sidebar-header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:25px;

}

.sidebar-header h3{

    color:var(--gold);

    font-size:24px;

}

#closeSidebar{

    width:40px;

    height:40px;

    border-radius:50%;

    background:#1a1a1a;

    color:white;

    font-size:18px;

}

.mobile-sidebar a,
.mobile-sidebar button{

    display:flex;

    justify-content:space-between;

    align-items:center;

    width:100%;

    padding:15px 0;

    background:none;

    border:none;

    color:white;

    text-decoration:none;

    border-bottom:1px solid rgba(255,255,255,.08);

    font-size:16px;

}

.mobile-sidebar a:hover,
.mobile-sidebar button:hover{

    color:var(--gold);

}

.sidebar-divider{

    height:1px;

    background:rgba(255,255,255,.08);

    margin:20px 0;

}


@media(min-width:993px){

    .hamburger{

        display:none;

    }

}



/* ==========================================
   QUOTE WIZARD
========================================== */

.quote-wizard{

    max-width:700px;

    margin:auto;

    background:#151515;

    padding:40px;

    border-radius:20px;

    border:1px solid rgba(201,168,76,.15);

}

.quote-progress{

    display:flex;

    justify-content:center;

    gap:15px;

    margin-bottom:30px;

}

.quote-progress .step{

    width:45px;

    height:45px;

    border-radius:50%;

    background:#222;

    display:flex;

    align-items:center;

    justify-content:center;

}

.quote-progress .step.active{

    background:var(--gold);

    color:black;

}

.quote-step{

    display:none;

    gap:15px;

}

.quote-step.active{

    display:grid;

}

.quote-step h3{

    color:var(--gold);

    margin-bottom:10px;

}

.quote-step input,
.quote-step select,
.quote-step textarea{

    background:#1a1a1a;

    color:white;

    padding:15px;

    border-radius:10px;

}

#estimatedPrice{

    background:
    linear-gradient(
        135deg,
        #1a1a1a,
        #111
    );

    border:1px solid var(--gold);

    padding:20px;

    border-radius:15px;

    color:var(--gold);

    font-size:24px;

    font-weight:700;

    text-align:center;

}

.next-btn{

    background:var(--gold);

    color:black;

    padding:14px;

    border-radius:10px;

    font-weight:600;

}

/*product bulk order from enquiry section step 3*/

.product-item{

    display:grid;

    grid-template-columns:
    1.2fr 1.2fr 120px 50px;

    gap:12px;

    align-items:center;

    padding:15px;

    background:#1a1a1a;

    border:1px solid rgba(201,168,76,.15);

    border-radius:12px;

    margin-bottom:15px;

}

.product-item:hover{

    border-color:var(--gold);

}

.remove-product{

    background:#ff4d4d;

    color:white;

    border:none;

    border-radius:8px;

}

#addProductBtn{

    width:100%;

    padding:15px;

    background:transparent;

    border:2px dashed var(--gold);

    color:var(--gold);

    border-radius:12px;

    font-weight:600;

    cursor:pointer;

    transition:.3s;

}

#addProductBtn:hover{

    background:var(--gold);

    color:#000;

}


@media(max-width:768px){

    .product-item{

        grid-template-columns:1fr;

    }

}


/*proforma*/

.proforma-section{

    padding:100px 0;

    background:#0f0f0f;

}

.proforma-card{

    background:#151515;

    border:1px solid rgba(201,168,76,.2);

    border-radius:20px;

    padding:30px;

}

.proforma-header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:25px;

    padding-bottom:15px;

    border-bottom:1px solid rgba(201,168,76,.15);

}

.proforma-header h3{

    color:var(--gold);

}

.proforma-item{

    display:grid;

    grid-template-columns:
    2fr 1fr 1fr 1fr;

    gap:15px;

    padding:15px 0;

    border-bottom:1px solid rgba(255,255,255,.08);

}

.proforma-total{

    margin-top:25px;

    text-align:right;

    font-size:24px;

    font-weight:700;

    color:var(--gold);

}

@media(max-width:768px){

    .proforma-item{

        grid-template-columns:1fr;

        gap:8px;

    }

}


/* ==========================================
   CHECKOUT ACTION BUTTONS
========================================== */

.checkout-actions{

    display:flex;

    gap:15px;

    margin-top:25px;

}

.checkout-actions button{

    flex:1;

}

.btn-outline{

    background:transparent;

    border:1px solid var(--gold);

    color:var(--gold);

}

.btn-danger{

    background:#dc3545;

    color:white;

}

@media(max-width:768px){

    .checkout-actions{

        flex-direction:column;

    }

}



.wishlist-sidebar{

    position:fixed;

    top:0;

    right:-420px;

    width:400px;

    height:100vh;

    background:#111;

    z-index:9999;

    transition:.4s;

    overflow-y:auto;

    padding:20px;

}

.wishlist-sidebar.active{

    right:0;

}

.wishlist-header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:20px;

}

.wishlist-item{

    display:flex;

    gap:12px;

    margin-bottom:15px;

    border-bottom:1px solid rgba(255,255,255,.1);

    padding-bottom:15px;

}

.wishlist-item img{

    width:80px;

    height:80px;

    object-fit:cover;

}


