/* Exit Popup Value Items - Special styling for the exit intent popup boxes */
.exit-value-item {
    display: flex;
    align-items: center;
    padding: 18px;
    margin-bottom: 16px;
    background: linear-gradient(135deg, rgba(31, 44, 90, 0.95) 0%, rgba(48, 54, 100, 0.95) 100%);
    border-radius: 10px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border-left: 3px solid #4CAF50;
    position: relative;
    overflow: hidden;
}

.exit-value-item::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.05) 0%, rgba(108, 99, 255, 0.05) 100%);
    pointer-events: none;
}

.exit-value-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    border-left-color: #6C63FF;
}

.exit-value-item i {
    color: #4CAF50;
    font-size: 1.5rem;
    background: rgba(76, 175, 80, 0.1);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.exit-value-item:hover i {
    color: #6C63FF;
    background: rgba(108, 99, 255, 0.1);
}

.exit-value-text {
    flex: 1;
}

.exit-value-text strong {
    display: block;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.exit-value-text span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.exit-value-price {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: white;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 5px 12px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    margin-left: 10px;
    flex-shrink: 0;
    box-shadow: 0 3px 6px rgba(76, 175, 80, 0.3);
}
