/** Shopify CDN: Minification failed

Line 299:13 Unexpected "/"
Line 300:13 Unexpected "/"
Line 301:13 Unexpected "/"
Line 412:9 Unexpected "/"
Line 439:6 Unexpected "/"
Line 440:6 Unexpected "/"
Line 441:6 Unexpected "/"
Line 479:10 Expected identifier but found "200px\\\\"
Line 480:10 Expected identifier but found "300px\\\\"
Line 481:10 Expected identifier but found "400px\\\\"
... and 27 more hidden warnings

**/
/* Coloring Bobo Theme - Complete CSS */
/* Font Import */
@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@300;400;500;600;700&display=swap');

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

/* Root Variables */
:root {
  --ink: #2D2D2D;
  --paper: #FFF9F0;
  --pop-pink: #FF8FB1;
  --sunny-yellow: #FFE57D;
  --sky-blue: #7EC8E3;
  --mint-green: #B9E4C9;
  --lilac: #C7B9FF;
  --orange-soda: #FFB37B;
}

/* Base Styles */
html {
  font-family: 'Fredoka', system-ui, -apple-system, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background-color: var(--paper);
  color: var(--ink);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 900;
  line-height: 1.2;
}

h1 { font-size: 3.75rem; }
h2 { font-size: 3rem; }
h3 { font-size: 2.25rem; }
h4 { font-size: 1.875rem; }
h5 { font-size: 1.5rem; }
h6 { font-size: 1.25rem; }

@media (max-width: 768px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.75rem; }
  h4 { font-size: 1.5rem; }
  h5 { font-size: 1.25rem; }
  h6 { font-size: 1.125rem; }
}

