/**
 * ProductClientVisibility Module - Front Office CSS
 */

/* Private product styling */
.private-product .product-thumbnail::after {
    content: "\f023";
    font-family: "FontAwesome";
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.5);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.private-product .product-thumbnail {
    position: relative;
}

/* Restricted product styling */
.restricted-product .product-thumbnail::after {
    content: "\f06e";
    font-family: "FontAwesome";
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.5);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.restricted-product .product-thumbnail {
    position: relative;
}

/* Product unavailable (no access) */
.unavailable-product {
    opacity: 0.6;
    pointer-events: none;
} 