/* ==========================================================================
   HOLIDAY WISHLIST IDEAS — Luxury Editorial Gift Guide
   Festive, immersive, interactive. Rich red + gold holiday palette.
   ========================================================================== */

/* ── Page Background ─────────────────────────────────────────────────── */
body {
    background: #0a0505;
}

/* ── Snow Canvas ─────────────────────────────────────────────────────── */
.hw-snow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9998;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hw-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 6rem;
    text-align: center;
    overflow: hidden;
    background:
        radial-gradient(ellipse 80% 60% at 50% 40%, rgba(137, 8, 8, 0.25) 0%, transparent 70%),
        radial-gradient(ellipse 60% 50% at 80% 20%, rgba(180, 50, 20, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 20% 70%, rgba(137, 8, 8, 0.10) 0%, transparent 60%),
        linear-gradient(180deg, #0a0505 0%, #150808 40%, #1a0a0a 100%);
}

/* Ornaments hidden — replaced by canvas golden speckles */
.hw-hero__ornaments {
    display: none;
}

/* Hero Inner */
.hw-hero__inner {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 2rem;
}

.hw-hero__eyebrow {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: rgba(212, 175, 55, 0.9);
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: heroFadeUp 0.8s ease 0.2s forwards;
}

.hw-hero__title {
    font-family: var(--font-display);
    color: #fff;
    line-height: 1;
    margin-bottom: 1.5rem;
}

.hw-hero__title-line {
    display: block;
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    font-weight: 300;
    letter-spacing: 0.04em;
    opacity: 0;
    animation: heroFadeUp 0.8s ease 0.4s forwards;
}

.hw-hero__title-line--script {
    font-family: 'Sloop', 'Cormorant Garamond', cursive;
    font-size: clamp(4rem, 10vw, 8rem);
    font-weight: 400;
    margin-top: -0.1em;
    letter-spacing: 0.02em;
    animation-delay: 0.6s;

    /* Position context for sparkle particles */
    position: relative;

    /* Sparkly gold gradient text */
    background: linear-gradient(
        105deg,
        #b8860b 0%,
        #d4a017 12%,
        #ffd700 22%,
        #fffacd 30%,
        #fff8dc 34%,
        #ffd700 42%,
        #daa520 52%,
        #b8860b 60%,
        #d4a017 68%,
        #ffd700 76%,
        #fffacd 82%,
        #fff8dc 85%,
        #ffd700 90%,
        #b8860b 100%
    );
    background-size: 250% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: heroFadeUp 0.8s ease 0.6s forwards, goldShimmer 4s ease-in-out 1.4s infinite;

    /* Warm gold glow behind the text */
    filter: drop-shadow(0 0 18px rgba(255, 215, 0, 0.3))
            drop-shadow(0 0 40px rgba(212, 175, 55, 0.15));
}

@keyframes goldShimmer {
    0%   { background-position: 100% 50%; }
    50%  { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}

/* Sparkle particles container */
.hw-sparkles {
    position: absolute;
    inset: -20px -30px;
    pointer-events: none;
    overflow: visible;
}

.hw-sparkle {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    opacity: 0;
    animation: sparkleLife var(--dur, 2s) ease-in-out var(--delay, 0s) infinite;
}

/* Star-shaped sparkle using box-shadow */
.hw-sparkle::before,
.hw-sparkle::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
}

.hw-sparkle::before {
    background: var(--sparkle-color, #ffd700);
    box-shadow:
        0 0 4px 1px var(--sparkle-color, #ffd700),
        0 0 10px 2px rgba(255, 215, 0, 0.4);
}

.hw-sparkle::after {
    /* Cross / star arms */
    width: 1px;
    height: 12px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(180deg, transparent, var(--sparkle-color, #ffd700), transparent);
    box-shadow:
        0 0 0 0 transparent,
        /* horizontal arm via rotation trick */
        4px 0 0 -0.5px var(--sparkle-color, #ffd700),
        -4px 0 0 -0.5px var(--sparkle-color, #ffd700);
    border-radius: 0;
}

@keyframes sparkleLife {
    0%, 100% { opacity: 0; transform: scale(0.3) rotate(0deg); }
    15%      { opacity: 1; transform: scale(1) rotate(30deg); }
    30%      { opacity: 0.9; transform: scale(0.8) rotate(60deg); }
    50%      { opacity: 1; transform: scale(1.2) rotate(90deg); }
    70%      { opacity: 0.6; transform: scale(0.6) rotate(120deg); }
    85%      { opacity: 0.8; transform: scale(1) rotate(150deg); }
}

.hw-hero__subtitle {
    font-family: var(--font-body);
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    font-weight: 300;
    color: rgba(255, 220, 220, 0.7);
    line-height: 1.8;
    max-width: 500px;
    margin: 0 auto 2.5rem;
    opacity: 0;
    animation: heroFadeUp 0.8s ease 0.8s forwards;
}

.hw-hero__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: heroFadeUp 0.8s ease 1s forwards;
}

.hw-hero__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.9rem 2.2rem;
    border: none;
    border-radius: 0;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
    background: rgba(212, 175, 55, 0.9);
    color: #0a0505;
}

.hw-hero__btn:hover {
    background: #d4af37;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.3);
}

.hw-hero__btn--outline {
    background: transparent;
    border: 1px solid rgba(255, 220, 220, 0.3);
    color: rgba(255, 220, 220, 0.9);
}

.hw-hero__btn--outline:hover {
    border-color: rgba(212, 175, 55, 0.6);
    color: rgba(212, 175, 55, 0.9);
    background: rgba(212, 175, 55, 0.08);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.1);
}

@keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Scroll Hint */
.hw-hero__scroll-hint {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    animation: heroFadeUp 0.8s ease 1.4s forwards;
}

.hw-hero__scroll-hint span {
    display: block;
    width: 1px;
    height: 48px;
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.6), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.4; transform: scaleY(0.6); transform-origin: top; }
    50%      { opacity: 1; transform: scaleY(1); transform-origin: top; }
}


/* ==========================================================================
   FILTERS RIBBON
   ========================================================================== */
.hw-filters {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(10, 5, 5, 0.85);
    backdrop-filter: blur(20px) saturate(1.4);
    -webkit-backdrop-filter: blur(20px) saturate(1.4);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    padding: 1.2rem 0 1rem;
}

.hw-filters__inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.hw-filters__title {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(212, 175, 55, 0.6);
    margin-bottom: 0.8rem;
}

.hw-filters__tabs,
.hw-filters__recipient-tabs {
    display: flex;
    gap: 0.25rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hw-filters__recipient-tabs {
    margin-top: 0.5rem;
}

.hw-filters__tab,
.hw-filters__rtab {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    padding: 0.45rem 1rem;
    border: 1px solid rgba(255, 220, 220, 0.12);
    border-radius: 100px;
    background: transparent;
    color: rgba(255, 220, 220, 0.5);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.hw-filters__tab:hover,
.hw-filters__rtab:hover {
    border-color: rgba(212, 175, 55, 0.3);
    color: rgba(255, 220, 220, 0.8);
}

.hw-filters__tab--active,
.hw-filters__rtab--active {
    background: rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.4);
    color: rgba(212, 175, 55, 0.95);
}


/* ==========================================================================
   GIFT GRID
   ========================================================================== */
.hw-grid {
    padding: 3rem 2rem 5rem;
    max-width: var(--container-max);
    margin: 0 auto;
}

.hw-grid__inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

/* Cards */
.hw-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 220, 220, 0.06);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
    opacity: 0;
    transform: translateY(30px);
}

.hw-card.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.hw-card.is-hidden {
    display: none;
}

.hw-card:hover {
    border-color: rgba(212, 175, 55, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 40px rgba(212, 175, 55, 0.05);
}

/* Wide cards span 2 columns */
.hw-card[data-size="wide"] {
    grid-column: span 2;
}

/* Featured card gets special treatment */
.hw-card[data-size="featured"] {
    grid-row: span 2;
}

/* Card Image */
.hw-card__image-wrap {
    position: relative;
    overflow: hidden;
}

.hw-card__image {
    aspect-ratio: 4 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.hw-card__image--wide {
    aspect-ratio: 16 / 7;
}

.hw-card[data-size="featured"] .hw-card__image {
    aspect-ratio: 3 / 4;
}

.hw-card:hover .hw-card__image {
    transform: scale(1.05);
}

.hw-card__emoji {
    font-size: clamp(3rem, 5vw, 4.5rem);
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.3));
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hw-card:hover .hw-card__emoji {
    transform: scale(1.15) rotate(-5deg);
}

/* Card Badge */
.hw-card__badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-family: var(--font-body);
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.3rem 0.7rem;
    background: rgba(10, 5, 5, 0.7);
    backdrop-filter: blur(10px);
    color: rgba(255, 220, 220, 0.9);
    border: 1px solid rgba(255, 220, 220, 0.15);
    border-radius: 4px;
}

.hw-card__badge--gold {
    background: rgba(212, 175, 55, 0.2);
    border-color: rgba(212, 175, 55, 0.4);
    color: rgba(212, 175, 55, 0.95);
}

.hw-card__badge--pink {
    background: rgba(220, 80, 120, 0.2);
    border-color: rgba(220, 80, 120, 0.3);
    color: rgba(255, 180, 200, 0.95);
}

/* Card Wishlist Toggle */
.hw-card__wishlist-toggle {
    position: absolute;
    top: 0.8rem;
    right: 0.8rem;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 5, 5, 0.5);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 220, 220, 0.15);
    border-radius: 50%;
    color: rgba(255, 220, 220, 0.6);
    transition: all 0.3s ease;
}

