/* --- GOOGLE FONTS IMPORT --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Montserrat:wght@300;400;600;700&display=swap');

:root {
    /* BRAND COLORS */
    --gold: #C5A059;
    --gold-light: #D4AF37;
    --black: #1C1C1C; /* Semi-Dark Charcoal Background */
    --white: #FFFFFF; /* Primary Text */
    --off-white: #262626; /* Deep Gray for cards/sections */
    --gray: #B0B0B0; /* Muted text */
    --light-gray: #333333; /* Borders and dividers */
    
    /* EFFECTS */
    --shadow: 0 10px 40px rgba(0,0,0,0.4);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* --- RESET & BASE --- */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--black);
    color: var(--white);
    line-height: 1.6;
    padding-top: 140px; /* Space for sticky header */
}

a { text-decoration: none; color: inherit; transition: var(--transition); }

/* --- HEADER & NAVIGATION --- */
header { margin-bottom: 50px; }

.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(28, 28, 28, 0.95);
    border-bottom: 1px solid var(--light-gray);
    backdrop-filter: blur(15px);
}

.header-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 5%;
    height: 120px;
}

.brand-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.brand-logo img {
    height: 120px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 2px rgba(197, 160, 89, 0.2));
}

.header-icons { 
    display: flex; 
    gap: 15px; 
    align-items: center; 
    flex: 1;
}

.header-icons.right { justify-content: flex-end; }

.icon-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--white);
    transition: var(--transition);
    display: flex;
    align-items: center;
    padding: 8px;
}

.icon-btn:hover { color: var(--gold); }

.nav-bar {
    display: flex;
    justify-content: center;
    gap: 35px;
    padding: 10px 0 15px;
    background: transparent;
}

.nav-item {
    text-decoration: none;
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    opacity: 0.85;
}

.nav-item:hover { color: var(--gold); opacity: 1; }
.nav-item::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: var(--transition);
}
.nav-item:hover::after { width: 100%; }

.mobile-icon { display: none; }

/* --- OVERLAYS --- */
#searchOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: var(--black);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    box-shadow: var(--shadow);
    padding: 0 5%;
    animation: slideDown 0.4s ease;
}

@keyframes slideDown { from { transform: translateY(-100%); } to { transform: translateY(0); } }

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: -100%;
    width: 85%;
    height: 100%;
    background: #151515;
    z-index: 2100;
    transition: 0.5s cubic-bezier(0.77,0.2,0.05,1);
    padding: 60px 40px;
    border-right: 1px solid var(--light-gray);
}

.mobile-menu-overlay.active { left: 0; }

.mobile-nav-item {
    display: block;
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 300;
    opacity: 0.8;
}

/* --- PRODUCT CARD COMPONENT --- */
.product-card {
    background: var(--off-white);
    transition: var(--transition);
    position: relative;
    border: 1px solid var(--light-gray);
}

.product-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow);
    transform: translateY(-5px);
    background: #2D2D2D;
}

.product-image {
    width: 100%;
    aspect-ratio: 3/4;
    background: #111;
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
    filter: brightness(0.85);
}

.product-card:hover .product-image img { 
    transform: scale(1.05); 
    filter: brightness(1);
}

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

.product-name {
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    height: 40px;
    overflow: hidden;
    opacity: 0.9;
}

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

.product-price.offer { color: var(--gold); font-weight: 700; font-size: 1rem; }
.product-price.regular { color: var(--gray); text-decoration: line-through; font-size: 0.8rem; }

.btn-select-options {
    display: block;
    width: 100%;
    padding: 12px;
    background: var(--gold);
    color: var(--black);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover .btn-select-options { opacity: 1; }

.sale-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--gold);
    color: var(--black);
    padding: 4px 10px;
    font-size: 0.65rem;
    font-weight: 700;
    z-index: 2;
}

/* --- PRODUCT LISTING LAYOUT --- */
.listing-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    padding: 40px 5%;
    max-width: 1600px;
    margin: 0 auto;
}

.filter-sidebar {
    position: sticky;
    top: 160px;
    height: fit-content;
}

.filter-group {
    margin-bottom: 30px;
    border-bottom: 1px solid var(--light-gray);
    padding-bottom: 20px;
}

.filter-title {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: var(--gold);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.filter-list { list-style: none; }
.filter-item {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-size: 0.85rem;
    color: var(--gray);
}

.filter-item input[type="checkbox"] {
    accent-color: var(--gold);
    width: 16px;
    height: 16px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.listing-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--light-gray);
    padding-bottom: 15px;
}

/* --- SINGLE PRODUCT PAGE --- */
.product-single-container {
    max-width: 1400px;
    margin: 30px auto;
    padding: 40px 5%;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
}

.main-image-wrap {
    width: 100%;
    aspect-ratio: 3/4;
    background: #111;
    overflow: hidden;
    border: 1px solid var(--light-gray);
}

.main-image-wrap img { width: 100%; height: 100%; object-fit: cover; }

.thumbnail-grid { 
    display: grid; 
    grid-template-columns: repeat(5, 1fr); 
    gap: 10px; 
    margin-top: 15px; 
    max-width: 90%;
}

