/* ========================================
   桜茶 Sakura Premium Tea - LP Stylesheet
   ======================================== */

/* ---------- CSS Variables ---------- */
:root {
  --color-pink: #F8A4C8;
  --color-pink-light: #FFD1DC;
  --color-pink-pale: #FFF0F5;
  --color-pink-dark: #E88AAE;
  --color-pink-bg: #FFE8F0;
  --color-gold: #D4A843;
  --color-gold-light: #E8C86A;
  --color-cream: #FFF8F0;
  --color-cream-dark: #FFF0E0;
  --color-green: #6B9E5B;
  --color-green-light: #A8D8A2;
  --color-brown: #8B6B4A;
  --color-footer: #7A4B5C;
  --color-text: #5A3E4A;
  --color-text-light: #8B7080;
  --color-white: #FFFFFF;

  --font-main: 'Zen Maru Gothic', 'Hiragino Maru Gothic Pro', 'BIZ UDPGothic', sans-serif;
  --shadow-card: 0 4px 20px rgba(248, 164, 200, 0.2);
  --shadow-card-hover: 0 8px 30px rgba(248, 164, 200, 0.3);
  --radius-card: 16px;
  --radius-btn: 50px;
  --transition: 0.3s ease;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  color: var(--color-text);
  background: var(--color-cream);
  line-height: 1.8;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  text-decoration: none;
  color: inherit;
}

/* ---------- Scroll Animations ---------- */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-on-scroll.fade-left {
  transform: translateX(-30px);
}
.animate-on-scroll.fade-left.is-visible {
  transform: translateX(0);
}

.animate-on-scroll.fade-right {
  transform: translateX(30px);
}
.animate-on-scroll.fade-right.is-visible {
  transform: translateX(0);
}

.animate-on-scroll.scale-in {
  transform: scale(0.9);
}
.animate-on-scroll.scale-in.is-visible {
  transform: scale(1);
}

.animate-on-scroll.stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
.animate-on-scroll.stagger.is-visible > *:nth-child(1) { transition-delay: 0s; opacity: 1; transform: translateY(0); }
.animate-on-scroll.stagger.is-visible > *:nth-child(2) { transition-delay: 0.15s; opacity: 1; transform: translateY(0); }
.animate-on-scroll.stagger.is-visible > *:nth-child(3) { transition-delay: 0.3s; opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .animate-on-scroll,
  .animate-on-scroll > * {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ---------- Section Heading ---------- */
.section-heading {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 900;
  color: var(--color-pink);
  text-align: center;
  margin-bottom: 8px;
  letter-spacing: 0.08em;
  -webkit-text-stroke: 1.5px var(--color-pink-dark);
  paint-order: stroke fill;
  text-shadow: 0 2px 8px rgba(248, 164, 200, 0.3), 0 0 20px rgba(248, 164, 200, 0.15);
}

.section-heading--white {
  color: var(--color-white);
  -webkit-text-stroke: 2px rgba(200, 80, 120, 0.5);
  paint-order: stroke fill;
  text-shadow: 0 2px 10px rgba(200, 80, 120, 0.4), 0 0 30px rgba(248, 164, 200, 0.3);
}

.section-heading__deco {
  text-align: center;
  margin-bottom: 40px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 16px 48px;
  border-radius: var(--radius-btn);
  font-family: var(--font-main);
  font-weight: 700;
  font-size: clamp(1rem, 2vw, 1.2rem);
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: linear-gradient(135deg, var(--color-pink), var(--color-pink-dark));
  color: var(--color-white);
  box-shadow: 0 4px 15px rgba(248, 164, 200, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(248, 164, 200, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn--primary::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent 0%, rgba(255,255,255,0.2) 10%, transparent 20%);
  animation: btn-shine 3s linear infinite;
  pointer-events: none;
}

@keyframes btn-shine {
  to { transform: rotate(360deg); }
}

.btn--hero {
  padding: 18px 56px;
  font-size: clamp(1.1rem, 2.2vw, 1.3rem);
  border: 2px solid var(--color-gold);
}

.btn--card {
  padding: 12px 36px;
  font-size: 1rem;
  width: 100%;
}

.btn--cta {
  padding: 20px 64px;
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  border: 2px solid rgba(255, 255, 255, 0.4);
}

/* ---------- Cherry Blossom Petal (CSS) ---------- */
.petal {
  position: absolute;
  width: 20px;
  height: 14px;
  background: var(--color-pink-light);
  border-radius: 50% 0 50% 50%;
  opacity: 0.6;
  pointer-events: none;
  z-index: 1;
}

@keyframes petal-fall {
  0% { transform: translateY(-20px) rotate(0deg) translateX(0); opacity: 0.7; }
  50% { opacity: 0.5; }
  100% { transform: translateY(100vh) rotate(360deg) translateX(80px); opacity: 0; }
}

.petal--1 { top: 5%; left: 10%; width: 22px; height: 16px; animation: petal-fall 8s linear infinite; animation-delay: 0s; }
.petal--2 { top: 8%; left: 30%; width: 16px; height: 12px; animation: petal-fall 10s linear infinite; animation-delay: 1s; }
.petal--3 { top: 3%; left: 55%; width: 18px; height: 13px; animation: petal-fall 9s linear infinite; animation-delay: 2s; }
.petal--4 { top: 10%; left: 75%; width: 14px; height: 10px; animation: petal-fall 11s linear infinite; animation-delay: 0.5s; }
.petal--5 { top: 2%; left: 90%; width: 20px; height: 14px; animation: petal-fall 8.5s linear infinite; animation-delay: 3s; }
.petal--6 { top: 15%; left: 45%; width: 12px; height: 9px; animation: petal-fall 12s linear infinite; animation-delay: 4s; }
.petal--7 { top: 6%; left: 65%; width: 16px; height: 12px; animation: petal-fall 9.5s linear infinite; animation-delay: 1.5s; }
.petal--8 { top: 12%; left: 20%; width: 18px; height: 13px; animation: petal-fall 10.5s linear infinite; animation-delay: 2.5s; }

.petal--hero-extra-1 { top: 20%; left: 35%; width: 24px; height: 17px; animation: petal-fall 7s linear infinite; animation-delay: 0.8s; opacity: 0.5; }
.petal--hero-extra-2 { top: 25%; right: 15%; width: 18px; height: 13px; animation: petal-fall 9s linear infinite; animation-delay: 2.2s; opacity: 0.55; }
.petal--hero-extra-3 { top: 8%; left: 50%; width: 14px; height: 10px; animation: petal-fall 11s linear infinite; animation-delay: 3.5s; opacity: 0.45; }
.petal--hero-extra-4 { top: 18%; right: 35%; width: 20px; height: 14px; animation: petal-fall 8.5s linear infinite; animation-delay: 1.2s; opacity: 0.5; }

.petal--small {
  width: 12px;
  height: 9px;
  opacity: 0.4;
}

/* Hero gold ribbons */
.hero__ribbon {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.hero__ribbon--1 {
  top: 25%;
  right: 12%;
  width: 40px;
  height: 12px;
  background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold));
  transform: rotate(-30deg);
  border-radius: 3px;
  opacity: 0.4;
}

.hero__ribbon--2 {
  top: 60%;
  right: 8%;
  width: 30px;
  height: 10px;
  background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold));
  transform: rotate(20deg);
  border-radius: 3px;
  opacity: 0.3;
}

