@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@300;400;500;600;700&family=Mochiy+Pop+One&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  --dojo-royal: #1a2b6b;
  --dojo-cream: #fdfbf5;
  --dojo-pink: #ff4d94;
  --dojo-pink-bg: #fde8f0;
  --dojo-blue: #a3d8ff;
  --font-display: 'Fredoka', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--dojo-pink-bg);
  color: var(--dojo-royal);
  overflow-x: hidden;
}

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

button,
input {
  font: inherit;
}

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

/* Custom cursor fish */
body.custom-cursor,
body.custom-cursor * {
  cursor: none !important;
}

.fish-cursor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  pointer-events: none;
  will-change: transform;
}

.fish-cursor img {
  width: 56px;
  height: auto;
  user-select: none;
  filter: drop-shadow(rgba(0, 0, 0, 0.22) 0 3px 6px);
  transform-origin: 60% 55%;
  animation: fish-swim 0.42s ease-in-out infinite alternate;
}

@keyframes fish-swim {
  from { transform: rotate(-8deg) translateY(-1.5px); }
  to { transform: rotate(8deg) translateY(1.5px); }
}

/* Hero */
.hero-header {
  background: var(--dojo-pink-bg);
  text-align: center;
  padding: 26px 16px 4px;
  overflow: hidden;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(5rem, 23vw, 22rem);
  letter-spacing: -0.03em;
  line-height: 0.84;
  color: var(--dojo-royal);
  margin: 6px 0 0;
  animation: dm-rise 0.8s 0.08s ease both;
}

@keyframes dm-rise {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-bottle-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 0 0;
  background: var(--dojo-pink-bg);
}

.hero-bottle {
  width: clamp(200px, 28vw, 350px);
  object-fit: contain;
  filter: drop-shadow(0 25px 25px rgba(0, 0, 0, 0.15));
  animation: float-in 1s 0.2s ease both;
}

@keyframes float-in {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Marquee bands */
.marquee-band {
  background: var(--dojo-pink);
  padding: 13px 0;
  overflow: hidden;
  border-top: 3px solid var(--dojo-royal);
  border-bottom: 3px solid var(--dojo-royal);
}

.marquee-row {
  overflow: hidden;
  display: flex;
}

.marquee-row + .marquee-row {
  margin-top: 3px;
}

.marquee-track {
  display: flex;
  flex-shrink: 0;
  will-change: transform;
}

.marquee-group {
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.marquee-word {
  font-family: 'Mochiy Pop One', system-ui, sans-serif;
  font-size: 15px;
  padding: 0 10px;
  letter-spacing: 0.04em;
}

.marquee-sep {
  font-size: 14px;
  color: var(--dojo-royal);
  opacity: 0.7;
  padding: 0 6px;
}

.marquee-left { animation: scroll-left 28s linear infinite; }
.marquee-right { animation: scroll-right 28s linear infinite; }

@keyframes scroll-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes scroll-right {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

/* Intro section */
.intro-section {
  overflow: hidden;
  padding: 16px 0 64px;
  background: var(--dojo-pink-bg);
  position: relative;
}

.intro-section::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: min(320px, 38%);
  background: linear-gradient(
    transparent 0%,
    #c8b8d4 30%,
    #7b6fa8 58%,
    #3a4490 82%,
    var(--dojo-royal) 100%
  );
  pointer-events: none;
}

@media (max-width: 767px), (max-height: 520px) and (orientation: landscape) {
  .intro-section::after {
    height: 120px;
    background: linear-gradient(
      transparent 0%,
      #c8b8d4 45%,
      #7b6fa8 72%,
      var(--dojo-royal) 100%
    );
  }
}

.intro-inner {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .intro-inner {
    flex-direction: row;
    gap: 64px;
    padding: 24px 48px 80px;
  }
}

.intro-bottle {
  flex-shrink: 0;
  width: min(540px, 100%);
  margin-left: -2rem;
}

@media (min-width: 768px) {
  .intro-bottle { margin-left: -4rem; }
}

@media (min-width: 1024px) {
  .intro-bottle { margin-left: -7rem; }
}

.intro-bottle img {
  width: 100%;
  object-fit: contain;
}

.intro-copy {
  flex: 1;
}

.intro-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.025em;
  margin: 0;
}

.intro-copy > p {
  margin: 20px 0 0;
  font-size: 1.125rem;
  line-height: 1.625;
  color: rgba(26, 43, 107, 0.6);
  max-width: 32rem;
}

.feature-list {
  margin: 32px 0 0;
  display: grid;
  gap: 16px;
}

.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.feature-dot {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--dojo-pink);
  margin-top: 6px;
}

