/** Shopify CDN: Minification failed

Line 24:16 Expected identifier but found whitespace
Line 24:18 Unexpected "{"
Line 24:28 Expected ":"
Line 26:18 Expected identifier but found whitespace
Line 26:20 Unexpected "{"
Line 26:30 Expected ":"
Line 34:16 Expected identifier but found whitespace
Line 34:18 Unexpected "{"
Line 34:28 Expected ":"
Line 36:17 Expected identifier but found whitespace
... and 30 more hidden warnings

**/
/* ==========================================================================
   Squizo — Stress Relief Toys Theme
   Base stylesheet
   ========================================================================== */

/* Design tokens ---------------------------------------------------------- */
:root {
  /* Official Squizo brand palette (Brand Sheet) */
  --color-cream: {{ settings.color_background | default: '#FCF4E6' }};   /* Cream · base */
  --color-cream-soft: #FBEEDA;
  --color-primary: {{ settings.color_primary | default: '#F9C23C' }};    /* Squizo Yellow */
  --color-primary-dark: #E89A2C;                                          /* Honey Gold */
  --color-on-primary: #7E3F0C;                                            /* Cocoa Brown ink */
  /* Warm accent for text/prices/links (readable on light backgrounds) */
  --color-pink: #C9791A;
  --color-orange: #E07B1F;                                                /* Sunset Orange */
  --color-pink-soft: #FBE3BC;
  --color-pink-blush: #FBEED6;
  --color-green: {{ settings.color_secondary | default: '#A8C97F' }};
  --color-green-soft: #DCE9C6;
  --color-yellow: {{ settings.color_primary | default: '#F9C23C' }};
  --color-yellow-soft: #FBEBC0;
  --color-text: {{ settings.color_text | default: '#5F4636' }};
  --color-text-light: #9A8574;
  --color-heading: {{ settings.color_heading | default: '#7E3F0C' }};
  --color-footer: {{ settings.color_footer | default: '#2B2826' }};
  --color-footer-text: #E9E2DC;
  --color-white: #ffffff;
  --color-border: #F0E6DC;

  --font-heading: {{ settings.type_header_font.family }}, {{ settings.type_header_font.fallback_families }};
  --font-body: {{ settings.type_body_font.family }}, {{ settings.type_body_font.fallback_families }};
  --font-heading-weight: {{ settings.type_header_font.weight | default: 700 }};

  --page-width: {{ settings.page_width | default: 1280 }}px;
  --page-gutter: 20px;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-pill: 999px;
  --shadow-soft: 0 12px 30px -12px rgba(180, 140, 150, 0.28);
  --shadow-card: 0 18px 40px -20px rgba(160, 120, 130, 0.35);
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--color-text);
  background-color: var(--color-cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; transition: color var(--transition); }

button { font-family: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: var(--font-heading-weight);
  color: var(--color-heading);
  line-height: 1.2;
  margin: 0 0 0.5em;
}

