:root {
  --mint-green: #a2d5c6; /* Lighter, less saturated mint */
  --mint-soft: #c8e6dd; /* Very pale mint for backgrounds */
  --dark-brown: #5c4033; /* Dark, but less intense brown for headlines */
  --light-brown: #7a5c58; /* Softer brown for body text */
  --cream: #f7f6f1; /* A more neutral, less yellow off-white */
  --cream-deep: #ede7d8; /* Slightly darker cream for layered surfaces */
  --pink: #e88d9e; /* A softer, dustier pink */
  --pink-soft: #f5c5cd; /* Pastel pink for accents/glows */
  --pink-deep: #d45a75; /* Darker pink for active/hover */
  --peach: #ffd4b8; /* Warm peach tertiary accent */
  --error-red: #c25469; /* Form errors / "danger" text */
  --form-bg: #f9f9f9; /* Form section background */
  --form-border: #ccc; /* Form input border */
  --copyright-text: #e0e0e0; /* Footer copyright text */
}

html {
  /* Prevent iOS Safari from auto-resizing text on rotation */
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  /* Smoother momentum scrolling on iOS */
  -webkit-overflow-scrolling: touch;
}

body {
  font-family: "Nunito", sans-serif;
  background-color: var(--cream);
  color: var(--light-brown);
  margin: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  line-height: 1.6;
  font-size: 1.1rem; /* Slightly larger base font size */
  overflow-x: hidden;
  overflow-x: clip; /* preferred when supported — won't create a scroll container */
  /* Crisper text rendering on macOS / iOS */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Remove the grey tap flash on iOS / Android Chrome */
  -webkit-tap-highlight-color: rgb(0, 0, 0, 0);
  /* Stop pull-to-refresh / overscroll bounce on body */
  overscroll-behavior-y: none;
}

/* Carousel needs touch-action so vertical page scroll still works on touch */
.carousel {
  touch-action: pan-y;
}

/* Ensure clickable elements meet the 44px minimum tap-target on touch devices */
@media (pointer: coarse) {
  a,
  button,
  .btn,
  .nav-toggle,
  input[type="submit"],
  input[type="button"],
  [role="button"] {
    min-height: 44px;
  }
}

/* Selection color matches brand */
::selection {
  background-color: var(--pink-soft);
  color: var(--dark-brown);
}

main {
  padding: 2rem;
  flex-grow: 1;
  max-width: 100%;
  margin: 0 auto; /* Center the main content */
}

.main-wide {
  max-width: 1200px;
}

.faq-item {
  text-align: center; /* Center the questions and answers */
}

h2 {
  text-align: center; /* Center the 'Frequently Asked Questions' heading */
}

h2,
h3,
h4 {
  color: var(--dark-brown);
  font-weight: 700; /* Assuming Nunito's bold weight is 700 */
}

.new-arrivals h4 {
  font-weight: 400; /* Lighter weight */
  text-transform: uppercase;
  letter-spacing: 2px; /* Add some spacing for style */
  font-size: 1.2rem;
}

.btn {
  background-color: transparent;
  color: var(--pink);
  padding: 0.5rem 1rem;
  text-decoration: none;
  border-radius: 20px;
  border: 2px solid var(--pink);
  cursor: pointer;
  transition: all 0.4s ease;
}

.btn:hover {
  background-color: var(--pink);
  color: var(--cream);
  transform: translateY(-2px);
}

.btn-solid {
  background-color: var(--pink);
  color: var(--cream);
  border-color: var(--pink);
  position: relative;
  box-shadow:
    0 4px 0 var(--pink-soft),
    0 8px 18px rgb(232, 141, 158, 0.25);
  transform: rotate(-1deg);
  transition:
    transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.3s ease,
    background-color 0.3s ease;
}

.btn-solid:hover {
  background-color: var(--pink-deep);
  border-color: var(--pink-deep);
  color: var(--cream);
  transform: rotate(1deg) translateY(-3px) scale(1.03);
  box-shadow:
    0 6px 0 var(--pink-soft),
    0 12px 24px rgb(212, 90, 117, 0.35);
}

.btn-solid:active {
  transform: rotate(-1deg) translateY(0) scale(0.99);
  box-shadow:
    0 2px 0 var(--pink-soft),
    0 4px 10px rgb(212, 90, 117, 0.25);
}

/* Sticker-style CTA: dashed peeling-corner accent */
.btn-sticker {
  background-color: var(--cream);
  color: var(--dark-brown);
  border: 2px dashed var(--pink);
  border-radius: 18px;
  padding: 0.6rem 1.4rem;
  text-decoration: none;
  font-weight: 700;
  display: inline-block;
  transform: rotate(-2deg);
  box-shadow: 3px 3px 0 var(--mint-soft);
  transition:
    transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.3s ease;
}

.btn-sticker:hover {
  transform: rotate(2deg) translateY(-2px);
  box-shadow: 4px 4px 0 var(--peach);
}

.new-arrivals {
  text-align: center;
  margin-top: 2rem;
}

.new-arrivals-panel {
  position: relative;
  background-color: #ecf6f2;
  background-image:
    radial-gradient(circle at 12% 18%, rgb(255, 212, 184, 0.35) 0, transparent 28%),
    radial-gradient(circle at 88% 82%, rgb(245, 197, 205, 0.35) 0, transparent 30%);
  border: 1px solid var(--mint-green);
  border-radius: 28px;
  padding: 2.5rem 1.5rem 2rem;
  /* Break out of .main-wide's 1200px cap and span ~70% of the viewport */
  width: 90vw;
  max-width: 1500px;
  margin: 1rem 0 0;
  left: 50%;
  transform: translateX(-50%);
  box-shadow:
    0 6px 0 rgb(162, 213, 198, 0.35),
    0 18px 38px rgb(92, 64, 51, 0.08);
  overflow: hidden;
}

@media (min-width: 1100px) {
  .new-arrivals-panel {
    width: 70vw;
  }
}

.new-arrivals-panel h2,
.new-arrivals-panel h4 {
  position: relative;
  z-index: 2;
}

.new-arrivals-panel .carousel {
  position: relative;
  z-index: 2;
}

.panel-doodle {
  position: absolute;
  font-size: 1.4rem;
  color: var(--pink);
  opacity: 0.55;
  z-index: 1;
  user-select: none;
  pointer-events: none;
  animation: panel-doodle-float 6s ease-in-out infinite;
}

.panel-doodle-tl {
  top: 1.1rem;
  left: 1.2rem;
  color: var(--mint-green);
  animation-delay: 0s;
}

.panel-doodle-tr {
  top: 1.4rem;
  right: 1.5rem;
  color: var(--peach);
  font-size: 1.6rem;
  animation-delay: 1.5s;
}

.panel-doodle-bl {
  bottom: 1.6rem;
  left: 1.8rem;
  color: var(--pink-soft);
  font-size: 1.5rem;
  animation-delay: 3s;
}

.panel-doodle-br {
  bottom: 1.2rem;
  right: 1.3rem;
  color: var(--mint-green);
  animation-delay: 4.5s;
}

@keyframes panel-doodle-float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.55;
  }
  50% {
    transform: translateY(-6px) rotate(8deg);
    opacity: 0.85;
  }
}

.new-arrivals-cta {
  position: relative;
  z-index: 2;
  margin-top: 1.5rem;
}

.carousel {
  max-width: min(100%, 1180px);
  margin: 0 auto;
  gap: 1rem;
  display: flex;
}

.carousel-item-inner {
  padding: 1.5rem 1.5rem 1.25rem;
  border-radius: 18px;
  background-color: white;
  border: 1px solid var(--cream-deep);
  box-shadow:
    0 4px 0 var(--pink-soft),
    0 10px 24px rgb(92, 64, 51, 0.1);
  transition:
    transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
    box-shadow 0.4s ease;
  cursor: pointer;
  text-align: center;
}

