/* MY HAIR NATURALS - ELITE PROFESSIONAL v15.0 */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Inter:wght@300;400;500;600;700;800&family=Orbitron:wght@400;700&display=swap');

:root {
    --primary: #1a2e1a; /* Deep Botanical Green */
    --primary-soft: #2d4a2d;
    --accent: #c5a059; /* Gold */
    --accent-soft: #e9dcc0; /* Creamy Gold */
    --silk: #fdfaf3;    /* Warm Cream Background */
    --text: #2c2c2c;
    --muted: #7a7a7a;
    --border: rgba(26,46,26,0.1);
    --shadow-lux: 0 10px 30px rgba(0,0,0,0.05);
    --shadow-hover: 0 20px 40px rgba(0,0,0,0.1);
    --radius: 16px;
    --nav-h: 80px;
    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Inter', sans-serif;
}

/* --- CORE RESET --- */
* { box-sizing: border-box; margin: 0; padding: 0; -webkit-font-smoothing: antialiased; }
html { scroll-behavior: smooth; font-size: 16px; }
body { 
    font-family: var(--font-sans); 
    background: var(--silk); 
    color: var(--text); 
    line-height: 1.6; 
    padding-top: var(--nav-h);
    overflow-x: hidden;
}

/* --- HEADER --- */
.main-header { 
    background: white;
    position: fixed; top: 0; left: 0; width: 100%; height: var(--nav-h); 
    z-index: 5000; border-bottom: 1px solid var(--border); 
    display: flex; align-items: center;
    transition: 0.3s;
}
.header-inner { 
    width: 100%; max-width: 1400px; margin: 0 auto; padding: 0 30px; 
    display: flex; justify-content: space-between; align-items: center; 
}

.logo-group { display: flex; align-items: center; text-decoration: none; gap: 12px; }
.logo-group img { height: 50px; border-radius: 8px; }
.logo-text { font-family: var(--font-serif); font-size: 20px; font-weight: 700; color: var(--primary); letter-spacing: 1px; }

/* Desktop Nav */
.desktop-nav { display: none; gap: 30px; }
@media (min-width: 1024px) { .desktop-nav { display: flex; } }
.nav-item { text-decoration: none; color: var(--text); font-size: 14px; font-weight: 500; transition: 0.3s; }
.nav-item:hover { color: var(--accent); }

