.product-box {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0px;
    height: 100%;
}
.product-box .image {
    position: relative;
    flex: 0 0 auto;
    overflow: hidden;
}
.product-box .image img {
    max-width: 100%;
    display: block;
    margin: 0 auto;
    height: auto;

    transform: scale(1);
    transition: transform 0.2s ease, opacity 0.2s ease;
}
.product-box .image .alt {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}
.product-box:hover .image img {
    transform: scale(1.15);
    transition: transform 2s ease, opacity 0.5s ease;
}
.product-box:hover .image .alt {
    opacity: 1;
}
.product-box .caption {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    padding: 10px 0;
}
.product-box .caption > * {
    display: block;
    flex: 0 0 auto;
}
.product-box .caption .title {
    font-size: 18px;
    font-family: 'Butler', 'Arial', 'Tahoma', sans-serif;
}
.product-box .caption .category {
    font-size: 16px;
    color: #666666;
}

.product-box .image .special-badge {
    position: absolute;
    top: 5px;
    right: 5px;

    background: #000000;
    font-family: 'Butler', 'Arial', 'Tahoma', sans-serif;
    color: #ffffff;
    padding: 4px 10px;
}

.product-box .caption .price {
    font-family: 'Butler', 'Arial', 'Tahoma', sans-serif;
    font-size: 16px;
}
.product-box .caption .price .price-old {
    text-decoration: line-through;
    color: #999999;
    font-weight: 100;
}