.feature-item strong {
  font-family: var(--font-display);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.feature-item span {
  font-size: 0.875rem;
  color: rgba(26, 43, 107, 0.6);
}

.cta-row {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 999px;
  padding: 14px 32px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s;
}

.btn-primary {
  background: var(--dojo-royal);
  color: white;
}

.btn-primary:hover {
  background: rgba(26, 43, 107, 0.9);
}

.btn-outline {
  background: transparent;
  color: var(--dojo-royal);
  border: 2px solid var(--dojo-royal);
}

.btn-outline:hover {
  background: var(--dojo-royal);
  color: white;
}

/* Origin section */
.origin-section {
  background: var(--dojo-royal);
  padding: 40px 6vw 80px;
}

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

.eyebrow {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dojo-pink);
  margin: 0 0 10px;
}

.section-title-light {
  font-family: var(--font-display);
  font-size: clamp(30px, 5vw, 48px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.02;
  color: var(--dojo-cream);
  margin: 0 0 36px;
}

.origin-grid {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  align-items: center;
}

.origin-map {
  flex: 1.05 1 0;
  min-width: 270px;
}

.origin-card {
  flex: 1 1 0;
  min-width: 250px;
  background: var(--dojo-cream);
  border: 1.5px solid #d9c8d5;
  border-radius: 18px;
  padding: 28px 28px 24px;
  transition: transform 0.3s cubic-bezier(0.2, 0.7, 0.3, 1), box-shadow 0.3s;
}

.origin-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(26, 43, 107, 0.12);
}

.origin-card h3 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 2px;
}

.origin-card .jp {
  font-size: 13px;
  font-weight: 600;
  color: #a38ba0;
  margin: 0 0 16px;
}

.origin-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #3a2a26;
  margin: 0 0 18px;
}

.origin-foot {
  border-top: 1px solid #e7d9c4;
  padding-top: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
}

@keyframes dom-ring {
  0% { transform: scale(0.4); opacity: 0.55; }
  100% { transform: scale(4); opacity: 0; }
}

@keyframes dom-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.map-pin-ring {
  transform-box: fill-box;
  transform-origin: center;
  animation: dom-ring 2.8s ease-out infinite;
}

.map-pin-ring.delay-1 { animation-delay: 0.9s; }
.map-pin-ring.delay-2 { animation-delay: 1.8s; }

.map-pin {
  transform-box: fill-box;
  transform-origin: center bottom;
  animation: dom-bob 3s ease-in-out infinite;
}

/* Story section */
.story-section {
  background: var(--dojo-pink-bg);
  padding: 0 6vw 80px;
}