.petal--9 { top: 20%; right: 10%; animation: petal-fall 14s linear infinite; animation-delay: 0s; }
.petal--10 { top: 40%; left: 5%; animation: petal-fall 12s linear infinite; animation-delay: 2s; }
.petal--11 { top: 60%; right: 20%; animation: petal-fall 15s linear infinite; animation-delay: 4s; }

.petal--12 { top: 10%; left: 15%; width: 18px; height: 13px; animation: petal-fall 9s linear infinite; animation-delay: 0s; }
.petal--13 { top: 5%; left: 40%; width: 14px; height: 10px; animation: petal-fall 11s linear infinite; animation-delay: 1.5s; }
.petal--14 { top: 15%; right: 20%; width: 20px; height: 14px; animation: petal-fall 8s linear infinite; animation-delay: 3s; }
.petal--15 { top: 8%; right: 40%; width: 16px; height: 12px; animation: petal-fall 10s linear infinite; animation-delay: 0.5s; }
.petal--16 { top: 20%; left: 60%; width: 12px; height: 9px; animation: petal-fall 13s linear infinite; animation-delay: 2s; }

/* ---------- Heart Confetti ---------- */
.heart {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.heart::before {
  content: '';
  display: block;
  width: var(--heart-size, 12px);
  height: var(--heart-size, 12px);
  background: var(--heart-color, var(--color-pink-light));
  transform: rotate(45deg);
  border-radius: 50% 50% 0 50%;
  opacity: var(--heart-opacity, 0.5);
}

@keyframes heart-float {
  0% { transform: translateY(0) scale(1); opacity: var(--heart-opacity, 0.5); }
  50% { transform: translateY(-15px) scale(1.1); opacity: calc(var(--heart-opacity, 0.5) * 0.7); }
  100% { transform: translateY(0) scale(1); opacity: var(--heart-opacity, 0.5); }
}

.heart--1 { top: 5%; left: 3%; --heart-size: 16px; --heart-color: var(--color-pink-light); --heart-opacity: 0.5; animation: heart-float 4s ease-in-out infinite; }
.heart--2 { top: 15%; right: 8%; --heart-size: 10px; --heart-color: var(--color-white); --heart-opacity: 0.6; animation: heart-float 3.5s ease-in-out infinite; animation-delay: 0.5s; }
.heart--3 { top: 25%; left: 12%; --heart-size: 8px; --heart-color: var(--color-pink); --heart-opacity: 0.4; animation: heart-float 5s ease-in-out infinite; animation-delay: 1s; }
.heart--4 { top: 35%; right: 15%; --heart-size: 14px; --heart-color: var(--color-white); --heart-opacity: 0.5; animation: heart-float 4.5s ease-in-out infinite; animation-delay: 1.5s; }
.heart--5 { top: 50%; left: 5%; --heart-size: 12px; --heart-color: var(--color-pink-light); --heart-opacity: 0.3; animation: heart-float 3s ease-in-out infinite; animation-delay: 2s; }
.heart--6 { top: 60%; right: 5%; --heart-size: 10px; --heart-color: var(--color-pink); --heart-opacity: 0.4; animation: heart-float 4s ease-in-out infinite; animation-delay: 0.3s; }
.heart--7 { top: 70%; left: 10%; --heart-size: 16px; --heart-color: var(--color-white); --heart-opacity: 0.5; animation: heart-float 5s ease-in-out infinite; animation-delay: 1.2s; }
.heart--8 { top: 80%; right: 12%; --heart-size: 8px; --heart-color: var(--color-pink-light); --heart-opacity: 0.6; animation: heart-float 3.5s ease-in-out infinite; animation-delay: 2.5s; }
.heart--9 { top: 40%; left: 20%; --heart-size: 6px; --heart-color: var(--color-gold-light); --heart-opacity: 0.4; animation: heart-float 4.5s ease-in-out infinite; animation-delay: 0.8s; }
.heart--10 { top: 20%; right: 25%; --heart-size: 12px; --heart-color: var(--color-pink); --heart-opacity: 0.3; animation: heart-float 5.5s ease-in-out infinite; animation-delay: 1.8s; }

/* ---------- Sparkle ---------- */
@keyframes sparkle-anim {
  0%, 100% { opacity: 0; transform: scale(0) rotate(0deg); }
  50% { opacity: 1; transform: scale(1) rotate(180deg); }
}

.sparkle {
  position: absolute;
  width: 8px;
  height: 8px;
  background: radial-gradient(circle, var(--color-gold) 0%, transparent 70%);
  border-radius: 50%;
  animation: sparkle-anim 2s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}

.sparkle--1 { top: 8%; left: 15%; animation-delay: 0s; }
.sparkle--2 { top: 20%; right: 10%; animation-delay: 0.5s; width: 6px; height: 6px; }
.sparkle--3 { top: 45%; left: 8%; animation-delay: 1s; }
.sparkle--4 { top: 70%; right: 20%; animation-delay: 1.5s; width: 10px; height: 10px; }
.sparkle--5 { top: 85%; left: 30%; animation-delay: 2s; width: 6px; height: 6px; }

/* ========================================
   HEADER
   ======================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 248, 240, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(248, 164, 200, 0.1);
}

.header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo-img {
  height: 64px;
  width: auto;
}

.header__nav {
  display: flex;
  gap: 8px;
}

.header__nav-link {
  padding: 8px 20px;
  border-radius: 50px;
  border: 1.5px solid var(--color-pink-light);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text);
  transition: all var(--transition);
}

.header__nav-link:hover {
  background: var(--color-pink-light);
  color: var(--color-white);
}

.header__nav-link--cart {
  background: var(--color-pink-pale);
}

.header__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.header__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-pink);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ========================================
   HERO
   ======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  background:
    radial-gradient(ellipse 60% 80% at 75% 60%, var(--color-cream) 0%, transparent 70%),
    linear-gradient(135deg, var(--color-cream) 0%, var(--color-pink-pale) 40%, rgba(248, 164, 200, 0.12) 70%, var(--color-cream) 100%);
  display: flex;
  align-items: center;
  padding-top: 80px;
  overflow: hidden;
}

.hero__particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.hero__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px;
  display: flex;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 2;
}

.hero__text {
  flex: 1;
}

.hero__heading {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 900;
  color: var(--color-pink);
  line-height: 1.4;
  margin-bottom: 20px;
  -webkit-text-stroke: 1.5px var(--color-pink-dark);
  paint-order: stroke fill;
  text-shadow: 0 2px 8px rgba(248, 164, 200, 0.3), 0 0 20px rgba(248, 164, 200, 0.15);
}

.hero__sub {
  font-size: clamp(0.9rem, 1.8vw, 1.1rem);
  color: var(--color-text-light);
  margin-bottom: 36px;
  line-height: 1.9;
}

.hero__product {
  flex: 0 0 auto;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__product-glow {
  position: absolute;
  width: 120%;
  height: 120%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(248, 164, 200, 0.25) 0%, transparent 70%);
  filter: blur(20px);
  z-index: 0;
}

.hero__product-img {
  position: relative;
  z-index: 1;
  width: clamp(220px, 35vw, 380px);
  filter: drop-shadow(0 10px 30px rgba(248, 164, 200, 0.3));
  animation: product-float 4s ease-in-out infinite;
}

@keyframes product-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.hero__wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  z-index: 3;
}

.hero__wave svg {
  display: block;
  width: 100%;
  height: 120px;
}

.hero__petals {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

/* ========================================
   CONCEPT
   ======================================== */
.concept {
  position: relative;
  background: var(--color-cream);
  padding: 80px 24px;
  overflow: hidden;
  /* Polka dot pattern - stronger visibility per mockup */
  background-image:
    radial-gradient(circle, rgba(248, 164, 200, 0.18) 2.5px, transparent 2.5px),
    linear-gradient(135deg, rgba(248, 164, 200, 0.05) 0%, transparent 50%);
  background-size: 24px 24px, 100% 100%;
}

/* Kasumi cloud borders */
.concept__kasumi {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 2;
  pointer-events: none;
}

.concept__kasumi--top {
  top: 0;
}

.concept__kasumi--bottom {
  bottom: 0;
}

.kasumi-svg {
  display: block;
  width: 100%;
  height: 40px;
}

.concept__inner {
  max-width: 1000px;
  margin: 0 auto;
}

.concept__content {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 48px;
}

.concept__image {
  flex: 1;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.concept__img {
  width: 100%;
  border-radius: var(--radius-card);
}

.concept__story {
  flex: 1;
}

.concept__story-bubble {
  background: var(--color-white);
  border-radius: 20px;
  padding: 32px;
  box-shadow: var(--shadow-card);
  position: relative;
  border: 2px solid var(--color-pink-light);
}

.concept__story-bubble::before {
  content: '';
  position: absolute;
  left: -16px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-right: 16px solid var(--color-pink-light);
}

.concept__story-bubble::after {
  content: '';
  position: absolute;
  left: -13px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 14px solid var(--color-white);
}

.concept__story-bubble p {
  font-size: clamp(0.95rem, 1.6vw, 1.1rem);
  line-height: 2;
  color: var(--color-text);
}

.concept__icons {
  display: flex;
  justify-content: center;
  gap: 48px;
}

.concept__icon-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-cream);
}

