/* ============================================================
   JE PEUX / VITACÉ — Casca: announce, header, mega-menu,
   footer, cart drawer, sticky ATC.
   ============================================================ */

/* ---- Announcement bar (rotativo + setas + autoplay + locale) ---- */
.announce { height: var(--announce-h); background: var(--je-purple); color: var(--je-white); position: relative; z-index: calc(var(--z-header) + 1); }
.announce__bar { position: relative; display: flex; align-items: center; justify-content: center; height: 100%; }
.announce__center { display: flex; align-items: center; justify-content: center; gap: 0.4rem; max-width: 100%; }
.announce__viewport { position: relative; height: 100%; width: clamp(220px, 48vw, 580px); overflow: hidden; }
.announce__msg { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; text-align: center; white-space: nowrap; font-family: var(--font-body); font-size: 0.66rem; font-weight: var(--fw-bold); text-transform: uppercase; letter-spacing: 0.16em; opacity: 0; transform: translateY(6px); transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease); pointer-events: none; padding-inline: 0.5rem; }
.announce__msg.is-active { opacity: 1; transform: none; }
.announce__arrow { background: none; border: 0; color: inherit; cursor: pointer; width: 26px; height: 26px; display: grid; place-items: center; opacity: 0.65; transition: opacity var(--dur-fast); flex: none; }
.announce__arrow:hover { opacity: 1; }
.announce__arrow svg { width: 15px; height: 15px; }
.announce__loc { position: absolute; right: var(--gutter); top: 0; height: 100%; display: flex; align-items: center; }
.announce__loc-btn { background: none; border: 0; color: inherit; cursor: pointer; font-family: var(--font-body); font-size: 0.62rem; font-weight: var(--fw-bold); letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.85; white-space: nowrap; }
.announce__loc-btn:hover { opacity: 1; }
.announce__loc-menu { position: absolute; top: 100%; right: 0; margin-top: 6px; background: var(--je-white); color: var(--je-ink); border-radius: var(--radius-sm); box-shadow: var(--shadow-md); min-width: 230px; padding: 0.4rem; display: none; flex-direction: column; z-index: 5; }
.announce__loc.is-open .announce__loc-menu { display: flex; }
.announce__loc-menu a { font-family: var(--font-body); font-size: 0.72rem; padding: 0.6rem 0.8rem; border-radius: var(--radius-sm); }
.announce__loc-menu a:hover { background: var(--je-purple-tint); color: var(--je-purple); }
@media (max-width: 640px) { .announce__loc { display: none; } }
@keyframes announce-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---- Header ---- */
.header {
  position: sticky; top: 0; z-index: var(--z-header);
  height: var(--header-h);
  background: var(--je-white);
  border-bottom: 1px solid var(--color-line);
  transition: background var(--dur) var(--ease), border-color var(--dur), color var(--dur);
}
.header__inner { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; height: 100%; }
.header__nav { display: flex; gap: 1.9rem; }
.header__nav button.navlink, .header__nav a.navlink {
  background: none; border: 0; cursor: pointer; color: inherit;
  font-family: var(--font-body); font-size: 0.78rem; font-weight: var(--fw-bold);
  text-transform: uppercase; letter-spacing: 0.14em;
  position: relative; padding: 6px 0; height: var(--header-h); display: inline-flex; align-items: center;
}
.header__nav .navlink::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 18px; height: 2px; background: var(--je-purple); transition: right var(--dur) var(--ease); }
.header__nav .navlink:hover::after, .header__nav .navlink.is-open::after, .header__nav .navlink[aria-current="page"]::after, .header__nav .navlink[data-current="true"]::after { right: 0; }

/* Brand lockup */
.brand { display: flex; flex-direction: column; align-items: center; gap: 1px; }
.brand__name { font-family: var(--font-brand); font-weight: 600; font-size: 2.5rem; letter-spacing: 0.2em; line-height: 1; padding-left: 0.2em; white-space: nowrap; }
.brand__tag { font-family: var(--font-body); font-weight: var(--fw-bold); font-size: 0.5rem; letter-spacing: 0.34em; color: var(--je-purple); }