.carousel-item-inner:hover {
  transform: scale(1.05) rotate(2deg);
  box-shadow:
    0 6px 0 var(--pink-soft),
    0 14px 28px rgb(92, 64, 51, 0.16);
}

.carousel-item-inner img {
  max-width: 220px;
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  margin: 0 auto;
  background-color: var(--cream);
}

.carousel-item-inner p {
  font-family: "Fredoka One", cursive;
  color: var(--dark-brown);
  font-size: 1.05rem;
  margin: 0.85rem 0 0;
  letter-spacing: 0.5px;
}

/* Lightbox Styles */
.lightbox {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0, 0, 0, 0.8);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox.active {
  display: flex;
  opacity: 1;
}

.lightbox-content {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
  box-shadow: 0 8px 30px rgb(0, 0, 0, 0.5);
  transform: scale(0.8);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.lightbox.active .lightbox-content {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s;
}

.lightbox-close:hover {
  color: var(--pink);
}

.catalog {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 100%;
}

.plushie-details,
.plushie-series {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.plushie-image,
.plushie-image-group {
  flex: 1;
}

.plushie-series .plushie-image {
  text-align: right;
}

.plushie-info {
  flex: 2;
}

.plushie-image img,
.plushie-image-group img {
  max-width: 100%;
  border-radius: 10px;
  transition: transform 0.3s ease;
  display: inline-block;
  vertical-align: middle;
}

.plushie-image img:hover,
.plushie-image-group img:hover {
  transform: scale(1.05);
}

.plushie-image-group {
  display: flex;
  gap: 1rem;
}

.workshop-contact {
  display: flex;
  gap: 2rem;
}

.workshop-timeline {
  flex: 1;
  background-color: var(--mint-green);
  padding: 1rem;
  border-radius: 10px;
}

.workshop-timeline ul {
  list-style: none;
  padding-left: 1rem;
  border-left: 2px solid var(--dark-brown);
}

.workshop-timeline li {
  margin-bottom: 2rem;
  position: relative;
}

.workshop-timeline li::before {
  content: "";
  position: absolute;
  left: -1.5rem;
  top: 0.25rem;
  width: 1rem;
  height: 1rem;
  background-color: var(--dark-brown);
  border-radius: 50%;
}

.contact-form-section {
  flex: 2;
  background-color: var(--form-bg);
  padding: 2rem;
  border-radius: 10px;
}

.contact-form-section form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form-section input,
.contact-form-section textarea {
  border: 1px solid var(--form-border);
  padding: 0.5rem;
  border-radius: 5px;
}

footer {
  text-align: center;
  padding: 1rem 0 max(1rem, env(safe-area-inset-bottom));
  margin-top: 2rem;
  background-color: var(--dark-brown);
  color: var(--cream);
}

/* Sticky Reveal Footer */
body.reveal-footer-active {
  display: block !important;
  background-color: var(--dark-brown) !important;
}

.site-content-wrapper {
  background-color: var(--cream);
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  box-shadow: 0 10px 30px rgb(0, 0, 0, 0.5);
}

footer.reveal-footer {
  position: fixed !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 100% !important;
  z-index: 0 !important;
  margin-top: 0 !important;
}

/* New Hero Header Styles */
.hero-header {
  background-color: var(--mint-green);
  color: white;
  padding: max(1rem, env(safe-area-inset-top)) max(2rem, env(safe-area-inset-right)) 1rem
    max(2rem, env(safe-area-inset-left));
  display: flex;
  flex-direction: column;
  min-height: 50vh; /* Adjust as needed */
  justify-content: center;
  text-align: center;
}

.hero-header-simple {
  min-height: auto;
  background-color: #fff; /* Or a very light grey */
  box-shadow: 0 2px 4px rgb(0, 0, 0, 0.05);
}

.hero-header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  padding: 1.5rem 2rem;
  box-sizing: border-box; /* Ensures padding is included in width */
}

.hero-header-simple nav {
  position: static;
}

.brand-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark-brown);
}

.hero-header nav > ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
}

.hero-header nav ul li {
  margin: 0 0.5rem;
}

.hero-header nav ul li a {
  text-decoration: none;
  color: var(--dark-brown);
  font-family: "Fredoka One", cursive;
  font-size: 1.2rem;
  padding: 0.5rem 1rem;
  border-radius: 30px;
  border: 2px solid transparent;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hero-header nav ul li a:hover {
  color: var(--pink);
  border-color: var(--pink);
  transform: translateY(-4px) scale(1.05);
  background-color: rgb(255, 255, 255, 0.6);
}

.hero-header nav ul:hover li a:not(:hover) {
  opacity: 0.5;
  transform: scale(0.95);
}

.hero-header .hero-text {
  color: var(--dark-brown);
  max-width: 800px;
  margin: 0 auto;
  padding-top: 5rem; /* Ensure it doesn't overlap the logo */
  position: relative;
  z-index: 1; /* Keep text above background if any */
}

.hero-header .hero-text h2 {
  font-family: "Fredoka One", cursive;
  font-size: 3.5rem;
  color: var(--cream);
  margin-bottom: 0.5rem;
  /* Soft layered glow — modern reinterpretation of the playful shadow */
  text-shadow:
    0 2px 0 var(--pink-soft),
    0 4px 18px rgb(232, 141, 158, 0.35),
    1px 1px 0 var(--pink);
  animation: bounce-in-down 1s cubic-bezier(0.68, -0.55, 0.265, 1.55) both;
  position: relative;
  display: inline-block;
}

/* Hand-drawn squiggle underline beneath the hero h2 */
.hero-header .hero-text h2::after {
  content: "";
  position: absolute;
  left: 5%;
  right: 5%;
  bottom: -0.4em;
  height: 12px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 12' preserveAspectRatio='none'><path d='M2 8 Q 25 2 50 8 T 100 8 T 150 8 T 198 8' fill='none' stroke='%23e88d9e' stroke-width='3' stroke-linecap='round'/></svg>");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  opacity: 0;
  animation: fade-in 0.8s ease 0.9s forwards;
  pointer-events: none;
}

.hero-header .hero-text h3 {
  font-family: "Fredoka One", cursive;
  font-size: 2.2rem;
  color: var(--dark-brown);
  margin-bottom: 1rem;
  animation: bounce-in-down 1s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.2s both;
}

.hero-header .hero-text .hero-byline {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark-brown);
  margin-bottom: 2rem;
  animation: fade-in 1s ease 0.5s both;
}

.hero-header .hero-text .btn {
  font-size: 1.25rem;
  padding: 1rem 2.5rem;
  border-radius: 30px;
  box-shadow: 0 4px 15px rgb(0, 0, 0, 0.1);
  animation: fade-in-up 1s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.7s both;
}