/* --- PROFILE DROPDOWN --- */
.profile-dropdown-wrapper { position: relative; display: inline-block; }
.profile-dropdown {
    position: absolute; top: calc(100% + 15px); right: 0;
    width: 240px; background: white; border: 1px solid var(--border);
    border-radius: 20px; box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    opacity: 0; visibility: hidden; transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 6000; overflow: hidden;
}
.profile-dropdown-wrapper:hover .profile-dropdown,
.profile-dropdown.active {
    opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown-header { padding: 20px; background: var(--silk); border-bottom: 1px solid var(--border); }
.dropdown-header .user-name { font-size: 14px; font-weight: 800; color: var(--primary); margin-bottom: 2px; }
.dropdown-header .user-email { font-size: 11px; color: var(--muted); }
.dropdown-links { padding: 10px 0; }
.dropdown-links a {
    display: block; padding: 12px 20px; font-size: 13px; font-weight: 600;
    color: var(--text); text-decoration: none; transition: 0.2s;
}
.dropdown-links a:hover { background: var(--silk); color: var(--accent); }
.dropdown-links hr { border: 0; border-top: 1px solid var(--border); margin: 10px 0; }
.dropdown-links a.logout-link { color: #ef4444; }
.dropdown-links a.logout-link:hover { background: #fef2f2; }

/* --- SEARCH ENHANCEMENTS --- */
.header-search { 
    display: none; 
    background: var(--silk); 
    border: 1px solid var(--border);
    border-radius: 50px; 
    padding: 8px 20px; 
    align-items: center; 
    gap: 12px; 
    width: 280px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
@media (min-width: 1200px) { .header-search { display: flex; } }
.header-search:hover {
    border-color: var(--accent);
    box-shadow: 0 0 20px rgba(197,160,89,0.1);
}
.header-search:focus-within {
    border-color: var(--accent);
    box-shadow: 0 10px 30px rgba(197,160,89,0.15);
    width: 340px;
}
.header-search svg { color: var(--accent); transition: 0.3s; cursor: pointer; }
.header-search svg:hover { transform: scale(1.1); color: var(--primary); }
.header-search input { 
    border: none; 
    background: none; 
    outline: none; 
    font-size: 13px; 
    width: 100%; 
    font-family: var(--font-sans);
    color: var(--primary);
}

#search-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(255,255,255,0.98); z-index: 9000;
    display: none; backdrop-filter: blur(20px);
}
#search-overlay.active { display: block; }

.search-container-lux {
    max-width: 900px; margin: 15vh auto; padding: 0 40px;
}
.search-input-lux {
    width: 100%; background: none; border: none;
    border-bottom: 2px solid var(--accent);
    font-family: var(--font-serif); font-size: clamp(2rem, 8vw, 5rem);
    color: var(--primary); outline: none; padding: 30px 0;
    margin-bottom: 60px; transition: 0.4s;
}
.search-input-lux::placeholder { color: rgba(10,15,10,0.05); }
.search-input-lux:focus { border-color: var(--primary); }

#search-results-live {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 30px;
}
.search-result-item {
    display: flex; align-items: center; gap: 20px; padding: 20px;
    background: white; border-radius: 20px; text-decoration: none;
    color: var(--primary); transition: 0.3s; border: 1px solid var(--border);
}
.search-result-item:hover {
    transform: translateY(-5px); border-color: var(--accent);
    box-shadow: var(--shadow-lux);
}
.search-result-item img { width: 70px; height: 70px; border-radius: 12px; object-fit: cover; }
.search-result-info h4 { font-size: 15px; margin-bottom: 5px; font-family: var(--font-serif); }
.search-result-info span { font-size: 12px; color: var(--accent); font-weight: 800; }

.nav-actions { display: flex; align-items: center; gap: 20px; }
.nav-link { text-decoration: none; color: var(--primary); position: relative; display: flex; align-items: center; transition: 0.3s; }
.nav-link:hover { color: var(--accent); }
.badge { position: absolute; top: -8px; right: -10px; background: var(--accent); color: white; font-size: 9px; padding: 2px 6px; border-radius: 50px; font-weight: 800; border: 2px solid white; }

.btn-shop-now {
    background: var(--accent); color: white; border: none; padding: 10px 20px; border-radius: 50px;
    font-size: 12px; font-weight: 700; text-decoration: none; transition: 0.3s; display: none;
}
@media (min-width: 768px) { .btn-shop-now { display: block; } }
.btn-shop-now:hover { background: var(--primary); }

.menu-toggle { display: block; background: none; border: none; cursor: pointer; color: var(--primary); }
@media (min-width: 1024px) { .menu-toggle { display: none; } }

/* Mobile Menu */
.mobile-menu {
    position: fixed; top: 0; left: -100%; width: 80%; height: 100%; background: white;
    z-index: 6000; transition: 0.4s; padding: 40px; display: flex; flex-direction: column; gap: 20px;
    box-shadow: 20px 0 50px rgba(0,0,0,0.1);
}
.mobile-menu.active { left: 0; }
.mobile-menu-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5);
    z-index: 5900; display: none;
}
.mobile-menu-overlay.active { display: block; }

/* --- HERO --- */
.hero-v2 {
    height: 80vh; display: flex; align-items: center; position: relative; overflow: hidden;
    background: #f9f6f0;
}
.hero-v2-inner { 
    max-width: 1400px; margin: 0 auto; width: 100%; padding: 0 30px; 
    display: grid; grid-template-columns: 1fr; gap: 50px; align-items: center;
}
@media (min-width: 1024px) { .hero-v2-inner { grid-template-columns: 1fr 1fr; } }

.hero-v2-text h1 { font-family: var(--font-serif); font-size: clamp(2.5rem, 5vw, 4.5rem); line-height: 1.1; color: var(--primary); margin-bottom: 20px; }
.hero-v2-text p { font-size: 1.1rem; color: var(--muted); margin-bottom: 40px; max-width: 500px; }
.hero-v2-image img { width: 100%; border-radius: 30px; box-shadow: var(--shadow-lux); }

/* --- SECTIONS --- */
.section-padding { padding: 80px 0; }
.section-title { text-align: center; margin-bottom: 50px; }
.section-title h2 { font-family: var(--font-serif); font-size: 2.5rem; color: var(--primary); margin-bottom: 10px; }
.section-title p { color: var(--muted); font-size: 1rem; }

