/**
 * VanMoofer Conversion Optimization Styles
 */

/* === STICKY BOTTOM CTA BAR (disabled) === */
.sticky-cta-bar {
    display: none !important;
}

.sticky-cta-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    max-width: 500px;
    margin: 0 auto;
}

.sticky-cta-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 9999px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.sticky-cta-shop {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
}

.sticky-cta-shop:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.sticky-cta-app {
    background: #FFFE00;
    color: #0a0a0a;
    border: none;
}

.sticky-cta-app:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 254, 0, 0.4);
}

.sticky-cta-close {
    position: absolute;
    top: -10px;
    right: 16px;
    width: 24px;
    height: 24px;
    background: #333;
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 480px) {
    .sticky-cta-btn span {
        display: none;
    }
    .sticky-cta-btn {
        padding: 14px 18px;
    }
    .sticky-cta-content {
        gap: 16px;
    }
}

/* === FLOATING PROMPT === */
.floating-prompt {
    position: fixed;
    bottom: 100px;
    right: 24px;
    max-width: 320px;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 254, 0, 0.2);
    border-radius: 16px;
    padding: 20px;
    z-index: 9998;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    pointer-events: none;
}

.floating-prompt.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.floating-prompt-content {
    position: relative;
}

.floating-prompt-close {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 24px;
    height: 24px;
    background: #333;
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-prompt-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    margin-bottom: 16px;
}

.floating-prompt-text strong {
    color: #FFFE00;
    display: block;
    font-size: 16px;
    margin-bottom: 4px;
}

.floating-prompt-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #FFFE00;
    color: #0a0a0a;
    padding: 10px 18px;
    border-radius: 9999px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.floating-prompt-btn:hover {
    background: #fff;
    transform: translateY(-2px);
}

@media (max-width: 480px) {
    .floating-prompt {
        right: 16px;
        left: 16px;
        max-width: none;
        bottom: 80px;
    }
}

/* === EXIT INTENT POPUP === */
.exit-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.exit-popup-overlay.visible {
    opacity: 1;
    visibility: visible;
}

.exit-popup {
    background: #1a1a1a;
    border: 1px solid rgba(255, 254, 0, 0.2);
    border-radius: 24px;
    padding: 40px;
    max-width: 420px;
    width: 100%;
    text-align: center;
    position: relative;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s ease;
}

.exit-popup-overlay.visible .exit-popup {
    transform: scale(1) translateY(0);
}

.exit-popup-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    transition: background 0.2s;
}

.exit-popup-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.exit-popup-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 254, 0, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: #FFFE00;
}

.exit-popup h3 {
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 12px;
}

.exit-popup p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin-bottom: 20px;
}

.exit-popup p strong {
    color: #FFFE00;
}

.exit-popup-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
}

.exit-popup-features span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.exit-popup-features i {
    color: #22c55e;
    font-size: 11px;
}

.exit-popup-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #FFFE00;
    color: #0a0a0a;
    padding: 16px 32px;
    border-radius: 9999px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-bottom: 16px;
}

.exit-popup-cta:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 254, 0, 0.3);
}

.exit-popup-secondary {
    display: block;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    text-decoration: none;
    transition: color 0.2s;
}

.exit-popup-secondary:hover {
    color: #FFFE00;
}

/* === FEEDBACK WIDGET === */
.feedback-widget {
    background: #1a1a2e;
    border-radius: 20px;
    padding: 32px 40px;
    margin: 60px auto;
    max-width: 480px;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.feedback-widget.visible {
    opacity: 1;
    transform: translateY(0);
}

.feedback-question {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.feedback-question span {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
}

.feedback-buttons {
    display: flex;
    gap: 16px;
}

.feedback-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.feedback-btn i {
    font-size: 18px;
}

.feedback-btn:hover {
    transform: translateY(-2px);
}

.feedback-yes:hover {
    background: #22c55e;
    box-shadow: 0 8px 24px rgba(34, 197, 94, 0.4);
}

.feedback-no:hover {
    background: #ef4444;
    box-shadow: 0 8px 24px rgba(239, 68, 68, 0.4);
}

.feedback-response {
    display: none;
    padding-top: 20px;
}

.feedback-response p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 16px;
}

.feedback-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    transition: all 0.3s ease;
}

.feedback-cta:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.feedback-cta-primary {
    background: #FFFE00 !important;
    color: #131419 !important;
}

.feedback-cta-primary:hover {
    background: #fff !important;
    box-shadow: 0 8px 24px rgba(255, 254, 0, 0.4);
}

.feedback-cta-group {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.feedback-widget.answered .feedback-question {
    display: none;
}

.feedback-widget.answered-yes .feedback-response-yes {
    display: block;
}

.feedback-widget.answered-no .feedback-response-no {
    display: block;
}

/* === GEAR RECOMMENDATION BOX === */
.gear-recommendation-box {
    background: #1a1a1a;
    border: 1px solid rgba(255, 254, 0, 0.2);
    border-radius: 16px;
    padding: 24px;
    margin: 32px 0;
}

.gear-rec-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    color: #FFFE00;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gear-recommendation-box h4 {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
}

.gear-recommendation-box > p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 20px;
}

.gear-rec-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.gear-rec-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.2s;
}

.gear-rec-item:hover {
    background: rgba(255, 254, 0, 0.05);
    border-color: rgba(255, 254, 0, 0.2);
    transform: translateX(4px);
}

.gear-rec-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 254, 0, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFE00;
    font-size: 18px;
    flex-shrink: 0;
}

.gear-rec-info {
    flex: 1;
}

.gear-rec-info strong {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 2px;
}

.gear-rec-info span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.gear-rec-item > i {
    color: rgba(255, 255, 255, 0.3);
    transition: all 0.2s;
}

.gear-rec-item:hover > i {
    color: #FFFE00;
    transform: translateX(4px);
}

.gear-rec-note {
    font-size: 11px !important;
    color: rgba(255, 255, 255, 0.4) !important;
    margin-top: 16px !important;
    margin-bottom: 0 !important;
}

/* === AFFILIATE DISCLOSURE === */
.affiliate-disclosure {
    text-align: center;
    font-size: 13px;
    color: rgba(0, 0, 0, 0.45);
    margin-top: -8px;
    margin-bottom: 24px;
}

.affiliate-disclosure a {
    color: rgba(0, 0, 0, 0.55);
    text-decoration: underline;
}

.section-dark .affiliate-disclosure {
    color: rgba(255, 255, 255, 0.4);
}

.section-dark .affiliate-disclosure a {
    color: rgba(255, 255, 255, 0.5);
}

/* === SOCIAL PROOF BADGE === */
.social-proof-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 9999px;
    padding: 10px 20px;
    margin-top: 24px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    animation: fadeInUp 0.6s ease 0.5s both;
}

.social-proof-badge i {
    color: #22c55e;
}

.social-proof-badge strong {
    color: #FFFE00;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* === RESPONSIVE === */
@media (max-width: 640px) {
    .exit-popup {
        padding: 32px 24px;
    }

    .exit-popup h3 {
        font-size: 20px;
    }

    .feedback-question {
        flex-direction: column;
        gap: 12px;
    }

    .gear-rec-item {
        padding: 12px;
    }

    .gear-rec-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

/* Sticky bar padding is added dynamically via JS when the bar is visible */
