/**
 * ABeedesign WC Size Display - Frontend Styles
 */

.abee-size-selector {
    display: flex !important;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
    margin-bottom: 0;
    padding: 0;
    justify-content: center;
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.abee-size-item {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 8px 12px;
    background-color: #ffffff !important;
    border: 1px solid #d3d3d3 !important;
    color: #999999 !important;
    text-decoration: none !important;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.abee-size-item:hover {
    background-color: #000000 !important;
    border-color: #000000 !important;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

@media screen and (max-width: 768px) {
    .abee-size-selector {
        gap: 6px;
        margin-top: 8px;
    }
    
    .abee-size-item {
        min-width: 36px;
        height: 36px;
        padding: 6px 10px;
        font-size: 13px;
    }
}
