/* ROOT VARIABLES */
:root {
    --ee-green: #0D4A22;
    --ee-light-green: #E8F0EB;
    --ee-gold: #FBBF24;
    --ee-bg: #FAF9F6;
    --ee-input-bg: #F3F4F6;
    --ee-text: #1F2937;
    --ee-text-light: #6B7280;
    --ee-white: #FFFFFF;
}

.ee-wrapper {
    font-family: 'Inter', 'Helvetica Neue', sans-serif;
    color: var(--ee-text);
    background: var(--ee-bg);
    margin: 0;
    padding: 0;
}

/* --- BUTTONS --- */
.ee-btn {
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    display: inline-block;
}
.ee-btn-primary {
    background: var(--ee-green);
    color: var(--ee-white);
}
.ee-btn-primary:hover { background: #083015; }

.ee-btn-secondary {
    background: #E5E7EB;
    color: var(--ee-green);
}
.ee-btn-secondary:hover { background: #D1D5DB; }

.ee-btn-outline {
    background: transparent;
    color: var(--ee-green);
    border: 2px solid var(--ee-green);
    padding: 12px 26px;
}
.ee-btn-outline:hover { background: var(--ee-light-green); }

.ee-btn-yellow {
    background: var(--ee-gold);
    color: var(--ee-green);
}
.ee-btn-yellow:hover { background: #EAB308; }

.ee-badge-gold {
    background: var(--ee-gold);
    color: var(--ee-green);
    font-size: 10px;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

/* --- LANDING PAGE --- */
#ee-landing-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.ee-hero {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 80px;
}
.ee-hero-content {
    flex: 1;
}
.ee-hero-content h1 {
    font-size: 3.5rem;
    color: var(--ee-green);
    line-height: 1.1;
    margin-bottom: 20px;
}
.ee-hero-content p {
    font-size: 1.1rem;
    color: var(--ee-text-light);
    margin-bottom: 30px;
}
.ee-hero-buttons {
    display: flex;
    gap: 15px;
}
.ee-hero-image {
    flex: 1;
}
.ee-hero-image img {
    width: 100%;
    border-radius: 40px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.ee-benefits {
    text-align: center;
    margin-bottom: 80px;
    background: #F4F4F1;
    padding: 60px 20px;
    border-radius: 30px;
}
.ee-benefits h2 {
    font-size: 2.2rem;
    color: var(--ee-text);
    margin-bottom: 10px;
}
.ee-section-sub {
    color: var(--ee-text-light);
    max-width: 600px;
    margin: 0 auto 40px auto;
}
.ee-grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}
.ee-card-benefit {
    background: var(--ee-white);
    padding: 30px 20px;
    border-radius: 20px;
    text-align: left;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}
.ee-icon-box {
    background: var(--ee-light-green);
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}
.ee-card-benefit h3 {
    color: var(--ee-green);
    margin-bottom: 10px;
    font-size: 1.2rem;
}
.ee-card-benefit p {
    font-size: 0.9rem;
    color: var(--ee-text-light);
}

.ee-how-it-works {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
    padding: 0 20px;
}
.ee-hw-left {
    flex: 1;
}
.ee-hw-left h2 {
    font-size: 2.2rem;
    color: var(--ee-green);
}
.ee-hw-line {
    width: 60px;
    height: 4px;
    background: var(--ee-gold);
    margin-top: 20px;
}
.ee-hw-right {
    flex: 1.5;
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.ee-step-row {
    display: flex;
    gap: 20px;
}
.ee-step-number {
    width: 40px;
    height: 40px;
    background: var(--ee-green);
    color: var(--ee-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}
.ee-step-text h4 {
    margin: 0 0 5px 0;
    color: var(--ee-text);
    font-size: 1.2rem;
}
.ee-step-text p {
    margin: 0;
    color: var(--ee-text-light);
    font-size: 0.95rem;
}

.ee-cta-box {
    background: var(--ee-green);
    color: var(--ee-white);
    padding: 60px 40px;
    border-radius: 30px;
    text-align: center;
    margin-bottom: 80px;
}
.ee-cta-box h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--ee-white);
}
.ee-cta-box p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}


/* --- FORM PAGE --- */
#ee-form-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
}

.ee-form-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    gap: 40px;
}
.ee-form-header-text {
    flex: 1;
    max-width: 600px;
}
.ee-form-header-text h1 {
    font-size: 3.5rem;
    color: var(--ee-green);
    line-height: 1.1;
    margin-top: 10px;
    margin-bottom: 20px;
    letter-spacing: -1px;
}
.ee-form-header-text p {
    color: var(--ee-text-light);
    font-size: 1.1rem;
    line-height: 1.6;
}
.ee-form-header-image {
    flex: 0 0 250px;
}
.ee-form-header-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.ee-form-card {
    background: var(--ee-white);
    border-radius: 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    padding: 40px;
    margin-bottom: 30px;
}