.thumb-item { aspect-ratio: 1/1; background: #111; cursor: pointer; border: 1px solid transparent; transition: var(--transition); }
.thumb-item:hover, .thumb-item.active { border-color: var(--gold); }
.thumb-item img { width: 100%; height: 100%; object-fit: cover; opacity: 0.6; }
.thumb-item:hover img, .thumb-item.active img { opacity: 1; }

.product-single-info { position: sticky; top: 160px; height: fit-content; }
.breadcrumb { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; color: var(--gray); margin-bottom: 15px; }
.single-product-title { font-family: 'Playfair Display', serif; font-size: 2.5rem; margin-bottom: 10px; line-height: 1.2; }
.price-now { font-size: 1.8rem; font-weight: 700; color: var(--gold); margin-right: 15px; }
.price-old { font-size: 1.2rem; text-decoration: line-through; color: var(--gray); }

.short-desc { color: var(--gray); font-size: 0.95rem; margin: 30px 0; border-top: 1px solid var(--light-gray); padding-top: 20px; }

.variant-picker { margin-bottom: 30px; }
.variant-label { display: block; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 10px; }
.color-options { display: flex; gap: 10px; }
.color-swatch { width: 35px; height: 35px; border-radius: 50%; border: 2px solid transparent; cursor: pointer; }
.color-swatch.active { border-color: var(--gold); transform: scale(1.1); }

.purchase-actions { display: flex; gap: 15px; margin-bottom: 40px; }
.qty-input { display: flex; align-items: center; border: 1px solid var(--light-gray); background: #111; }
.qty-btn { background: none; border: none; color: white; padding: 10px 15px; cursor: pointer; }
.qty-val { width: 40px; text-align: center; font-weight: 600; }
.add-btn { flex: 1; background: var(--gold); color: var(--black); border: none; padding: 15px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; cursor: pointer; }
.add-btn:hover { background: var(--gold-light); }

/* --- CART & CHECKOUT --- */
.cart-container, .checkout-container {
    max-width: 1200px;
    margin: 40px auto;
/*    padding: 0 5%;*/
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
}

.checkout-container { grid-template-columns: 1.5fr 1fr; gap: 60px; }

.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th { text-align: left; text-transform: uppercase; font-size: 0.7rem; color: var(--gold); border-bottom: 1px solid var(--light-gray); padding-bottom: 15px; }
.cart-item { border-bottom: 1px solid var(--light-gray); }
.cart-item td { padding: 25px 0; }
.cart-product { display: flex; gap: 20px; align-items: center; }
.cart-product img { width: 80px; height: 100px; object-fit: cover; }

.summary-box { background: var(--off-white); padding: 30px; border: 1px solid var(--light-gray); height: fit-content; }
.summary-title { font-family: 'Playfair Display', serif; font-size: 1.5rem; margin-bottom: 25px; border-bottom: 1px solid var(--light-gray); padding-bottom: 15px; }
.summary-row { display: flex; justify-content: space-between; margin-bottom: 15px; font-size: 0.9rem; }
.total-row { margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--light-gray); font-weight: 700; font-size: 1.2rem; color: var(--gold); }

.checkout-section-title { font-family: 'Playfair Display', serif; font-size: 1.4rem; margin-bottom: 25px; color: var(--gold); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.full-width { grid-column: span 2; }
.form-group label { display: block; font-size: 0.7rem; text-transform: uppercase; margin-bottom: 8px; color: var(--gray); }
.form-group input, .form-group select { width: 100%; padding: 12px; background: #111; border: 1px solid var(--light-gray); color: white; outline: none; }
.form-group input:focus { border-color: var(--gold); }

.payment-method { border: 1px solid var(--light-gray); padding: 15px; margin-bottom: 10px; display: flex; align-items: center; gap: 15px; cursor: pointer; }
.payment-method.active { border-color: var(--gold); background: #252525; }

/* --- ORDER SUCCESS --- */
.success-container { max-width: 800px; margin: 60px auto; padding: 0 5%; text-align: center; }
.success-icon { width: 80px; height: 80px; background: rgba(197, 160, 89, 0.1); border: 1px solid var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 30px; color: var(--gold); }
.success-title { font-family: 'Playfair Display', serif; font-size: 2.5rem; margin-bottom: 15px; }
.success-summary { background: var(--off-white); padding: 40px; border: 1px solid var(--light-gray); text-align: left; margin-bottom: 40px; }

/* --- BUTTONS & TYPOGRAPHY --- */
.heading-main { font-family: 'Playfair Display', serif; font-size: 2rem; text-transform: uppercase; letter-spacing: 2px; color: var(--gold); }

.btn-primary { display: block; width: 100%; padding: 15px; background: var(--gold); color: var(--black); text-align: center; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; border: none; cursor: pointer; }
.btn-primary:hover { background: var(--gold-light); }

.btn-secondary { display: inline-block; padding: 15px 40px; background: transparent; border: 1px solid var(--gold); color: var(--gold); text-transform: uppercase; font-weight: 700; letter-spacing: 2px; font-size: 0.8rem; }
.btn-secondary:hover { background: var(--gold); color: var(--black); }

/* --- FOOTER & NEWSLETTER --- */
.newsletter { background: var(--off-white); padding: 80px 5%; text-align: center; border-top: 1px solid var(--light-gray); }
.input-group { display: flex; max-width: 500px; margin: 30px auto 0; border: 1px solid var(--light-gray); }
.input-group input { flex: 1; padding: 15px; border: none; background: #111; color: #fff; }
.sub-btn { background: var(--gold); color: var(--black); border: none; padding: 0 25px; cursor: pointer; text-transform: uppercase; font-weight: 700; }

footer { margin-top: 50px; }
.footer-bottom { background: #111; color: #555; padding: 20px; text-align: center; font-size: 0.7rem; border-top: 1px solid #1A1A1A; }

/* --- RESPONSIVE --- */
@media screen and (max-width: 1024px) {
    .product-grid { grid-template-columns: repeat(2, 1fr); }
    .listing-layout { gap: 20px; }
    .product-single-container { gap: 30px; grid-template-columns: 1fr; }
}

@media screen and (max-width: 900px) {
    .cart-container, .checkout-container { grid-template-columns: 1fr; }
    .cart-table thead { display: none; }
    .cart-item td { 
        display: block; 
        padding: 10px 0; 
        border: none; 
        padding-left: 15px;
    }
    .form-grid { grid-template-columns: 1fr; }
    .full-width { grid-column: span 1; }
    .success-title { font-size: 1.8rem; }
}

@media screen and (max-width: 767px) {
    body { padding-top: 120px; }
    .mobile-icon { display: block; }
    .nav-bar { display: none; }
    .header-main { height: 120px; }
    .listing-layout { grid-template-columns: 1fr; }
    .filter-sidebar { display: none; }
    .heading-main { font-size: 1.4rem; }

    .category-card { max-height: 280px; }
    .category-overlay { padding: 10px !important; height: 100px !important; }
    .category-overlay h3 { font-size: 0.95rem !important; height: 40px; }

    .shop-btn { 
        padding:4px 15px !important; 
        font-size: 0.65rem !important;

    }


}



/* --- RESPONSIVE --- */
@media screen and (max-width: 768px) {
    .failure-hero { flex-direction: column; text-align: left; }
    .failure-title-large { font-size: 2rem; }
    .newsletter-form { flex-direction: column; gap: 10px; }
    .newsletter-form button { padding: 18px; }
}



/* --- RESPONSIVE --- */
@media screen and (max-width: 768px) {
    body { padding-top: 120px; }
    .nav-bar { display: none; }
    .failure-hero { flex-direction: column; text-align: left; gap: 20px; }
    .failure-title-large { font-size: 2.2rem; }
    .newsletter-form { flex-direction: column; gap: 10px; }
    .newsletter-form button { padding: 18px; }
}







/* --- STANDALONE CSS FOR ORDER FAILURE PAGE --- */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Montserrat:wght@300;400;600;700&display=swap');

:root {
    --gold: #C5A059;
    --gold-light: #D4AF37;
    --black: #1C1C1C;
    --white: #FFFFFF;
    --off-white: #262626;
    --gray: #B0B0B0;
    --light-gray: #333333;
    --error: #E74C3C;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--black);
    color: var(--white);
    line-height: 1.6;
    padding-top: 140px;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }

/* --- HEADER & NAV (Shared) --- */
.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(28, 28, 28, 0.95);
    border-bottom: 1px solid var(--light-gray);
    backdrop-filter: blur(15px);
}

.header-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 5%;
    height: 120px;
}

.brand-logo img {
    height: 120px;
    width: auto;
    object-fit: contain;
}

.nav-bar {
    display: flex;
    justify-content: center;
    gap: 35px;
    padding: 10px 0 15px;
}

.nav-item {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    opacity: 0.85;
}

/* --- FAILURE PAGE HERO --- */
.failure-hero {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 40px 5%;
    max-width: 1400px;
    margin: 0 auto;
    gap: 50px;
}

.failure-title-large {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    flex: 1;
    line-height: 1.1;
}

.failure-text-side {
    flex: 1;
    color: var(--gray);
    font-size: 0.95rem;
    max-width: 500px;
}

/* --- TROUBLESHOOTING --- */
.troubleshooting-v2 {
    padding: 60px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.troubleshooting-v2 h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.troubleshooting-v2 ul { list-style: none; }
.troubleshooting-v2 li {
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.troubleshooting-v2 li::before {
    content: '';
    width: 4px;
    height: 4px;
    background: var(--gold);
    display: block;
}

/* --- ACTIONS --- */
.failure-actions-centered {
    text-align: center;
    padding: 40px 5% 100px;
}

.btn-gold {
    display: inline-block;
    background: var(--gold);
    color: var(--black);
    padding: 18px 80px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    margin-bottom: 20px;
    width: 100%;
    max-width: 400px;
    text-align: center;
}

.btn-outline-gold {
    display: inline-block;
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 18px 80px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    width: 100%;
    max-width: 400px;
    text-align: center;
}

.concierge-link {
    display: block;
    margin-top: 30px;
    font-size: 0.8rem;
    color: var(--gray);
}

.concierge-link a {
    color: var(--gold);
    text-decoration: underline;
}

/* --- NEWSLETTER SECTION --- */
.newsletter-section {
    background: #151515;
    padding: 100px 5%;
    text-align: center;
    border-top: 1px solid var(--light-gray);
}

.newsletter-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.newsletter-form {
    display: flex;
    max-width: 650px;
    margin: 40px auto 0;
}

.newsletter-form input {
    flex: 1;
    background: #000;
    border: 1px solid #333;
    padding: 18px;
    color: white;
    outline: none;
}

.newsletter-form button {
    background: var(--gold);
    border: none;
    padding: 0 40px;
    color: var(--black);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
}

/* --- RESPONSIVE --- */
@media screen and (max-width: 768px) {
    body { padding-top: 120px; }
    .nav-bar { display: none; }
    .failure-hero { flex-direction: column; text-align: left; gap: 20px; }
    .failure-title-large { font-size: 2.2rem; }
    .newsletter-form { flex-direction: column; gap: 10px; }
    .newsletter-form button { padding: 18px; }
}









/*HOMEPAGE SECTION DESIGN*/

:root {
    /* SEMI-DARK THEME BRAND COLORS */
    --gold: #C5A059;
    --gold-light: #D4AF37;
    --black: #1C1C1C; /* Semi-Dark Charcoal Background */
    --white: #FFFFFF; /* Primary Text */
    --off-white: #262626; /* Deep Gray for cards/sections */
    --gray: #B0B0B0; /* Muted text */
    --light-gray: #333333; /* Borders and dividers */
    --shadow: 0 10px 40px rgba(0,0,0,0.4);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--black);
    color: var(--white);
    line-height: 1.6;
    padding-top: 140px; /* Space for sticky double header */
}

/* --- HEADER --- */
.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(28, 28, 28, 0.95); /* Semi-dark transparent */
    border-bottom: 1px solid var(--light-gray);
    backdrop-filter: blur(15px);
}

.header-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 5%;
/*            height: 90px;*/
    height: 120px;
}

/* Logo Styling */
.brand-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.brand-logo img {
/*            height: 75px;*/
    height: 120px;
    width: auto;
    object-fit: contain;
    /* Filter to make logo pop if it's too dark */
    filter: drop-shadow(0 0 2px rgba(197, 160, 89, 0.2));
}

.header-icons { 
    display: flex; 
    gap: 15px; 
    align-items: center; 
    flex: 1;
}

.header-icons.right {
    justify-content: flex-end;
}

.icon-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--white);
    transition: var(--transition);
    display: flex;
    align-items: center;
    padding: 8px;
}

.icon-btn:hover { color: var(--gold); }

/* Desktop Nav Bar */
.nav-bar {
    display: flex;
    justify-content: center;
    gap: 35px;
    padding: 10px 0 15px;
    background: transparent;
}

.nav-item {
    text-decoration: none;
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: var(--transition);
    position: relative;
    opacity: 0.85;
}

.nav-item:hover { color: var(--gold); opacity: 1; }
.nav-item::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: var(--transition);
}
.nav-item:hover::after { width: 100%; }