/* Animations */
@keyframes bounce-in-down {
  0% {
    transform: translateY(-50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fade-in-up {
  0% {
    transform: translateY(20px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Footer Styles */
.social-links {
  margin-bottom: 1rem;
}

.social-links a {
  color: var(--cream);
  text-decoration: none;
  margin: 0 0.75rem;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: var(--pink);
}

.footer-links {
  margin-bottom: 1rem;
}

.footer-links a {
  color: var(--cream);
  text-decoration: none;
  margin: 0 0.75rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--pink);
}

.copyright {
  font-size: 0.9rem;
  color: var(--copyright-text); /* footer copyright */
}

.senscode-link {
  color: var(--cream);
  text-decoration: underline;
  transition: color 0.3s ease;
}

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

/* Hero Byline */
.hero-byline {
  font-size: 1.1rem;
  font-weight: 400;
  opacity: 0.9;
  margin-top: 1rem;
}

/* Featured Collection Section */
.featured-collection {
  display: flex;
  align-items: center;
  gap: 3rem;
  padding: 3rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.featured-image,
.featured-text {
  flex: 1;
}

.featured-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgb(0, 0, 0, 0.1);
}

.featured-text h2 {
  font-size: 2.5rem;
}

/* Scroll-triggered Animations */
.animated-section {
  opacity: 0;
  transition:
    opacity 0.8s ease-out,
    transform 0.8s ease-out;
}

.animated-section.fade-in-left {
  transform: translateX(-50px);
}

.animated-section.fade-in-right {
  transform: translateX(50px);
}

.animated-section.is-visible {
  opacity: 1;
  transform: translateX(0);
}

/* Behind the Seams Banner */
.behind-the-seams-banner {
  background-color: var(--mint-green);
  color: var(--dark-brown);
  text-align: center;
  padding: 6rem 2rem;
  margin-bottom: 2rem;
}

.banner-content h2 {
  color: var(--cream);
  font-family: "Fredoka One", cursive;
  font-size: 3.5rem;
  margin-bottom: 0.5rem;
  text-shadow:
    0 2px 0 var(--pink-soft),
    0 4px 18px rgb(232, 141, 158, 0.35),
    1px 1px 0 var(--pink);
  animation: bounce-in-down 1s cubic-bezier(0.68, -0.55, 0.265, 1.55) both;
}

/* Category Filters */
.category-filters {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 3rem 0 2rem 0;
}

.filter-btn {
  background: none;
  border: none;
  color: var(--light-brown);
  font-size: 1.1rem;
  font-family: "Nunito", sans-serif;
  cursor: pointer;
  padding-bottom: 0.25rem;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
  color: var(--dark-brown);
  border-bottom-color: var(--pink);
}

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
  gap: 2rem;
  padding: 0 2rem;
}

.grid-item {
  text-align: center;
  background-color: white;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgb(0, 0, 0, 0.05);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.grid-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgb(0, 0, 0, 0.1);
}

.grid-item img {
  max-width: 100%;
  border-radius: 5px;
  margin-bottom: 1rem;
}

.grid-item h4 {
  margin: 0.5rem 0;
}

.grid-item p {
  font-size: 0.9rem;
  color: var(--light-brown);
  margin-bottom: 1rem;
}

/* Series Interaction */
.plushie-image-group:hover img {
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

/* Fat Word Interaction */
.fat-word {
  display: inline-block;
  transition:
    transform 0.1s cubic-bezier(0.175, 0.885, 0.32, 1.275),
    color 0.1s ease;
  cursor: pointer;
  transform-origin: center;
}

.fat-word:active {
  transform: scale(1.3) rotate(-3deg);
  -webkit-text-stroke: 2px var(--pink);
  color: var(--cream);
  z-index: 10;
  position: relative;
}

.plushie-image-group:hover img:not(:hover) {
  opacity: 0.5;
}

/* Playful Headings in Collection */
.plushie-info h2,
.plushie-info h3 {
  color: var(--mint-green);
  font-family: "Fredoka One", cursive;
  font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: 1rem;
  text-align: left;
}

/* Brand Link and Logo */
.brand-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 0.5rem;
}

.brand-logo {
  height: 80px;
  width: auto;
}

/* About Page Specifics */
.about-section {
  display: flex;
  align-items: center;
  gap: 3rem;
  padding: 3rem 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.about-section .text-content,
.about-section .image-content {
  flex: 1;
}

.about-section h2 {
  text-align: left;
}

.image-placeholder {
  border: 3px dotted var(--mint-green);
  background-color: #fdfdfb;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  width: 100%;
  color: var(--light-brown);
  font-size: 1.2rem;
  font-weight: 700;
}

.philosophy-section {
  text-align: center;
  padding: 3rem 2rem;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 2rem auto 0;
}

.philosophy-item {
  background-color: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgb(0, 0, 0, 0.05);
}

.philosophy-item .image-placeholder {
  min-height: 150px;
  margin-bottom: 1rem;
}

.process-gallery {
  text-align: center;
  padding: 3rem 2rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 2rem auto 0;
}

.cta-section {
  background-color: var(--dark-brown);
  color: var(--cream);
  text-align: center;
  padding: 4rem 2rem;
}

.cta-section h2 {
  color: var(--cream);
  font-family: "Fredoka One", cursive;
  font-size: 2.5rem;
}

.heading-subtitle {
  font-family: "Nunito", sans-serif;
  color: var(--light-brown);
  font-weight: 400;
  font-size: 1.3rem;
  display: block; /* Make it appear on a new line below the main heading */
  margin-top: 0.25rem;
}

/* Dropdown Navigation */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: var(--mint-green);
  min-width: 180px;
  box-shadow: 0 8px 16px 0 rgb(0, 0, 0, 0.2);
  z-index: 100; /* Ensure it's above the canvas and other elements */
  border-radius: 10px;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.5rem 0;
  flex-direction: column !important; /* Override the flex row from nav ul */
  margin-top: 10px !important;
}

/* Adding a little triangle pointer to the dropdown */
.dropdown-content::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  margin-left: -10px;
  border-width: 10px;
  border-style: solid;
  border-color: transparent transparent var(--mint-green) transparent;
}

.dropdown.dropdown-active .dropdown-content {
  display: flex;
}

.dropdown-content li {
  margin: 0 !important; /* Override standard nav li margins */
  list-style: none;
}

.hero-header nav ul li .dropdown-content a {
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: center;
  border: none;
  border-radius: 0;
  color: var(--dark-brown);
  font-size: 1rem;
}

.hero-header nav ul li .dropdown-content a:hover {
  background-color: rgb(255, 255, 255, 0.4);
  transform: none; /* remove hover transform for dropdown items */
  color: var(--pink);
}

/* ============================================================
   Sketchbook Ornaments
   ============================================================ */

/* Squiggly hand-drawn divider — drop between sections */
.section-divider {
  display: block;
  width: 100%;
  max-width: 480px;
  height: 24px;
  margin: 2.5rem auto;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 480 24' preserveAspectRatio='none'><path d='M4 12 Q 30 2 60 12 T 120 12 T 180 12 T 240 12 T 300 12 T 360 12 T 420 12 T 476 12' fill='none' stroke='%23a2d5c6' stroke-width='2.5' stroke-linecap='round'/><circle cx='240' cy='12' r='4' fill='%23e88d9e'/></svg>");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  opacity: 0.85;
}

/* Tiny decorative star/sparkle — wrap around emphasis text */
.sparkle::before,
.sparkle::after {
  content: "✦";
  color: var(--pink);
  font-size: 0.7em;
  margin: 0 0.4em;
  vertical-align: middle;
  opacity: 0.7;
  display: inline-block;
  animation: sparkle-spin 4s ease-in-out infinite;
}
.sparkle::after {
  animation-delay: 2s;
}

@keyframes sparkle-spin {
  0%,
  100% {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(180deg) scale(1.15);
  }
}

/* Section heading with a small underline doodle */
.doodle-underline {
  display: inline-block;
  position: relative;
  padding-bottom: 0.3em;
}
.doodle-underline::after {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: 0;
  height: 8px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 8' preserveAspectRatio='none'><path d='M2 5 Q 25 1 50 5 T 100 5 T 150 5 T 198 5' fill='none' stroke='%23ffd4b8' stroke-width='3' stroke-linecap='round'/></svg>");
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

/* ============================================================
   Mobile Hamburger Toggle
   ============================================================ */
.nav-toggle {
  display: none;
  background: none;
  border: 2px solid var(--dark-brown);
  border-radius: 10px;
  padding: 0.4rem 0.6rem;
  cursor: pointer;
  color: var(--dark-brown);
  font-family: "Fredoka One", cursive;
  font-size: 1.4rem;
  line-height: 1;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease;
}

.nav-toggle:hover {
  background-color: rgb(255, 255, 255, 0.5);
  transform: scale(1.05);
}

.nav-toggle:focus-visible {
  outline: 2px solid var(--pink);
  outline-offset: 2px;
}

/* ============================================================
   Tablet (≤900px): tighten spacing, scale hero, soften nav hover
   ============================================================ */
@media (max-width: 900px) {
  body {
    font-size: 1rem;
  }
  main {
    padding: 1.5rem 1rem;
  }

  .hero-header {
    min-height: auto;
    padding: 1rem;
  }
  .hero-header nav {
    position: static;
    padding: 1rem;
  }

  .hero-header .hero-text {
    padding-top: 1.5rem;
  }
  .hero-header .hero-text h2 {
    font-size: 2.4rem;
    text-shadow:
      0 1px 0 var(--pink-soft),
      0 3px 14px rgb(232, 141, 158, 0.35);
  }
  .hero-header .hero-text h3 {
    font-size: 1.6rem;
  }
  .hero-header .hero-text .hero-byline {
    font-size: 1.05rem;
  }
  .hero-header .hero-text .btn {
    font-size: 1.1rem;
    padding: 0.85rem 2rem;
  }

  .featured-collection {
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem 1rem;
  }
  .featured-text h2 {
    font-size: 2rem;
    text-align: center;
  }
  .featured-text {
    text-align: center;
  }

  .about-section {
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem 1rem;
  }
  .about-section h2 {
    text-align: center;
  }

  .plushie-details,
  .plushie-series {
    flex-direction: column;
    align-items: stretch;
  }
  .plushie-series .plushie-image {
    text-align: center;
  }
  .plushie-info h2,
  .plushie-info h3 {
    font-size: 2.2rem;
    text-align: center;
  }

  .workshop-contact {
    flex-direction: column;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
  }

  .behind-the-seams-banner {
    padding: 4rem 1rem;
  }
  .banner-content h2 {
    font-size: 2.4rem;
    text-shadow:
      0 1px 0 var(--pink-soft),
      0 3px 14px rgb(232, 141, 158, 0.35);
  }

  .cta-section {
    padding: 3rem 1rem;
  }
  .cta-section h2 {
    font-size: 2rem;
  }

  .carousel {
    max-width: 100%;
  }
  .carousel-item-inner {
    padding: 1.1rem 1.1rem 0.9rem;
  }
  .carousel-item-inner img {
    max-width: 170px;
  }
  .carousel-item-inner p {
    font-size: 0.95rem;
  }
  .new-arrivals-panel {
    padding: 1.75rem 0.75rem 1.5rem;
    border-radius: 22px;
  }
  .panel-doodle {
    font-size: 1.1rem;
  }

  .product-grid {
    padding: 0 0.5rem;
    gap: 1.25rem;
  }
}

/* ============================================================
   Mobile (≤640px): hamburger nav, single column, smaller hero
   ============================================================ */
@media (max-width: 640px) {
  .nav-toggle {
    display: inline-flex;
  }

  .hero-header nav {
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .hero-header nav > ul {
    display: none;
    flex-basis: 100%;
    flex-direction: column;
    align-items: stretch;
    background-color: rgb(255, 255, 255, 0.7);
    border-radius: 14px;
    padding: 0.5rem;
    margin-top: 0.75rem;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
  }

  .hero-header nav > ul.is-open {
    display: flex;
  }

  .hero-header nav ul li {
    margin: 0.15rem 0;
    width: 100%;
  }

  .hero-header nav ul li a {
    display: block;
    text-align: center;
    font-size: 1.1rem;
    border-radius: 10px;
  }

  /* Disable the hover-dim effect on touch nav */
  .hero-header nav ul:hover li a:not(:hover) {
    opacity: 1;
    transform: none;
  }

  /* Dropdown becomes inline accordion on mobile */
  .dropdown-content {
    position: static;
    transform: none;
    box-shadow: none;
    background-color: rgb(162, 213, 198, 0.4);
    margin-top: 0.25rem !important;
    padding: 0.25rem 0;
    width: 100%;
    min-width: 0;
  }
  .dropdown-content::before {
    display: none;
  }

  .brand-title {
    font-size: 1.15rem;
  }
  .brand-logo {
    height: 56px;
  }

  .hero-header .hero-text h2 {
    font-size: 1.9rem;
    text-shadow:
      0 1px 0 var(--pink-soft),
      0 2px 10px rgb(232, 141, 158, 0.3);
  }
  .hero-header .hero-text h3 {
    font-size: 1.3rem;
  }
  .hero-header .hero-text .hero-byline {
    font-size: 0.98rem;
  }

  .banner-content h2 {
    font-size: 1.9rem;
    text-shadow:
      0 1px 0 var(--pink-soft),
      0 2px 10px rgb(232, 141, 158, 0.3);
  }

  .plushie-info h2,
  .plushie-info h3 {
    font-size: 1.7rem;
  }

  .featured-text h2,
  .cta-section h2 {
    font-size: 1.6rem;
  }

  .product-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 150px), 1fr));
    gap: 1rem;
  }
  .grid-item {
    padding: 1rem;
  }

  .category-filters {
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 2rem 0 1.5rem;
  }

  .lightbox-close {
    top: 12px;
    right: 16px;
    font-size: 32px;
  }

  .social-links a,
  .footer-links a {
    display: inline-block;
    margin: 0.25rem 0.5rem;
  }
}

/* ============================================================
   Wishlist (Daydream List)
   ============================================================ */

.grid-item {
  position: relative;
}

.wishlist-toggle {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: none;
  background-color: rgb(255, 255, 255, 0.92);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 8px rgb(0, 0, 0, 0.12);
  color: var(--pink);
  transition:
    transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1),
    background-color 0.25s ease,
    color 0.25s ease;
  z-index: 2;
  padding: 0;
}