.ee-stepper {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    border-bottom: 2px solid #F3F4F6;
    padding-bottom: 20px;
}
.ee-stepper .step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: #D1D5DB;
}
.ee-stepper .step .circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #F3F4F6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
}
.ee-stepper .step span {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
}
.ee-stepper .step.active {
    color: var(--ee-green);
}
.ee-stepper .step.active .circle {
    background: var(--ee-green);
    color: var(--ee-white);
}

.ee-step-content {
    display: none;
    animation: fadeIn 0.4s;
}
.ee-step-content.active {
    display: block;
}

.ee-step-title-area {
    margin-bottom: 30px;
}
.ee-step-title-area h3 {
    color: var(--ee-green);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.ee-form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.ee-form-group {
    margin-bottom: 20px;
}
.ee-form-group label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: var(--ee-text-light);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}
.ee-form-group input[type="text"],
.ee-form-group input[type="email"],
.ee-form-group input[type="number"],
.ee-form-group select,
.ee-form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: var(--ee-input-bg);
    border: 1px solid transparent;
    border-radius: 12px;
    font-size: 14px;
    color: var(--ee-text);
    box-sizing: border-box;
    transition: border 0.3s;
}
.ee-form-group input:focus,
.ee-form-group select:focus,
.ee-form-group textarea:focus {
    outline: none;
    border-color: var(--ee-green);
    background: #FFF;
}
.ee-form-group input.ee-error,
.ee-form-group select.ee-error,
.ee-form-group textarea.ee-error {
    border-color: #EF4444;
}