/* --- HERO --- */
.hero {
    width: 100%;
    overflow: hidden;
    background: #111;
}

.hero img {
    width: 100%;
    height: auto;
    display: block;
    opacity: 0.9;
}

/* --- PRODUCT SECTIONS --- */
/*        .section-container { padding: 60px 5%; }*/
.section-container {
    padding: 40px 5% 0px;
}

.section-header { 
    margin-bottom: 30px; 
    border-bottom: 1px solid var(--light-gray);
    padding-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.heading-main {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
}

.carousel-container { position: relative; }

.carousel-wrapper {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 10px 0 30px;
    scrollbar-width: none;
    scroll-behavior: smooth;
}

.carousel-wrapper::-webkit-scrollbar { display: none; }

/* --- PRODUCT CARD SEMI-DARK REDESIGN --- */
.product-card {
    min-width: 280px;
    background: var(--off-white);
    transition: var(--transition);
    position: relative;
    border: 1px solid var(--light-gray);
}

.product-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow);
    transform: translateY(-5px);
    background: #2D2D2D;
}

.product-image {
    width: 100%;
    aspect-ratio: 3/4;
    background: #111;
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
    filter: brightness(0.85);
}

.product-card:hover .product-image img { 
    transform: scale(1.05); 
    filter: brightness(1);
}

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

