.data-product {
    width: 22.5vw;
    height: calc(12.1vw + 22px);
    padding: 1vh 1vw;
    display: flex;
    background: white;
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    backdrop-filter: var(--glass-backdrop);
    box-shadow: var(--glass-shadow);
    transition: all 0.3s ease;
}

.data-product:hover {
    transform: translateY(-2px);
    box-shadow: var(--glass-shadow), var(--hover-glow);
    border-color: var(--glass-blue-border);
}

.data-product-frame {
    position: relative;
    width: 100%;
    margin-left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.product-label small {
    color: darkslategrey;
}

.product-label {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}

.data-product img {
    width: 13vw;
    height: 10vw;
    object-fit: contain;
}

.data-product a:hover span {
    color: #098B03;
    background: #098B03;
    background: url("../../../images/picto-right2.png") 100% 50% no-repeat rgb(9, 139, 3);
}