:root {
    --bg: #ffffff;
    --black: #0a0a0a;
    --black-soft: #1a1a1a;
    --gold: #04195f;                /* primary navy */
    --gold-dark: #002067;           /* primary dark */
    --gold-light: #3B6ECB;          /* primary light */
    --champagne: #FFF3E0;           /* warm light accent */
    --gray-50: #fafafa;
    --gray-100: #f5f5f5;
    --gray-200: #eeeeee;
    --gray-300: #e0e0e0;
    --gray-400: #bdbdbd;
    --gray-500: #9e9e9e;
    --gray-600: #757575;
    --gray-700: #424242;
    --gray-800: #2d2d2d;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.08);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.12);
    --shadow-gold: 0 8px 32px rgba(30, 76, 154, 0.15);
    --radius-sm: 8px;
    --radius: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scrollbar-width: thin; scrollbar-color: #1E4C9A #f5f5f5; }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #f5f5f5; }
::-webkit-scrollbar-thumb { background: #1E4C9A; border-radius: 3px; }
body { font-family: 'Inter', 'Poppins', sans-serif; background: var(--bg); color: var(--black); line-height: 1.6; overflow-x: hidden; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

/* ========== NAVIGATION ========== */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(255, 255, 255, 0.92); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid rgba(0, 0, 0, 0.04); transition: var(--transition); padding: 0 2rem; }
.navbar.scrolled { box-shadow: var(--shadow-md); }
.nav-inner { max-width: 1400px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav-actions { display: flex; align-items: center; gap: 1rem; }
.btn-icon { background: none; border: none; cursor: pointer; font-size: 1.3rem; color: var(--gray-700); position: relative; transition: var(--transition); padding: 8px; border-radius: 50%; }
.btn-icon:hover { color: var(--black); background: var(--gray-100); }
.cart-count { position: absolute; top: 2px; right: 2px; background: var(--gold); color: #fff; font-size: 0.65rem; font-weight: 700; width: 18px; height: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.cart-count.pulse { animation: cartPulse 0.4s ease; }
@keyframes cartPulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.4); } }
.mobile-menu-btn { display: block; background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--black); }