/* Upload Boxes */
.ee-upload-box {
    background: #FAFAFA;
    border-radius: 16px;
    padding: 20px;
    display: flex;
    flex-direction: column;
}
.ee-drop-area {
    border: 2px dashed #D1D5DB;
    border-radius: 12px;
    padding: 40px 20px;
    text-align: center;
    cursor: pointer;
    background: white;
    transition: all 0.3s;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.ee-drop-area:hover {
    border-color: var(--ee-green);
    background: var(--ee-light-green);
}
.ee-file-hidden {
    display: none !important;
}

.ee-form-actions {
    display: flex;
    margin-top: 30px;
    border-top: 1px solid #F3F4F6;
    padding-top: 20px;
}
.ee-form-actions.right { justify-content: flex-end; }
.ee-form-actions.split { justify-content: space-between; }

/* Split layout for step 2 */
.ee-split-layout {
    display: flex;
    gap: 40px;
}
.ee-split-left {
    width: 35%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.ee-split-right {
    width: 65%;
}
.ee-image-panel {
    background-image: url('side_panel_jars.png');
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    height: 300px;
    position: relative;
    overflow: hidden;
}
.ee-image-panel::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 50%;
    background: linear-gradient(transparent, rgba(13,74,34,0.9));
}
.ee-image-panel p {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    color: white;
    z-index: 2;
    font-size: 14px;
    font-weight: 500;
    margin: 0;
}
.ee-tip-box {
    background: #FEF3C7;
    padding: 20px;
    border-radius: 16px;
    font-size: 13px;
}
.ee-tip-box strong { color: #B45309; display: block; margin-bottom: 5px;}
.ee-step-h2 {
    color: var(--ee-green);
    font-size: 2rem;
    margin-top: 0;
    margin-bottom: 30px;
}

/* Mentor Box */
.ee-mentor-box {
    background: #FEF3C7;
    padding: 20px 30px;
    border-radius: 20px;
    display: flex;
    gap: 20px;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
}
.ee-mentor-box .ee-mentor-icon {
    font-size: 30px;
}
.ee-mentor-box strong { color: #B45309; font-size: 12px; }
.ee-mentor-box p { margin: 5px 0 0 0; font-size: 14px; color: #92400E; }

/* Timeline Success Page */
.ee-timeline {
    position: relative;
    padding-left: 20px;
}
.ee-timeline::before {
    content: '';
    position: absolute;
    left: 29px;
    top: 20px;
    bottom: 40px;
    width: 2px;
    background: #E5E7EB;
}
.ee-tl-item {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}
.ee-tl-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #E5E7EB;
    color: #9CA3AF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: bold;
    border: 4px solid white;
}
.ee-tl-content {
    padding-top: 2px;
}
.ee-tl-content strong {
    display: block;
    font-size: 15px;
    color: #111;
}
.ee-tl-content p {
    margin: 5px 0 0 0;
    font-size: 12px;
    color: #666;
}
.ee-tl-item.active .ee-tl-icon {
    background: var(--ee-green);
    color: white;
}
.ee-tl-item.inactive { opacity: 0.5; }

@media (max-width: 768px) {
    .ee-hero { flex-direction: column; }
    .ee-hw-left, .ee-hw-right { width: 100%; }
    .ee-how-it-works { flex-direction: column; }
    .ee-form-grid-2 { grid-template-columns: 1fr; }
    .ee-split-layout { flex-direction: column; }
    .ee-split-left, .ee-split-right { width: 100%; }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
}

/* ==========================================================================
   DOKAN DASHBOARD OVERRIDES (Espacio Emprendedor)
   ========================================================================== */

/* Background & Typography */
.dokan-dashboard-wrap {
    font-family: 'Inter', sans-serif;
    --dokan-theme-primary: #0D4A22 !important;
    --dokan-theme-primary-dark: #083015 !important;
}

/* Dokan Purple Overrides (Links & Icons) */
.dokan-dashboard-wrap a { color: var(--ee-green); }
.dokan-dashboard-wrap .subsubsub a.current { color: var(--ee-gold) !important; font-weight:bold; }
.dokan-dashboard-wrap .dokan-empty-area svg,
.dokan-dashboard-wrap .dokan-empty-area .dokan-empty-icon i { fill: var(--ee-green) !important; color: var(--ee-green) !important; }
.dokan-dashboard-wrap .dokan-empty-area .dokan-empty-icon { background: var(--ee-light-green) !important; }


/* Sidebar Menu */
.dokan-dashboard .dokan-dash-sidebar {
    background-color: var(--ee-green) !important;
    border-radius: 20px !important;
    padding: 20px 15px !important;
    margin-bottom: 30px !important;
}

/* Date Range Picker Brute Force */
.dokan-dashboard-wrap .dokan-report-range,
.dokan-report-range,
.report-range-container,
#dokan-report-range {
    border: 1px solid var(--ee-green) !important;
    color: var(--ee-green) !important;
    background: #fff !important;
}

.dokan-dashboard-wrap .dokan-report-range *,
.dokan-report-range *,
.report-range-container *,
#dokan-report-range * {
    color: var(--ee-green) !important;
    border-color: var(--ee-green) !important;
}

.dokan-dashboard .dokan-dash-sidebar ul.dokan-dashboard-menu {
    border: none !important;
    background: transparent !important;
}
.dokan-dashboard .dokan-dash-sidebar ul.dokan-dashboard-menu li {
    border-bottom: 1px solid rgba(255,255,255,0.05) !important;
    background: transparent !important;
}
.dokan-dashboard .dokan-dash-sidebar ul.dokan-dashboard-menu li a {
    color: #fff !important;
    font-weight: 500 !important;
    transition: all 0.3s ease !important;
    position: relative;
}
.dokan-dashboard .dokan-dash-sidebar ul.dokan-dashboard-menu li:hover > a,
.dokan-dashboard .dokan-dash-sidebar ul.dokan-dashboard-menu li.active > a {
    background-color: var(--ee-gold) !important;
    color: var(--ee-green) !important;
    padding-left: 25px !important;
    border-radius: 0 20px 20px 0 !important;
}
.dokan-dashboard .dokan-dash-sidebar ul.dokan-dashboard-menu li::after,
.dokan-dashboard .dokan-dash-sidebar ul.dokan-dashboard-menu li::before,
.dokan-dashboard .dokan-dash-sidebar ul.dokan-dashboard-menu li a::after,
.dokan-dashboard .dokan-dash-sidebar ul.dokan-dashboard-menu li a::before {
    display: none !important;
    content: none !important;
}

/* Fix Saldo Color */
.dokan-dashboard-wrap .amount,
.dokan-dashboard-wrap .dokan-right,
.dokan-dashboard-wrap .dokan-right * {
    color: var(--ee-green) !important;
}

/* Submenus */
.dokan-dashboard .dokan-dash-sidebar ul.dokan-dashboard-menu li ul {
    background-color: var(--ee-green) !important;
    border: none !important;
    border-radius: 16px !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15) !important;
    padding: 10px !important;
}
.dokan-dashboard .dokan-dash-sidebar ul.dokan-dashboard-menu li ul::before,
.dokan-dashboard .dokan-dash-sidebar ul.dokan-dashboard-menu li ul::after {
    display: none !important;
}
.dokan-dashboard .dokan-dash-sidebar ul.dokan-dashboard-menu li ul li a {
    border-radius: 10px !important;
    padding: 10px 15px !important;
    margin-bottom: 5px !important;
}
.dokan-dashboard .dokan-dash-sidebar ul.dokan-dashboard-menu li ul li:hover a,
.dokan-dashboard .dokan-dash-sidebar ul.dokan-dashboard-menu li ul li.active a {
    background-color: var(--ee-gold) !important;
    color: var(--ee-green) !important;
    padding-left: 15px !important; /* Reset the shift from main menu */
}