.wishlist-toggle:hover {
  transform: scale(1.12) rotate(-4deg);
}
.wishlist-toggle:focus-visible {
  outline: 2px solid var(--pink);
  outline-offset: 2px;
}

.wishlist-toggle .heart-filled {
  display: none;
}

.wishlist-toggle.is-favorited {
  background-color: var(--pink);
  color: #fff;
  animation: heart-pop 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.wishlist-toggle.is-favorited .heart-outline {
  display: none;
}
.wishlist-toggle.is-favorited .heart-filled {
  display: block;
}

@keyframes heart-pop {
  0% {
    transform: scale(1);
  }
  40% {
    transform: scale(1.45) rotate(-8deg);
  }
  100% {
    transform: scale(1);
  }
}

/* Nav daydream link with badge */
.nav-daydreams > a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-daydreams .heart-mark {
  display: inline-block;
  font-size: 1.1em;
  line-height: 1;
  transform: translateY(1px);
}

.nav-daydreams .count {
  display: none;
  background-color: var(--pink);
  color: #fff;
  border-radius: 999px;
  font-size: 0.7rem;
  min-width: 18px;
  height: 18px;
  line-height: 18px;
  padding: 0 5px;
  text-align: center;
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  font-style: normal;
  margin-left: 0.15rem;
}

.nav-daydreams.has-items .count {
  display: inline-block;
}

/* Cart nav link mirrors Daydreams styling */
.nav-cart > a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-cart .cart-mark {
  display: inline-block;
  font-size: 1.1em;
  line-height: 1;
  transform: translateY(1px);
}

.nav-cart .count {
  display: none;
  background-color: var(--mint-green);
  color: var(--dark-brown);
  border-radius: 999px;
  font-size: 0.7rem;
  min-width: 18px;
  height: 18px;
  line-height: 18px;
  padding: 0 5px;
  text-align: center;
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  font-style: normal;
  margin-left: 0.15rem;
}

.nav-cart.has-items .count {
  display: inline-block;
}

/* Daydream list page */
.daydream-empty {
  text-align: center;
  padding: 4rem 1rem 2rem;
  color: var(--light-brown);
  max-width: 520px;
  margin: 0 auto;
}

.daydream-empty .big-icon {
  font-size: 4rem;
  display: block;
  margin-bottom: 0.75rem;
  color: var(--pink-soft);
  animation: heart-float 3s ease-in-out infinite;
}

@keyframes heart-float {
  0%,
  100% {
    transform: translateY(0) rotate(-3deg);
  }
  50% {
    transform: translateY(-8px) rotate(3deg);
  }
}

.daydream-empty h3 {
  font-family: "Fredoka One", cursive;
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.daydream-empty p {
  margin-bottom: 1.5rem;
}

.daydream-remove {
  background: none;
  border: 1px dashed var(--light-brown);
  border-radius: 14px;
  padding: 0.4rem 0.9rem;
  font-size: 0.85rem;
  font-family: "Nunito", sans-serif;
  cursor: pointer;
  color: var(--light-brown);
  transition: all 0.2s ease;
  margin-top: 0.5rem;
}
.daydream-remove:hover {
  color: var(--pink);
  border-color: var(--pink);
  border-style: solid;
}

/* ============================================================
   Next-Drop Countdown
   ============================================================ */

.next-drop {
  max-width: 720px;
  margin: 3rem auto;
  padding: 2rem 1.5rem;
  background-color: var(--cream-deep);
  border: 2px dashed var(--mint-green);
  border-radius: 22px;
  text-align: center;
  position: relative;
  transform: rotate(-0.5deg);
  box-shadow:
    0 4px 0 var(--mint-soft),
    0 10px 28px rgb(0, 0, 0, 0.06);
}

.next-drop::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%) rotate(-3deg);
  width: 80px;
  height: 22px;
  background-color: var(--peach);
  border-radius: 4px;
  box-shadow: 0 2px 4px rgb(0, 0, 0, 0.1);
  opacity: 0.85;
}