/* ========== HERO SLIDER ========== */
.hero { min-height: 100vh; display: flex; align-items: center; padding: 80px 2rem 60px; position: relative; overflow: hidden; background: linear-gradient(180deg, #ffffff 0%, #fafafa 40%, #f7f7f8 100%); }
.hero-bg-pattern { position: absolute; top: -100px; right: -200px; width: 700px; height: 700px; border-radius: 50%; background: radial-gradient(circle, rgba(30,76,154,0.03) 0%, transparent 70%); pointer-events: none; }
.hero-bg-pattern2 { position: absolute; bottom: -150px; left: -100px; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(30,76,154,0.02) 0%, transparent 70%); pointer-events: none; }
.hero-slider-wrap { position: absolute; top: 0; left: 0; right: 0; bottom: 0; z-index: 0; }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1s ease-in-out; }
.hero-slide.active { opacity: 1; }
.hero-slide-bg { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.3); }
.hero-inner { max-width: 1400px; margin: 0 auto; width: 100%; position: relative; z-index: 2; }
.hero-text { animation: fadeInUp 0.8s ease; text-align: center; }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(30,76,154,0.06); color: var(--gold); font-weight: 600; font-size: 0.8rem; letter-spacing: 2px; text-transform: uppercase; padding: 8px 16px; border-radius: 25px; margin-bottom: 1.5rem; }
.hero-badge .dot { width: 8px; height: 8px; background: var(--gold); border-radius: 50%; animation: blink 1.5s infinite; }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
.hero h1 { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: clamp(2.5rem, 5vw, 4rem); letter-spacing: -1px; line-height: 1.1; margin-bottom: 0.5rem; color: #fff; }
.hero h1 .highlight { color: var(--gold); position: relative; }
.hero-subtitle { font-size: 1.2rem; color: rgba(255,255,255,0.85); font-weight: 400; margin-bottom: 2rem; max-width: 600px; line-height: 1.5; margin-left: auto; margin-right: auto; }
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }
.btn-primary { background: var(--black); color: #fff; border: none; padding: 14px 28px; border-radius: 30px; font-weight: 600; font-size: 0.95rem; cursor: pointer; letter-spacing: 0.3px; transition: var(--transition); font-family: 'Inter', sans-serif; display: inline-flex; align-items: center; gap: 8px; }
.btn-primary:hover { background: #1a1a1a; box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.btn-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.5); padding: 14px 28px; border-radius: 30px; font-weight: 600; font-size: 0.95rem; cursor: pointer; letter-spacing: 0.3px; transition: var(--transition); font-family: 'Inter', sans-serif; display: inline-flex; align-items: center; gap: 8px; }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); background: rgba(30,76,154,0.08); }
.btn-gold { background: var(--gold); color: #fff; border: none; padding: 14px 28px; border-radius: 30px; font-weight: 600; font-size: 0.95rem; cursor: pointer; letter-spacing: 0.3px; transition: var(--transition); font-family: 'Inter', sans-serif; display: inline-flex; align-items: center; gap: 8px; box-shadow: var(--shadow-gold); }
.btn-gold:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 12px 36px rgba(30,76,154,0.25); }
.btn-accent { background: #ED7A11; color: #fff; border: none; padding: 14px 28px; border-radius: 30px; font-weight: 600; font-size: 0.95rem; cursor: pointer; letter-spacing: 0.3px; transition: var(--transition); font-family: 'Inter', sans-serif; display: inline-flex; align-items: center; gap: 8px; box-shadow: 0 8px 32px rgba(237,122,17,0.15); }
.btn-accent:hover { background: #C45E0A; transform: translateY(-2px); box-shadow: 0 12px 36px rgba(237,122,17,0.25); }
.hero-stats-row { display: flex; gap: 2rem; margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.2); justify-content: center; }
.hero-stat h3 { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 1.6rem; color: #fff; letter-spacing: -0.5px; }
.hero-stat p { font-size: 0.8rem; color: rgba(255,255,255,0.7); font-weight: 500; }
.hero-dots { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); display: flex; gap: 10px; z-index: 3; }
.hero-dot { width: 12px; height: 12px; border-radius: 50%; background: rgba(255,255,255,0.4); cursor: pointer; transition: var(--transition); }
.hero-dot.active { background: var(--gold); box-shadow: 0 0 8px rgba(30,76,154,0.5); }

/* ========== SECTION COMMONS ========== */
.section-inner { max-width: 1300px; margin: 0 auto; }
.section-label { font-weight: 700; font-size: 0.75rem; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 0.75rem; display: flex; align-items: center; gap: 10px; }
.section-label::before { content: ''; width: 30px; height: 2px; background: var(--gold); border-radius: 1px; }
.section-title { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: clamp(1.8rem, 3vw, 2.6rem); letter-spacing: -0.5px; margin-bottom: 1rem; color: var(--black); }
.section-desc { color: var(--gray-600); font-size: 1rem; max-width: 600px; line-height: 1.6; }

/* ========== ABOUT SECTION ========== */
.about-section { background: #fff; padding: 100px 2rem; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-image-wrapper { position: relative; border-radius: var(--radius-xl); overflow: hidden; aspect-ratio: 4/3; box-shadow: var(--shadow-xl); }
.about-image-wrapper img { width: 100%; height: 100%; object-fit: contain; }
.about-image-badge { position: absolute; bottom: 24px; right: 24px; background: #fff; padding: 12px 20px; border-radius: var(--radius); box-shadow: var(--shadow-lg); font-weight: 700; font-size: 0.85rem; display: flex; align-items: center; gap: 8px; color: var(--black); }
.about-image-badge i { color: #f59e0b; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1.5rem; }
.about-feat-card { background: var(--gray-50); padding: 1.2rem; border-radius: var(--radius); transition: var(--transition); border: 1px solid transparent; cursor: default; }
.about-feat-card:hover { border-color: var(--gray-200); box-shadow: var(--shadow-md); background: #fff; }
.about-feat-icon { font-size: 1.5rem; color: var(--gold); margin-bottom: 0.5rem; }
.about-feat-card h4 { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.9rem; margin-bottom: 4px; }
.about-feat-card p { font-size: 0.8rem; color: var(--gray-500); line-height: 1.4; }

/* ========== PRODUCTS SECTION ========== */
.products-section { background: var(--gray-50); padding: 100px 2rem; }
.products-header { text-align: center; margin-bottom: 3rem; }
.products-header .section-label { justify-content: center; }
.products-header .section-label::before { display: none; }
.products-header .section-label::after { content: ''; width: 30px; height: 2px; background: var(--gold); border-radius: 1px; }
.products-filter { display: flex; justify-content: center; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.filter-pill { padding: 8px 18px; border-radius: 25px; border: 1.5px solid var(--gray-300); background: #fff; cursor: pointer; font-weight: 500; font-size: 0.85rem; transition: var(--transition); font-family: 'Inter', sans-serif; color: var(--gray-600); }
.filter-pill.active { background: #C45E0A; color: #fff; border-color: #C45E0A;}
.filter-pill:hover { background: rgba(197, 94, 10, 0.08); border-color: #C45E0A; color: #0a0a0a;}
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.5rem; }
.product-card { background: #fff; border-radius: var(--radius-lg); overflow: hidden; transition: var(--transition-slow); position: relative; border: 1px solid transparent; cursor: pointer; }
.product-card:hover { box-shadow: var(--shadow-xl); border-color: var(--gray-200); transform: translateY(-4px); }
.product-image-wrap { position: relative; aspect-ratio: 1/1.15; overflow: hidden; background: #f8f8f8; }
.product-image-wrap img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition-slow); }
.product-card:hover .product-image-wrap img { transform: scale(1.06); }
.product-badge { position: absolute; top: 12px; left: 12px; background: var(--black); color: #fff; padding: 5px 12px; border-radius: 20px; font-size: 0.7rem; font-weight: 700; letter-spacing: 1px; z-index: 2; }
.product-badge.hot { background: var(--gold); color: #000; }
.product-info { padding: 1rem 1.2rem 1.2rem; }
.product-category { font-size: 0.7rem; color: var(--gray-500); text-transform: uppercase; letter-spacing: 1.5px; font-weight: 600; margin-bottom: 4px; }
.product-name { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 1rem; margin-bottom: 6px; color: var(--black); }
.product-price { font-weight: 700; font-size: 1.1rem; color: var(--gold); margin-bottom: 0.75rem; }
.product-price .old-price { text-decoration: line-through; color: var(--gray-400); font-weight: 500; font-size: 0.85rem; margin-left: 6px; }
.btn-add-cart { width: 100%; padding: 10px; border-radius: 25px; border: 1.5px solid var(--black); background: #fff; cursor: pointer; font-weight: 600; font-size: 0.85rem; transition: var(--transition); font-family: 'Inter', sans-serif; letter-spacing: 0.3px; color: var(--black); }
.btn-add-cart:hover { background: var(--black); color: #fff; }
.product-quick-view { position: absolute; bottom: 50%; left: 50%; transform: translate(-50%, 50%) scale(0.8); background: rgba(0, 0, 0, 0.85); color: #fff; border: none; padding: 10px 20px; border-radius: 25px; font-weight: 600; font-size: 0.8rem; cursor: pointer; opacity: 0; transition: var(--transition); pointer-events: none; z-index: 3; white-space: nowrap; letter-spacing: 0.5px; }
.product-card:hover .product-quick-view { opacity: 1; pointer-events: auto; transform: translate(-50%, -50%) scale(1); }

/* ========== TESTIMONIALS ========== */
.testimonials-section { background: var(--gray-50); padding: 100px 2rem; }
.testimonials-header { text-align: center; margin-bottom: 3rem; }
.testimonials-slider { display: flex; gap: 1.5rem; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 1rem; scrollbar-width: none; }
.testimonials-slider::-webkit-scrollbar { display: none; }
.testimonial-card { min-width: 300px; max-width: 450px; flex-shrink: 0; background: #fff; padding: 2rem; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); scroll-snap-align: start; transition: var(--transition); border: 1px solid transparent; }
.testimonial-card:hover { box-shadow: var(--shadow-lg); border-color: var(--gray-200); }
.testimonial-stars { color: #f59e0b; font-size: 0.9rem; margin-bottom: 1rem; letter-spacing: 2px; }
.testimonial-text { font-size: 0.95rem; color: var(--gray-700); line-height: 1.6; margin-bottom: 1.5rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--gray-300); overflow: hidden; flex-shrink: 0; }
.testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-author h4 { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.9rem; }
.testimonial-author p { font-size: 0.75rem; color: var(--gray-500); }

/* ========== CONTACT SECTION ========== */
.contact-section { background: var(--gray-50); padding: 100px 2rem; }
.contact-single-card { max-width: 600px; margin: 0 auto; background: #fff; padding: 2rem; border-radius: var(--radius-xl); box-shadow: var(--shadow-sm); border: 1px solid var(--gray-100); }
.contact-info-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; }
.contact-icon { font-size: 1.3rem; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.contact-info-item h4 { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.9rem; margin-bottom: 2px; }
.contact-info-item p { font-size: 0.85rem; color: var(--gray-600); }
.whatsapp-btn { display: inline-flex; align-items: center; gap: 8px; background: #25d366; color: #fff; padding: 12px 22px; border-radius: 30px; text-decoration: none; font-weight: 600; font-size: 0.9rem; transition: var(--transition); margin-top: 0.5rem; }
.whatsapp-btn:hover { background: #1fb855; box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3); transform: translateY(-2px); }

/* ========== CHECKOUT MODAL ========== */
.checkout-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 4000; opacity: 0; pointer-events: none; transition: var(--transition); }
.checkout-overlay.open { opacity: 1; pointer-events: auto; }
.checkout-modal { position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%) scale(0.95); background: #fff; z-index: 4001; width: 90vw; max-width: 900px; max-height: 85vh; border-radius: var(--radius-xl); box-shadow: var(--shadow-xl); transition: var(--transition); opacity: 0; pointer-events: none; overflow-y: auto; }
.checkout-modal.open { opacity: 1; pointer-events: auto; transform: translate(-50%, -50%) scale(1); }
.checkout-modal-header { padding: 1.5rem; border-bottom: 1px solid var(--gray-200); display: flex; justify-content: space-between; align-items: center; }
.checkout-modal-header h3 { font-family: 'Montserrat', sans-serif; font-weight: 800; }
.checkout-modal-body { padding: 1.5rem; display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 2rem; }
.order-form-wrap h3 { font-family: 'Montserrat', sans-serif; font-weight: 800; margin-bottom: 1rem; font-size: 1.1rem; }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-weight: 600; font-size: 0.85rem; margin-bottom: 4px; }
.form-group input, .form-group select { width: 100%; padding: 12px 16px; border: 1.5px solid var(--gray-300); border-radius: var(--radius-sm); font-family: 'Inter', sans-serif; font-size: 0.9rem; transition: var(--transition); background: #fff; }
.form-group input:focus, .form-group select:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(30,76,154,0.06); }
.payment-options { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem; }
.payment-option { padding: 12px; border: 1.5px solid var(--gray-300); border-radius: var(--radius-sm); cursor: pointer; text-align: center; font-weight: 600; font-size: 0.8rem; transition: var(--transition); background: #fff; display: flex; align-items: center; justify-content: center; gap: 6px; }
.payment-option:hover, .payment-option.selected { border-color: var(--gold); background: rgba(30,76,154,0.03); color: var(--gold); }
.order-summary-card { background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 1.5rem; }
.order-summary-card h3 { font-family: 'Montserrat', sans-serif; font-weight: 800; margin-bottom: 1rem; }
.cart-item-mini { display: flex; align-items: center; gap: 0.75rem; padding: 0.75rem 0; border-bottom: 1px solid var(--gray-100); }
.cart-item-mini img { width: 50px; height: 60px; object-fit: cover; border-radius: 6px; background: #f8f8f8; }
.cart-item-mini .item-details { flex: 1; }
.cart-item-mini h5 { font-size: 0.85rem; font-weight: 600; }
.cart-item-mini .item-price { font-weight: 700; color: var(--gold); font-size: 0.85rem; }
.summary-total { font-weight: 800; font-size: 1.3rem; margin-top: 1rem; display: flex; justify-content: space-between; }
.btn-place-order { width: 100%; padding: 14px; background: var(--gold); color: #fff; border: none; border-radius: 30px; font-weight: 700; font-size: 1rem; cursor: pointer; margin-top: 1rem; transition: var(--transition); font-family: 'Inter', sans-serif; letter-spacing: 0.5px; box-shadow: var(--shadow-gold); }
.btn-place-order:hover { background: var(--gold-dark); box-shadow: 0 12px 36px rgba(30,76,154,0.3); transform: translateY(-2px); }

/* ========== CART SIDEBAR ========== */
.cart-overlay { position: fixed; inset: 0; background: rgba(0, 0, 0, 0.5); z-index: 2000; opacity: 0; pointer-events: none; transition: var(--transition); }
.cart-overlay.open { opacity: 1; pointer-events: auto; }
.cart-sidebar { position: fixed; top: 0; right: -420px; width: 400px; max-width: 90vw; height: 100vh; background: #fff; z-index: 2001; box-shadow: var(--shadow-xl); transition: var(--transition-slow); display: flex; flex-direction: column; border-radius: var(--radius-xl) 0 0 var(--radius-xl); }
.cart-sidebar.open { right: 0; }
.cart-header { padding: 1.5rem; border-bottom: 1px solid var(--gray-200); display: flex; justify-content: space-between; align-items: center; }
.cart-header h3 { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 1.1rem; }
.cart-close { background: none; border: none; font-size: 1.3rem; cursor: pointer; color: var(--gray-600); transition: var(--transition); }
.cart-close:hover { color: var(--gold); }
.cart-items-list { flex: 1; overflow-y: auto; padding: 1rem 1.5rem; }
.cart-empty { text-align: center; padding: 3rem 1rem; color: var(--gray-500); }
.cart-footer { padding: 1.5rem; border-top: 1px solid var(--gray-200); }
.cart-footer .total { display: flex; justify-content: space-between; font-weight: 800; font-size: 1.1rem; margin-bottom: 1rem; }
.btn-checkout { width: 100%; padding: 14px; background: var(--black); color: #fff; border: none; border-radius: 30px; font-weight: 700; cursor: pointer; transition: var(--transition); font-family: 'Inter', sans-serif; letter-spacing: 0.5px; font-size: 0.95rem; }
.btn-checkout:hover { background: #1a1a1a; box-shadow: var(--shadow-lg); }
.cart-item-row { display: flex; align-items: center; gap: 0.75rem; padding: 0.75rem 0; border-bottom: 1px solid var(--gray-100); }
.cart-item-row img { width: 55px; height: 65px; object-fit: cover; border-radius: 8px; background: #f8f8f8; }
.cart-item-row .qty-control { display: flex; align-items: center; gap: 6px; margin-top: 4px; }
.qty-btn { width: 26px; height: 26px; border-radius: 50%; border: 1px solid var(--gray-300); background: #fff; cursor: pointer; font-weight: 700; font-size: 0.8rem; transition: var(--transition); display: flex; align-items: center; justify-content: center; }
.qty-btn:hover { background: var(--black); color: #fff; border-color: var(--black); }
.remove-item { background: none; border: none; color: #ccc; cursor: pointer; font-size: 0.9rem; transition: var(--transition); padding: 4px; }
.remove-item:hover { color: var(--gold); }

/* ========== FOOTER ========== */
.footer { background: #051650; color: #fff; padding: 60px 2rem 30px; }
.footer-inner { max-width: 1300px; margin: 0 auto; display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 3rem; }
.footer-desc { color: rgba(255,255,255,0.85); font-size: 0.85rem; margin-top: 0.75rem; line-height: 1.6; }
.footer h4 { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.95rem; margin-bottom: 1rem; color: #fff; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 0.5rem; }
.footer ul li a { color: rgba(255,255,255,0.85); text-decoration: none; font-size: 0.85rem; transition: var(--transition); }
.footer ul li a:hover { color: #fff; }
.footer-social { display: flex; gap: 0.75rem; margin-top: 0.5rem; }
.footer-social a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255, 255, 255, 0.15); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.1rem; transition: var(--transition); text-decoration: none; }
.footer-social a:hover { background: var(--gold); transform: translateY(-3px); }
.newsletter-input { display: flex; gap: 0.5rem; margin-top: 0.5rem; }
.newsletter-input input { flex: 1; padding: 10px 14px; border-radius: 25px; border: 1px solid rgba(255, 255, 255, 0.3); background: rgba(255, 255, 255, 0.1); color: #fff; font-family: 'Inter', sans-serif; font-size: 0.85rem; }
.newsletter-input input::placeholder { color: rgba(255,255,255,0.6); }
.newsletter-input button { padding: 10px 18px; border-radius: 25px; background: #ED7A11; color: #fff; border: none; cursor: pointer; font-weight: 600; font-size: 0.85rem; transition: var(--transition); }
.newsletter-input button:hover { background: #C45E0A; }
.footer-bottom { max-width: 1300px; margin: 2rem auto 0; padding-top: 1.5rem; border-top: 1px solid rgba(255, 255, 255, 0.15); text-align: center; color: rgba(255,255,255,0.7); font-size: 0.8rem; }

/* ========== TOAST ========== */
.toast { position: fixed; bottom: 30px; right: 30px; background: var(--gold); color: #fff; padding: 14px 22px; border-radius: 30px; font-weight: 600; font-size: 0.9rem; z-index: 6000; opacity: 0; transform: translateY(20px); transition: var(--transition); pointer-events: none; box-shadow: var(--shadow-lg); }
.toast.show { opacity: 1; transform: translateY(0); }

/* ========== MOBILE NAV ========== */
.mobile-nav { position: fixed; top: 0; left: -100%; width: 80%; max-width: 320px; height: 100vh; background: #fff; z-index: 3000; transition: var(--transition-slow); padding: 2rem; box-shadow: var(--shadow-xl); display: flex; flex-direction: column; gap: 1.5rem; }
.mobile-nav.open { left: 0; }
.mobile-nav a { text-decoration: none; color: var(--black); font-weight: 600; font-size: 1rem; transition: var(--transition); }
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav-close { align-self: flex-end; background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--black); }
.mobile-nav-overlay { position: fixed; inset: 0; background: rgba(0, 0, 0, 0.5); z-index: 2999; opacity: 0; pointer-events: none; transition: var(--transition); }
.mobile-nav-overlay.open { opacity: 1; pointer-events: auto; }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .about-grid { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
    .checkout-modal-body { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
    .hero-stats-row { flex-wrap: wrap; gap: 1rem; }
    .products-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
    .product-info { padding: 0.6rem 0.8rem 0.8rem; }
    .product-name { font-size: 0.8rem; }
    .btn-add-cart { font-size: 0.7rem; padding: 8px; }
    .testimonial-card { min-width: 280px; }
    .footer-inner { grid-template-columns: 1fr; }
    .cart-sidebar { width: 100%; max-width: 100%; border-radius: 0; }
    .hero h1 { font-size: 1.8rem; }
    .nav-inner { height: 60px; }
    .about-features { grid-template-columns: 1fr; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .payment-options { grid-template-columns: 1fr; }
    .checkout-modal { width: 95vw; }
}
@media (max-width: 400px) {
    .products-grid { grid-template-columns: 1fr; }
}

.search-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    padding: 1rem;
    border-top: 1px solid #eee;
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
    z-index: 999;
}
.search-dropdown.open {
    display: block;
}
.search-dropdown-inner {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}
.search-dropdown-inner input {
    flex: 1;
    padding: 10px 14px;
    border: 1.5px solid #ddd;
    border-radius: 25px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
}
.search-close-btn {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: #999;
    cursor: pointer;
}
.header-search-results {
    margin-top: 1rem;
    max-height: 300px;
    overflow-y: auto;
}
.header-search-results .product-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem;
    border-bottom: 1px solid #f0f0f0;
}
.header-search-results .product-card img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 4px;
}
.header-search-results .product-card .info {
    flex: 1;
}
.header-search-results .product-card .name {
    font-weight: 600;
    font-size: 0.9rem;
}
.header-search-results .product-card .price {
    color: var(--gold);
    font-weight: 700;
}

.product-discount-badge {
    position: absolute;
    top: 10px;
    right: 45px;
    background: #c41e3a;
    color: #fff;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 700;
    z-index: 2;
}

.quickview-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    animation: fadeIn 0.2s ease;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
.quickview-modal {
    background: #fff;
    border-radius: 16px;
    width: 90%;
    max-width: 900px;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    animation: slideUp 0.3s ease;
}
@keyframes slideUp {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
.quickview-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: #666;
    cursor: pointer;
    z-index: 2;
    line-height: 1;
}
.quickview-close:hover { color: #000; }
.quickview-body {
    display: flex;
    flex-wrap: wrap;
}
.quickview-image {
    flex: 1 1 400px;
    min-width: 280px;
    background: #f8f8f8;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px 0 0 16px;
}
.quickview-image img {
    max-width: 100%;
    max-height: 500px;
    object-fit: contain;
    padding: 2rem;
}
.quickview-details {
    flex: 1 1 300px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.quickview-details .product-category {
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #888;
    font-size: 0.75rem;
    font-weight: 600;
}
.quickview-details .product-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: #0a0a0a;
}
.product-badge-quickview {
    display: inline-block;
    background: var(--gold);
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.75rem;
    align-self: flex-start;
}
.quickview-details .product-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0a0a0a;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}
.quickview-details .old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 1rem;
    font-weight: 500;
}
.quickview-details .discount-badge {
    background: #c41e3a;
    color: #fff;
    padding: 2px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 700;
}
.quickview-details .product-description {
    color: #555;
    font-size: 0.9rem;
    line-height: 1.6;
}
.stock-status {
    font-weight: 600;
    font-size: 0.9rem;
}
.stock-status.in-stock { color: #16a34a; }
.stock-status.out-of-stock { color: #c41e3a; }
.quickview-details .btn-add-cart {
    margin-top: 1rem;
    padding: 12px 24px;
    border-radius: 25px;
    background: var(--gold);
    color: #fff;
    border: none;
    font-weight: 700;
    cursor: pointer;
    align-self: flex-start;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: 0.3s;
}
.quickview-details .btn-add-cart:hover {
    background: var(--gold-dark);
}

/* Responsive */
@media (max-width: 768px) {
    .quickview-body {
        flex-direction: column;
    }
    .quickview-image {
        flex: none;
        width: 100%;
        height: 50vh;
        max-height: 400px;
        border-radius: 16px 16px 0 0;
        overflow: hidden;
    }
    .quickview-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        padding: 0;
    }
    .quickview-details {
         padding: 1.5rem; 
    }
}

/* ====== FLASH SALE SECTION – COMPACT LUXURY ====== */
.flash-sale-section {
    background: #fff;
    padding: 30px 2rem;
    text-align: center;
    border-bottom: 1px solid #eee;
}
.flash-sale-inner {
    max-width: 400px;
    margin: 0 auto;
}
.flash-sale-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.3rem;
}
.flash-sale-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    color: #0a0a0a;
    margin-bottom: 1rem;
}
.flash-hourglass {
    margin-bottom: 0.8rem;
}
.hourglass-emoji {
    display: inline-block;
    font-size: 2rem;
    animation: gentleSpin 6s linear infinite;
    filter: grayscale(0.2);
}
@keyframes gentleSpin {
    0%   { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.countdown {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 0.8rem 0;
}
.countdown-item {
    text-align: center;
}
.countdown-item span {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: #0a0a0a;
    line-height: 1;
}
.countdown-item small {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #757575;
}
.flash-discount-badge {
    display: inline-block;
    background: var(--gold);
    color: #fff;
    padding: 4px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
    margin: 0.8rem 0 0.5rem;
}
.btn-shop-now {
    margin-top: 0.5rem;
}

/* Promo Banner Section */
.promo-banner-section {
    background: #fff;
    padding: 40px 2rem;
    border-bottom: 1px solid #eee;
}
.promo-banner-container {
    max-width: 1000px;
    margin: 0 auto;
}
.promo-banner-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: transform 0.3s ease;
}
.promo-banner-card:hover {
    transform: translateY(-4px);
}
.promo-banner-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}
.promo-banner-text {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 100%);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
}
.promo-banner-text h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}
.promo-banner-text p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}
.promo-banner-text .btn-gold {
    align-self: flex-start;
}
@media (max-width: 640px) {
    .promo-banner-image img {
        height: 200px;
    }
    .promo-banner-text h2 {
        font-size: 1.3rem;
    }
}
.banner-slider {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
}
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: #fff;
    border: none;
    font-size: 1.5rem;
    padding: 0.5rem 1rem;
    cursor: pointer;
    z-index: 2;
    border-radius: 50%;
    transition: background 0.3s;
}
.slider-btn:hover { background: rgba(0,0,0,0.7); }
.slider-btn.prev { left: 10px; }
.slider-btn.next { right: 10px; }

/* Order Success Modal */
.order-success-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}
.order-success-modal {
    background: #fff;
    border-radius: 16px;
    padding: 3rem 2rem;
    text-align: center;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    animation: fadeInUp 0.5s ease;
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
.success-icon {
    margin-bottom: 1rem;
}
.order-success-modal h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #0a0a0a;
    margin-bottom: 0.5rem;
}
.order-success-modal p {
    color: #555;
    margin-bottom: 0.5rem;
}

/* Legal Modal (similar to Quick View) */
.legal-modal {
    background: #fff;
    border-radius: 16px;
    width: 90%;
    max-width: 700px;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    animation: slideUp 0.3s ease;
    padding: 2rem;
}
.legal-modal h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #0a0a0a;
}
.legal-modal h3 {
    font-weight: 600;
    margin: 1.2rem 0 0.5rem;
    color: #0a0a0a;
}
.legal-modal p,
.legal-modal li {
    color: #555;
    line-height: 1.7;
    margin-bottom: 1rem;
}
.legal-modal ul {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}
.legal-acceptance {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}
.legal-acceptance label {
    font-size: 0.9rem;
    color: #555;
    cursor: pointer;
}
.legal-acceptance button {
    margin-top: 0.5rem;
}

/* ====== Pagination ====== */
.pagination-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}
.pagination-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1.5px solid var(--gold);
    background: #fff;
    color: #0a0a0a;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.pagination-btn:hover {
    background: rgba(30,76,154,0.1);
}
.pagination-btn.active {
    background: var(--gold);
    color: #fff;
    border-color: var(--gold);
}
.pagination-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}
.pagination-arrow {
    font-size: 1rem;
    background: none;
    border: none;
    color: #0a0a0a;
    cursor: pointer;
    padding: 0 5px;
    transition: color 0.3s;
}
.pagination-arrow:hover {
    color: var(--gold);
}

/* ====== View All Link (navy text, no shape) ====== */
.view-all-link {
    display: inline-block;
    margin-top: 1.5rem;
    color: var(--gold);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    cursor: pointer;
    text-decoration: none;
    transition: color 0.3s;
}
.view-all-link:hover {
    color: var(--gold-dark);
}

/* ====== Back to Homepage button (optional) ====== */
.back-to-home {
    display: inline-block;
    margin-bottom: 1rem;
    color: #0a0a0a;
    font-weight: 500;
    font-size: 0.85rem;
    cursor: pointer;
    text-decoration: underline;
}

/* Brand Carousel – transparent logos only */
.brands-carousel { display: flex; align-items: center; gap: 0.5rem; max-width: 100%; position: relative; }
.carousel-track { display: flex; gap: 2rem; overflow-x: auto; scroll-behavior: smooth; padding: 0.5rem 0; flex: 1; scrollbar-width: none; align-items: center; }
.carousel-track::-webkit-scrollbar { display: none; }
.brand-logo-item { flex: 0 0 auto; cursor: pointer; transition: opacity 0.2s; }
.brand-logo-item:hover { opacity: 0.7; }
.brand-logo-img { height: 50px; width: auto; max-width: 120px; object-fit: contain; }
.all-brands-text { font-size: 1.2rem; font-weight: 700; color: var(--primary); letter-spacing: 1px; }

/* Brand Page Header */
.brand-page-header { text-align: center; margin-bottom: 1.5rem; }
.brand-page-logo { height: 80px; width: auto; margin-bottom: 0.5rem; }
.brand-page-header h2 { font-family: 'Montserrat', sans-serif; font-size: 2rem; color: var(--black); margin-bottom: 1rem; }
.brand-page-header .btn-outline { display: inline-block; padding: 8px 20px; border: 1.5px solid var(--primary); color: var(--primary); border-radius: 25px; text-decoration: none; font-weight: 600; font-size: 0.9rem; cursor: pointer; background: transparent; }
.brand-page-header .btn-outline:hover { background: rgba(30,76,154,0.06); }

/* Carousel arrows (unchanged but included for clarity) */
.carousel-arrow { background: #fff; border: 1px solid #ddd; border-radius: 50%; width: 32px; height: 32px; font-size: 1rem; cursor: pointer; display: flex; align-items: center; justify-content: center; box-shadow: 0 2px 8px rgba(0,0,0,0.06); transition: background 0.2s; }
.carousel-arrow:hover { background: var(--gray-100); }

.brands-heading {
    text-align: center;
}
.brands-heading .section-label {
    justify-content: center;
}
.brands-heading .section-label::before,
.brands-heading .section-label::after {
    display: none;
}

.product-option { font-size: 0.9rem; color: #555; margin-top: 0.25rem; }

/* Header logo image */
.header-logo-img {
    height: 65px;          /* fits the existing header height */
    width: auto;
    display: block;
    object-fit: contain;
}

/* Footer logo image */
.footer-logo-img {
    height: 65px;
    width: auto;
    display: block;
    margin: 0 auto;
    object-fit: contain;
}


/* Mobile adjustments */
@media (max-width: 640px) {
    .header-logo-img {
        height: 40px;
    }
    .footer-logo-img {
        height: 50px;
    }
    
}

/* left-align the footer logo image */
.footer-logo-img {
    margin: 0;
}

/* ====== Modal Refinements ====== */
.modal-heading {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.6rem;
    color: #1E4C9A;
    text-align: center;
    margin-bottom: 0.3rem;
}
.modal-subtitle {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1.8rem;
}

/* Floating Labels */
.floating-label-group {
    position: relative;
    margin-bottom: 1.2rem;
}
.floating-label-group input,
.floating-label-group select,
.floating-label-group textarea {
    width: 100%;
    padding: 14px 12px 10px 12px;
    border: 1.5px solid #ddd;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    transition: border-color 0.3s, box-shadow 0.3s;
    background: #fff;
}
.floating-label-group input:focus,
.floating-label-group select:focus,
.floating-label-group textarea:focus {
    outline: none;
    border-color: #1E4C9A;
    box-shadow: 0 0 0 3px rgba(30,76,154,0.06);
}
.floating-label-group label {
    position: absolute;
    top: 14px;
    left: 12px;
    font-size: 0.9rem;
    color: #999;
    pointer-events: none;
    transition: all 0.2s ease;
    background: #fff;
    padding: 0 4px;
    transform-origin: left top;
}
.floating-label-group input:focus + label,
.floating-label-group input:not(:placeholder-shown) + label,
.floating-label-group select:focus + label,
.floating-label-group select:not([value=""]) + label,
.floating-label-group textarea:focus + label,
.floating-label-group textarea:not(:placeholder-shown) + label {
    top: -10px;
    left: 8px;
    font-size: 0.75rem;
    color: #1E4C9A;
    background: #fff;
    padding: 0 6px;
}
/* Hide default empty option in select */
.floating-label-group select option[value=""] {
    display: none;
}
/* File upload special styling */
.file-upload-group input[type="file"] {
    padding: 12px;
    cursor: pointer;
}
.file-upload-group label {
    top: 12px;
}
