/* ═══════════════════════════════════════════════
   EVODORA — CONVERSION BOOSTERS
   Trendyx-inspired sales acceleration features
   ═══════════════════════════════════════════════ */

/* ── Announcement Bar (Top Countdown) ── */
.evo-announce-bar {
    background: linear-gradient(90deg, var(--evo-gold-dark) 0%, var(--evo-gold) 50%, var(--evo-gold-dark) 100%);
    color: var(--evo-white);
    text-align: center;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    position: relative;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
}

.evo-announce-bar .evo-countdown {
    display: inline-flex;
    gap: 4px;
    align-items: center;
}

.evo-announce-bar .evo-countdown-unit {
    background: rgba(0,0,0,0.25);
    padding: 2px 6px;
    border-radius: 4px;
    font-family: var(--evo-font);
    font-size: 13px;
    font-weight: 800;
    min-width: 28px;
    text-align: center;
}

.evo-announce-bar .evo-countdown-sep {
    font-weight: 700;
    opacity: 0.7;
}

/* ── Social Proof Ticker Bar ── */
.evo-social-proof-bar {
    background: var(--evo-black);
    color: rgba(255,255,255,0.8);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    padding: 8px 0;
    overflow: hidden;
    white-space: nowrap;
}

.evo-social-proof-bar-inner {
    display: inline-flex;
    gap: 48px;
    animation: ticker 25s linear infinite;
}

.evo-social-proof-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ── Live Sales Notification (Bottom-Left Toast) ── */
.evo-sales-toast {
    position: fixed;
    bottom: 24px;
    left: 24px;
    background: var(--evo-white);
    border: 1px solid var(--evo-border);
    border-radius: var(--evo-radius-xl);
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 9998;
    max-width: 340px;
    opacity: 0;
    transform: translateX(-100%);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.evo-sales-toast.visible {
    opacity: 1;
    transform: translateX(0);
}

.evo-sales-toast-icon {
    width: 40px;
    height: 40px;
    background: #E8F5E9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 20px;
}

.evo-sales-toast-body {
    flex: 1;
}

.evo-sales-toast-name {
    font-weight: 700;
    font-size: 14px;
    color: var(--evo-black);
}

.evo-sales-toast-name span {
    font-weight: 400;
    color: var(--evo-gray);
}

.evo-sales-toast-product {
    font-size: 12px;
    color: var(--evo-gray);
    margin-top: 2px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.evo-sales-toast-close {
    position: absolute;
    top: 8px;
    right: 10px;
    background: none;
    border: none;
    color: var(--evo-gray-muted);
    cursor: pointer;
    font-size: 16px;
    padding: 0;
    line-height: 1;
}

/* ── Live Viewers Badge ── */
.evo-live-viewers {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--evo-gray);
    padding: 8px 0;
    margin-bottom: 8px;
}

.evo-live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #E53935;
    animation: pulse-dot 1.5s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(229,57,53,0.4); }
    50% { opacity: 0.8; box-shadow: 0 0 0 6px rgba(229,57,53,0); }
}

.evo-live-viewers strong {
    color: #E53935;
    font-weight: 700;
}

/* ── Stock Scarcity Warning ── */
.evo-stock-warning {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #FFF3E0;
    color: #E65100;
    font-size: 13px;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: var(--evo-radius);
    margin-bottom: 12px;
    letter-spacing: 0.02em;
}

/* ── Price Countdown Timer ── */
.evo-price-timer {
    background: linear-gradient(135deg, #FFF0F0, #FFEBEE);
    border: 1px solid #FFCDD2;
    border-radius: var(--evo-radius-lg);
    padding: 14px 20px;
    margin: 12px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 700;
    color: #C62828;
}

.evo-price-timer .evo-timer-digit {
    background: #C62828;
    color: var(--evo-white);
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: 800;
    font-size: 15px;
    min-width: 32px;
    text-align: center;
}

.evo-price-timer .evo-timer-sep {
    font-weight: 800;
}

/* ── Trust Badges Row ── */
.evo-trust-badges {
    display: flex;
    gap: 12px;
    margin: 16px 0;
    flex-wrap: wrap;
}

.evo-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--evo-offwhite);
    border: 1px solid var(--evo-border);
    border-radius: var(--evo-radius);
    padding: 10px 14px;
    font-size: 12px;
    font-weight: 600;
    color: var(--evo-black);
    flex: 1;
    min-width: 120px;
    justify-content: center;
    text-align: center;
}