.concept__petals-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* Wavy border top */
.concept::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 20px;
  background: var(--color-cream);
}

/* ========================================
   FEATURES
   ======================================== */
.features {
  position: relative;
  background: var(--color-cream);
  padding: 80px 24px;
  overflow: hidden;
  /* Subtle cherry blossom pattern via gradient */
  background-image:
    radial-gradient(circle at 20% 30%, rgba(248, 164, 200, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(248, 164, 200, 0.05) 0%, transparent 40%);
}

.features__inner {
  max-width: 1000px;
  margin: 0 auto;
}

.features__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.feature-card {
  background: var(--color-white);
  border-radius: var(--radius-card);
  padding: 40px 24px 32px;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(212, 168, 67, 0.15);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.feature-card__border-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light), var(--color-gold));
  box-shadow: 0 2px 6px rgba(212, 168, 67, 0.3);
}

.feature-card__icon {
  margin-bottom: 20px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--color-pink-pale);
  border: 2px solid var(--color-pink-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}

.feature-card__icon-img {
  width: 60px;
  height: 60px;
}

.feature-card__title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 12px;
}

.feature-card__text {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.8;
}

/* Ribbon decorations */
.features__ribbon {
  position: absolute;
  pointer-events: none;
}

.features__ribbon--left {
  top: 20%;
  left: 2%;
  width: 100px;
  height: 30px;
  background: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold) 100%);
  transform: rotate(-25deg);
  border-radius: 4px;
  opacity: 0.5;
  box-shadow: 0 2px 8px rgba(212, 168, 67, 0.3);
}