/* --- CATEGORIES --- */
.category-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; padding: 0 30px; }
.category-card { 
    background: white; border-radius: var(--radius); padding: 30px; text-align: center; 
    transition: 0.3s; border: 1px solid var(--border); text-decoration: none;
}
.category-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lux); border-color: var(--accent); }
.category-card img { width: 100px; height: 100px; object-fit: contain; margin-bottom: 20px; }
.category-card h3 { font-family: var(--font-serif); font-size: 1.5rem; color: var(--primary); margin-bottom: 10px; }
.btn-category { 
    display: inline-block; background: var(--primary); color: white; padding: 8px 20px; 
    border-radius: 50px; font-size: 12px; font-weight: 600; 
}

/* --- PRODUCT CARD --- */
.ritual-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 30px; padding: 0 30px; }
.product-card { 
    background: white; border-radius: var(--radius); overflow: hidden; 
    transition: 0.3s; border: 1px solid var(--border); position: relative;
}
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lux); }
.card-visual { aspect-ratio: 1/1; overflow: hidden; }
.card-visual img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.product-card:hover .card-visual img { transform: scale(1.05); }
.card-info { padding: 20px; }
.card-tag { font-size: 10px; font-weight: 700; color: var(--accent); letter-spacing: 1px; text-transform: uppercase; }
.card-title-serif { 
    display: block; font-family: var(--font-serif); font-size: 1.3rem; color: var(--primary); 
    text-decoration: none; margin: 5px 0; 
}
.price-row { font-size: 1.1rem; font-weight: 700; color: var(--primary); margin-bottom: 20px; }

.card-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.btn-add-cart { 
    background: var(--accent-soft); color: var(--primary); border: none; padding: 12px; 
    border-radius: 8px; font-size: 11px; font-weight: 700; cursor: pointer; transition: 0.3s;
}
.btn-buy-now { 
    background: var(--primary); color: white; border: none; padding: 12px; 
    border-radius: 8px; font-size: 11px; font-weight: 700; cursor: pointer; transition: 0.3s;
}
.btn-add-cart:hover { background: var(--accent); color: white; }
.btn-buy-now:hover { background: var(--accent); }

/* --- TESTIMONIALS --- */
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; padding: 0 30px; }
.testimonial-card { background: white; padding: 40px; border-radius: var(--radius); box-shadow: var(--shadow-lux); text-align: center; }
.testimonial-card p { font-style: italic; color: var(--muted); margin-bottom: 20px; }
.testimonial-user { display: flex; align-items: center; justify-content: center; gap: 15px; }
.testimonial-user img { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; }
.testimonial-user h4 { font-weight: 700; font-size: 14px; }

/* --- BLOG --- */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 30px; padding: 0 30px; }
.blog-card { background: white; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }
.blog-card img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.blog-content { padding: 25px; }
.blog-tag { font-size: 10px; font-weight: 700; color: var(--accent); text-transform: uppercase; }
.blog-content h3 { font-family: var(--font-serif); font-size: 1.4rem; margin: 10px 0; color: var(--primary); }
.blog-meta { font-size: 12px; color: var(--muted); }

