/* ═══════════════════════════════════════════════════════
   HudHud Homepage Styles  ·  v4.0  ·  homepage.css
   ═══════════════════════════════════════════════════════ */

/* ── Design tokens ────────────────────────────────────── */
:root {
    --hh-orange:       #F5A623;
    --hh-orange-dark:  #E09015;
    --hh-orange-light: #FFF8ED;
    --hh-black:        #111111;
    --hh-gray-1:       #F8F8F8;
    --hh-gray-2:       #EEEEEE;
    --hh-gray-3:       #999999;
    --hh-text:         #1A1A1A;
    --hh-radius-sm:    10px;
    --hh-radius-md:    16px;
    --hh-radius-lg:    22px;
    --hh-shadow-sm:    0 2px 12px rgba(0,0,0,.07);
    --hh-shadow-md:    0 6px 24px rgba(0,0,0,.10);
    --hh-shadow-lg:    0 12px 40px rgba(0,0,0,.14);
    --hh-shadow-glow:  0 4px 20px rgba(245,166,35,.35);
    --ease-spring:     cubic-bezier(.34,1.56,.64,1);
    --ease-out:        cubic-bezier(.22,1,.36,1);
}

/* ── Reset ────────────────────────────────────────────── */
#hh-home { font-family: 'Inter', sans-serif; color: var(--hh-text); }
#hh-home *, #hh-home *::before, #hh-home *::after { box-sizing: border-box; }

/* ── Container ────────────────────────────────────────── */
.hh-container {
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 28px;
    width: 100%;
}

/* ═══════════════════════════════════════════════════════
   SCROLL-REVEAL SYSTEM
   JS adds .hh-visible when element enters viewport.
   ═══════════════════════════════════════════════════════ */
.hh-reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .55s var(--ease-out),
                transform .55s var(--ease-out);
}
.hh-reveal.hh-visible {
    opacity: 1;
    transform: translateY(0);
}
.hh-reveal-delay-1 { transition-delay: .08s; }
.hh-reveal-delay-2 { transition-delay: .16s; }
.hh-reveal-delay-3 { transition-delay: .24s; }
.hh-reveal-delay-4 { transition-delay: .32s; }