.features__ribbon--right {
  bottom: 25%;
  right: 3%;
  width: 80px;
  height: 24px;
  background: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold) 100%);
  transform: rotate(20deg);
  border-radius: 4px;
  opacity: 0.45;
  box-shadow: 0 2px 8px rgba(212, 168, 67, 0.3);
}

.features__ribbon--left::after,
.features__ribbon--right::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60%;
  height: 2px;
  background: rgba(255, 255, 255, 0.4);
  left: 20%;
}

/* ========================================
   KODAWARI
   ======================================== */
.kodawari {
  position: relative;
  background: var(--color-pink-bg);
  padding: 80px 24px;
  overflow: hidden;
  /* Pastel rainbow diagonal stripes matching mockup */
  background-image: repeating-linear-gradient(
    45deg,
    rgba(248, 164, 200, 0.15) 0px,
    rgba(248, 164, 200, 0.15) 8px,
    rgba(255, 209, 220, 0.2) 8px,
    rgba(255, 209, 220, 0.2) 16px,
    rgba(255, 240, 245, 0.3) 16px,
    rgba(255, 240, 245, 0.3) 24px,
    rgba(232, 200, 106, 0.12) 24px,
    rgba(232, 200, 106, 0.12) 32px,
    rgba(168, 216, 162, 0.1) 32px,
    rgba(168, 216, 162, 0.1) 40px,
    rgba(200, 180, 230, 0.1) 40px,
    rgba(200, 180, 230, 0.1) 48px,
    transparent 48px,
    transparent 56px
  );
}