.story-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-title-dark {
  font-family: var(--font-display);
  font-size: clamp(30px, 5vw, 48px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.02;
  margin: 0 0 18px;
}

.section-title-use {
  font-size: clamp(32px, 5.5vw, 56px);
  line-height: 1.05;
  margin-bottom: 24px;
}

.story-lead {
  font-size: 16px;
  line-height: 1.62;
  color: #5a3a26;
  margin: 0 0 32px;
  max-width: 560px;
}

.story-lead strong {
  color: var(--dojo-royal);
  font-weight: 600;
}

.video-row {
  display: flex;
  gap: 16px;
  align-items: stretch;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.video-card {
  flex: 1 1 300px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: rgba(26, 43, 107, 0.18) 0 16px 40px;
}

.video-card.reveal {
  transform: none;
  transition: opacity 0.6s ease;
}

.video-card video {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  pointer-events: none;
  -webkit-touch-callout: none;
}

.video-card video::-webkit-media-controls,
.video-card video::-webkit-media-controls-enclosure,
.video-card video::-webkit-media-controls-panel,
.video-card video::-webkit-media-controls-start-playback-button,
.video-card video::-webkit-media-controls-play-button,
.video-card video::-webkit-media-controls-overlay-play-button {
  display: none !important;
  -webkit-appearance: none;
  opacity: 0;
  pointer-events: none;
}

.video-card.sepia video {
  filter: sepia(0.35) saturate(1.3) brightness(1.05) hue-rotate(-10deg);
}

.use-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

@media (min-width: 768px) {
  .use-grid { grid-template-columns: repeat(4, 1fr); }
}

.use-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
}

.use-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.use-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 43, 107, 0.82) 0%, rgba(26, 43, 107, 0.1) 55%, transparent 100%);
}

.use-card-text {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 18px 16px;
}

.use-card-text h4 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--dojo-cream);
  margin: 0;
  line-height: 1;
}

.use-card-text p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.72);
  margin: 4px 0 0;
  line-height: 1.4;
}

/* Tokyo time band */
.ttm-band {
  background: var(--dojo-pink);
  padding: 12px 0;
  overflow: hidden;
  border-top: 3px solid var(--dojo-royal);
  border-bottom: 3px solid var(--dojo-royal);
}

.ttm-track-l,
.ttm-track-r {
  display: flex;
  flex-shrink: 0;
  will-change: transform;
}

.ttm-track-l { animation: scroll-left 28s linear infinite; }
.ttm-track-r { animation: scroll-right 34s linear infinite; }

.ttm-row {
  overflow: hidden;
  display: flex;
}

.ttm-row + .ttm-row {
  margin-top: 5px;
}

.ttm-group {
  display: flex;
  align-items: center;
  white-space: nowrap;
  flex-shrink: 0;
}

.ttm-label,
.ttm-time,
.ttm-date {
  font-family: 'Mochiy Pop One', system-ui, sans-serif;
  padding: 0 14px;
  letter-spacing: 0.04em;
}

.ttm-time {
  font-size: 17px;
  letter-spacing: 0.06em;
  color: var(--dojo-royal);
  font-variant-numeric: tabular-nums;
}

.ttm-date { font-size: 13px; }

.ttm-dot {
  font-size: 13px;
  color: var(--dojo-royal);
  opacity: 0.65;
  padding: 0 6px;
}

/* Compare section */
.compare-section {
  background: var(--dojo-royal);
  padding: 96px 24px;
}

.compare-inner {
  max-width: 56rem;
  margin: 0 auto;
}

.compare-header {
  text-align: center;
  margin-bottom: 56px;
}

.compare-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.1;
  margin: 0;
}

.compare-header h2 .pink { color: var(--dojo-pink); }
.compare-header h2 .blue { color: var(--dojo-blue); }
.compare-header h2 .white { color: white; }

.compare-header p {
  margin: 16px 0 0;
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.45);
}

.compare-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: stretch;
}

@media (min-width: 768px) {
  .compare-cards { flex-direction: row; }
}

.compare-card {
  flex: 1;
  border-radius: 24px;
  padding: 32px 40px;
  display: flex;
  flex-direction: column;
}

.compare-card.dojo {
  background: var(--dojo-pink);
  box-shadow: rgba(255, 77, 148, 0.35) 0 30px 60px;
}

.compare-card.others {
  background: #0e1a3f;
}

.compare-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  margin: 0 0 24px;
}

.compare-card.dojo h3 {
  font-size: 1.5rem;
  color: white;
}

