/* NuraVita Premium Styles */

:root {
    --primary-green: #0A4C3A;
    --secondary-gold: #B8985F;
    --light-gold: #D4B98A;
    --white: #FFFFFF;
    --light-beige: #F8F6F2;
    --sand: #F5F1E8;
    --text-dark: #2C3E50;
    --text-light: #7F8C8D;
    --success: #27AE60;
    --warning: #F39C12;
    --error: #E74C3C;
    
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Inter', sans-serif;
    
    --shadow-light: 0 2px 20px rgba(0,0,0,0.08);
    --shadow-medium: 0 4px 30px rgba(0,0,0,0.12);
    --shadow-heavy: 0 8px 40px rgba(0,0,0,0.16);
    
    --border-radius: 12px;
    --border-radius-large: 20px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-secondary);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: var(--white);
    box-shadow: var(--shadow-light);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo h1 {
    font-family: var(--font-primary);
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: -5px;
}

.nav-logo .tagline {
    font-size: 12px;
    color: var(--secondary-gold);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.nav-menu {
    display: flex;
    gap: 40px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-green);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--secondary-gold);
    border-radius: 1px;
}

.nav-actions {
    display: flex;
    gap: 20px;
    align-items: center;
}

.search-icon,
.cart-icon {
    position: relative;
    cursor: pointer;
    font-size: 18px;
    color: var(--text-dark);
    transition: var(--transition);
}

.search-icon:hover,
.cart-icon:hover {
    color: var(--primary-green);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--secondary-gold);
    color: var(--white);
    font-size: 10px;
    font-weight: 600;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--light-beige) 0%, var(--sand) 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-text h1 {
    font-family: var(--font-primary);
    font-size: 52px;
    font-weight: 700;
    color: var(--primary-green);
    line-height: 1.2;
    margin-bottom: 24px;
}

.hero-text p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 32px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-align: center;
    min-width: 140px;
}

.btn-primary {
    background: var(--primary-green);
    color: var(--white);
    box-shadow: var(--shadow-light);
}

.btn-primary:hover {
    background: #083a2b;
    box-shadow: var(--shadow-medium);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
}

.btn-secondary:hover {
    background: var(--primary-green);
    color: var(--white);
}