.header__actions { display: flex; gap: 1.1rem; justify-content: flex-end; align-items: center; }
.icon-btn { background: none; border: 0; cursor: pointer; color: inherit; width: 40px; height: 40px; display: grid; place-items: center; border-radius: var(--radius-pill); transition: background var(--dur-fast); }
.icon-btn:hover { background: rgba(99,75,158,0.08); }
.icon-btn svg { width: 20px; height: 20px; }
.cart-btn { position: relative; }
.cart-count { position: absolute; top: 3px; right: 3px; min-width: 17px; height: 17px; padding: 0 4px; background: var(--je-purple); color: var(--je-white); border-radius: var(--radius-pill); font-family: var(--font-body); font-weight: var(--fw-bold); font-size: 0.6rem; display: grid; place-items: center; }
.menu-btn { display: none; }

/* Header sobre hero escuro */
.header.is-over-hero { background: transparent; color: var(--je-white); border-bottom-color: transparent; }
.header.is-over-hero .brand__tag { color: rgba(255,255,255,0.8); }
.header.is-over-hero .icon-btn:hover { background: rgba(255,255,255,0.14); }
.header.is-over-hero .navlink::after { background: var(--je-white); }
.header.is-solid { background: var(--je-white); color: var(--je-ink); border-bottom-color: var(--color-line); box-shadow: var(--shadow-sm); }
.header.is-solid .brand__tag { color: var(--je-purple); }

/* ---- Mega-menu (espelha header-v2 Timex: 3 colunas, abre via click) ---- */
.mega { position: absolute; left: 0; right: 0; top: 100%; background: var(--je-white); color: var(--je-ink); border-top: 1px solid var(--color-line); box-shadow: var(--shadow-md); opacity: 0; visibility: hidden; transform: translateY(-8px); transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease), visibility var(--dur); z-index: var(--z-mega); max-height: calc(100svh - var(--header-h) - var(--announce-h) - 10px); overflow-y: auto; overscroll-behavior: contain; }
.mega.is-open { opacity: 1; visibility: visible; transform: none; }
.mega::-webkit-scrollbar { width: 0; }
.mega__inner { display: grid; grid-template-columns: 0.8fr 1.25fr 1fr; gap: clamp(2rem, 4vw, 4rem); padding: clamp(1.6rem, 3vw, 2.6rem) var(--gutter); max-width: var(--maxw); margin-inline: auto; align-items: start; }
.mega__kicker { display: block; font-family: var(--font-body); font-weight: var(--fw-bold); font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--je-ash); margin-bottom: 1rem; }
.mega__featured ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.8rem; }
.mega__featured a { font-family: var(--font-head); font-size: 1.35rem; letter-spacing: 0.01em; display: inline-block; transition: color var(--dur-fast), padding-left var(--dur-fast) var(--ease); }
.mega__featured a:hover { color: var(--je-purple); padding-left: 6px; }
.mega__list .mega__kicker { color: var(--je-purple); }
.mega__intro { color: var(--je-ash); font-size: var(--fs-sm); margin: -0.5rem 0 1.1rem; max-width: 40ch; }
.mega__items { display: flex; flex-direction: column; }
.mega__item { display: flex; align-items: center; gap: 0.85rem; padding: 0.46rem 0; border-bottom: 1px solid var(--color-line); transition: padding-left var(--dur-fast) var(--ease); }
.mega__item:hover { padding-left: 8px; }
.mega__thumb { width: 44px; height: 52px; flex: none; border-radius: var(--radius-sm); overflow: hidden; }
.mega__thumb.pmedia img { width: 100%; }
.mega__itxt { flex: 1; display: flex; flex-direction: column; gap: 0.05rem; min-width: 0; }
.mega__item .name { font-family: var(--font-head); font-size: 1.15rem; line-height: 1; }
.mega__item .step { font-family: var(--font-body); font-weight: var(--fw-bold); font-size: 0.58rem; letter-spacing: 0.12em; color: var(--je-purple); text-transform: uppercase; }
.mega__item .price { font-family: var(--font-body); font-weight: var(--fw-bold); font-size: var(--fs-xs); color: var(--je-ash); white-space: nowrap; }
.mega__viewall { margin-top: 1.2rem; }
.mega__promo { position: relative; border-radius: var(--radius-md); overflow: hidden; min-height: 260px; height: 100%; display: flex; align-items: flex-end; padding: 1.3rem; }
.mega__promo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 35%, rgba(0,0,0,0.55)); }
.mega__promo img { transition: transform var(--dur-slow) var(--ease); }
.mega__promo:hover img { transform: scale(1.05); }
.mega__promo-cap { position: relative; z-index: 1; color: var(--je-white); display: flex; flex-direction: column; gap: 0.15rem; }
.mega__promo-sub { font-family: var(--font-body); font-weight: var(--fw-bold); font-size: 0.6rem; letter-spacing: 0.14em; text-transform: uppercase; opacity: 0.9; }
.mega__promo-name { font-family: var(--font-head); font-size: 1.6rem; line-height: 1; }