.compare-card.others h3 {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.compare-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
  flex: 1;
}

.compare-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: 600;
  font-size: 1rem;
}

.compare-card.dojo .compare-list li { color: white; }
.compare-card.others .compare-list li { color: rgba(255, 255, 255, 0.6); }

.check-icon,
.x-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.check-icon {
  background: white;
}

.x-icon {
  background: #1e2d5c;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  font-weight: 700;
}

.compare-card .btn {
  margin-top: 32px;
  width: 100%;
  border-radius: 999px;
}

.compare-card.dojo .btn {
  background: white;
  color: var(--dojo-royal);
}

.compare-card.dojo .btn:hover {
  background: var(--dojo-royal);
  color: white;
}

/* Signup */
.signup-section {
  padding: 96px 24px;
  background: var(--dojo-pink-bg);
}

.signup-inner {
  max-width: 36rem;
  margin: 0 auto;
  text-align: center;
}

.signup-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  margin: 0;
}

.signup-inner > p {
  margin: 16px 0 0;
  font-size: 1.125rem;
  color: rgba(26, 43, 107, 0.55);
}

.signup-form {
  margin-top: 40px;
  display: grid;
  gap: 12px;
}

.signup-form input {
  width: 100%;
  border: 1px solid rgba(26, 43, 107, 0.15);
  background: rgba(255, 255, 255, 0.7);
  color: var(--dojo-royal);
  border-radius: 16px;
  padding: 16px 20px;
  font-size: 1rem;
}

.signup-form input::placeholder {
  color: rgba(26, 43, 107, 0.3);
}

.signup-form input:focus {
  outline: 2px solid var(--dojo-pink);
  outline-offset: 0;
}

.signup-form button {
  width: 100%;
  border: none;
  border-radius: 16px;
  padding: 16px;
  background: var(--dojo-royal);
  color: white;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
}

.signup-form button:hover {
  background: rgba(26, 43, 107, 0.9);
}

/* Footer */
.footer-waves {
  position: relative;
  height: 96px;
  margin-bottom: -1px;
  overflow: hidden;
}

.wave-layer {
  position: absolute;
  left: -3%;
  right: -3%;
  bottom: 0;
  display: flex;
  align-items: flex-end;
  height: 100%;
}

.wave-layer.back {
  transform: translateX(1.7%);
  opacity: 0.85;
}

.wave-layer.back span { background: var(--dojo-blue); }
.wave-layer.front span { background: var(--dojo-royal); }

.wave-layer span {
  flex: 1 1 0;
  height: 100%;
  clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
  transform-origin: center bottom;
  animation: df-puff 2.6s ease-in-out infinite;
}

.wave-layer.front span {
  animation-duration: 2.1s;
}

@keyframes df-puff {
  0%, 100% { transform: scaleY(0.42); }
  50% { transform: scaleY(1.05); }
}

.site-footer {
  background: var(--dojo-royal);
  padding: 40px 6vw 46px;
  position: relative;
  overflow: hidden;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 0 30px;
}

.footer-tagline {
  margin: 8px 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--dojo-cream);
  opacity: 0.85;
}

.footer-logo img {
  width: clamp(180px, 28vw, 340px);
  filter: drop-shadow(rgba(0, 0, 0, 0.25) 0 16px 32px);
  transition: transform 0.3s;
}

.footer-logo img:hover {
  transform: scale(1.03);
}

.footer-nav {
  display: none; /* hidden for now */
}

.footer-nav a {
  font-weight: 700;
  font-size: 16px;
  color: var(--dojo-cream);
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
  transition: border-color 0.2s, color 0.2s;
}

.footer-nav a:hover {
  border-color: var(--dojo-pink);
  color: var(--dojo-pink);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  padding-top: 22px;
  border-top: 1.5px solid rgba(255, 255, 255, 0.12);
  color: var(--dojo-cream);
  font-weight: 600;
  font-size: 14px;
}

