/* css/styles.css */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,700;1,400;1,700&family=Inter:wght@400;500;700&family=Playfair+Display:wght@700;900&display=swap');

/* --- ROOT VARIABLES --- */
:root {
    --bg-dark: #0A0A0A;
    --accent-gold: #C9A84C;
    --accent-gold-dark: #8B6914;
    --text-primary: #F5F0E8;
    --text-muted: #7A7060;
    --card-bg: #111111;
    --border-subtle: #1E1E1E;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --font-accent: 'Cormorant Garamond', serif;
}

/* --- GLOBAL STYLES --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { background-color: var(--bg-dark); color: var(--text-primary); font-family: var(--font-body); line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 700; line-height: 1.2; color: var(--text-primary); }
h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 2.5rem); }
p { color: var(--text-muted); margin-bottom: 1rem; }
a { color: var(--accent-gold); text-decoration: none; transition: color 0.3s ease; }
a:hover { color: var(--accent-gold-dark); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* --- COMPONENTS & UTILITIES --- */
.btn { display: inline-block; padding: 0.75rem 1.5rem; border-radius: 4px; font-weight: 500; text-align: center; cursor: pointer; transition: all 0.3s ease; border: 1px solid transparent; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; }
.btn-primary { background-color: var(--accent-gold); color: var(--bg-dark); }
.btn-primary:hover { background-color: var(--accent-gold-dark); color: var(--bg-dark); transform: translateY(-2px); }
.btn-secondary { background-color: transparent; color: var(--accent-gold); border: 1px solid var(--accent-gold); }
.btn-secondary:hover { background-color: var(--accent-gold); color: var(--bg-dark); }
.btn-block { display: block; width: 100%; }
.section-header { margin-bottom: 3rem; }
.section-header h1, .section-header h2 { padding-bottom: 0.5rem; border-bottom: 2px solid var(--accent-gold); display: inline-block; }
.center { text-align: center; }
.hidden { display: none !important; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.seo-footer { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; padding: 1rem 0; }
.seo-footer a { color: var(--text-muted); font-size: 0.85rem; }

/* --- NAVBAR & SHARED COMPONENTS --- */
.header { position: fixed; top: 0; left: 0; width: 100%; z-index: 100; transition: background-color 0.4s ease, border-color 0.4s ease; padding: 1rem 0; background-color: transparent; border-bottom: 1px solid transparent; }
.header.solid, .header.scrolled { background-color: rgba(10, 10, 10, 0.9); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border-bottom: 1px solid var(--border-subtle); }
.navbar { display: flex; justify-content: space-between; align-items: center; max-width: 1400px; margin: 0 auto; padding: 0 2rem; }
.navbar-logo img { max-height: 48px; filter: brightness(0) invert(1); }
.nav-menu { display: flex; gap: 2.5rem; }
.nav-link { color: var(--text-primary); text-transform: uppercase; font-weight: 500; position: relative; padding-bottom: 5px; }
.nav-link::after { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 2px; background-color: var(--accent-gold); transform: scaleX(0); transition: transform 0.4s ease; }
.nav-link:hover::after { transform: scaleX(1); }
.nav-actions { display: flex; align-items: center; gap: 1.5rem; }
.nav-action-btn { background: none; border: none; color: var(--text-primary); cursor: pointer; position: relative; }
.nav-action-btn svg { width: 24px; height: 24px; fill: currentColor; }
.cart-item-count { position: absolute; top: -8px; right: -10px; background-color: var(--accent-gold); color: var(--bg-dark); border-radius: 50%; width: 20px; height: 20px; display: none; justify-content: center; align-items: center; font-size: 0.75rem; font-weight: bold; }

/* --- FOOTER --- */
.footer { background-color: #080808; padding: 4rem 0 1rem; font-size: 0.9rem; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-bottom: 3rem; }
.footer-col h4 { margin-bottom: 1rem; text-transform: uppercase; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col a { color: var(--text-muted); }
.footer-bottom { border-top: 1px solid var(--border-subtle); padding-top: 1rem; text-align: center; color: var(--text-muted); font-size: 0.8rem; }
#dev-credit { margin-top: 1rem; }
.dev-attribution { margin-top: 0.5rem; font-size: 0.75rem; color: var(--text-muted); letter-spacing: 0.5px; }
.dev-attribution a { color: var(--accent-gold); text-decoration: none; transition: color 0.3s ease; }
.dev-attribution a:hover { color: var(--text-primary); }

/* --- HERO SLIDER (index.html) --- */
.hero-slider-section { position: relative; width: 100%; height: calc(100vh - 80px); margin-top: 80px; overflow: hidden; }
.hero-slider .slide { position: absolute; width: 100%; height: 100%; opacity: 0; transition: opacity 1s ease-in-out; }
.hero-slider .slide.active { opacity: 1; }
.hero-slider img { width: 100%; height: 100%; object-fit: cover; }
.slider-controls { position: absolute; top: 50%; width: 100%; display: flex; justify-content: space-between; padding: 0 1rem; transform: translateY(-50%); }
.slider-arrow { background: rgba(0,0,0,0.3); color: white; border: none; padding: 0.5rem 1rem; cursor: pointer; border-radius: 50%; }
.slider-dots { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); display: flex; gap: 10px; }
.slider-dots .dot { width: 12px; height: 12px; border-radius: 50%; background: rgba(255,255,255,0.5); cursor: pointer; }
.slider-dots .dot.active { background: white; }

/* --- PRODUCT CARD --- */
.product-card { background-color: var(--card-bg); border: 1px solid var(--border-subtle); border-radius: 8px; overflow: hidden; display: flex; flex-direction: column; }
.product-card-image { position: relative; }
.product-card-image img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.wishlist-btn { position: absolute; top: 10px; right: 10px; background: rgba(0,0,0,0.4); border: none; color: white; border-radius: 50%; width: 36px; height: 36px; cursor: pointer; display: flex; justify-content: center; align-items: center; }
.heart-icon { font-size: 1.5rem; }
.heart-icon.filled { color: red; }
.product-card-content { padding: 1rem; flex-grow: 1; display: flex; flex-direction: column; }
.product-card-content h3 { font-size: 1.2rem; }
.product-card-content .price-container { margin: 0.5rem 0; }
.product-card-actions { margin-top: auto; }

/* --- SHOP PAGE --- */
.shop-page { padding-top: 100px; }
.shop-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 2rem; }
.category-tabs { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2rem; }
.cat-tab { background: transparent; border: 1px solid var(--text-muted); color: var(--text-muted); padding: 0.5rem 1rem; border-radius: 50px; cursor: pointer; }
.cat-tab.active { background: var(--accent-gold); color: var(--bg-dark); border-color: var(--accent-gold); }
.shop-layout { display: grid; grid-template-columns: 250px 1fr; gap: 2rem; }
.filter-sidebar { border-right: 1px solid var(--border-subtle); padding-right: 2rem; }
.filter-group { margin-bottom: 1.5rem; }
.filter-group h4 { margin-bottom: 0.5rem; }
.filter-group label { display: block; margin-bottom: 0.25rem; }
#shop-product-grid { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }

/* --- SORT DROPDOWN --- */
.sort-options { display: flex; align-items: center; gap: 0.75rem; }
.sort-options label { color: var(--text-muted); font-size: 0.9rem; white-space: nowrap; }
.sort-options select { background: transparent; color: var(--text-primary); border: 1px solid var(--border-subtle); padding: 0.5rem 1rem; border-radius: 4px; font-size: 0.9rem; font-family: var(--font-body); cursor: pointer; appearance: none; -webkit-appearance: none; -moz-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23C9A84C' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.75rem center; padding-right: 2.5rem; transition: border-color 0.3s ease; }
.sort-options select:hover, .sort-options select:focus { border-color: var(--accent-gold); outline: none; }
.sort-options select option { background: var(--bg-dark); color: var(--text-primary); }

/* --- PRODUCT DETAIL PAGE --- */
.product-detail-page { padding-top: 120px; }
.product-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.thumbnail-images { display: flex; gap: 10px; margin-top: 10px; }
.thumb-img { width: 80px; height: 80px; object-fit: cover; cursor: pointer; border: 2px solid transparent; }
.thumb-img.active { border-color: var(--accent-gold); }
.product-info .wishlist-btn { margin-top: 1rem; }
.product-info .share-btn { margin-top: 1rem; background: none; border: 1px solid var(--text-muted); color: var(--text-muted); display: flex; align-items: center; gap: 0.5rem; }
.product-info .share-btn svg { width: 18px; height: 18px; fill: currentColor; }
.accordion-container { margin-top: 2rem; }
.accordion-item { border-bottom: 1px solid var(--border-subtle); }
.accordion-header { width: 100%; background: none; border: none; color: var(--text-primary); padding: 1rem 0; text-align: left; font-size: 1.1rem; cursor: pointer; display: flex; justify-content: space-between; }

/* --- AUTH PAGES (Login, Profile) --- */
.auth-page, .profile-page, .wishlist-page, .checkout-page { padding-top: 120px; padding-bottom: 4rem; }
.auth-container { max-width: 450px; margin: 2rem auto; }
.auth-form-wrapper { background: var(--card-bg); padding: 2rem; border-radius: 8px; }
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; margin-bottom: 0.5rem; }
.form-group input, .form-group textarea { width: 100%; background: var(--bg-dark); border: 1px solid var(--border-subtle); padding: 0.75rem; color: var(--text-primary); border-radius: 4px; font-family: var(--font-body); font-size: 0.95rem; transition: border-color 0.3s ease; resize: vertical; }
.form-group input:focus, .form-group textarea:focus { border-color: var(--accent-gold); outline: none; }
.auth-divider { text-align: center; margin: 1.5rem 0; color: var(--text-muted); }
.btn-google { background: transparent; color: var(--text-primary); border: 1px solid var(--border-subtle); display: flex; align-items: center; justify-content: center; gap: 10px; font-size: 0.9rem; transition: border-color 0.3s ease, background 0.3s ease; }
.btn-google:hover { border-color: var(--accent-gold); background: rgba(201, 168, 76, 0.05); color: var(--text-primary); }
.btn-google img { width: 18px; height: 18px; }
.auth-toggle { text-align: center; margin-top: 1.5rem; }
.auth-error { color: #ff6b6b; margin-bottom: 1rem; text-align: center; }

/* --- SEARCH OVERLAY --- */
.search-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.95); z-index: 1000; display: none; flex-direction: column; align-items: center; padding-top: 10vh; }
.search-overlay.active { display: flex; }
#search-input { width: 80%; max-width: 600px; background: transparent; border: none; border-bottom: 2px solid var(--text-primary); color: white; font-size: 2rem; text-align: center; outline: none; }
#search-results { margin-top: 2rem; width: 80%; max-width: 600px; max-height: 70vh; overflow-y: auto; }
.search-result-item { display: flex; align-items: center; gap: 1rem; padding: 0.5rem; border-radius: 4px; }
.search-result-item:hover { background: var(--card-bg); }
.search-result-item img { width: 50px; height: 50px; object-fit: cover; }