/* ---- Footer (preto, marca-mãe) ---- */
.footer { background: #000; color: var(--je-white); padding-block: clamp(3rem, 6vw, 5rem) 2rem; }
.footer__grid { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: clamp(2rem, 4vw, 3rem); }
.footer__brand .brand__name { font-size: 3rem; color: var(--je-white); }
.footer__brand .brand { align-items: flex-start; }
.footer__brand .brand__tag { color: rgba(255,255,255,0.6); }
.footer__brand p { color: rgba(255,255,255,0.6); max-width: 34ch; font-size: var(--fs-sm); margin-top: 1rem; }
.footer__news { display: flex; margin-top: 1.4rem; max-width: 340px; border-bottom: 1px solid rgba(255,255,255,0.3); }
.footer__news input { flex: 1; background: none; border: 0; color: inherit; padding: 0.6rem 0; font-family: var(--font-body); }
.footer__news input::placeholder { color: rgba(255,255,255,0.45); }
.footer__news button { background: none; border: 0; color: inherit; cursor: pointer; font-family: var(--font-head); font-size: 1rem; text-transform: uppercase; letter-spacing: 0.06em; }
.footer__col h4 { font-family: var(--font-body); font-weight: var(--fw-bold); font-size: var(--fs-xs); text-transform: uppercase; letter-spacing: 0.18em; color: rgba(255,255,255,0.55); margin-bottom: 1.1rem; }
.footer__col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.7rem; }
.footer__col a { font-size: var(--fs-sm); color: rgba(255,255,255,0.82); transition: color var(--dur-fast); }
.footer__col a:hover { color: var(--je-yellow); }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; gap: 1rem; margin-top: clamp(2.5rem, 5vw, 4rem); padding-top: 1.6rem; border-top: 1px solid rgba(255,255,255,0.14); font-family: var(--font-body); font-size: var(--fs-xs); color: rgba(255,255,255,0.5); flex-wrap: wrap; }
.footer__pay { display: flex; gap: 0.5rem; }
.footer__pay span { border: 1px solid rgba(255,255,255,0.22); border-radius: 3px; padding: 3px 7px; font-size: 0.6rem; letter-spacing: 0.08em; }
.footer__credit { display: flex; align-items: center; justify-content: center; gap: 0.7rem; margin-top: 1.6rem; font-family: var(--font-body); font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.4); }
.footer__credit-logo { height: 18px; width: auto; display: block; opacity: 0.85; transition: opacity var(--dur-fast); }
.footer__credit a:hover .footer__credit-logo { opacity: 1; }