.product-name {
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    height: 40px;
    overflow: hidden;
    opacity: 0.9;
}

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

.product-price.offer { color: var(--gold); font-weight: 700; font-size: 1rem; }
.product-price.regular { color: var(--gray); text-decoration: line-through; font-size: 0.8rem; }

.btn-select-options {
    display: block;
    width: 100%;
    padding: 12px;
    background: var(--gold);
    color: var(--black);
    text-decoration: none;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover .btn-select-options { opacity: 1; }

.sale-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--gold);
    color: var(--black);
    padding: 4px 10px;
    font-size: 0.65rem;
    font-weight: 700;
    z-index: 2;
}

/* --- ARROWS --- */
.nav-arrow {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: var(--off-white);
    border: 1px solid var(--light-gray);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
    transition: var(--transition);
}

.nav-arrow:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }
.prev-arrow { left: -20px; }
.next-arrow { right: -20px; }

/* --- SEARCH OVERLAY --- */
#searchOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: var(--black);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    box-shadow: var(--shadow);
    padding: 0 5%;
    animation: slideDown 0.4s ease;
}

@keyframes slideDown { from { transform: translateY(-100%); } to { transform: translateY(0); } }

.search-input-wrapper { width: 100%; max-width: 800px; position: relative; }
.search-input {
    width: 100%;
    padding: 15px 50px 15px 20px;
    border: 1px solid var(--light-gray);
    background: #252525;
    color: var(--white);
    border-radius: 4px;
    font-family: inherit;
    outline: none;
}
.search-input:focus { border-color: var(--gold); }

