:root {
  --header-h: 84px;

  --pink-bg: #fdf1f4;
  --pink-card: #ffffff;
  --pink-soft: #fbdfe6;
  --pink-accent: #e2007a;
  --pink-deep: #c2185b;
  --navy: #1a1a2e;
  --gray-text: #8a7b7f;
  --gold: #b08d57;

  --font-en: "Noto Serif", serif;
  --font-jp: "Noto Serif JP", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding-top: var(--header-h);
  background: var(--pink-bg);
  font-family: var(--font-jp);
  color: var(--navy);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

/* ---------- Header / Footer (fixed) ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 253, 253, 0.92);
  backdrop-filter: blur(6px);
  z-index: 1000;
  border-bottom: 1px solid rgba(226, 0, 122, 0.12);
  transition: box-shadow 0.3s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 2px 14px rgba(226, 0, 122, 0.12);
}

.site-header img {
  height: 44px;
  width: auto;
}

@media (max-width: 480px) {
  :root {
    --header-h: 68px;
  }

  .site-header img {
    height: 34px;
  }
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 26px 20px;
  background: var(--navy);
  color: #fff;
  letter-spacing: 0.08em;
}

.site-footer small {
  font-size: 0.7rem;
  opacity: 0.8;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  line-height: 0;
  opacity: 0;
  transform: scale(1.04);
  animation: heroIn 1.1s ease forwards;
}

@keyframes heroIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.hero img {
  width: 100%;
  height: auto;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: -42px;
  transform: translateX(-50%);
  color: var(--pink-accent);
  font-family: var(--font-en);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.scroll-cue span.arrow {
  width: 8px;
  height: 8px;
  border-right: 1px solid var(--pink-accent);
  border-bottom: 1px solid var(--pink-accent);
  transform: rotate(45deg);
  animation: bounceDown 1.6s ease-in-out infinite;
}

@keyframes bounceDown {
  0%,
  100% {
    transform: translateY(0) rotate(45deg);
  }
  50% {
    transform: translateY(6px) rotate(45deg);
  }
}

/* ---------- Intro ---------- */
.intro {
  text-align: center;
  padding: 120px 20px 40px;
}

.intro .eyebrow {
  font-family: var(--font-en);
  color: var(--pink-accent);
  letter-spacing: 0.35em;
  font-size: 0.75rem;
  margin: 0 0 14px;
  text-transform: uppercase;
}

.intro h1 {
  font-family: var(--font-en);
  font-size: clamp(2rem, 6vw, 3.2rem);
  margin: 0 0 18px;
  color: var(--navy);
  letter-spacing: 0.02em;
}

.intro p {
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.9;
  color: #55494d;
  font-size: 0.92rem;
}

.intro .divider {
  width: 46px;
  height: 2px;
  background: var(--pink-accent);
  margin: 22px auto;
  border: none;
}

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

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

/* ---------- Products (magazine editorial) ---------- */
.products {
  max-width: 1120px;
  margin: 0 auto;
  padding: 10px 20px 40px;
}

.editorial {
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 64px 0;
  border-bottom: 1px solid rgba(194, 24, 91, 0.15);
}

.editorial:first-child {
  padding-top: 20px;
}

.editorial:last-child {
  border-bottom: none;
}

.editorial:nth-of-type(even) {
  flex-direction: row-reverse;
}

@media (max-width: 820px) {
  .editorial,
  .editorial:nth-of-type(even) {
    flex-direction: column;
    gap: 28px;
    padding: 44px 0;
  }
}

.editorial-media {
  flex: 0 0 46%;
  min-width: 0;
}

.editorial-copy {
  flex: 1 1 auto;
  min-width: 0;
}

.product-gallery {
  position: relative;
}

.gallery-main {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 1;
  transition: opacity 0.25s ease;
}

.gallery-main img.is-fading {
  opacity: 0;
}

.discount-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--pink-accent);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--font-en);
  line-height: 1.1;
  box-shadow: 0 6px 16px rgba(226, 0, 122, 0.35);
  z-index: 2;
}

.discount-badge .num {
  font-size: 1.15rem;
  font-weight: 700;
}

.discount-badge .label {
  font-size: 0.5rem;
  letter-spacing: 0.08em;
}

.gallery-thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 14px;
}

.gallery-thumbs button {
  padding: 0;
  border: 2px solid transparent;
  border-radius: 8px;
  overflow: hidden;
  width: 52px;
  height: 52px;
  cursor: pointer;
  background: #fdf6f8;
  transition:
    border-color 0.2s ease,
    transform 0.2s ease;
}

.gallery-thumbs button img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-thumbs button:hover {
  transform: translateY(-2px);
}

.gallery-thumbs button.is-active {
  border-color: var(--pink-accent);
}

.feature-no {
  font-family: var(--font-en);
  font-size: clamp(3.2rem, 7vw, 4.8rem);
  line-height: 1;
  margin: 0 0 -0.35em;
  color: rgba(226, 0, 122, 0.16);
  font-weight: 700;
}

.feature-cat {
  font-family: var(--font-en);
  font-size: 0.75rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--pink-accent);
  margin: 0 0 10px;
}

.feature-name {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 0 0 20px;
  color: var(--navy);
}

.feature-name .product-name {
  font-family: var(--font-jp);
  font-size: clamp(1.5rem, 3.2vw, 2rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--navy);
}

.feature-name .product-code {
  font-family: var(--font-en);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--gray-text);
}

.feature-desc {
  border-left: 2px solid var(--pink-accent);
  padding-left: 18px;
  margin: 0 0 26px;
  line-height: 2;
  color: #55494d;
  font-size: 0.94rem;
  max-width: 34em;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.price-original {
  font-size: 0.9rem;
  color: var(--gray-text);
  text-decoration: line-through;
}

.price-original .tax {
  text-decoration: line-through;
  font-size: 0.75rem;
}

.price-sale {
  font-size: 1.6rem;
  color: var(--pink-deep);
  font-weight: 700;
}

.price-sale small {
  font-size: 0.85rem;
  font-weight: 400;
  margin-right: 2px;
}

.price-sale .tax {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  margin-left: 2px;
}

.btn-product {
  display: inline-block;
  padding: 12px 30px;
  border: 1.5px solid var(--pink-accent);
  border-radius: 999px;
  color: var(--pink-accent);
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  position: relative;
  overflow: hidden;
  transition: color 0.35s ease;
  z-index: 1;
}

.btn-product::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--pink-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
  z-index: -1;
}

.btn-product:hover {
  color: #fff;
}

.btn-product:hover::before {
  transform: scaleX(1);
}

/* ---------- Bottom CTA ---------- */
.cta-bottom {
  text-align: center;
  padding: 30px 20px 70px;
}

.btn-all {
  display: inline-block;
  padding: 18px 54px;
  background: linear-gradient(135deg, var(--pink-accent), var(--pink-deep));
  color: #fff;
  text-decoration: none;
  border-radius: 999px;
  font-family: var(--font-en);
  letter-spacing: 0.12em;
  font-size: 0.95rem;
  /*box-shadow: 0 12px 28px rgba(226, 0, 122, 0.3);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
   animation: pulseGlow 2.6s ease-in-out infinite;*/
}

.btn-all:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(226, 0, 122, 0.4);
}

@keyframes pulseGlow {
  0%,
  100% {
    box-shadow: 0 12px 28px rgba(226, 0, 122, 0.3);
  }
  50% {
    box-shadow: 0 12px 34px rgba(226, 0, 122, 0.5);
  }
}