/* Cards & Widgets */
.dokan-dashboard .dokan-dashboard-content,
.dokan-dashboard .dokan-dashboard-content article {
    background: transparent !important;
}
.dokan-dashboard .dashboard-widget {
    background: #fff !important;
    border: none !important;
    border-radius: 20px !important;
    box-shadow: 0 10px 40px rgba(0,0,0,0.04) !important;
    padding: 25px !important;
}
.dokan-dashboard .dashboard-widget .widget-title {
    color: var(--ee-green) !important;
    border-bottom: 2px solid #F3F4F6 !important;
    font-weight: 700 !important;
    padding-bottom: 15px !important;
    margin-bottom: 20px !important;
    font-size: 1.2rem !important;
}

/* Panels */
.dokan-panel {
    border: none !important;
    border-radius: 20px !important;
    box-shadow: 0 10px 40px rgba(0,0,0,0.04) !important;
    overflow: hidden !important;
}
.dokan-panel-default > .dokan-panel-heading {
    background: var(--ee-green) !important;
    color: #fff !important;
    border: none !important;
}

/* Buttons */
.dokan-dashboard .dokan-btn,
.dokan-dashboard input[type="submit"],
.dokan-dashboard-wrap .dokan-btn-theme {
    background-color: var(--ee-green) !important;
    border-color: var(--ee-green) !important;
    color: #fff !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    padding: 10px 25px !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 10px rgba(13,74,34,0.1) !important;
}
.dokan-dashboard .dokan-btn:hover,
.dokan-dashboard input[type="submit"]:hover,
.dokan-dashboard-wrap .dokan-btn-theme:hover {
    background-color: var(--ee-gold) !important;
    border-color: var(--ee-gold) !important;
    color: var(--ee-green) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(251,191,36,0.3) !important;
}
.dokan-dashboard .dokan-btn-danger {
    background-color: #fee2e2 !important;
    border-color: #fee2e2 !important;
    color: #991b1b !important;
    box-shadow: none !important;
}

/* Numbers inside reports */
.dokan-dashboard .dashboard-widget .item-content h3 {
    color: var(--ee-green) !important;
    font-weight: 800 !important;
}

