:root {
  --cream: #f6f0e4;
  --paper: #ffffff;
  --ink: #201a12;
  --ink-soft: #6b6151;
  --navy: #161f38;
  --wax: #e8dfc9;
  --gold: #c99a3f;
  --gold-bright: #e0b354;
  --rule: #e4ddc9;
  --rule-on-dark: rgba(232, 223, 201, 0.22);

  /* Left padding is the normal edge gutter; right padding adds room
     so content never sits under the fixed dot scroll-nav. */
  --pad-x: 32px;
  --pad-x-right: 68px;
}

@media (max-width: 640px) {
  :root { --pad-x-right: 46px; }
}

@media (max-width: 480px) {
  :root { --pad-x: 20px; --pad-x-right: 20px; }
}

* { box-sizing: border-box; }
html {
  background: var(--paper);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: 'Newsreader', Georgia, 'Times New Roman', serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.nav-open { overflow: hidden; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; background: none; border: none; cursor: pointer; }

.label {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1, h2, h3 {
  font-family: 'Fraunces', Georgia, serif;
  text-wrap: balance;
  margin: 0;
  font-weight: 460;
}

/* ================= HEADER ================= */
/* Transparent + white text over the hero; solid white background and
   dark text slide in once the page has scrolled past the hero. The
   logo lockup collapses into the compact bar at the same moment. */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 80;
  --scroll-progress: 0;
  background: rgba(255, 255, 255, var(--scroll-progress));
  border-bottom: 1px solid rgba(228, 221, 201, var(--scroll-progress));
  color: color-mix(in srgb, var(--ink) calc(var(--scroll-progress) * 100%), var(--paper));
  transition: background-color 0.5s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.5s cubic-bezier(0.4, 0, 0.2, 1), color 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.site-header.scrolled {
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
  color: var(--ink);
}
.site-header.nav-open {
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
  color: var(--ink);
}

.header-row {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 var(--pad-x-right) 0 var(--pad-x);
  height: 64px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  transition: height 0.35s ease;
}

.header-icons {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header-icons.left { justify-self: start; }
.header-icons.right { justify-self: end; }
.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  color: currentColor;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}
.icon-btn:hover, .icon-btn:focus-visible { opacity: 1; }
.icon-btn svg { width: 100%; height: 100%; }

.header-center { display: flex; flex-direction: column; align-items: center; }

.brand-lockup {
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  max-height: 84px;
  transition: max-height 0.35s ease, opacity 0.35s ease, margin 0.35s ease;
  margin-top: 14px;
}
.site-header.scrolled .brand-lockup,
.site-header.nav-open .brand-lockup {
  max-height: 0;
  opacity: 0;
  margin-top: 0;
}
.brand-crest {
  width: 30px;
  height: 30px;
  margin-bottom: 6px;
  opacity: 0.95;
}
.brand-wordmark {
  font-family: 'Fraunces', serif;
  font-size: 13px;
  letter-spacing: 0.32em;
  font-weight: 480;
}
.brand-newsline {
  margin-top: 8px;
  font-size: 12px;
  opacity: 0.85;
}
.brand-newsline a {
  border-bottom: 1px solid var(--gold-bright);
  color: var(--gold-bright);
}

.main-nav {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
  white-space: nowrap;
}
.main-nav a {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: currentColor;
  padding: 4px 0;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.main-nav a:hover, .main-nav a:focus-visible { border-color: var(--gold); }

/* Hamburger toggle — hidden on desktop, shown once the inline nav collapses. */
.nav-toggle {
  display: none;
  width: 22px;
  height: 22px;
  color: currentColor;
  position: relative;
}
.nav-toggle span {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease, top 0.25s ease;
}
.nav-toggle span:nth-child(1) { top: 5px; }
.nav-toggle span:nth-child(2) { top: 11px; }
.nav-toggle span:nth-child(3) { top: 17px; }
.nav-toggle.is-open span:nth-child(1) { top: 11px; transform: rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { top: 11px; transform: rotate(-45deg); }

@media (max-width: 700px) {
  .header-icons.left { display: none; }
  .header-icons.right { gap: 14px; }
  .header-row { grid-template-columns: auto 1fr auto; padding-left: var(--pad-x); }
}

@media (max-width: 420px) {
  .header-icons.right a[aria-label="Wishlist"],
  .header-icons.right a[aria-label="Akun"] { display: none; }
}

@media (max-width: 980px) {
  .main-nav {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--paper);
    color: var(--ink);
    padding: 12px var(--pad-x) 32px;
    overflow-y: auto;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    white-space: normal;
    z-index: 79;
  }
  .main-nav.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    visibility: visible;
  }
  .main-nav li { border-bottom: 1px solid var(--rule); }
  .main-nav a {
    display: block;
    padding: 16px 2px;
    font-size: 13px;
  }
  .header-row { grid-template-columns: auto 1fr auto; }
  .nav-toggle { display: block; }
}

/* ================= HERO ================= */
/* Sits behind the fixed header, so it fills the full viewport rather
   than starting below a header-height offset. */
.hero {
  position: relative;
  height: 100vh;
  min-height: 560px;
  overflow: hidden;
  background: var(--navy);
  color: var(--wax);
  scroll-margin-top: 0;
}

.hero-media {
  position: absolute;
  inset: -12% 0;
  z-index: 0;
  overflow: hidden;
}
.hero-media video,
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: center center;
  will-change: transform;
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,13,24,0.72) 0%, rgba(16,20,36,0.28) 14%, rgba(16,20,36,0.1) 30%, rgba(16,20,36,0.15) 70%, rgba(16,20,36,0.6) 100%);
}