.evo-trust-badge-icon {
    font-size: 18px;
    flex-shrink: 0;
}

/* ── Free Shipping Progress ── */
.evo-shipping-progress {
    margin: 16px 0;
    padding: 12px 16px;
    background: #E8F5E9;
    border-radius: var(--evo-radius-lg);
    border: 1px solid #C8E6C9;
}

.evo-shipping-progress-text {
    font-size: 13px;
    color: #2E7D32;
    font-weight: 600;
    margin-bottom: 8px;
}

.evo-shipping-progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(0,0,0,0.08);
    border-radius: 3px;
    overflow: hidden;
}

.evo-shipping-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #43A047, #2E7D32);
    border-radius: 3px;
    transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Sticky Add-to-Cart Bar (Mobile) ── */
/* ═══════════════════════════════════════════════════════
   STICKY ATC - Trendyx Style with Thumbnail + Discount
   ═══════════════════════════════════════════════════════ */
.evo-sticky-atc {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    border-top: 1px solid #e0e0e0;
    box-shadow: 0 -4px 24px rgba(0,0,0,0.12);
    padding: 10px 20px;
    z-index: 99999;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.evo-sticky-atc.visible {
    transform: translateY(0);
}

.evo-sticky-atc-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 16px;
}

.evo-sticky-atc-left {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    min-width: 0;
}

.evo-sticky-atc-thumb {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #eee;
    flex-shrink: 0;
}

.evo-sticky-atc-info {
    min-width: 0;
}

.evo-sticky-atc-title {
    font-size: 14px;
    font-weight: 700;
    color: #111;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 320px;
}

.evo-sticky-atc-pricing {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 2px;
}

.evo-sticky-atc-price {
    font-size: 17px;
    font-weight: 800;
    color: #C9A24D;
}

.evo-sticky-atc-old {
    font-size: 13px;
    color: #999;
    text-decoration: line-through;
    font-weight: 500;
}

.evo-sticky-discount {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #10B981;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 20px;
    white-space: nowrap;
}

.evo-sticky-atc-right {
    flex-shrink: 0;
}

.evo-sticky-atc-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #111;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 14px 28px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.evo-sticky-atc-btn svg {
    width: 18px;
    height: 18px;
}

.evo-sticky-atc-btn:hover {
    background: #C9A24D;
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(201, 162, 77, 0.35);
}

.evo-sticky-atc-btn.added {
    background: #10B981;
}

@media (max-width: 768px) {
    .evo-sticky-atc {
        padding: 8px 12px;
    }
    
    .evo-sticky-atc-inner {
        gap: 10px;
    }
    
    .evo-sticky-atc-thumb {
        width: 40px;
        height: 40px;
    }
    
    .evo-sticky-atc-title {
        font-size: 12px;
        max-width: 140px;
    }
    
    .evo-sticky-atc-pricing {
        gap: 5px;
    }
    
    .evo-sticky-atc-price {
        font-size: 14px;
    }
    
    .evo-sticky-atc-old {
        font-size: 11px;
    }
    
    .evo-sticky-discount {
        font-size: 9px;
        padding: 1px 5px;
    }
    
    .evo-sticky-atc-btn {
        padding: 10px 16px;
        font-size: 12px;
        border-radius: 8px;
    }
    
    .evo-sticky-atc-btn svg {
        width: 14px;
        height: 14px;
    }
}

/* ── Hide Astra's Native/Broken Sticky Bar ── */
.ast-sticky-add-to-cart {
    display: none !important;
}

/* ── 6. FREQUENTLY BOUGHT TOGETHER (Birlikte Al) ── */
.evo-upsell-box {
    margin: 24px 0;
    padding: 20px;
    background: #FAFAFA;
    border-radius: var(--evo-radius-lg);
    border: 1px dashed var(--evo-border);
}

.evo-upsell-box h4 {
    font-size: 14px;
    margin-bottom: 20px;
    color: var(--evo-black);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.evo-upsell-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.evo-upsell-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #fff;
    padding: 10px;
    border-radius: 6px;
    box-shadow: var(--evo-shadow-xs);
    border: 1px solid var(--evo-border);
}

.evo-upsell-img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
}

.evo-upsell-info {
    flex: 1;
}

.evo-upsell-title {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 2px;
}

