.product-feature-panel {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 0;
    padding: 18px;
    border: 1px solid color-mix(in srgb, var(--rd-primary) 22%, var(--rd-border));
    border-radius: 18px;
    background: color-mix(in srgb, var(--rd-primary) 4%, var(--rd-surface));
    list-style: none;
}

.product-feature-panel li {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    min-width: 0;
    padding: 14px;
    border: 1px solid var(--rd-border);
    border-radius: 14px;
    background: var(--rd-surface);
    color: var(--rd-muted);
    font-size: .86rem;
    line-height: 1.6;
}

.product-feature-panel li > i {
    display: grid;
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
    margin-top: 1px;
    place-items: center;
    border-radius: 9px;
    background: color-mix(in srgb, var(--rd-primary) 12%, var(--rd-surface));
    color: var(--rd-primary);
    font-size: .9rem;
    font-weight: 900;
}

.product-feature-panel b {
    color: var(--rd-text);
    font-weight: 850;
}

[data-theme="dark"] .product-detail-page .product-app-header,
[data-theme="dark"] .product-detail-page .card,
[data-theme="dark"] .product-detail-page .card-body {
    background: var(--rd-surface) !important;
    color: var(--rd-text);
}

@media (max-width: 767px) {
    .product-feature-panel {
        grid-template-columns: 1fr;
        padding: 12px;
    }
}