.kodawari__inner {
  max-width: 900px;
  margin: 0 auto;
}

.kodawari__subtitle {
  text-align: center;
  margin-bottom: 48px;
}

.kodawari__ribbon-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--color-pink), var(--color-pink-dark));
  color: var(--color-white);
  padding: 8px 40px;
  font-size: 1rem;
  font-weight: 700;
  position: relative;
  clip-path: polygon(8% 0%, 92% 0%, 100% 50%, 92% 100%, 8% 100%, 0% 50%);
  -webkit-text-stroke: 0.5px rgba(255, 255, 255, 0.3);
}

.kodawari__row {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 40px;
  background: var(--color-white);
  border-radius: var(--radius-card);
  padding: 24px;
  border: 2px solid var(--color-pink-light);
  box-shadow: var(--shadow-card);
}

.kodawari__row--2 {
  flex-direction: row-reverse;
}

.kodawari__image {
  flex: 0 0 45%;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.kodawari__img {
  width: 100%;
  border-radius: 12px;
}

.kodawari__img-caption {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.9);
  padding: 4px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  color: var(--color-text-light);
  font-weight: 500;
}

.kodawari__text {
  flex: 1;
}

.kodawari__title {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 900;
  color: var(--color-pink-dark);
  margin-bottom: 12px;
  -webkit-text-stroke: 0.8px rgba(180, 70, 100, 0.4);
  paint-order: stroke fill;
}

.kodawari__desc {
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  line-height: 1.9;
  color: var(--color-text);
}

/* Decorative elements */
.kodawari__deco {
  position: absolute;
  pointer-events: none;
}

.kodawari__deco--star-1,
.kodawari__deco--star-2 {
  width: 20px;
  height: 20px;
  background: var(--color-gold);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.kodawari__deco--star-1 { top: 10%; right: 6%; opacity: 0.7; animation: sparkle-anim 3s ease-in-out infinite; }
.kodawari__deco--star-2 { bottom: 20%; left: 4%; opacity: 0.6; width: 24px; height: 24px; animation: sparkle-anim 4s ease-in-out infinite; animation-delay: 1s; }

.kodawari__deco--petal-1,
.kodawari__deco--petal-2 {
  width: 20px;
  height: 14px;
  background: var(--color-pink-light);
  border-radius: 50% 0 50% 50%;
  opacity: 0.6;
}

.kodawari__deco--petal-1 { top: 30%; left: 3%; transform: rotate(30deg); }
.kodawari__deco--petal-2 { bottom: 15%; right: 4%; transform: rotate(-45deg); }

.kodawari__deco--cherry-1,
.kodawari__deco--cherry-2 {
  width: 16px;
  height: 16px;
  background: #D44040;
  border-radius: 50%;
  box-shadow: 12px 0 0 #D44040;
  opacity: 0.6;
}

.kodawari__deco--cherry-1::after,
.kodawari__deco--cherry-2::after {
  content: '';
  position: absolute;
  width: 2px;
  height: 14px;
  background: var(--color-green);
  top: -12px;
  left: 6px;
  border-radius: 1px;
  transform: rotate(-10deg);
}

.kodawari__deco--cherry-1 { top: 5%; right: 15%; }
.kodawari__deco--cherry-2 { bottom: 10%; left: 8%; transform: rotate(20deg); }

.kodawari__deco--star-3,
.kodawari__deco--star-4,
.kodawari__deco--star-5 {
  width: 14px;
  height: 14px;
  background: var(--color-gold-light);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  animation: sparkle-anim 3s ease-in-out infinite;
}

.kodawari__deco--star-3 { top: 50%; right: 3%; opacity: 0.5; animation-delay: 0.5s; }
.kodawari__deco--star-4 { top: 70%; left: 6%; opacity: 0.4; animation-delay: 1.5s; }
.kodawari__deco--star-5 { top: 8%; left: 15%; opacity: 0.5; animation-delay: 2s; }

/* ========================================
   ENJOY
   ======================================== */
.enjoy {
  position: relative;
  background: var(--color-cream);
  padding: 80px 24px;
  overflow: hidden;
  /* Confetti/sprinkle pattern */
  background-image:
    radial-gradient(circle, rgba(248, 164, 200, 0.06) 1.5px, transparent 1.5px),
    radial-gradient(circle, rgba(212, 168, 67, 0.06) 1px, transparent 1px);
  background-size: 40px 40px, 60px 60px;
  background-position: 0 0, 20px 20px;
}

.enjoy__inner {
  max-width: 1000px;
  margin: 0 auto;
}

.enjoy__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
  margin-bottom: 40px;
}