.close-search { margin-left: 20px; cursor: pointer; font-size: 1.5rem; color: var(--white); }

/* --- MOBILE MENU --- */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: -100%;
    width: 85%;
    height: 100%;
    background: #151515; /* Even deeper semi-dark */
    z-index: 2100;
    transition: 0.5s cubic-bezier(0.77,0.2,0.05,1);
    padding: 60px 40px;
    border-right: 1px solid var(--light-gray);
}

.mobile-menu-overlay.active { left: 0; }

.mobile-nav-item {
    display: block;
    color: var(--white);
    text-decoration: none;
    font-size: 1.2rem;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 300;
    opacity: 0.8;
}

.mobile-nav-item:hover { color: var(--gold); opacity: 1; }

.menu-close { color: var(--white); position: absolute; top: 20px; right: 20px; font-size: 2rem; cursor: pointer; }

/* --- FOOTER --- */
.newsletter { background: var(--off-white); color: var(--white); padding: 80px 5%; text-align: center; border-top: 1px solid var(--light-gray); }
.newsletter h2 { font-family: 'Playfair Display', serif; margin-bottom: 20px; letter-spacing: 2px; color: var(--gold); }

.input-group { display: flex; max-width: 500px; margin: 0 auto; border: 1px solid var(--light-gray); }
.input-group input { flex: 1; padding: 15px; border: none; outline: none; background: #111; color: #fff; }
.sub-btn { background: var(--gold); color: var(--black); border: none; padding: 0 25px; cursor: pointer; text-transform: uppercase; font-weight: 700; }

.footer-bottom { background: #111; color: #555; padding: 20px; text-align: center; font-size: 0.7rem; border-top: 1px solid #1A1A1A; }

.mobile-icon { display:none; }

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    body { padding-top: 120px; }
    .nav-bar { display: none; }
/*            .header-main { height: 70px; }*/
    .header-main { height: 120px; }
    .brand-logo img { 
/*                height: 50px; */
        height: 120px; 
    }
    .prev-arrow { left: 5px; }
    .next-arrow { right: 5px; }
    .product-card { 
/*        min-width: 220px; */
        min-width: 160px; 
    }
    .heading-main { font-size: 1.4rem; }

    .mobile-icon { display:block; }
}

/* HIJAB LIST SECTION STYLES */
.hijab-grid-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: start;
}
.hijab-list {
    list-style: none;
    border-right: 1px solid var(--light-gray);
    padding-right: 20px;
}
.hijab-list-item {
    padding: 15px;
    border-bottom: 1px solid var(--light-gray);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    justify-content: space-between;
    align-items: center;
    opacity: 0.7;
}
.hijab-list-item:hover, .hijab-list-item.active {
    opacity: 1;
    background: #252525;
    color: var(--gold);
    padding-left: 25px;
}
.hijab-preview-box {
    position: sticky;
    top: 160px;
    background: var(--off-white);
    border: 1px solid var(--gold);
    padding: 20px;
    text-align: center;
}
.hijab-preview-box img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    margin-bottom: 15px;
}

/* T-SHIRT SECTION STYLES */
.tshirt-options {
    display: flex;
    gap: 10px;
    margin: 15px 0;
    justify-content: center;
}
.option-btn {
    background: transparent;
    border: 1px solid var(--light-gray);
    color: var(--white);
    padding: 5px 12px;
    font-size: 0.65rem;
    cursor: pointer;
    text-transform: uppercase;
    transition: var(--transition);
}
.option-btn.active {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}

@media (max-width: 768px) {
    .hijab-grid-container { grid-template-columns: 1fr; }
    .hijab-list { border-right: none; }
}


:root {
  --accent-color: #2c3e50;
  --text-light: #ffffff;
}

.category-grid {
  display: grid;
  gap: 15px;
  padding: 15px;
  max-width: 1200px;
  margin: 0 auto;
  /* Mobile Default: 2 per line */
  grid-template-columns: repeat(2, 1fr);
}