.hw-card__wishlist-toggle svg {
    width: 16px;
    height: 16px;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hw-card__wishlist-toggle:hover {
    border-color: rgba(220, 60, 60, 0.4);
    color: rgba(220, 60, 60, 0.8);
    transform: scale(1.1);
}

.hw-card__wishlist-toggle.is-active {
    background: rgba(220, 60, 60, 0.2);
    border-color: rgba(220, 60, 60, 0.5);
    color: #dc3c3c;
}

.hw-card__wishlist-toggle.is-active svg {
    fill: #dc3c3c;
    stroke: #dc3c3c;
}

.hw-card__wishlist-toggle.is-active:hover {
    transform: scale(1.15);
}

/* Wishlist heart pop animation */
@keyframes heartPop {
    0%   { transform: scale(1); }
    30%  { transform: scale(1.4); }
    60%  { transform: scale(0.9); }
    100% { transform: scale(1); }
}

.hw-card__wishlist-toggle.just-added svg {
    animation: heartPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Card Body */
.hw-card__body {
    padding: 1.2rem 1.4rem 1.4rem;
}

.hw-card__category {
    font-family: var(--font-body);
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(212, 175, 55, 0.6);
    margin-bottom: 0.4rem;
    display: block;
}

.hw-card__title {
    font-family: var(--font-display);
    font-size: clamp(1.1rem, 1.5vw, 1.3rem);
    font-weight: 400;
    color: rgba(255, 240, 240, 0.95);
    line-height: 1.3;
    margin-bottom: 0.6rem;
}

.hw-card__desc {
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 300;
    color: rgba(255, 220, 220, 0.5);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.hw-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}

.hw-card__price {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 500;
    color: rgba(255, 240, 240, 0.9);
}

.hw-card__tag {
    font-family: var(--font-body);
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.25rem 0.6rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 3px;
    color: rgba(212, 175, 55, 0.7);
}


/* Empty State */
.hw-grid__empty {
    text-align: center;
    padding: 4rem 2rem;
}

.hw-grid__empty-emoji {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.hw-grid__empty p {
    font-family: var(--font-body);
    font-size: 1rem;
    color: rgba(255, 220, 220, 0.5);
}


/* ==========================================================================
   CAROLINE'S TOP 3 SECTION
   ========================================================================== */
.hw-top3 {
    padding: 6rem 2rem;
    background:
        radial-gradient(ellipse 70% 50% at 50% 100%, rgba(137, 8, 8, 0.15) 0%, transparent 70%),
        linear-gradient(180deg, #0a0505 0%, #120808 100%);
}

.hw-top3__inner {
    max-width: 1000px;
    margin: 0 auto;
}

.hw-top3__header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.hw-top3__eyebrow {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(212, 175, 55, 0.7);
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.6s ease;
}

.hw-top3__title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 300;
    color: rgba(255, 240, 240, 0.95);
    line-height: 1.2;
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.6s ease 0.1s;
}

.hw-top3__subtitle {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 300;
    color: rgba(255, 220, 220, 0.5);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.7;
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.6s ease 0.2s;
}

.hw-top3.is-visible .hw-top3__eyebrow,
.hw-top3.is-visible .hw-top3__title,
.hw-top3.is-visible .hw-top3__subtitle {
    opacity: 1;
    transform: translateY(0);
}

.hw-top3__grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hw-top3__card {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 2rem 2.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 220, 220, 0.06);
    border-radius: 12px;
    transition: all 0.5s ease;
    opacity: 0;
    transform: translateX(-30px);
}

.hw-top3.is-visible .hw-top3__card--1 {
    opacity: 1; transform: translateX(0);
    transition-delay: 0.3s;
}
.hw-top3.is-visible .hw-top3__card--2 {
    opacity: 1; transform: translateX(0);
    transition-delay: 0.45s;
}
.hw-top3.is-visible .hw-top3__card--3 {
    opacity: 1; transform: translateX(0);
    transition-delay: 0.6s;
}

.hw-top3__card:hover {
    border-color: rgba(212, 175, 55, 0.15);
    background: rgba(255, 255, 255, 0.04);
    transform: translateX(8px);
}

.hw-top3__number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 300;
    color: rgba(212, 175, 55, 0.2);
    line-height: 1;
    flex-shrink: 0;
    min-width: 60px;
    transition: color 0.4s ease;
}

.hw-top3__card:hover .hw-top3__number {
    color: rgba(212, 175, 55, 0.4);
}

.hw-top3__content h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 500;
    color: rgba(255, 240, 240, 0.9);
    margin-bottom: 0.5rem;
}