/* Utility Classes */
.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 640px) {
  .container {
    max-width: 640px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 768px;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

@media (min-width: 1024px) {
  .container {
    max-width: 1024px;
  }
}

@media (min-width: 1280px) {
  .container {
    max-width: 1280px;
  }
}

@media (min-width: 1536px) {
  .container {
    max-width: 1536px;
  }
}

.text-ink { color: var(--ink); }
.text-paper { color: var(--paper); }
.text-pop-pink { color: var(--pop-pink); }
.text-sunny-yellow { color: var(--sunny-yellow); }
.text-sky-blue { color: var(--sky-blue); }
.text-mint-green { color: var(--mint-green); }
.text-lilac { color: var(--lilac); }
.text-orange-soda { color: var(--orange-soda); }
.text-white { color: white; }
.text-gray-600 { color: #4B5563; }
.text-gray-700 { color: #374151; }

.bg-ink { background-color: var(--ink); }
.bg-paper { background-color: var(--paper); }
.bg-pop-pink { background-color: var(--pop-pink); }
.bg-sunny-yellow { background-color: var(--sunny-yellow); }
.bg-sky-blue { background-color: var(--sky-blue); }
.bg-mint-green { background-color: var(--mint-green); }
.bg-lilac { background-color: var(--lilac); }
.bg-orange-soda { background-color: var(--orange-soda); }
.bg-white { background-color: white; }
.bg-transparent { background-color: transparent; }

/* Border Styles */
.border-ink { border-color: var(--ink); }
.border-2 { border-width: 2px; }
.border-4 { border-width: 4px; }
.border-solid { border-style: solid; }
.border-dashed { border-style: dashed; }
.border-b-4 { border-bottom-width: 4px; }
.border-t-4 { border-top-width: 4px; }

/* Border Radius */
.rounded { border-radius: 0.25rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-3xl { border-radius: 1.5rem; }
.rounded-full { border-radius: 9999px; }

/* Spacing */
.p-0 { padding: 0; }
.p-1 { padding: 0.25rem; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.p-10 { padding: 2.5rem; }
.p-12 { padding: 3rem; }
.p-16 { padding: 4rem; }
.p-20 { padding: 5rem; }

.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.px-10 { padding-left: 2.5rem; padding-right: 2.5rem; }
.px-12 { padding-left: 3rem; padding-right: 3rem; }

.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-10 { padding-top: 2.5rem; padding-bottom: 2.5rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }
.py-32 { padding-top: 8rem; padding-bottom: 8rem; }

.pt-20 { padding-top: 5rem; }
.pt-24 { padding-top: 6rem; }
.pt-28 { padding-top: 7rem; }
.pb-32 { padding-bottom: 8rem; }

/* Margins */
.m-auto { margin: auto; }
.mx-auto { margin-left: auto; margin-right: auto; }
.my-2 { margin-top: 0.5rem; margin-bottom: 0.5rem; }
.my-3 { margin-top: 0.75rem; margin-bottom: 0.75rem; }
.my-4 { margin-top: 1rem; margin-bottom: 1rem; }
.my-6 { margin-top: 1.5rem; margin-bottom: 1.5rem; }
.my-8 { margin-top: 2rem; margin-bottom: 2rem; }
.my-12 { margin-top: 3rem; margin-bottom: 3rem; }

.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }
.mt-16 { margin-top: 4rem; }
.mt-20 { margin-top: 5rem; }

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }

.ml-1 { margin-left: 0.25rem; }
.ml-2 { margin-left: 0.5rem; }
.ml-4 { margin-left: 1rem; }

.mr-2 { margin-right: 0.5rem; }
.mr-3 { margin-right: 0.75rem; }

.-mt-4 { margin-top: -1rem; }
.-mt-8 { margin-top: -2rem; }

/* Flexbox */
.flex { display: flex !important; }
.inline-flex { display: inline-flex !important; }
.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.flex-wrap { flex-wrap: wrap; }
.flex-nowrap { flex-wrap: nowrap; }
.items-start { align-items: flex-start; }
.items-center { align-items: center; }
.items-end { align-items: flex-end; }
.items-stretch { align-items: stretch; }
.justify-start { justify-content: flex-start; }
.justify-center { justify-content: center; }
.justify-end { justify-content: flex-end; }
.justify-between { justify-content: space-between; }
.justify-around { justify-content: space-around; }
.flex-grow { flex-grow: 1; }
.flex-shrink-0 { flex-shrink: 0; }
.flex-1 { flex: 1 1 0%; }
.flex-auto { flex: 1 1 auto; }
.flex-initial { flex: 0 1 auto; }
.flex-none { flex: none; }
.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-5 { gap: 1.25rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-10 { gap: 2.5rem; }
.gap-12 { gap: 3rem; }

/* Grid */
.grid { display: grid; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }

/* Small screens (640px and up) */
@media (min-width: 640px) {
  .sm\\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sm\\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .sm\\:block { display: block; }
  .sm\\:flex { display: flex; }
  .sm\\:flex-row { flex-direction: row; }
}

/* Medium screens (768px and up) */
@media (min-width: 768px) {
  .md\\:block { display: block; }
  .md\\:inline-block { display: inline-block; }
  .md\\:flex { display: flex; }
  .md\\:grid { display: grid; }
  .md\\:hidden { display: none; }
  .md\\:flex-row { flex-direction: row; }
  .md\\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .md\\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .md\\:grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .md\\:flex-1 { flex: 1 1 0%; }
  .md\\:w-1\\/2 { width: 50%; }
  .md\\:w-1\\/3 { width: 33.333333%; }
  .md\\:w-2\\/3 { width: 66.666667%; }
  .md\\:max-w-none { max-width: none; }
  .md\\:max-w-md { max-width: 28rem; }
  .md\\:max-w-lg { max-width: 32rem; }
  .md\\:max-w-xl { max-width: 36rem; }
  .md\\:text-base { font-size: 1rem; }
  .md\\:text-lg { font-size: 1.125rem; }
  .md\\:text-xl { font-size: 1.25rem; }
  .md\\:text-2xl { font-size: 1.5rem; }
  .md\\:text-3xl { font-size: 1.875rem; }
  .md\\:text-4xl { font-size: 2.25rem; }
  .md\\:text-5xl { font-size: 3rem; }
  .md\\:text-6xl { font-size: 3.75rem; }
  .md\\:text-7xl { font-size: 4.5rem; }
  .md\\:text-8xl { font-size: 6rem; }
  .md\\:p-6 { padding: 1.5rem; }
  .md\\:p-8 { padding: 2rem; }
  .md\\:p-10 { padding: 2.5rem; }
  .md\\:p-12 { padding: 3rem; }
  .md\\:p-16 { padding: 4rem; }
  .md\\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
  .md\\:px-8 { padding-left: 2rem; padding-right: 2rem; }
  .md\\:px-10 { padding-left: 2.5rem; padding-right: 2.5rem; }
  .md\\:px-12 { padding-left: 3rem; padding-right: 3rem; }
  .md\\:py-12 { padding-top: 3rem; padding-bottom: 3rem; }
  .md\\:py-16 { padding-top: 4rem; padding-bottom: 4rem; }
  .md\\:py-20 { padding-top: 5rem; padding-bottom: 5rem; }
  .md\\:py-24 { padding-top: 6rem; padding-bottom: 6rem; }
  .md\\:gap-4 { gap: 1rem; }
  .md\\:gap-6 { gap: 1.5rem; }
  .md\\:gap-8 { gap: 2rem; }
  .md\\:gap-10 { gap: 2.5rem; }
  .md\\:gap-12 { gap: 3rem; }
  .md\\:gap-16 { gap: 4rem; }
  .md\\:space-x-8 > * + * { margin-left: 2rem; }
  .md\\:justify-between { justify-content: space-between; }
}

/* Large screens (1024px and up) */
@media (min-width: 1024px) {
  .lg\\:block { display: block; }
  .lg\\:inline-block { display: inline-block; }
  .lg\\:flex { display: flex; }
  .lg\\:grid { display: grid; }
  .lg\\:hidden { display: none; }
  .lg\\:flex-row { flex-direction: row; }
  .lg\\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lg\\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .lg\\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .lg\\:grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .lg\\:gap-8 { gap: 2rem; }
  .lg\\:gap-10 { gap: 2.5rem; }
  .lg\\:gap-12 { gap: 3rem; }
  .lg\\:gap-16 { gap: 4rem; }
  .lg\\:gap-20 { gap: 5rem; }
  .lg\\:text-lg { font-size: 1.125rem; }
  .lg\\:text-xl { font-size: 1.25rem; }
  .lg\\:text-2xl { font-size: 1.5rem; }
  .lg\\:text-3xl { font-size: 1.875rem; }
  .lg\\:text-4xl { font-size: 2.25rem; }
  .lg\\:text-5xl { font-size: 3rem; }
  .lg\\:text-6xl { font-size: 3.75rem; }
  .lg\\:max-w-2xl { max-width: 42rem; }
  .lg\\:max-w-3xl { max-width: 48rem; }
  .lg\\:max-w-4xl { max-width: 56rem; }
  .lg\\:max-w-5xl { max-width: 64rem; }
  .lg\\:max-w-6xl { max-width: 72rem; }
  .lg\\:px-8 { padding-left: 2rem; padding-right: 2rem; }
  .lg\\:py-24 { padding-top: 6rem; padding-bottom: 6rem; }
  .lg\\:py-32 { padding-top: 8rem; padding-bottom: 8rem; }
}

/* Extra large screens (1280px and up) */
@media (min-width: 1280px) {
  .xl\\:block { display: block; }
  .xl\\:grid { display: grid; }
  .xl\\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .xl\\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .xl\\:grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .xl\\:grid-cols-6 { grid-template-columns: repeat(6, minmax(0, 1fr)); }
  .xl\\:gap-12 { gap: 3rem; }
  .xl\\:gap-16 { gap: 4rem; }
  .xl\\:text-2xl { font-size: 1.5rem; }
  .xl\\:text-3xl { font-size: 1.875rem; }
  .xl\\:text-4xl { font-size: 2.25rem; }
  .xl\\:text-5xl { font-size: 3rem; }
  .xl\\:text-6xl { font-size: 3.75rem; }
  .xl\\:text-7xl { font-size: 4.5rem; }
  .xl\\:max-w-7xl { max-width: 80rem; }
}

/* Position */
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.sticky { position: sticky; }
.static { position: static; }

.top-0 { top: 0; }
.top-4 { top: 1rem; }
.top-8 { top: 2rem; }
.top-16 { top: 4rem; }
.top-20 { top: 5rem; }
.top-24 { top: 6rem; }
.top-32 { top: 8rem; }
.bottom-0 { bottom: 0; }
.bottom-4 { bottom: 1rem; }
.bottom-8 { bottom: 2rem; }
.left-0 { left: 0; }
.left-4 { left: 1rem; }
.left-8 { left: 2rem; }
.left-1\\/2 { left: 50%; }
.right-0 { right: 0; }
.right-4 { right: 1rem; }
.right-8 { right: 2rem; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }

.-top-2 { top: -0.5rem; }
.-top-4 { top: -1rem; }
.-top-8 { top: -2rem; }
.-right-2 { right: -0.5rem; }
.-right-8 { right: -2rem; }
.-bottom-2 { bottom: -0.5rem; }
.-bottom-4 { bottom: -1rem; }
.-bottom-8 { bottom: -2rem; }
.-left-8 { left: -2rem; }

/* Z-Index */
.z-0 { z-index: 0; }
.z-10 { z-index: 10; }
.z-20 { z-index: 20; }
.z-30 { z-index: 30; }
.z-40 { z-index: 40; }
.z-50 { z-index: 50; }

/* Width & Height */
.w-full { width: 100%; }
.w-auto { width: auto; }
.w-1\\/2 { width: 50%; }
.w-1\\/3 { width: 33.333333%; }
.w-2\\/3 { width: 66.666667%; }
.w-3 { width: 0.75rem; }
.w-4 { width: 1rem; }
.w-5 { width: 1.25rem; }
.w-6 { width: 1.5rem; }
.w-8 { width: 2rem; }
.w-10 { width: 2.5rem; }
.w-12 { width: 3rem; }
.w-14 { width: 3.5rem; }
.w-16 { width: 4rem; }
.w-20 { width: 5rem; }
.w-24 { width: 6rem; }
.w-32 { width: 8rem; }
.w-48 { width: 12rem; }
.w-64 { width: 16rem; }
.w-72 { width: 18rem; }
.w-96 { width: 24rem; }

.h-full { height: 100%; }
.h-auto { height: auto; }
.h-3 { height: 0.75rem; }
.h-4 { height: 1rem; }
.h-5 { height: 1.25rem; }
.h-6 { height: 1.5rem; }
.h-8 { height: 2rem; }
.h-10 { height: 2.5rem; }
.h-12 { height: 3rem; }
.h-14 { height: 3.5rem; }
.h-16 { height: 4rem; }
.h-20 { height: 5rem; }
.h-24 { height: 6rem; }
.h-32 { height: 8rem; }
.h-48 { height: 12rem; }
.h-64 { height: 16rem; }
.h-72 { height: 18rem; }
.h-96 { height: 24rem; }

.min-h-screen { min-height: 100vh; }
.min-h-\\[200px\\] { min-height: 200px; }
.min-h-\\[300px\\] { min-height: 300px; }
.min-h-\\[400px\\] { min-height: 400px; }
.min-h-\\[500px\\] { min-height: 500px; }
.min-h-\\[600px\\] { min-height: 600px; }

.max-w-xs { max-width: 20rem; }
.max-w-sm { max-width: 24rem; }
.max-w-md { max-width: 28rem; }
.max-w-lg { max-width: 32rem; }
.max-w-xl { max-width: 36rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-6xl { max-width: 72rem; }
.max-w-7xl { max-width: 80rem; }
.max-w-full { max-width: 100%; }
.max-w-screen-xl { max-width: 1280px; }

/* Font Weight */
.font-light { font-weight: 300; }
.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }
.font-black { font-weight: 900; }

/* Font Size */
.text-xs { font-size: 0.75rem; }
.text-sm { font-size: 0.875rem; }
.text-base { font-size: 1rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-4xl { font-size: 2.25rem; }
.text-5xl { font-size: 3rem; }
.text-6xl { font-size: 3.75rem; }
.text-7xl { font-size: 4.5rem; }
.text-8xl { font-size: 6rem; }
.text-9xl { font-size: 8rem; }

/* Text Alignment */
.text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-justify { text-align: justify; }

/* Text Decoration */
.uppercase { text-transform: uppercase; }
.lowercase { text-transform: lowercase; }
.capitalize { text-transform: capitalize; }
.italic { font-style: italic; }
.underline { text-decoration: underline; }
.line-through { text-decoration: line-through; }
.no-underline { text-decoration: none; }

/* Line Height */
.leading-none { line-height: 1; }
.leading-tight { line-height: 1.25; }
.leading-snug { line-height: 1.375; }
.leading-normal { line-height: 1.5; }
.leading-relaxed { line-height: 1.625; }
.leading-loose { line-height: 1.75; }

/* Overflow */
.overflow-hidden { overflow: hidden; }
.overflow-auto { overflow: auto; }
.overflow-x-auto { overflow-x: auto; }
.overflow-y-auto { overflow-y: auto; }
.overflow-x-hidden { overflow-x: hidden; }
.overflow-y-hidden { overflow-y: hidden; }
.truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Display */
.block { display: block; }
.inline-block { display: inline-block; }
.inline { display: inline; }
.hidden { display: none !important; }
.flex { display: flex; }
.inline-flex { display: inline-flex; }

/* Opacity */
.opacity-0 { opacity: 0; }
.opacity-10 { opacity: 0.1; }
.opacity-20 { opacity: 0.2; }
.opacity-25 { opacity: 0.25; }
.opacity-30 { opacity: 0.3; }
.opacity-40 { opacity: 0.4; }
.opacity-50 { opacity: 0.5; }
.opacity-60 { opacity: 0.6; }
.opacity-70 { opacity: 0.7; }
.opacity-75 { opacity: 0.75; }
.opacity-80 { opacity: 0.8; }
.opacity-90 { opacity: 0.9; }
.opacity-95 { opacity: 0.95; }
.opacity-100 { opacity: 1; }

/* Aspect Ratio */
.aspect-square { aspect-ratio: 1 / 1; }
.aspect-\\[4\\/3\\] { aspect-ratio: 4 / 3; }
.aspect-\\[16\\/9\\] { aspect-ratio: 16 / 9; }
.aspect-\\[3\\/4\\] { aspect-ratio: 3 / 4; }

/* Object Fit */
.object-contain { object-fit: contain; }
.object-cover { object-fit: cover; }
.object-fill { object-fit: fill; }
.object-none { object-fit: none; }
.object-scale-down { object-fit: scale-down; }

/* Custom Shadows */
.shadow-none { box-shadow: none; }
.shadow-sm { box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); }
.shadow { box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); }
.shadow-md { box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); }
.shadow-xl { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); }
.shadow-2xl { box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); }
.shadow-inner { box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); }

