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

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

:root {
    --gold: #c9a84c;
    --gold-light: #e8d5a3;
    --gold-dark: #8a6f2e;
    --cream: #faf8f3;
    --charcoal: #1a1a1a;
    --dark: #2c2c2c;
    --gray: #8a8a8a;
    --light-gray: #e8e4de;
    --bg-light: #f5f2ed;
    --white: #ffffff;
    /* Store color overrides come from welcome.blade.php inline style */
}

body {
    font-family: "Tajawal", "Montserrat", sans-serif;
    background: var(--cream);
    color: var(--dark);
    line-height: 1.7;
    overflow-x: hidden;
    direction: rtl;
}

.container { max-width:1380px; margin:0 auto; padding:0 24px; }

/* ============================================================
   ANNOUNCEMENT TICKER
   ============================================================ */
.luxury-ticker {
    background: var(--charcoal);
    color: var(--primary, var(--gold));
    padding: 9px 0;
    overflow: hidden;
    white-space: nowrap;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1200;
    border-bottom: 1px solid rgba(201,168,76,0.18);
    transition: transform 0.32s cubic-bezier(0.4,0,0.2,1);
    will-change: transform;
}

.luxury-ticker.ticker-hidden {
    transform: translateY(-100%);
}

.ticker-track {
    display: inline-flex;
    animation: tickerScroll 35s linear infinite;
    will-change: transform;
}

.ticker-track:hover { animation-play-state: paused; }

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 60px;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--primary, var(--gold));
}

.ticker-item i { font-size: 0.65rem; opacity: 0.7; }
.ticker-sep { color: rgba(201,168,76,0.4); font-size: 1rem; }

@keyframes tickerScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================================
   TOP BAR
   ============================================================ */
.top-bar {
    background: var(--white);
    color: var(--gray);
    padding: 8px 0;
    font-size: 0.82rem;
    border-bottom: 1px solid var(--light-gray);
    display: none;
}

/* ============================================================
   DESKTOP STICKY WRAPPER  (header + nav move as one unit)
   ============================================================ */
.desktop-header-wrap {
    position: sticky;
    top: var(--ticker-h, 0px);
    z-index: 150;
    box-shadow: 0 2px 20px rgba(0,0,0,0.09);
    transition: top 0.32s cubic-bezier(0.4,0,0.2,1);
}

/* ============================================================
   MAIN HEADER  (inside sticky wrapper — not sticky itself)
   ============================================================ */
.main-header {
    background: var(--white);
    padding: 16px 0;
    border-bottom: 1px solid var(--light-gray);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--dark);
    cursor: pointer;
    letter-spacing: 2px;
    transition: opacity 0.3s;
    display: flex;
    align-items: center;
}
.logo:hover { opacity: 0.8; }
.logo span { color: var(--primary, var(--gold)); }

.search-bar { flex:1; max-width:520px; position:relative; }

.search-bar input {
    width: 100%;
    padding: 11px 48px 11px 20px;
    border: 1.5px solid var(--light-gray);
    border-radius: 40px;
    font-size: 0.9rem;
    font-family: "Tajawal", sans-serif;
    background: var(--bg-light);
    transition: all 0.3s;
    color: var(--dark);
}

.search-bar input:focus {
    outline: none;
    border-color: var(--primary, var(--gold));
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}

.search-bar button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary, var(--gold));
    color: var(--white);
    border: none;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.search-bar button:hover { background: var(--primary-dark, var(--gold-dark)); transform: translateY(-50%) scale(1.08); }

.header-actions { display:flex; align-items:center; gap:22px; }

.contact-info { display:flex; flex-direction:column; font-size:0.78rem; }
.contact-info small { color: var(--gray); letter-spacing: 0.5px; }

.phone-number {
    color: var(--primary, var(--gold));
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: color 0.3s;
}
.phone-number:hover { color: var(--primary-dark, var(--gold-dark)); }