/* ---- Cart drawer ---- */
.scrim { position: fixed; inset: 0; background: rgba(46,36,71,0.5); opacity: 0; visibility: hidden; transition: opacity var(--dur) var(--ease), visibility var(--dur); z-index: var(--z-drawer); backdrop-filter: blur(2px); }
.scrim.is-open { opacity: 1; visibility: visible; }
.drawer { position: fixed; top: 0; right: 0; bottom: 0; width: min(440px, 92vw); background: var(--je-white); z-index: calc(var(--z-drawer) + 1); transform: translateX(100%); transition: transform var(--dur) var(--ease-out); display: flex; flex-direction: column; box-shadow: var(--shadow-lg); }
.drawer.is-open { transform: translateX(0); }
.drawer__head { display: flex; align-items: center; justify-content: space-between; padding: 1.4rem var(--gutter); border-bottom: 1px solid var(--color-line); }
.drawer__head h2 { font-size: var(--fs-xl); }
.drawer__items { flex: 1; overflow-y: auto; padding: var(--gutter); display: flex; flex-direction: column; gap: 1.2rem; }
.cart-line { display: grid; grid-template-columns: 60px 1fr auto; gap: 1rem; align-items: center; }
.cart-line .ph { width: 60px; height: 76px; border-radius: var(--radius-sm); }
.cart-line__name { font-family: var(--font-head); font-size: 1.15rem; }
.cart-line__meta { font-size: var(--fs-sm); color: var(--color-subdued); }
.cart-line__price { font-family: var(--font-body); font-weight: var(--fw-bold); font-size: var(--fs-sm); }
.drawer__foot { padding: var(--gutter); border-top: 1px solid var(--color-line); display: flex; flex-direction: column; gap: 1rem; }
.drawer__subtotal { display: flex; justify-content: space-between; align-items: baseline; font-family: var(--font-body); font-weight: var(--fw-bold); font-size: var(--fs-sm); text-transform: uppercase; letter-spacing: 0.08em; }
.drawer__subtotal strong { font-family: var(--font-head); font-size: 1.5rem; letter-spacing: 0; }
.drawer__note { font-size: var(--fs-xs); color: var(--color-subdued); text-align: center; }
.cart-empty { color: var(--color-subdued); text-align: center; margin-top: 2rem; }

/* ---- Sticky ATC bar ---- */
.sticky-atc { position: fixed; left: 0; right: 0; bottom: 0; z-index: var(--z-atc); display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 0.7rem var(--gutter); background: rgba(255,255,255,0.95); backdrop-filter: blur(18px); border-top: 1px solid var(--color-line); box-shadow: 0 -10px 30px rgba(46,36,71,0.08); transform: translateY(115%); transition: transform var(--dur) var(--ease-out); }
.sticky-atc.is-show { transform: translateY(0); }
.sticky-atc__info { display: flex; flex-direction: column; line-height: 1.2; }
.sticky-atc__name { font-family: var(--font-head); font-size: 1.2rem; }
.sticky-atc__price { font-family: var(--font-body); font-size: var(--fs-sm); color: var(--color-subdued); }
.sticky-atc .btn { height: 46px; }

