:root {
  --v3-pink: #FFB5C5;
  --v3-pink-bg: #FFE5EC;
  --v3-sky: #B8E7F2;
  --v3-sky-bg: #E8F7FB;
  --v3-yellow: #FFD93D;
  --v3-yellow-bg: #FFF5BA;
  --v3-lavender: #D5BFFF;
  --v3-lavender-bg: #F1E8FF;
  --v3-red: #FF4858;
  --v3-blue: #3EC6E0;
  --v3-ink: #2D1B4E;
  --v3-ink-soft: #5C4B7A;
  --v3-white: #ffffff;
  --v3-shadow: 4px 4px 0 var(--v3-ink);
  --v3-shadow-lg: 6px 6px 0 var(--v3-ink);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Nunito', system-ui, sans-serif;
  background: var(--v3-pink-bg);
  color: var(--v3-ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, .v3-brand span, .v3-section-title {
  font-family: 'Baloo 2', system-ui, sans-serif;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.v3-container { width: min(1160px, 92%); margin: 0 auto; }

/* ============ HEADER ============ */
.v3-header {
  position: sticky;
  top: 60px;
  z-index: 40;
  background: var(--v3-white);
  border-bottom: 4px solid var(--v3-ink);
}
.v3-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  position: relative;
}
.v3-brand { display: flex; align-items: center; gap: 10px; }
.v3-brand-logo { width: 46px; height: 46px; }
.v3-brand span { font-size: 1.4rem; color: var(--v3-ink); }
.v3-nav { display: flex; gap: 10px; }
.v3-nav a {
  padding: 10px 18px;
  font-weight: 700;
  font-size: .95rem;
  color: var(--v3-ink);
  border-radius: 999px;
  transition: background 0.2s, transform 0.2s;
}
.v3-nav a:hover {
  background: var(--v3-yellow);
  transform: rotate(-2deg) scale(1.05);
}
.v3-toggle {
  display: none;
  background: var(--v3-yellow);
  border: 3px solid var(--v3-ink);
  border-radius: 12px;
  cursor: pointer;
  width: 44px; height: 40px;
  box-shadow: var(--v3-shadow);
}
.v3-toggle span {
  display: block;
  width: 20px;
  height: 3px;
  background: var(--v3-ink);
  margin: 3px auto;
  border-radius: 2px;
}

/* ============ HERO ============ */
.v3-hero {
  position: relative;
  padding: 90px 0 140px;
  background: linear-gradient(180deg, var(--v3-pink-bg) 0%, var(--v3-sky-bg) 100%);
  overflow: hidden;
  text-align: center;
}
.v3-hero-inner { position: relative; z-index: 2; }
.v3-hero-crown {
  width: 120px;
  margin: 0 auto 20px;
  animation: v3-bob 3s ease-in-out infinite;
  filter: drop-shadow(6px 8px 0 var(--v3-ink));
}
@keyframes v3-bob {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50%      { transform: translateY(-12px) rotate(3deg); }
}
.v3-hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  color: var(--v3-ink);
  margin-bottom: 18px;
}
.v3-wiggle {
  display: inline-block;
  background: var(--v3-yellow);
  padding: 0 18px;
  border: 4px solid var(--v3-ink);
  border-radius: 20px;
  box-shadow: var(--v3-shadow);
  transform: rotate(-2deg);
  animation: v3-wiggle 3s ease-in-out infinite;
}
@keyframes v3-wiggle {
  0%, 100% { transform: rotate(-2deg); }
  50%      { transform: rotate(2deg); }
}
.v3-lead {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 34px;
  color: var(--v3-ink-soft);
  font-weight: 600;
}
.v3-cta-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.v3-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 30px;
  font-family: 'Baloo 2', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  border: 4px solid var(--v3-ink);
  border-radius: 999px;
  transition: transform 0.15s, box-shadow 0.15s;
  cursor: pointer;
}
.v3-btn-pop {
  background: var(--v3-red);
  color: var(--v3-white);
  box-shadow: var(--v3-shadow-lg);
}
.v3-btn-pop:hover, .v3-btn-pop:active {
  transform: translate(3px, 3px);
  box-shadow: 2px 2px 0 var(--v3-ink);
}
.v3-btn-ghost {
  background: var(--v3-white);
  color: var(--v3-ink);
  box-shadow: var(--v3-shadow-lg);
}
.v3-btn-ghost:hover {
  transform: translate(3px, 3px);
  box-shadow: 2px 2px 0 var(--v3-ink);
}
.v3-btn-block { width: 100%; justify-content: center; margin-top: 16px; }