/* ── Shared buttons ───────────────────────────────────── */
.hh-btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 13px 26px; border-radius: var(--hh-radius-sm);
    font-size: 14px; font-weight: 700; text-decoration: none;
    white-space: nowrap; font-family: 'Inter', sans-serif;
    cursor: pointer; border: none; letter-spacing: -.01em;
    transition: background .18s, transform .14s var(--ease-spring),
                box-shadow .18s;
}
.hh-btn--orange {
    background: var(--hh-orange); color: #fff;
}
.hh-btn--orange:hover {
    background: var(--hh-orange-dark); color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--hh-shadow-glow);
}
.hh-btn--orange:active { transform: scale(.96); box-shadow: none; color: #fff; }
.hh-btn--ghost {
    background: transparent; color: #fff;
    border: 1.5px solid rgba(255,255,255,.5);
}
.hh-btn--ghost:hover {
    background: rgba(255,255,255,.12);
    border-color: rgba(255,255,255,.9);
    color: #fff;
    transform: translateY(-2px);
}
.hh-btn--ghost:active { transform: scale(.96); }

/* ── Section shared ───────────────────────────────────── */
.hh-section { padding: 56px 0; background: #fff; }
.hh-section--gray { background: var(--hh-gray-1); }

.hh-section-head {
    display: flex; align-items: center;
    justify-content: space-between; margin-bottom: 24px; gap: 12px;
}
.hh-section-head__left { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; }

.hh-section-title {
    font-size: 23px; font-weight: 800; color: var(--hh-black);
    margin: 0; letter-spacing: -.03em; position: relative;
}
/* Accent underline on section titles */
.hh-section-title::after {
    content: '';
    display: block;
    width: 28px; height: 3px;
    background: var(--hh-orange);
    border-radius: 2px;
    margin-top: 6px;
}

.hh-section-addr {
    display: inline-flex; align-items: center; gap: 4px;
    font-size: 12px; color: var(--hh-gray-3); font-weight: 400;
}
.hh-see-all {
    font-size: 13px; color: var(--hh-orange); font-weight: 700;
    text-decoration: none; white-space: nowrap;
    display: inline-flex; align-items: center; gap: 4px;
    transition: color .15s, gap .15s;
}
.hh-see-all:hover { color: var(--hh-orange-dark); gap: 7px; }

/* ── Horizontal scroll rows ───────────────────────────── */
.hh-scroll-outer { position: relative; }
.hh-scroll-row {
    display: flex; gap: 16px; overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; padding-bottom: 4px;
}
.hh-scroll-row::-webkit-scrollbar { display: none; }
.hh-scroll-btn {
    position: absolute; right: -18px; top: 50%; transform: translateY(-50%);
    width: 44px; height: 44px; background: #fff;
    border: 1.5px solid var(--hh-gray-2); border-radius: 50%;
    box-shadow: var(--hh-shadow-md);
    font-size: 20px; cursor: pointer; color: #333;
    display: flex; align-items: center; justify-content: center;
    transition: box-shadow .18s, transform .18s var(--ease-spring);
    line-height: 1; padding: 0; z-index: 2;
}
.hh-scroll-btn:hover {
    box-shadow: var(--hh-shadow-lg);
    transform: translateY(-50%) scale(1.1);
}

/* ═══════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════ */
.hh-hero {
    position: relative;
    background:
        linear-gradient(to right, rgba(18,8,0,.9) 0%, rgba(40,18,5,.78) 38%, rgba(90,42,8,.45) 65%, transparent 100%),
        linear-gradient(135deg, #1A0B00 0%, #5A2A00 38%, #B05808 68%, #E89520 100%);
    overflow: hidden;
}
.hh-hero .hh-container { position: relative; z-index: 2; }
.hh-hero__layout {
    display: flex; align-items: center;
    min-height: 420px; padding: 72px 0 36px; gap: 40px;
}

/* Hero text — animate in on load */
@keyframes hh-hero-text-in {
    from { opacity: 0; transform: translateX(-24px); }
    to   { opacity: 1; transform: translateX(0); }
}
.hh-hero__text { flex: 1 1 0; min-width: 0; }
.hh-hero__eyebrow {
    display: inline-block;
    background: rgba(255,255,255,.14); color: rgba(255,255,255,.92);
    font-size: 12.5px; font-weight: 600; padding: 5px 15px;
    border-radius: 999px; margin-bottom: 20px;
    border: 1px solid rgba(255,255,255,.22);
    backdrop-filter: blur(6px);
    animation: hh-hero-text-in .6s var(--ease-out) .1s both;
}
.hh-hero__text h1 {
    font-size: 52px; font-weight: 900; color: #fff;
    line-height: 1.07; margin: 0 0 18px;
    letter-spacing: -.04em;
    animation: hh-hero-text-in .65s var(--ease-out) .2s both;
}
.hh-hero__text p {
    font-size: 16.5px; color: rgba(255,255,255,.72);
    margin: 0 0 32px; max-width: 430px; line-height: 1.65;
    animation: hh-hero-text-in .65s var(--ease-out) .3s both;
}
.hh-hero__btns {
    display: flex; gap: 12px; flex-wrap: wrap;
    animation: hh-hero-text-in .65s var(--ease-out) .4s both;
}

/* Hero visual */
@keyframes hh-hero-vis-in {
    from { opacity: 0; transform: scale(.92) translateX(20px); }
    to   { opacity: 1; transform: scale(1) translateX(0); }
}
.hh-hero__visual {
    flex: 0 0 400px;
    display: flex; flex-direction: column; gap: 20px; align-items: flex-end;
    animation: hh-hero-vis-in .7s var(--ease-out) .25s both;
}
.hh-hero__visual-inner {
    width: 360px; height: 260px;
    border-radius: 20px;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.13);
    display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,.3);
}
.hh-hero__animal-placeholder {
    font-size: 100px; opacity: .5;
    filter: drop-shadow(0 8px 28px rgba(0,0,0,.45));
    animation: hh-float 4.5s ease-in-out infinite;
}
@keyframes hh-float {
    0%, 100% { transform: translateY(0) rotate(-1deg); }
    50%       { transform: translateY(-12px) rotate(1deg); }
}

.hh-hero__trust-pills { display: flex; gap: 10px; flex-wrap: wrap; justify-content: flex-end; }
.hh-trust-pill {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,.16); color: #fff;
    font-size: 12.5px; font-weight: 600; padding: 8px 15px;
    border-radius: 999px; border: 1px solid rgba(255,255,255,.22);
    backdrop-filter: blur(8px);
    transition: background .18s, transform .18s;
}
.hh-trust-pill:hover { background: rgba(255,255,255,.24); transform: translateY(-1px); }
.hh-trust-pill__icon {
    width: 22px; height: 22px; border-radius: 50%;
    background: rgba(245,166,35,.45);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}