/* ---- Mobile nav (drill-down com Back, espelha mobile-menu-v2) ---- */
.mobile-nav { position: fixed; top: 0; left: 0; bottom: 0; width: min(420px, 88vw); background: var(--je-white); z-index: calc(var(--z-drawer) + 1); transform: translateX(-100%); transition: transform var(--dur) var(--ease-out); display: flex; flex-direction: column; }
.mobile-nav.is-open { transform: translateX(0); }
.mobile-nav__head { display: flex; align-items: center; justify-content: space-between; padding: 1rem var(--gutter); border-bottom: 1px solid var(--color-line); flex: none; }
.mobile-nav__head .brand { align-items: flex-start; }
.mobile-nav__stage { position: relative; flex: 1; overflow: hidden; }
.m-level { position: absolute; inset: 0; padding: 1.2rem var(--gutter) 2rem; display: flex; flex-direction: column; gap: 0.1rem; overflow-y: auto; background: var(--je-white); transform: translateX(100%); transition: transform var(--dur) var(--ease-out); visibility: hidden; }
.m-level--root { transform: translateX(-100%); }
.m-level.is-active { transform: translateX(0); visibility: visible; }
.m-row { display: flex; align-items: center; justify-content: space-between; font-family: var(--font-head); font-size: 1.7rem; padding: 0.7rem 0; border: 0; border-bottom: 1px solid var(--color-line); background: none; cursor: pointer; color: inherit; text-align: left; }
.m-row svg { width: 20px; height: 20px; color: var(--je-purple); }
.m-back { background: none; border: 0; cursor: pointer; color: var(--je-purple); font-family: var(--font-body); font-weight: var(--fw-bold); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; display: inline-flex; align-items: center; gap: 0.3rem; padding: 0.4rem 0; align-self: flex-start; }
.m-back svg { width: 16px; height: 16px; }
.m-level__title { font-family: var(--font-head); font-size: 1.9rem; color: var(--je-purple); margin: 0.5rem 0 0.7rem; }
.m-sub-item { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; padding: 0.75rem 0; border-bottom: 1px solid var(--color-line); font-family: var(--font-body); font-size: 1rem; }
.m-sub-price { color: var(--je-ash); font-size: var(--fs-sm); }
.m-level__all { margin-top: 1.3rem; }

/* ---- HUD scrim (fecha popovers do header ao clicar fora) ---- */
.hud-scrim { position: fixed; inset: 0; z-index: 150; background: rgba(20,16,31,0.12); opacity: 0; visibility: hidden; transition: opacity var(--dur) var(--ease), visibility var(--dur); }
.hud-scrim.is-open { opacity: 1; visibility: visible; }

