.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: 0.04em;
    text-transform: uppercase;
    box-shadow: 0 -6px 16px -8px rgba(251, 71, 31, 0.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, 0.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: 0.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, 0.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: 0.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: 0.02em;
}

.hd-card__badge--offer {
    background: #3949ab;
}

.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 0.15s,
        box-shadow 0.15s;
}

.hd-card__cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 18px -6px rgba(251, 71, 31, 0.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 0.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: 0.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;
    }
}