.hw-top3__content p {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 300;
    color: rgba(255, 220, 220, 0.5);
    line-height: 1.7;
    margin-bottom: 0.8rem;
}

.hw-top3__price {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 500;
    color: rgba(212, 175, 55, 0.8);
}


/* ==========================================================================
   WISHLIST DRAWER (Slide-in)
   ========================================================================== */
.hw-drawer {
    position: fixed;
    inset: 0;
    z-index: 10000;
    pointer-events: none;
    visibility: hidden;
}

.hw-drawer.is-open {
    pointer-events: auto;
    visibility: visible;
}

.hw-drawer__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.hw-drawer.is-open .hw-drawer__backdrop {
    opacity: 1;
}

.hw-drawer__panel {
    position: absolute;
    top: 0;
    right: 0;
    width: 380px;
    max-width: 90vw;
    height: 100%;
    background: #120808;
    border-left: 1px solid rgba(212, 175, 55, 0.1);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.hw-drawer.is-open .hw-drawer__panel {
    transform: translateX(0);
}

.hw-drawer__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 220, 220, 0.06);
}

.hw-drawer__title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 400;
    color: rgba(255, 240, 240, 0.9);
}

.hw-drawer__close {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid rgba(255, 220, 220, 0.1);
    border-radius: 50%;
    color: rgba(255, 220, 220, 0.6);
    transition: all 0.3s ease;
}

