/* Gift discount badge — positioned in bottom-right corner of product image */
.thumbnail-top {
    position: relative;
}

.images-container {
    position: relative;
}

.gift-discount-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    z-index: 20;
    cursor: help;
    line-height: 0;
    background: #E2F3F5;
    border-radius: 50%;
    padding: 6px;
}

.gift-discount-badge img {
    width: 34px;
    height: 34px;
    display: block;
    filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.15));
}

/* Tooltip */
.gift-discount-badge::after {
    content: attr(data-tooltip);
    display: none;
    position: absolute;
    bottom: calc(100% + 8px);
    right: 0;
    background: rgba(1, 50, 83, 0.92);
    color: #fff;
    border-radius: 6px;
    padding: 8px 12px;
    width: 210px;
    font-size: 12px;
    line-height: 1.5;
    white-space: normal;
    pointer-events: none;
    text-align: left;
}

/* Tooltip arrow */
.gift-discount-badge::before {
    content: '';
    display: none;
    position: absolute;
    bottom: calc(100% + 2px);
    right: 14px;
    border: 6px solid transparent;
    border-top-color: rgba(1, 50, 83, 0.92);
    pointer-events: none;
}

.gift-discount-badge:hover::after,
.gift-discount-badge:hover::before {
    display: block;
}

/* Larger badge on product detail page */
.gift-discount-badge-lg img {
    width: 44px;
    height: 44px;
}

.gift-discount-badge-lg {
    bottom: 16px;
    right: 16px;
    padding: 8px;
}

/* Banner above carrier list in shipping step */
.gift-shipping-banner {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f0fdf6;
    border: 1px solid #86efac;
    border-radius: 8px;
    padding: 10px 14px;
    margin-bottom: 14px;
    font-size: 13px;
    color: #15803d;
    line-height: 1.4;
}

.gift-shipping-banner img {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
}

/* -50% chip badge next to carrier price and in cart totals */
.gift-discount-chip {
    display: inline-block;
    background: #e8553e;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 4px;
    line-height: 1.6;
    vertical-align: middle;
    white-space: nowrap;
}

/* Strikethrough original price in cart totals */
.gift-original-price {
    font-size: 12px;
    color: #999;
}

/* Note under shipping line in cart totals */
.gift-shipping-cart-note {
    font-size: 11px;
    color: #15803d;
    text-align: right;
    margin-top: 2px;
    line-height: 1.4;
}
