/* PLAYAVIEW visual regression fix — 2026-08-03. Loaded after front203.css. */
:root {
    --pv-ui-navy: #0b2f6b;
    --pv-ui-cream: #fbf4e7;
}

#product_info_tab .pv-capacity-icon,
#product_info_tab .pv-feature-icon {
    display: inline-flex !important;
    width: 42px !important;
    height: 42px !important;
    flex: 0 0 42px !important;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(191, 139, 50, .28) !important;
    border-radius: 50% !important;
    color: var(--pv-ui-navy) !important;
    background: var(--pv-ui-cream) !important;
    box-shadow: none !important;
}

#product_info_tab .pv-feature-icon svg,
#product_info_tab .pv-capacity-icon svg {
    display: block;
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.65;
}

#product_info_tab .pv-room-features .room_info_content.row,
#product_info_tab .pv-property-features .room_info_content.row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin: 0;
}

#product_info_tab .pv-feature-card,
#product_info_tab .pv-three-level-advantages li {
    display: flex;
    min-width: 0;
    min-height: 68px;
    height: auto;
    padding: 10px 12px;
    box-sizing: border-box;
    align-items: center;
    gap: 10px;
    overflow: hidden;
    border: 1px solid rgba(11, 47, 107, .13);
    border-radius: 12px;
    color: var(--pv-ui-navy);
    background: #fffdf9;
    font-size: 14px;
    font-weight: 600;
}

#product_info_tab .pv-feature-card > span:last-child,
#product_info_tab .pv-three-level-advantages li > span:last-child {
    width: auto;
    min-width: 0;
    height: auto;
    flex: 1 1 auto;
    overflow-wrap: anywhere;
}

#product_info_tab .pv-property-features .room_info_content.row > .pv-three-level-advantages {
    display: grid;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    list-style: none;
}

@media (min-width: 768px) and (max-width: 1024px) {
    #product_info_tab .pv-room-features .room_info_content.row,
    #product_info_tab .pv-property-features .room_info_content.row,
    #product_info_tab .pv-property-features .room_info_content.row > .pv-three-level-advantages {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    #product_info_tab .pv-room-features .room_info_content.row,
    #product_info_tab .pv-property-features .room_info_content.row,
    #product_info_tab .pv-property-features .room_info_content.row > .pv-three-level-advantages {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    #product_info_tab .pv-feature-card,
    #product_info_tab .pv-three-level-advantages li {
        min-height: 62px;
        padding: 9px 11px;
    }
}