.header-icon {
    color: var(--dark);
    font-size: 1.3rem;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
}
.header-icon:hover { color: var(--primary, var(--gold)); transform: scale(1.1); }

.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--primary, var(--gold));
    color: var(--white);
    border-radius: 50%;
    width: 19px;
    height: 19px;
    font-size: 0.65rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.cart-display { display:flex; align-items:center; gap:6px; font-weight:600; font-size:0.9rem; color:var(--dark); }

/* ============================================================
   NAVIGATION  (inside sticky wrapper — not sticky itself)
   ============================================================ */
.main-nav {
    background: var(--charcoal);
    padding: 0;
}

.nav-content { display:flex; align-items:center; }

.menu-btn {
    background: var(--primary, var(--gold));
    color: var(--white);
    border: none;
    padding: 14px 22px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    position: relative;
}
.menu-btn:hover { background: var(--primary-dark, var(--gold-dark)); }

.nav-links { display:flex; list-style:none; gap:0; flex:1; }

.nav-links a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    padding: 14px 20px;
    display: block;
    font-weight: 400;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s;
    position: relative;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary, var(--gold));
    transition: width 0.3s;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 60%; }

.categories-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    z-index: 1000;
    min-width: 260px;
    border-radius: 0 0 10px 10px;
    margin-top: 0;
    border-top: 2px solid var(--primary, var(--gold));
}

.categories-dropdown-rtl { right:0; left:auto; }

.categories-dropdown-content { padding: 8px 0; }

.category-dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 20px;
    color: var(--dark);
    text-decoration: none;
    font-size: 0.88rem;
    transition: all 0.25s;
}
.category-dropdown-item:hover {
    background: var(--bg-light);
    color: var(--primary, var(--gold));
    padding-right: 26px;
}
.product-count { margin-right:auto; color:var(--gray); font-size:0.78rem; }

/* ============================================================
   HERO SLIDER
   ============================================================ */
.luxury-slider {
    position: relative;
    width: 100%;
    height: 580px;
    overflow: hidden;
    background: var(--charcoal);
}

.slider-track { display:flex; width:100%; height:100%; }

.slide {
    min-width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.slide img, .slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 8s ease;
}

.slide.active img, .slide.active video { transform: scale(1.04); }

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10,10,10,0.65) 0%, rgba(10,10,10,0.25) 60%, transparent 100%);
}

.slide-content {
    position: absolute;
    bottom: 15%;
    right: 8%;
    text-align: right;
    color: var(--white);
    max-width: 520px;
    animation: slideUp 0.8s ease both;
}

@keyframes slideUp {
    from { opacity:0; transform:translateY(30px); }
    to   { opacity:1; transform:translateY(0); }
}

.slide-eyebrow {
    font-size: 0.7rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--primary, var(--gold));
    margin-bottom: 14px;
    display: block;
}

.slide-title {
    font-family: "Cormorant Garamond", serif;
    font-size: 3.6rem;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 14px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.slide-subtitle {
    font-size: 1rem;
    font-weight: 300;
    opacity: 0.88;
    margin-bottom: 28px;
    line-height: 1.6;
}

.slide-btn {
    display: inline-block;
    background: transparent;
    color: var(--white);
    border: 1.5px solid var(--primary, var(--gold));
    padding: 13px 38px;
    font-size: 0.78rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.35s;
    cursor: pointer;
}
.slide-btn:hover {
    background: var(--primary, var(--gold));
    color: var(--white);
    border-color: var(--primary, var(--gold));
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201,168,76,0.35);
}

.slider-dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,0.6);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s;
}
.dot.active { background: var(--primary, var(--gold)); border-color: var(--primary, var(--gold)); width:22px; border-radius:4px; }

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.25);
    color: var(--white);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: all 0.3s;
    z-index: 10;
    backdrop-filter: blur(4px);
}
.slider-arrow:hover { background: var(--primary, var(--gold)); border-color: var(--primary, var(--gold)); }
.slider-arrow.prev { right: 20px; }
.slider-arrow.next { left: 20px; }