/* Carousel dots */
.hh-hero__dots {
    display: flex; gap: 6px; justify-content: center;
    padding: 16px 0 20px; position: relative; z-index: 2;
}
.hh-dot {
    width: 7px; height: 7px; background: rgba(255,255,255,.28);
    border-radius: 50%; display: inline-block; cursor: pointer;
    transition: all .3s var(--ease-spring);
}
.hh-dot--on { background: var(--hh-orange); width: 22px; border-radius: 4px; }

/* ═══════════════════════════════════════════════════════
   STORE CARDS
   ═══════════════════════════════════════════════════════ */
.hh-store-card {
    flex: 0 0 160px; scroll-snap-align: start;
    background: #fff; border: 1.5px solid var(--hh-gray-2);
    border-radius: var(--hh-radius-md); padding: 18px 15px;
    text-decoration: none; display: flex;
    flex-direction: column; gap: 7px;
    transition: box-shadow .22s, transform .22s var(--ease-spring),
                border-color .22s;
}
.hh-store-card:hover {
    box-shadow: var(--hh-shadow-md);
    transform: translateY(-4px);
    border-color: rgba(245,166,35,.35);
}
.hh-store-card:active { transform: scale(.97); }
.hh-store-card__logo {
    width: 64px; height: 64px; border-radius: 14px;
    overflow: hidden; background: var(--hh-gray-1);
    display: flex; align-items: center; justify-content: center;
    border: 1px solid var(--hh-gray-2); margin-bottom: 4px; flex-shrink: 0;
    transition: transform .3s var(--ease-spring);
}
.hh-store-card:hover .hh-store-card__logo { transform: scale(1.06); }
.hh-store-card__logo img { width: 100%; height: 100%; object-fit: cover; }
.hh-store-card__abbr { font-size: 17px; font-weight: 900; color: var(--hh-orange); }
.hh-store-card__name { font-size: 13px; font-weight: 700; color: var(--hh-black); margin: 0; line-height: 1.3; }
.hh-store-card__type { font-size: 11.5px; color: var(--hh-gray-3); margin: 0; }
.hh-store-card__eta { font-size: 11.5px; color: var(--hh-orange); font-weight: 600; margin: 0; }

/* ═══════════════════════════════════════════════════════
   PRODUCT TILES  v2 — bigger, cleaner, with badges
   ═══════════════════════════════════════════════════════ */
.hh-product-tile {
    flex: 0 0 210px; scroll-snap-align: start;
    background: #fff; border: 1.5px solid var(--hh-gray-2);
    border-radius: var(--hh-radius-md); overflow: hidden;
    display: flex; flex-direction: column;
    position: relative;
    transition: box-shadow .22s, transform .22s var(--ease-spring), border-color .22s;
    text-decoration: none; color: inherit;
}
.hh-product-tile:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,.12);
    transform: translateY(-5px);
    border-color: rgba(245,166,35,.4);
}
.hh-product-tile:active { transform: translateY(-2px) scale(.99); }

/* Image */
.hh-product-tile__img {
    display: block; width: 100%; aspect-ratio: 1/1;
    overflow: hidden; background: var(--hh-gray-1); position: relative;
}
.hh-product-tile__img img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .5s var(--ease-out);
}
.hh-product-tile:hover .hh-product-tile__img img { transform: scale(1.09); }

