.c-product-thumb_container {
    display: block;
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    transition: all 0.3s ease;
    border: 1px solid #ccc;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    background-color: white;
    padding: 20px;
}

.c-product-thumb_container:hover {
    opacity: 0.8;
    background-color: #ececec;
}

.c-product-thumb_container__image {
    width: 30%;
    aspect-ratio: 1;
    object-fit: contain;
}

.c-product-thumb_container__text {
    margin: 4% auto;
    color: black;
    font-size: 1.3rem;
    font-weight: bold;
    line-height: 1.2;
    text-align: center;
}

.c-product-thumb_container__icon {
    width: 30px;
    height: 30px;
    background-color: #47a5fb;
    position: relative;
}
.c-product-thumb_container__icon::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    height: 2px;
    background-color: white;
}
.c-product-thumb_container__icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 2px;
    height: 70%;
    background-color: white;
}