.hw-drawer__close:hover {
    border-color: rgba(255, 220, 220, 0.3);
    color: rgba(255, 220, 220, 0.9);
}

.hw-drawer__body {
    flex: 1;
    overflow-y: auto;
    padding: 1rem 1.5rem;
}

.hw-drawer__empty {
    text-align: center;
    padding: 3rem 1rem;
    color: rgba(255, 220, 220, 0.4);
}

.hw-drawer__empty span {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
}

.hw-drawer__empty p {
    font-family: var(--font-body);
    font-size: 0.85rem;
    line-height: 1.7;
}

.hw-drawer__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hw-drawer__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 220, 220, 0.05);
    animation: drawerItemIn 0.3s ease forwards;
}

@keyframes drawerItemIn {
    from { opacity: 0; transform: translateX(10px); }
    to   { opacity: 1; transform: translateX(0); }
}

.hw-drawer__item-name {
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 400;
    color: rgba(255, 240, 240, 0.8);
    flex: 1;
}

.hw-drawer__item-remove {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid rgba(255, 220, 220, 0.1);
    border-radius: 50%;
    color: rgba(255, 220, 220, 0.4);
    font-size: 0.7rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.hw-drawer__item-remove:hover {
    border-color: rgba(220, 60, 60, 0.4);
    color: rgba(220, 60, 60, 0.8);
    background: rgba(220, 60, 60, 0.1);
}

.hw-drawer__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 1.5rem;
    border-top: 1px solid rgba(255, 220, 220, 0.06);
}