/* PC/Tablet: 3 per line */
@media (min-width: 768px) {
  .category-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }
}

.category-card {
  position: relative;
  height: 450px;
/*          height: 250px;*/
  border-radius: 12px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.category-card:hover {
  transform: translateY(-5px);
}

.category-overlay {
  width: 100%;
  padding: 20px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  text-align: center;
}

.category-overlay h3 {
  margin: 0 0 10px 0;
  font-family: 'Playfair Display', serif; /* Use a classy serif font */
  font-size: 1.1rem;
  color: var(--black);
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.shop-btn {
  display: inline-block;
  padding: 8px 18px;
  background: var(--gold);
  color: #333;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.shop-btn:hover {
  background: var(--accent-color);
  color: #fff;
}


.category-main-heading {
    text-align: center;
    text-transform: uppercase;
    margin: 50px auto 10px;
}

.category-grid {
    padding: 10px;
    margin-bottom: 40px; 
}





.hero-slider {
    position: relative;
    width: 100%;
    height: 100dvh; /* Adjust height as needed */
    overflow: hidden;
}

.slider-container {
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 20px;
    background: rgba(0, 0, 0, 0.2); /* Soft overlay for text readability */
    max-width: 800px;
}

.slide-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.slide-content p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 30px;
    font-weight: 300;
}

.slider-btn {
    display: inline-block;
    padding: 15px 40px;
    background-color: #fff;
    color: #000;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.slider-btn:hover {
    background-color: #000;
    color: #fff;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    padding: 15px;
    cursor: pointer;
    font-size: 20px;
}

.prev { left: 20px; }
.next { right: 20px; }

@media (max-width: 768px) {
    .slide-content h1 { font-size: 2rem; }
    .hero-slider { height: 30vh; }
}





/*NEW HEADER STYLES*/

.nav-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 15px 0;
    position: relative;
}

.nav-group {
    display: flex;
    gap: 30px;
    align-items: center;
    flex: 1; /* Allows groups to push the logo to the center */
}

.nav-group:first-child {
    justify-content: flex-end; /* Pushes left links toward the logo */
}

.nav-group:last-child {
    justify-content: flex-start; /* Pushes right links toward the logo */
}

.brand-logo-centered img {
    height: 80px; /* Adjust based on your logo design */
    transition: transform 0.3s ease;
}

.nav-item {
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    letter-spacing: 1.5px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
}

/* Header Icons Positioning */
.header-icons-right {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    gap: 20px;
}




.site-header {
    background-color: #1a1a1a; /* Dark theme as per image */
/*    padding: 20px 0;*/
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.nav-bar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
}

.nav-group {
    display: flex;
    gap: 35px;
    flex: 1; /* This ensures both sides take equal space */
}

.nav-group.left { justify-content: flex-end; margin-right: 40px; }
.nav-group.right { justify-content: flex-start; margin-left: 40px; }

.nav-item {
    color: #ffffff;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    transition: color 0.3s ease;
}

.nav-item:hover { color: #d4af37; /* Gold accent */ }

.logo-wrapper img {
    height: 70px;
    display: block;
}

.header-actions {
    display: flex;
    gap: 20px;
    flex: 1;
    justify-content: flex-end;
}

/* Visibility Utilities */
@media (max-width: 1024px) {
    .pc-only { display: none !important; }
    .nav-group.left, .nav-group.right { display: none; }
    .nav-bar-container { justify-content: space-between; }
}

@media (min-width: 1025px) {
    .mobile-menu-btn { display: none; }
}




/* PC Header Style */
.nav-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 60px; /* Increased padding for a luxury feel */
    position: relative;
    max-width: 1600px;
    margin: 0 auto;
}

/* Nav Groups take equal space to keep logo centered */
.nav-group {
    display: flex;
    gap: 40px;
    flex: 1; 
}

.nav-group.left {
    justify-content: flex-end;
    margin-right: 50px;
}

.nav-group.right {
    justify-content: flex-start;
    margin-left: 50px;
}

/* Logo Enlargement for PC */
.logo-central img {
    height: 120px; /* Enlarged as requested */
    width: auto;
    transition: transform 0.3s ease;
    display: block;
}

.logo-central:hover img {
    transform: scale(1.05); /* Subtle luxury interaction */
}

/* Nav Items Style */
.nav-item {
    color: #ffffff;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    white-space: nowrap;
}

/* Fixed Actions to the Right */
.header-actions {
    position: absolute;
    right: 60px;
    display: flex;
    gap: 25px;
    align-items: center;
}

.icon-btn svg {
    width: 22px;
    height: 22px;
    stroke: #ffffff;
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .pc-only { display: none !important; }
}



.header-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr; /* Left, Center, Right */
    align-items: center;
    padding: 10px 40px;
    background: #111; /* Match your dark theme */
    gap: 20px;
}

/* Nav Groups */
.nav-group {
    display: flex;
    gap: 25px;
    align-items: center;
}

.nav-group.left {
    justify-content: flex-end;
}