/* --- TRUST BADGES --- */
.trust-badges { background: var(--primary); color: white; padding: 40px 0; }
.trust-grid { 
    max-width: 1400px; margin: 0 auto; display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px; text-align: center; 
}
.trust-item { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.trust-item svg { color: var(--accent); }
.trust-item h4 { font-size: 14px; font-weight: 600; }
.trust-item p { font-size: 12px; opacity: 0.7; }

/* --- FLOATING SEARCH --- */
.floating-search-btn {
    position: fixed; bottom: 40px; right: 40px;
    background: var(--primary); color: white;
    border: none; border-radius: 100px;
    padding: 15px 30px; display: flex; align-items: center; gap: 12px;
    box-shadow: 0 20px 50px rgba(26,46,26,0.3);
    cursor: pointer; z-index: 4000;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-family: var(--font-sans); font-weight: 800; font-size: 11px; letter-spacing: 2px;
}
.floating-search-btn:hover { transform: translateY(-10px) scale(1.05); background: var(--accent); }
.floating-search-btn svg { transition: 0.3s; }
.floating-search-btn:hover svg { transform: rotate(15deg); }

@media (max-width: 768px) {
    .floating-search-btn { bottom: 20px; right: 20px; padding: 12px 20px; }
    .floating-search-btn span { display: none; }
}

/* --- SEARCH OVERLAY ENHANCEMENTS --- */
#search-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(255,255,255,0.98); z-index: 9000;
    display: none; backdrop-filter: blur(25px);
    animation: fadeIn 0.4s ease;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.search-container-lux {
    max-width: 1000px; margin: 12vh auto; padding: 0 40px;
}
.search-input-lux {
    width: 100%; background: none; border: none;
    border-bottom: 3px solid var(--accent);
    font-family: var(--font-serif); font-size: clamp(2.5rem, 10vw, 6rem);
    color: var(--primary); outline: none; padding: 40px 0;
    margin-bottom: 60px; transition: 0.5s;
    font-style: italic;
}
.search-input-lux::placeholder { color: rgba(26,46,26,0.05); }
.search-input-lux:focus { border-color: var(--primary); padding-left: 20px; }

#search-results-live {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 40px;
}
.search-result-item {
    display: flex; align-items: center; gap: 25px; padding: 25px;
    background: white; border-radius: 24px; text-decoration: none;
    color: var(--primary); transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid var(--border);
}
.search-result-item:hover {
    transform: translateY(-10px); border-color: var(--accent);
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}
.search-result-item img { width: 80px; height: 80px; border-radius: 16px; object-fit: cover; }
.search-result-info h4 { font-size: 16px; margin-bottom: 8px; font-family: var(--font-serif); font-weight: 700; }
.search-result-info span { font-size: 13px; color: var(--accent); font-weight: 800; letter-spacing: 1px; }

/* --- CHECKOUT & CART --- */
.checkout-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 60px; }
.checkout-section h1 { font-family: var(--font-serif); font-size: 3rem; margin-bottom: 30px; }
.checkout-section p { color: var(--muted); margin-bottom: 30px; }

.payment-methods { display: flex; gap: 20px; margin-bottom: 40px; }
.payment-method-card { flex: 1; cursor: pointer; padding: 20px; border: 1px solid var(--border); border-radius: 16px; text-align: center; transition: 0.3s; }
.payment-method-card.active { border: 2px solid var(--primary); background: rgba(26,46,26,0.05); }
.payment-method-card.active .method-title { color: var(--primary); }
.method-title { font-weight: 800; font-size: 12px; letter-spacing: 1px; color: var(--muted); }
.method-desc { font-size: 10px; color: var(--muted); margin-top: 5px; }

.checkout-form { display: grid; gap: 20px; }
.checkout-input { font-family: var(--font-sans); font-size: 1rem; text-align: left; padding: 15px; border: none; border-bottom: 1px solid var(--border); background: transparent; outline: none; width: 100%; transition: 0.3s; }
.checkout-input:focus { border-color: var(--accent); }

.pincode-checker { display: flex; gap: 10px; align-items: center; border-bottom: 1px solid var(--border); padding: 5px 0; }
.pincode-input { flex: 1; border: none; background: transparent; font-family: var(--font-sans); font-size: 1rem; padding: 10px; outline: none; }
.btn-check-pincode { background: var(--primary); color: white; border: none; padding: 10px 20px; border-radius: 50px; font-size: 10px; font-weight: 700; cursor: pointer; letter-spacing: 1px; transition: 0.3s; }
.btn-check-pincode:hover { background: var(--accent); }

.order-summary-card { background: white; border: 1px solid var(--border); border-radius: 24px; padding: 40px; position: sticky; top: 100px; box-shadow: var(--shadow-lux); }
.summary-item { display: flex; justify-content: space-between; margin-bottom: 15px; font-size: 0.9rem; }
.summary-total { display: flex; justify-content: space-between; font-weight: 800; font-size: 1.4rem; color: var(--primary); border-top: 1px solid var(--border); margin-top: 25px; padding-top: 25px; }

.cart-item { display: flex; gap: 25px; padding: 25px; border: 1px solid var(--border); border-radius: 24px; align-items: center; background: white; position: relative; transition: 0.3s; }
.cart-item:hover { box-shadow: var(--shadow-lux); border-color: var(--accent); }
.cart-item img { width: 100px; height: 100px; border-radius: 15px; object-fit: cover; }
.cart-summary { background: var(--primary); color: white; padding: 40px; border-radius: 30px; margin-top: 40px; text-align: center; box-shadow: 0 30px 60px rgba(0,0,0,0.2); }

