/* Product price display — theme-aware sale styling (does not rely on Tailwind line-through) */

.tyb-product-price {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.35rem 0.5rem;
    line-height: 1.2;
}

.tyb-product-price__compare {
    color: var(--text-muted, var(--text-secondary, #94a3b8));
    font-weight: 500;
    text-decoration: line-through !important;
    text-decoration-thickness: 1px;
    text-decoration-color: color-mix(in srgb, var(--text-secondary, #94a3b8) 75%, transparent);
    -webkit-text-decoration-line: line-through !important;
}

.tyb-product-price__current {
    color: var(--text-main, #0f172a);
    font-weight: 700;
    letter-spacing: -0.01em;
}

.tyb-product-price--on-sale .tyb-product-price__current {
    color: var(--sale-color, var(--primary-accent, var(--primary-color, #b45309)));
}

.tyb-product-price__badge {
    display: inline-flex;
    align-items: center;
    padding: 0.125rem 0.45rem;
    border-radius: 9999px;
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1.3;
    color: var(--sale-color, var(--primary-accent, var(--primary-color, #92400e)));
    background-color: color-mix(in srgb, var(--sale-color, var(--primary-accent, var(--primary-color, #b45309))) 14%, white);
    border: 1px solid color-mix(in srgb, var(--sale-color, var(--primary-accent, var(--primary-color, #b45309))) 22%, white);
}

/* Size variants */
.tyb-product-price--sm .tyb-product-price__compare { font-size: 0.6875rem; }
.tyb-product-price--sm .tyb-product-price__current { font-size: 0.875rem; }

.tyb-product-price--md .tyb-product-price__compare { font-size: 0.8125rem; }
.tyb-product-price--md .tyb-product-price__current { font-size: 1.125rem; }

.tyb-product-price--lg .tyb-product-price__compare { font-size: 1rem; }
.tyb-product-price--lg .tyb-product-price__current { font-size: 1.5rem; }

.dark .tyb-product-price__compare,
.dark .tyb-product-price__current {
    color: inherit;
}

.dark .tyb-product-price__compare {
    color: #94a3b8;
}

.dark .tyb-product-price--on-sale .tyb-product-price__current {
    color: var(--sale-color, var(--primary-accent, #fbbf24));
}

.dark .tyb-product-price__badge {
    background-color: color-mix(in srgb, var(--sale-color, var(--primary-accent, #fbbf24)) 18%, #1e293b);
    border-color: color-mix(in srgb, var(--sale-color, var(--primary-accent, #fbbf24)) 28%, #334155);
}