/* Product Showcase */
.product-showcase {
    position: relative;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-jar {
    width: 120px;
    height: 160px;
    border-radius: var(--border-radius-large);
    position: absolute;
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
}

.jar-1 {
    background: linear-gradient(135deg, var(--primary-green) 0%, #0d5d46 100%);
    transform: rotate(-15deg) translateX(-40px);
    z-index: 3;
}

.jar-2 {
    background: linear-gradient(135deg, var(--secondary-gold) 0%, #c8a05f 100%);
    transform: rotate(5deg);
    z-index: 2;
}

.jar-3 {
    background: linear-gradient(135deg, #e8dcc0 0%, var(--light-beige) 100%);
    transform: rotate(25deg) translateX(40px);
    z-index: 1;
}

.product-jar:hover {
    transform: scale(1.05) rotate(0deg);
    z-index: 4;
}

/* Hero Pattern */
.hero-pattern {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="%23f8f6f2"><path d="M0,50 Q250,0 500,50 T1000,50 L1000,100 L0,100 Z"/></svg>') no-repeat center bottom;
    background-size: cover;
}

/* Brand Story */
.brand-story {
    padding: 100px 0;
    background: var(--white);
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.story-text h2 {
    font-family: var(--font-primary);
    font-size: 42px;
    color: var(--primary-green);
    margin-bottom: 24px;
}

.story-text p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.story-features {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.feature i {
    font-size: 24px;
    color: var(--secondary-gold);
    margin-bottom: 8px;
}

.feature span {
    font-size: 14px;
    color: var(--text-dark);
    font-weight: 500;
}

.date-orchard {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, var(--light-beige) 0%, var(--sand) 100%);
    border-radius: var(--border-radius-large);
    position: relative;
    overflow: hidden;
}

.date-orchard::before {
    content: '🌴🌴🌴';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 60px;
    opacity: 0.3;
}

/* Why NuraVita */
.why-nuravita {
    padding: 100px 0;
    background: var(--light-beige);
}

.why-nuravita h2 {
    font-family: var(--font-primary);
    font-size: 42px;
    color: var(--primary-green);
    text-align: center;
    margin-bottom: 60px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.feature-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--border-radius-large);
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary-gold) 0%, var(--light-gold) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.feature-icon i {
    font-size: 32px;
    color: var(--white);
}

.feature-card h3 {
    font-family: var(--font-primary);
    font-size: 20px;
    color: var(--primary-green);
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Featured Products */
.featured-products {
    padding: 100px 0;
    background: var(--white);
}

.featured-products h2 {
    font-family: var(--font-primary);
    font-size: 42px;
    color: var(--primary-green);
    text-align: center;
    margin-bottom: 60px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.product-card {
    background: var(--white);
    border-radius: var(--border-radius-large);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.product-image {
    position: relative;
    height: 200px;
    background: linear-gradient(135deg, var(--light-beige) 0%, var(--sand) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-jar.sun-plus {
    background: linear-gradient(135deg, var(--primary-green) 0%, #0d5d46 100%);
}

.product-jar.iron-ease {
    background: linear-gradient(135deg, #C0392B 0%, #E74C3C 100%);
}

.product-jar.immushield {
    background: linear-gradient(135deg, #8E44AD 0%, #9B59B6 100%);
}

.product-jar.dream-care {
    background: linear-gradient(135deg, #2980B9 0%, #3498DB 100%);
}

.product-jar.her-balance {
    background: linear-gradient(135deg, #D81B60 0%, #E91E63 100%);
}

.product-badges {
    position: absolute;
    top: 16px;
    right: 16px;
    display: flex;
    gap: 8px;
}

.badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge.bestseller {
    background: var(--warning);
    color: var(--white);
}

.badge.new {
    background: var(--success);
    color: var(--white);
}

.product-info {
    padding: 24px;
}

.product-info h3 {
    font-family: var(--font-primary);
    font-size: 18px;
    color: var(--primary-green);
    margin-bottom: 8px;
}

.product-info p {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 16px;
}

.product-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.benefit-tag {
    background: var(--light-beige);
    color: var(--primary-green);
    padding: 4px 10px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 500;
}

.product-price {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 20px;
}

.price {
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-green);
}

.subscription-price {
    font-size: 14px;
    color: var(--text-light);
}

/* How It Works */
.how-it-works {
    padding: 100px 0;
    background: var(--light-beige);
}

.how-it-works h2 {
    font-family: var(--font-primary);
    font-size: 42px;
    color: var(--primary-green);
    text-align: center;
    margin-bottom: 16px;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--secondary-gold);
    font-weight: 600;
    margin-bottom: 60px;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 60px;
    margin-top: 60px;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--secondary-gold);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    z-index: 2;
}

.step-icon {
    width: 100px;
    height: 100px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: var(--shadow-light);
}

.step-icon i {
    font-size: 36px;
    color: var(--primary-green);
}

.step h3 {
    font-family: var(--font-primary);
    font-size: 20px;
    color: var(--primary-green);
    margin-bottom: 12px;
}

.step p {
    color: var(--text-light);
    line-height: 1.6;
    max-width: 280px;
    margin: 0 auto;
}

/* Customer Trust */
.customer-trust {
    padding: 100px 0;
    background: var(--white);
}

.customer-trust h2 {
    font-family: var(--font-primary);
    font-size: 42px;
    color: var(--primary-green);
    text-align: center;
    margin-bottom: 60px;
}

.trust-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.trust-badge {
    text-align: center;
    padding: 40px 20px;
    background: var(--light-beige);
    border-radius: var(--border-radius-large);
    transition: var(--transition);
}

.trust-badge:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-light);
}

.badge-icon {
    width: 80px;
    height: 80px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: var(--shadow-light);
}

.badge-icon i {
    font-size: 32px;
    color: var(--secondary-gold);
}

.trust-badge h3 {
    font-family: var(--font-primary);
    font-size: 18px;
    color: var(--primary-green);
    margin-bottom: 8px;
}

.trust-badge p {
    color: var(--text-light);
    font-size: 14px;
}

/* Social Proof */
.social-proof {
    padding: 100px 0;
    background: var(--light-beige);
}

.social-proof h2 {
    font-family: var(--font-primary);
    font-size: 42px;
    color: var(--primary-green);
    text-align: center;
    margin-bottom: 60px;
}

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

.testimonial-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-light);
    text-align: center;
}

.testimonial-rating {
    margin-bottom: 20px;
}

.testimonial-rating i {
    color: var(--warning);
    font-size: 16px;
}

.testimonial-text {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.testimonial-author strong {
    color: var(--primary-green);
    font-weight: 600;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 14px;
}

/* Newsletter */
.newsletter {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-green) 0%, #0d5d46 100%);
    color: var(--white);
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-text h2 {
    font-family: var(--font-primary);
    font-size: 36px;
    margin-bottom: 16px;
}

.newsletter-text p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 40px;
}

.newsletter-form {
    display: flex;
    gap: 16px;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 16px 20px;
    border: none;
    border-radius: var(--border-radius);
    font-size: 16px;
    background: rgba(255,255,255,0.9);
}

.newsletter-form .btn-primary {
    background: var(--secondary-gold);
    color: var(--white);
}

.newsletter-form .btn-primary:hover {
    background: var(--light-gold);
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 60px;
    margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
    font-family: var(--font-primary);
    margin-bottom: 20px;
    color: var(--secondary-gold);
}

.footer-section h3 {
    font-size: 24px;
}

.footer-section h4 {
    font-size: 18px;
}

.footer-section p {
    color: #BDC3C7;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

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

.footer-section ul li a {
    color: #BDC3C7;
    text-decoration: none;
    transition: var(--transition);
}

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

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--secondary-gold);
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    text-align: center;
    color: #BDC3C7;
    font-size: 14px;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-primary {
    color: var(--primary-green);
}

.text-secondary {
    color: var(--secondary-gold);
}

.bg-primary {
    background: var(--primary-green);
}

.bg-secondary {
    background: var(--secondary-gold);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Success/Error Messages */
.message {
    padding: 16px 20px;
    border-radius: var(--border-radius);
    margin-bottom: 20px;
    font-weight: 500;
}

.message.success {
    background: rgba(39, 174, 96, 0.1);
    color: var(--success);
    border: 1px solid rgba(39, 174, 96, 0.2);
}

.message.error {
    background: rgba(231, 76, 60, 0.1);
    color: var(--error);
    border: 1px solid rgba(231, 76, 60, 0.2);
}