/* --- ACCOUNT --- */
.profile-header {
    background: var(--primary); color: white; padding: 80px 20px 60px;
    text-align: center; border-bottom: 2px solid var(--accent); position: relative; overflow: hidden;
}
.avatar-crown {
    width: 100px; height: 100px; border-radius: 50%; border: 3px solid var(--accent);
    padding: 5px; display: inline-block; margin-bottom: 20px; background: white;
}
.avatar-crown img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; }

.ritual-card-account {
    background: white; border-radius: 24px; border: 1px solid var(--border); padding: 30px; margin-bottom: 25px; transition: 0.3s;
}
.ritual-card-account:hover { border-color: var(--accent); transform: translateY(-3px); box-shadow: var(--shadow-lux); }

.status-badge {
    padding: 6px 15px; border-radius: 50px; font-size: 8px; font-weight: 900; text-transform: uppercase; letter-spacing: 1px;
}
.status-placed { background: #fff8eb; color: #b45309; }
.status-delivered { background: #f0fdf4; color: #166534; }
.status-cancelled { background: #fef2f2; color: #991b1b; }
.status-refund { background: #fdf4ff; color: #701a75; }

.profile-grid { display: grid; grid-template-columns: 1fr; gap: 50px; padding: 60px 20px; }
@media (min-width: 900px) {
    .profile-grid { grid-template-columns: 350px 1fr; padding: 60px 40px; }
}

/* --- FOOTER --- */
.luxury-footer { padding: 100px 20px; background: #000; color: white; text-align: center; }
.footer-logo { font-family: var(--font-sans); font-size: 14px; letter-spacing: 8px; font-weight: 700; margin-bottom: 40px; }
.footer-links { display: flex; justify-content: center; gap: 30px; margin-bottom: 40px; flex-wrap: wrap; }
.footer-link { color: white; text-decoration: none; font-size: 11px; letter-spacing: 2px; opacity: 0.6; transition: 0.3s; }
.footer-link:hover { opacity: 1; color: var(--accent); }

/* --- BUTTONS --- */
.btn-ritual {
    display: inline-flex; align-items: center; justify-content: center;
    background: var(--accent); color: white; border: none; padding: 15px 40px;
    border-radius: 50px; font-size: 12px; font-weight: 800; letter-spacing: 2px;
    text-decoration: none; transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
}
.btn-ritual:hover { background: var(--primary); transform: translateY(-5px); box-shadow: 0 20px 40px rgba(0,0,0,0.1); }

.btn-ritual-dark {
    display: inline-flex; align-items: center; justify-content: center;
    background: var(--primary); color: white; border: none; padding: 15px 40px;
    border-radius: 50px; font-size: 12px; font-weight: 800; letter-spacing: 2px;
    text-decoration: none; transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
}
.btn-ritual-dark:hover { background: var(--accent); transform: translateY(-5px); box-shadow: 0 20px 40px rgba(0,0,0,0.1); }

/* --- PAGINATION --- */
.pagination-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 60px 0 100px;
}
.next-ritual-link {
    padding: 20px 60px;
    background: var(--primary);
    color: white;
    border-radius: 100px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: 0.3s;
    border: 1px solid var(--accent);
}
.next-ritual-link:hover { background: var(--accent); transform: scale(1.05); }

/* --- CONTENT PAGES --- */
.content-page-header {
    text-align: center;
    margin-bottom: 60px;
    padding-top: 120px;
}
.content-page-header h1, .content-page-header h2 {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 15px;
    color: var(--primary);
}
.content-page-header p {
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 700;
}

.content-page-body {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    color: var(--muted);
    font-size: 1.1rem;
}
.content-page-body p { margin-bottom: 25px; }

/* --- CONTACT FORM --- */
.contact-form-container {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: 30px;
    box-shadow: var(--shadow-lux);
    border: 1px solid var(--border);
}
.form-group { margin-bottom: 25px; }
.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--primary);
}
.form-control {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid var(--border);
    border-radius: 12px;
    font-family: var(--font-sans);
    outline: none;
    transition: 0.3s;
    font-size: 15px;
}
.form-control:focus { border-color: var(--accent); background: #fdfcf8; }

/* --- BLOG SINGLE --- */
.blog-hero { height: 70vh; position: relative; overflow: hidden; }
.blog-hero img { width: 100%; height: 100%; object-fit: cover; }
.blog-hero-overlay { 
    position: absolute; 
    top: 0; left: 0; width: 100%; height: 100%; 
    background: linear-gradient(to bottom, transparent, rgba(10,15,10,0.9)); 
    display: flex; align-items: flex-end; padding: 80px 0; 
}
.blog-header-content { max-width: 1000px; margin: 0 auto; width: 100%; padding: 0 30px; color: white; }
.blog-body { 
    max-width: 850px; 
    margin: 80px auto; 
    padding: 0 30px; 
    line-height: 2; 
    font-size: 1.15rem; 
    color: var(--primary); 
}
.blog-body p { margin-bottom: 35px; }
.blog-body h2, .blog-body h3 { margin: 40px 0 20px; font-family: var(--font-serif); }

/* --- WISHLIST --- */
.wishlist-header { text-align: center; margin-bottom: 80px; padding-top: 100px; }
.empty-state { text-align: center; padding: 120px 0; }
.empty-state p { font-size: 1.4rem; color: var(--muted); font-family: var(--font-serif); }

/* --- LOGIN --- */
.login-body-bg {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: var(--silk);
    padding-top: 0; /* Remove default body padding */
}
.login-container { width: 100%; max-width: 420px; text-align: center; margin: 0 auto; }
.login-logo-section { margin-bottom: 30px; }
.login-logo-section img { width: 80px; height: 80px; border-radius: 20px; border: 2px solid var(--accent); box-shadow: var(--shadow-lux); }
.login-logo-section h1 { font-family: var(--font-serif); font-size: 2.5rem; margin-top: 15px; font-weight: 900; color: var(--primary); }
.login-logo-section p { color: var(--muted); font-size: 0.9rem; margin-top: 5px; font-weight: 400; letter-spacing: 1px; }

.login-card { background: white; border: 1px solid var(--border); padding: 40px 30px; border-radius: 30px; box-shadow: var(--shadow-lux); }
.login-card h3 { font-family: var(--font-serif); font-size: 1.5rem; margin-bottom: 10px; color: var(--primary); }
.login-card p.step-desc { font-size: 12px; color: var(--muted); margin-bottom: 25px; }

.phone-input-wrapper { position: relative; margin-bottom: 25px; }
.phone-prefix {
    position: absolute; left: 15px; top: 50%; transform: translateY(-50%); 
    display: flex; align-items: center; gap: 8px; border-right: 1px solid var(--border); padding-right: 10px;
}
.phone-prefix img { width: 18px; border-radius: 2px; }
.phone-prefix span { font-weight: 800; color: var(--primary); font-size: 14px; }
.phone-input {
    width: 100%; padding: 18px 15px 18px 85px; border: 2px solid var(--border); 
    border-radius: 16px; font-family: var(--font-sans); outline: none; 
    font-size: 16px; transition: 0.3s; font-weight: 600;
}
.phone-input:focus { border-color: var(--accent); }

.otp-input-wrapper { display: flex; justify-content: center; gap: 15px; margin-bottom: 30px; }
.otp-box-visible { 
    margin-top: 20px; 
    padding: 25px; 
    background: #fdfaf3; 
    border-radius: 20px; 
    border: 2px dashed var(--accent);
    box-shadow: inset 0 2px 10px rgba(0,0,0,0.02);
}
.otp-input {
    width: 100%; max-width: 200px; padding: 20px; border: 2px solid var(--accent); 
    border-radius: 20px; font-family: var(--font-sans); outline: none; 
    font-size: 32px; text-align: center; letter-spacing: 15px; font-weight: 900; 
    color: var(--primary); background: rgba(var(--accent-rgb), 0.05); 
    box-shadow: inset 0 2px 10px rgba(0,0,0,0.05);
}
.otp-ritual-input {
    width: 100%;
    text-align: center;
    font-size: 28px;
    letter-spacing: 12px;
    font-weight: 900;
    border: 2px solid var(--border);
    border-radius: 12px;
    padding: 15px;
    background: white;
    color: var(--primary);
    transition: 0.3s;
    outline: none;
}
.otp-ritual-input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 20px rgba(197,160,89,0.1);
}
.otp-input:focus { border-color: var(--primary); background: white; box-shadow: 0 10px 30px rgba(var(--accent-rgb), 0.2); }

.divider-text { margin: 25px 0; display: flex; align-items: center; gap: 15px; color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: 2px; opacity: 0.5; }
.divider-text hr { flex: 1; border: 0; border-top: 1px solid var(--border); }

.login-footer-link { font-size: 11px; color: var(--muted); text-decoration: none; font-weight: 700; letter-spacing: 1px; border-bottom: 1px solid transparent; transition: 0.3s; }
.login-footer-link:hover { border-color: var(--muted); }

.instagram-badge {
    color: #E1306C; text-decoration: none; font-size: 10px; font-weight: 800; 
    letter-spacing: 1px; display: flex; align-items: center; gap: 8px; 
    border: 1px solid var(--border); padding: 10px 20px; border-radius: 50px; transition: 0.3s;
}
.instagram-badge:hover { background: rgba(225, 48, 108, 0.05); }

/* --- CART --- */
.cart-container { max-width: 900px; margin: 0 auto; padding: 0 20px; }
.cart-header { font-family: var(--font-serif); font-size: clamp(2.5rem, 8vw, 4rem); font-weight: 900; text-align: center; margin-bottom: 60px; padding-top: 120px; }
.cart-item-info { flex: 1; }
.cart-item-title { font-family: var(--font-serif); font-size: 1.4rem; font-weight: 800; margin-bottom: 5px; color: var(--primary); text-decoration: none; }
.cart-item-meta { display: flex; justify-content: space-between; align-items: flex-end; }
.cart-item-unit { font-size: 10px; color: var(--muted); margin-bottom: 2px; font-weight: 700; }
.cart-item-qty { font-size: 12px; font-weight: 900; color: var(--primary); }
.cart-item-subtotal-label { font-size: 9px; color: var(--muted); letter-spacing: 1px; margin-bottom: 2px; font-weight: 700; }
.cart-item-subtotal { font-size: 1.2rem; font-weight: 900; color: var(--accent); }
.cart-remove-btn { position: absolute; top: 20px; right: 20px; color: #ff4d4d; font-size: 10px; font-weight: 900; text-decoration: none; letter-spacing: 1px; }

.cart-total-label { font-size: 10px; letter-spacing: 3px; opacity: 0.6; margin-bottom: 10px; font-weight: 700; }
.cart-total-amount { font-size: clamp(2.5rem, 8vw, 3.5rem); font-weight: 900; color: var(--accent); margin-bottom: 40px; font-family: var(--font-serif); }

/* --- FOOTER --- */
.footer-contact { margin-bottom: 40px; }
.footer-contact-label { font-size: 11px; letter-spacing: 2px; opacity: 0.4; margin-bottom: 10px; font-weight: 700; text-transform: uppercase; }
.footer-contact-email { color: var(--accent); text-decoration: none; font-size: 12px; font-weight: 700; letter-spacing: 1px; }
.footer-copyright { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 40px; }
.footer-copyright p { opacity: 0.4; font-size: 10px; letter-spacing: 3px; font-weight: 600; text-transform: uppercase; }

/* --- MOBILE MENU --- */
.mobile-menu-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; }
.mobile-menu-footer { margin-top: auto; padding-top: 40px; border-top: 1px solid var(--border); }

.alert-ritual { padding: 15px 20px; border-radius: 15px; font-size: 13px; font-weight: 700; margin-bottom: 25px; border: 1px solid transparent; }
.alert-ritual.error { background: #fef2f2; color: #991b1b; border-color: #fee2e2; }
.alert-ritual.success { background: #f0fdf4; color: #166534; border-color: #dcfce7; }

/* --- FAQ --- */
.faq-list { max-width: 850px; margin: 0 auto; }
.faq-item {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border);
}
.faq-question {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--primary);
}
.faq-answer {
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.8;
}

/* --- POLICIES --- */
.policy-content, .terms-content { max-width: 900px; margin: 0 auto; }
.policy-section, .terms-section { margin-bottom: 60px; }
.policy-section h2, .terms-section h2 {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: var(--primary);
}
.policy-section p, .terms-section p, 
.policy-section ul, .terms-section ul {
    font-size: 1.05rem;
    color: var(--muted);
    line-height: 1.9;
    margin-bottom: 20px;
}
.policy-section ul, .terms-section ul { padding-left: 25px; list-style: disc; }
.policy-section li, .terms-section li { margin-bottom: 12px; }

/* --- PDP SLIDER --- */
.pdp-slider-container { position: relative; width: 100%; overflow: hidden; border-radius: 30px; box-shadow: var(--shadow-lux); }
.pdp-slider { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; -ms-overflow-style: none; }
.pdp-slider::-webkit-scrollbar { display: none; }
.pdp-slide { flex: 0 0 100%; scroll-snap-align: start; }
.pdp-slide img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }

.slider-dots { display: flex; justify-content: center; gap: 10px; margin-top: 20px; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--border); cursor: pointer; transition: 0.3s; }
.dot.active { background: var(--accent); width: 24px; border-radius: 10px; }