.next-drop .eyebrow {
  font-family: "Nunito", sans-serif;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.85rem;
  color: var(--light-brown);
  margin: 0 0 0.5rem;
}

.next-drop .drop-name {
  font-family: "Fredoka One", cursive;
  font-size: 1.8rem;
  color: var(--dark-brown);
  margin: 0 0 0.25rem;
}

.next-drop .drop-meta {
  font-size: 0.95rem;
  color: var(--light-brown);
  margin: 0 0 1.25rem;
}

.next-drop .countdown {
  display: inline-flex;
  gap: 0.5rem;
  margin: 0 0 1.25rem;
  flex-wrap: wrap;
  justify-content: center;
}

.next-drop .countdown .unit {
  background-color: white;
  border-radius: 12px;
  padding: 0.55rem 0.9rem;
  min-width: 64px;
  box-shadow: 0 2px 6px rgb(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.next-drop .countdown .num {
  font-family: "Fredoka One", cursive;
  font-size: 1.7rem;
  color: var(--pink);
  line-height: 1;
}

.next-drop .countdown .label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--light-brown);
  margin-top: 0.25rem;
}

.next-drop[data-state="live"] .drop-name::before {
  content: "● ";
  color: var(--pink-deep);
  animation: pulse-live 1.4s ease-in-out infinite;
  margin-right: 0.2em;
}

@keyframes pulse-live {
  0%,
  100% {
    opacity: 0.4;
  }
  50% {
    opacity: 1;
  }
}

.next-drop[data-state="idle"] .countdown {
  display: none;
}

@media (max-width: 480px) {
  .next-drop .countdown .unit {
    min-width: 56px;
    padding: 0.45rem 0.65rem;
  }
  .next-drop .countdown .num {
    font-size: 1.4rem;
  }
  .next-drop .drop-name {
    font-size: 1.5rem;
  }
}

/* ============================================================
   Adopt-a-Plushie cards
   ============================================================ */

.adopt-intro {
  max-width: 720px;
  margin: 0 auto 2rem;
  text-align: center;
  color: var(--light-brown);
}

.adopt-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: 2rem;
  padding: 0 1rem;
}

.adopt-card {
  background-color: white;
  border-radius: 18px;
  padding: 1.25rem 1.25rem 1.5rem;
  box-shadow: 0 3px 14px rgb(0, 0, 0, 0.07);
  text-align: left;
  display: flex;
  flex-direction: column;
  position: relative;
  transition:
    transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.3s ease;
}

.adopt-card:nth-child(odd) {
  transform: rotate(-0.6deg);
}
.adopt-card:nth-child(even) {
  transform: rotate(0.6deg);
}

.adopt-card:hover {
  transform: rotate(0deg) translateY(-4px);
  box-shadow: 0 8px 24px rgb(0, 0, 0, 0.12);
}

.adopt-card .photo-wrap {
  background-color: var(--mint-soft);
  border-radius: 14px;
  overflow: hidden;
  min-height: 280px; /* fallback for browsers without aspect-ratio (Safari <15.4) */
  aspect-ratio: 4 / 5;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.adopt-card .photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0;
  margin: 0;
}

.adopt-card .name {
  font-family: "Fredoka One", cursive;
  font-size: 1.5rem;
  color: var(--dark-brown);
  margin: 0 0 0.15rem;
  line-height: 1.1;
}

.adopt-card .pronouns {
  font-size: 0.78rem;
  color: var(--light-brown);
  letter-spacing: 1px;
  text-transform: lowercase;
  margin: 0 0 0.6rem;
}

.adopt-card .personality {
  font-style: italic;
  color: var(--light-brown);
  font-size: 0.95rem;
  margin: 0 0 0.85rem;
  line-height: 1.5;
}

.adopt-card .specs {
  list-style: none;
  margin: 0 0 1rem;
  display: grid;
  gap: 0.25rem;
  font-size: 0.85rem;
  color: var(--dark-brown);
  border-top: 1px dashed var(--cream-deep);
  border-bottom: 1px dashed var(--cream-deep);
  padding: 0.6rem 0;
}

.adopt-card .specs li {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
}

.adopt-card .specs .label {
  color: var(--light-brown);
  font-size: 0.78rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.adopt-card .specs .value {
  font-weight: 700;
}

.adopt-card .price {
  font-family: "Fredoka One", cursive;
  font-size: 1.4rem;
  color: var(--pink);
  margin: 0.85rem 0 0.5rem;
}

.adopt-card .price small {
  font-family: "Nunito", sans-serif;
  font-weight: 400;
  font-size: 0.7rem;
  color: var(--light-brown);
  letter-spacing: 1px;
  text-transform: uppercase;
  display: block;
}

.adopt-card .adopt-cta {
  margin-top: auto;
  align-self: stretch;
  text-align: center;
}

.adopt-card .status-tag {
  position: absolute;
  top: -10px;
  left: 1rem;
  background-color: var(--pink);
  color: white;
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  box-shadow: 0 2px 6px rgb(232, 141, 158, 0.4);
  transform: rotate(-4deg);
}

.adopt-card.is-adopted .status-tag {
  background-color: var(--light-brown);
  box-shadow: 0 2px 6px rgb(0, 0, 0, 0.15);
}

.adopt-card.is-adopted .photo-wrap img {
  filter: grayscale(0.6) opacity(0.75);
}

.adopt-card.is-adopted .adopt-cta {
  pointer-events: none;
  opacity: 0.6;
}

/* ============================================================
   Newsletter signup
   ============================================================ */

.newsletter {
  max-width: 720px;
  margin: 3rem auto;
  padding: 2.25rem 1.75rem;
  background-color: var(--mint-soft);
  border-radius: 22px;
  text-align: center;
  position: relative;
  box-shadow: 0 4px 18px rgb(162, 213, 198, 0.35);
}

.newsletter::before {
  content: "✦";
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background-color: white;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pink);
  font-size: 1.4rem;
  box-shadow: 0 2px 10px rgb(0, 0, 0, 0.08);
}