.footer-social {
  display: flex;
  gap: 22px;
}

.footer-social a {
  opacity: 0.7;
  transition: opacity 0.2s;
}

.footer-social a:hover { opacity: 1; }

.footer-copy { opacity: 0.4; }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ── Product page ── */
.product-page {
  background: var(--dojo-cream);
}

.product-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 24px;
  background: rgba(253, 251, 245, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid rgba(26, 43, 107, 0.08);
}

.product-nav-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  color: var(--dojo-royal);
}

.product-nav-links {
  display: none;
  gap: 28px;
}

@media (min-width: 640px) {
  .product-nav-links { display: flex; }
}

.product-nav-links a {
  font-weight: 700;
  font-size: 0.9rem;
  color: rgba(26, 43, 107, 0.55);
  transition: color 0.2s;
}

.product-nav-links a:hover,
.product-nav-links a.active {
  color: var(--dojo-royal);
}

.product-nav-links a.active {
  border-bottom: 2px solid var(--dojo-pink);
  padding-bottom: 2px;
}

.product-nav-cta {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.875rem;
  background: var(--dojo-royal);
  color: white;
  padding: 10px 22px;
  border-radius: 999px;
  transition: background 0.2s;
}

.product-nav-cta:hover {
  background: rgba(26, 43, 107, 0.88);
}

.product-hero {
  padding: 32px 24px 64px;
  background: var(--dojo-pink-bg);
}

.product-hero-inner {
  max-width: 72rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

@media (min-width: 900px) {
  .product-hero-inner {
    flex-direction: row;
    align-items: flex-start;
    gap: 64px;
    padding: 24px 0 0;
  }
}

.product-gallery {
  flex: 1.1;
}

.product-gallery-main {
  background: var(--dojo-cream);
  border-radius: 28px;
  border: 2px solid rgba(26, 43, 107, 0.08);
  padding: 48px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 380px;
  box-shadow: rgba(26, 43, 107, 0.08) 0 24px 48px;
}

.product-gallery-main img {
  width: min(280px, 70%);
  filter: drop-shadow(0 20px 24px rgba(0, 0, 0, 0.12));
  transition: opacity 0.3s;
}

.product-gallery-thumbs {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.product-thumb {
  flex: 1;
  max-width: 96px;
  aspect-ratio: 1;
  border: 2px solid rgba(26, 43, 107, 0.1);
  border-radius: 16px;
  background: var(--dojo-cream);
  padding: 8px;
  cursor: pointer;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}

.product-thumb:hover {
  transform: translateY(-2px);
}

.product-thumb.active {
  border-color: var(--dojo-pink);
  box-shadow: 0 0 0 1px var(--dojo-pink);
}

.product-thumb img,
.product-thumb video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.product-badge {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: white;
  color: var(--dojo-royal);
  border: 1.5px solid rgba(26, 43, 107, 0.12);
  border-radius: 999px;
  padding: 6px 14px;
}

.product-buy {
  flex: 1;
  max-width: 480px;
}

.product-eyebrow {
  margin-bottom: 8px;
}

.product-title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  margin: 0;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
}

.stars {
  color: #ffb800;
  font-size: 1rem;
  letter-spacing: 2px;
}

.rating-text {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(26, 43, 107, 0.5);
}

.product-lead {
  margin: 18px 0 0;
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(26, 43, 107, 0.6);
}

.purchase-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 28px;
  padding: 4px;
  background: rgba(26, 43, 107, 0.06);
  border-radius: 16px;
}

.purchase-option {
  border: none;
  background: transparent;
  border-radius: 12px;
  padding: 14px 16px;
  cursor: pointer;
  text-align: center;
  transition: background 0.2s, box-shadow 0.2s;
}

.purchase-option.active {
  background: white;
  box-shadow: rgba(26, 43, 107, 0.1) 0 4px 12px;
}

.purchase-option-label {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--dojo-royal);
}

.purchase-option-save {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--dojo-pink);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 2px;
}