/* Default hero (when no banners) */
.hero {
    background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.45)),
                url('/images/bg.jpeg') center/cover no-repeat;
    color: var(--white);
    padding: 120px 0;
    text-align: center;
}
.hero h1 {
    font-family: "Cormorant Garamond", serif;
    font-size: 4rem;
    font-weight: 300;
    margin-bottom: 18px;
    letter-spacing: 3px;
}
.hero p { font-size:1.1rem; max-width:600px; margin:0 auto 32px; opacity:0.9; font-weight:300; }
.btn {
    display: inline-block;
    background: transparent;
    color: var(--white);
    border: 1.5px solid var(--primary, var(--gold));
    padding: 14px 42px;
    font-size: 0.78rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.35s;
    cursor: pointer;
}
.btn:hover { background: var(--primary, var(--gold)); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,0.3); }

/* ============================================================
   SECTION TITLES
   ============================================================ */
.section { padding: 72px 0; }

.section-title {
    font-family: "Cormorant Garamond", serif;
    text-align: center;
    font-size: 2.6rem;
    font-weight: 400;
    margin-bottom: 8px;
    color: var(--dark);
    letter-spacing: 1px;
}

.section-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 1.5px;
    background: var(--primary, var(--gold));
    margin: 16px auto 0;
}

.section-subtitle {
    text-align: center;
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 52px;
    font-weight: 400;
}

/* ============================================================
   PRODUCT CARDS — LUXURY BIJOUX
   ============================================================ */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 18px;
}

.product-card {
    background: var(--white);
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: all 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    border: 1px solid transparent;
}
.product-card:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,0.13);
    border-color: var(--light-gray);
    transform: translateY(-6px);
}

.product-image {
    position: relative;
    background: var(--bg-light);
    height: 240px;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94);
}
.product-card:hover .product-image img { transform: scale(1.08); }

.product-discount {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--primary, var(--gold));
    color: var(--white);
    font-weight: 700;
    font-size: 0.6rem;
    letter-spacing: 0.5px;
    padding: 4px 8px;
    border: none;
    text-transform: uppercase;
}

.add-to-cart-btn {
    position: absolute;
    bottom: 10px;
    left: 10px;
    width: 34px;
    height: 34px;
    background: var(--charcoal);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(6px);
}
.product-card:hover .add-to-cart-btn { opacity:1; transform:translateY(0); }
.add-to-cart-btn:hover { background: var(--primary, var(--gold)); transform: scale(1.1) !important; }

.discount-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--primary, var(--gold));
    color: var(--white);
    padding: 5px 10px;
    font-weight: 700;
    font-size: 0.7rem;
    border-radius: 2px;
}

.product-info { padding: 16px 14px 18px; display:flex; flex-direction:column; gap:6px; flex:1; }

.product-name-container { display:flex; justify-content:space-between; align-items:flex-start; }

.product-name {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--dark);
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 130px;
    letter-spacing: 0.3px;
}

.product-evaluation {
    display: flex;
    align-items: center;
    gap: 2px;
    flex-shrink: 0;
    flex-wrap: nowrap;
}
.product-evaluation i { font-size:0.65rem; color:var(--primary, var(--gold)); }

.product-desc-container { display:flex; gap:6px; align-items:center; }

.product-offer {
    background: var(--primary, var(--gold));
    color: var(--white);
    border: none;
    font-size: 0.58rem;
    padding: 2px 7px;
    border-radius: 2px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-desc {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 0.7rem;
    color: var(--gray);
    max-width: 200px;
}

.product-prices { display:flex; align-items:center; gap:10px; margin-top:4px; }

.old-price { text-decoration:line-through; color:var(--gray); font-size:0.85rem; }

.new-price {
    color: var(--primary, var(--gold));
    font-weight: 700;
    font-size: 1.15rem;
    letter-spacing: 0.5px;
}

/* ============================================================
   CATEGORIES
   ============================================================ */
.categories-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(240px,1fr)); gap:20px; }

