/* ============================================================================
   PRICING CIRCLES FIX FOR ALL THEMES
   Ensures proper selection circle display
   ============================================================================ */

/* Fix for social-media-front theme pricing circles */
.lqd-tabs-nav-toggle button {
    position: relative;
    transition: all 0.3s ease;
}

.lqd-tabs-nav-toggle button .selection-circle {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 20px !important;
    height: 20px !important;
    border-radius: 50% !important;
    border: 2px solid currentColor !important;
    transition: all 0.2s ease !important;
    margin-bottom: 0.5rem !important;
}

.lqd-tabs-nav-toggle button.lqd-is-active .selection-circle {
    background-color: currentColor !important;
    border-color: currentColor !important;
}

.lqd-tabs-nav-toggle button .selection-circle span {
    width: 10px !important;
    height: 10px !important;
    border-radius: 50% !important;
    background-color: white !important;
    opacity: 0 !important;
    transition: opacity 0.2s ease !important;
}

.lqd-tabs-nav-toggle button.lqd-is-active .selection-circle span {
    opacity: 1 !important;
}

/* Hover effects */
.lqd-tabs-nav-toggle button:hover .selection-circle {
    transform: scale(1.1) !important;
}

/* Text spacing fix */
.lqd-tabs-nav-toggle button .lqd-tabs-nav-txt {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 0.25rem !important;
}

/* Badge styling improvements */
.lqd-tabs-nav-toggle button .lqd-tabs-nav-txt span[class*="bg-gradient"] {
    display: inline-block !important;
    font-size: 0.75rem !important;
    font-weight: 600 !important;
    border-radius: 0.375rem !important;
    padding: 0.25rem 0.5rem !important;
    margin-top: 0.25rem !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .lqd-tabs-nav-toggle button .selection-circle {
        width: 18px !important;
        height: 18px !important;
    }
    
    .lqd-tabs-nav-toggle button .selection-circle span {
        width: 8px !important;
        height: 8px !important;
    }
    
    .lqd-tabs-nav-toggle {
        gap: 1rem !important;
    }
} 