.evo-upsell-price {
    font-size: 14px;
    color: var(--evo-gold);
    font-weight: 700;
}

.evo-upsell-check {
    width: 20px;
    height: 20px;
    accent-color: var(--evo-gold);
    cursor: pointer;
}

/* ── 7. QUANTITY BREAKS (Çoklu Alım) ── */
.evo-qty-breaks {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin: 20px 0;
}

.evo-qty-card {
    border: 2px solid var(--evo-border);
    padding: 15px 10px;
    text-align: center;
    border-radius: var(--evo-radius-lg);
    cursor: pointer;
    transition: var(--evo-transition);
    position: relative;
    background: #fff;
}

.evo-qty-card.active {
    border-color: var(--evo-gold);
    background: var(--evo-gold-glow);
    transform: translateY(-2px);
}

.evo-qty-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--evo-danger);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 4px;
    white-space: nowrap;
}

.evo-qty-badge-hot {
    background: linear-gradient(135deg, #FF6B00, #FF9500);
    animation: badge-glow 2s ease-in-out infinite;
}

@keyframes badge-glow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.3); }
    50% { box-shadow: 0 0 8px 2px rgba(255, 107, 0, 0.2); }
}

.evo-qty-title {
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 5px;
}

.evo-qty-price {
    font-size: 16px;
    font-weight: 800;
    color: var(--evo-black);
}

.evo-qty-sub {
    font-size: 10px;
    color: var(--evo-gray-light);
}

/* ── 8. PRODUCT ACCORDIONS (FAQ) ── */
.evo-accordions {
    margin: 30px 0;
    border-top: 1px solid var(--evo-border);
}

.evo-accordion {
    border-bottom: 1px solid var(--evo-border);
}

.evo-accordion-header {
    padding: 18px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 15px;
    transition: color 0.2s;
}

.evo-accordion-header:hover {
    color: var(--evo-gold);
}

.evo-accordion-header::after {
    content: '+';
    font-size: 20px;
    font-weight: 300;
    transition: transform 0.3s;
}

.evo-accordion.open .evo-accordion-header::after {
    transform: rotate(45deg);
}

.evo-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s;
    font-size: 14px;
    color: var(--evo-gray);
    line-height: 1.6;
}

.evo-accordion.open .evo-accordion-content {
    max-height: 500px;
    padding-bottom: 20px;
}

/* ── 9. DELIVERY TIMELINE (Trendyx-style visual stepper) ── */
.evo-delivery-timeline {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 24px 0;
    margin: 16px 0;
    position: relative;
}

.evo-delivery-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    position: relative;
}

.evo-delivery-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #f0f0f0;
    color: #888;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    z-index: 1;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
}

.evo-delivery-active .evo-delivery-icon {
    background: #111;
    color: #fff;
    border-color: #111;
}

.evo-delivery-line {
    position: absolute;
    top: 22px;
    left: 50%;
    width: 100%;
    height: 2px;
    background: #e0e0e0;
    z-index: 0;
}

.evo-delivery-active .evo-delivery-line {
    background: #111;
}

.evo-delivery-step:last-child .evo-delivery-line {
    display: none;
}

.evo-delivery-date {
    font-size: 12px;
    font-weight: 700;
    color: #111;
    margin-bottom: 2px;
}

.evo-delivery-label {
    font-size: 11px;
    color: #888;
    font-weight: 500;
}

.evo-delivery-active .evo-delivery-label {
    color: #111;
    font-weight: 600;
}

/* ── 10. PAYMENT METHOD ICONS ── */
.evo-payment-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 0;
    margin-top: 8px;
    border-top: 1px solid #f0f0f0;
}

.evo-payment-icons img {
    height: 24px;
    opacity: 0.7;
    transition: opacity 0.2s;
    filter: grayscale(30%);
}

.evo-payment-icons img:hover {
    opacity: 1;
    filter: grayscale(0%);
}

/* ── Sticky bar mobile show/hide ── */
@media (max-width: 768px) {
    .evo-sticky-atc {
        display: flex !important;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s, transform 0.3s;
        transform: translateY(100%);
    }
    .evo-sticky-atc.visible {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }
    
    .evo-delivery-timeline {
        padding: 16px 0;
    }
    
    .evo-delivery-icon {
        width: 36px;
        height: 36px;
    }
    
    .evo-delivery-icon svg {
        width: 16px;
        height: 16px;
    }
    
    .evo-delivery-date {
        font-size: 10px;
    }
    
    .evo-delivery-label {
        font-size: 9px;
    }
    
    .evo-trust-badges {
        gap: 6px;
    }
    
    .evo-trust-badge {
        padding: 8px 10px;
        font-size: 11px;
        min-width: 0;
    }
}