.category-card {
    background: var(--white);
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: all 0.35s;
    cursor: pointer;
}
.category-card:hover { transform:translateY(-6px); box-shadow:0 12px 32px rgba(0,0,0,0.12); }

.category-img {
    height: 180px;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    color: var(--primary, var(--gold));
    overflow: hidden;
}
.category-img img { width:100%; height:100%; object-fit:cover; transition:transform 0.5s; }
.category-card:hover .category-img img { transform:scale(1.06); }

.category-info { padding:20px; text-align:center; }
.category-info h3 { font-family:"Cormorant Garamond",serif; font-size:1.2rem; margin-bottom:6px; color:var(--dark); font-weight:400; }
.category-info p { color:var(--gray); font-size:0.8rem; letter-spacing:0.5px; }

/* ============================================================
   CART MODAL
   ============================================================ */
.cart-modal { display:none; position:fixed; top:0; left:0; width:100%; height:100%; z-index:2000; }
.cart-modal.active { display:block; }
.cart-overlay { position:absolute; top:0; left:0; width:100%; height:100%; background:rgba(0,0,0,0.55); }
.cart-content {
    position: absolute;
    right: 0; top: 0;
    height: 100%;
    width: 420px;
    max-width: 92%;
    background: var(--white);
    box-shadow: -4px 0 30px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    animation: slideIn 0.35s cubic-bezier(0.25,0.46,0.45,0.94);
}
@keyframes slideIn { from{transform:translateX(100%)} to{transform:translateX(0)} }

