/* ===== LuneJoy - Premium Personal Wellness ===== */
:root {
    --gold: #C9A96E;
    --gold-light: #DFC896;
    --dark: #1A1A1A;
    --darker: #0D0D0D;
    --light: #FAF8F5;
    --gray: #6B6B6B;
    --gray-light: #E8E4DF;
    --white: #FFFFFF;
    --accent: #2D2D2D;
    --radius: 8px;
    --shadow: 0 4px 24px rgba(0,0,0,0.08);
    --transition: all 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Tajawal', sans-serif;
    background: var(--light);
    color: var(--dark);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, .logo, .section-title { font-family: 'Cormorant Garamond', serif; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* Navbar */
.navbar {
    background: rgba(13,13,13,0.95);
    backdrop-filter: blur(16px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(201,169,110,0.15);
}
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 64px;
}
.logo {
    font-size: 28px;
    font-weight: 700;
    color: var(--gold);
    text-decoration: none;
    letter-spacing: 2px;
}
.nav-links { display: flex; gap: 32px; }
.nav-links a {
    color: var(--light);
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    transition: var(--transition);
    position: relative;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: var(--transition);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }
.lang-toggle {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 6px 14px;
    font-size: 12px;
    cursor: pointer;
    border-radius: var(--radius);
    transition: var(--transition);
    font-family: 'Tajawal', sans-serif;
}
.lang-toggle:hover { background: var(--gold); color: var(--dark); }
/* Hero */
.hero { height: 85vh; min-height: 600px; background: linear-gradient(135deg, #0D0D0D 0%, #1a1a2e 50%, #16213e 100%); display: flex; align-items: center; justify-content: center; text-align: center; position: relative; overflow: hidden; }
.hero::before { content: "''"; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: radial-gradient(ellipse at center, rgba(201,169,110,0.08) 0%, transparent 70%); }
.hero-content { position: relative; z-index: 2; max-width: 700px; padding: 0 24px; }
.hero-title { font-size: clamp(36px, 6vw, 64px); color: #FFFFFF; font-weight: 700; line-height: 1.2; margin-bottom: 20px; }
.hero-subtitle { font-size: clamp(16px, 2.5vw, 20px); color: rgba(255,255,255,0.7); margin-bottom: 36px; font-weight: 300; }
.btn-primary { display: inline-block; background: #C9A96E; color: #1A1A1A; padding: 14px 36px; font-size: 15px; font-weight: 600; text-decoration: none; border-radius: 8px; border: none; cursor: pointer; transition: all 0.3s ease; font-family: "Tajawal", sans-serif; }
.btn-primary:hover { background: #DFC896; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,169,110,0.25); }
.btn-secondary { display: inline-block; background: transparent; color: #1A1A1A; padding: 12px 32px; font-size: 14px; font-weight: 500; text-decoration: none; border-radius: 8px; border: 1px solid #1A1A1A; cursor: pointer; transition: all 0.3s ease; font-family: "Tajawal", sans-serif; }
.btn-secondary:hover { background: #1A1A1A; color: #FAF8F5; }
.center-btn { text-align: center; margin-top: 40px; }

/* Hero */
.hero { height: 85vh; min-height: 600px; background: linear-gradient(135deg, #0D0D0D 0%, #1a1a2e 50%, #16213e 100%); display: flex; align-items: center; justify-content: center; text-align: center; position: relative; overflow: hidden; }
.hero::before { content: ""; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: radial-gradient(ellipse at center, rgba(201,169,110,0.08) 0%, transparent 70%); }
.hero-content { position: relative; z-index: 2; max-width: 700px; padding: 0 24px; }
.hero-title { font-size: clamp(36px, 6vw, 64px); color: #FFFFFF; font-weight: 700; line-height: 1.2; margin-bottom: 20px; }
.hero-subtitle { font-size: clamp(16px, 2.5vw, 20px); color: rgba(255,255,255,0.7); margin-bottom: 36px; font-weight: 300; }
.btn-primary { display: inline-block; background: #C9A96E; color: #1A1A1A; padding: 14px 36px; font-size: 15px; font-weight: 600; text-decoration: none; border-radius: 8px; border: none; cursor: pointer; transition: all 0.3s ease; font-family: "Tajawal", sans-serif; }
.btn-primary:hover { background: #DFC896; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,169,110,0.25); }
.btn-secondary { display: inline-block; background: transparent; color: #1A1A1A; padding: 12px 32px; font-size: 14px; font-weight: 500; text-decoration: none; border-radius: 8px; border: 1px solid #1A1A1A; cursor: pointer; transition: all 0.3s ease; font-family: "Tajawal", sans-serif; }
.btn-secondary:hover { background: #1A1A1A; color: #FAF8F5; }
.center-btn { text-align: center; margin-top: 40px; }
.features { padding: 80px 0; background: #FFFFFF; }
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.feature-card { text-align: center; padding: 32px 20px; border-radius: 8px; transition: all 0.3s ease; background: #FAF8F5; }
.feature-card:hover { transform: translateY(-4px); box-shadow: 0 4px 24px rgba(0,0,0,0.08); }
.feature-icon { font-size: 40px; margin-bottom: 16px; }
.feature-card h3 { font-size: 20px; margin-bottom: 8px; color: #1A1A1A; }
.feature-card p { font-size: 14px; color: #6B6B6B; }
.section-title { font-size: 36px; text-align: center; margin-bottom: 48px; color: #1A1A1A; font-weight: 600; }
.featured-products { padding: 80px 0; }
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.product-card { background: #FFFFFF; border-radius: 8px; overflow: hidden; transition: all 0.3s ease; border: 1px solid #E8E4DF; }
.product-card:hover { transform: translateY(-4px); box-shadow: 0 4px 24px rgba(0,0,0,0.08); }
.product-image { height: 240px; background: linear-gradient(135deg, #f5f0eb 0%, #e8e4df 100%); display: flex; align-items: center; justify-content: center; font-size: 64px; position: relative; overflow: hidden; }
.product-image .product-emoji { transition: transform 0.4s ease; }
.product-card:hover .product-emoji { transform: scale(1.1); }
.product-badge { position: absolute; top: 12px; right: 12px; background: #C9A96E; color: #1A1A1A; padding: 4px 10px; font-size: 11px; font-weight: 600; border-radius: 20px; }
.product-info { padding: 20px; }
.product-info h3 { font-size: 18px; margin-bottom: 6px; }
.product-category { font-size: 12px; color: #C9A96E; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.product-price { font-size: 20px; font-weight: 700; color: #1A1A1A; margin-bottom: 12px; }
.product-price span { font-size: 14px; color: #6B6B6B; font-weight: 400; }
.btn-buy { width: 100%; background: #1A1A1A; color: #FFFFFF; padding: 10px; border: none; border-radius: 8px; font-size: 14px; cursor: pointer; transition: all 0.3s ease; font-family: "Tajawal", sans-serif; }
.btn-buy:hover { background: #C9A96E; color: #1A1A1A; }
.trust-section { padding: 80px 0; background: #0D0D0D; color: #FFFFFF; }
.trust-section .section-title { color: #FFFFFF; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center; }
.trust-item h3 { font-size: 48px; color: #C9A96E; font-weight: 700; margin-bottom: 4px; }
.trust-item p { font-size: 14px; color: rgba(255,255,255,0.6); }
.page-header { padding: 80px 0 40px; text-align: center; background: linear-gradient(180deg, #0D0D0D 0%, #1A1A1A 100%); color: #FFFFFF; }
.page-header h1 { font-size: 48px; margin-bottom: 12px; }
.page-header p { font-size: 18px; color: rgba(255,255,255,0.7); }
.products-section { padding: 60px 0; }
.categories-filter { display: flex; justify-content: center; gap: 12px; margin-bottom: 40px; flex-wrap: wrap; }
.cat-btn { padding: 10px 24px; border: 1px solid #E8E4DF; background: #FFFFFF; font-size: 14px; cursor: pointer; border-radius: 24px; transition: all 0.3s ease; font-family: "Tajawal", sans-serif; color: #1A1A1A; }
.cat-btn.active, .cat-btn:hover { background: #1A1A1A; color: #FFFFFF; border-color: #1A1A1A; }
.payment-section { padding: 60px 0; }
.payment-intro { text-align: center; max-width: 600px; margin: 0 auto 48px; }
.payment-intro h2 { font-size: 28px; margin-bottom: 12px; }
.payment-intro p { color: #6B6B6B; }
.payment-methods { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 60px; }
.payment-card { background: #FFFFFF; padding: 32px 24px; border-radius: 8px; text-align: center; border: 1px solid #E8E4DF; transition: all 0.3s ease; }
.payment-card:hover { box-shadow: 0 4px 24px rgba(0,0,0,0.08); }
.payment-card.highlight { border-color: #C9A96E; background: linear-gradient(180deg, rgba(201,169,110,0.05) 0%, #FFFFFF 100%); }
.payment-icon { margin-bottom: 16px; display: flex; align-items: center; justify-content: center; gap: 8px; }
.payment-card h3 { font-size: 22px; margin-bottom: 8px; }
.payment-card p { font-size: 14px; color: #6B6B6B; margin-bottom: 16px; }
.payment-address { background: #FAF8F5; padding: 12px; border-radius: 8px; word-break: break-all; }
.payment-address code { font-size: 12px; color: #1A1A1A; display: block; margin-bottom: 8px; }
.btn-copy { background: #1A1A1A; color: #FFFFFF; border: none; padding: 6px 16px; font-size: 12px; border-radius: 4px; cursor: pointer; font-family: "Tajawal", sans-serif; transition: all 0.3s ease; }
.btn-copy:hover { background: #C9A96E; color: #1A1A1A; }
.payment-note { font-size: 12px; color: #6B6B6B; font-style: italic; }
.payment-howto { margin-bottom: 60px; }
.payment-howto h2 { text-align: center; font-size: 28px; margin-bottom: 32px; }
.steps { max-width: 700px; margin: 0 auto; display: flex; flex-direction: column; gap: 20px; }
.step { display: flex; gap: 20px; align-items: flex-start; }
.step-num { width: 44px; height: 44px; background: #C9A96E; color: #1A1A1A; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 18px; flex-shrink: 0; }
.step-content h4 { font-size: 18px; margin-bottom: 4px; }
.step-content p { font-size: 14px; color: #6B6B6B; }
.payment-faq h2 { text-align: center; font-size: 28px; margin-bottom: 32px; }
details { background: #FFFFFF; border: 1px solid #E8E4DF; border-radius: 8px; padding: 16px 20px; margin-bottom: 12px; cursor: pointer; }
details summary { font-weight: 500; font-size: 16px; list-style: none; display: flex; justify-content: space-between; align-items: center; }
details summary::after { content: "+"; font-size: 20px; color: #C9A96E; font-weight: 700; }
details[open] summary::after { content: "−"; }
details p { margin-top: 12px; font-size: 14px; color: #6B6B6B; line-height: 1.6; }
.contact-section { padding: 60px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-info h2, .contact-form h2 { font-size: 28px; margin-bottom: 16px; }
.contact-info > p { color: #6B6B6B; margin-bottom: 32px; }
.contact-method { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 28px; padding: 20px; background: #FFFFFF; border-radius: 8px; border: 1px solid #E8E4DF; }
.contact-icon { font-size: 32px; }
.contact-detail h4 { font-size: 18px; margin-bottom: 4px; }
.contact-detail p { font-size: 14px; color: #6B6B6B; margin-bottom: 8px; }
.contact-detail .btn-primary, .contact-detail .btn-secondary { padding: 8px 20px; font-size: 13px; }
.contact-form { background: #FFFFFF; padding: 36px; border-radius: 8px; border: 1px solid #E8E4DF; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 14px; font-weight: 500; margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px 16px; border: 1px solid #E8E4DF; border-radius: 8px; font-size: 14px; font-family: "Tajawal", sans-serif; transition: all 0.3s ease; background: #FAF8F5; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: #C9A96E; box-shadow: 0 0 0 3px rgba(201,169,110,0.1); }
.form-group textarea { resize: vertical; }
#form-status { margin-top: 12px; font-size: 14px; font-weight: 500; }
.footer { background: #0D0D0D; color: #FFFFFF; padding: 60px 0 20px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-col h4 { font-size: 18px; margin-bottom: 16px; color: #C9A96E; }
.footer-col p, .footer-col a { font-size: 14px; color: rgba(255,255,255,0.6); text-decoration: none; display: block; margin-bottom: 8px; transition: all 0.3s ease; }
.footer-col a:hover { color: #C9A96E; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 20px; text-align: center; font-size: 13px; color: rgba(255,255,255,0.4); }
@media (max-width: 1024px) { .feature-grid, .product-grid, .trust-grid { grid-template-columns: repeat(2, 1fr); } .payment-methods { grid-template-columns: 1fr; } .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) { .nav-links { gap: 16px; } .nav-links a { font-size: 13px; } .hero { height: 70vh; min-height: 450px; } .feature-grid, .product-grid { grid-template-columns: 1fr; } .trust-grid { grid-template-columns: repeat(2, 1fr); } .contact-grid { grid-template-columns: 1fr; } .footer-grid { grid-template-columns: 1fr; } .page-header h1 { font-size: 36px; } .section-title { font-size: 28px; } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.feature-card, .product-card, .trust-item, .payment-card { animation: fadeInUp 0.6s ease forwards; }