/* Center Logo enlargement */
.logo-central img {
    height: 120px; /* PC Large size */
    width: auto;
    display: block;
    padding: 0 30px;
}

/* Right Column (Nav + Icons) */
.right-col {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-actions {
    display: flex;
    gap: 20px;
    margin-left: 30px; /* Space between last menu item and first icon */
}

/* Ensure icons are white and visible */
.icon-btn, .icon-btn svg {
    background: none;
    border: none;
    color: #ffffff !important;
    stroke: #ffffff !important;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.nav-item {
    color: #fff;
    text-decoration: none;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.2px;
    white-space: nowrap;
}




/* Checkout Container Layout */
.checkout-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
    padding: 0 5%;
    align-items: start;
}

/* Luxury Form Inputs */
.checkout-section input, 
.checkout-section select {
    width: 100%;
    padding: 15px;
    background: transparent;
    border: 1px solid #333; /* Dark border for luxury look */
    color: #fff;
    margin-bottom: 20px;
    transition: 0.3s;
}

.checkout-section input:focus {
    border-color: var(--luxury-gold);
    outline: none;
}

/* Payment Method Cards */
.payment-method {
    border: 1px solid #333;
    padding: 20px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 15px;
}

.payment-method.active {
    border-color: var(--luxury-gold);
    background: rgba(212, 175, 55, 0.05); /* Very subtle gold tint */
}

/* Sticky Summary Box */
.summary-box {
    position: sticky;
    top: 100px;
    background: #111;
    padding: 30px;
    border: 1px solid #222;
}



/* Checkout Container Layout */
.checkout-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
    padding: 0 5%;
    align-items: start;
}

/* Luxury Form Inputs */
.checkout-section input, 
.checkout-section select {
    width: 100%;
    padding: 15px;
    background: #141414;
    border: 1px solid #ced4da;
    color: #fff;
    margin-bottom: 20px;
    transition: 0.3s;
    margin-top: 10px;
}

.checkout-section input:focus {
    border-color: var(--luxury-gold);
    outline: none;
}

/* Payment Method Cards */
.payment-method {
    border: 1px solid #333;
    padding: 20px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 15px;
}

.payment-method.active {
    border-color: var(--luxury-gold);
    background: rgba(212, 175, 55, 0.05); /* Very subtle gold tint */
}

/* Sticky Summary Box */
.summary-box {
    position: sticky;
    top: 100px;
    background: #111;
    padding: 30px;
    border: 1px solid #222;
}



/* Fix for the active payment selection */
.payment-method.active {
    border-color: var(--luxury-gold) !important;
    background: rgba(212, 175, 55, 0.1); /* Subtle gold tint */
}

/* Ensure radio buttons don't shrink */
.payment-method input[type="radio"] {
    flex-shrink: 0;
}

/* Luxury hover effect */
.payment-method:hover {
    border-color: #666;
    background: rgba(255, 255, 255, 0.05);
}


.confirm-order-btn {
    background-color: #c5a059;
}






/* 1. Base Hiding Logic */
.pc-only { display: grid; }
.pc-hidden { display: none; }
.mobile-sidebar { display: none; } /* Default hide for all screens */

@media (max-width: 991px) {
    .pc-only { display: none !important; }
    .pc-hidden { display: flex !important; }
    
    /* 2. Sidebar Positioning */
    .mobile-sidebar {
        display: flex; /* Show only on mobile */
        position: fixed;
        top: 0;
        left: 0;
        width: 280px;
        height: 100vh;
        background: #000;
        z-index: 9999;
        transform: translateX(-100%); /* Keeps it off-screen to the left */
        transition: transform 0.3s ease-in-out;
        flex-direction: column;
        padding: 20px;
    }

    .mobile-sidebar.active {
        transform: translateX(0); /* Slides it in when active */
    }

    /* 3. Overlay */
    .sidebar-overlay {
        position: fixed;
        top: 0; left: 0; width: 100%; height: 100%;
        background: rgba(0,0,0,0.7);
        display: none;
        z-index: 9998;
        backdrop-filter: blur(4px);
    }
    .sidebar-overlay.active { display: block; }

    /* 4. Hamburger & Sidebar Links */
    .hamburger span {
        display: block; width: 20px; height: 2px;
        background: #c5a059; margin: 4px 0;
    }
    .sidebar-link {
        color: #fff; text-decoration: none; display: block;
        padding: 15px 0; font-size: 13px; letter-spacing: 1px;
        border-bottom: 1px solid #1a1a1a;
    }
}


@media (max-width: 991px) {
    /* 1. Constrain the mobile logo container */
    .logo-mobile {
        flex: 1; /* Allows it to stay centered */
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 5px 0;
    }

    /* 2. Set a maximum size for the image itself */
    .logo-mobile img {
        height: 45px; /* Adjust this value to your liking */
        width: auto;  /* Maintains aspect ratio */
        max-width: 150px; /* Ensures it doesn't get too wide */
        object-fit: contain;
    }

    /* 3. Ensure the mobile header bar has enough space */
    .mobile-header {
        height: 70px; /* Gives the logo breathing room */
        padding: 10px 15px;
    }
}



