/**
 * Product Features Widget Styles
 */

.product-features {
    padding: 0;
}

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

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

.product-features__list {
    display: flex;
    flex-direction: column;
}

.product-features__item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.product-features__item:last-child {
    margin-bottom: 0;
}

.product-features__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.product-features__icon svg {
    width: 20px;
    height: 20px;
    stroke: #f7941d;
}

.product-features__icon img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.product-features__text {
    font-size: 15px;
    color: #333333;
    line-height: 1.5;
}