.shadow-cartoon {
  box-shadow: 4px 4px 0px 0px var(--ink);
}

.shadow-cartoon-hover {
  box-shadow: 6px 6px 0px 0px var(--ink);
}

.shadow-cartoon-sm {
  box-shadow: 2px 2px 0px 0px var(--ink);
}

/* Transform & Transition */
.transform { transform: translateZ(0); }
.transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-transform {
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-colors {
  transition-property: color, background-color, border-color;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-opacity {
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.duration-200 { transition-duration: 200ms; }
.duration-300 { transition-duration: 300ms; }
.duration-500 { transition-duration: 500ms; }
.ease-in { transition-timing-function: cubic-bezier(0.4, 0, 1, 1); }
.ease-out { transition-timing-function: cubic-bezier(0, 0, 0.2, 1); }
.ease-in-out { transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); }

/* Transform utilities */
.translate-x-0 { transform: translateX(0); }
.translate-x-full { transform: translateX(100%); }
.translate-x-1\\/2 { transform: translateX(50%); }
.-translate-x-1\\/2 { transform: translateX(-50%); }
.translate-y-0 { transform: translateY(0); }
.translate-y-1\\/2 { transform: translateY(50%); }
.-translate-y-1 { transform: translateY(-0.25rem); }
.-translate-y-2 { transform: translateY(-0.5rem); }
.-translate-y-1\\/2 { transform: translateY(-50%); }
.rotate-0 { transform: rotate(0deg); }
.rotate-2 { transform: rotate(2deg); }
.rotate-3 { transform: rotate(3deg); }
.rotate-6 { transform: rotate(6deg); }
.rotate-12 { transform: rotate(12deg); }
.-rotate-2 { transform: rotate(-2deg); }
.-rotate-3 { transform: rotate(-3deg); }
.-rotate-6 { transform: rotate(-6deg); }
.-rotate-12 { transform: rotate(-12deg); }
.scale-95 { transform: scale(0.95); }
.scale-100 { transform: scale(1); }
.scale-105 { transform: scale(1.05); }
.scale-110 { transform: scale(1.1); }

/* Hover States */
.hover\\:bg-pop-pink:hover { background-color: var(--pop-pink); }
.hover\\:bg-sunny-yellow:hover { background-color: var(--sunny-yellow); }
.hover\\:bg-sky-blue:hover { background-color: var(--sky-blue); }
.hover\\:bg-mint-green:hover { background-color: var(--mint-green); }
.hover\\:bg-lilac:hover { background-color: var(--lilac); }
.hover\\:bg-orange-soda:hover { background-color: var(--orange-soda); }
.hover\\:bg-ink:hover { background-color: var(--ink); }
.hover\\:bg-gray-100:hover { background-color: #F3F4F6; }
.hover\\:bg-opacity-10:hover { background-opacity: 0.1; }

.hover\\:text-white:hover { color: white; }
.hover\\:text-ink:hover { color: var(--ink); }
.hover\\:text-pop-pink:hover { color: var(--pop-pink); }
.hover\\:text-sunny-yellow:hover { color: var(--sunny-yellow); }

.hover\\:border-pop-pink:hover { border-color: var(--pop-pink); }
.hover\\:border-sunny-yellow:hover { border-color: var(--sunny-yellow); }

.hover\\:shadow-cartoon:hover { box-shadow: 4px 4px 0px 0px var(--ink); }
.hover\\:shadow-cartoon-hover:hover { box-shadow: 6px 6px 0px 0px var(--ink); }
.hover\\:shadow-lg:hover { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); }

.hover\\:scale-105:hover { transform: scale(1.05); }
.hover\\:scale-110:hover { transform: scale(1.1); }
.hover\\:rotate-0:hover { transform: rotate(0deg); }
.hover\\:rotate-3:hover { transform: rotate(3deg); }
.hover\\:-translate-y-1:hover { transform: translateY(-0.25rem); }
.hover\\:-translate-y-2:hover { transform: translateY(-0.5rem); }

.hover\\:underline:hover { text-decoration: underline; }

/* Group Hover States */
.group:hover .group-hover\\:text-ink { color: var(--ink); }
.group:hover .group-hover\\:text-pop-pink { color: var(--pop-pink); }
.group:hover .group-hover\\:bg-sunny-yellow { background-color: var(--sunny-yellow); }
.group:hover .group-hover\\:shadow-cartoon { box-shadow: 4px 4px 0px 0px var(--ink); }
.group:hover .group-hover\\:-translate-y-1 { transform: translateY(-0.25rem); }
.group:hover .group-hover\\:scale-110 { transform: scale(1.1); }
.group:hover .group-hover\\:rotate-0 { transform: rotate(0deg); }
.group:hover .group-hover\\:opacity-100 { opacity: 1; }
.group:hover .group-hover\\:block { display: block; }

/* Focus States */
.focus\\:outline-none:focus { outline: 2px solid transparent; outline-offset: 2px; }
.focus\\:ring-2:focus { box-shadow: 0 0 0 2px var(--sunny-yellow); }
.focus\\:ring-sunny-yellow:focus { box-shadow: 0 0 0 2px var(--sunny-yellow); }
.focus\\:border-sunny-yellow:focus { border-color: var(--sunny-yellow); }

/* Active States */
.active\\:scale-95:active { transform: scale(0.95); }

/* Selection */
.selection\\:bg-sunny-yellow::selection { background-color: var(--sunny-yellow); }
.selection\\:text-ink::selection { color: var(--ink); }

/* Filters */
.blur { filter: blur(4px); }
.blur-sm { filter: blur(2px); }
.blur-lg { filter: blur(8px); }
.blur-xl { filter: blur(12px); }
.blur-2xl { filter: blur(16px); }
.blur-3xl { filter: blur(24px); }

/* Gradients */
.bg-gradient-to-r { background-image: linear-gradient(to right, var(--tw-gradient-stops)); }
.bg-gradient-to-br { background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)); }
.from-pop-pink { --tw-gradient-from: var(--pop-pink); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 143, 177, 0)); }
.from-pop-pink\\/20 { --tw-gradient-from: rgba(255, 143, 177, 0.2); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 143, 177, 0)); }
.to-sunny-yellow { --tw-gradient-to: var(--sunny-yellow); }
.to-sunny-yellow\\/20 { --tw-gradient-to: rgba(255, 229, 125, 0.2); }
.to-sky-blue { --tw-gradient-to: var(--sky-blue); }
.via-sunny-yellow { --tw-gradient-stops: var(--tw-gradient-from), var(--sunny-yellow), var(--tw-gradient-to, rgba(255, 229, 125, 0)); }