.product-price-row {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 12px;
}

.product-price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--dojo-royal);
}

.product-price-compare {
  font-size: 1.125rem;
  font-weight: 600;
  color: rgba(26, 43, 107, 0.35);
  text-decoration: line-through;
}

.product-price-note {
  flex-basis: 100%;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(26, 43, 107, 0.45);
}

.quantity-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
  padding: 12px 0;
  border-top: 1px solid rgba(26, 43, 107, 0.08);
  border-bottom: 1px solid rgba(26, 43, 107, 0.08);
}

.quantity-label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
}

.quantity-control {
  display: flex;
  align-items: center;
  gap: 4px;
  background: white;
  border: 1.5px solid rgba(26, 43, 107, 0.12);
  border-radius: 999px;
  padding: 4px;
}

.qty-btn {
  width: 36px;
  height: 36px;
  border: none;
  background: transparent;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--dojo-royal);
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s;
}

.qty-btn:hover {
  background: rgba(26, 43, 107, 0.06);
}

.qty-value {
  min-width: 32px;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
}

.btn-add-cart {
  width: 100%;
  margin-top: 20px;
  font-size: 1.05rem;
  padding: 16px 32px;
}

.product-shipping {
  text-align: center;
  margin: 12px 0 0;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(26, 43, 107, 0.4);
}

.product-highlights {
  list-style: none;
  margin: 32px 0 0;
  padding: 0;
  display: grid;
  gap: 16px;
}

.product-highlights li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.highlight-icon {
  font-size: 1.25rem;
  line-height: 1;
  flex-shrink: 0;
}

.product-highlights strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
}

.product-highlights span {
  font-size: 0.8rem;
  color: rgba(26, 43, 107, 0.55);
  line-height: 1.4;
}

.product-marquee {
  border-top: none;
}

.product-inside {
  padding: 80px 24px;
  background: var(--dojo-royal);
}

.product-inside-inner {
  max-width: 72rem;
  margin: 0 auto;
}

.product-inside-copy {
  max-width: 520px;
  margin-bottom: 48px;
}

.product-inside-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--dojo-cream);
  margin: 0 0 16px;
}

.product-inside-copy p {
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(253, 251, 245, 0.65);
  margin: 0;
}

.ingredient-grid {
  display: grid;
  gap: 16px;
}

@media (min-width: 640px) {
  .ingredient-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 960px) {
  .ingredient-grid { grid-template-columns: repeat(4, 1fr); }
}

.ingredient-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 28px 24px;
  transition: transform 0.3s, background 0.3s;
}

.ingredient-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.1);
}

.ingredient-num {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--dojo-pink);
  letter-spacing: 0.1em;
}

.ingredient-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--dojo-cream);
  margin: 8px 0 10px;
}

.ingredient-card p {
  font-size: 0.875rem;
  line-height: 1.55;
  color: rgba(253, 251, 245, 0.6);
  margin: 0;
}

.product-uses {
  padding: 80px 6vw;
  background: var(--dojo-pink-bg);
}

.product-uses-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.product-nutrition {
  padding: 80px 24px;
  background: var(--dojo-cream);
}

.product-nutrition-inner {
  max-width: 56rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

@media (min-width: 768px) {
  .product-nutrition-inner {
    flex-direction: row;
    gap: 64px;
  }
}

.nutrition-card {
  flex: 1;
  background: white;
  border: 2px solid rgba(26, 43, 107, 0.08);
  border-radius: 24px;
  padding: 32px;
  min-width: 280px;
}

.nutrition-card h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  margin: 4px 0 20px;
}

.nutrition-list {
  margin: 0;
  padding: 0;
}

.nutrition-list div {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(26, 43, 107, 0.08);
  font-size: 0.9rem;
}

.nutrition-list dt {
  font-weight: 600;
  color: rgba(26, 43, 107, 0.7);
}

.nutrition-list dd {
  margin: 0;
  font-weight: 700;
}