.newsletter .eyebrow {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.78rem;
  color: var(--dark-brown);
  font-weight: 700;
  margin: 0 0 0.5rem;
}

.newsletter h3 {
  font-family: "Fredoka One", cursive;
  font-size: 1.7rem;
  margin: 0 0 0.5rem;
  color: var(--dark-brown);
}

.newsletter p {
  color: var(--light-brown);
  margin: 0 0 1.25rem;
  font-size: 0.98rem;
}

.newsletter form {
  display: flex;
  gap: 0.6rem;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 480px;
  margin: 0 auto;
}

.newsletter input[type="email"] {
  flex: 1 1 240px;
  padding: 0.75rem 1rem;
  border: 2px solid white;
  border-radius: 999px;
  background-color: white;
  font-family: "Nunito", sans-serif;
  font-size: 1rem;
  color: var(--dark-brown);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
  min-width: 0;
}

.newsletter input[type="email"]:focus {
  outline: none;
  border-color: var(--pink);
  box-shadow: 0 0 0 4px rgb(232, 141, 158, 0.18);
}

.newsletter button[type="submit"] {
  white-space: nowrap;
}

.newsletter .form-success,
.newsletter .form-error {
  display: none;
  margin-top: 0.75rem;
  font-weight: 700;
}

.newsletter[data-state="success"] form {
  display: none;
}
.newsletter[data-state="success"] .form-success {
  display: block;
  color: var(--dark-brown);
  font-size: 1.1rem;
}
.newsletter[data-state="error"] .form-error {
  display: block;
  color: var(--error-red);
}

/* ============================================================
   Patreon tier teaser
   ============================================================ */

.patreon-tiers {
  max-width: 1100px;
  margin: 3rem auto;
  padding: 0 1.5rem;
  text-align: center;
}

.patreon-tiers > h2 {
  margin-bottom: 0.4rem;
}

.patreon-tiers .lede {
  color: var(--light-brown);
  max-width: 540px;
  margin: 0 auto 2rem;
}

.tier-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.tier-card {
  background-color: white;
  border-radius: 18px;
  padding: 1.75rem 1.25rem;
  box-shadow: 0 3px 14px rgb(0, 0, 0, 0.06);
  text-align: left;
  display: flex;
  flex-direction: column;
  position: relative;
  transition:
    transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.3s ease;
  border-top: 4px solid var(--mint-green);
}

.tier-card:nth-child(2) {
  border-top-color: var(--pink);
}
.tier-card:nth-child(3) {
  border-top-color: var(--peach);
}

.tier-card.featured {
  transform: translateY(-8px);
  box-shadow: 0 8px 28px rgb(232, 141, 158, 0.2);
}

.tier-card.featured::before {
  content: "★ Most Popular";
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%) rotate(-2deg);
  background-color: var(--pink);
  color: white;
  font-size: 0.72rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 700;
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 2px 6px rgb(232, 141, 158, 0.4);
}

.tier-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 28px rgb(0, 0, 0, 0.1);
}

.tier-card .tier-name {
  font-family: "Fredoka One", cursive;
  font-size: 1.35rem;
  color: var(--dark-brown);
  margin: 0 0 0.25rem;
}

.tier-card .tier-price {
  font-family: "Fredoka One", cursive;
  font-size: 1.6rem;
  color: var(--pink);
  margin: 0 0 1rem;
}

.tier-card .tier-price small {
  font-family: "Nunito", sans-serif;
  font-weight: 400;
  font-size: 0.7rem;
  color: var(--light-brown);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-left: 0.25rem;
}

.tier-card .perks {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: grid;
  gap: 0.5rem;
  text-align: left;
}

.tier-card .perks li {
  position: relative;
  padding-left: 1.4rem;
  font-size: 0.92rem;
  color: var(--light-brown);
  line-height: 1.5;
}

.tier-card .perks li::before {
  content: "♡";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--pink);
  font-size: 0.95rem;
}

.tier-card .tier-cta {
  margin-top: auto;
  align-self: stretch;
  text-align: center;
}

/* ============================================================
   Care guide page
   ============================================================ */

.care-intro {
  max-width: 720px;
  margin: 0 auto 2rem;
  text-align: center;
  color: var(--light-brown);
}

.care-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto 3rem;
  padding: 0 1.25rem;
}

.care-card {
  background-color: white;
  border-radius: 18px;
  padding: 1.5rem;
  box-shadow: 0 3px 14px rgb(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  position: relative;
}

.care-card .care-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background-color: var(--mint-soft);
  color: var(--dark-brown);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Fredoka One", cursive;
  font-size: 1.4rem;
  margin-bottom: 0.85rem;
}

.care-card:nth-child(2) .care-icon {
  background-color: var(--pink-soft);
}
.care-card:nth-child(3) .care-icon {
  background-color: var(--peach);
}
.care-card:nth-child(4) .care-icon {
  background-color: var(--mint-soft);
}
.care-card:nth-child(5) .care-icon {
  background-color: var(--pink-soft);
}

.care-card h3 {
  font-family: "Fredoka One", cursive;
  font-size: 1.25rem;
  margin: 0 0 0.5rem;
  color: var(--dark-brown);
}

.care-card p {
  color: var(--light-brown);
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 0 0 0.75rem;
}

.care-card ul {
  margin: 0 0 0.5rem;
  padding-left: 1.1rem;
  color: var(--light-brown);
  font-size: 0.92rem;
  line-height: 1.65;
}

.care-card .dont {
  color: var(--error-red);
  font-size: 0.88rem;
  margin-top: auto;
  padding-top: 0.5rem;
  border-top: 1px dashed var(--cream-deep);
}

.care-video {
  max-width: 800px;
  margin: 3rem auto;
  padding: 0 1.5rem;
  text-align: center;
}

.care-video .video-wrap {
  position: relative;
  min-height: 200px; /* fallback for browsers without aspect-ratio */
  aspect-ratio: 16 / 9;
  background-color: var(--cream-deep);
  border: 3px dashed var(--mint-green);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light-brown);
  font-weight: 700;
  text-align: center;
  padding: 1rem;
  transform: rotate(-0.6deg);
  transition: transform 0.4s ease;
}

.care-video .video-wrap:hover {
  transform: rotate(0.6deg);
}

.care-video .video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 0;
}

.care-video .video-wrap::after {
  content: "";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%) rotate(-3deg);
  width: 76px;
  height: 20px;
  background-color: var(--peach);
  border-radius: 3px;
  opacity: 0.85;
  pointer-events: none;
}

@media (max-width: 640px) {
  .newsletter form {
    flex-direction: column;
  }
  .newsletter input[type="email"] {
    width: 100%;
  }
  .tier-card.featured {
    transform: none;
  }
}

/* ============================================================
   Misc utilities
   ============================================================ */

.signature {
  font-weight: 700;
  color: var(--mint-green);
  font-size: 1.6rem;
}

.workshop-contact {
  max-width: 100%;
  width: 100%;
}

/* ============================================================
   Store page
   ============================================================ */

.store-page {
  max-width: 100%;
  width: 100%;
  padding-top: 4rem;
  text-align: center;
}

.store-page .store-heading {
  font-family: "Fredoka One", cursive;
  color: var(--mint-green);
  font-size: 2.8rem;
  margin-bottom: 2rem;
}

.store-page .store-blurb {
  margin-bottom: 3rem;
  color: var(--light-brown);
}

.store-page .product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
  gap: 2rem;
  margin: 2rem;
  padding: 0;
}

.store-page .product-item {
  border: 1px solid var(--cream-deep);
  border-radius: 14px;
  padding: 1.25rem;
  text-align: center;
  background-color: white;
  box-shadow: 0 2px 8px rgb(0, 0, 0, 0.05);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.store-page .product-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgb(0, 0, 0, 0.1);
}

