/* Gift badge — product cards */
.nova-gift-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.28rem;
    padding: 0.28rem 0.55rem;
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    line-height: 1.2;
    color: #9f1239;
    background: linear-gradient(135deg, #fff1f2 0%, #ffe4e6 55%, #fecdd3 100%);
    border: 1px solid rgba(190, 18, 60, 0.22);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.7) inset, 0 4px 12px rgba(190, 18, 60, 0.12);
    white-space: nowrap;
    pointer-events: none;
    animation: nova-gift-badge-in 0.45s ease both;
}

.nova-gift-badge i {
    font-size: 0.78rem;
    color: #e11d48;
    filter: drop-shadow(0 1px 1px rgba(190, 18, 60, 0.2));
}

.nova-gift-badge__text {
    position: relative;
    top: 0.02em;
}

/* Card placements */
.nova-pcard-bukhamsen__media-wrap .nova-gift-badge {
    position: absolute;
    bottom: 0.55rem;
    inset-inline-start: 0.55rem;
    z-index: 3;
}

.nova-product-card > .nova-gift-badge,
.nova-product-card .nova-gift-badge--overlay {
    position: absolute;
    bottom: auto;
    top: 0.55rem;
    inset-inline-start: 0.55rem;
    z-index: 3;
}

.nova-product-card .nova-product-card__media .nova-gift-badge,
.nova-pcard-compact__thumb .nova-gift-badge {
    position: absolute;
    bottom: 0.35rem;
    inset-inline-start: 0.35rem;
    top: auto;
    z-index: 3;
    font-size: 0.62rem;
    padding: 0.2rem 0.42rem;
}

.nova-pcard-compact__thumb .nova-gift-badge .nova-gift-badge__text {
    display: none;
}

.nova-pcard-compact__thumb .nova-gift-badge {
    padding: 0.28rem;
    border-radius: 50%;
}

.nova-pcard-compact__thumb .nova-gift-badge i {
    font-size: 0.72rem;
    margin: 0;
}

/* When discount sits top-start (RTL-aware), nudge gift below it on classic/hover */
.nova-product-card > .nova-gift-badge {
    top: auto;
    inset-block-start: 2.4rem;
}

/* PDP banner */
.nova-gift-banner {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0.85rem;
    padding: 0.75rem 0.9rem;
    border-radius: 12px;
    background:
        radial-gradient(120% 140% at 0% 0%, rgba(255, 228, 230, 0.95) 0%, transparent 55%),
        linear-gradient(135deg, #fff7f8 0%, #ffe4e6 100%);
    border: 1px solid rgba(190, 18, 60, 0.18);
    box-shadow: 0 8px 24px rgba(190, 18, 60, 0.08);
    animation: nova-gift-badge-in 0.5s ease both;
}

.nova-gift-banner__icon {
    flex-shrink: 0;
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
    background: linear-gradient(145deg, #fb7185 0%, #e11d48 100%);
    box-shadow: 0 4px 12px rgba(225, 29, 72, 0.35);
}

.nova-gift-banner__icon i {
    font-size: 1.05rem;
}

.nova-gift-banner__thumb {
    flex-shrink: 0;
    width: 3.4rem;
    height: 3.4rem;
    border-radius: 10px;
    overflow: hidden;
    display: block;
    background: #fff;
    border: 1px solid rgba(190, 18, 60, 0.18);
    box-shadow: 0 4px 12px rgba(190, 18, 60, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

a.nova-gift-banner__thumb:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(190, 18, 60, 0.18);
}

.nova-gift-banner__thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    background: #fff;
}

.nova-gift-banner__body {
    flex: 1;
    min-width: 0;
}

.nova-gift-banner__title {
    font-weight: 800;
    font-size: 0.92rem;
    color: #9f1239;
    line-height: 1.25;
}

.nova-gift-banner__detail {
    margin-top: 0.15rem;
    font-size: 0.8rem;
    color: #881337;
    line-height: 1.4;
    opacity: 0.9;
}

.nova-gift-banner__product-link {
    color: #9f1239;
    font-weight: 800;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
}

.nova-gift-banner__product-link:hover {
    color: #e11d48;
}

.nova-gift-banner__product-name {
    font-weight: 800;
    color: #9f1239;
}

.nova-gift-banner__pill {
    flex-shrink: 0;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #9f1239;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(190, 18, 60, 0.2);
    border-radius: 999px;
    padding: 0.28rem 0.55rem;
}

@keyframes nova-gift-badge-in {
    from {
        opacity: 0;
        transform: translateY(4px) scale(0.96);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .nova-gift-badge,
    .nova-gift-banner {
        animation: none;
    }
}