.enjoy-card {
  background: var(--color-white);
  border-radius: var(--radius-card);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: visible;
  transition: all var(--transition);
  border: 3px solid var(--color-pink-light);
  /* Scalloped border effect via outline */
  outline: 3px dashed var(--color-pink-light);
  outline-offset: 4px;
}

.enjoy-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.enjoy-card__badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-pink), var(--color-pink-dark));
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 0.9rem;
  z-index: 2;
  box-shadow: 0 3px 10px rgba(248, 164, 200, 0.5);
  border: 2px solid var(--color-white);
}

.enjoy-card__badge::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid var(--color-pink-dark);
}

.enjoy-card__image-wrap {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 16px;
  aspect-ratio: 1;
}

.enjoy-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  transition: transform var(--transition);
}

.enjoy-card:hover .enjoy-card__img {
  transform: scale(1.05);
}

.enjoy-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 8px;
}

.enjoy-card__text {
  font-size: 0.85rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

.enjoy__tip {
  background: linear-gradient(135deg, var(--color-cream-dark), var(--color-cream));
  border: 2px solid var(--color-gold);
  border-radius: 12px;
  padding: 16px 32px;
  text-align: center;
  outline: 2px solid var(--color-gold-light);
  outline-offset: 3px;
  box-shadow: 0 2px 12px rgba(212, 168, 67, 0.15);
}

.enjoy__tip-text {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text);
}

.enjoy__sparkles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* ========================================
   REVIEWS
   ======================================== */
.reviews {
  position: relative;
  background: linear-gradient(135deg, var(--color-pink) 0%, #E88AAE 50%, var(--color-pink-dark) 100%);
  padding: 80px 24px;
  overflow: hidden;
}

.reviews::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(255,255,255,0.08) 0%, transparent 30%),
    radial-gradient(circle at 90% 80%, rgba(255,255,255,0.06) 0%, transparent 25%),
    radial-gradient(circle at 50% 50%, rgba(255,255,255,0.04) 0%, transparent 40%);
  pointer-events: none;
  z-index: 0;
}

.reviews__inner {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.reviews__stars {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
}

.reviews__stars .star-icon path {
  fill: var(--color-pink-light);
  stroke: rgba(255, 255, 255, 0.6);
  stroke-width: 0.5;
}

.reviews__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: var(--color-white);
  border-radius: var(--radius-card);
  padding: 28px 24px 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  position: relative;
}

.review-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-pink);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.review-card__stars {
  display: flex;
  gap: 2px;
  margin-bottom: 4px;
}

.review-card__name {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 12px;
}

.review-card__body {
  background: var(--color-cream);
  border-radius: 12px;
  padding: 16px;
  position: relative;
}

.review-card__body::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 20px;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid var(--color-cream);
}

.review-card__body p {
  font-size: 0.85rem;
  line-height: 1.8;
  color: var(--color-text);
}

.reviews__hearts {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

/* ========================================
   GIFT
   ======================================== */
.gift {
  position: relative;
  background: var(--color-cream);
  padding: 80px 24px;
  overflow: hidden;
}

.gift__inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.gift__sub {
  font-size: clamp(0.9rem, 1.6vw, 1.05rem);
  color: var(--color-text-light);
  margin-bottom: 36px;
}

.gift__image-wrap {
  max-width: 600px;
  margin: 0 auto 40px;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.gift__img {
  width: 100%;
  border-radius: var(--radius-card);
}

.gift__icons {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-bottom: 40px;
}

.gift__icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.gift__icon-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid var(--color-pink-light);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-white);
  transition: all var(--transition);
}

.gift__icon-circle:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(248, 164, 200, 0.3);
}

.gift__icon-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-text);
}

.gift__banner-ribbon {
  display: inline-block;
  background: linear-gradient(135deg, var(--color-pink), var(--color-pink-dark));
  color: var(--color-white);
  padding: 12px 48px;
  border-radius: 4px;
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  font-weight: 700;
  position: relative;
  box-shadow: 0 4px 15px rgba(248, 164, 200, 0.3);
}

.gift__banner-ribbon::before,
.gift__banner-ribbon::after {
  content: '';
  position: absolute;
  bottom: -8px;
  width: 0;
  height: 0;
  border-style: solid;
}

.gift__banner-ribbon::before {
  left: 0;
  border-width: 0 12px 8px 0;
  border-color: transparent var(--color-pink-dark) transparent transparent;
}

.gift__banner-ribbon::after {
  right: 0;
  border-width: 8px 12px 0 0;
  border-color: var(--color-pink-dark) transparent transparent transparent;
}

/* Decorative hearts */
.gift__deco {
  position: absolute;
  pointer-events: none;
}

.gift__deco--heart-1,
.gift__deco--heart-2,
.gift__deco--heart-3 {
  width: 20px;
  height: 20px;
}

.gift__deco--heart-1::before,
.gift__deco--heart-2::before,
.gift__deco--heart-3::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background: var(--color-pink-light);
  transform: rotate(45deg);
  border-radius: 50% 50% 0 50%;
  opacity: 0.4;
}