.hero-caption {
  position: absolute;
  left: 50%;
  top: 54%;
  transform: translate(-50%, -50%);
  z-index: 4;
  text-align: center;
  width: 90%;
  max-width: 640px;
  padding: 0 var(--pad-x-right) 0 var(--pad-x);
}
.hero-caption h1 {
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  color: var(--paper);
}
.hero-caption .sub {
  margin-top: 10px;
  font-size: 15px;
  letter-spacing: 0.02em;
  color: var(--wax);
  opacity: 0.9;
}
.hero-caption .cta-row {
  margin-top: 24px;
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-caption .cta-row a {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--paper);
  border-bottom: 1px solid var(--gold-bright);
  padding-bottom: 4px;
}
.hero-caption [data-hero-el] { opacity: 0; }

#koleksi-utama .editorial-card { opacity: 0; }

/* right-edge dot / section scroll nav — fixed to the viewport so it
   stays clickable no matter which section is in view */
.scroll-nav {
  position: fixed;
  right: 26px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
}
.scroll-nav button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(32, 26, 18, 0.28);
  padding: 0;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.5);
  transition: background 0.2s ease, transform 0.2s ease;
}
.scroll-nav button.active {
  background: var(--gold);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.7);
  transform: scale(1.3);
}
.scroll-nav button:hover { background: var(--gold-bright); }

/* while the hero (dark) is in view, switch the dots to a light-on-dark treatment */
.scroll-nav.on-dark button {
  background: rgba(246, 240, 228, 0.4);
  box-shadow: none;
}
.scroll-nav.on-dark button.active {
  background: var(--paper);
  box-shadow: none;
}

@media (max-width: 640px) {
  .hero { height: 80vh; }
  .scroll-nav { right: 14px; gap: 10px; }
}

@media (max-width: 480px) {
  .hero { height: 92vh; min-height: 460px; }
  .scroll-nav { display: none; }
}