/* Tables */
.dokan-table {
    border-collapse: separate !important;
    border-spacing: 0 !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    border: 1px solid #eee !important;
}
.dokan-table th {
    background-color: #F3F4F6 !important;
    color: var(--ee-green) !important;
    font-weight: 600 !important;
    border-bottom: none !important;
}
.dokan-table td {
    border-top: 1px solid #eee !important;
}

/* Date Range Picker Overrides */
.dokan-dashboard-wrap .dokan-report-range,
.dokan-dashboard-wrap .report-range-container {
    border: 1px solid var(--ee-green) !important;
    color: var(--ee-green) !important;
    background: #fff !important;
}
.dokan-dashboard-wrap .dokan-report-range span,
.dokan-dashboard-wrap .dokan-report-range i {
    color: var(--ee-green) !important;
}

/* DatePicker Dropdown */
.dokan-date-range-picker, 
.daterangepicker,
.dokan-report-range-picker {
    border-color: var(--ee-green) !important;
    font-family: 'Inter', sans-serif !important;
}

.dokan-date-range-picker .ranges li.active,
.daterangepicker .ranges li.active {
    background-color: var(--ee-green) !important;
    color: #fff !important;
}

.dokan-date-range-picker .nav-tabs > li > a {
    background-color: var(--ee-gold) !important;
    color: var(--ee-green) !important;
    border: none !important;
    font-weight: bold !important;
}

.dokan-date-range-picker .nav-tabs > li.active > a {
    border-bottom: 4px solid var(--ee-green) !important;
}

.dokan-date-range-picker .btn-primary,
.daterangepicker .btn-success {
    background-color: var(--ee-green) !important;
    border-color: var(--ee-green) !important;
}

/* General Blue/Purple Cleanup */
.dokan-dashboard-wrap .text-primary,
.dokan-dashboard-wrap .text-info {
    color: var(--ee-green) !important;
}

/* --- STORE PAGE OVERRIDES --- */
.dokan-store-tabs {
    border-bottom: 1px solid #eee !important;
    margin-bottom: 30px !important;
}
.dokan-store-tabs ul li.active a,
.dokan-store-tabs ul li:hover a {
    border-bottom: 3px solid var(--ee-green) !important;
    color: var(--ee-green) !important;
    font-weight: 700 !important;
}

.dokan-store-info .dokan-store-info-wrapper {
    background-color: var(--ee-white) !important;
    border-radius: 20px !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05) !important;
    padding: 20px !important;
}

.dokan-store-info .dokan-store-name {
    color: var(--ee-green) !important;
}

.dokan-store-contact i,
.dokan-store-info i {
    color: var(--ee-green) !important;
}

.dokan-btn-follow {
    background-color: var(--ee-gold) !important;
    color: var(--ee-green) !important;
    border: none !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
}

/* --- GLOBAL DOKAN BUTTON BRUTE FORCE --- */
.dokan-btn,
.dokan-btn-theme,
.dokan-btn-primary,
.dokan-store-contact .dokan-btn,
.dokan-store-products-filter-area .dokan-btn,
button[name="dokan_store_filter_search"],
.dokan-btn-theme.dokan-btn-sm {
    background-color: var(--ee-green) !important;
    border-color: var(--ee-green) !important;
    color: #fff !important;
    border-radius: 50px !important;
    transition: all 0.3s ease !important;
}

.dokan-btn:hover,
.dokan-btn-theme:hover,
.dokan-btn-primary:hover,
.dokan-store-contact .dokan-btn:hover,
button[name="dokan_store_filter_search"]:hover {
    background-color: var(--ee-gold) !important;
    border-color: var(--ee-gold) !important;
    color: var(--ee-green) !important;
}

/* Input borders */
.dokan-store-products-filter-area input[type="text"],
.dokan-store-contact input,
.dokan-store-contact textarea {
    border-radius: 10px !important;
    border: 1px solid #eee !important;
}
.dokan-store-products-filter-area input[type="text"]:focus,
.dokan-store-contact input:focus,
.dokan-store-contact textarea:focus {
    border-color: var(--ee-green) !important;
    outline: none !important;
}