.store-page .product-item img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.store-page .product-item h3 {
  color: var(--dark-brown);
  margin-bottom: 0.5rem;
  font-family: "Fredoka One", cursive;
  font-size: 1.3rem;
}

.store-page .product-item .product-price {
  color: var(--pink);
  font-weight: 700;
  font-family: "Fredoka One", cursive;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.store-footer {
  margin-top: 4rem;
}

/* ============================================================
   Behind-the-Seams scroll story
   ============================================================ */

.story-intro {
  text-align: center;
  padding: 2.5rem 1rem 1rem;
  max-width: 720px;
  margin: 0 auto;
}

.story-eyebrow {
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--mint-green);
  font-size: 0.85rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
}

.story-lede {
  color: var(--light-brown);
  font-size: 1.15rem;
  margin: 1rem 0 0;
}

.story-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 3rem;
  max-width: 1100px;
  margin: 1rem auto 3rem;
  padding: 0 1.5rem;
  align-items: start;
}

.story-rail {
  position: sticky;
  top: 1.5rem;
  padding: 1.5rem 0;
  align-self: start;
}

.rail-line {
  position: absolute;
  left: 1rem;
  top: 2rem;
  bottom: 2rem;
  width: 0;
  border-left: 2px dashed var(--mint-green);
  z-index: 0;
}

.rail-dots {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 2.25rem;
  position: relative;
  z-index: 1;
}

.rail-dots .dot {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  position: relative;
}

.rail-dots .num {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background-color: var(--cream);
  border: 2px solid var(--mint-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Fredoka One", cursive;
  color: var(--mint-green);
  font-size: 0.95rem;
  flex-shrink: 0;
  transition:
    background-color 0.35s ease,
    color 0.35s ease,
    border-color 0.35s ease,
    transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.35s ease;
}

.rail-dots .rail-label {
  font-size: 0.9rem;
  color: var(--light-brown);
  transition:
    color 0.3s ease,
    font-weight 0.3s ease;
}

.rail-dots .dot.active .num {
  background-color: var(--pink);
  border-color: var(--pink);
  color: #fff;
  transform: scale(1.18);
  box-shadow: 0 4px 14px rgb(232, 141, 158, 0.45);
}

.rail-dots .dot.active .rail-label {
  color: var(--dark-brown);
  font-weight: 700;
}

.story-scenes {
  display: grid;
  gap: 1rem;
}

.process-step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  min-height: 70vh;
  padding: 2rem 0;
}

.process-step:nth-child(even) .step-text {
  order: 2;
}
.process-step:nth-child(even) .step-visual {
  order: 1;
}

.step-eyebrow {
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--pink);
  font-size: 0.78rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
}

.step-text h3 {
  font-family: "Fredoka One", cursive;
  font-size: 2.4rem;
  margin: 0 0 1rem;
  color: var(--dark-brown);
}

.step-text p {
  color: var(--light-brown);
  line-height: 1.75;
  margin: 0 0 1rem;
}

.step-visual .image-placeholder.framed {
  border: 3px dashed var(--mint-green);
  background-color: var(--cream-deep);
  border-radius: 18px;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light-brown);
  font-weight: 700;
  position: relative;
  transform: rotate(-1.2deg);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  width: 100%;
  box-shadow: 0 4px 20px rgb(0, 0, 0, 0.05);
}

.process-step:nth-child(even) .step-visual .image-placeholder.framed {
  transform: rotate(1.2deg);
}

.step-visual .image-placeholder.framed:hover {
  transform: rotate(0deg) scale(1.02);
}

.step-visual .image-placeholder.framed::after {
  content: "";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%) rotate(-3deg);
  width: 76px;
  height: 20px;
  background-color: var(--peach);
  border-radius: 3px;
  opacity: 0.85;
  box-shadow: 0 2px 4px rgb(0, 0, 0, 0.1);
}

.story-outro {
  text-align: center;
  padding: 3rem 1.5rem 4rem;
  max-width: 640px;
  margin: 0 auto;
}

.story-outro h3 {
  font-family: "Fredoka One", cursive;
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.story-outro p {
  color: var(--light-brown);
  margin-bottom: 1.5rem;
}

.story-outro-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .story-layout {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 0 1rem;
  }
  .story-rail {
    position: static;
    padding: 0.5rem 0;
    margin-bottom: 1rem;
  }
  .rail-line {
    display: none;
  }
  .rail-dots {
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    padding: 0.5rem 0.25rem 0.75rem;
    scrollbar-width: thin;
  }
  .rail-dots .dot {
    flex-direction: column;
    gap: 0.35rem;
    flex-shrink: 0;
  }
  .rail-dots .num {
    width: 30px;
    height: 30px;
    font-size: 0.85rem;
  }
  .rail-dots .rail-label {
    font-size: 0.72rem;
    white-space: nowrap;
  }
  .process-step {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 1.5rem;
    padding: 1.5rem 0;
  }
  .process-step:nth-child(even) .step-text {
    order: 0;
  }
  .process-step:nth-child(even) .step-visual {
    order: 0;
  }
  .step-text h3 {
    font-size: 1.8rem;
  }
  .step-visual .image-placeholder.framed {
    min-height: 220px;
  }
}

/* 404 page */
.lost-plushie {
  text-align: center;
  padding: 3rem 1.5rem;
  max-width: 640px;
  margin: 0 auto;
}

.lost-plushie .big-404 {
  font-family: "Fredoka One", cursive;
  font-size: clamp(5rem, 18vw, 9rem);
  color: var(--mint-green);
  line-height: 1;
  margin: 0 0 0.5rem;
  text-shadow:
    0 2px 0 var(--pink-soft),
    0 6px 24px rgb(232, 141, 158, 0.3);
  display: inline-block;
  transform: rotate(-2deg);
  animation: bounce-in-down 0.9s cubic-bezier(0.68, -0.55, 0.265, 1.55) both;
}

.lost-plushie h2 {
  font-family: "Fredoka One", cursive;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.lost-plushie .runaway {
  display: inline-block;
  margin: 1.5rem 0;
  max-width: 240px;
  width: 60%;
  border-radius: 18px;
  box-shadow: 0 6px 22px rgb(0, 0, 0, 0.12);
  transform: rotate(3deg);
  transition: transform 0.4s ease;
}
.lost-plushie .runaway:hover {
  transform: rotate(-3deg) scale(1.03);
}

.lost-plushie .actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

/* ============================================================
   Contact page (contact.html)
   ============================================================ */

.contact-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 4rem;
}

.contact-hero-intro {
  text-align: center;
  padding: 1.5rem 1rem 0.5rem;
  max-width: 720px;
  margin: 0 auto;
}

.contact-eyebrow {
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--mint-green);
  font-size: 0.85rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
}

.contact-headline {
  font-family: "Fredoka One", cursive;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  color: var(--dark-brown);
  margin: 0 0 1rem;
  line-height: 1.1;
}

.contact-headline-accent {
  color: var(--pink);
  position: relative;
  display: inline-block;
  transform: rotate(-3deg);
  text-shadow:
    0 2px 0 var(--pink-soft),
    0 6px 16px rgb(232, 141, 158, 0.25);
}

.contact-lede {
  color: var(--light-brown);
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0 auto;
  max-width: 560px;
}

.doodle-divider {
  max-width: 320px;
  height: 18px;
  margin: 1.75rem auto 0.5rem;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 18' preserveAspectRatio='none'><path d='M4 9 Q 25 2 50 9 T 100 9 T 150 9 T 200 9 T 250 9 T 316 9' fill='none' stroke='%23ffd4b8' stroke-width='2.5' stroke-linecap='round'/><circle cx='80' cy='9' r='3' fill='%23a2d5c6'/><circle cx='160' cy='9' r='3' fill='%23e88d9e'/><circle cx='240' cy='9' r='3' fill='%23a2d5c6'/></svg>");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  opacity: 0.95;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
  align-items: start;
}

