/* Ürün İkon Alanı */
.product-icons-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
    margin: 24px 0;
    padding: 20px 24px;
    border-radius: 12px;
    background-color: #f8f8f8;
}

.product-icon-item {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: calc(50% - 24px);
}

.product-icon-svg {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    color: currentColor;
}

.product-icon-svg svg {
    width: 100%;
    height: 100%;
}

.product-icon-text {
    font-size: 0.9em;
    line-height: 1.3;
}
