.product-title-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px 18px;
    margin-bottom: 0.5rem;
}

.product-title-row .product-title-text {
    flex: 1 1 260px;
    min-width: 0;
    margin-bottom: 0 !important;
    line-height: 1.25;
}

.product-category-info-badge {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-left: auto;
}

.product-category-info-badge__image {
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 88px;
    object-fit: contain;
    filter: drop-shadow(0 4px 10px rgba(26, 39, 68, 0.08));
}

.product-category-info-badge__text {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 5px;
    border-radius: 5px;
    background: linear-gradient(135deg, #f8f3ed 0%, #ffffff 100%);
    border: 1px solid rgba(181, 122, 69, 0.28);
    color: #1a2744;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: 0.01em;
    box-shadow: 0 6px 18px rgba(26, 39, 68, 0.07);
    white-space: nowrap;
}

.product-category-info-badge__text-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(181, 122, 69, 0.12);
    color: #b57a45;
    flex-shrink: 0;
    font-size: 15px;
}

@media (max-width: 991.98px) {
    .product-category-info-badge__image {
        max-height: 76px;
    }
}

@media (max-width: 767.98px) {
    .product-title-row {
        flex-direction: column;
        align-items: flex-start !important;
    }

    .product-category-info-badge {
        margin-left: 0;
        justify-content: flex-start;
        width: 100%;
    }

    .product-category-info-badge__image {
        max-height: 72px;
        max-width: 110px !important;
    }

    .product-category-info-badge__text {
        white-space: normal;
        text-align: left;
    }
}