/* ================= WHATSAPP FLOATING BUTTON ================= */
.wa-float {
  position: fixed;
  right: 26px;
  bottom: 26px;
  z-index: 95;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px -8px rgba(37, 211, 102, 0.6);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  animation: wa-pulse 2.4s ease-out infinite;
}
.wa-float svg { width: 28px; height: 28px; }
.wa-float:hover, .wa-float:focus-visible {
  transform: scale(1.08);
  box-shadow: 0 10px 28px -6px rgba(37, 211, 102, 0.75);
}
@keyframes wa-pulse {
  0% { box-shadow: 0 8px 24px -8px rgba(37, 211, 102, 0.6), 0 0 0 0 rgba(37, 211, 102, 0.45); }
  70% { box-shadow: 0 8px 24px -8px rgba(37, 211, 102, 0.6), 0 0 0 14px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 8px 24px -8px rgba(37, 211, 102, 0.6), 0 0 0 0 rgba(37, 211, 102, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .wa-float { animation: none; }
}
@media (max-width: 640px) {
  .wa-float { right: 16px; bottom: 16px; width: 50px; height: 50px; }
  .wa-float svg { width: 25px; height: 25px; }
}

/* ================= EDITORIAL GRID SECTIONS ================= */
/* Each screen the dot-nav jumps to fills at least one full viewport,
   with its content vertically centered inside that space. */
.editorial {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 96px 0;
  scroll-margin-top: 64px;
  box-sizing: border-box;
}
#newsletter { scroll-margin-top: 64px; }
.editorial-inner { max-width: 1600px; margin: 0 auto; padding: 0 var(--pad-x-right) 0 var(--pad-x); width: 100%; }
.editorial-kicker {
  text-align: center;
  color: var(--ink-soft);
  margin-bottom: 30px;
}
.editorial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.editorial-card { display: block; }
.editorial-art {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--wax);
  margin-bottom: 14px;
}
.editorial-art svg { width: 100%; height: 100%; }
.editorial-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: center center;
  will-change: transform;
}
.editorial-card h3 {
  font-size: 1rem;
  font-weight: 480;
  font-family: 'Newsreader', serif;
}

/* ================= PRODUCT CAROUSEL (Karya Musim Ini) ================= */
.carousel-wrap { position: relative; }
.carousel-kicker {
  text-align: center;
  color: var(--ink);
  margin-bottom: 30px;
  font-size: 1.15rem;
  font-weight: 600;
}
.carousel-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 4px;
  cursor: grab;
  -webkit-user-select: none;
  user-select: none;
}
.carousel-track::-webkit-scrollbar { display: none; }
.carousel-track.dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}
.carousel-card {
  display: block;
  flex: 0 0 auto;
  width: clamp(240px, 26vw, 340px);
  scroll-snap-align: start;
}
.carousel-card img,
.carousel-card a { -webkit-user-drag: none; }
.carousel-art {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--wax);
  margin-bottom: 12px;
}
.carousel-art svg, .carousel-art img { width: 100%; height: 100%; object-fit: cover; }
.carousel-brand {
  position: absolute;
  top: 10px;
  left: 10px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,0.92);
  padding: 4px 8px 4px 5px;
  border-radius: 999px;
}
.carousel-brand-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--navy);
  flex: 0 0 auto;
}
.carousel-brand span {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ink);
}
.carousel-wish {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
}
.carousel-wish svg { width: 14px; height: 14px; }
.carousel-category {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  display: block;
  margin-bottom: 5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.carousel-card h3 {
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.3;
  font-family: 'Newsreader', serif;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.carousel-price {
  margin-top: 6px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}

.carousel-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 24px;
}
.carousel-progress {
  position: relative;
  flex: 1 1 auto;
  height: 1px;
  background: var(--rule);
}
.carousel-progress-fill {
  position: absolute;
  top: -1px;
  left: 0;
  height: 2px;
  width: 0%;
  background: var(--ink);
}
.carousel-arrow {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--paper);
  border: 1px solid var(--rule);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  transition: background 0.2s ease;
}
.carousel-arrow:hover, .carousel-arrow:focus-visible { background: var(--wax); }
.carousel-arrow svg { width: 16px; height: 16px; }
.carousel-arrow:disabled {
  opacity: 0.35;
  cursor: default;
  pointer-events: none;
}

@media (max-width: 900px) {
  .editorial-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .editorial { padding: 64px 0; }
  .carousel-card { width: clamp(180px, 62vw, 260px); }
  .carousel-track { gap: 16px; }
  .carousel-nav { gap: 16px; margin-top: 18px; }
  .carousel-arrow { width: 36px; height: 36px; }
}