.nutrition-note {
  margin: 16px 0 0;
  font-size: 0.8rem;
  color: rgba(26, 43, 107, 0.45);
  line-height: 1.5;
}

.nutrition-copy {
  flex: 1.2;
}

.nutrition-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin: 0 0 16px;
}

.nutrition-copy p {
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(26, 43, 107, 0.6);
  margin: 0 0 24px;
}

.product-reviews {
  padding: 80px 24px;
  background: var(--dojo-pink-bg);
}

.product-reviews-inner {
  max-width: 72rem;
  margin: 0 auto;
}

.reviews-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin: 0;
}

.reviews-grid {
  display: grid;
  gap: 16px;
  margin-top: 40px;
}

@media (min-width: 768px) {
  .reviews-grid { grid-template-columns: repeat(3, 1fr); }
}

.review-card {
  background: white;
  border-radius: 20px;
  padding: 28px 24px;
  margin: 0;
  border: 1.5px solid rgba(26, 43, 107, 0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: rgba(26, 43, 107, 0.1) 0 16px 32px;
}

.review-stars {
  color: #ffb800;
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.review-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(26, 43, 107, 0.75);
  margin: 0 0 16px;
}

.review-card footer {
  font-size: 0.8rem;
  color: rgba(26, 43, 107, 0.45);
}

.review-card footer strong {
  color: var(--dojo-royal);
}

.product-faq {
  padding: 80px 24px;
  background: var(--dojo-royal);
}

.product-faq-inner {
  max-width: 640px;
  margin: 0 auto;
}

.faq-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--dojo-cream);
  margin: 0;
}

.faq-list {
  margin-top: 36px;
  display: grid;
  gap: 8px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  overflow: hidden;
  transition: background 0.2s;
}

.faq-item[open] {
  background: rgba(255, 255, 255, 0.08);
}

.faq-item summary {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--dojo-cream);
  padding: 20px 24px;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--dojo-pink);
  flex-shrink: 0;
  transition: transform 0.2s;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  margin: 0;
  padding: 0 24px 20px;
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(253, 251, 245, 0.65);
}

.product-cta-band {
  padding: 64px 24px 80px;
  background: var(--dojo-pink);
}

.product-cta-inner {
  max-width: 56rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

@media (min-width: 640px) {
  .product-cta-inner {
    flex-direction: row;
    text-align: left;
    gap: 40px;
  }
}

.product-cta-bottle {
  width: 140px;
  filter: drop-shadow(0 16px 24px rgba(0, 0, 0, 0.15));
  animation: float-in 1s ease both;
}

.product-cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.08;
  color: white;
  margin: 0;
}

.product-cta-inner p {
  margin: 10px 0 20px;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.75);
}

.product-cta-inner .btn-primary {
  background: white;
  color: var(--dojo-royal);
}

.product-cta-inner .btn-primary:hover {
  background: var(--dojo-royal);
  color: white;
}

.product-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 20px;
  background: rgba(253, 251, 245, 0.96);
  backdrop-filter: blur(12px);
  border-top: 2px solid rgba(26, 43, 107, 0.08);
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.2, 0.7, 0.3, 1);
  box-shadow: 0 -8px 32px rgba(26, 43, 107, 0.08);
}

.product-sticky-bar.visible {
  transform: translateY(0);
}

.sticky-bar-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sticky-bar-info strong {
  font-family: var(--font-display);
  font-size: 0.9rem;
}

.sticky-bar-info span {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--dojo-pink);
}

.btn-add-cart-sticky {
  flex-shrink: 0;
  padding: 12px 24px;
  font-size: 0.9rem;
}

@media (min-width: 900px) {
  .product-sticky-bar { display: none; }
}

.product-page .footer-waves + .site-footer {
  padding-bottom: 80px;
}

@media (min-width: 900px) {
  .product-page .footer-waves + .site-footer {
    padding-bottom: 46px;
  }
}