@media (max-width: 480px) {
    .evo-qty-breaks {
        gap: 6px;
    }
    .evo-qty-card {
        padding: 12px 6px;
    }
    .evo-qty-price {
        font-size: 14px;
    }
    
    .evo-trust-badges {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
}

/* ═══════════════════════════════════════════════════════
   PRODUCT PAGE EXTRA SECTIONS — Trendyx-Style
   ═══════════════════════════════════════════════════════ */

/* ── Shared Section Styles ── */
.evo-section-why-us,
.evo-section-stats,
.evo-section-reviews {
    width: 100%;
    padding: 60px 0;
    margin: 0;
}

.evo-section-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.evo-section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

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

.evo-section-subtitle {
    text-align: center;
    font-size: 16px;
    color: #888;
    margin-bottom: 40px;
    font-weight: 400;
}

/* ═════════════════════════════════
   A) NEDEN EVODORA — Comparison
   ═════════════════════════════════ */
.evo-section-why-us {
    background: #fafafa;
}

.evo-comparison-table {
    max-width: 700px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.06);
}

.evo-comparison-header {
    display: grid;
    grid-template-columns: 1fr 120px 120px;
    background: #111;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.evo-comparison-feature-header,
.evo-comparison-us-header,
.evo-comparison-other-header {
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.evo-comparison-feature-header {
    justify-content: flex-start;
}

.evo-comparison-us-header {
    background: var(--evo-gold);
}

.evo-comparison-other-header {
    color: rgba(255,255,255,0.6);
}

.evo-comparison-row {
    display: grid;
    grid-template-columns: 1fr 120px 120px;
    background: #fff;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.2s ease;
}

.evo-comparison-row:last-child {
    border-bottom: none;
}

.evo-comparison-row:hover {
    background: #f9f8f4;
}

.evo-comparison-feature {
    padding: 16px 20px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    display: flex;
    align-items: center;
    gap: 8px;
}

.evo-comparison-us {
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 162, 77, 0.04);
}

.evo-comparison-other {
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(239, 68, 68, 0.02);
}

/* ═════════════════════════════════
   B) RAKAMLARLA EVODORA — Stats 
   ═════════════════════════════════ */
.evo-section-stats {
    background: linear-gradient(135deg, #111 0%, #1a1a1a 100%);
    padding: 70px 0;
}

.evo-section-stats .evo-section-title {
    color: #fff;
}

.evo-section-stats .evo-section-subtitle {
    color: rgba(255,255,255,0.5);
}

.evo-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.evo-stat-card {
    text-align: center;
    padding: 32px 16px;
    border-radius: 16px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    transition: all 0.3s ease;
    position: relative;
}

.evo-stat-card:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-4px);
    border-color: rgba(201, 162, 77, 0.3);
}

.evo-stat-icon {
    font-size: 36px;
    margin-bottom: 12px;
}

.evo-stat-number {
    font-size: 48px;
    font-weight: 900;
    color: var(--evo-gold);
    line-height: 1;
    display: inline;
}

.evo-stat-suffix {
    font-size: 28px;
    font-weight: 700;
    color: var(--evo-gold);
    display: inline;
}

.evo-stat-label {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    margin-top: 8px;
    font-weight: 500;
}

/* ═════════════════════════════════
   C) MÜŞTERİ YORUMLARI — Reviews
   ═════════════════════════════════ */
.evo-section-reviews {
    background: #fff;
}

/* Rating Overview */
.evo-reviews-overview {
    display: flex;
    gap: 48px;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    padding: 32px;
    background: #fafafa;
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.06);
}

.evo-reviews-score {
    text-align: center;
    min-width: 140px;
}

.evo-reviews-big-number {
    font-size: 56px;
    font-weight: 900;
    color: #1a1a1a;
    line-height: 1;
}

.evo-reviews-big-stars {
    color: var(--evo-gold);
    font-size: 22px;
    margin-top: 4px;
    letter-spacing: 2px;
}

.evo-reviews-count {
    font-size: 14px;
    color: #888;
    margin-top: 6px;
}