@media (max-width: 991px) {
    /* Header Container */
    .mobile-header {
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        background: #000;
        height: 120px;
        padding: 0 15px;
        position: sticky;
        top: 0;
        z-index: 1000;
    }

    /* Clean Hamburger (No more white background) */
    .hamburger-toggle {
        background: transparent;
        border: none;
        padding: 10px 5px;
        cursor: pointer;
        display: flex;
        flex-direction: column;
        gap: 5px;
        width: 35px;
    }

    .hamburger-toggle span {
        display: block;
        width: 100%;
        height: 1.5px;
        background-color: #c5a059; /* Your brand gold */
        transition: 0.3s;
    }

    /* Logo Scaling & Clickable Area */
    .logo-mobile {
        max-width: 120px;
    }
    
    .logo-mobile a {
        display: block;
    }

    .logo-mobile img {
        height: 100px;
        width: auto;
        display: block;
        margin: 0 auto;
    }

    /* Cart Icon Visibility */
    .mobile-cart-btn {
        color: #fff; /* Ensures icon is white */
        position: relative;
        display: flex;
        align-items: center;
        text-decoration: none;
    }

    .mobile-badge {
        position: absolute;
        top: -8px;
        right: -8px;
        background: #c5a059;
        color: #000;
        font-size: 10px;
        font-weight: bold;
        width: 18px;
        height: 18px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}


/* Sidebar Header Layout */
.sidebar-header {
    display: flex;
    justify-content: space-between; /* Pushes Label to left, Button to right */
    align-items: center;
    padding: 10px 0 20px 0;
    margin-bottom: 20px;
    border-bottom: 1px solid #1a1a1a; /* Subtle separator */
}

/* Luxury Menu Label */
.menu-label {
    color: #555;
    font-size: 11px;
    letter-spacing: 3px;
    font-weight: 600;
}

/* Professional Close Button */
.close-btn {
    background: transparent; /* Removes the white box */
    border: none;
    color: #c5a059; /* Brand gold */
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.close-btn:hover {
    transform: rotate(90deg); /* Subtle luxury interaction */
    color: #fff;
}

/* Ensure the sidebar nav starts below the header */
.sidebar-nav {
    display: flex;
    flex-direction: column;
}





/* Styling for the remove button */
.icon-btn.remove-item {
    color: #ff4d4d; /* Red color */
    opacity: 1 !important; /* Make it fully visible */
    font-size: 20px;
    font-weight: bold;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

@media (max-width: 768px) {
    /* Stack the table rows */
    .cart-table, .cart-table tbody, .cart-table tr, .cart-table td {
        display: block !important;
        width: 100%;
    }

    .cart-item {
        position: relative; /* Essential for top-right positioning */
        padding: 20px 0;
        border-bottom: 1px solid #333;
    }

    /* Move the last cell (containing the X) to the top right */
    .cart-item td:last-child {
        position: absolute;
        top: 10px;
        right: 0;
        width: auto !important;
    }

    /* Clean up spacing for price and quantity */
    .cart-item td {
        padding: 5px 20px !important;
    }
}


.removeItem {
    background: #ff3b3b;
    width: 30px;
    opacity: 0.5;
    height: 30px;
    font-size: 20px;
}




/* --- Responsive Checkout Layout --- */

@media (max-width: 992px) {
    /* Switch main container to single column */
    .checkout-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px;
        margin-top: 30px;
    }

    /* Remove sticky position so summary follows the form */
    .summary-box {
        position: static;
        width: 100%;
        box-sizing: border-box;
    }

    /* Fix the Triple Grid (Area, Mobile, Email) to stack vertically */
    .form-row-grid-triple {
        display: flex;
        flex-direction: column;
        gap: 0; /* Gap handled by input margin-bottom */
    }

    /* Adjust section titles for better mobile spacing */
    .checkout-section-title {
        font-size: 1.4rem;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    /* Tighten padding for very small screens */
    .checkout-container {
        padding: 0 15px;
    }
    
    .summary-box {
        padding: 20px;
    }

    /* Ensure inputs don't zoom in on iOS (font-size should be 16px) */
    .checkout-section input, 
    .checkout-section select {
        font-size: 16px; 
    }
}





/* SELECT2 DARK LUXURY FIX */

.select2-container--default .select2-selection--single {
    background-color: transparent !important;
    border: 1px solid #444 !important;
    height: 40px !important;
    line-height: 60px !important;
    display: flex;
    align-items: center;
    padding-left: 10px;
    margin-bottom: 20px;
}

.select2-container--default .select2-selection__rendered {
    color: #fff !important;
    line-height: normal !important;
}

.select2-container--default .select2-selection__placeholder {
    color: #aaa !important;
}

.select2-dropdown {
    background-color: #111 !important;
    border: 1px solid #444 !important;
}

.select2-results__option {
    color: #fff !important;
}

.select2-results__option--highlighted {
    background-color: #c5a059 !important;
    color: #000 !important;
}

.select2-selection__arrow b {
    border-color: #fff transparent transparent transparent !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 40px !important;
}