/* ==========================================================================
   GIFT PAGE STYLES
   Page: gift.html - Gift card catalog with selectable card designs
   ========================================================================== */

/* --- Gift card hover lift and glow effect --- */
.gift-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gift-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(197, 160, 89, 0.2);
}

/* --- Selected gift card gold border highlight --- */
.gift-card.selected {
    border-color: var(--gold);
    background-color: rgba(197, 160, 89, 0.05);
}
