/* CSS for Juicevynex - Professional Juicer Affiliate Site */

:root {
    --primary-color: #2e7d32; /* Deep Juice Green */
    --secondary-color: #f57c00; /* Fresh Orange */
    --accent-color: #00c853;
    --text-main: #263238;
    --text-light: #546e7a;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --shadow-soft: 0 10px 30px rgba(0,0,0,0.05);
    --shadow-medium: 0 15px 35px rgba(0,0,0,0.1);
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

/* Reset-like classes to avoid using * */
.app-body, .navbar-style, .nav-container-style, .nav-links-style, .hero-style, .hero-content-style, 
.section-style, .container-style, .feature-card-style, .details-box-style, .steps-grid-style, 
.step-card-style, .recipe-card-style, .faq-item-style, .footer-style, .footer-grid-style {
    box-sizing: border-box;
}

.app-body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: var(--text-main);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
}

.h1-style, .h2-style, .h3-style, .h4-style, .h5-style, .h6-style {
    margin: 0;
    font-weight: 700;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

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

.ul-style {
    list-style: none;
    padding: 0;
    margin: 0;
}

.li-style {
    display: list-item;
}

.p-style {
    margin-bottom: 1.5rem;
    word-wrap: break-word;
}

/* Layout Classes */
.container-style {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.section-style {
    padding: 80px 0;
    width: 100%;
}

/* Navigation */
.navbar-style {
    background: var(--bg-white);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-soft);
    width: 100%;
}

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

.logo-style {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: -0.5px;
    white-space: nowrap;
}

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

.nav-link-style {
    font-weight: 500;
    color: var(--text-light);
}

.nav-link-style:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero-style {
    background: linear-gradient(135deg, #ffffff 0%, #f1f8e9 100%);
    padding: 60px 0;
    display: flex;
    align-items: center;
    width: 100%;
}

.hero-content-style {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    width: 100%;
}

.hero-text-style .h1-style {
    font-size: clamp(32px, 5vw, 56px);
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text-style .p-style {
    font-size: clamp(16px, 2vw, 18px);
    color: var(--text-light);
    margin-bottom: 30px;
    max-width: 100%;
}

.btn-style {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
    max-width: 100%;
}

.btn-primary-style {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 10px 20px rgba(46, 125, 50, 0.2);
}

.btn-primary-style:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(46, 125, 50, 0.3);
}

.hero-image-style .img-style {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
}

.img-style {
    max-width: 100%;
    height: auto;
    display: block;
}

.img-small-style {
    max-width: 450px;
    margin: 0 auto 30px;
    border-radius: 12px;
}

/* Features Section */
.features-grid-style {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
}

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

.feature-card-style:hover {
    transform: translateY(-10px);
}

.feature-icon-style {
    font-size: 40px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

/* Details Section */
.details-box-style {
    background: var(--bg-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    margin-top: 40px;
    width: 100%;
}

.details-header-style {
    background: var(--primary-color);
    color: white;
    padding: 30px;
    text-align: center;
}

.details-body-style {
    padding: clamp(20px, 5vw, 40px);
}

.comparison-table-style {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    display: block;
    overflow-x: auto;
}

.th-style, .td-style {
    padding: 15px;
    border-bottom: 1px solid #eee;
    text-align: left;
    min-width: 120px;
}

.th-style {
    background: #f9f9f9;
    color: var(--text-light);
    font-weight: 700;
}

/* Steps Section */
.steps-grid-style {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
    width: 100%;
}

.step-card-style {
    position: relative;
    padding: 30px;
    background: var(--bg-white);
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
    text-align: center;
}

.step-number-style {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* Recipes Section */
.recipe-card-style {
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.recipe-content-style {
    padding: 20px;
}

/* FAQ Section */
.faq-container-style {
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}

.faq-item-style {
    background: var(--bg-white);
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.faq-question-style {
    padding: 20px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.faq-answer-style {
    padding: 0 20px 20px;
    color: var(--text-light);
}

/* Footer */
.footer-style {
    background: #1a1a1a;
    color: white;
    padding: 60px 0 30px;
    width: 100%;
}

.footer-grid-style {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
    width: 100%;
}

.footer-logo-style {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.footer-links-style .h4-style {
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-link-style {
    display: block;
    color: #ccc;
    margin-bottom: 10px;
    font-size: 14px;
}

.footer-link-style:hover {
    color: white;
}

.disclosure-style {
    border-top: 1px solid #333;
    padding-top: 30px;
    text-align: center;
    color: #777;
    font-size: 12px;
}

/* Contact Form Styles */
.form-style {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.input-style, .textarea-style {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 14px;
    width: 100%;
    box-sizing: border-box;
}

.textarea-style {
    height: 120px;
    resize: vertical;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-content-style {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    .hero-text-style .p-style {
        margin-left: auto;
        margin-right: auto;
    }
    .features-grid-style {
        grid-template-columns: repeat(2, 1fr);
    }
    .steps-grid-style {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid-style {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .section-style {
        padding: 50px 0;
    }
    .features-grid-style {
        grid-template-columns: 1fr;
    }
    .footer-grid-style {
        grid-template-columns: 1fr;
    }
    .steps-grid-style {
        grid-template-columns: 1fr;
    }
    
    /* Mobile Navigation */
    .menu-toggle-style {
        display: flex;
    }
    .nav-links-style {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-medium);
        gap: 15px;
    }
    .nav-links-style.active {
        display: flex;
    }
}

/* Hamburger Menu Icon */
.menu-toggle-style {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

.bar-style {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.contact-container-style {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    background: white;
    padding: clamp(20px, 5vw, 40px);
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
    align-items: start;
}

@media (max-width: 992px) {
    .contact-container-style {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
}

.mobile-stack-style .hero-image-style {
    order: -1;
}