/* ---- Busca: painel ancorado à direita (estilo Timex) ---- */
.search-panel { position: fixed; top: calc(var(--announce-h) + var(--header-h) + 8px); right: var(--gutter); width: min(620px, 95vw); max-height: calc(100vh - var(--announce-h) - var(--header-h) - 24px); overflow-y: auto; background: var(--je-white); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); z-index: 160; padding: 1.9rem 1.9rem 1.4rem; opacity: 0; visibility: hidden; transform: translateY(-8px); transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease), visibility var(--dur); }
.search-panel.is-open { opacity: 1; visibility: visible; transform: none; }
.search-panel__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.1rem; }
.search-panel__head h2 { font-size: var(--fs-2xl); }
.search-panel__field { display: flex; align-items: center; gap: 0.6rem; background: var(--je-grey-bg); border: 1px solid transparent; border-radius: var(--radius-pill); padding: 0.4rem 0.4rem 0.4rem 1.2rem; margin-bottom: 1.6rem; transition: border-color var(--dur-fast), background var(--dur-fast); }
.search-panel__field:focus-within { border-color: var(--je-purple); background: var(--je-white); }
.search-panel__field > svg { width: 20px; height: 20px; color: var(--je-ash); flex: none; }
.search-panel__input { font-size: var(--fs-lg) !important; }
.search-panel__go { height: 44px !important; }
.search-panel__all { display: flex; align-items: center; justify-content: center; gap: 0.4rem; margin-top: 0.6rem; padding: 1rem; border-top: 1px solid var(--color-line); font-family: var(--font-body); font-weight: var(--fw-bold); font-size: 0.74rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--je-purple); position: sticky; bottom: -1.4rem; background: var(--je-white); }
.search-panel__all svg { width: 15px; height: 15px; }
.search-panel__all:hover { color: var(--je-purple-deep); }
.search-panel__input { flex: 1; border: 0; background: none; font-family: var(--font-body); font-size: var(--fs-base); color: var(--je-ink); min-width: 0; }
.search-panel__input:focus { outline: none; }
.search-panel__go { border: 0; background: var(--je-purple); color: var(--je-white); border-radius: var(--radius-pill); height: 40px; padding-inline: 1.4rem; font-family: var(--font-head); font-size: 0.95rem; letter-spacing: 0.04em; cursor: pointer; flex: none; transition: background var(--dur-fast); }
.search-panel__go:hover { background: var(--je-purple-deep); }
.search-overlay__label { font-family: var(--font-body); font-weight: var(--fw-bold); font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--je-ash); margin-bottom: 1rem; }
.search-sugg { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.search-sugg__chip { font-family: var(--font-body); font-weight: var(--fw-bold); font-size: 0.8rem; padding: 0.6rem 1.1rem; border: 1px solid var(--color-line); border-radius: var(--radius-pill); background: none; cursor: pointer; transition: border-color var(--dur-fast), color var(--dur-fast); }
.search-sugg__chip:hover { border-color: var(--je-purple); color: var(--je-purple); }
.search-results { margin-top: 1.8rem; display: flex; flex-direction: column; padding-bottom: 3rem; }
.search-hit { display: flex; align-items: center; gap: 1rem; padding: 0.7rem 0; border-bottom: 1px solid var(--color-line); transition: padding-left var(--dur-fast) var(--ease); }
.search-hit:hover { padding-left: 8px; }
.search-hit__thumb { width: 54px; height: 66px; flex: none; border-radius: var(--radius-sm); overflow: hidden; }
.search-hit__thumb.pmedia img { width: 100%; }
.search-hit__txt { flex: 1; display: flex; flex-direction: column; gap: 0.1rem; }
.search-hit__name { font-family: var(--font-head); font-size: 1.35rem; line-height: 1; }
.search-hit__meta { font-family: var(--font-body); font-weight: var(--fw-bold); font-size: 0.62rem; color: var(--je-ash); white-space: nowrap; text-transform: uppercase; letter-spacing: 0.12em; }
.search-hit__price { font-family: var(--font-body); font-weight: var(--fw-bold); font-size: var(--fs-sm); color: var(--je-ink); white-space: nowrap; }
.search-results__empty { color: var(--je-ash); }

/* ---- Sino de notificações (badge) ---- */
.notif-btn { position: relative; }
.notif-dot { position: absolute; top: 7px; right: 7px; width: 7px; height: 7px; border-radius: 50%; background: var(--je-lime); border: 1.5px solid var(--je-white); }
.header.is-over-hero .notif-dot { border-color: transparent; }

/* ---- Dropdowns do header: conta + notificações (cards flutuantes) ---- */
.hdrop { position: fixed; top: calc(var(--announce-h) + var(--header-h) + 8px); right: var(--gutter); width: min(420px, 92vw); background: var(--je-white); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); z-index: 160; opacity: 0; visibility: hidden; transform: translateY(-8px); transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease), visibility var(--dur); }
.hdrop.is-open { opacity: 1; visibility: visible; transform: none; }
.hdrop__close { position: absolute; top: 0.7rem; right: 0.7rem; }
/* conta */
.hdrop--account { padding: 1.7rem; }
.hdrop--account h3 { font-size: var(--fs-xl); margin-bottom: 0.4rem; }
.hdrop--account p { color: var(--je-ash); font-size: var(--fs-sm); margin-bottom: 1.2rem; max-width: 34ch; }
.hdrop__btn { display: flex; align-items: center; justify-content: space-between; gap: 1rem; width: 100%; height: 56px; padding: 0 1.2rem; border: 1px solid var(--je-line); border-radius: var(--radius-md); font-family: var(--font-head); font-size: 1.25rem; letter-spacing: 0.02em; text-transform: uppercase; color: var(--je-ink); margin-top: 0.6rem; transition: border-color var(--dur-fast), background var(--dur-fast), color var(--dur-fast); }
.hdrop__btn svg { width: 20px; height: 20px; }
.hdrop__btn--solid { background: var(--je-purple); color: var(--je-white); border-color: var(--je-purple); }
.hdrop__btn--solid:hover { background: var(--je-purple-deep); border-color: var(--je-purple-deep); }
.hdrop__btn:not(.hdrop__btn--solid):hover { border-color: var(--je-purple); color: var(--je-purple); }
/* notificações */
.hdrop--notif { padding: 0.4rem 0; }
.hdrop__nrow { display: grid; grid-template-columns: 10px 1fr 16px; align-items: center; gap: 0.9rem; padding: 1.1rem 1.4rem; text-align: left; color: inherit; }
.hdrop__nrow + .hdrop__nrow { border-top: 1px solid var(--je-line); }
.hdrop__dot { width: 9px; height: 9px; border-radius: 50%; background: var(--je-lime); }
.hdrop__nbody h3 { font-size: 1.15rem; }
.hdrop__chev { color: var(--je-purple); font-size: 1.4rem; line-height: 1; }
.notif-thumbs { display: flex; gap: 0.5rem; margin-top: 0.6rem; }
.notif-thumb { width: 62px; height: 76px; border-radius: var(--radius-sm); overflow: hidden; flex: none; }
.notif-thumb.pmedia img { width: 100%; }
.hdrop__nbody--content { display: flex; align-items: center; gap: 0.9rem; }
.notif-circle { width: 52px; height: 52px; border-radius: 50%; overflow: hidden; flex: none; }

