:root {
    --primary-bg: #030a1c; /* Deep starry night blue */
    --secondary-bg: #0a1936; 
    --accent-gold: #cba358;
    --accent-gold-hover: #e5c07b;
    --text-light: #f0f4f8;
    --text-muted: #9aa8c3;
    --glass-bg: rgba(10, 25, 54, 0.4);
    --glass-border: rgba(203, 163, 88, 0.2);
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--primary-bg);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.highlight {
    color: var(--accent-gold);
    font-style: italic;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

/* Button */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-gold), #9a7837);
    color: #fff;
    box-shadow: 0 4px 15px rgba(203, 163, 88, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(203, 163, 88, 0.5);
    background: linear-gradient(135deg, var(--accent-gold-hover), var(--accent-gold));
}

.badge {
    background: rgba(203, 163, 88, 0.15);
    color: var(--accent-gold);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid var(--glass-border);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(3, 10, 28, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 15px 0;
    transition: var(--transition);
}

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

.logo img {
    height: 48px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links a:hover {
    color: var(--accent-gold);
}

.cart-icon {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--accent-gold);
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    animation: slowZoom 20s infinite alternate;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(3, 10, 28, 0.9) 0%, rgba(3, 10, 28, 0.4) 100%);
}

@keyframes slowZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.hero-content {
    max-width: 600px;
}

.hero-content .badge {
    margin-bottom: 24px;
    display: inline-block;
}

.hero-content h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

/* About & Audience Section */
.audience-section {
    padding: 80px 0;
    background: var(--primary-bg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.audience-section .lead-text {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.text-center h2 {
    font-size: 3rem;
    margin-bottom: 24px;
}

.text-center {
    text-align: center;
}

/* Benefits Grid Section */
.benefits-grid-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, var(--primary-bg), var(--secondary-bg));
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.benefit-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 40px 32px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    background: rgba(10, 25, 54, 0.6);
}

.b-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 1.5rem;
    color: var(--accent-gold);
    margin-bottom: 16px;
}

.benefit-card p {
    color: var(--text-light);
    font-size: 1.05rem;
}

/* Magic Section */
.magic-section {
    padding: 100px 0;
    background: var(--secondary-bg);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-text h2 {
    font-size: 3rem;
    margin-bottom: 24px;
}

.about-text p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.image-glass {
    position: relative;
    border-radius: 20px;
    padding: 10px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.image-glass img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
}

/* Ritual/How to Use Section */
.ritual-section {
    padding: 100px 0;
    background: linear-gradient(to top, var(--primary-bg), var(--secondary-bg));
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.ritual-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.step-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 40px 32px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

/* Deep Dive / Science Section */
.deep-dive-section {
    padding: 100px 0;
    background: linear-gradient(to top, var(--primary-bg), var(--secondary-bg));
}

.science-content {
    background: rgba(10, 25, 54, 0.5);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 60px;
    margin-top: 40px;
}

.science-content p {
    font-size: 1.1rem;
    margin-bottom: 24px;
    color: var(--text-light);
    line-height: 1.8;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: var(--primary-bg);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--glass-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 16px;
    border-radius: 12px;
    overflow: hidden;
}

.faq-question {
    padding: 24px;
    cursor: pointer;
    font-size: 1.2rem;
    font-family: var(--font-heading);
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(10, 25, 54, 0.4);
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--accent-gold);
    background: rgba(10, 25, 54, 0.8);
}

.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    color: var(--text-muted);
}

.faq-answer.active {
    padding: 24px;
    max-height: 500px; /* arbitrary large value for transition */
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

/* WhatsApp Icon SVG style */
.whatsapp-float svg {
    width: 35px;
    height: 35px;
    fill: currentColor;
}

/* Coming Soon Page */
.coming-soon-body {
    height: 100vh;
    overflow: hidden;
}

.coming-soon-section {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding-top: 80px;
}

.coming-soon-content {
    position: relative;
    z-index: 10;
    background: rgba(3, 10, 28, 0.7);
    padding: 60px;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    max-width: 800px;
}

/* Extended Product Details */
.details-extended {
    margin-top: 64px;
    grid-column: 1 / -1;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 48px;
    border-radius: 20px;
}

.info-block {
    margin-bottom: 32px;
}

.info-block h3 {
    font-size: 1.8rem;
    color: var(--accent-gold);
    margin-bottom: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 8px;
}

.info-block p, .info-block ul {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.info-block ul {
    padding-left: 20px;
    list-style-type: disc;
}

.info-block ul li {
    margin-bottom: 8px;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    background: rgba(10, 25, 54, 0.6);
}

.step-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(203,163,88,0.05) 0%, rgba(0,0,0,0) 70%);
    opacity: 0;
    transition: var(--transition);
    z-index: 0;
}

.step-card:hover::before {
    opacity: 1;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-gold), #9a7837);
    color: var(--primary-bg);
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 24px;
    position: relative;
    z-index: 1;
}

.step-card h3 {
    font-size: 1.4rem;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.step-card p {
    color: var(--text-muted);
    font-size: 1rem;
    position: relative;
    z-index: 1;
}

/* Products Section */
.products-section {
    padding: 100px 0;
    background: var(--secondary-bg);
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 64px;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 40px;
}

.product-card {
    background: var(--glass-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: var(--glass-border);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.product-badges {
    position: absolute;
    top: 16px;
    left: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 10;
}

.product-card .badge {
    font-size: 0.75rem;
    padding: 4px 12px;
    background: rgba(3, 10, 28, 0.8);
    backdrop-filter: blur(4px);
}

.product-image {
    width: 100%;
    height: 350px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-title {
    font-size: 1.4rem;
    margin-bottom: 8px;
    font-family: var(--font-heading);
    cursor: pointer;
}

.product-title:hover {
    color: var(--accent-gold);
}

.product-weight {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.product-price-row {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    gap: 8px;
}

.original-price {
    font-size: 1rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.btn-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--glass-border);
    background: transparent;
    color: var(--accent-gold);
    font-size: 1.2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.btn-icon:hover {
    background: var(--accent-gold);
    color: var(--primary-bg);
}

/* Footer */
footer {
    background: var(--primary-bg);
    padding: 80px 0 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-logo img {
    height: 56px;
    margin-bottom: 16px;
}

.footer-logo p {
    color: var(--text-muted);
    max-width: 300px;
}

.footer-links h4, .footer-contact h4 {
    font-size: 1.2rem;
    margin-bottom: 24px;
    color: var(--text-light);
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: var(--text-muted);
}

.footer-links ul li a:hover {
    color: var(--accent-gold);
}

.footer-contact p {
    color: var(--text-muted);
    margin-bottom: 12px;
}

.footer-bottom {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Responsive */
@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
    .hero-content h1 {
        font-size: 3.5rem;
    }
    .footer-content {
        grid-template-columns: 1fr;
    }
    .nav-links {
        display: none;
    }
}
@media (max-width: 600px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
}

/* Product Details Page Specifics */
.product-details {
    padding: 140px 0 100px;
}
.details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.details-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    display: block;
}
.details-info h1 {
    font-size: 3.5rem;
    margin-bottom: 16px;
}
.details-info .price-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}
.details-info .price {
    font-size: 2rem;
}
.details-info p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}
.details-info .btn {
    width: 100%;
    text-align: center;
    padding: 18px;
    font-size: 1.1rem;
}
@media (max-width: 900px) {
    .details-grid {
        grid-template-columns: 1fr;
    }
}