/* Overlays on image */
.hh-product-tile__overlays {
    position: absolute; inset: 0; pointer-events: none;
    display: flex; flex-direction: column;
    justify-content: space-between; padding: 9px 10px;
}
.hh-product-tile__sale {
    align-self: flex-start;
    background: var(--hh-orange); color: #fff;
    font-size: 10px; font-weight: 800; padding: 3px 8px;
    border-radius: 5px; letter-spacing: .04em; text-transform: uppercase;
}
.hh-product-tile__oos {
    align-self: flex-start;
    background: rgba(0,0,0,.55); color: rgba(255,255,255,.9);
    font-size: 10px; font-weight: 700; padding: 3px 8px;
    border-radius: 5px;
}
.hh-product-tile__halal {
    align-self: flex-end;
    background: rgba(20,60,20,.75); color: #A8F0A8;
    font-size: 10px; font-weight: 700; padding: 3px 8px;
    border-radius: 5px; backdrop-filter: blur(4px);
}

/* Body */
.hh-product-tile__body {
    padding: 12px 14px 8px; flex: 1; display: flex; flex-direction: column; gap: 4px;
}
.hh-product-tile__cat {
    font-size: 10.5px; font-weight: 600; color: var(--hh-orange);
    text-transform: uppercase; letter-spacing: .05em;
}
.hh-product-tile__name-link { text-decoration: none; color: inherit; }
.hh-product-tile__name {
    font-size: 13.5px; font-weight: 700; color: var(--hh-black);
    margin: 0; line-height: 1.35;
    display: -webkit-box; -webkit-line-clamp: 2;
    -webkit-box-orient: vertical; overflow: hidden;
    transition: color .15s;
}
.hh-product-tile:hover .hh-product-tile__name { color: var(--hh-orange); }

