.product-flags .product-flag.efp-configurator {
    background-color: #004A7C;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.product-flags .efp-configurator::before {
    content: "\2699";
    font-size: 1rem;
    line-height: 1;
}

.efp-product-list-colors {
    display: flex;
    flex-wrap: wrap; 
    gap: 0.35rem;
    margin-top: 0.4rem;
    margin-bottom: 0.4rem;
}

.efp-product-list-color {
    display: inline-block;
    width: 22px;
    height: 22px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.efp-product-list-color[data-efp-tooltip]::after {
    content: attr(data-efp-tooltip);
    position: absolute;
    left: 50%;
    bottom: 100%;
    transform: translate(-50%, -6px);
    background: rgba(20, 20, 20, 0.95);
    color: #ffffff;
    font-size: 12px;
    line-height: 1.2;
    padding: 4px 8px;
    border-radius: 12px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.15s ease, transform 0.15s ease;
    z-index: 10;
}

.efp-product-list-color[data-efp-tooltip]::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 100%;
    transform: translate(-50%, 2px);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid rgba(20, 20, 20, 0.95);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.15s ease, transform 0.15s ease;
    z-index: 9;
}

.efp-product-list-color[data-efp-tooltip]:hover::after,
.efp-product-list-color[data-efp-tooltip]:hover::before {
    opacity: 1;
    transform: translate(-50%, -10px);
}