/* Supplemental utilities to match React Tailwind styles */
.-bottom-10 { bottom: -2.5rem; }
.-bottom-6 { bottom: -1.5rem; }
.-left-10 { left: -2.5rem; }
.-right-10 { right: -2.5rem; }
.-top-10 { top: -2.5rem; }
.-space-y-2 > :not([hidden]) ~ :not([hidden]) { margin-top: -0.5rem; margin-bottom: 0; }
.appearance-none { -webkit-appearance: none; appearance: none; }
.bg-gray-50 { background-color: #F9FAFB; }
.bg-gray-100 { background-color: #F3F4F6; }
.bg-gray-200 { background-color: #E5E7EB; }
.bg-gray-300 { background-color: #D1D5DB; }
.bg-gray-400 { background-color: #9CA3AF; }
.bg-blue-500 { background-color: #3B82F6; }
.bg-lilac\/20 { background-color: rgba(199, 185, 255, 0.2); }
.bg-lilac\/30 { background-color: rgba(199, 185, 255, 0.3); }
.bg-pop-pink\/20 { background-color: rgba(255, 143, 177, 0.2); }
.bg-white\/95 { background-color: rgba(255, 255, 255, 0.95); }
.bg-gradient-to-t { background-image: linear-gradient(to top, var(--tw-gradient-stops)); }
.from-ink\/80 { --tw-gradient-from: rgba(45, 45, 45, 0.8); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(45, 45, 45, 0)); }
.from-mint-green\/20 { --tw-gradient-from: rgba(185, 228, 201, 0.2); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(185, 228, 201, 0)); }
.from-pop-pink\/30 { --tw-gradient-from: rgba(255, 143, 177, 0.3); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 143, 177, 0)); }
.via-sunny-yellow\/20 { --tw-gradient-stops: var(--tw-gradient-from), rgba(255, 229, 125, 0.2), var(--tw-gradient-to, rgba(255, 229, 125, 0)); }
.via-sunny-yellow\/30 { --tw-gradient-stops: var(--tw-gradient-from), rgba(255, 229, 125, 0.3), var(--tw-gradient-to, rgba(255, 229, 125, 0)); }
.via-transparent { --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, transparent); }
.to-lilac\/20 { --tw-gradient-to: rgba(199, 185, 255, 0.2); }
.to-mint-green\/30 { --tw-gradient-to: rgba(185, 228, 201, 0.3); }
.to-sky-blue\/20 { --tw-gradient-to: rgba(126, 200, 227, 0.2); }
.to-transparent { --tw-gradient-to: transparent; }
.border { border-width: 1px; border-style: solid; border-color: currentColor; }
.border-0 { border-width: 0; }
.border-b-2 { border-bottom-width: 2px; }
.border-t { border-top-width: 1px; }
.border-t-2 { border-top-width: 2px; }
.border-transparent { border-color: transparent; }
.border-gray-100 { border-color: #F3F4F6; }
.border-gray-200 { border-color: #E5E7EB; }
.border-gray-800 { border-color: #1F2937; }
.border-pop-pink { border-color: var(--pop-pink); }
.cursor-default { cursor: default; }
.drop-shadow-sm { filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.05)); }
.focus\:bg-white:focus { background-color: white; }
.focus\:border-pop-pink:focus { border-color: var(--pop-pink); }
.focus\:border-sunny-yellow:focus { border-color: var(--sunny-yellow); }
.focus\:outline-none:focus { outline: 0; }
.font-sans { font-family: 'Fredoka', system-ui, -apple-system, sans-serif; }
.h-0 { height: 0; }
.h-1 { height: 0.25rem; }
.h-7 { height: 1.75rem; }
.h-\\[140%\\] { height: 140%; }
.leading-\\[0.9\\] { line-height: 0.9; }
.left-3 { left: 0.75rem; }
.left-20 { left: 5rem; }
.left-\\[60%\\] { left: 60%; }
.mb-24 { margin-bottom: 6rem; }
.min-h-\\[60vh\\] { min-height: 60vh; }
.min-w-\\[50px\\] { min-width: 50px; }
.min-w-\\[80px\\] { min-width: 80px; }
.mt-auto { margin-top: auto; }
.pb-8 { padding-bottom: 2rem; }
.pb-16 { padding-bottom: 4rem; }
.pb-24 { padding-bottom: 6rem; }
.pt-4 { padding-top: 1rem; }
.pt-8 { padding-top: 2rem; }
.pt-10 { padding-top: 2.5rem; }
.pt-16 { padding-top: 4rem; }
.pt-28 { padding-top: 7rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.px-14 { padding-left: 3.5rem; padding-right: 3.5rem; }
.py-5 { padding-top: 1.25rem; padding-bottom: 1.25rem; }
.resize-none { resize: none; }
.right-3 { right: 0.75rem; }
.right-20 { right: 5rem; }
.rounded-md { border-radius: 0.375rem; }
.rounded-\\[2rem\\] { border-radius: 2rem; }
.rounded-\\[2.5rem\\] { border-radius: 2.5rem; }
.rounded-\\[3rem\\] { border-radius: 3rem; }
.rounded-tl-none { border-top-left-radius: 0; }
.space-x-4 > :not([hidden]) ~ :not([hidden]) { margin-left: 1rem; }
.space-y-2 > :not([hidden]) ~ :not([hidden]) { margin-top: 0.5rem; }
.space-y-4 > :not([hidden]) ~ :not([hidden]) { margin-top: 1rem; }
.space-y-6 > :not([hidden]) ~ :not([hidden]) { margin-top: 1.5rem; }
.space-y-8 > :not([hidden]) ~ :not([hidden]) { margin-top: 2rem; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.text-\\[10px\\] { font-size: 10px; line-height: 1rem; }
.text-gray-200 { color: #E5E7EB; }
.text-gray-400 { color: #9CA3AF; }
.text-gray-500 { color: #6B7280; }
.text-ink\\/80 { color: rgba(45, 45, 45, 0.8); }
.text-white\\/90 { color: rgba(255, 255, 255, 0.9); }
.tracking-tight { letter-spacing: -0.025em; }
.tracking-wider { letter-spacing: 0.05em; }
.tracking-widest { letter-spacing: 0.1em; }
.w-7 { width: 1.75rem; }
.w-\\[140%\\] { width: 140%; }
.whitespace-nowrap { white-space: nowrap; }
.hover\\:-rotate-2:hover { transform: rotate(-2deg); }
.hover\\:rotate-0:hover { transform: rotate(0deg); }
.hover\\:rotate-2:hover { transform: rotate(2deg); }
.hover\\:scale-105:hover { transform: scale(1.05); }
.hover\\:bg-blue-600:hover { background-color: #2563EB; }
.hover\\:bg-gray-100:hover { background-color: #F3F4F6; }
.hover\\:bg-ink:hover { background-color: var(--ink); color: white; }
.hover\\:bg-mint-green:hover { background-color: var(--mint-green); }
.hover\\:bg-pop-pink:hover { background-color: var(--pop-pink); color: white; }
.hover\\:bg-sky-blue:hover { background-color: var(--sky-blue); }
.hover\\:bg-sunny-yellow:hover { background-color: var(--sunny-yellow); }
.hover\\:border-ink:hover { border-color: var(--ink); }
.hover\\:text-ink:hover { color: var(--ink); }
.hover\\:text-white:hover { color: white; }
.hover\\:underline:hover { text-decoration: underline; }
.prose { color: #374151; line-height: 1.75; }
.prose-lg { font-size: 1.125rem; line-height: 1.8; }
.prose h1, .prose h2, .prose h3 { color: var(--ink); font-weight: 900; }
.prose a { color: var(--pop-pink); text-decoration: underline; }
.prose a:hover { color: var(--sunny-yellow); }
.variant-radio:checked + .variant-option { background-color: var(--sunny-yellow); border-color: var(--ink); box-shadow: 4px 4px 0 0 var(--ink); }
.variant-radio:focus-visible + .variant-option { outline: 3px solid rgba(255, 229, 125, 0.6); outline-offset: 4px; }
.hover\\:shadow-cartoon-hover:hover { box-shadow: 6px 6px 0px 0px var(--ink); }
.hover\\:shadow-cartoon:hover { box-shadow: 4px 4px 0px 0px var(--ink); }
.hover\\:text-pop-pink:hover { color: var(--pop-pink); }
.bottom-20 { bottom: 5rem; }
.top-3 { top: 0.75rem; }
.top-1\\/2 { top: 50%; }
.max-w-none { max-width: none; }
.order-1 { order: 1; }
.order-2 { order: 2; }
.group { position: relative; }
.mobile-menu-link { display: block; }
.lg\\:col-span-1 { grid-column: span 1 / span 1; }
.lg\\:col-span-2 { grid-column: span 2 / span 2; }
.lg\\:w-1\\/3 { width: 33.333333%; }
.lg\\:w-2\\/3 { width: 66.666667%; }
.sm\\:w-32 { width: 8rem; }
.md\\:h-32 { height: 8rem; }
.md\\:order-1 { order: 1; }
.md\\:order-2 { order: 2; }
.md\\:justify-start { justify-content: flex-start; }
.md\\:mb-0 { margin-bottom: 0; }
.md\\:mx-0 { margin-left: 0; margin-right: 0; }
/* Animations */
@keyframes bounce {
  0%, 100% {
    transform: translateY(-25%);
    animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
  }
  50% {
    transform: translateY(0);
    animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slide-up {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes wiggle {
  0%, 100% { transform: rotate(-3deg); }
  50% { transform: rotate(3deg); }
}

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

.animate-bounce { animation: bounce 1s infinite; }
.animate-bounce-slow { animation: bounce 3s infinite; }
.animate-pulse { animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; }
.animate-spin { animation: spin 1s linear infinite; }
.animate-fade-in { animation: fade-in 0.5s ease-in-out; }
.animate-slide-up { animation: slide-up 0.5s ease-out; }
.animate-wiggle { animation: wiggle 3s ease-in-out infinite; }
.animate-float { animation: float 6s ease-in-out infinite; }

/* Cursor */
.cursor-pointer { cursor: pointer; }
.cursor-not-allowed { cursor: not-allowed; }

/* Selection */
::selection {
  background-color: var(--sunny-yellow);
  color: var(--ink);
}

/* Scrollbar Styles */
::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

::-webkit-scrollbar-track {
  background: var(--paper);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: var(--pop-pink);
  border-radius: 10px;
  border: 2px solid var(--ink);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--sunny-yellow);
}

/* Form Elements */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
input[type="number"],
input[type="search"],
textarea,
select {
  appearance: none;
  background-color: white;
  border: 3px solid var(--ink);
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  font-family: 'Fredoka', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: var(--ink);
  width: 100%;
  transition: all 0.2s;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="password"]:focus,
input[type="number"]:focus,
input[type="search"]:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--sunny-yellow);
  box-shadow: 0 0 0 3px rgba(255, 229, 125, 0.2);
}

input[type="text"]:disabled,
input[type="email"]:disabled,
input[type="tel"]:disabled,
input[type="password"]:disabled,
input[type="number"]:disabled,
input[type="search"]:disabled,
textarea:disabled,
select:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Button Base */
button,
.button,
[type="submit"] {
  appearance: none;
  background-color: var(--pop-pink);
  color: white;
  border: 4px solid var(--ink);
  border-radius: 9999px;
  padding: 0.75rem 1.5rem;
  font-family: 'Fredoka', sans-serif;
  font-weight: 900;
  font-size: 1.125rem;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: 4px 4px 0px 0px var(--ink);
}

button:hover,
.button:hover,
[type="submit"]:hover {
  box-shadow: 6px 6px 0px 0px var(--ink);
  transform: translateY(-2px);
}

button:active,
.button:active,
[type="submit"]:active {
  transform: scale(0.95);
}

button:disabled,
.button:disabled,
[type="submit"]:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Utility Divider */
.divider {
  width: 100%;
  height: 4px;
  background-color: var(--ink);
  border-radius: 9999px;
  margin: 2rem 0;
}

/* For responsive images */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Links */
a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

/* Lists */
ul, ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Table Reset */
table {
  border-collapse: collapse;
  width: 100%;
}

/* Helper Classes for Shopify */
.page-width {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Loading States */
.skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
}

@keyframes loading {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Print Utilities */
@media print {
  .no-print { display: none !important; }
}

/* Responsive Text Utilities */
@media (max-width: 640px) {
  .responsive-text-sm { font-size: 0.875rem; }
  .responsive-text-base { font-size: 1rem; }
  .responsive-text-lg { font-size: 1.125rem; }
  .responsive-text-xl { font-size: 1.25rem; }
}

/* Card Component */
.card {
  background-color: white;
  border: 4px solid var(--ink);
  border-radius: 1.5rem;
  padding: 1.5rem;
  box-shadow: 4px 4px 0px 0px var(--ink);
  transition: all 0.3s;
}

.card:hover {
  box-shadow: 6px 6px 0px 0px var(--ink);
  transform: translateY(-2px);
}

/* Badge Component */
.badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border: 2px solid var(--ink);
  border-radius: 9999px;
  font-weight: 700;
  font-size: 0.875rem;
}

/* Floating Labels */
.floating-label {
  position: relative;
}

.floating-label input {
  padding-top: 1.5rem;
}

.floating-label label {
  position: absolute;
  top: 50%;
  left: 1rem;
  transform: translateY(-50%);
  transition: all 0.2s;
  pointer-events: none;
}

.floating-label input:focus + label,
.floating-label input:not(:placeholder-shown) + label {
  top: 0.5rem;
  font-size: 0.75rem;
  transform: translateY(0);
  background-color: white;
  padding: 0 0.25rem;
}

/* Special Effects */
.glow {
  box-shadow: 0 0 20px rgba(255, 143, 177, 0.5);
}

.text-stroke {
  -webkit-text-stroke: 2px var(--ink);
  text-stroke: 2px var(--ink);
}

.text-shadow-pop {
  text-shadow: 3px 3px 0px var(--ink);
}

/* Gradient Text */
.gradient-text {
  background: linear-gradient(135deg, var(--pop-pink) 0%, var(--sunny-yellow) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Additional Responsive Utilities */
@media (max-width: 767px) {
  .mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: white;
    z-index: 50;
    transform: translateX(100%);
    transition: transform 0.3s ease-out;
  }

  .mobile-menu.open {
    transform: translateX(0);
  }

  /* Mobile specific styles */
  .mobile-only { display: block !important; }
  .desktop-only { display: none !important; }
}

/* Desktop specific styles */
@media (min-width: 768px) {
  .mobile-only { display: none !important; }
  .desktop-only { display: block !important; }

  /* Ensure proper flex layouts on desktop */
  .md\\:flex-row {
    flex-direction: row !important;
  }

  .md\\:flex {
    display: flex !important;
  }

  .md\\:grid {
    display: grid !important;
  }

  .md\\:hidden {
    display: none !important;
  }

  /* Ensure proper grid columns on desktop */
  .md\\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .md\\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }

  .md\\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }
}

@media (min-width: 1024px) {
  .lg\\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }

  .lg\\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }

  .lg\\:grid-cols-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  }
}

/* Additional Shopify-specific styles */
.shopify-section {
  position: relative;
}

.shopify-section + .shopify-section {
  margin-top: 0;
}

.product-price {
  display: inline-block;
}

.product-price .money {
  font-weight: 700;
  color: var(--ink);
}

.product-price s .money {
  opacity: 0.6;
  text-decoration: line-through;
}

/* Ensure everything is properly styled */
* {
  box-sizing: border-box;
}

/* For better Shopify compatibility */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.main-content {
  padding-top: 7rem;
}

/* Rounded corners for all major elements */
.rounded-cartoon {
  border-radius: 1.5rem;
}

/* Ensure fonts are loaded */
body, button, input, select, textarea {
  font-family: 'Fredoka', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
}