/* Star rating */
.hh-product-tile__rating {
    display: flex; align-items: center; gap: 1px; font-size: 12px;
    margin-top: 2px;
}
.hh-star--full  { color: var(--hh-orange); }
.hh-star--half  { color: var(--hh-orange); font-size: 10px; }
.hh-star--empty { color: #DDD; }
.hh-product-tile__rcount {
    font-size: 11px; color: var(--hh-gray-3); margin-left: 3px; font-weight: 400;
}

/* Price row */
.hh-product-tile__price-row { margin-top: auto; padding-top: 6px; }
.hh-product-tile__price {
    font-size: 16px; font-weight: 900; color: var(--hh-black); margin: 0;
    letter-spacing: -.03em;
}
.hh-product-tile__price .woocommerce-Price-amount { color: var(--hh-black); font-weight: 900; }
.hh-product-tile__price ins { text-decoration: none !important; }
.hh-product-tile__price del {
    font-size: 12px; font-weight: 500; color: var(--hh-gray-3);
    margin-right: 4px;
}

/* Add-to-cart — full-width pill at bottom */
.hh-product-tile__add {
    display: flex; align-items: center; justify-content: center; gap: 6px;
    margin: 0; padding: 11px 0; width: 100%;
    background: var(--hh-orange); color: #fff;
    font-size: 13px; font-weight: 700; font-family: 'Inter', sans-serif;
    text-decoration: none; cursor: pointer; border: none;
    letter-spacing: -.01em;
    transition: background .15s, transform .12s var(--ease-spring);
    border-radius: 0 0 calc(var(--hh-radius-md) - 1px) calc(var(--hh-radius-md) - 1px);
    flex-shrink: 0;
}
.hh-product-tile__add:hover { background: var(--hh-orange-dark); color: #fff; transform: none; }
.hh-product-tile__add:active { transform: scale(.98); }
.hh-product-tile__add.loading { opacity: .6; pointer-events: none; }

.hh-product-tile__oos-btn {
    display: flex; align-items: center; justify-content: center;
    padding: 11px 0; width: 100%;
    background: #F5F5F5; color: #AAA;
    font-size: 13px; font-weight: 600; font-family: 'Inter', sans-serif;
    border-radius: 0 0 calc(var(--hh-radius-md) - 1px) calc(var(--hh-radius-md) - 1px);
    flex-shrink: 0;
}

/* Added-to-cart flash on tile */
@keyframes hh-tile-flash {
    0%   { box-shadow: 0 0 0 0 rgba(245,166,35,.55); }
    50%  { box-shadow: 0 0 0 10px rgba(245,166,35,0); }
    100% { box-shadow: 0 0 0 0 rgba(245,166,35,0); }
}
.hh-product-tile.hh-added {
    animation: hh-tile-flash .55s ease;
    border-color: var(--hh-orange) !important;
}

/* ═══════════════════════════════════════════════════════
   EID PROMO BANNER
   ═══════════════════════════════════════════════════════ */
.hh-promo-banner-wrap { padding: 0 0 52px; background: #fff; }
.hh-promo-banner {
    display: flex; align-items: center; justify-content: space-between;
    background: linear-gradient(115deg, #FFF0CC 0%, #FEDE87 50%, #F5C842 100%);
    border-radius: var(--hh-radius-lg); padding: 40px 52px;
    overflow: hidden; position: relative; min-height: 140px; gap: 24px;
    box-shadow: 0 4px 20px rgba(245,166,35,.2);
    transition: transform .2s var(--ease-spring), box-shadow .2s;
}
.hh-promo-banner:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(245,166,35,.28);
}
.hh-promo-banner::before {
    content: '';
    position: absolute; top: -30px; right: 120px;
    width: 180px; height: 180px;
    background: rgba(255,255,255,.25);
    border-radius: 50%;
    pointer-events: none;
}
.hh-promo-banner__text h2 {
    font-size: 27px; font-weight: 900; color: #1A1A1A;
    margin: 0 0 18px; letter-spacing: -.03em; line-height: 1.2;
}
.hh-promo-banner__art {
    font-size: 70px; opacity: .5; flex-shrink: 0;
    filter: drop-shadow(0 6px 16px rgba(0,0,0,.18));
    animation: hh-float 5.5s ease-in-out infinite;
}

/* ═══════════════════════════════════════════════════════
   TRUST BADGES
   ═══════════════════════════════════════════════════════ */
.hh-badges-section { padding: 52px 0; background: var(--hh-gray-1); }
.hh-badges-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
.hh-badge-item {
    display: flex; flex-direction: column; gap: 12px;
    padding: 26px 22px; background: #fff;
    border-radius: var(--hh-radius-md); border: 1.5px solid var(--hh-gray-2);
    transition: box-shadow .22s, transform .22s var(--ease-spring),
                border-color .22s;
    cursor: default;
}
.hh-badge-item:hover {
    box-shadow: var(--hh-shadow-md);
    transform: translateY(-3px);
    border-color: rgba(245,166,35,.4);
}
.hh-badge-item__icon {
    width: 50px; height: 50px; border-radius: 14px;
    background: var(--hh-orange-light);
    display: flex; align-items: center; justify-content: center;
    font-size: 24px;
    transition: transform .3s var(--ease-spring);
}
.hh-badge-item:hover .hh-badge-item__icon { transform: scale(1.1) rotate(-3deg); }
.hh-badge-item h4 {
    font-size: 15px; font-weight: 800; color: var(--hh-black);
    margin: 0; letter-spacing: -.02em;
}
.hh-badge-item p { font-size: 13px; color: #666; margin: 0; line-height: 1.55; }

/* ═══════════════════════════════════════════════════════
   TWO-COLUMN FEATURES
   ═══════════════════════════════════════════════════════ */
.hh-features-section { padding: 52px 0; background: #fff; }
.hh-features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }

/* Dark card */
.hh-feat-dark {
    background: #111; border-radius: var(--hh-radius-lg);
    padding: 44px 38px; position: relative; overflow: hidden;
    display: flex; align-items: flex-end; gap: 20px;
    min-height: 290px;
    transition: transform .22s var(--ease-spring), box-shadow .22s;
}
.hh-feat-dark:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(0,0,0,.22);
}
/* Subtle background glow */
.hh-feat-dark::before {
    content: '';
    position: absolute; top: -40px; right: -40px;
    width: 220px; height: 220px;
    background: radial-gradient(circle, rgba(245,166,35,.15) 0%, transparent 70%);
    pointer-events: none;
}
.hh-feat-dark__body { position: relative; z-index: 2; flex: 1; }
.hh-feat-dark__body h2 {
    font-size: 27px !important; font-weight: 900 !important; color: #fff !important;
    margin: 0 0 10px !important; letter-spacing: -.03em !important; line-height: 1.18 !important;
}
.hh-feat-dark__body p { font-size: 15px !important; color: rgba(255,255,255,.75) !important; margin: 0 0 24px !important; }
.hh-feat-dark__body * { color: #fff !important; }
.hh-feat-dark__body p { color: rgba(255,255,255,.75) !important; }
.hh-feat-dark__art {
    font-size: 48px; opacity: .18; position: absolute;
    top: 22px; right: 26px; line-height: 1.5; letter-spacing: 4px;
}

/* Light card */
.hh-feat-light {
    background: var(--hh-gray-1); border-radius: var(--hh-radius-lg);
    padding: 44px 38px; border: 1.5px solid var(--hh-gray-2);
    display: flex; flex-direction: column; justify-content: center;
    min-height: 290px;
    transition: transform .22s var(--ease-spring), box-shadow .22s;
}
.hh-feat-light:hover {
    transform: translateY(-3px);
    box-shadow: var(--hh-shadow-md);
}
.hh-feat-light h3 {
    font-size: 22px; font-weight: 900; color: var(--hh-black);
    margin: 0 0 24px; letter-spacing: -.03em;
}
.hh-check-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.hh-check-list li {
    font-size: 15px; color: #333; font-weight: 500;
    padding-left: 32px; position: relative; line-height: 1.45;
    transition: color .15s, padding-left .15s;
}
.hh-check-list li:hover { color: var(--hh-black); padding-left: 35px; }
.hh-check-list li::before {
    content: '';
    position: absolute; left: 0; top: 1px;
    width: 21px; height: 21px; border-radius: 50%;
    background: var(--hh-orange)
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='11' fill='none' stroke='white' stroke-width='2.8' viewBox='0 0 24 24'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E")
        no-repeat center / 11px;
    transition: transform .2s var(--ease-spring);
}
.hh-check-list li:hover::before { transform: scale(1.12); }

/* ═══════════════════════════════════════════════════════
   HOW IT WORKS
   ═══════════════════════════════════════════════════════ */
.hh-how-section { padding: 64px 0; background: var(--hh-gray-1); }
.hh-how-title {
    font-size: 28px; font-weight: 900; color: var(--hh-black);
    margin: 0 0 44px; letter-spacing: -.035em;
    position: relative; display: inline-block;
}
.hh-how-title::after {
    content: '';
    display: block; width: 36px; height: 3px;
    background: var(--hh-orange); border-radius: 2px; margin-top: 8px;
}
.hh-how-steps { display: flex; align-items: flex-start; position: relative; }
/* Connecting line between steps */
.hh-how-steps::before {
    content: '';
    position: absolute; top: 23px; left: 24px;
    right: 24px; height: 2px;
    background: linear-gradient(to right, var(--hh-orange), rgba(245,166,35,.2));
    z-index: 0;
}
.hh-how-step {
    flex: 1; display: flex; flex-direction: column; gap: 14px;
    padding: 0 20px 0 0; position: relative; z-index: 1;
}
.hh-how-step__num {
    width: 48px; height: 48px; background: var(--hh-orange); color: #fff;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 20px; font-weight: 900; flex-shrink: 0;
    box-shadow: var(--hh-shadow-glow);
    transition: transform .2s var(--ease-spring), box-shadow .2s;
    border: 3px solid #fff;
}
.hh-how-step:hover .hh-how-step__num {
    transform: scale(1.12);
    box-shadow: 0 6px 24px rgba(245,166,35,.5);
}
.hh-how-step h4 {
    font-size: 17px; font-weight: 800; color: var(--hh-black);
    margin: 0; letter-spacing: -.025em;
}
.hh-how-step p { font-size: 14px; color: #666; margin: 0; line-height: 1.6; }
.hh-how-arrow {
    font-size: 24px; color: var(--hh-orange); padding: 6px 8px;
    margin-top: 12px; flex-shrink: 0; align-self: flex-start; opacity: .5;
}

/* ═══════════════════════════════════════════════════════
   APP DOWNLOAD
   ═══════════════════════════════════════════════════════ */
.hh-app-section { padding: 52px 0; background: #fff; border-top: 1px solid var(--hh-gray-2); }
.hh-app-inner { display: flex; align-items: center; gap: 36px; flex-wrap: wrap; }
.hh-app-text { flex: 1; min-width: 200px; }
.hh-app-text h2 {
    font-size: 26px; font-weight: 900; color: var(--hh-black);
    margin: 0 0 8px; letter-spacing: -.03em;
}
.hh-app-text p { font-size: 14.5px; color: #666; margin: 0; line-height: 1.65; }
.hh-app-stores { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.hh-app-badge {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--hh-black); color: #fff;
    padding: 11px 18px; border-radius: 12px;
    text-decoration: none; font-family: 'Inter', sans-serif;
    transition: transform .18s var(--ease-spring), box-shadow .18s, background .15s;
}
.hh-app-badge:hover {
    background: #222;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,.2);
    color: #fff;
}
.hh-app-badge:active { transform: scale(.97); }
.hh-app-badge__icon { font-size: 26px; line-height: 1; flex-shrink: 0; }
.hh-app-badge__text { display: flex; flex-direction: column; line-height: 1.25; }
.hh-app-badge__sub { font-size: 10px; opacity: .7; font-weight: 400; }
.hh-app-badge__label { font-size: 15px; font-weight: 700; }

.hh-qr-box {
    background: var(--hh-gray-1); border: 1.5px solid var(--hh-gray-2);
    border-radius: 14px; padding: 16px;
    display: flex; flex-direction: column; align-items: center; gap: 9px;
    transition: box-shadow .2s;
}
.hh-qr-box:hover { box-shadow: var(--hh-shadow-sm); }
.hh-qr-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 4px; width: 54px;
}
.hh-qr-grid div { width: 23px; height: 23px; background: #222; border-radius: 4px; }
.hh-qr-box p { font-size: 10px; color: var(--hh-gray-3); margin: 0; text-align: center; }

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .hh-badges-grid { grid-template-columns: repeat(2, 1fr); }
    .hh-hero__text h1 { font-size: 42px; }
    .hh-hero__visual { flex: 0 0 320px; }
    .hh-hero__visual-inner { width: 300px; height: 220px; }
}
@media (max-width: 768px) {
    .hh-hero__layout { flex-direction: column; min-height: auto; padding: 48px 0 24px; gap: 28px; }
    .hh-hero__visual { flex: none; width: 100%; align-items: center; }
    .hh-hero__visual-inner { width: 100%; max-width: 340px; }
    .hh-hero__trust-pills { justify-content: center; }
    .hh-hero__text h1 { font-size: 34px; }
    .hh-features-grid { grid-template-columns: 1fr; }
    .hh-how-steps { flex-direction: column; gap: 28px; }
    .hh-how-steps::before { display: none; }
    .hh-how-arrow { transform: rotate(90deg); }
    .hh-promo-banner { flex-direction: column; padding: 36px 28px; text-align: center; }
    .hh-promo-banner__text h2 { font-size: 22px; }
    .hh-app-inner { flex-direction: column; align-items: flex-start; }
    .hh-scroll-btn { display: none; }
}
@media (max-width: 480px) {
    .hh-container { padding: 0 18px; }
    .hh-hero__text h1 { font-size: 28px; }
    .hh-badges-grid { grid-template-columns: 1fr 1fr; }
    .hh-section-title { font-size: 20px; }
    .hh-feat-dark, .hh-feat-light { padding: 30px 24px; }
    .hh-promo-banner { padding: 28px 20px; }
}

/* ── Reduced motion ────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
    .hh-hero__animal-placeholder,
    .hh-promo-banner__art { animation: none; }
    .hh-reveal { opacity: 1; transform: none; transition: none; }
    .hh-hero__eyebrow, .hh-hero__text h1,
    .hh-hero__text p, .hh-hero__btns,
    .hh-hero__visual { animation: none; opacity: 1; transform: none; }
    * { transition-duration: .01ms !important; }
}
