/**
 * Product Components Widget Styles
 */

.product-components__title-wrapper {
    text-align: center;
    margin-bottom: 30px;
}

.product-components__title {
    position: relative;
    margin: 0;
    padding-left: 15px;
    font-size: 18px;
    font-weight: 700;
    color: #333333;
    text-transform: uppercase;
    display: inline-block;
}

.product-components__title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background-color: #f7941d;
    border-radius: 2px;
}

.product-components__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.product-components__card {
    background-color: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}


.product-components__image {
    height: 180px;
    background-color: #f5f5f5;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-components__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.product-components__card:hover .product-components__image img {
    transform: scale(1.1);
}

.product-components__content {
    padding: 15px;
    text-align: center;
}

.product-components__name {
    margin: 0 0 5px 0;
    font-size: 14px;
    font-weight: 700;
    color: #333333;
    text-transform: uppercase;
}

.product-components__desc {
    margin: 0;
    font-size: 13px;
    color: #666666;
    line-height: 1.4;
}