/* --- TOAST NOTIFICATIONS --- */
#toast-container { position: fixed; bottom: 2rem; right: 2rem; z-index: 10000; display: flex; flex-direction: column; gap: 0.5rem; }
.toast { padding: 0.875rem 1.5rem; border-radius: 8px; color: white; font-size: 0.9rem; font-weight: 500; opacity: 0; transform: translateX(100%); transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); box-shadow: 0 4px 20px rgba(0,0,0,0.4); }
.toast.show { opacity: 1; transform: translateX(0); }
.toast-success { background: linear-gradient(135deg, #2d8f4e, #1a6b3a); }
.toast-error { background: linear-gradient(135deg, #c0392b, #922b21); }

/* --- HAMBURGER MENU --- */
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; z-index: 1001; }
.hamburger span { display: block; width: 25px; height: 2px; background: var(--text-primary); margin: 5px 0; transition: all 0.3s ease; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* --- PRODUCT GRID --- */
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 1.5rem; }
.product-card-actions { padding: 0 1rem 1rem; }
.price-container { display: flex; align-items: center; gap: 0.75rem; }
.current-price { color: var(--accent-gold); font-weight: 700; font-size: 1.2rem; }
.original-price { text-decoration: line-through; color: var(--text-muted); font-size: 0.9rem; }

/* --- ACCORDION --- */
.accordion-content { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; padding: 0 0.5rem; }
.accordion-content p { padding-bottom: 1rem; }

/* --- QUANTITY SELECTOR --- */
.quantity-selector { margin: 1rem 0; }
.quantity-input { display: flex; align-items: center; gap: 0; border: 1px solid var(--border-subtle); border-radius: 4px; display: inline-flex; }
.quantity-input button { background: transparent; color: var(--text-primary); border: none; padding: 0.5rem 1rem; cursor: pointer; font-size: 1.2rem; }
.quantity-input button:hover { background: var(--card-bg); }
.quantity-input input { width: 50px; text-align: center; background: transparent; border: none; border-left: 1px solid var(--border-subtle); border-right: 1px solid var(--border-subtle); color: var(--text-primary); font-size: 1rem; -moz-appearance: textfield; }
.quantity-input input::-webkit-inner-spin-button, .quantity-input input::-webkit-outer-spin-button { -webkit-appearance: none; }

/* --- VOLUME SELECTOR --- */
.volume-selector { margin: 1rem 0; }
.volume-options { display: flex; gap: 0.75rem; margin-top: 0.5rem; }
.volume-btn { background: transparent; color: var(--text-primary); border: 1px solid var(--border-subtle); padding: 0.5rem 1.5rem; cursor: pointer; border-radius: 4px; transition: all 0.3s ease; }
.volume-btn.active, .volume-btn:hover { border-color: var(--accent-gold); color: var(--accent-gold); background: rgba(201, 168, 76, 0.1); }

/* --- SAVINGS LABEL --- */
.savings-label { display: inline-block; background: rgba(45, 143, 78, 0.15); color: #2d8f4e; padding: 0.25rem 0.75rem; border-radius: 4px; font-size: 0.85rem; font-weight: 600; margin-top: 0.5rem; }

/* --- CART PAGE --- */
.cart-page { padding-top: 100px; padding-bottom: 4rem; }
.cart-items { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.cart-item { display: grid; grid-template-columns: 80px 1fr auto auto auto; align-items: center; gap: 1rem; background: var(--card-bg); padding: 1rem; border-radius: 8px; border: 1px solid var(--border-subtle); }
.cart-item img { width: 80px; height: 80px; object-fit: cover; border-radius: 4px; }
.cart-item-controls { display: flex; align-items: center; gap: 0.5rem; }
.qty-btn { background: transparent; border: 1px solid var(--border-subtle); color: var(--text-primary); width: 32px; height: 32px; border-radius: 4px; cursor: pointer; font-size: 1rem; display: flex; align-items: center; justify-content: center; }
.qty-btn:hover { border-color: var(--accent-gold); }
.cart-item-total { color: var(--accent-gold); font-weight: 700; }
.remove-btn { background: none; border: none; color: var(--text-muted); cursor: pointer; font-size: 1.2rem; padding: 0.25rem; }
.remove-btn:hover { color: #ff6b6b; }
.cart-summary { background: var(--card-bg); padding: 1.5rem; border-radius: 8px; border: 1px solid var(--border-subtle); text-align: center; }
.cart-summary h3 { margin-bottom: 1rem; }
.cart-summary .btn { margin-top: 1rem; }
.empty-cart { text-align: center; padding: 3rem; }
.empty-cart p { font-size: 1.1rem; margin-bottom: 1.5rem; }

/* --- WHATSAPP FLOAT --- */
.whatsapp-float { position: fixed; bottom: 2rem; left: 2rem; width: 56px; height: 56px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; z-index: 999; box-shadow: 0 4px 12px rgba(0,0,0,0.3); transition: transform 0.3s ease; }
.whatsapp-float:hover { transform: scale(1.1); }
.whatsapp-float svg { width: 28px; height: 28px; fill: white; }

/* --- USP SECTION --- */
.usp-section { padding: 4rem 0; background: var(--card-bg); }
.usp-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; text-align: center; }
.usp-item { padding: 1.5rem; }
.usp-icon { margin-bottom: 0.75rem; display: flex; justify-content: center; align-items: center; }
.usp-icon svg { width: 40px; height: 40px; color: var(--accent-gold); stroke: var(--accent-gold); transition: transform 0.3s ease; }
.usp-item:hover .usp-icon svg { transform: scale(1.15); }

/* --- FEATURED SECTION --- */
.featured-section { padding: 4rem 0; }

/* --- QUIZ PAGE --- */
.quiz-page { padding-top: 120px; padding-bottom: 4rem; }
.quiz-question { max-width: 600px; margin: 2rem auto; text-align: center; }
.quiz-progress { color: var(--text-muted); margin-bottom: 1rem; font-size: 0.9rem; }
.quiz-question h3 { margin-bottom: 2rem; }
.quiz-options { display: flex; flex-direction: column; gap: 1rem; }
.quiz-option { text-align: center; font-size: 1rem; }
.quiz-result { text-align: center; max-width: 450px; margin: 2rem auto; }
.quiz-result-card { background: var(--card-bg); border: 1px solid var(--border-subtle); border-radius: 8px; padding: 2rem; margin-top: 1.5rem; }
.quiz-result-card img { width: 200px; height: 200px; object-fit: cover; margin: 0 auto 1rem; border-radius: 8px; }

/* --- CHECKOUT --- */
.checkout-page { padding-top: 120px; padding-bottom: 4rem; }
.checkout-layout { display: grid; grid-template-columns: 1fr 400px; gap: 3rem; align-items: start; }
.shipping-details h2 { margin-bottom: 1.5rem; font-family: var(--font-heading); }
.shipping-details .form-group-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* Order Summary Card */
.order-summary-checkout { background: rgba(255, 255, 255, 0.03); border: 1px solid var(--border-subtle); border-radius: 12px; padding: 2rem; position: sticky; top: 100px; }
.order-summary-checkout h3 { font-family: var(--font-heading); font-size: 1.4rem; margin-bottom: 1.5rem; padding-bottom: 1rem; border-bottom: 2px solid var(--accent-gold); display: inline-block; }
.order-summary-checkout .summary-row { display: flex; justify-content: space-between; align-items: center; padding: 0.6rem 0; color: var(--text-muted); font-size: 0.95rem; }
.order-summary-checkout .summary-row + .summary-row { border-top: 1px solid rgba(255,255,255,0.05); }
.order-summary-checkout .summary-total { margin-top: 0.75rem; padding-top: 1rem; border-top: 2px solid var(--border-subtle) !important; color: var(--text-primary); font-size: 1.15rem; font-weight: 700; }
#checkout-items { margin-bottom: 1rem; padding-bottom: 0.5rem; border-bottom: 1px dashed rgba(201,168,76,0.3); }
#checkout-items .summary-row span:first-child { flex: 1; }
#checkout-items .summary-row span:last-child { font-weight: 600; color: var(--text-primary); white-space: nowrap; padding-left: 1rem; }

/* Payment Methods */
.payment-methods { margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid var(--border-subtle); }
.payment-methods h4 { margin-bottom: 0.75rem; font-size: 0.95rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }
.payment-methods label { display: flex; align-items: center; gap: 0.6rem; padding: 0.75rem 1rem; margin-bottom: 0.5rem; border: 1px solid var(--border-subtle); border-radius: 8px; cursor: pointer; transition: all 0.3s ease; font-size: 0.95rem; }
.payment-methods label:hover { border-color: var(--accent-gold); background: rgba(201,168,76,0.05); }
.payment-methods input[type="radio"] { accent-color: var(--accent-gold); width: 16px; height: 16px; }
.payment-methods input[type="radio"]:checked + span, .payment-methods label:has(input:checked) { color: var(--accent-gold); }
.payment-methods label:has(input:checked) { border-color: var(--accent-gold); background: rgba(201,168,76,0.08); }

/* Place Order Button */
#place-order-btn { margin-top: 1.5rem; font-size: 1.05rem; padding: 1rem; letter-spacing: 1px; text-transform: uppercase; transition: all 0.3s ease, transform 0.2s ease; }
#place-order-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(201,168,76,0.3); }

/* Coupon Code Section */
.coupon-section { margin: 1rem 0; padding: 1rem 0; border-top: 1px solid var(--border-subtle); border-bottom: 1px solid var(--border-subtle); }
.coupon-input-group { display: flex; gap: 0.5rem; }
.coupon-input-group input { flex: 1; padding: 0.6rem 0.8rem; background: rgba(255,255,255,0.05); border: 1px solid var(--border-subtle); border-radius: 6px; color: var(--text-primary); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; }
.coupon-input-group input::placeholder { text-transform: none; letter-spacing: 0; color: var(--text-muted); }
.coupon-input-group input:focus { border-color: var(--accent-gold); outline: none; }
.coupon-input-group input:disabled { opacity: 0.5; cursor: not-allowed; }
.btn-outline { padding: 0.6rem 1.2rem; background: transparent; border: 1px solid var(--accent-gold); color: var(--accent-gold); border-radius: 6px; cursor: pointer; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; transition: all 0.3s ease; }
.btn-outline:hover { background: var(--accent-gold); color: var(--bg-dark); }
.btn-outline:disabled { opacity: 0.5; cursor: not-allowed; background: rgba(201,168,76,0.15); border-color: rgba(201,168,76,0.3); }
.coupon-msg { font-size: 0.85rem; margin-top: 0.5rem; min-height: 1.2rem; }

/* --- NO RESULTS --- */
.no-results { text-align: center; padding: 2rem; grid-column: 1 / -1; }

/* --- CONTENT PAGES (header offset) --- */
.contact-section { padding-top: 120px; padding-bottom: 4rem; }
.static-page { padding-top: 120px; padding-bottom: 4rem; }
.about-hero { margin-top: 80px; }

/* --- LEGAL PAGES --- */
.legal-page h1 { font-family: var(--font-heading); font-size: 2.5rem; margin-bottom: 0.5rem; }
.legal-page .legal-updated { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 2.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--border-subtle); }
.legal-page h2 { font-family: var(--font-heading); font-size: 1.5rem; margin-top: 2.5rem; margin-bottom: 1rem; color: var(--accent-gold); }
.legal-page h3 { font-size: 1.1rem; margin-top: 1.5rem; margin-bottom: 0.75rem; }
.legal-page p { color: var(--text-muted); line-height: 1.8; margin-bottom: 1rem; }
.legal-page ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 1rem; }
.legal-page ul li { color: var(--text-muted); line-height: 1.8; margin-bottom: 0.5rem; }
.legal-page a { color: var(--accent-gold); text-decoration: underline; }
.legal-page a:hover { color: #e0c36a; }
.legal-page address { font-style: normal; color: var(--text-muted); line-height: 1.8; margin-top: 1rem; padding: 1.5rem; background: rgba(255,255,255,0.03); border: 1px solid var(--border-subtle); border-radius: 8px; }
.legal-page address strong { color: var(--text-primary); }
.legal-page hr { border: none; border-top: 1px solid var(--border-subtle); margin: 3rem 0; }

/* --- PROFILE & ORDER TRACKING --- */
.profile-page { padding-top: 120px; padding-bottom: 4rem; }
.profile-layout { display: grid; grid-template-columns: 220px 1fr; gap: 2rem; margin-top: 2rem; }
.profile-nav ul { list-style: none; padding: 0; }
.profile-nav a { display: block; padding: 0.75rem 1rem; color: var(--text-muted); border-radius: 6px; transition: all 0.2s ease; text-decoration: none; }
.profile-nav a:hover, .profile-nav a.active { color: var(--accent-gold); background: rgba(201,168,76,0.08); }
.profile-tab-content { display: none; }
.profile-tab-content.active { display: block; }
.profile-content h3 { font-family: var(--font-heading); margin-bottom: 1rem; }
.profile-content p { color: var(--text-muted); margin-bottom: 0.5rem; }

/* Track Order Section */
.track-order-section { background: rgba(201,168,76,0.05); border: 1px solid rgba(201,168,76,0.2); border-radius: 12px; padding: 1.5rem 2rem; margin-bottom: 2rem; }
.track-order-section h3 { font-family: var(--font-heading); font-size: 1.3rem; margin-bottom: 0.5rem; }
.track-order-section p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 1rem; }
.track-order-input-group { display: flex; gap: 0.5rem; max-width: 400px; }
.track-order-input-group input { flex: 1; padding: 0.7rem 1rem; background: rgba(255,255,255,0.05); border: 1px solid var(--border-subtle); border-radius: 6px; color: var(--text-primary); font-size: 1rem; }
.track-order-input-group input:focus { border-color: var(--accent-gold); outline: none; }
.track-order-input-group .btn { padding: 0.7rem 1.5rem; white-space: nowrap; }

/* Order Cards */
.order-card { background: rgba(255,255,255,0.03); border: 1px solid var(--border-subtle); border-radius: 10px; padding: 1.25rem; margin-bottom: 1rem; transition: border-color 0.3s ease; }
.order-card:hover { border-color: var(--accent-gold); }
.order-card-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.75rem; }
.order-date { color: var(--text-muted); font-size: 0.85rem; margin-right: 0.75rem; }
.order-status { font-size: 0.75rem; padding: 0.2rem 0.6rem; border-radius: 20px; text-transform: uppercase; letter-spacing: 0.5px; font-weight: 600; }
.status-paid { background: rgba(76,175,80,0.15); color: #4CAF50; }
.status-confirmed { background: rgba(255,152,0,0.15); color: #FF9800; }
.status-default { background: rgba(158,158,158,0.15); color: #9E9E9E; }
.order-total { font-size: 1.15rem; font-weight: 700; color: var(--accent-gold); }
.order-card-items { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 0.75rem; }
.order-item-tag { background: rgba(255,255,255,0.05); border: 1px solid var(--border-subtle); padding: 0.25rem 0.6rem; border-radius: 4px; font-size: 0.8rem; color: var(--text-muted); }
.order-card-footer { display: flex; gap: 1rem; font-size: 0.8rem; color: var(--text-muted); flex-wrap: wrap; }
.order-coupon { color: #4CAF50; }
.order-id { opacity: 0.6; }
.loading-text { color: var(--text-muted); font-style: italic; }

/* --- CONTACT FORM LAYOUT --- */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; margin-top: 2rem; }
.contact-info { padding: 1rem 0; }
.info-list { list-style: none; padding: 0; }
.info-list li { margin-bottom: 1rem; color: var(--text-muted); }
.contact-form-wrapper h3, .contact-info h3 { margin-bottom: 1.5rem; }

/* --- NAV LINK ACTIVE --- */
.nav-link.active::after { transform: scaleX(1); }

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 992px) {
    .hamburger { display: block; z-index: 1001; }
    .nav-menu { position: fixed; left: -100%; top: 0; flex-direction: column; background-color: var(--bg-dark); width: 100%; height: 100vh; justify-content: center; align-items: center; transition: left 0.3s ease; z-index: 1000; }
    .nav-menu.active { left: 0; }
    .nav-menu .nav-link { font-size: 1.5rem; padding: 1rem; }
    .shop-layout { grid-template-columns: 1fr; }
    .filter-sidebar { display: none; }
    .product-layout { grid-template-columns: 1fr; }
    .cart-item { grid-template-columns: 60px 1fr; gap: 0.75rem; }
    .cart-item-controls, .cart-item-total, .remove-btn { grid-column: 2; }
    .contact-layout { grid-template-columns: 1fr; }
    .checkout-layout { grid-template-columns: 1fr; }
    .order-summary-checkout { position: static; }
    .shop-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
    .sort-options { width: 100%; }
    .sort-options select { width: 100%; }
}

@media (max-width: 576px) {
    .product-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
    #shop-product-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
    .category-tabs { overflow-x: auto; flex-wrap: nowrap; gap: 0.5rem; padding-bottom: 0.5rem; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
    .category-tabs::-webkit-scrollbar { display: none; }
    .cat-tab { white-space: nowrap; font-size: 0.8rem; flex-shrink: 0; }
    .hero-slider-section { height: 50vh; margin-top: 60px; }
    .usp-grid { grid-template-columns: repeat(2, 1fr); }
    .container { padding: 0 1rem; }
    .shop-page { padding-top: 80px; }
    .product-detail-page { padding-top: 90px; }
    .static-page, .contact-section { padding-top: 90px; }
    .about-hero { margin-top: 60px; }
    .profile-page { padding-top: 90px; }
    .profile-layout { grid-template-columns: 1fr; }
    .profile-nav ul { display: flex; gap: 0; overflow-x: auto; }
    .profile-nav a { white-space: nowrap; font-size: 0.85rem; padding: 0.5rem 0.75rem; }
    .track-order-section { padding: 1.25rem; }
    .track-order-input-group { max-width: 100%; }
    .order-card-header { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
    .rec-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   CHECKOUT RECOMMENDATIONS
   ============================================================ */
.checkout-recommendations { margin-top: 2.5rem; }
.rec-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}
.rec-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(212,168,67,0.2);
    border-radius: 8px;
    overflow: hidden;
    transition: border-color 0.3s;
}
.rec-card:hover { border-color: var(--accent-gold); }
.rec-card img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.rec-info { padding: 0.75rem; }
.rec-name { font-family: 'Playfair Display', serif; font-size: 0.9rem; margin-bottom: 0.25rem; }
.rec-price { color: var(--accent-gold); font-size: 0.85rem; margin-bottom: 0.5rem; }

/* ============================================================
   PRODUCT STAR RATINGS
   ============================================================ */
.product-rating {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0;
    font-size: 0.8rem;
}
.stars-display { color: #f5c518; letter-spacing: 1px; }
.rating-count { color: rgba(255,255,255,0.5); font-size: 0.75rem; }
.stars-input { display: flex; gap: 2px; cursor: pointer; }
.stars-input span {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.3);
    transition: color 0.15s;
    user-select: none;
}
.stars-input span.active,
.stars-input span:hover,
.stars-input span.hovered { color: #f5c518; }
.rating-submitted { color: #4CAF50; font-size: 0.75rem; }

/* ============================================================
   PRODUCT SHARE BUTTON
   ============================================================ */
.share-btn {
    background: transparent;
    border: 1px solid rgba(212,168,67,0.4);
    border-radius: 4px;
    color: var(--accent-gold);
    font-size: 0.75rem;
    padding: 0.3rem 0.6rem;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}
.share-btn:hover { background: rgba(212,168,67,0.1); border-color: var(--accent-gold); }
.share-btn svg { width: 12px; height: 12px; fill: currentColor; }
.share-tooltip {
    position: absolute;
    background: var(--accent-gold);
    color: #000;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    top: -28px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    pointer-events: none;
    animation: fadeInOut 2s ease forwards;
}
@keyframes fadeInOut {
    0%   { opacity: 0; transform: translateX(-50%) translateY(4px); }
    20%  { opacity: 1; transform: translateX(-50%) translateY(0); }
    80%  { opacity: 1; }
    100% { opacity: 0; }
}

/* ============================================================
   CITY SELECT DROPDOWN (CHECKOUT)
   ============================================================ */
select {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 6px;
    color: var(--text-primary, #fff);
    font-family: inherit;
    font-size: 0.95rem;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23d4a843' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    cursor: pointer;
}
select:focus { outline: none; border-color: var(--accent-gold); }
select option { background: #1a1a1a; color: #fff; }