/* HERO decorations */
.v3-deco {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  animation: v3-float 5s ease-in-out infinite;
}
.v3-deco-star {
  color: var(--v3-yellow);
  font-size: 3.2rem;
  -webkit-text-stroke: 3px var(--v3-ink);
}
.v3-deco-heart { color: var(--v3-red); font-size: 2rem; }
.v3-deco-s1 { top: 14%; left: 6%; animation-delay: 0s; }
.v3-deco-s2 { top: 20%; right: 8%; animation-delay: 1.2s; font-size: 2.4rem; color: var(--v3-blue); }
.v3-deco-h1 { top: 40%; left: 12%; animation-delay: 0.5s; }
.v3-deco-h2 { bottom: 30%; right: 14%; animation-delay: 1.5s; font-size: 2.6rem; }
.v3-deco-dot {
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 3px solid var(--v3-ink);
}
.v3-deco-d1 { top: 60%; left: 20%; background: var(--v3-lavender); animation-delay: 0.8s; }
.v3-deco-d2 { top: 25%; right: 22%; background: var(--v3-yellow); animation-delay: 2s; width: 22px; height: 22px; }
@keyframes v3-float {
  0%, 100% { transform: translateY(0) rotate(0); }
  50%      { transform: translateY(-18px) rotate(8deg); }
}

/* ============ WAVES ============ */
.v3-wave {
  width: 100%;
  height: 80px;
  display: block;
  margin-bottom: -1px;
}
.v3-wave-hero { position: absolute; bottom: 0; left: 0; fill: var(--v3-sky-bg); }
.v3-products { background: var(--v3-sky-bg); position: relative; padding: 100px 0 140px; }
.v3-products .v3-wave { fill: var(--v3-yellow-bg); position: absolute; bottom: 0; left: 0; }
.v3-about { background: var(--v3-yellow-bg); position: relative; padding: 100px 0 140px; }
.v3-about .v3-wave { fill: var(--v3-lavender-bg); position: absolute; bottom: 0; left: 0; }
.v3-location { background: var(--v3-lavender-bg); position: relative; padding: 100px 0 140px; }
.v3-location .v3-wave { fill: var(--v3-pink-bg); position: absolute; bottom: 0; left: 0; }
.v3-instagram { background: var(--v3-pink-bg); position: relative; padding: 100px 0 140px; }
.v3-instagram .v3-wave { fill: var(--v3-sky-bg); position: absolute; bottom: 0; left: 0; }
.v3-contact { background: var(--v3-sky-bg); position: relative; padding: 100px 0 120px; }

/* ============ SECTION TITLE ============ */
.v3-section-title {
  font-size: clamp(2rem, 4.2vw, 3rem);
  text-align: center;
  color: var(--v3-ink);
  margin-bottom: 10px;
}
.v3-doodle { display: inline-block; animation: v3-spin 4s linear infinite; }
@keyframes v3-spin { from { transform: rotate(0); } to { transform: rotate(360deg); } }
.v3-section-sub {
  text-align: center;
  font-size: 1.1rem;
  color: var(--v3-ink-soft);
  margin-bottom: 50px;
  font-weight: 600;
}

