/* ============================================================================
   PRODUCT FEATURE SHORTCODE CSS (MITN Component)
   ============================================================================ */
.ntm-product-feature .ntm-feature-title {
    text-align: center;
    font-family: var(--font-heading);
    color: var(--color-text-primary);
}

.ntm-product-feature .ntm-btn-detail {
    display: inline-flex;
    margin: 0 auto;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border: 1px solid var(--color-brand-primary, #dd3333);
    border-radius: var(--radius-md, 8px);
    background: transparent;
    color: var(--color-brand-primary, #dd3333);
    font-weight: 600;
    text-decoration: none;
    transition: all var(--duration-fast);
}

.ntm-product-feature .ntm-btn-detail:hover {
    background: var(--color-brand-primary, #dd3333);
    color: var(--color-text-inverse, #fff);
}

.ntm-product-feature .ntm-product-right {
    text-align: center;
}

.ntm-product-feature .ntm-product-features ul,
.ntm-product-feature .ntm-product-features ul li {
    list-style: none;
    margin: 0;
    padding-left: 0;
}

.ntm-product-feature .ntm-product-features ul li::marker {
    content: "";
}

.ntm-product-feature .ntm-product-features ul li {
    position: relative;
    padding-left: 20px;
    line-height: var(--lh-relaxed);
    text-align: left;
    color: var(--color-text-muted);
}

.ntm-product-feature .ntm-product-features ul li::before {
    /* We'll let mitn-card__highlights li::before handle it if added, but keeping this fallback */
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--color-brand-primary);
    font-weight: 700;
}

.ntm-product-feature {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 30px;
    padding: 30px;
    border: 1px solid var(--color-border-subtle);
    border-radius: var(--radius-xl);
    background: var(--color-surface-base);
    box-shadow: var(--shadow-sm);
}

.ntm-product-left {
    text-align: center;
}

.ntm-product-left img {
    max-width: 100%;
    border-radius: var(--radius-md);
    margin-bottom: 15px;
}

.ntm-product-title {
    font-family: var(--font-heading);
    font-size: var(--fs-h3);
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--color-text-primary);
}

.ntm-product-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-brand-primary, #dd3333);
    font-family: var(--font-numeric);
}

.ntm-product-price ins,
.ntm-product-price ins .woocommerce-Price-amount,
.ntm-product-price ins .woocommerce-Price-amount bdi,
.ntm-product-price > .woocommerce-Price-amount,
.ntm-product-price > .woocommerce-Price-amount bdi {
    color: var(--color-brand-primary, #dd3333) !important;
    text-decoration: none !important;
}

.ntm-product-price del,
.ntm-product-price del .woocommerce-Price-amount,
.ntm-product-price del .woocommerce-Price-amount bdi {
    color: var(--color-text-subtle, #6b7280) !important;
    font-size: 0.8em;
    font-weight: 400;
}

.ntm-feature-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
}

.ntm-product-features ul {
    margin-bottom: 20px;
}

.ntm-product-features li {
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .ntm-product-feature {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 20px;
    }
}