/* ================= NEWSLETTER ================= */
.newsletter {
  position: relative;
  min-height: 100vh;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-top: 1px solid var(--rule);
  background: var(--navy);
  color: var(--paper);
  overflow: hidden;
}
.newsletter-video {
  position: absolute;
  inset: -12% 0;
  width: 100%;
  height: 124%;
  object-fit: cover;
  z-index: 0;
  will-change: transform;
}
.newsletter::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(180deg, rgba(22,31,56,0.55) 0%, rgba(22,31,56,0.72) 100%);
}
.newsletter-inner {
  position: relative;
  z-index: 1;
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
  padding: 40px var(--pad-x-right) 40px var(--pad-x);
}
.newsletter h2 { font-size: 1.6rem; margin-bottom: 18px; color: var(--paper); }
.newsletter-form {
  display: flex;
  max-width: 420px;
  border: 1px solid var(--paper);
  background: rgba(22, 31, 56, 0.35);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.newsletter-form input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 13px 16px;
  font-family: 'Newsreader', serif;
  font-size: 14px;
  color: var(--paper);
  min-width: 0;
}
.newsletter-form input:focus { outline: none; }
.newsletter-form input::placeholder { color: var(--wax); opacity: 0.75; }
.newsletter-form button {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--navy);
  background: var(--gold-bright);
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

@media (max-width: 480px) {
  .newsletter-form { max-width: 100%; flex-wrap: wrap; }
  .newsletter-form input { width: 100%; flex-basis: 100%; }
  .newsletter-form button { width: 100%; justify-content: center; padding: 12px; }
}

/* ================= TRUST BADGES ================= */
.trust-badges {
  margin-top: clamp(56px, 8vw, 96px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.trust-badge { text-align: center; }
.trust-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-bright);
}
.trust-icon svg { width: 26px; height: 26px; }
.trust-badge h3 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--paper);
}
.trust-badge .trust-tagline {
  margin-top: 6px;
  font-size: 14px;
  color: var(--wax);
  opacity: 0.9;
}
.trust-badge .trust-detail {
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--wax);
  opacity: 0.65;
}
.trust-badge .trust-detail a {
  color: var(--gold-bright);
  opacity: 1;
  border-bottom: 1px solid currentColor;
}

@media (max-width: 760px) {
  .trust-badges { grid-template-columns: 1fr; gap: 40px; }
}

/* ================= FOOTER ================= */
.site-footer {
  max-width: 1600px;
  margin: 56px auto 0;
  padding: 0 var(--pad-x-right) 40px var(--pad-x);
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr)) auto;
  gap: 32px;
}
.footer-cols h3 {
  font-family: 'Newsreader', serif;
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 16px;
}
.footer-cols ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-cols a {
  font-size: 14px;
  color: var(--gold);
}
.footer-cols a:hover { color: var(--ink); }

.footer-socials {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-content: flex-start;
}
.footer-socials a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.footer-socials svg { width: 16px; height: 16px; }

@media (max-width: 900px) {
  .footer-cols { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .footer-cols { grid-template-columns: 1fr; }
}

.footer-bottom {
  max-width: 1600px;
  margin: 0 auto;
  padding: 20px var(--pad-x-right) 28px var(--pad-x);
  border-top: 1px solid var(--rule);
  font-size: 12.5px;
  color: var(--ink-soft);
}

/* ================= FOOTER VISUAL ================= */
.footer-visual {
  position: relative;
  height: clamp(240px, 34vw, 460px);
  overflow: hidden;
  background: var(--navy);
}
.footer-visual img {
  position: absolute;
  top: -15%;
  left: 0;
  width: 100%;
  height: 130%;
  object-fit: cover;
  opacity: 0.75;
  transform: scale(1.32);
  will-change: transform;
}
.footer-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(22,31,56,0.15) 0%, rgba(22,31,56,0.55) 100%);
}
.footer-wordmark {
  position: absolute;
  left: 50%;
  bottom: 0.8em;
  transform: translateX(-50%);
  z-index: 2;
  width: 100%;
  text-align: center;
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(3.2rem, 13vw, 11rem);
  line-height: 0.86;
  letter-spacing: -0.02em;
  color: var(--paper);
  white-space: nowrap;
  overflow: hidden;
}
.footer-wordmark .word {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
}
.footer-wordmark .char {
  display: inline-block;
  transform: translateY(100%);
  will-change: transform;
}

:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; }
}

/* ================= LOADING OVERLAY ================= */
.load-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.load-overlay img {
  width: 76px;
  height: 76px;
  animation: load-pulse 1.1s ease-in-out infinite;
}
.load-overlay.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
@keyframes load-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.7; }
}
@media (prefers-reduced-motion: reduce) {
  .load-overlay img { animation: none; }
}
