/* Gift Card Preview */
.hvb-gc-preview-card {
    position: sticky;
    top: 100px;
}
.hvb-gc-card-inner {
    background: linear-gradient(135deg, #2e7d32 0%, #1b5e20 50%, #0d3d12 100%);
    border-radius: 16px;
    padding: 28px;
    color: #fff;
    aspect-ratio: 1.6 / 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18), 0 2px 8px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}
.hvb-gc-card-inner::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -20%;
    width: 200px;
    height: 200px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}
.hvb-gc-card-inner::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -10%;
    width: 250px;
    height: 250px;
    background: rgba(255,255,255,0.03);
    border-radius: 50%;
}
.hvb-gc-card-brand {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    opacity: 0.85;
    position: relative;
    z-index: 1;
}
.hvb-gc-card-label {
    font-size: 11px;
    letter-spacing: 3px;
    opacity: 0.6;
    margin-top: 2px;
    position: relative;
    z-index: 1;
}
.hvb-gc-card-amount {
    font-size: 38px;
    font-weight: 700;
    text-align: center;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}
.hvb-gc-card-details {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    position: relative;
    z-index: 1;
}
.hvb-gc-card-details span { opacity: 0.6; }
.hvb-gc-card-details em { font-style: normal; font-weight: 500; }
.hvb-gc-card-message {
    font-size: 11px;
    font-style: italic;
    opacity: 0.7;
    min-height: 14px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