.cart-header {
    padding: 22px 24px;
    border-bottom: 1px solid var(--light-gray);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.cart-header h2 { font-family:"Cormorant Garamond",serif; font-size:1.5rem; font-weight:400; color:var(--dark); }
.cart-close { background:none; border:none; font-size:1.8rem; cursor:pointer; color:var(--gray); transition:color 0.3s; }
.cart-close:hover { color:var(--dark); }

.cart-body { flex:1; overflow-y:auto; padding:18px; }
.cart-item { padding:18px 0; border-bottom:1px solid var(--light-gray); display:flex; gap:14px; }
.cart-item-image { width:72px; height:72px; background:var(--bg-light); display:flex; align-items:center; justify-content:center; font-size:1.8rem; color:var(--gray); flex-shrink:0; }
.cart-item-details { flex:1; }
.cart-item-name { font-weight:500; margin-bottom:6px; font-size:0.9rem; }
.cart-item-price { color:var(--primary,var(--gold)); font-weight:700; font-size:1rem; }
.cart-item-remove { background:none; border:1px solid var(--light-gray); color:var(--gray); padding:5px 12px; border-radius:3px; cursor:pointer; font-size:0.8rem; margin-top:8px; transition:all 0.3s; }
.cart-item-remove:hover { background:var(--charcoal); color:var(--white); border-color:var(--charcoal); }

.cart-footer { padding:22px 24px; border-top:2px solid var(--primary,var(--gold)); background:var(--bg-light); }
.cart-total { font-size:1.3rem; font-weight:700; text-align:right; margin-bottom:18px; }
.cart-total span { color:var(--primary,var(--gold)); }

.checkout-btn {
    width: 100%;
    background: var(--primary, var(--gold));
    color: var(--white);
    border: none;
    padding: 15px;
    font-weight: 600;
    cursor: pointer;
    font-size: 0.82rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s;
}
.checkout-btn:hover { background:var(--primary-dark,var(--gold-dark)); }

.empty-cart { text-align:center; padding:70px 20px; color:var(--gray); }
.empty-cart-icon { font-size:4rem; margin-bottom:18px; opacity:0.2; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: var(--charcoal);
    color: #aaa;
    padding: 64px 0 24px;
    margin-top: 80px;
}

.footer-content { display:grid; grid-template-columns:repeat(auto-fit,minmax(230px,1fr)); gap:40px; margin-bottom:40px; }

.footer-column h3 {
    font-family: "Cormorant Garamond", serif;
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.15rem;
    font-weight: 400;
    letter-spacing: 1px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(201,168,76,0.3);
}

.footer-links { list-style:none; }
.footer-links li { margin-bottom:10px; }
.footer-links a { color:#999; text-decoration:none; font-size:0.85rem; transition:all 0.3s; display:inline-block; }
.footer-links a:hover { color:var(--primary,var(--gold)); transform:translateX(-4px); }

.social-links { display:flex; gap:10px; margin-top:18px; }
.social-link { width:38px; height:38px; background:rgba(255,255,255,0.07); display:flex; align-items:center; justify-content:center; color:var(--white); text-decoration:none; transition:all 0.3s; font-size:0.9rem; }
.social-link:hover { background:var(--primary,var(--gold)); transform:translateY(-3px); }

.subscribe-form { display:flex; margin-top:14px; }
.subscribe-form input { flex:1; padding:11px 14px; border:none; background:rgba(255,255,255,0.08); color:var(--white); font-size:0.85rem; }
.subscribe-form input::placeholder { color:#666; }
.subscribe-form button { background:var(--primary,var(--gold)); color:var(--white); border:none; padding:0 20px; cursor:pointer; transition:background 0.3s; }
.subscribe-form button:hover { background:var(--primary-dark,var(--gold-dark)); }

.copyright { text-align:center; padding-top:24px; border-top:1px solid rgba(255,255,255,0.07); color:#666; font-size:0.8rem; letter-spacing:0.5px; }

/* ============================================================
   SUCCESS MESSAGE & SCROLL TOP
   ============================================================ */
.success-message {
    position: fixed;
    top: 100px;
    left: 50%;
    transform: translateX(-50%) translateY(-20px);
    background: var(--charcoal);
    color: var(--white);
    padding: 14px 28px;
    border-radius: 4px;
    border-left: 3px solid var(--primary, var(--gold));
    box-shadow: 0 6px 24px rgba(0,0,0,0.25);
    z-index: 3000;
    display: none;
    font-size: 0.88rem;
    letter-spacing: 0.5px;
    white-space: nowrap;
}
.success-message.show { display:block; animation: fadeInDown 0.4s ease both; }
@keyframes fadeInDown { from{opacity:0;transform:translateX(-50%) translateY(-20px)} to{opacity:1;transform:translateX(-50%) translateY(0)} }

.scroll-top {
    position: fixed;
    bottom: 28px;
    left: 28px;
    background: var(--primary, var(--gold));
    color: var(--white);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: 0 4px 16px rgba(201,168,76,0.4);
    z-index: 500;
    transition: all 0.3s;
}
.scroll-top.show { display:flex; }
.scroll-top:hover { background:var(--primary-dark,var(--gold-dark)); transform:translateY(-3px); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
    .desktop-only { display:none !important; }
    /* Add body top padding equal to the fixed mobile header height */
    body { padding-top: var(--mobile-header-h, 96px); }

    .luxury-slider { height: 300px; }
    .slide-title { font-size: 2.2rem; }
    .slide-content { right: 5%; max-width: 90%; }

    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .product-image { height: 180px; }

    .add-to-cart-btn { opacity:1; transform:translateY(0); width:30px; height:30px; }

    .section-title { font-size:1.9rem; }

    .hero h1 { font-size: 2.2rem; }
}

@media (min-width: 769px) {
    .mobile-header, .mobile-menu, .mobile-menu-overlay { display:none !important; }
}

/* Cart qty buttons */
.qty-btn { background:var(--charcoal); color:var(--white); border:none; width:28px; height:28px; border-radius:3px; cursor:pointer; font-weight:bold; }
.qty-btn:hover { background:var(--primary,var(--gold)); }
.cart-item-total { font-weight:700; color:var(--primary,var(--gold)); margin-top:4px; font-size:0.95rem; }

/* Store/banner section */
.banner-section { padding:50px 0; }
.banner-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(280px,1fr)); gap:20px; }