/* ---- Footer: redes sociais + voltar ao topo ---- */
.footer__social { display: flex; gap: 0.6rem; margin-top: 1.6rem; }
.footer__social a { width: 38px; height: 38px; border: 1px solid rgba(255,255,255,0.22); border-radius: var(--radius-pill); display: grid; place-items: center; color: rgba(255,255,255,0.82); transition: border-color var(--dur-fast), color var(--dur-fast); }
.footer__social a:hover { border-color: var(--je-yellow); color: var(--je-yellow); }
.footer__social svg { width: 18px; height: 18px; }
.footer__top { display: inline-flex; align-items: center; gap: 0.5rem; background: none; border: 1px solid rgba(255,255,255,0.22); border-radius: var(--radius-pill); color: rgba(255,255,255,0.82); font-family: var(--font-body); font-weight: var(--fw-bold); font-size: var(--fs-xs); letter-spacing: 0.1em; text-transform: uppercase; padding: 0.55rem 1rem; cursor: pointer; transition: border-color var(--dur-fast), color var(--dur-fast); }
.footer__top:hover { border-color: var(--je-yellow); color: var(--je-yellow); }
.footer__top svg { width: 15px; height: 15px; }

/* ---- Cart drawer: barra de frete grátis ---- */
.ship-bar { margin-bottom: 0.2rem; }
.ship-bar__msg { font-family: var(--font-body); font-size: var(--fs-xs); color: var(--je-ash); margin-bottom: 0.5rem; text-align: center; }
.ship-bar__msg b { color: var(--je-purple); }
.ship-bar__track { height: 6px; background: var(--je-purple-tint); border-radius: var(--radius-pill); overflow: hidden; }
.ship-bar__fill { display: block; height: 100%; width: 0; background: var(--je-lime); border-radius: var(--radius-pill); transition: width var(--dur) var(--ease); }

/* ---- Responsivo ---- */
@media (max-width: 920px) {
  .header__nav { display: none; }
  .menu-btn { display: grid; }
  .header__inner { grid-template-columns: auto 1fr auto; }
  .brand { align-items: flex-start; }
  .brand__name { font-size: 1.85rem; letter-spacing: 0.16em; }
  .mega { display: none; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 540px) {
  .footer__grid { grid-template-columns: 1fr; }
  .sticky-atc { padding-inline: 1rem; gap: 0.7rem; }
  .sticky-atc__info { min-width: 0; flex: 1; }
  .sticky-atc__name { font-size: 1rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .sticky-atc__price { font-size: 0.78rem; }
  .sticky-atc .btn { flex: none; padding-inline: 1.2rem; }
}
