.vnr-product-card__hotdeal {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 7px 12px;
    background: linear-gradient(90deg, #FB471F 0%, #E0341B 100%);
    color: #FFF;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
    box-shadow: 0 -6px 16px -8px rgba(251, 71, 31, .65);
    overflow: hidden;
}

.vnr-product-card__hotdeal::before {
    content: "";
    position: absolute;
    top: 0;
    left: -60%;
    width: 55%;
    height: 100%;
    background: linear-gradient(100deg, transparent, rgba(255, 255, 255, .35), transparent);
    transform: skewX(-20deg);
    animation: hd-strip-shimmer 3.2s ease-in-out infinite;
}

.vnr-product-card__hotdeal i {
    font-size: 14px;
    color: #FFD9CE;
    flex-shrink: 0;
    position: relative;
}

.vnr-product-card__hotdeal-flag {
    font-weight: 900;
    position: relative;
}

.vnr-product-card__hotdeal-flag::after {
    content: "\00B7";
    margin-left: 5px;
    opacity: .75;
}

.vnr-product-card__hotdeal strong {
    font-weight: 800;
    white-space: nowrap;
    position: relative;
}

@keyframes hd-strip-shimmer {
    0% { left: -60%; }
    55%, 100% { left: 130%; }
}

@media (prefers-reduced-motion: reduce) {
    .vnr-product-card__hotdeal::before { display: none; }
}

.hd-card {
    background: linear-gradient(135deg, #FFF7F5 0%, #FFEDE9 100%);
    border: 1px solid #FFD9CE;
    border-radius: 14px;
    padding: 16px;
    box-shadow: 0 4px 12px -4px rgba(251, 71, 31, .15);
}

.hd-card__hero {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.hd-card__icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #FB471F;
    color: #FFF;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.hd-card__hero-text {
    flex: 1;
    min-width: 0;
}

.hd-card__eyebrow {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #FB471F;
    margin-bottom: 2px;
}

.hd-card__title {
    font-size: 18px;
    font-weight: 800;
    color: #1F2937;
    margin: 0 0 8px;
}

.hd-card__pricing {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 6px;
}

.hd-card__price-original {
    font-size: 14px;
    color: #6B7280;
    text-decoration: line-through;
}

.hd-card__price-final {
    font-size: 22px;
    font-weight: 900;
    color: #FB471F;
}

.hd-card__badge {
    background: #FB471F;
    color: #FFF;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 999px;
    letter-spacing: .02em;
}

.hd-card__metas {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 6px;
}

.hd-card__meta {
    font-size: 13px;
    color: #4B5563;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.hd-card__meta i {
    color: #9CA3AF;
}

.hd-card__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 12px;
    padding: 10px 18px;
    background: #FB471F;
    color: #FFF;
    font-weight: 700;
    border-radius: 999px;
    text-decoration: none;
    transition: transform .15s, box-shadow .15s;
}

.hd-card__cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 18px -6px rgba(251, 71, 31, .5);
    color: #FFF;
}

.hd-card__other-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 12px;
    padding: 6px 12px;
    background: transparent;
    color: #FB471F;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid #FFD9CE;
    border-radius: 999px;
    cursor: pointer;
    transition: background .15s;
}

.hd-card__other-link:hover {
    background: #FFEDE9;
}

.hd-modal__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hd-modal__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #F3F4F6;
}

.hd-modal__item:last-child {
    border-bottom: 0;
}

.hd-modal__item-main {
    flex: 1;
    min-width: 0;
}

.hd-modal__item-title {
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 4px;
}

.hd-modal__item-meta {
    display: flex;
    gap: 12px;
    font-size: 12px;
    color: #6B7280;
}

.hd-modal__item-meta i {
    color: #9CA3AF;
    margin-right: 3px;
}

.hd-modal__item-price {
    text-align: right;
    min-width: 90px;
}

.hd-modal__price-original {
    font-size: 12px;
    color: #9CA3AF;
    text-decoration: line-through;
}

.hd-modal__price-final {
    font-size: 16px;
    font-weight: 900;
    color: #FB471F;
}

.hd-modal__badge {
    display: inline-block;
    margin-top: 4px;
    background: #FFEDE9;
    color: #FB471F;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 999px;
    letter-spacing: .02em;
}

@media (max-width: 576px) {
    .vnr-product-card__hotdeal { font-size: 11px; padding: 6px 10px; }
    .hd-card__title { font-size: 16px; }
    .hd-card__price-final { font-size: 20px; }
    .hd-modal__item { flex-direction: column; align-items: flex-start; }
    .hd-modal__item-price { text-align: left; }
}