.gift__deco--heart-1 { top: 15%; left: 8%; animation: heart-float 4s ease-in-out infinite; }
.gift__deco--heart-2 { top: 25%; right: 10%; width: 14px; height: 14px; animation: heart-float 3s ease-in-out infinite; animation-delay: 1s; }
.gift__deco--heart-3 { bottom: 20%; left: 15%; width: 16px; height: 16px; animation: heart-float 5s ease-in-out infinite; animation-delay: 2s; }

.gift__deco--sparkle-1,
.gift__deco--sparkle-2,
.gift__deco--sparkle-3,
.gift__deco--sparkle-4 {
  width: 16px;
  height: 16px;
  background: var(--color-gold);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  opacity: 0.6;
}

.gift__deco--sparkle-1 { top: 25%; right: 5%; animation: sparkle-anim 3s ease-in-out infinite; }
.gift__deco--sparkle-2 { bottom: 25%; left: 5%; animation: sparkle-anim 4s ease-in-out infinite; animation-delay: 1.5s; }
.gift__deco--sparkle-3 { top: 10%; left: 15%; width: 12px; height: 12px; animation: sparkle-anim 3.5s ease-in-out infinite; animation-delay: 0.8s; }
.gift__deco--sparkle-4 { bottom: 15%; right: 12%; width: 14px; height: 14px; animation: sparkle-anim 4.5s ease-in-out infinite; animation-delay: 2s; }

.gift__deco--ribbon-1,
.gift__deco--ribbon-2 {
  width: 80px;
  height: 24px;
  background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold));
  border-radius: 4px;
  opacity: 0.45;
  box-shadow: 0 2px 6px rgba(212, 168, 67, 0.25);
}

.gift__deco--ribbon-1 { top: 15%; left: 3%; transform: rotate(-30deg); }
.gift__deco--ribbon-2 { top: 40%; right: 2%; transform: rotate(25deg); }

/* ========================================
   PRODUCT
   ======================================== */
.product {
  position: relative;
  background: var(--color-cream);
  padding: 80px 24px;
  overflow: hidden;
  /* Subtle cherry blossom bg */
  background-image: radial-gradient(circle at 10% 20%, rgba(248, 164, 200, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(248, 164, 200, 0.04) 0%, transparent 50%);
}

.product__inner {
  max-width: 800px;
  margin: 0 auto;
}

.product__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 48px;
  margin-bottom: 32px;
}

.product-card {
  background: var(--color-white);
  border-radius: var(--radius-card);
  padding: 32px 24px;
  text-align: center;
  border: 2px solid var(--color-pink-light);
  box-shadow: var(--shadow-card);
  position: relative;
  transition: all var(--transition);
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.product-card--recommended {
  border-color: var(--color-gold);
  box-shadow: 0 4px 20px rgba(212, 168, 67, 0.2);
}

.product-card__badge {
  position: absolute;
  top: -12px;
  right: -8px;
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
  color: var(--color-white);
  padding: 6px 20px;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 900;
  transform: rotate(5deg);
  box-shadow: 0 2px 8px rgba(212, 168, 67, 0.3);
}

.product-card__image-wrap {
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.product-card__img {
  max-height: 220px;
  width: auto;
  filter: drop-shadow(0 4px 10px rgba(248, 164, 200, 0.2));
}

.product-card__gift-set {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: -20px;
}

.product-card__img--left {
  transform: rotate(-5deg);
  max-height: 200px;
  margin-right: -20px;
  position: relative;
  z-index: 1;
}

.product-card__img--right {
  transform: rotate(5deg);
  max-height: 200px;
}

.product-card__name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 4px;
}

.product-card__weight {
  font-size: 0.85rem;
  color: var(--color-text-light);
  margin-bottom: 12px;
}

.product-card__price {
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 900;
  color: var(--color-pink-dark);
  margin-bottom: 16px;
}

.product-card__yen {
  font-size: 0.8em;
}

.product-card__tax {
  font-size: 0.5em;
  font-weight: 500;
  color: var(--color-text-light);
}

.product__shipping {
  text-align: center;
  background: linear-gradient(135deg, var(--color-pink), var(--color-pink-dark));
  color: var(--color-white);
  padding: 14px 32px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(248, 164, 200, 0.3);
}

.product__shipping-text {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 700;
}

/* Frame corners */
.product__frame-corner {
  position: absolute;
  width: 120px;
  height: 120px;
  pointer-events: none;
  opacity: 0.4;
}

.product__frame-corner::before,
.product__frame-corner::after {
  content: '';
  position: absolute;
  background: var(--color-gold);
}

.product__frame-corner--tl { top: 20px; left: 20px; }
.product__frame-corner--tl::before { top: 0; left: 0; width: 100px; height: 2px; }
.product__frame-corner--tl::after { top: 0; left: 0; width: 2px; height: 100px; }

.product__frame-corner--tr { top: 20px; right: 20px; }
.product__frame-corner--tr::before { top: 0; right: 0; width: 100px; height: 2px; }
.product__frame-corner--tr::after { top: 0; right: 0; width: 2px; height: 100px; }

.product__frame-corner--bl { bottom: 20px; left: 20px; }
.product__frame-corner--bl::before { bottom: 0; left: 0; width: 100px; height: 2px; }
.product__frame-corner--bl::after { bottom: 0; left: 0; width: 2px; height: 100px; }

.product__frame-corner--br { bottom: 20px; right: 20px; }
.product__frame-corner--br::before { bottom: 0; right: 0; width: 100px; height: 2px; }
.product__frame-corner--br::after { bottom: 0; right: 0; width: 2px; height: 100px; }

/* ========================================
   CTA
   ======================================== */
.cta {
  position: relative;
  background: linear-gradient(135deg, var(--color-pink-light) 0%, var(--color-pink) 50%, var(--color-pink-dark) 100%);
  padding: 80px 24px;
  overflow: hidden;
}

.cta__particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.cta__inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 2;
}

