/*
 Theme Name:   Essential Oil Uses
 Theme URI:    https://essentialoiluses.org
 Description:  Custom child theme for Essential Oil Uses authority site. Registers custom post types, ACF integration, and SEO-optimized templates.
 Author:       Essential Oil Uses
 Author URI:   https://essentialoiluses.org
 Template:     generatepress
 Version:      1.0.0
 License:      GNU General Public License v2 or later
 License URI:  https://www.gnu.org/licenses/gpl-2.0.html
 Text Domain:  essentialoiluses
*/

/* ==========================================================================
   Base Overrides
   ========================================================================== */

:root {
    --eou-green-900: #1a3a2a;
    --eou-green-800: #2e5e4e;
    --eou-green-700: #3d7a64;
    --eou-green-600: #4e9a7e;
    --eou-green-100: #e8f0ed;
    --eou-green-50: #f4f9f6;
    --eou-stone-800: #292524;
    --eou-stone-600: #57534e;
    --eou-stone-200: #e7e5e4;
    --eou-stone-100: #f5f5f4;
    --eou-stone-50: #fafaf9;
}

body {
    font-family: 'Source Sans 3', 'Source Sans Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--eou-stone-800);
    background: var(--eou-stone-50);
}

/* CTA Recommendation Card */
.eou-cta-card {
    max-width: 480px;
    margin: 2rem 0;
    padding: 1.5rem;
    border: 1px solid var(--eou-green-100);
    border-radius: 12px;
    background: var(--eou-green-50);
}

.eou-cta-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--eou-green-800);
    margin: 0 0 0.5rem 0;
}

.eou-cta-card p {
    font-size: 0.9rem;
    color: var(--eou-stone-600);
    margin: 0 0 1rem 0;
}

.eou-cta-card .eou-cta-button {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background: var(--eou-green-700);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: background 0.2s;
}

.eou-cta-card .eou-cta-button:hover {
    background: var(--eou-green-800);
}

.eou-cta-card .eou-wholesale-note {
    display: block;
    margin-top: 0.75rem;
    font-size: 0.8rem;
    color: var(--eou-stone-600);
}

.eou-cta-card .eou-wholesale-note a {
    color: var(--eou-green-700);
}

/* Content Separator (between education and CTA) */
.eou-content-separator {
    border: none;
    border-top: 1px solid var(--eou-stone-200);
    margin: 3rem 0 2rem 0;
}

/* Quick Facts Sidebar */
.eou-quick-facts {
    background: var(--eou-stone-100);
    border-radius: 12px;
    padding: 1.25rem;
    margin-bottom: 1.5rem;
}

.eou-quick-facts h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--eou-green-800);
    margin: 0 0 0.75rem 0;
}

.eou-quick-facts dl {
    margin: 0;
}

.eou-quick-facts dt {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--eou-stone-600);
    margin-top: 0.5rem;
}

.eou-quick-facts dd {
    font-size: 0.9rem;
    color: var(--eou-stone-800);
    margin: 0.15rem 0 0 0;
}

/* Email Capture Inline */
.eou-email-capture {
    background: var(--eou-green-50);
    border: 1px solid var(--eou-green-100);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
    text-align: center;
}

.eou-email-capture h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--eou-green-800);
    margin: 0 0 0.5rem 0;
}

.eou-email-capture p {
    font-size: 0.9rem;
    color: var(--eou-stone-600);
    margin: 0 0 1rem 0;
}

/* FAQ Section */
.eou-faq-section {
    margin: 2rem 0;
}

.eou-faq-item {
    border-bottom: 1px solid var(--eou-stone-200);
    padding: 1rem 0;
}

.eou-faq-item h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--eou-stone-800);
    margin: 0 0 0.5rem 0;
}

.eou-faq-item p {
    font-size: 0.95rem;
    color: var(--eou-stone-600);
    margin: 0;
    line-height: 1.6;
}

/* Safety Warning Box */
.eou-safety-box {
    background: #fef3c7;
    border: 1px solid #f59e0b;
    border-radius: 8px;
    padding: 1rem 1.25rem;
    margin: 1.5rem 0;
}

.eou-safety-box h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: #92400e;
    margin: 0 0 0.5rem 0;
}

.eou-safety-box p {
    font-size: 0.9rem;
    color: #78350f;
    margin: 0;
}

/* Disclosure */
.eou-disclosure {
    font-size: 0.8rem;
    color: var(--eou-stone-600);
    font-style: italic;
    margin-top: 0.5rem;
}

/* Comparison Table */
.eou-comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.eou-comparison-table th {
    background: var(--eou-green-100);
    color: var(--eou-green-800);
    font-size: 0.85rem;
    font-weight: 600;
    text-align: left;
    padding: 0.75rem 1rem;
}

.eou-comparison-table td {
    padding: 0.65rem 1rem;
    border-bottom: 1px solid var(--eou-stone-200);
    font-size: 0.9rem;
    color: var(--eou-stone-800);
}

.eou-comparison-table tr:last-child td {
    border-bottom: none;
}