/* Rating Bars */
.evo-reviews-bars {
    flex: 1;
    max-width: 400px;
}

.evo-bar-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.evo-bar-label {
    font-size: 13px;
    font-weight: 600;
    color: #555;
    min-width: 36px;
    text-align: right;
}

.evo-bar-track {
    flex: 1;
    height: 10px;
    background: #eee;
    border-radius: 5px;
    overflow: hidden;
}

.evo-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--evo-gold), #d4a843);
    border-radius: 5px;
    transition: width 1s ease;
}

.evo-bar-pct {
    font-size: 12px;
    color: #888;
    min-width: 30px;
}

/* Review Cards Grid */
.evo-reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.evo-review-card {
    background: #fafafa;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 14px;
    padding: 22px;
    transition: all 0.3s ease;
}

.evo-review-card:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transform: translateY(-3px);
    border-color: rgba(201, 162, 77, 0.2);
}

.evo-review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}

.evo-review-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--evo-gold), #d4a843);
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.evo-review-meta {
    flex: 1;
}

.evo-review-name {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
}

.evo-review-city {
    font-weight: 400;
    color: #888;
}

.evo-review-stars {
    color: var(--evo-gold);
    font-size: 14px;
    letter-spacing: 1px;
}

.evo-review-verified {
    font-size: 11px;
    font-weight: 600;
    color: #10B981;
    background: rgba(16, 185, 129, 0.08);
    padding: 3px 8px;
    border-radius: 6px;
    white-space: nowrap;
}

.evo-review-text {
    font-size: 14px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 10px;
}

.evo-review-time {
    font-size: 12px;
    color: #aaa;
}

/* Review Form */
.evo-review-form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: 32px;
    background: #fafafa;
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.06);
}

.evo-review-form-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.evo-review-form-stars {
    margin-bottom: 16px;
}

.evo-form-star {
    font-size: 32px;
    color: #ddd;
    cursor: pointer;
    transition: color 0.15s ease, transform 0.15s ease;
    display: inline-block;
    margin: 0 2px;
}

.evo-form-star:hover,
.evo-form-star.active {
    color: var(--evo-gold);
    transform: scale(1.15);
}

.evo-review-textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    font-size: 14px;
    font-family: inherit;
    resize: vertical;
    margin-bottom: 14px;
    transition: border-color 0.2s ease;
    background: #fff;
}

.evo-review-textarea:focus {
    outline: none;
    border-color: var(--evo-gold);
    box-shadow: 0 0 0 3px rgba(201, 162, 77, 0.1);
}

.evo-review-submit-btn {
    background: #111;
    color: #fff;
    border: none;
    padding: 14px 40px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.evo-review-submit-btn:hover {
    background: var(--evo-gold);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(201, 162, 77, 0.4);
}

/* ═════════════════════════════════
   RESPONSIVE — Extra Sections
   ═════════════════════════════════ */
@media (max-width: 768px) {
    .evo-section-title {
        font-size: 24px;
    }
    
    .evo-section-subtitle {
        font-size: 14px;
        margin-bottom: 28px;
    }

    .evo-section-why-us,
    .evo-section-stats,
    .evo-section-reviews {
        padding: 40px 0;
    }

    /* Comparison Table Mobile */
    .evo-comparison-header {
        grid-template-columns: 1fr 80px 80px;
        font-size: 11px;
    }
    
    .evo-comparison-row {
        grid-template-columns: 1fr 80px 80px;
    }
    
    .evo-comparison-feature {
        font-size: 12px;
        padding: 12px 12px;
    }
    
    .evo-comparison-us,
    .evo-comparison-other {
        padding: 12px 8px;
    }

    /* Stats Grid Mobile */
    .evo-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
    
    .evo-stat-card {
        padding: 24px 12px;
    }
    
    .evo-stat-number {
        font-size: 36px;
    }
    
    .evo-stat-suffix {
        font-size: 22px;
    }

    /* Reviews Mobile */
    .evo-reviews-overview {
        flex-direction: column;
        gap: 24px;
        padding: 24px 16px;
    }
    
    .evo-reviews-bars {
        width: 100%;
        max-width: none;
    }
    
    .evo-reviews-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    
    .evo-review-form-wrapper {
        padding: 24px 16px;
    }
    
    .evo-form-star {
        font-size: 28px;
    }
}
