:root {
  --blue-50: #eefaff;
  --blue-100: #dff5ff;
  --blue-200: #bdeaff;
  --blue-400: #43a9d8;
  --blue-500: #168fca;
  --blue-600: #0877b2;
  --blue-700: #075b91;
  --blue-800: #06466f;
  --navy: #102c40;
  --navy-soft: #29485b;
  --yellow: #ffc94d;
  --orange: #ff7a3d;
  --cream: #fff9ee;
  --white: #ffffff;
  --gray-50: #f7fafc;
  --gray-100: #edf2f5;
  --gray-300: #c8d4dc;
  --gray-500: #6b7f8d;
  --gray-700: #3a4d59;
  --shadow-sm: 0 10px 25px rgba(16, 44, 64, .08);
  --shadow-md: 0 22px 55px rgba(16, 44, 64, .12);
  --shadow-lg: 0 35px 85px rgba(5, 91, 145, .22);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --radius-xl: 44px;
  --container: 1180px;
  --header-height: 78px;
}

/* Mobile app-style bottom navigation */
.mobile-app-nav {
  display: none;
}

@media (max-width: 700px) {
  body.has-mobile-app-nav {
    padding-bottom: calc(68px + env(safe-area-inset-bottom));
  }

  .mobile-app-nav {
    position: fixed;
    z-index: 42;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    min-height: 64px;
    padding: 4px max(3px, env(safe-area-inset-right))
      calc(4px + env(safe-area-inset-bottom))
      max(3px, env(safe-area-inset-left));
    border-top: 1px solid rgba(16, 44, 64, .1);
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 -10px 30px rgba(16, 44, 64, .12);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  }

  .mobile-app-nav__item {
    position: relative;
    min-width: 0;
    min-height: 55px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    border-radius: 14px;
    color: #6e8390;
    text-align: center;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
    transition: color .2s ease, transform .2s ease;
  }

  .mobile-app-nav__icon {
    width: 31px;
    height: 29px;
    display: grid;
    place-items: center;
    border-radius: 11px;
    transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
  }

  .mobile-app-nav__icon svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .mobile-app-nav__label {
    max-width: 100%;
    overflow: hidden;
    font-size: 9px;
    font-weight: 800;
    line-height: 1.1;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  .mobile-app-nav__item.is-active {
    color: var(--blue-600);
  }

  .mobile-app-nav__item.is-active .mobile-app-nav__icon {
    background: #e9f7fd;
    box-shadow: inset 0 0 0 1px rgba(20, 153, 207, .08);
    transform: translateY(-1px);
  }

  .mobile-app-nav__item:active {
    transform: scale(.94);
  }

  body.has-mobile-app-nav .back-to-top {
    bottom: calc(76px + env(safe-area-inset-bottom));
  }

  body.has-mobile-app-nav .floating-contact {
    bottom: calc(76px + env(safe-area-inset-bottom));
  }

  body.has-mobile-app-nav .floating-contact.has-back-to-top {
    bottom: calc(128px + env(safe-area-inset-bottom));
  }

  body.has-mobile-app-nav .toast {
    bottom: calc(80px + env(safe-area-inset-bottom));
  }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 110px; }
body {
  margin: 0;
  color: var(--navy);
  background: var(--white);
  font-family: "Be Vietnam Pro", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
svg { display: block; }
input, select, textarea { min-width: 0; max-width: 100%; }
p, h1, h2, h3, a { overflow-wrap: break-word; }
::selection { background: var(--yellow); color: var(--navy); }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { position: relative; padding: 112px 0; }
.section--tint { background: linear-gradient(180deg, #f7fcff 0%, #edf9ff 100%); }
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.svg-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.skip-link {
  position: fixed;
  z-index: 9999;
  left: 16px;
  top: 10px;
  padding: 10px 16px;
  border-radius: 10px;
  background: var(--navy);
  color: white;
  transform: translateY(-150%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.announcement {
  position: relative;
  z-index: 60;
  background: var(--blue-700);
  color: #dff6ff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .02em;
}
.announcement__inner {
  min-height: 34px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}
.announcement a { color: white; }
.announcement a:hover { text-decoration: underline; }
.announcement__dot { width: 4px; height: 4px; border-radius: 50%; background: var(--yellow); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(20, 153, 219, .97);
  border-bottom: 1px solid rgba(255, 255, 255, .2);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: box-shadow .25s ease, background .25s ease;
}
.site-header.is-scrolled { box-shadow: 0 8px 30px rgba(7, 91, 145, .22); background: rgba(12, 139, 203, .98); }
.header__inner { height: var(--header-height); display: flex; align-items: center; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 11px; min-width: max-content; }
.site-header .brand { padding: 0; border-radius: 0; background: transparent; box-shadow: none; }
.brand img { width: 235px; height: auto; object-fit: contain; border-radius: 0; box-shadow: none; }
.brand__copy { display: none; flex-direction: column; line-height: 1.2; }
.brand__copy strong { font-size: 15px; font-weight: 900; letter-spacing: .03em; }
.brand__copy small { margin-top: 4px; font-size: 11px; color: var(--gray-500); font-weight: 600; letter-spacing: .04em; }
.primary-nav { display: flex; align-items: center; justify-content: center; gap: 27px; margin-left: auto; }
.primary-nav a { position: relative; font-size: 14px; font-weight: 650; color: white; white-space: nowrap; }
.primary-nav a::after { content: ""; position: absolute; left: 0; bottom: -8px; width: 100%; height: 2px; background: var(--yellow); transform: scaleX(0); transform-origin: right; transition: transform .25s ease; }
.primary-nav a:hover { color: #fff5c8; }
.primary-nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex: 0 0 auto;
}
.header-actions::before {
  content: "|";
  margin: 0 8px 0 2px;
  color: rgba(255,255,255,.72);
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
}
.account-nav-link {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 44px;
  padding: 0;
  border-radius: 12px;
  transition: background .2s ease, transform .2s ease;
}
.account-nav-link::after { display: none; }
.account-nav-link img {
  display: block;
  width: 36px;
  height: 36px;
  object-fit: contain;
}
.account-nav-link:hover {
  background: rgba(255,255,255,.14);
  transform: translateY(-2px);
}
.header__cta { margin-left: 4px; }
.header__cta.button--primary { background: white; color: var(--blue-700); box-shadow: 0 10px 24px rgba(5,91,145,.22); }
.menu-toggle { display: none; width: 44px; height: 44px; margin-left: auto; padding: 10px; border: 1px solid rgba(255,255,255,.34); border-radius: 12px; background: rgba(255,255,255,.15); cursor: pointer; }
.menu-toggle span { display: block; width: 100%; height: 2px; margin: 5px 0; border-radius: 999px; background: white; transition: .25s ease; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 23px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 750;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease, border-color .22s ease;
}
.button:hover { transform: translateY(-2px); }
.button svg { width: 19px; height: 19px; transition: transform .2s ease; }
.button:hover svg { transform: translateX(3px); }
.button--primary { background: linear-gradient(135deg, var(--blue-500), var(--blue-700)); color: white; box-shadow: 0 13px 28px rgba(7, 91, 145, .22); }
.button--primary:hover { box-shadow: 0 17px 35px rgba(7, 91, 145, .3); }
.button--ghost { border-color: rgba(16, 44, 64, .18); background: rgba(255,255,255,.72); color: var(--navy); }
.button--ghost:hover { border-color: var(--blue-500); color: var(--blue-700); }
.button--white { background: white; color: var(--blue-700); box-shadow: 0 14px 30px rgba(0, 0, 0, .12); }
.button--small { min-height: 44px; padding: 10px 17px; font-size: 13px; }
.button--full { width: 100%; }
.button:disabled { opacity: .65; cursor: wait; transform: none; }

.eyebrow { display: inline-flex; align-items: center; gap: 10px; color: var(--blue-700); font-size: 12px; font-weight: 850; letter-spacing: .11em; text-transform: uppercase; }
.eyebrow > span { width: 27px; height: 3px; border-radius: 10px; background: var(--yellow); }
.eyebrow--light { color: #d9f5ff; }
.section-heading { max-width: 620px; }
.section-heading h2, .campaign__content h2, .contact__info h2 {
  margin: 18px 0 20px;
  font-size: clamp(36px, 4.5vw, 58px);
  line-height: 1.1;
  letter-spacing: -.045em;
  font-weight: 850;
}
.section-heading h2 em, .campaign__content h2 em, .contact__info h2 em { color: var(--blue-500); font-style: normal; }
.section-heading p { margin: 0; color: var(--gray-500); font-size: 17px; }
.section-heading--center { margin-inline: auto; text-align: center; }
.section-heading--center .eyebrow { justify-content: center; }

.hero {
  min-height: calc(100vh - 112px);
  padding: 76px 0 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 35%, rgba(67, 169, 216, .17), transparent 30%),
    radial-gradient(circle at 4% 18%, rgba(255, 201, 77, .20), transparent 23%),
    linear-gradient(180deg, #ffffff 0%, #f3fbff 100%);
}
.hero__grid { display: grid; grid-template-columns: .95fr .85fr; align-items: center; gap: 70px; min-height: 710px; padding-bottom: 70px; }
.hero__content { position: relative; z-index: 2; }
.hero h1 { max-width: 720px; margin: 22px 0 24px; font-size: clamp(48px, 6vw, 79px); line-height: .99; letter-spacing: -.055em; font-weight: 900; }
.hero h1 em { position: relative; color: var(--blue-500); font-style: normal; }
.hero h1 em::after { content: ""; position: absolute; z-index: -1; left: 1%; right: -2%; bottom: 3px; height: 16px; background: rgba(255, 201, 77, .45); border-radius: 50%; transform: rotate(-1.5deg); }
.hero__lead { max-width: 680px; margin: 0; color: var(--gray-500); font-size: 18px; line-height: 1.75; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 33px; }
.hero__trust { display: grid; grid-template-columns: repeat(3, 1fr); max-width: 650px; margin-top: 42px; padding-top: 27px; border-top: 1px solid rgba(16, 44, 64, .11); }
.hero__trust div { display: flex; flex-direction: column; padding-right: 18px; }
.hero__trust div + div { padding-left: 22px; border-left: 1px solid rgba(16, 44, 64, .11); }
.hero__trust strong { color: var(--blue-700); font-size: 17px; font-weight: 850; }
.hero__trust span { margin-top: 3px; color: var(--gray-500); font-size: 12px; }
.hero__visual { position: relative; justify-self: end; width: min(100%, 500px); }
.hero__image-wrap { position: relative; z-index: 2; padding: 11px; border-radius: 40px; background: rgba(255,255,255,.85); box-shadow: var(--shadow-lg); transform: rotate(1.2deg); }
.hero__image-wrap::before { content: ""; position: absolute; inset: 10px; z-index: 2; border: 1px solid rgba(255,255,255,.68); border-radius: 30px; pointer-events: none; }
.hero__image-wrap img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; border-radius: 30px; }
.hero__shape { position: absolute; z-index: 1; width: 105%; height: 94%; left: -10%; top: 5%; border-radius: 48% 52% 38% 62% / 44% 35% 65% 56%; background: linear-gradient(145deg, var(--yellow), #ffd978); transform: rotate(-7deg); opacity: .9; }
.hero__badge { position: absolute; z-index: 4; display: flex; align-items: center; gap: 9px; padding: 10px 15px; border: 1px solid rgba(255,255,255,.8); border-radius: 999px; background: rgba(255,255,255,.9); box-shadow: var(--shadow-sm); backdrop-filter: blur(10px); color: var(--navy); font-size: 12px; font-weight: 750; }
.hero__badge--top { top: 24px; right: -46px; }
.hero__badge--bottom { left: -44px; bottom: 44px; }
.hero__badge svg { width: 18px; height: 18px; color: var(--orange); }
.pulse { width: 8px; height: 8px; border-radius: 50%; background: #2bc56c; box-shadow: 0 0 0 6px rgba(43,197,108,.14); }
.hero__glow { position: absolute; border-radius: 50%; filter: blur(1px); pointer-events: none; }
.hero__glow--one { width: 430px; height: 430px; right: -190px; top: 20px; border: 1px solid rgba(67,169,216,.20); box-shadow: inset 0 0 0 75px rgba(67,169,216,.035), inset 0 0 0 150px rgba(67,169,216,.035); }
.hero__glow--two { width: 140px; height: 140px; left: -55px; bottom: 140px; background: rgba(255,201,77,.16); }
.hero__marquee { width: 100%; overflow: hidden; border-block: 1px solid rgba(16,44,64,.08); background: white; }
.hero__marquee-track { width: max-content; display: flex; align-items: center; gap: 24px; padding: 14px 0; animation: marquee 32s linear infinite; }
.hero__marquee span { color: var(--blue-700); font-size: 12px; font-weight: 850; letter-spacing: .13em; white-space: nowrap; }
.hero__marquee b { color: var(--yellow); font-size: 17px; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* LuLu character parade shown above the product-category marquee. */
.lulu-parade {
  width: 100%;
  height: 92px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(243,250,254,0), rgba(243,250,254,.92));
}
.lulu-parade__track {
  display: flex;
  width: max-content;
  height: 100%;
  animation: lulu-parade-scroll 38s linear infinite;
  will-change: transform;
}
.lulu-parade__group {
  display: grid;
  grid-template-columns: repeat(10, minmax(0, 1fr));
  flex: none;
  align-items: end;
  justify-items: center;
  width: 100vw;
  min-width: 1120px;
  padding-inline: 0;
}
.lulu-parade img {
  width: 72px;
  height: 72px;
  flex: none;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 4px 5px rgba(16,44,64,.10));
  transform: translateY(11px);
}
.lulu-parade img:nth-child(3n + 2) { width: 78px; height: 78px; }
.lulu-parade img:nth-child(4n) { width: 68px; height: 68px; }
.lulu-parade img:nth-child(1) { transform: translateY(12px); }
.lulu-parade img:nth-child(2) { transform: translateY(12px); }
.lulu-parade img:nth-child(3) { transform: translateY(10px); }
.lulu-parade img:nth-child(4) { transform: translateY(10px); }
.lulu-parade img:nth-child(5) { transform: translateY(12px); }
.lulu-parade img:nth-child(6) { transform: translateY(10px); }
.lulu-parade img:nth-child(7) { transform: translateY(10px); }
.lulu-parade img:nth-child(8) { transform: translateY(9px); }
.lulu-parade img:nth-child(9) { transform: translateY(12px); }
.lulu-parade img:nth-child(10) { transform: translateY(10px); }
@keyframes lulu-parade-scroll {
  to { transform: translateX(-50%); }
}

.about__grid { display: grid; grid-template-columns: 1fr 1fr; align-items: end; gap: 80px; }
.about__copy { padding-bottom: 4px; }
.about__copy p { margin: 0 0 18px; color: var(--gray-500); font-size: 17px; }
.about__copy p:last-child { margin-bottom: 0; }
.value-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 66px; }
.value-card { position: relative; min-height: 245px; padding: 27px; overflow: hidden; border: 1px solid rgba(16, 44, 64, .08); border-radius: var(--radius-md); background: white; box-shadow: var(--shadow-sm); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.value-card:hover { transform: translateY(-7px); border-color: rgba(22,143,202,.23); box-shadow: var(--shadow-md); }
.value-card__icon { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 16px; background: var(--blue-50); color: var(--blue-600); }
.value-card__icon svg { width: 26px; height: 26px; }
.value-card h3 { margin: 24px 0 10px; font-size: 18px; line-height: 1.3; }
.value-card p { margin: 0; color: var(--gray-500); font-size: 13px; line-height: 1.65; }
.value-card > span { position: absolute; right: 18px; bottom: -14px; color: rgba(22,143,202,.08); font-size: 70px; font-weight: 900; line-height: 1; }

.collection-grid { display: grid; grid-template-columns: 1.15fr .85fr; grid-template-rows: repeat(2, minmax(290px, auto)); gap: 22px; margin-top: 58px; }
.collection-card { position: relative; min-height: 290px; padding: 38px; overflow: hidden; border-radius: var(--radius-lg); isolation: isolate; box-shadow: var(--shadow-sm); }
.collection-card__content { position: relative; z-index: 3; max-width: 58%; }
.collection-card__label { display: inline-flex; margin-bottom: 15px; padding: 7px 11px; border-radius: 999px; background: rgba(255,255,255,.72); color: var(--navy); font-size: 10px; font-weight: 850; letter-spacing: .1em; }
.collection-card h3 { margin: 0 0 14px; font-size: clamp(25px, 3vw, 38px); line-height: 1.15; letter-spacing: -.03em; }
.collection-card p { margin: 0 0 22px; color: rgba(16,44,64,.72); font-size: 14px; }
.collection-card img { position: absolute; z-index: 2; right: -3%; bottom: -18%; width: 49%; border-radius: 50%; box-shadow: 0 18px 42px rgba(7,91,145,.22); transform: rotate(4deg); }
.collection-card__orb { position: absolute; z-index: 1; right: -90px; bottom: -120px; width: 330px; height: 330px; border-radius: 50%; background: rgba(255,255,255,.34); }
.collection-card--doraemon { grid-row: 1 / span 2; min-height: 602px; display: flex; align-items: center; background: linear-gradient(140deg, #c7efff 0%, #80d5f5 58%, #54bee9 100%); }
.collection-card--doraemon .collection-card__content { max-width: 54%; }
.collection-card--doraemon img { width: 54%; right: -3%; bottom: -1%; }
.collection-card--shinchan { background: linear-gradient(135deg, #ffe6a7, #ffc95b); }
.collection-card--lulu { background: linear-gradient(135deg, #f5dcff, #e6bdf7); }
.character-mark { position: absolute; z-index: 2; right: 26px; bottom: 15px; color: rgba(255,255,255,.78); font-size: 68px; line-height: .8; font-weight: 900; transform: rotate(-7deg); text-shadow: 0 7px 0 rgba(16,44,64,.08); }
.lulu-mark { position: absolute; z-index: 2; right: 22px; bottom: 23px; display: flex; transform: rotate(-5deg); }
.lulu-mark span { width: 78px; height: 78px; display: grid; place-items: center; margin-left: -13px; border: 8px solid rgba(255,255,255,.75); border-radius: 50%; color: #b868cd; background: rgba(255,255,255,.45); font-size: 28px; font-weight: 900; }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--blue-800); font-size: 13px; font-weight: 800; }
.text-link svg { width: 18px; height: 18px; transition: transform .2s ease; }
.text-link:hover svg { transform: translateX(4px); }

.products__header { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; }
.product-filters { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px; padding-bottom: 5px; }
.filter-button { padding: 10px 15px; border: 1px solid var(--gray-100); border-radius: 999px; background: white; color: var(--gray-500); font-size: 12px; font-weight: 750; cursor: pointer; transition: .2s ease; }
.filter-button:hover, .filter-button.is-active { border-color: var(--blue-600); background: var(--blue-600); color: white; box-shadow: 0 8px 20px rgba(7,91,145,.16); }
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 58px; }
.product-card { overflow: hidden; border: 1px solid rgba(16,44,64,.08); border-radius: var(--radius-md); background: white; box-shadow: var(--shadow-sm); transition: transform .25s ease, box-shadow .25s ease, opacity .25s ease; }
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.product-card.is-filtered-out { display: none; }
.product-card__image { position: relative; aspect-ratio: 1 / 1; overflow: hidden; background: var(--blue-50); }
.product-card__image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 65%, rgba(16,44,64,.12)); pointer-events: none; }
.product-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.product-card:hover .product-card__image img { transform: scale(1.045); }
.product-card__tag { position: absolute; z-index: 2; top: 16px; left: 16px; padding: 7px 10px; border-radius: 999px; background: rgba(255,255,255,.88); color: var(--blue-700); backdrop-filter: blur(8px); font-size: 9px; font-weight: 900; letter-spacing: .1em; }
.product-card__body { padding: 24px; }
.product-card__body > p { margin: 0 0 7px; color: var(--blue-600); font-size: 11px; font-weight: 750; text-transform: uppercase; letter-spacing: .07em; }
.product-card h3 { margin: 0; font-size: 20px; line-height: 1.35; letter-spacing: -.02em; }
.product-card__link { display: block; height: 100%; }
.product-card--store .product-card__body { display: flex; min-height: 210px; flex-direction: column; }
.product-card--store h3 { display: -webkit-box; overflow: hidden; -webkit-box-orient: vertical; -webkit-line-clamp: 2; font-size: 17px; }
.product-card__price { display: block; margin-top: auto; padding-top: 20px; color: #ee4d2d; font-size: 20px; line-height: 1.2; }
.product-card__price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  margin-top: auto;
  padding-top: 20px;
}
.product-card__price-row .product-card__price { margin: 0; padding: 0; }
.product-card__original-price { color: var(--gray-500); font-size: 12px; }
.product-card__discount {
  padding: 3px 6px;
  border-radius: 6px;
  background: #fff0ed;
  color: #ee4d2d;
  font-size: 10px;
  font-weight: 800;
}
.product-card__stock {
  padding: 3px 7px;
  border-radius: 6px;
  background: var(--gray-100);
  color: var(--gray-700);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}
.product-card__metrics { display: flex; justify-content: space-between; gap: 10px; margin-top: 12px; color: var(--gray-500); font-size: 11px; }
.product-card__metrics b { color: #ffc107; font-size: 14px; }
.product-card__tag--out { background: rgba(16,44,64,.88); color: white; }
.product-pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 44px;
}
.pagination-button {
  min-width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  padding: 0 12px;
  border: 1px solid var(--gray-100);
  border-radius: 12px;
  background: white;
  color: var(--gray-700);
  font-size: 13px;
  font-weight: 750;
  cursor: pointer;
  transition: .2s ease;
}
.pagination-button:hover:not(:disabled),
.pagination-button.is-active {
  border-color: var(--blue-600);
  background: var(--blue-600);
  color: white;
  box-shadow: 0 8px 20px rgba(7,91,145,.16);
}
.pagination-button:disabled { opacity: .38; cursor: not-allowed; }
.product-card__footer { display: flex; align-items: center; justify-content: space-between; gap: 15px; margin-top: 21px; padding-top: 18px; border-top: 1px solid var(--gray-100); }
.product-card__footer > span { color: var(--gray-500); font-size: 12px; }
.round-button { width: 42px; height: 42px; display: grid; place-items: center; flex: 0 0 auto; border: 0; border-radius: 50%; background: var(--blue-50); color: var(--blue-700); cursor: pointer; transition: .2s ease; }
.round-button svg { width: 18px; height: 18px; }
.round-button:hover { background: var(--blue-600); color: white; transform: rotate(-8deg); }

.campaign { padding: 0; background: var(--blue-700); overflow: hidden; }
.campaign::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 78% 20%, rgba(67,169,216,.35), transparent 32%), linear-gradient(120deg, transparent 55%, rgba(255,255,255,.04)); }
.campaign__grid { min-height: 720px; display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 70px; padding-block: 72px; }
.campaign__image {
  position: relative;
  width: fit-content;
  max-width: 100%;
  min-height: 0;
  justify-self: center;
  display: grid;
  place-items: center;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 36px;
  background: transparent;
  box-shadow: 0 28px 65px rgba(0,0,0,.2);
}
.campaign__image img {
  position: static;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 620px;
  object-fit: contain;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  transform: none;
}
.campaign__content { position: relative; z-index: 2; align-self: center; padding: 40px 0; color: white; }
.campaign__content h2 { max-width: 650px; color: white; }
.campaign__content h2 em { color: var(--yellow); }
.campaign__content > p { max-width: 660px; color: rgba(255,255,255,.74); font-size: 17px; }
.check-list { display: grid; gap: 13px; margin: 30px 0 34px; padding: 0; list-style: none; }
.check-list li { display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,.9); font-size: 14px; }
.check-list svg { width: 22px; height: 22px; padding: 4px; border-radius: 50%; background: rgba(255,201,77,.17); color: var(--yellow); }

.channel-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 55px; }
.channel-card { position: relative; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 20px; min-height: 155px; padding: 27px; overflow: hidden; border: 1px solid rgba(16,44,64,.07); border-radius: var(--radius-md); background: white; box-shadow: var(--shadow-sm); transition: transform .25s ease, box-shadow .25s ease; }
.channel-card::after { content: ""; position: absolute; right: -50px; bottom: -65px; width: 150px; height: 150px; border-radius: 50%; background: currentColor; opacity: .04; }
.channel-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.channel-card__icon { width: 62px; height: 62px; display: grid; place-items: center; border-radius: 19px; color: white; font-size: 29px; font-weight: 900; box-shadow: 0 10px 24px rgba(0,0,0,.13); }
.channel-card__icon img { width: 100%; height: 100%; object-fit: cover; border-radius: inherit; }
.channel-card small { color: var(--gray-500); font-size: 9px; font-weight: 850; letter-spacing: .13em; }
.channel-card h3 { margin: 3px 0 4px; font-size: 21px; }
.channel-card p { margin: 0; color: var(--gray-500); font-size: 12px; }
.channel-card > svg { width: 22px; height: 22px; color: var(--gray-300); transition: .2s ease; }
.channel-card:hover > svg { color: currentColor; transform: translateX(4px); }
.channel-card--shopee { color: #ee4d2d; }
.channel-card--shopee .channel-card__icon { background: #ee4d2d; }
.channel-card--tiktok { color: #111; }
.channel-card--tiktok .channel-card__icon { background: #111; text-shadow: -2px -1px #25f4ee, 2px 1px #fe2c55; }
.channel-card--facebook { color: #1877f2; }
.channel-card--facebook .channel-card__icon { background: #1877f2; }
.channel-card--zalo { color: #0068ff; }
.channel-card--zalo .channel-card__icon { background: #0068ff; }

.contact { overflow: hidden; background: white; }
.contact::before { content: ""; position: absolute; width: 430px; height: 430px; right: -190px; top: 50px; border-radius: 50%; background: rgba(255,201,77,.17); }
.contact__shell { position: relative; display: grid; grid-template-columns: .95fr 1.05fr; gap: 70px; padding: 70px; border-radius: var(--radius-xl); background: linear-gradient(135deg, var(--blue-700), #0b82bb); box-shadow: var(--shadow-lg); }
.contact__shell::after { content: ""; position: absolute; left: 40%; top: -80px; width: 240px; height: 240px; border: 1px solid rgba(255,255,255,.08); border-radius: 50%; box-shadow: inset 0 0 0 45px rgba(255,255,255,.025), inset 0 0 0 90px rgba(255,255,255,.025); }
.contact__info { position: relative; z-index: 2; color: white; align-self: center; }
.contact__info h2 { margin-top: 18px; color: white; font-size: clamp(36px, 4vw, 54px); }
.contact__info h2 em { color: var(--yellow); }
.contact__info > p { color: rgba(255,255,255,.73); }
.contact-list { display: grid; gap: 13px; margin-top: 30px; }
.contact-list a { display: flex; align-items: center; gap: 14px; padding: 12px; border-radius: 16px; transition: background .2s ease; }
.contact-list a:hover { background: rgba(255,255,255,.08); }
.contact-list a > span { width: 45px; height: 45px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 14px; background: rgba(255,255,255,.12); color: var(--yellow); }
.contact-list svg { width: 22px; height: 22px; }
.contact-list div { display: flex; flex-direction: column; }
.contact-list small { color: rgba(255,255,255,.55); font-size: 9px; font-weight: 800; letter-spacing: .12em; }
.contact-list strong { margin-top: 2px; font-size: 15px; }
.contact-form { position: relative; z-index: 2; padding: 36px; border-radius: 29px; background: white; box-shadow: 0 28px 55px rgba(0,0,0,.18); }
.form-heading span { color: var(--blue-600); font-size: 10px; font-weight: 850; letter-spacing: .13em; }
.form-heading h3 { margin: 5px 0 25px; font-size: 25px; letter-spacing: -.025em; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.contact-form label { display: block; margin-bottom: 14px; color: var(--gray-700); font-size: 12px; font-weight: 700; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; margin-top: 7px; padding: 13px 14px; border: 1px solid #dfe8ed; border-radius: 12px; outline: none; background: #fbfdfe; color: var(--navy); font-size: 13px; transition: border-color .2s ease, box-shadow .2s ease, background .2s ease; }
.contact-form input, .contact-form select { min-height: 48px; }
.contact-form textarea { min-height: 108px; resize: vertical; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--blue-500); background: white; box-shadow: 0 0 0 4px rgba(22,143,202,.11); }
.form-note { margin: 13px 0 0; color: var(--gray-500); font-size: 10px; line-height: 1.55; text-align: center; }
.form-status { min-height: 0; margin-top: 10px; font-size: 12px; font-weight: 700; text-align: center; }
.form-status.is-pending { color: var(--blue-600); }
.form-status.is-success { color: #16834b; }
.form-status.is-error { color: #c63b2c; }
.contact-form.is-submitting .button[type="submit"] { cursor: wait; opacity: .72; }
.form-status.is-success { color: #18854b; }
.form-status.is-error { color: #d13e3e; }

.site-footer { padding: 72px 0 0; background: #0c2536; color: white; }
.footer__top { display: grid; grid-template-columns: minmax(0, 1.6fr) minmax(0, .7fr) minmax(0, .8fr) minmax(0, .9fr); gap: 48px; padding-bottom: 50px; }
.footer__brand { min-width: 0; }
.brand--footer { width: 310px; max-width: 100%; min-width: 0; }
.brand--footer img { width: 100%; max-width: 310px; height: auto; }
.brand--footer .brand__copy strong { color: white; }
.brand--footer .brand__copy small { color: rgba(255,255,255,.55); }
.footer__brand > p { max-width: 390px; margin: 23px 0 0; color: rgba(255,255,255,.55); font-size: 13px; }
.footer__column { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.footer__column h3 { margin: 3px 0 11px; font-size: 13px; letter-spacing: .04em; }
.footer__column > a { color: rgba(255,255,255,.56); font-size: 12px; transition: color .2s ease; }
.footer__column > a:hover { color: white; }
.footer__social > div { display: flex; gap: 8px; }
.footer__social > div a { width: 36px; height: 36px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.12); border-radius: 11px; color: white; font-size: 14px; font-weight: 800; transition: .2s ease; }
.footer__social > div a { overflow: hidden; }
.footer__social > div a img { width: 100%; height: 100%; object-fit: cover; border-radius: inherit; }
.footer__social a[data-channel="shopee"] { background: #ee4d2d; }
.footer__social a[data-channel="tiktok"] { background: #111; }
.footer__social a[data-channel="facebook"] { background: #1877f2; }
.footer__social a[data-channel="zalo"] { background: #0068ff; }
.footer__social > div a:hover { border-color: var(--blue-400); background: var(--blue-500); transform: translateY(-2px); }
.footer__phone { margin-top: 12px; color: var(--yellow) !important; font-size: 18px !important; font-weight: 800; }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; gap: 25px; padding-block: 20px; border-top: 1px solid rgba(255,255,255,.08); }
.footer__bottom p { margin: 0; color: rgba(255,255,255,.42); font-size: 10px; }

.floating-contact { position: fixed; z-index: 45; right: 19px; bottom: 20px; display: flex; flex-direction: column; gap: 9px; }
.floating-contact a { width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; overflow: hidden; border-radius: 50%; background: white; color: var(--blue-700); box-shadow: 0 9px 25px rgba(16,44,64,.18); transition: width .25s ease, border-radius .25s ease, background .2s ease, color .2s ease; }
.floating-contact a:first-child { background: var(--blue-600); color: white; }
.floating-contact svg { width: 21px; height: 21px; flex: 0 0 auto; }
.floating-contact span { max-width: 0; margin-left: 0; overflow: hidden; opacity: 0; white-space: nowrap; font-size: 11px; font-weight: 750; transition: .25s ease; }
.floating-contact a:hover { width: 105px; border-radius: 999px; }
.floating-contact a:hover span { max-width: 60px; margin-left: 7px; opacity: 1; }
.back-to-top { position: fixed; z-index: 44; right: 24px; bottom: 190px; width: 40px; height: 40px; display: grid; place-items: center; border: 0; border-radius: 50%; background: var(--navy); color: white; box-shadow: var(--shadow-sm); opacity: 0; visibility: hidden; transform: translateY(10px); cursor: pointer; transition: .22s ease; }
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top svg { width: 18px; height: 18px; }
.toast { position: fixed; z-index: 100; left: 50%; bottom: 24px; max-width: min(90vw, 440px); padding: 12px 18px; border-radius: 999px; background: var(--navy); color: white; box-shadow: var(--shadow-md); font-size: 12px; font-weight: 650; opacity: 0; visibility: hidden; transform: translate(-50%, 20px); transition: .25s ease; }
.toast.is-visible { opacity: 1; visibility: visible; transform: translate(-50%, 0); }

.reveal { opacity: 1; transform: none; }
.reveal--delay, .reveal--delay-1, .reveal--delay-2, .reveal--delay-3 { transition-delay: 0s; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1100px) {
  .primary-nav { gap: 18px; }
  .primary-nav a { font-size: 13px; }
  .header__cta { display: none; }
  .hero__grid { gap: 45px; }
  .hero__badge--top { right: -15px; }
  .hero__badge--bottom { left: -22px; }
  .value-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .campaign__grid { gap: 42px; }
  .contact__shell { padding: 55px; gap: 45px; }
  .footer__top { grid-template-columns: minmax(0, 1.4fr) minmax(0, .7fr) minmax(0, .8fr); }
  .footer__social { grid-column: 2 / 4; }
}

/* Màn hình dọc (đặc biệt màn hình desktop xoay dọc) có chiều cao rất lớn.
   Để hero tự ôm nội dung, tránh khoảng trống do min-height: 100vh. */
@media (orientation: portrait) {
  .hero { min-height: auto; }
}

@media (max-width: 900px) {
  :root { --header-height: 70px; }
  .section { padding: 84px 0; }
  .header__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    gap: 8px;
  }
  .site-header .brand {
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
    margin: 0;
  }
  .menu-toggle { display: block; }
  .menu-toggle {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
    margin: 0;
  }
  .header-actions {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    margin: 0;
  }
  .header__inner > .header-cart {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    margin: 0;
  }
  .primary-nav { position: fixed; inset: calc(34px + var(--header-height)) 18px auto; max-height: calc(100dvh - 122px); overflow-y: auto; display: flex; flex-direction: column; align-items: stretch; gap: 0; padding: 14px; border: 1px solid rgba(16,44,64,.08); border-radius: 22px; background: rgba(255,255,255,.98); box-shadow: var(--shadow-md); opacity: 0; visibility: hidden; transform: translateY(-12px); transition: .22s ease; }
  .primary-nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
  .primary-nav a { padding: 13px 14px; border-radius: 12px; color: var(--gray-700); }
  .primary-nav a:hover { background: var(--blue-50); color: var(--blue-700); }
  .primary-nav a::after { display: none; }
  .header-actions { gap: 2px; }
  .header-actions::before { display: none; }
  .account-nav-link { width: 40px; height: 40px; flex-basis: 40px; }
  .account-nav-link img { width: 33px; height: 33px; }
  .hero { padding-top: 55px; }
  .hero__grid { grid-template-columns: 1fr; gap: 50px; min-height: auto; padding-bottom: 70px; text-align: center; }
  .hero__content .eyebrow { justify-content: center; }
  .hero h1 { margin-inline: auto; }
  .hero__lead { margin-inline: auto; }
  .hero__actions { justify-content: center; }
  .hero__trust { margin-inline: auto; text-align: left; }
  .hero__visual { justify-self: center; width: min(85vw, 500px); }
  .hero__image-wrap { transform: rotate(.8deg); }
  .about__grid { grid-template-columns: 1fr; gap: 26px; }
  .collection-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .collection-card--doraemon { grid-row: auto; min-height: 500px; }
  .collection-card--shinchan, .collection-card--lulu { min-height: 320px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .campaign__grid { grid-template-columns: 1fr; min-height: auto; gap: 18px; padding-block: 64px; }
  .campaign__image { width: min(100%, 560px); min-height: 0; margin-inline: auto; padding: 0; }
  .campaign__image img { width: 100%; max-height: none; transform: none; }
  .campaign__content { padding: 48px 0 20px; text-align: center; }
  .campaign__content > p { margin-inline: auto; }
  .campaign__content .eyebrow { justify-content: center; }
  .check-list { width: fit-content; margin-inline: auto; text-align: left; }
  .contact__shell { grid-template-columns: 1fr; padding: 48px; }
  .contact__info { text-align: center; }
  .contact__info .eyebrow { justify-content: center; }
  .contact-list { max-width: 440px; margin-inline: auto; text-align: left; }
}

@media (max-width: 700px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .announcement__inner { min-height: 32px; gap: 8px; font-size: 11px; }
  .brand img { width: 190px; height: auto; border-radius: 0; }
  .brand__copy strong { font-size: 13px; }
  .brand__copy small { font-size: 9px; }
  .primary-nav { top: calc(32px + var(--header-height)); }
  .hero h1 { font-size: clamp(44px, 13vw, 64px); }
  .hero__lead { font-size: 15px; }
  .hero__trust { grid-template-columns: 1fr; gap: 16px; text-align: center; }
  .hero__trust div, .hero__trust div + div { padding: 0; border: 0; }
  .hero__badge { font-size: 10px; }
  .hero__badge--top { top: 17px; right: -8px; }
  .hero__badge--bottom { left: -9px; bottom: 27px; }
  .section-heading h2, .campaign__content h2, .contact__info h2 { font-size: 38px; }
  .section-heading p { font-size: 15px; }
  .value-grid { grid-template-columns: 1fr; }
  .value-card { min-height: 210px; }
  .collection-card { padding: 29px; }
  .collection-card__content { max-width: 75%; }
  .collection-card--doraemon { min-height: 470px; align-items: flex-start; }
  .collection-card--doraemon .collection-card__content { max-width: 78%; }
  .collection-card--doraemon img { width: 65%; right: -5%; bottom: -2%; }
  .collection-card h3 { font-size: 28px; }
  .collection-card p { font-size: 13px; }
  .character-mark { font-size: 50px; }
  .lulu-mark span { width: 62px; height: 62px; font-size: 22px; }
  .products__header { align-items: flex-start; flex-direction: column; }
  .product-filters { justify-content: flex-start; }
  .product-grid { grid-template-columns: 1fr; gap: 18px; }
  .campaign__grid { padding-block: 42px 54px; }
  .campaign__image { min-height: 0; padding: 0; border-radius: 24px; }
  .campaign__image img { width: 100%; border-radius: 0; }
  .channel-grid { grid-template-columns: 1fr; }
  .channel-card { min-height: 132px; padding: 22px; gap: 15px; }
  .channel-card__icon { width: 52px; height: 52px; border-radius: 16px; }
  .contact { padding: 60px 0; }
  .contact__shell { width: calc(100% - 18px); padding: 38px 18px; gap: 35px; border-radius: 30px; }
  .contact-form { padding: 25px 18px; border-radius: 22px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 35px 25px; }
  .footer__brand { grid-column: 1 / -1; }
  .footer__social { grid-column: 1 / -1; }
  .footer__bottom { align-items: flex-start; flex-direction: column; gap: 8px; }
  .floating-contact { right: 10px; bottom: 10px; flex-direction: row; left: 10px; justify-content: center; padding: 7px; border-radius: 999px; background: rgba(255,255,255,.92); box-shadow: 0 10px 32px rgba(16,44,64,.18); backdrop-filter: blur(12px); }
  .floating-contact a, .floating-contact a:hover { width: auto; height: 42px; padding: 0 15px; border-radius: 999px; box-shadow: none; }
  .floating-contact a span, .floating-contact a:hover span { max-width: 70px; margin-left: 7px; opacity: 1; }
  .back-to-top { right: 14px; bottom: 76px; }
  .site-footer { padding-bottom: 80px; }
  .toast { bottom: 75px; }
}

@media (max-width: 430px) {
  .announcement__inner span:first-child, .announcement__dot { display: none; }
  .hero__actions .button { width: 100%; }
  .hero__visual { width: 91vw; }
  .hero__badge--top { right: 4px; }
  .hero__badge--bottom { left: 4px; }
  .collection-card__content { max-width: 88%; }
  .collection-card--doraemon .collection-card__content { max-width: 95%; }
  .collection-card--doraemon img { width: 75%; opacity: .92; }
  .footer__top { grid-template-columns: 1fr; }
  .footer__brand, .footer__social { grid-column: auto; }
  .floating-contact a { padding-inline: 11px; }
  .floating-contact span { font-size: 10px; }
}

@media (max-width: 350px) {
  .container { width: min(calc(100% - 20px), var(--container)); }
  .brand__copy small { display: none; }
  .hero h1 { font-size: 39px; }
  .section-heading h2, .campaign__content h2, .contact__info h2 { font-size: 32px; }
  .floating-contact a { padding-inline: 10px; }
  .floating-contact a span { margin-left: 5px; font-size: 9px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}


/* =========================================================
   IMAGE-RICH LANDING PAGE V2
   ========================================================= */

.hero__grid {
  grid-template-columns: .82fr 1.18fr;
  gap: 58px;
}
.hero__visual {
  width: min(100%, 680px);
}
.hero-slider {
  position: relative;
  z-index: 2;
  padding: 10px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.9);
  border-radius: 34px;
  background: rgba(255,255,255,.88);
  box-shadow: var(--shadow-lg);
  transform: rotate(.65deg);
}
.hero-slider__viewport {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 25px;
  background: var(--blue-100);
}
.hero-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.035);
  transition: opacity .65s ease, transform 1.1s ease, visibility .65s ease;
}
.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-slide:nth-child(3) img {
  object-position: center 54%;
}
.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 54%, rgba(4,43,72,.76));
  pointer-events: none;
}
.hero-slide figcaption {
  position: absolute;
  z-index: 2;
  left: 24px;
  right: 24px;
  bottom: 21px;
  display: flex;
  flex-direction: column;
  color: white;
  text-shadow: 0 2px 14px rgba(0,0,0,.28);
}
.hero-slide figcaption strong {
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .08em;
}
.hero-slide figcaption span {
  margin-top: 3px;
  font-size: 12px;
  opacity: .83;
}
.hero-slider__controls {
  position: absolute;
  z-index: 5;
  right: 21px;
  bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.slider-arrow {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  color: white;
  backdrop-filter: blur(8px);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  transition: .2s ease;
}
.slider-arrow:hover {
  background: white;
  color: var(--blue-700);
}
.slider-dots {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px;
  border-radius: 999px;
  background: rgba(3,44,72,.28);
  backdrop-filter: blur(8px);
}
.slider-dot {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.45);
  cursor: pointer;
  transition: width .2s ease, background .2s ease;
}
.slider-dot.is-active {
  width: 20px;
  border-radius: 999px;
  background: var(--yellow);
}
.hero__shape {
  width: 108%;
  height: 90%;
  left: -7%;
  top: 7%;
}
.hero__badge--top {
  top: -18px;
  right: -13px;
}
.hero__badge--bottom {
  left: -22px;
  bottom: 28px;
}

.brand-panorama {
  padding-top: 0;
  padding-bottom: 112px;
  background: linear-gradient(180deg, white 0%, #f6fcff 100%);
}
.brand-panorama__frame {
  position: relative;
  min-height: 405px;
  margin: 0;
  overflow: hidden;
  border-radius: 36px;
  background: var(--blue-400);
  box-shadow: var(--shadow-md);
}
.brand-panorama__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(4,55,90,.88) 0%, rgba(4,55,90,.55) 32%, rgba(4,55,90,.04) 61%);
  pointer-events: none;
}
.brand-panorama__frame > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.brand-panorama__copy {
  position: relative;
  z-index: 2;
  width: min(48%, 520px);
  padding: 58px;
  color: white;
}
.brand-panorama__copy h2 {
  margin: 18px 0 16px;
  color: white;
  font-size: clamp(35px, 4vw, 56px);
  line-height: 1.08;
  letter-spacing: -.045em;
}
.brand-panorama__copy h2 em {
  color: var(--yellow);
  font-style: normal;
}
.brand-panorama__copy p {
  margin: 0 0 26px;
  color: rgba(255,255,255,.78);
  font-size: 15px;
}

.collection-grid--visual {
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: none;
  gap: 22px;
}
.collection-card--photo {
  min-height: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.collection-card--photo .collection-card__photo {
  position: static;
  inset: auto;
  z-index: auto;
  width: 100%;
  height: auto;
  object-fit: contain;
  border: 0;
  border-radius: 32px;
  box-shadow: none;
  transform: none;
  transition: transform .7s ease;
}
.collection-card--photo:hover .collection-card__photo {
  transform: scale(1.035);
}
.collection-card--photo .collection-card__overlay {
  display: none;
}
.collection-card--photo .collection-card__content {
  max-width: none;
  width: 100%;
  padding: 24px 0 0;
  color: var(--navy);
}
.collection-card--photo .collection-card__label {
  background: var(--blue-50);
  color: var(--blue-700);
}
.collection-card--photo h3 {
  margin-top: 18px;
  color: var(--navy);
  font-size: clamp(27px, 2.25vw, 36px);
  text-shadow: none;
}
.collection-card--photo p {
  max-width: 360px;
  color: var(--gray-500);
}
.collection-card--photo .text-link {
  color: var(--blue-700);
}
.collection-card--photo .text-link svg {
  color: var(--yellow);
}

.visual-stories {
  overflow: hidden;
}
.visual-stories__header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 40px;
}
.visual-stories__note {
  max-width: 260px;
  margin: 0 0 9px;
  color: var(--gray-500);
  font-size: 13px;
  text-align: right;
}
.story-slider {
  width: 100%;
  margin-top: 58px;
  overflow: hidden;
}
.story-grid {
  display: flex;
  gap: 22px;
  margin-top: 0;
  transition: transform .65s cubic-bezier(.22,.61,.36,1);
  will-change: transform;
}
.story-card {
  position: relative;
  flex: 0 0 calc((100% - 44px) / 3);
  min-height: 650px;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 28px;
  background: #dfeef5;
  box-shadow: var(--shadow-sm);
  cursor: zoom-in;
  text-align: left;
  transition: transform .28s ease, box-shadow .28s ease;
}
.story-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}
.story-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .75s ease;
}
.story-card:hover img {
  transform: scale(1.035);
}
.story-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 57%, rgba(5,35,55,.82));
}
.story-card__label {
  position: absolute;
  z-index: 2;
  left: 26px;
  right: 26px;
  bottom: 25px;
  display: flex;
  flex-direction: column;
  color: white;
}
.story-card__label small {
  margin-bottom: 5px;
  color: var(--yellow);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .11em;
}
.story-card__label strong {
  font-size: 19px;
  line-height: 1.35;
}
.image-lightbox {
  position: fixed;
  z-index: 9998;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 38px;
  background: rgba(4,20,31,.88);
  opacity: 0;
  visibility: hidden;
  transition: opacity .22s ease, visibility .22s ease;
  backdrop-filter: blur(12px);
}
.image-lightbox.is-open {
  opacity: 1;
  visibility: visible;
}
.image-lightbox img {
  max-width: min(92vw, 1050px);
  max-height: 84vh;
  border-radius: 22px;
  box-shadow: 0 35px 90px rgba(0,0,0,.44);
}
.image-lightbox__close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 47px;
  height: 47px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  color: white;
  font-size: 31px;
  cursor: pointer;
}
.image-lightbox__caption {
  position: absolute;
  left: 24px;
  right: 80px;
  bottom: 15px;
  margin: 0;
  color: rgba(255,255,255,.8);
  font-size: 13px;
  text-align: center;
}
body.lightbox-open {
  overflow: hidden;
}

@media (max-width: 1100px) {
  .hero__grid {
    grid-template-columns: .9fr 1.1fr;
    gap: 38px;
  }
  .story-card { min-height: 570px; }
  .brand-panorama__copy {
    width: 53%;
  }
}

@media (max-width: 900px) {
  .hero__grid {
    grid-template-columns: 1fr;
  }
  .hero__visual {
    width: min(92vw, 720px);
  }
  .brand-panorama {
    padding-bottom: 84px;
  }
  .brand-panorama__frame {
    min-height: 640px;
  }
  .brand-panorama__frame::after {
    background: linear-gradient(180deg, rgba(4,55,90,.05) 30%, rgba(4,55,90,.92) 78%);
  }
  .brand-panorama__frame > img {
    object-position: 66% center;
  }
  .brand-panorama__copy {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: auto;
    padding: 40px;
  }
  .collection-grid--visual {
    grid-template-columns: repeat(2, 1fr);
  }
  .collection-card--photo:first-child {
    grid-column: 1 / -1;
  }
  .story-card { flex-basis: calc((100% - 22px) / 2); }
}

@media (max-width: 700px) {
  .hero-slider {
    border-radius: 25px;
  }
  .hero-slider__viewport {
    aspect-ratio: 4 / 3;
    border-radius: 18px;
  }
  .hero-slide figcaption {
    left: 17px;
    right: 105px;
    bottom: 16px;
  }
  .hero-slide figcaption strong {
    font-size: 11px;
  }
  .hero-slide figcaption span {
    display: none;
  }
  .hero-slider__controls {
    right: 14px;
    bottom: 13px;
  }
  .slider-arrow {
    width: 30px;
    height: 30px;
  }
  .hero__badge--top {
    top: -13px;
    right: 2px;
  }
  .hero__badge--bottom {
    left: -3px;
    bottom: 15px;
  }
  .brand-panorama__frame {
    min-height: 610px;
    border-radius: 26px;
  }
  .brand-panorama__copy {
    padding: 28px;
  }
  .brand-panorama__copy h2 {
    font-size: 37px;
  }
  .brand-panorama__copy p {
    font-size: 13px;
  }
  .collection-grid--visual {
    grid-template-columns: 1fr;
  }
  .collection-card--photo,
  .collection-card--photo:first-child {
    grid-column: auto;
    min-height: 0 !important;
  }
  .collection-card--photo .collection-card__content {
    max-width: none;
    padding: 20px 0 0;
  }
  .visual-stories__header {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }
  .visual-stories__note {
    text-align: left;
  }
  .story-grid {
    gap: 18px;
  }
  .story-card,
  .story-card--rock {
    flex-basis: 100%;
    min-height: 620px;
  }
  .image-lightbox {
    padding: 18px;
  }
  .image-lightbox img {
    max-width: 96vw;
    max-height: 80vh;
    border-radius: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide,
  .story-card img,
  .collection-card--photo .collection-card__photo {
    transition: none;
  }
}

/* =========================================================
   RESPONSIVE REFINEMENT — TABLET & MOBILE ONLY
   Desktop styles above remain unchanged.
   ========================================================= */

@media (max-width: 900px) {
  :root { --radius-lg: 28px; --radius-xl: 34px; }
  html { scroll-padding-top: 108px; }
  .container { width: min(calc(100% - 40px), var(--container)); }
  .section { padding-block: 72px; }

  .header__inner { gap: 8px; }
  .site-header .brand img { width: 205px; }
  .primary-nav {
    left: 20px;
    right: 20px;
    padding: 10px;
    border-radius: 18px;
    box-shadow: 0 20px 50px rgba(4, 48, 76, .22);
  }
  .primary-nav a { padding: 14px 16px; font-size: 14px; }

  .hero { padding-top: 46px; }
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 42px;
    padding-bottom: 58px;
    text-align: left;
  }
  .hero__content { max-width: 680px; }
  .hero__content .eyebrow { justify-content: flex-start; }
  .hero h1 { margin-inline: 0; font-size: clamp(48px, 8.3vw, 68px); }
  .hero__lead { margin-inline: 0; max-width: 620px; }
  .hero__actions { justify-content: flex-start; }
  .hero__trust { margin-inline: 0; max-width: 620px; }
  .hero__visual { width: min(100%, 680px); justify-self: start; }
  .hero-slider { transform: none; border-radius: 28px; }

  .about__grid { gap: 22px; }
  .value-grid { gap: 16px; margin-top: 44px; }
  .value-card { min-height: 220px; }

  .brand-panorama { padding-bottom: 72px; }
  .brand-panorama__frame { min-height: 580px; }
  .brand-panorama__copy { padding: 36px; }

  .collection-grid--visual { gap: 26px 18px; }
  .collection-card--photo .collection-card__content { padding-top: 20px; }

  .products__header { align-items: flex-start; flex-direction: column; gap: 26px; }
  .product-filters {
    width: calc(100vw - 20px);
    margin-right: calc((100vw - 100%) / -2);
    padding: 0 20px 10px 0;
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }
  .product-filters::-webkit-scrollbar { display: none; }
  .filter-button { flex: 0 0 auto; scroll-snap-align: start; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; margin-top: 40px; }
  .product-card--store .product-card__body { min-height: 190px; padding: 20px; }

  .visual-stories__header { align-items: flex-start; }
  .story-slider { margin-top: 42px; }
  .story-card { min-height: 540px; border-radius: 24px; }

  .campaign__grid { gap: 8px; padding-block: 56px; }
  .campaign__content { padding-top: 38px; }

  .channel-grid { gap: 14px; margin-top: 40px; }
  .channel-card { min-height: 140px; padding: 22px; }

  .contact__shell { padding: 40px; border-radius: 32px; }
  .contact-form { padding: 30px; }

  .footer__top { grid-template-columns: 1.2fr 1fr 1fr; gap: 34px 24px; }
  .footer__social { grid-column: 2 / 4; }
}

@media (max-width: 700px) {
  :root { --header-height: 64px; --radius-md: 18px; --radius-lg: 24px; }
  html { scroll-padding-top: 96px; }
  body { font-size: 15px; }
  .container { width: min(calc(100% - 32px), var(--container)); }
  .section { padding-block: 58px; }

  .announcement__inner { min-height: 30px; }
  .header__inner { gap: 6px; }
  .site-header .brand img { width: 166px; }
  .menu-toggle { width: 42px; height: 42px; border-radius: 11px; }
  .header-actions { gap: 0; }
  .account-nav-link,
  .header-actions .header-cart {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
    align-self: center;
  }
  .account-nav-link img,
  .header-actions .header-cart__icon {
    width: 29px;
    height: 29px;
  }
  .account-nav-link:hover,
  .account-nav-link:focus,
  .account-nav-link:active {
    transform: none;
  }
  .primary-nav {
    top: 94px;
    left: 12px;
    right: 12px;
    max-height: calc(100dvh - 106px);
    border-radius: 16px;
  }

  .eyebrow { font-size: 10px; letter-spacing: .09em; }
  .section-heading h2,
  .campaign__content h2,
  .contact__info h2 { margin-block: 14px 16px; font-size: clamp(32px, 9vw, 42px); }

  .hero { padding-top: 34px; }
  .hero__grid { gap: 32px; padding-bottom: 46px; }
  .hero h1 { margin-block: 16px 18px; font-size: clamp(39px, 11.5vw, 52px); line-height: 1.02; }
  .hero__lead { font-size: 14px; line-height: 1.65; }
  .hero__actions { display: grid; grid-template-columns: 1fr; gap: 10px; margin-top: 26px; }
  .hero__actions .button { width: 100%; min-height: 50px; }
  .hero__trust {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    margin-top: 30px;
    padding-top: 20px;
    text-align: left;
  }
  .hero__trust div,
  .hero__trust div + div { padding: 0 10px; border-left: 1px solid rgba(16,44,64,.1); }
  .hero__trust div:first-child { padding-left: 0; border-left: 0; }
  .hero__trust strong { font-size: 13px; }
  .hero__trust span { font-size: 9px; line-height: 1.45; }
  .hero__visual { width: 100%; }
  .hero-slider { padding: 6px; border-radius: 22px; }
  .hero-slider__viewport { aspect-ratio: 4 / 3; border-radius: 17px; }
  .hero__badge { display: none; }

  .about__copy p { font-size: 15px; }
  .value-grid { gap: 12px; margin-top: 34px; }
  .value-card { min-height: 0; padding: 22px; border-radius: 18px; }

  .brand-panorama { padding-bottom: 58px; }
  .brand-panorama__frame { min-height: 520px; border-radius: 22px; }
  .brand-panorama__copy { padding: 24px; }
  .brand-panorama__copy h2 { font-size: 34px; }

  .collection-grid--visual {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 32px;
  }
  .collection-card--photo .collection-card__photo {
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 14px;
  }
  .collection-card--photo .collection-card__content { padding-top: 9px; }
  .collection-card--photo .collection-card__label {
    display: block;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background: transparent;
    font-size: 8px;
    line-height: 1.35;
    letter-spacing: .04em;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .collection-card--photo h3,
  .collection-card--photo p,
  .collection-card--photo .text-link { display: none; }

  .products__header { gap: 20px; }
  .product-filters {
    width: calc(100vw - 16px);
    gap: 7px;
    padding: 2px 16px 12px 0;
    scroll-behavior: smooth;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    mask-image: linear-gradient(90deg, #000 0, #000 calc(100% - 32px), transparent 100%);
  }
  .filter-button { padding: 9px 13px; white-space: nowrap; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin-top: 28px; }
  .product-card { display: block; min-width: 0; border-radius: 14px; }
  .product-card__link { display: block; height: 100%; }
  .product-card__image { aspect-ratio: 1 / 1; min-height: 0; }
  .product-card--store .product-card__body {
    min-height: 0;
    padding: 13px 11px 11px;
  }
  .product-card__body > p { margin-bottom: 5px; font-size: 8px; line-height: 1.4; }
  .product-card--store h3 { font-size: 13px; line-height: 1.35; -webkit-line-clamp: 2; }
  .product-card__price-row {
    align-items: baseline;
    margin-top: 12px;
    padding-top: 0;
    gap: 4px;
  }
  .product-card__price { font-size: 15px; }
  .product-card__original-price { font-size: 9px; }
  .product-card__discount,
  .product-card__stock { padding: 2px 4px; font-size: 8px; }
  .product-card__metrics { gap: 4px; margin-top: 8px; font-size: 8px; }
  .product-card__metrics b { font-size: 10px; }
  .product-pagination { gap: 6px; margin-top: 30px; }
  .pagination-button { min-width: 36px; height: 36px; padding-inline: 9px; border-radius: 10px; }

  .visual-stories__header { gap: 12px; }
  .visual-stories__note { font-size: 11px; }
  .story-slider { margin-top: 30px; }
  .story-grid { gap: 8px; }
  .story-card,
  .story-card--rock {
    flex-basis: calc((100% - 16px) / 3);
    min-height: 0;
    aspect-ratio: 3 / 5;
    border-radius: 12px;
  }
  .story-card__label {
    left: 8px;
    right: 8px;
    bottom: 9px;
  }
  .story-card__label small {
    margin-bottom: 2px;
    overflow: hidden;
    font-size: 6px;
    letter-spacing: .04em;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .story-card__label strong {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    font-size: 9px;
    line-height: 1.25;
  }

  .campaign__grid {
    grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
    align-items: center;
    gap: 14px;
    min-height: 0;
    height: auto;
    padding-block: 20px;
  }
  .campaign__image {
    width: 100%;
    margin: 0;
    border-radius: 16px;
  }
  .campaign__content {
    min-width: 0;
    padding: 0;
    text-align: left;
  }
  .campaign__content .eyebrow { justify-content: flex-start; }
  .campaign__content h2 {
    margin-block: 10px 12px;
    font-size: clamp(20px, 5.8vw, 28px);
    line-height: 1.06;
  }
  .campaign__content > p {
    display: -webkit-box;
    overflow: hidden;
    margin: 0;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    font-size: 9px;
    line-height: 1.5;
  }
  .check-list { width: 100%; gap: 6px; margin-block: 13px 15px; }
  .check-list li { align-items: flex-start; gap: 6px; font-size: 8px; line-height: 1.4; }
  .check-list svg { flex: 0 0 16px; width: 16px; height: 16px; padding: 3px; }
  .campaign__content .button { min-height: 38px; padding-inline: 13px; font-size: 9px; }

  .channel-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 30px;
  }
  .channel-card {
    grid-template-columns: 40px minmax(0, 1fr);
    min-height: 92px;
    padding: 13px 10px;
    gap: 9px;
    border-radius: 15px;
  }
  .channel-card__icon { width: 40px; height: 40px; border-radius: 12px; }
  .channel-card small { font-size: 6px; letter-spacing: .06em; }
  .channel-card h3 {
    margin-block: 2px 0;
    overflow: hidden;
    font-size: 13px;
    line-height: 1.2;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .channel-card p { display: none; }
  .channel-card > svg { display: none; }

  .contact { padding-block: 48px; }
  .contact__shell { width: calc(100% - 16px); padding: 30px 16px; gap: 28px; border-radius: 24px; }
  .contact-list a { padding: 10px; }
  .contact-form { padding: 22px 16px; border-radius: 18px; }

  .site-footer { padding-top: 52px; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 30px 22px; }
  .footer__brand { grid-column: 1 / -1; }
  .brand--footer { width: 250px; }
  .footer__social { grid-column: 1 / -1; }
  .footer__bottom { padding-block: 18px; }

  .floating-contact { padding: 6px; }
  .floating-contact a,
  .floating-contact a:hover { height: 40px; padding-inline: 12px; }
}

@media (max-width: 430px) {
  .site-header .brand img { width: 152px; }
  .hero__trust strong { font-size: 12px; }
  .hero__trust span { display: none; }
  .product-card--store .product-card__body { min-height: 0; }
  .footer__top { grid-template-columns: 1fr; }
  .footer__brand,
  .footer__social { grid-column: auto; }
  .campaign__grid { padding-block: 16px; }
}

/* Keep each half of the hero slogan on one line on desktop. */
@media (min-width: 901px) {
  .hero__grid {
    grid-template-columns: .95fr 1.05fr;
    gap: 48px;
  }
  .hero h1 {
    max-width: none;
    font-size: clamp(41px, 4.3vw, 62px);
    white-space: nowrap;
  }
}

/* Give the main slogan more breathing room at every viewport size. */
.hero h1 {
  line-height: 1.1;
  letter-spacing: -.03em;
  word-spacing: .025em;
}

/* Doraemon-inspired ambient motion. */
.hero { position: relative; }
.doraemon-flight {
  position: absolute;
  z-index: 1;
  top: 14%;
  right: -190px;
  left: auto;
  width: 138px;
  pointer-events: none;
  filter: drop-shadow(0 14px 18px rgba(8, 93, 145, .2));
  animation: doraemon-fly-across 20s linear infinite;
}
.doraemon-flight img {
  width: 100%;
  height: auto;
  animation: doraemon-bob 2.2s ease-in-out infinite;
}
.doraemon-flight__bubble {
  position: absolute;
  z-index: -1;
  display: block;
  border: 2px solid rgba(22, 143, 202, .22);
  border-radius: 50%;
  background: rgba(255,255,255,.42);
  box-shadow: inset 0 0 10px rgba(255,255,255,.9);
  animation: doraemon-bubble 2.8s ease-in-out infinite;
}
.doraemon-flight__bubble--one { right: -28px; bottom: 20px; width: 20px; height: 20px; }
.doraemon-flight__bubble--two { right: -55px; bottom: 47px; width: 12px; height: 12px; animation-delay: -.8s; }
.doraemon-flight__bubble--three { right: -78px; bottom: 12px; width: 8px; height: 8px; animation-delay: -1.5s; }
.hero-slider {
  animation: doraemon-card-float 5.5s ease-in-out infinite;
}
.hero__actions .button--primary {
  animation: doraemon-cta-glow 3.2s ease-in-out infinite;
}

@keyframes doraemon-fly-across {
  0% { transform: translate3d(0, 35px, 0) rotate(-4deg); }
  42% { transform: translate3d(calc(-48vw - 90px), -12px, 0) rotate(2deg); }
  100% { transform: translate3d(calc(-100vw - 360px), 48px, 0) rotate(-2deg); }
}
@keyframes doraemon-bob {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-10px) rotate(2deg); }
}
@keyframes doraemon-bubble {
  0%, 100% { opacity: .25; transform: translate(0, 5px) scale(.75); }
  50% { opacity: .85; transform: translate(6px, -8px) scale(1.08); }
}
@keyframes doraemon-card-float {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -7px; }
}
@keyframes doraemon-cta-glow {
  0%, 100% { box-shadow: 0 10px 24px rgba(7, 122, 180, .16); }
  50% { box-shadow: 0 14px 32px rgba(7, 122, 180, .32), 0 0 0 5px rgba(22, 143, 202, .08); }
}

@media (max-width: 700px) {
  .lulu-parade { height: 58px; }
  .lulu-parade__group {
    width: 760px;
    min-width: 760px;
    padding-inline: 0;
  }
  .lulu-parade img { width: 44px; height: 44px; transform: translateY(7px); }
  .lulu-parade img:nth-child(3n + 2) { width: 49px; height: 49px; }
  .lulu-parade img:nth-child(4n) { width: 41px; height: 41px; }
  .lulu-parade img:nth-child(1),
  .lulu-parade img:nth-child(2),
  .lulu-parade img:nth-child(5),
  .lulu-parade img:nth-child(9) { transform: translateY(8px); }
  .lulu-parade img:nth-child(3),
  .lulu-parade img:nth-child(4),
  .lulu-parade img:nth-child(8) { transform: translateY(6px); }
  .lulu-parade img:nth-child(6),
  .lulu-parade img:nth-child(7),
  .lulu-parade img:nth-child(10) { transform: translateY(7px); }
  .doraemon-flight { top: 10%; width: 84px; opacity: .78; animation-duration: 16s; }
  .hero-slider { animation-duration: 6.5s; }
}

@media (prefers-reduced-motion: reduce) {
  .lulu-parade__track { animation: none; }
  .doraemon-flight { display: none; }
  .hero-slider,
  .hero__actions .button--primary { animation: none; }
}

/* Flying Doraemon inside the real-space gallery. */
.visual-stories { position: relative; }
.gallery-doraemon-flight {
  position: absolute;
  z-index: 5;
  top: 14%;
  right: -230px;
  width: 185px;
  pointer-events: none;
  filter: drop-shadow(0 16px 16px rgba(7, 91, 145, .2));
  will-change: transform;
  animation: gallery-doraemon-fly 17s linear infinite -4s;
}
.gallery-doraemon-flight__body,
.gallery-doraemon-flight__hat {
  display: block;
  width: 100%;
  height: auto;
}
.gallery-doraemon-flight__body {
  animation: none;
}
.gallery-doraemon-flight__hat {
  position: absolute;
  inset: 0;
  clip-path: polygon(34% 0, 43% 2%, 42% 8%, 37% 10%, 32% 17%, 27% 22%, 22% 29%, 19% 34%, 16% 34%, 15% 30%, 16% 25%, 19% 17%, 24% 10%, 30% 4%);
  transform-origin: 40% 7%;
  animation: gallery-hat-flutter .72s ease-in-out infinite alternate;
}
.gallery-doraemon-flight__wind {
  position: absolute;
  z-index: -1;
  top: 48%;
  right: -82px;
  width: 96px;
  height: 42px;
  opacity: .8;
  background:
    linear-gradient(90deg, transparent 0%, rgba(255,255,255,.08) 8%, rgba(105,195,232,.5) 46%, rgba(255,255,255,.08) 86%, transparent 100%) 0 8px / 92% 2px no-repeat,
    linear-gradient(90deg, transparent 0%, rgba(103,190,228,.36) 38%, rgba(255,255,255,.08) 88%, transparent 100%) 12px 27px / 76% 1.5px no-repeat;
  filter: blur(.15px);
  animation: gallery-wind 1.15s ease-in-out infinite;
}
.gallery-doraemon-flight__wind::before,
.gallery-doraemon-flight__wind::after {
  content: "";
  position: absolute;
  right: 2px;
  width: 64px;
  height: 20px;
  border-top: 2px solid rgba(83,180,223,.4);
  border-radius: 50%;
}
.gallery-doraemon-flight__wind::before {
  top: 1px;
  transform: rotate(4deg);
}
.gallery-doraemon-flight__wind::after {
  right: 18px;
  bottom: -2px;
  width: 48px;
  border-color: rgba(83,180,223,.28);
  transform: rotate(-5deg);
}
@keyframes gallery-doraemon-fly {
  0% {
    opacity: 0;
    transform: translate3d(0, 150px, 0) rotate(-8deg) scale(.88);
  }
  10% {
    opacity: 1;
    transform: translate3d(calc(-10vw - 20px), 82px, 0) rotate(-3deg) scale(1);
  }
  28% { transform: translate3d(calc(-29vw - 45px), 18px, 0) rotate(3deg) scale(1); }
  48% { transform: translate3d(calc(-49vw - 80px), -34px, 0) rotate(-2deg) scale(1); }
  68% { transform: translate3d(calc(-69vw - 125px), -8px, 0) rotate(2deg) scale(1); }
  86% {
    opacity: 1;
    transform: translate3d(calc(-87vw - 205px), -76px, 0) rotate(-3deg) scale(.98);
  }
  100% {
    opacity: 0;
    transform: translate3d(calc(-100vw - 340px), -118px, 0) rotate(1deg) scale(.92);
  }
}
@keyframes gallery-hat-flutter {
  0% { transform: rotate(-1deg) skewX(-.5deg); }
  100% { transform: rotate(2deg) skewX(.75deg) translateY(-1px); }
}
@keyframes gallery-wind {
  0% { opacity: .18; transform: translateX(18px) scaleX(.62) skewY(-2deg); }
  45% { opacity: .82; }
  100% { opacity: .12; transform: translateX(-13px) scaleX(1.18) skewY(2deg); }
}
@media (max-width: 700px) {
  .gallery-doraemon-flight { top: 17%; width: 92px; animation-duration: 13s; }
  .gallery-doraemon-flight__wind { right: -46px; width: 54px; height: 28px; }
  .gallery-doraemon-flight__wind::before { width: 38px; height: 13px; }
  .gallery-doraemon-flight__wind::after { right: 9px; width: 30px; height: 12px; }
}
@media (prefers-reduced-motion: reduce) {
  .gallery-doraemon-flight { display: none; }
}

/* =========================================================
   MODERN SCROLL EXPERIENCE
   ========================================================= */
.scroll-progress {
  position: fixed;
  z-index: 10001;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  pointer-events: none;
  background: linear-gradient(90deg, var(--yellow), #fff27a 40%, var(--blue-500));
  box-shadow: 0 0 12px rgba(255,201,77,.5);
  transform: scaleX(var(--scroll-progress, 0));
  transform-origin: left center;
  transition: transform .08s linear;
}
.js-scroll-effects .reveal {
  opacity: 0;
  filter: blur(4px);
  transform: translate3d(0, 38px, 0) scale(.985);
  transition:
    opacity .78s cubic-bezier(.2,.7,.2,1),
    transform .88s cubic-bezier(.16,1,.3,1),
    filter .72s ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform, filter;
}
.js-scroll-effects .reveal.reveal--from-left {
  transform: translate3d(-52px, 18px, 0) scale(.985);
}
.js-scroll-effects .reveal.reveal--from-right {
  transform: translate3d(52px, 18px, 0) scale(.985);
}
.js-scroll-effects .reveal.is-visible,
.js-scroll-effects .reveal.reveal--from-left.is-visible,
.js-scroll-effects .reveal.reveal--from-right.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0) scale(1);
}
.brand-panorama__frame img,
.collection-card__photo,
.campaign__image img {
  translate: 0 var(--scroll-shift, 0);
  will-change: translate;
}
.js-scroll-effects .section-heading.reveal.is-visible h2,
.js-scroll-effects .products__header .section-heading.reveal.is-visible h2 {
  animation: scroll-heading-settle .9s cubic-bezier(.16,1,.3,1) both;
}
@keyframes scroll-heading-settle {
  0% { letter-spacing: -.055em; }
  55% { letter-spacing: -.025em; }
  100% { letter-spacing: -.035em; }
}

@media (max-width: 700px) {
  .scroll-progress { height: 2px; }
  .js-scroll-effects .reveal {
    filter: none;
    transform: translate3d(0, 24px, 0) scale(.992);
    transition-duration: .62s, .72s, .4s;
  }
  .js-scroll-effects .reveal.reveal--from-left { transform: translate3d(-24px, 12px, 0) scale(.992); }
  .js-scroll-effects .reveal.reveal--from-right { transform: translate3d(24px, 12px, 0) scale(.992); }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-progress { transition: none; }
  .reveal,
  .reveal.is-visible { opacity: 1; filter: none; transform: none; transition: none; }
  .brand-panorama__frame img,
  .collection-card__photo,
  .campaign__image img { translate: none; }
}

/* =========================================================
   BALANCED VERTICAL RHYTHM
   Prevent adjacent sections from doubling large whitespace.
   ========================================================= */
@media (min-width: 901px) {
  .about,
  .products,
  .visual-stories,
  .channels,
  .contact { padding-block: 88px; }

  .brand-panorama {
    padding-top: 0;
    padding-bottom: 40px;
  }
  .collections {
    padding-top: 64px;
    padding-bottom: 88px;
  }

  .value-grid { margin-top: 48px; }
  .collection-grid--visual,
  .product-grid,
  .story-slider { margin-top: 44px; }
  .channel-grid { margin-top: 42px; }
}

@media (min-width: 701px) and (max-width: 900px) {
  .about,
  .products,
  .visual-stories,
  .channels,
  .contact { padding-block: 60px; }

  .brand-panorama { padding-bottom: 34px; }
  .collections { padding-block: 48px 60px; }
  .value-grid,
  .product-grid,
  .story-slider,
  .channel-grid { margin-top: 34px; }
}

@media (max-width: 700px) {
  .about,
  .products,
  .visual-stories,
  .channels { padding-block: 46px; }

  .brand-panorama { padding-bottom: 28px; }
  .collections { padding-block: 38px 46px; }
  .value-grid { margin-top: 28px; }
  .collection-grid--visual,
  .product-grid,
  .story-slider,
  .channel-grid { margin-top: 26px; }
  .contact { padding-block: 40px; }
}

/* =========================================================
   DEDICATED PRODUCT CATALOG PAGE
   ========================================================= */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.product-page { background: #f7fbfd; }
.product-page .primary-nav a[aria-current="page"] { color: white; }
.product-page .primary-nav a[aria-current="page"]::after { width: 100%; }
.catalog-hero {
  position: relative;
  overflow: hidden;
  padding: 84px 0 92px;
  color: white;
  background:
    radial-gradient(circle at 72% 18%, rgba(83, 207, 255, .34), transparent 28%),
    linear-gradient(132deg, #075a8a 0%, #087ab4 50%, #159fd1 100%);
}
.catalog-hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
  align-items: center;
  gap: 76px;
}
.breadcrumbs { display: flex; align-items: center; gap: 9px; margin-bottom: 28px; color: rgba(255,255,255,.7); font-size: 12px; font-weight: 650; }
.breadcrumbs a { color: white; }
.catalog-hero h1 { margin: 18px 0 24px; font-size: clamp(48px, 5vw, 72px); line-height: 1.04; letter-spacing: -.045em; }
.catalog-hero h1 em { color: var(--yellow); font-style: normal; }
.catalog-hero__copy > p { max-width: 650px; margin: 0; color: rgba(255,255,255,.78); font-size: 17px; line-height: 1.75; }
.catalog-hero__stats { display: flex; gap: 0; margin-top: 36px; }
.catalog-hero__stats div { min-width: 128px; padding-right: 26px; }
.catalog-hero__stats div + div { padding-left: 26px; border-left: 1px solid rgba(255,255,255,.2); }
.catalog-hero__stats strong { display: block; color: white; font-size: 25px; line-height: 1; }
.catalog-hero__stats span { display: block; margin-top: 8px; color: rgba(255,255,255,.65); font-size: 11px; }
.catalog-hero__visual { position: relative; }
.catalog-hero__image-wrap { overflow: hidden; padding: 8px; border: 1px solid rgba(255,255,255,.45); border-radius: 32px; background: rgba(255,255,255,.16); box-shadow: 0 32px 70px rgba(3,40,65,.3); backdrop-filter: blur(8px); transform: rotate(1deg); }
.catalog-hero__image-wrap img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; border-radius: 24px; }
.catalog-hero__badge { position: absolute; right: -18px; bottom: -17px; padding: 11px 17px; border-radius: 999px; color: #075a8a; background: white; box-shadow: var(--shadow-sm); font-size: 12px; font-weight: 800; }
.catalog-hero__orb { position: absolute; border: 1px solid rgba(255,255,255,.13); border-radius: 50%; pointer-events: none; }
.catalog-hero__orb--one { width: 520px; height: 520px; right: -170px; top: -190px; box-shadow: inset 0 0 0 75px rgba(255,255,255,.025), inset 0 0 0 150px rgba(255,255,255,.025); }
.catalog-hero__orb--two { width: 180px; height: 180px; left: -70px; bottom: -100px; background: rgba(255,201,77,.13); }

.catalog-section { padding: 92px 0 108px; background: #f7fbfd; }
.catalog-heading { display: flex; align-items: end; justify-content: space-between; gap: 40px; }
.catalog-heading .section-heading { max-width: 760px; }
.catalog-heading__meta { flex: none; padding-bottom: 8px; text-align: right; }
.catalog-heading__meta strong { display: block; color: var(--blue-700); font-size: 16px; }
.catalog-heading__meta span { display: block; margin-top: 5px; color: var(--gray-500); font-size: 11px; }
.catalog-controls { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 14px; margin-top: 42px; padding: 15px; border: 1px solid rgba(16,44,64,.08); border-radius: 22px; background: white; box-shadow: 0 12px 35px rgba(10,71,107,.07); }
.catalog-search { display: flex; align-items: center; gap: 12px; min-height: 50px; padding: 0 17px; border-radius: 15px; background: #f2f8fb; color: var(--blue-600); }
.catalog-search svg { width: 20px; height: 20px; flex: none; }
.catalog-search input { width: 100%; border: 0; outline: 0; color: var(--navy); background: transparent; font: inherit; font-size: 13px; }
.catalog-search input::placeholder { color: #7890a0; }
.catalog-sort { display: flex; align-items: center; gap: 10px; padding: 0 15px; border-left: 1px solid rgba(16,44,64,.08); color: var(--gray-500); font-size: 11px; font-weight: 700; }
.catalog-sort select { min-height: 44px; padding: 0 34px 0 14px; border: 1px solid rgba(16,44,64,.1); border-radius: 13px; outline: 0; color: var(--navy); background: white; font: inherit; font-size: 12px; font-weight: 750; }
.catalog-filter-group { display: grid; grid-template-columns: 105px minmax(0, 1fr); align-items: start; gap: 18px; margin-top: 26px; }
.catalog-filter-group + .catalog-filter-group { margin-top: 14px; }
.catalog-filter-group__label { padding-top: 11px; color: var(--navy); font-size: 11px; font-weight: 850; letter-spacing: .04em; text-transform: uppercase; }
.catalog-filter-group .product-filters { justify-content: flex-start; }
.catalog-filter-group .filter-button { background: white; }
.catalog-filter-group .filter-button.is-active { color: white; background: var(--blue-500); }
.filter-button--doraemon.is-active { background: #1399d4 !important; }
.filter-button--shinchan.is-active { background: #d7a628 !important; }
.filter-button--lulu.is-active { background: #dc8eaa !important; }
.product-page .product-grid { margin-top: 46px; }
.product-page .product-card { background: white; }

.catalog-cta { padding: 0 0 96px; background: #f7fbfd; }
.catalog-cta__inner { display: flex; align-items: center; justify-content: space-between; gap: 50px; padding: 48px 54px; border-radius: 32px; color: white; background: linear-gradient(125deg, #075f91, #0b8fc6); box-shadow: 0 26px 55px rgba(7,95,145,.2); }
.catalog-cta h2 { margin: 13px 0 8px; font-size: clamp(28px, 3vw, 42px); letter-spacing: -.035em; }
.catalog-cta p { max-width: 670px; margin: 0; color: rgba(255,255,255,.72); font-size: 13px; line-height: 1.7; }
.catalog-cta__actions { display: flex; flex: none; gap: 10px; }
.catalog-cta__outline { border: 1px solid rgba(255,255,255,.4); color: white; background: transparent; }
.catalog-cta__outline:hover { border-color: white; background: rgba(255,255,255,.1); }

@media (max-width: 1000px) {
  .catalog-hero { padding-block: 64px 76px; }
  .catalog-hero__grid { grid-template-columns: 1fr; gap: 44px; }
  .catalog-hero__copy { max-width: 720px; }
  .catalog-hero__visual { max-width: 760px; }
  .catalog-heading { align-items: flex-start; }
  .catalog-cta__inner { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 700px) {
  .catalog-hero { padding: 38px 0 50px; }
  .catalog-hero__grid { gap: 32px; }
  .breadcrumbs { margin-bottom: 20px; }
  .catalog-hero h1 { margin-block: 14px 17px; font-size: clamp(38px, 11vw, 52px); }
  .catalog-hero__copy > p { font-size: 14px; line-height: 1.65; }
  .catalog-hero__stats { margin-top: 28px; }
  .catalog-hero__stats div { min-width: 0; flex: 1; padding-right: 12px; }
  .catalog-hero__stats div + div { padding-left: 12px; }
  .catalog-hero__stats strong { font-size: 21px; }
  .catalog-hero__stats span { font-size: 9px; }
  .catalog-hero__image-wrap { padding: 5px; border-radius: 22px; }
  .catalog-hero__image-wrap img { border-radius: 17px; }
  .catalog-hero__badge { right: 8px; bottom: -14px; padding: 9px 12px; font-size: 9px; }
  .catalog-section { padding: 54px 0 66px; }
  .catalog-heading { flex-direction: column; gap: 13px; }
  .catalog-heading__meta { padding: 0; text-align: left; }
  .catalog-heading__meta span { display: none; }
  .catalog-controls { grid-template-columns: 1fr; gap: 8px; margin-top: 28px; padding: 9px; border-radius: 17px; }
  .catalog-sort { justify-content: space-between; min-height: 48px; border-top: 1px solid rgba(16,44,64,.07); border-left: 0; }
  .catalog-filter-group { display: block; margin-top: 22px; }
  .catalog-filter-group + .catalog-filter-group { margin-top: 18px; }
  .catalog-filter-group__label { display: block; padding: 0 0 9px; }
  .catalog-filter-group .product-filters { display: flex; flex-wrap: nowrap; justify-content: flex-start; overflow-x: auto; padding: 0 0 7px; scroll-snap-type: x proximity; scrollbar-width: none; }
  .catalog-filter-group .product-filters::-webkit-scrollbar { display: none; }
  .catalog-filter-group .filter-button { flex: none; scroll-snap-align: start; }
  .product-page .product-grid { margin-top: 28px; }
  .catalog-cta { padding-bottom: 54px; }
  .catalog-cta__inner { gap: 26px; padding: 32px 24px; border-radius: 24px; }
  .catalog-cta__actions { width: 100%; flex-direction: column; }
  .catalog-cta__actions .button { width: 100%; }
}

/* Mobile-only expandable quick contact menu. Desktop keeps the existing contact rail. */
.floating-contact__toggle {
  display: none;
}

.floating-contact__toggle-image {
  display: none;
}

@media (max-width: 700px) {
  body::before {
    content: "";
    position: fixed;
    z-index: 43;
    inset: 0;
    width: 100vw;
    height: 100dvh;
    background: rgba(9, 25, 37, .55);
    backdrop-filter: blur(2px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .28s ease, visibility .28s ease;
  }

  body.contact-menu-open::before {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .floating-contact {
    right: 14px;
    bottom: max(6px, env(safe-area-inset-bottom));
    left: auto;
    width: 44px;
    height: 44px;
    display: block;
    padding: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    transition: bottom .28s cubic-bezier(.2, .8, .2, 1);
  }

  .floating-contact.has-back-to-top {
    bottom: calc(max(6px, env(safe-area-inset-bottom)) + 52px);
  }

  .floating-contact a,
  .floating-contact a:hover {
    --contact-x: 0px;
    --contact-y: 0px;
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 1;
    width: 44px;
    height: 44px;
    padding: 0;
    overflow: visible;
    border: 1px solid rgba(10, 92, 138, .08);
    border-radius: 50%;
    box-shadow: 0 10px 26px rgba(16, 44, 64, .2);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate(0, 0) scale(.55);
    transition:
      opacity .22s ease,
      visibility .22s ease,
      transform .32s cubic-bezier(.2, .9, .25, 1.25),
      background .2s ease,
      color .2s ease;
  }

  .floating-contact a:nth-of-type(1) {
    --contact-x: 0px;
    --contact-y: -126px;
    transition-delay: 0s;
  }

  .floating-contact a:nth-of-type(2) {
    --contact-x: -86px;
    --contact-y: -70px;
    transition-delay: .025s;
  }

  .floating-contact a:nth-of-type(3) {
    --contact-x: -126px;
    --contact-y: 0px;
    transition-delay: .05s;
  }

  .floating-contact.is-open a {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(var(--contact-x), var(--contact-y)) scale(1);
  }

  .floating-contact.is-open a:nth-of-type(1) { transition-delay: .03s; }
  .floating-contact.is-open a:nth-of-type(2) { transition-delay: .07s; }
  .floating-contact.is-open a:nth-of-type(3) { transition-delay: .11s; }

  .floating-contact a span,
  .floating-contact a:hover span {
    position: absolute;
    right: 54px;
    max-width: none;
    margin: 0;
    padding: 7px 11px;
    overflow: visible;
    border: 1px solid rgba(16, 44, 64, .08);
    border-radius: 999px;
    color: var(--navy);
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 8px 22px rgba(16, 44, 64, .14);
    opacity: 0;
    white-space: nowrap;
    font-size: 10px;
    line-height: 1;
    transform: translateX(8px);
    transition: opacity .2s ease, transform .25s ease;
  }

  .floating-contact.is-open a span {
    opacity: 1;
    transform: translateX(0);
  }

  .floating-contact__toggle {
    position: relative;
    z-index: 2;
    width: 44px;
    height: 44px;
    display: grid;
    flex: 0 0 44px;
    place-items: center;
    padding: 0;
    border: 0;
    border-radius: 50%;
    color: white;
    background: transparent;
    box-shadow: 0 10px 26px rgba(4, 91, 143, .22);
    cursor: pointer;
    transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
  }

  .floating-contact__toggle:active {
    transform: scale(.93);
  }

  .floating-contact__toggle-image {
    width: 44px;
    height: 44px;
    display: block;
    border-radius: 50%;
    object-fit: contain;
    transition: opacity .2s ease, transform .28s cubic-bezier(.2, .8, .2, 1);
  }

  .floating-contact .floating-contact__toggle-icon {
    position: absolute;
    inset: 0;
    width: 20px;
    height: 20px;
    max-width: none;
    margin: auto;
    margin-left: auto;
    display: block;
    overflow: visible;
    color: #fff;
    opacity: 0;
    transform: scale(.7);
    transition: opacity .2s ease, transform .28s ease;
  }

  .floating-contact .floating-contact__toggle-icon i {
    position: absolute;
    top: 8px;
    left: 8px;
    width: 4px;
    height: 4px;
    display: block;
    border-radius: 50%;
    background: currentColor;
    transition: .28s cubic-bezier(.2, .8, .2, 1);
  }

  .floating-contact .floating-contact__toggle-icon i:first-child { transform: translateX(-7px); }
  .floating-contact .floating-contact__toggle-icon i:last-child { transform: translateX(7px); }

  .floating-contact.is-open .floating-contact__toggle {
    background: #0b86c5;
    border: 0;
    box-shadow: 0 12px 30px rgba(4, 91, 143, .34);
  }

  .floating-contact.is-open .floating-contact__toggle-image {
    opacity: 0;
    transform: scale(.5) rotate(-75deg);
  }

  .floating-contact.is-open .floating-contact__toggle-icon {
    max-width: none;
    margin-left: auto;
    overflow: visible;
    opacity: 1;
    transform: scale(1);
  }

  .floating-contact.is-open .floating-contact__toggle-icon i {
    top: 9px;
    left: 3px;
    width: 15px;
    height: 2px;
    border-radius: 2px;
  }

  .floating-contact.is-open .floating-contact__toggle-icon i:first-child { transform: rotate(45deg); }
  .floating-contact.is-open .floating-contact__toggle-icon i:nth-child(2) { opacity: 0; transform: scale(0); }
  .floating-contact.is-open .floating-contact__toggle-icon i:last-child { transform: rotate(-45deg); }

  .back-to-top {
    right: 14px;
    bottom: max(6px, env(safe-area-inset-bottom));
    width: 44px;
    height: 44px;
  }

  .site-footer {
    padding-bottom: 0;
  }

  .toast {
    bottom: 72px;
  }
}

/* Keep existing floating actions clear of the mobile app navigation. */
@media (max-width: 700px) {
  body.has-mobile-app-nav .back-to-top,
  body.has-mobile-app-nav .floating-contact {
    bottom: calc(76px + env(safe-area-inset-bottom));
  }

  body.has-mobile-app-nav .floating-contact.has-back-to-top {
    bottom: calc(128px + env(safe-area-inset-bottom));
  }

  body.has-mobile-app-nav .toast {
    bottom: calc(80px + env(safe-area-inset-bottom));
  }
}