.cta__product {
  flex: 0 0 auto;
}

.cta__product-img {
  width: clamp(160px, 25vw, 280px);
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.15));
  animation: product-float 4s ease-in-out infinite;
}

.cta__text {
  flex: 1;
  text-align: center;
}

.cta__heading {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 900;
  color: var(--color-white);
  margin-bottom: 12px;
  -webkit-text-stroke: 2px rgba(200, 80, 120, 0.5);
  paint-order: stroke fill;
  text-shadow: 0 2px 10px rgba(200, 80, 120, 0.4), 0 0 30px rgba(248, 164, 200, 0.3);
}

.cta__sub {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: var(--color-white);
  margin-bottom: 32px;
  font-weight: 700;
}

.cta__trust {
  margin-top: 16px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

.cta__gold-wave {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.cta__gold-wave--1 {
  top: 10%;
  right: 3%;
  width: 280px;
  height: 80px;
  border: 2px solid rgba(212, 168, 67, 0.5);
  border-radius: 50%;
  transform: rotate(-15deg);
}

.cta__gold-wave--2 {
  top: 22%;
  right: 6%;
  width: 220px;
  height: 65px;
  border: 2px solid rgba(212, 168, 67, 0.35);
  border-radius: 50%;
  transform: rotate(-10deg);
}

.cta__gold-wave--3 {
  top: 60%;
  left: 5%;
  width: 180px;
  height: 55px;
  border: 2px solid rgba(212, 168, 67, 0.3);
  border-radius: 50%;
  transform: rotate(20deg);
}

.cta__petals {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: var(--color-footer);
  padding: 48px 24px 32px;
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.footer__inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.footer__logo-img {
  height: 72px;
  width: auto;
  filter: brightness(1.4) saturate(0.4);
}

.footer__nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer__nav-link {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--transition);
}

.footer__nav-link:hover {
  color: var(--color-pink-light);
}

.footer__nav-sep {
  color: rgba(255, 255, 255, 0.4);
}

.footer__social {
  display: flex;
  gap: 16px;
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  color: rgba(255, 255, 255, 0.9);
  transition: all var(--transition);
}

.footer__social-link:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.7);
}

.footer__copy {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer__sakura-deco {
  position: absolute;
  bottom: 10px;
  right: 20px;
  pointer-events: none;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 768px) {
  .header__nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 248, 240, 0.98);
    flex-direction: column;
    padding: 16px 24px;
    gap: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  }

  .header__nav.is-open {
    display: flex;
  }

  .header__hamburger {
    display: flex;
  }

  .hero__inner {
    flex-direction: column;
    text-align: center;
    padding: 40px 24px;
  }

  .hero__heading {
    font-size: clamp(1.6rem, 6vw, 2.4rem);
  }

  .hero__product-img {
    width: clamp(200px, 55vw, 300px);
  }

  .concept__content {
    flex-direction: column;
  }

  .concept__story-bubble::before,
  .concept__story-bubble::after {
    display: none;
  }

  .concept__icons {
    gap: 24px;
  }

  .features__cards,
  .enjoy__cards,
  .reviews__cards {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .kodawari__row,
  .kodawari__row--2 {
    flex-direction: column;
  }

  .kodawari__image {
    flex: 0 0 auto;
  }

  .gift__icons {
    gap: 24px;
    flex-wrap: wrap;
  }

  .product__cards {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .cta__inner {
    flex-direction: column;
    text-align: center;
  }

  .footer__nav {
    flex-direction: column;
    gap: 12px;
  }

  .footer__nav-sep {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero__heading {
    font-size: clamp(1.4rem, 7vw, 1.8rem);
  }

  .btn--hero,
  .btn--cta {
    padding: 14px 36px;
    font-size: 1rem;
  }

  .gift__banner-ribbon {
    padding: 10px 24px;
    font-size: 0.9rem;
  }
}