.contact-form-card {
  background-color: white;
  border: 1px solid var(--cream-deep);
  border-radius: 18px;
  padding: 2rem;
  box-shadow:
    0 4px 0 var(--pink-soft),
    0 12px 28px rgb(92, 64, 51, 0.08);
  position: relative;
}

.contact-form-card::before {
  content: "";
  position: absolute;
  top: -14px;
  left: 28px;
  width: 32px;
  height: 28px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 28'><path d='M2 6 L16 16 L30 6 L30 24 L2 24 Z' fill='%23ffd4b8' stroke='%23e88d9e' stroke-width='1.5' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-size: contain;
  transform: rotate(-6deg);
}

.contact-form-card-head {
  margin-bottom: 1.25rem;
}

.contact-form-card-head h2 {
  font-family: "Fredoka One", cursive;
  color: var(--dark-brown);
  font-size: 1.8rem;
  margin: 0 0 0.25rem;
}

.contact-form-card-sub {
  color: var(--light-brown);
  margin: 0;
  font-size: 0.95rem;
}

.inquiry-chips {
  border: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.inquiry-chips legend {
  width: 100%;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--light-brown);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.chip {
  cursor: pointer;
}

.chip input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.chip > span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
  border: 2px solid var(--cream-deep);
  background-color: var(--cream);
  color: var(--light-brown);
  font-weight: 700;
  font-size: 0.9rem;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease;
}

.chip:hover > span {
  transform: translateY(-1px) rotate(-1deg);
  border-color: var(--pink-soft);
}

.chip input:checked + span {
  background-color: var(--pink);
  border-color: var(--pink);
  color: var(--cream);
  box-shadow: 0 3px 0 var(--pink-soft);
}

.chip input:focus-visible + span {
  outline: 3px solid var(--mint-green);
  outline-offset: 2px;
}

.chip-emoji {
  font-size: 1rem;
  line-height: 1;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

/* Honeypot — visually + AT-hidden, but bots usually still fill it */
.hp-field {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.field label {
  font-weight: 700;
  color: var(--dark-brown);
  font-size: 0.95rem;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.5rem;
}

.field-optional {
  font-weight: 400;
  color: var(--light-brown);
  font-size: 0.8rem;
  font-style: italic;
}

.field-counter {
  font-weight: 400;
  color: var(--light-brown);
  font-size: 0.8rem;
  font-variant-numeric: tabular-nums;
  transition: color 0.2s ease;
}

.field-counter.near-limit {
  color: var(--pink-deep);
  font-weight: 700;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
  border: 2px solid var(--cream-deep);
  background-color: var(--cream);
  border-radius: 12px;
  padding: 0.75rem 0.9rem;
  font-family: "Nunito", sans-serif;
  font-size: 1rem;
  color: var(--dark-brown);
  transition:
    border-color 0.2s ease,
    background-color 0.2s ease,
    box-shadow 0.2s ease;
}

.contact-form input[type="text"]::placeholder,
.contact-form input[type="email"]::placeholder,
.contact-form textarea::placeholder {
  color: var(--light-brown);
  opacity: 0.55;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--pink);
  background-color: white;
  box-shadow: 0 0 0 4px var(--pink-soft);
}

.contact-form textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.5;
}

.contact-submit {
  align-self: flex-start;
  margin-top: 0.5rem;
  font-family: "Fredoka One", cursive;
  font-size: 1.05rem;
  padding: 0.75rem 1.6rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.contact-submit-arrow {
  display: inline-block;
  transition: transform 0.25s ease;
}

.contact-submit:hover .contact-submit-arrow {
  transform: translateX(4px);
}

.contact-submit.is-sending {
  cursor: wait;
  opacity: 0.7;
}

.contact-submit.is-sending .contact-submit-label::after {
  content: "…";
  display: inline-block;
  animation: contact-dots 1.2s linear infinite;
}

@keyframes contact-dots {
  0%,
  20% {
    content: ".";
  }
  40% {
    content: "..";
  }
  60%,
  100% {
    content: "…";
  }
}

.form-feedback {
  margin-top: 0.5rem;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  font-weight: 700;
  line-height: 1.5;
}

.form-feedback[data-kind="success"] {
  background-color: #eaf6f1;
  color: #2f6b58;
  border: 2px dashed var(--mint-green);
}

.form-feedback[data-kind="error"] {
  background-color: #fbeaed;
  color: var(--pink-deep);
  border: 2px dashed var(--pink);
}

.contact-aside {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.info-card {
  border-radius: 18px;
  padding: 1.4rem 1.4rem 1.5rem;
  border: 1px solid rgb(92, 64, 51, 0.08);
  box-shadow: 0 4px 14px rgb(92, 64, 51, 0.06);
  position: relative;
}

.info-card-mint {
  background-color: #ecf6f2;
  border-color: var(--mint-green);
}

.info-card-cream {
  background-color: var(--cream);
  border-color: var(--cream-deep);
}

.info-card-peach {
  background-color: #fff3e7;
  border-color: var(--peach);
}

.info-card-title {
  font-family: "Fredoka One", cursive;
  color: var(--dark-brown);
  font-size: 1.1rem;
  margin: 0 0 0.6rem;
}

.info-card-stat {
  font-family: "Fredoka One", cursive;
  color: var(--pink-deep);
  font-size: 1.6rem;
  margin: 0 0 0.5rem;
}

.info-card-text {
  margin: 0;
  color: var(--light-brown);
  font-size: 0.95rem;
  line-height: 1.5;
}

.info-card-list {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--light-brown);
  font-size: 0.95rem;
  line-height: 1.65;
}

.info-card-list li::marker {
  color: var(--pink);
}

.contact-social-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-social-list a {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  padding: 0.6rem 0.75rem;
  border-radius: 12px;
  background-color: rgb(255, 255, 255, 0.55);
  color: var(--dark-brown);
  transition:
    transform 0.2s ease,
    background-color 0.2s ease,
    box-shadow 0.2s ease;
}

.contact-social-list a:hover {
  transform: translateX(2px) rotate(-0.5deg);
  background-color: white;
  box-shadow: 0 4px 14px rgb(232, 141, 158, 0.18);
}

.contact-social-list .social-emoji {
  font-size: 1.4rem;
  line-height: 1;
  flex-shrink: 0;
}

.contact-social-list strong {
  display: block;
  color: var(--dark-brown);
  font-size: 1rem;
}

.contact-social-list em {
  display: block;
  color: var(--light-brown);
  font-style: normal;
  font-size: 0.85rem;
  margin-top: 0.1rem;
}

.faq-teaser {
  margin: 4rem auto 0;
  max-width: 720px;
  text-align: center;
  padding: 2.25rem 1.5rem;
  background-color: var(--cream);
  border: 2px dashed var(--mint-green);
  border-radius: 22px;
  position: relative;
}

.faq-teaser-eyebrow {
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--mint-green);
  font-weight: 700;
  font-size: 0.8rem;
  margin: 0 0 0.5rem;
}

.faq-teaser h3 {
  font-family: "Fredoka One", cursive;
  color: var(--dark-brown);
  font-size: 1.5rem;
  margin: 0 0 0.5rem;
}

.faq-teaser-sub {
  color: var(--light-brown);
  margin: 0 0 1.5rem;
}

@media (max-width: 860px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .field-row {
    grid-template-columns: 1fr;
  }
  .contact-form-card {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .contact-page {
    padding: 1.5rem 1rem 3rem;
  }
  .inquiry-chips {
    gap: 0.4rem;
  }
  .chip > span {
    padding: 0.45rem 0.8rem;
    font-size: 0.85rem;
  }
}

/* ============================================================
   Respect reduced-motion preferences
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  #confetti-canvas {
    display: none !important;
  }
}