/* ============ PRODUCTS ============ */
.v3-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.v3-card {
  background: var(--v3-white);
  padding: 36px 28px;
  border: 4px solid var(--v3-ink);
  border-radius: 28px;
  box-shadow: var(--v3-shadow-lg);
  text-align: center;
  position: relative;
  transition: transform 0.25s;
}
.v3-card:hover { transform: translateY(-6px) rotate(-1deg); }
.v3-card-1 { background: var(--v3-pink); }
.v3-card-2 { background: var(--v3-yellow); }
.v3-card-3 { background: var(--v3-sky); }
.v3-card-emoji { font-size: 3.4rem; margin-bottom: 12px; }
.v3-card h3 {
  font-size: 1.7rem;
  margin-bottom: 10px;
  color: var(--v3-ink);
}
.v3-card p {
  color: var(--v3-ink);
  font-weight: 600;
  font-size: 1rem;
}
.v3-sticker {
  position: absolute;
  top: -14px;
  right: -10px;
  background: var(--v3-white);
  border: 3px solid var(--v3-ink);
  border-radius: 999px;
  padding: 6px 14px;
  font-weight: 800;
  font-size: .85rem;
  transform: rotate(8deg);
  box-shadow: 2px 2px 0 var(--v3-ink);
}

/* ============ ABOUT ============ */
.v3-about-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
.v3-about-copy p {
  font-size: 1.08rem;
  color: var(--v3-ink);
  margin: 20px 0 30px;
  font-weight: 600;
}
.v3-perks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.v3-perk {
  background: var(--v3-white);
  border: 3px solid var(--v3-ink);
  border-radius: 16px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 3px 3px 0 var(--v3-ink);
  font-size: .95rem;
}
.v3-perk span { font-size: 1.7rem; }
.v3-perk b { font-weight: 800; }

.v3-about-art {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.v3-about-crown {
  width: 280px;
  filter: drop-shadow(6px 8px 0 var(--v3-ink));
  animation: v3-bob 3.5s ease-in-out infinite;
}
.v3-bubble {
  position: absolute;
  background: var(--v3-white);
  border: 4px solid var(--v3-ink);
  border-radius: 50%;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: var(--v3-shadow);
  animation: v3-float 4s ease-in-out infinite;
}
.v3-bubble-1 { top: 10%; left: 5%; background: var(--v3-yellow); }
.v3-bubble-2 { top: 20%; right: 5%; background: var(--v3-pink); animation-delay: 1s; }
.v3-bubble-3 { bottom: 10%; left: 15%; background: var(--v3-sky); animation-delay: 2s; }

/* ============ LOCATION ============ */
.v3-location-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 26px;
  align-items: stretch;
}
.v3-map {
  background: var(--v3-white);
  border: 4px solid var(--v3-ink);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--v3-shadow-lg);
  min-height: 440px;
}
.v3-map iframe { width: 100%; height: 100%; min-height: 440px; border: 0; display: block; }
.v3-location-info {
  background: var(--v3-white);
  border: 4px solid var(--v3-ink);
  border-radius: 24px;
  padding: 30px 28px;
  box-shadow: var(--v3-shadow-lg);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.v3-bubble-big {
  width: 72px;
  height: 72px;
  background: var(--v3-yellow);
  border: 4px solid var(--v3-ink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  box-shadow: 3px 3px 0 var(--v3-ink);
  margin-bottom: 16px;
  transform: rotate(-5deg);
}
.v3-location-info h3 {
  font-size: 1.35rem;
  margin-bottom: 4px;
}
.v3-location-info p { color: var(--v3-ink-soft); font-weight: 600; }
.v3-hours {
  width: 100%;
  margin: 22px 0;
  background: var(--v3-pink-bg);
  border: 3px solid var(--v3-ink);
  border-radius: 16px;
  padding: 16px 18px;
  text-align: left;
}
.v3-hours-title {
  font-family: 'Baloo 2', sans-serif;
  font-weight: 800;
  margin-bottom: 10px;
  text-align: center;
}
.v3-hours-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 4px 0;
  font-size: .92rem;
  border-bottom: 1px dashed rgba(45, 27, 78, 0.2);
}
.v3-hours-row:last-child { border-bottom: 0; }
.v3-hours-row strong { font-weight: 800; }
.v3-hours-row span { color: var(--v3-ink-soft); font-weight: 600; }

/* ============ INSTAGRAM ============ */
.v3-ig-handle {
  font-weight: 800;
  color: var(--v3-red);
  border-bottom: 3px solid var(--v3-red);
}
.v3-ig-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 36px;
  justify-items: center;
}
.v3-ig-post {
  position: relative;
  display: block;
  width: 100%;
  max-width: 380px;
  height: 460px;
  background: var(--v3-white);
  border: 4px solid var(--v3-ink);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--v3-shadow-lg);
  transition: transform 0.25s;
}
.v3-tilt-0 { transform: rotate(-2deg); }
.v3-tilt-1 { transform: rotate(1.5deg); }
.v3-tilt-2 { transform: rotate(-1deg); }
.v3-tilt-3 { transform: rotate(2deg); }
.v3-ig-post:hover { transform: rotate(0) translateY(-6px); }
.v3-ig-post iframe {
  width: 100%;
  height: 900px;
  border: 0;
  display: block;
  pointer-events: none;
}
.v3-ig-cta {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 72px;
  padding-bottom: 16px;
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, #fff 55%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  font-family: 'Baloo 2', sans-serif;
  font-weight: 800;
  color: var(--v3-red);
  z-index: 2;
}