.hw-drawer__share {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.6rem 1.2rem;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 4px;
    color: rgba(212, 175, 55, 0.9);
    transition: all 0.3s ease;
}

.hw-drawer__share:hover {
    background: rgba(212, 175, 55, 0.25);
}

.hw-drawer__total {
    font-family: var(--font-display);
    font-size: 0.9rem;
    color: rgba(255, 240, 240, 0.6);
}


/* ==========================================================================
   TOAST NOTIFICATION
   ========================================================================== */
.hw-toast {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 400;
    color: rgba(255, 240, 240, 0.9);
    background: rgba(20, 10, 10, 0.9);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 0.7rem 1.5rem;
    border-radius: 8px;
    z-index: 10001;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.hw-toast.is-visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}


/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
    .hw-grid__inner {
        grid-template-columns: repeat(2, 1fr);
    }
    .hw-card[data-size="wide"] {
        grid-column: span 2;
    }
    .hw-card[data-size="featured"] {
        grid-row: span 1;
    }
    .hw-card[data-size="featured"] .hw-card__image {
        aspect-ratio: 4 / 3;
    }
}

@media (max-width: 768px) {
    .hw-hero {
        min-height: 85vh;
    }

    .hw-filters__tabs,
    .hw-filters__recipient-tabs {
        gap: 0.2rem;
        justify-content: flex-start;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding-bottom: 0.2rem;
    }

    .hw-filters__tabs::-webkit-scrollbar,
    .hw-filters__recipient-tabs::-webkit-scrollbar {
        display: none;
    }

    .hw-grid__inner {
        grid-template-columns: 1fr;
    }

    .hw-card[data-size="wide"],
    .hw-card[data-size="featured"] {
        grid-column: span 1;
    }

    .hw-card__image--wide {
        aspect-ratio: 4 / 3;
    }

    .hw-top3__card {
        flex-direction: column;
        gap: 0.8rem;
        padding: 1.5rem;
    }

    .hw-top3__number {
        font-size: 2rem;
        min-width: auto;
    }

}

@media (max-width: 480px) {
    .hw-hero__inner {
        padding: 1rem;
    }

    .hw-hero__actions {
        flex-direction: column;
        align-items: center;
    }

    .hw-hero__btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .hw-grid {
        padding: 2rem 1rem 4rem;
    }

    .hw-card__body {
        padding: 1rem;
    }

    .hw-top3 {
        padding: 4rem 1rem;
    }
}

/* ── Reduced motion ─────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
    .hw-hero__eyebrow,
    .hw-hero__title-line,
    .hw-hero__subtitle,
    .hw-hero__actions,
    .hw-hero__scroll-hint,
    .hw-card,
    .hw-top3__eyebrow,
    .hw-top3__title,
    .hw-top3__subtitle,
    .hw-top3__card {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }

    .hw-snow {
        display: none;
    }
}