/* --- REVIEWS --- */
.reviews-section { margin-top: 80px; border-top: 1px solid var(--border); padding-top: 60px; }
.review-summary { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; margin-bottom: 60px; background: white; padding: 40px; border-radius: 30px; border: 1px solid var(--border); }
.rating-overview h3 { font-family: var(--font-serif); font-size: 3rem; color: var(--primary); margin-bottom: 10px; }
.stars { color: #fbbf24; font-size: 1.2rem; margin-bottom: 15px; }
.review-bars { display: flex; flex-direction: column; gap: 10px; }
.bar-item { display: flex; align-items: center; gap: 15px; font-size: 12px; font-weight: 700; color: var(--muted); }
.bar-bg { flex: 1; height: 6px; background: #f3f4f6; border-radius: 10px; overflow: hidden; }
.bar-fill { height: 100%; background: var(--accent); border-radius: 10px; }

.review-list { display: grid; gap: 30px; }
.review-card { background: white; padding: 30px; border-radius: 20px; border: 1px solid var(--border); }
.review-header { display: flex; justify-content: space-between; margin-bottom: 15px; }
.review-user { font-weight: 800; font-size: 14px; color: var(--primary); }
.review-date { font-size: 11px; color: var(--muted); }
.review-text { font-size: 14px; line-height: 1.6; color: var(--muted); }

.write-review-card { background: var(--primary); color: white; padding: 40px; border-radius: 30px; margin-top: 60px; }
.write-review-card h3 { font-family: var(--font-serif); font-size: 2rem; margin-bottom: 20px; }
.star-rating-input { display: flex; gap: 10px; margin-bottom: 20px; }
.star-rating-input input { display: none; }
.star-rating-input label { font-size: 2rem; color: rgba(255,255,255,0.2); cursor: pointer; transition: 0.3s; }
.star-rating-input label:hover, .star-rating-input label.active { color: #fbbf24; }

/* --- UTILS --- */
.container { max-width: 1400px; margin: 0 auto; width: 100%; }
.reveal { opacity: 0; transform: translateY(30px); transition: 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.active { opacity: 1; transform: translateY(0); }

/* --- ADMIN SHELL --- */
.admin-shell { display: flex; min-height: 100vh; background: #0a0f0a; color: white; }
.admin-nav { width: 280px; background: #0f140f; padding: 40px; border-right: 1px solid rgba(197,160,89,0.1); display: flex; flex-direction: column; position: fixed; height: 100vh; }
.admin-nav a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 11px; font-weight: 800; letter-spacing: 2px; margin-bottom: 25px; transition: 0.3s; }
.admin-nav a:hover, .admin-nav a.active { color: var(--accent); }
.admin-main { flex: 1; margin-left: 280px; padding: 60px; background: #0a0f0a; }

.luxury-table { border-collapse: collapse; text-align: left; font-size: 14px; }
.luxury-table th { padding: 20px; border-bottom: 1px solid rgba(197,160,89,0.1); color: var(--accent); font-size: 10px; letter-spacing: 2px; }
.luxury-table td { padding: 20px; border-bottom: 1px solid rgba(255,255,255,0.02); }

.btn-ritual-dark { 
    background: var(--accent); color: white; border: none; padding: 15px 30px; 
    border-radius: 50px; font-size: 11px; font-weight: 800; letter-spacing: 2px; 
    cursor: pointer; transition: 0.3s; text-decoration: none; display: inline-block; text-align: center;
}
.btn-ritual-dark:hover { background: white; color: var(--primary); transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0,0,0,0.2); }