/* ============ CONTACT ============ */
.v3-contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.v3-contact-card {
  background: var(--v3-white);
  border: 4px solid var(--v3-ink);
  border-radius: 24px;
  padding: 36px 26px;
  text-align: center;
  box-shadow: var(--v3-shadow-lg);
  transition: transform 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.v3-contact-card:hover { transform: translate(3px, 3px) rotate(-1deg); box-shadow: 3px 3px 0 var(--v3-ink); }
.v3-c-wa    { background: #DFFCE7; }
.v3-c-phone { background: var(--v3-pink); }
.v3-c-ig    { background: var(--v3-lavender); }
.v3-c-emoji {
  width: 70px; height: 70px;
  background: var(--v3-white);
  border: 3px solid var(--v3-ink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 6px;
  box-shadow: 2px 2px 0 var(--v3-ink);
}
.v3-contact-card strong {
  font-family: 'Baloo 2', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
}
.v3-contact-card span { font-weight: 700; color: var(--v3-ink); }

/* ============ FOOTER ============ */
.v3-footer {
  background: var(--v3-ink);
  color: var(--v3-white);
  padding: 28px 0;
}
.v3-footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}
.v3-footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Baloo 2', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
}
.v3-footer-brand img { width: 32px; height: 32px; }

/* ============ WA FLOAT ============ */
.v3-wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 64px;
  height: 64px;
  background: #25D366;
  border: 4px solid var(--v3-ink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--v3-shadow-lg);
  z-index: 60;
  transition: transform 0.2s;
}
.v3-wa-float:hover { transform: translate(3px, 3px); box-shadow: 2px 2px 0 var(--v3-ink); }
.v3-wa-float svg { width: 30px; height: 30px; fill: #fff; }

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .v3-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--v3-white);
    flex-direction: column;
    padding: 18px;
    gap: 10px;
    border-bottom: 4px solid var(--v3-ink);
  }
  .v3-nav.open { display: flex; }
  .v3-toggle { display: block; }

  .v3-hero { padding: 60px 0 120px; }
  .v3-hero-crown { width: 90px; }
  .v3-deco { display: none; }

  .v3-cards { grid-template-columns: 1fr; gap: 36px; }
  .v3-about-inner { grid-template-columns: 1fr; gap: 40px; }
  .v3-about-art { min-height: 280px; }
  .v3-about-crown { width: 200px; }
  .v3-location-grid { grid-template-columns: 1fr; }
  .v3-contact-cards { grid-template-columns: 1fr; }
  .v3-ig-grid { grid-template-columns: 1fr; }
  .v3-tilt-0, .v3-tilt-1, .v3-tilt-2, .v3-tilt-3 { transform: none; }
}