h1 { font-size: clamp(2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

p { margin: 0 0 1em; }

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

/* Layout helpers --------------------------------------------------------- */
.page-width {
  max-width: var(--page-width);
  margin-inline: auto;
  padding-inline: var(--page-gutter);
}

.page-width--narrow { max-width: 820px; }

.section {
  padding-block: clamp(2.5rem, 6vw, 5rem);
}

.section--tight { padding-block: clamp(1.5rem, 4vw, 3rem); }

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

.text-center { text-align: center; }

/* Section headings ------------------------------------------------------- */
.section-header { text-align: center; margin-bottom: clamp(1.5rem, 4vw, 3rem); }
.section-header__subtitle {
  color: var(--color-text-light);
  font-size: 0.95rem;
  margin-bottom: 0.6rem;
  order: 2;
}
.section-header__title {
  font-size: clamp(1.5rem, 3.2vw, 2.2rem);
  letter-spacing: 0.02em;
  order: 1;
  margin-bottom: 0.35rem;
}
.section-header { display: flex; flex-direction: column; align-items: center; }
.section-header__title::after {
  content: "";
  display: block;
  width: 60px; height: 4px;
  margin: 0.75rem auto 0;
  border-radius: var(--radius-pill);
  background: var(--color-primary);
}

/* Buttons ---------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.9rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  background: var(--color-primary);
  color: var(--color-on-primary);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  box-shadow: 0 10px 22px -10px rgba(227, 168, 31, 0.85);
}
.btn:hover { transform: translateY(-2px); background: var(--color-primary-dark); box-shadow: 0 16px 28px -12px rgba(227, 168, 31, 1); }
.btn--secondary { background: var(--color-green); box-shadow: 0 10px 22px -10px rgba(168, 201, 127, 0.9); }
.btn--outline {
  background: transparent;
  color: var(--color-heading);
  border: 2px solid var(--color-heading);
  box-shadow: none;
}
.btn--outline:hover { background: var(--color-heading); color: var(--color-white); }
.btn--small { padding: 0.6rem 1.3rem; font-size: 0.78rem; }
.btn--full { width: 100%; }

/* Forms ------------------------------------------------------------------ */
.field {
  width: 100%;
  padding: 0.85rem 1.2rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--color-text);
  background: var(--color-white);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.field:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px var(--color-pink-soft);
}
textarea.field { border-radius: var(--radius-md); resize: vertical; min-height: 120px; }
label { display: block; font-size: 0.88rem; font-weight: 600; margin-bottom: 0.4rem; color: var(--color-heading); }
.form__row { margin-bottom: 1.1rem; }

/* Badges ----------------------------------------------------------------- */
.badge {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  color: var(--color-white);
}
.badge--sale { background: var(--color-primary); color: var(--color-on-primary); }
.badge--sold-out { background: var(--color-text-light); }
.badge--new { background: var(--color-green); }

/* Rich text -------------------------------------------------------------- */
.rte a { color: var(--color-pink); text-decoration: underline; }
.rte img { border-radius: var(--radius-md); margin-block: 1rem; }
.rte ul { list-style: disc; padding-left: 1.4rem; margin-bottom: 1rem; }
.rte ol { list-style: decimal; padding-left: 1.4rem; margin-bottom: 1rem; }

/* Utilities -------------------------------------------------------------- */
.pill-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--color-pink-blush);
  color: var(--color-heading);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 600;
}

.skip-to-content {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: -1;
}
.skip-to-content:focus {
  position: fixed;
  top: 1rem; left: 1rem;
  z-index: 1000;
  background: var(--color-white);
  color: var(--color-heading);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-card);
}

/* Wave / blob decorations ------------------------------------------------ */
.blob-divider { display: block; width: 100%; height: auto; line-height: 0; }

/* Grid ------------------------------------------------------------------- */
.grid {
  display: grid;
  gap: clamp(1rem, 2.5vw, 1.75rem);
}
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 990px) {
  .grid--4 { grid-template-columns: repeat(3, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 749px) {
  .grid--4, .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .grid--2 { grid-template-columns: 1fr; }
}

/* Animations ------------------------------------------------------------- */
@keyframes float-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal { opacity: 0; }
.reveal.is-visible { animation: fade-up 0.7s ease forwards; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* Mobile refinements ----------------------------------------------------- */
@media (max-width: 749px) {
  :root { --page-gutter: 16px; }
  body { font-size: 0.95rem; }
  .section { padding-block: clamp(2rem, 8vw, 3rem); }
  .btn { padding: 0.8rem 1.5rem; font-size: 0.82rem; }
  .btn--full-mobile { width: 100%; }
  /* Larger tap targets for form controls */
  .field { padding: 0.9rem 1.1rem; font-size: 16px; } /* 16px prevents iOS zoom */
  .grid { gap: 1rem; }
}

@media (max-width: 480px) {
  h1 { font-size: clamp(1.7rem, 8vw, 2.2rem); }
  .section-header { margin-bottom: 1.5rem; }
}
