/* =========================================================================
   SquishUp — Global design system
   Ported from the original React/Tailwind build to framework-free CSS so the
   look is identical inside WordPress. All colors use the same OKLCH values.
   ========================================================================= */

:root {
  --radius: 1.25rem;

  --background: oklch(0.995 0.005 320);
  --foreground: oklch(0.22 0.06 300);
  --card: oklch(1 0 0);
  --card-foreground: oklch(0.22 0.06 300);

  --primary: oklch(0.7 0.22 350);            /* hot pink */
  --primary-foreground: oklch(0.99 0 0);
  --secondary: oklch(0.85 0.16 200);         /* cyan */
  --secondary-foreground: oklch(0.22 0.06 300);
  --muted: oklch(0.96 0.02 320);
  --muted-foreground: oklch(0.5 0.06 300);
  --accent: oklch(0.9 0.18 95);              /* lemon */
  --accent-foreground: oklch(0.22 0.06 300);
  --destructive: oklch(0.6 0.24 25);
  --destructive-foreground: oklch(0.99 0 0);
  --border: oklch(0.92 0.03 320);

  --bubble: oklch(0.82 0.16 350);
  --lemon: oklch(0.92 0.17 95);
  --mint: oklch(0.86 0.12 165);
  --grape: oklch(0.68 0.2 300);
  --sky: oklch(0.82 0.12 230);

  /* Gradient stops are variables so they can be recolored per-widget or globally. */
  --grad-a: oklch(0.7 0.22 350);
  --grad-b: oklch(0.68 0.2 300);

  --gradient-hero: linear-gradient(135deg, oklch(0.82 0.16 350) 0%, oklch(0.78 0.18 300) 50%, oklch(0.85 0.16 200) 100%);
  --gradient-candy: linear-gradient(135deg, oklch(0.92 0.17 95) 0%, oklch(0.82 0.16 350) 100%);
  --gradient-cta: linear-gradient(135deg, var(--grad-a) 0%, var(--grad-b) 100%);

  --shadow-soft: 0 10px 30px -10px oklch(0.7 0.22 350 / 0.35);
  --shadow-pop: 0 18px 40px -12px oklch(0.68 0.2 300 / 0.45);

  --font-display: "Fredoka", "Nunito", system-ui, sans-serif;
  --font-body: "Nunito", system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body.su-body {
  margin: 0;
  background-color: var(--background);
  color: var(--foreground);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  background-image:
    radial-gradient(at 20% 0%, oklch(0.92 0.12 350 / 0.5) 0px, transparent 50%),
    radial-gradient(at 80% 100%, oklch(0.88 0.12 200 / 0.4) 0px, transparent 50%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
}

.su-display,
h1.su-display, h2.su-display, h3.su-display,
.su-main h1, .su-main h2, .su-main h3, .su-main h4 {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.su-container {
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 640px) {
  .su-container { padding-left: 1.5rem; padding-right: 1.5rem; }
}

.su-section { padding-top: 5rem; padding-bottom: 5rem; }

/* ------------------------------ Utilities ------------------------------- */
.su-gradient-hero { background-image: var(--gradient-hero); }
.su-gradient-candy { background-image: var(--gradient-candy); }
.su-gradient-cta { background-image: var(--gradient-cta); }
.su-text-gradient {
  background: var(--gradient-cta);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.su-shadow-soft { box-shadow: var(--shadow-soft); }
.su-shadow-pop { box-shadow: var(--shadow-pop); }
.su-eyebrow {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
}

/* ------------------------------ Buttons --------------------------------- */
.su-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 0;
  cursor: pointer;
  border-radius: 9999px;
  padding: 0.95rem 1.6rem;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.95rem;
  line-height: 1;
  transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}
.su-btn:hover { transform: scale(1.05); }
.su-btn-cta { background-image: var(--gradient-cta); color: var(--primary-foreground); box-shadow: var(--shadow-soft); }
.su-btn-dark { background: var(--foreground); color: var(--background); box-shadow: var(--shadow-pop); }
.su-btn-outline {
  background: oklch(1 0 0 / 0.9);
  border: 2px solid oklch(0.22 0.06 300 / 0.1);
  color: var(--foreground);
}
.su-btn-block { display: flex; width: 100%; }

/* ------------------------------ Header ---------------------------------- */
.su-header {
  position: sticky;
  top: 0;
  z-index: 50;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  background: transparent;
}
.su-header.is-scrolled {
  background: oklch(0.995 0.005 320 / 0.8);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-soft);
  border-bottom: 1px solid oklch(0.92 0.03 320 / 0.5);
}
.su-header-inner {
  max-width: 80rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
}
@media (min-width: 640px) { .su-header-inner { padding: 0.75rem 1.5rem; } }
.su-logo { display: inline-flex; align-items: center; gap: 0.5rem; }
.su-logo-mark {
  display: grid;
  place-items: center;
  height: 2.25rem;
  width: 2.25rem;
  border-radius: 1rem;
  background-image: var(--gradient-cta);
  color: var(--primary-foreground);
  font-family: var(--font-display);
  font-weight: 700;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease;
}
.su-logo:hover .su-logo-mark { transform: scale(1.1); }
.su-logo-text { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; letter-spacing: -0.02em; }
.su-nav { display: none; align-items: center; gap: 2rem; }
@media (min-width: 768px) { .su-nav { display: flex; } }
.su-nav a {
  position: relative;
  font-size: 0.875rem;
  font-weight: 700;
  color: oklch(0.22 0.06 300 / 0.8);
  transition: color 0.2s ease;
}
.su-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  height: 2px; width: 0;
  background: var(--primary);
  transition: width 0.2s ease;
}
.su-nav a:hover { color: var(--primary); }
.su-nav a:hover::after { width: 100%; }
.su-header-actions { display: flex; align-items: center; gap: 0.25rem; }
@media (min-width: 640px) { .su-header-actions { gap: 0.5rem; } }
.su-icon-btn {
  display: grid;
  place-items: center;
  height: 2.5rem; width: 2.5rem;
  border: 0; background: transparent; cursor: pointer;
  border-radius: 9999px; color: var(--foreground);
  transition: background-color 0.2s ease;
}
.su-icon-btn:hover { background: var(--muted); }
.su-icon-btn.su-hide-sm { display: none; }
@media (min-width: 640px) { .su-icon-btn.su-hide-sm { display: grid; } }
.su-cart {
  position: relative;
  display: grid; place-items: center;
  height: 2.5rem; width: 2.5rem;
  border-radius: 9999px;
  background: var(--primary); color: var(--primary-foreground);
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease;
}
.su-cart:hover { transform: scale(1.1); }
.su-cart-badge {
  position: absolute; top: -4px; right: -4px;
  display: grid; place-items: center;
  height: 1.25rem; width: 1.25rem;
  border-radius: 9999px;
  background: var(--accent); color: var(--accent-foreground);
  font-size: 10px; font-weight: 800;
}
.su-burger { display: grid; margin-left: 0.25rem; }
@media (min-width: 768px) { .su-burger { display: none; } }
.su-mobile-nav { display: none; border-top: 1px solid oklch(0.92 0.03 320 / 0.5); background: oklch(0.995 0.005 320 / 0.97); -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px); padding: 1rem; }
.su-mobile-nav.is-open { display: block; }
.su-mobile-nav a { display: block; padding: 0.75rem; border-radius: 0.75rem; font-weight: 700; }
.su-mobile-nav a:hover { background: var(--muted); }

/* ------------------------------ Footer ---------------------------------- */
.su-footer {
  margin-top: 6rem;
  background-image: linear-gradient(135deg, oklch(0.7 0.22 350 / 0.1), oklch(0.85 0.16 200 / 0.1), oklch(0.9 0.18 95 / 0.1));
  border-top: 1px solid oklch(0.92 0.03 320 / 0.5);
}
.su-footer-grid {
  max-width: 80rem; margin: 0 auto; padding: 4rem 1rem;
  display: grid; gap: 3rem;
}
@media (min-width: 640px) { .su-footer-grid { padding: 4rem 1.5rem; } }
@media (min-width: 768px) { .su-footer-grid { grid-template-columns: repeat(4, 1fr); } }
.su-footer h4 { font-family: var(--font-display); font-weight: 700; margin: 0 0 1rem; }
.su-footer p { color: var(--muted-foreground); font-size: 0.875rem; }
.su-footer-links { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.5rem; }
.su-footer-links a { font-size: 0.875rem; color: var(--muted-foreground); transition: color 0.2s ease; }
.su-footer-links a:hover { color: var(--primary); }
.su-socials { display: flex; gap: 0.75rem; margin-top: 1.25rem; }
.su-social {
  display: grid; place-items: center; height: 2.5rem; width: 2.5rem;
  border-radius: 9999px; background: oklch(0.7 0.22 350 / 0.2);
  font-size: 0.75rem; font-weight: 700;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.su-social:hover { background: var(--primary); color: var(--primary-foreground); }
.su-footer-bottom { border-top: 1px solid oklch(0.92 0.03 320 / 0.5); }
.su-footer-bottom-inner {
  max-width: 80rem; margin: 0 auto; padding: 1.5rem 1rem;
  display: flex; flex-direction: column; gap: 0.75rem;
  align-items: center; justify-content: space-between;
  font-size: 0.75rem; color: var(--muted-foreground);
}
@media (min-width: 640px) { .su-footer-bottom-inner { flex-direction: row; } }
.su-inline-form { display: flex; gap: 0.5rem; }
.su-inline-form input {
  flex: 1; min-width: 0;
  border-radius: 9999px; background: var(--background);
  border: 1px solid var(--border); padding: 0.5rem 1rem; font-size: 0.875rem;
  font-family: inherit; color: var(--foreground);
}
.su-inline-form input:focus { outline: 2px solid var(--primary); outline-offset: 0; }

/* ------------------------------ Hero ------------------------------------ */
.su-hero { position: relative; overflow: hidden; background-image: var(--gradient-hero); }
.su-hero-blob { position: absolute; height: 24rem; width: 24rem; border-radius: 9999px; filter: blur(64px); }
.su-hero-blob.a { top: -8rem; left: -8rem; background: oklch(0.9 0.18 95 / 0.4); }
.su-hero-blob.b { bottom: -8rem; right: -8rem; background: oklch(0.68 0.2 300 / 0.4); }
.su-hero-inner {
  position: relative; max-width: 80rem; margin: 0 auto;
  padding: 3rem 1rem 5rem;
  display: grid; gap: 2.5rem; align-items: center;
}
@media (min-width: 640px) { .su-hero-inner { padding: 3rem 1.5rem 5rem; } }
@media (min-width: 1024px) { .su-hero-inner { grid-template-columns: 1fr 1fr; } }
.su-hero-copy { text-align: center; }
@media (min-width: 1024px) { .su-hero-copy { text-align: left; } }
.su-pill {
  display: inline-flex; align-items: center; gap: 0.5rem;
  border-radius: 9999px; background: oklch(0.995 0.005 320 / 0.8);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  padding: 0.375rem 1rem; font-size: 0.75rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.08em; color: var(--primary);
  box-shadow: var(--shadow-soft);
}
.su-hero h1 {
  margin: 1.25rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6rem); font-weight: 700;
  line-height: 0.95; letter-spacing: -0.03em;
}
.su-hero-sub { margin: 1.25rem auto 0; font-size: 1.15rem; color: oklch(0.22 0.06 300 / 0.8); max-width: 36rem; }
@media (min-width: 1024px) { .su-hero-sub { margin-left: 0; } }
.su-hero-actions { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; }
@media (min-width: 1024px) { .su-hero-actions { justify-content: flex-start; } }
.su-hero-rating { margin-top: 2rem; display: flex; align-items: center; gap: 1rem; justify-content: center; }
@media (min-width: 1024px) { .su-hero-rating { justify-content: flex-start; } }
.su-avatars { display: flex; }
.su-avatars img { height: 2.25rem; width: 2.25rem; border-radius: 9999px; border: 2px solid var(--background); object-fit: cover; margin-left: -0.5rem; }
.su-avatars img:first-child { margin-left: 0; }
.su-hero-media { position: relative; height: 26rem; }
@media (min-width: 640px) { .su-hero-media { height: 32rem; } }
.su-hero-media > img { position: absolute; inset: 0; height: 100%; width: 100%; object-fit: cover; border-radius: 2.5rem; box-shadow: var(--shadow-pop); }
.su-chip {
  position: absolute; display: flex; align-items: center; gap: 0.5rem;
  background: var(--background); border-radius: 1rem; padding: 0.75rem; box-shadow: var(--shadow-pop);
}
.su-chip img { height: 3rem; width: 3rem; border-radius: 0.75rem; object-fit: cover; }
.su-chip .su-chip-title { font-size: 0.75rem; font-weight: 700; }
.su-chip .su-chip-price { font-size: 0.75rem; font-weight: 700; color: var(--primary); }
.su-chip.a { top: -1rem; left: -1rem; }
.su-chip.b { bottom: 1.5rem; right: -0.5rem; }
.su-proof { position: relative; background: var(--foreground); color: var(--background); padding: 1rem 0; }
.su-proof-inner {
  max-width: 80rem; margin: 0 auto; padding: 0 1rem;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-around;
  gap: 1rem; font-size: 0.875rem; font-weight: 700;
}
.su-stars { display: inline-flex; gap: 1px; color: var(--accent); }
.su-stars svg { fill: currentColor; }

/* ------------------------- Section headings ----------------------------- */
.su-section-head {
  display: flex; flex-direction: column; gap: 1rem;
  align-items: flex-start; justify-content: space-between; margin-bottom: 2.5rem;
}
@media (min-width: 640px) { .su-section-head { flex-direction: row; align-items: flex-end; } }
.su-section-head h2 { font-family: var(--font-display); font-size: clamp(2.25rem, 4vw, 3rem); font-weight: 700; margin-top: 0.5rem; }
.su-section-link { font-size: 0.875rem; font-weight: 800; color: var(--primary); }
.su-section-link:hover { text-decoration: underline; }
.su-center { text-align: center; }
.su-center .su-section-head { flex-direction: column; align-items: center; }

/* ------------------------- Product cards/grid --------------------------- */
.su-grid { display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .su-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .su-grid-4 { grid-template-columns: repeat(4, 1fr); } .su-grid-3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1280px) { .su-grid-4.su-grid-xl { grid-template-columns: repeat(4, 1fr); } }

.su-product-card {
  position: relative; display: block;
  border-radius: 1.5rem; background: var(--card);
  border: 1px solid oklch(0.92 0.03 320 / 0.6);
  padding: 1rem; box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.su-product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-pop); }
.su-tag {
  position: absolute; top: 1.5rem; left: 1.5rem; z-index: 10;
  border-radius: 9999px; background-image: var(--gradient-cta);
  padding: 0.25rem 0.75rem; font-size: 10px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.08em; color: var(--primary-foreground);
  box-shadow: var(--shadow-soft);
}
.su-wish {
  position: absolute; top: 1.5rem; right: 1.5rem; z-index: 10;
  display: grid; place-items: center; height: 2.25rem; width: 2.25rem;
  border: 0; cursor: pointer; border-radius: 9999px;
  background: oklch(0.995 0.005 320 / 0.9); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  color: var(--foreground); transition: background-color 0.2s ease, color 0.2s ease;
}
.su-wish:hover { background: var(--primary); color: var(--primary-foreground); }
.su-product-media {
  position: relative; aspect-ratio: 1 / 1; overflow: hidden; border-radius: 1rem;
  background-image: linear-gradient(135deg, oklch(0.7 0.22 350 / 0.1), oklch(0.85 0.16 200 / 0.1), oklch(0.9 0.18 95 / 0.1));
}
.su-product-media img { height: 100%; width: 100%; object-fit: cover; transition: transform 0.5s ease; }
.su-product-card:hover .su-product-media img { transform: scale(1.1); }
.su-product-body { padding: 1rem 0.25rem 0; }
.su-rating { display: flex; align-items: center; gap: 0.25rem; font-size: 0.75rem; color: var(--muted-foreground); margin-bottom: 0.25rem; }
.su-rating .su-star { color: var(--accent); }
.su-rating strong { color: var(--foreground); }
.su-product-name { font-family: var(--font-display); font-weight: 700; font-size: 1rem; }
.su-price-row { margin-top: 0.25rem; display: flex; align-items: baseline; gap: 0.5rem; }
.su-price { font-size: 1.125rem; font-weight: 800; color: var(--primary); }
.su-compare { font-size: 0.95rem; color: var(--muted-foreground); text-decoration: line-through; }

/* ------------------------- Filters / toolbar ---------------------------- */
.su-toolbar {
  display: flex; flex-direction: column; gap: 1rem;
  align-items: stretch; justify-content: space-between; margin-bottom: 2rem;
}
@media (min-width: 1024px) { .su-toolbar { flex-direction: row; align-items: center; } }
.su-search { position: relative; flex: 1; max-width: 28rem; }
.su-search svg { position: absolute; left: 1rem; top: 50%; transform: translateY(-50%); color: var(--muted-foreground); }
.su-search input {
  width: 100%; border-radius: 9999px; background: var(--card);
  border: 1px solid var(--border); padding: 0.75rem 1rem 0.75rem 2.75rem;
  font-size: 0.875rem; font-family: inherit; color: var(--foreground);
}
.su-search input:focus { outline: 2px solid var(--primary); }
.su-select { border-radius: 9999px; background: var(--card); border: 1px solid var(--border); padding: 0.75rem 1.25rem; font-size: 0.875rem; font-weight: 700; font-family: inherit; color: var(--foreground); }
.su-chips { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2rem; }
.su-filter {
  border-radius: 9999px; padding: 0.5rem 1rem; font-size: 0.875rem; font-weight: 800;
  border: 1px solid var(--border); background: var(--card); color: var(--foreground);
  cursor: pointer; transition: all 0.2s ease;
}
.su-filter:hover { border-color: var(--primary); }
.su-filter.is-active { background-image: var(--gradient-cta); color: var(--primary-foreground); border-color: transparent; box-shadow: var(--shadow-soft); }
.su-empty { text-align: center; color: var(--muted-foreground); padding: 5rem 0; }

/* ------------------------- Benefits ------------------------------------- */
.su-candy { position: relative; overflow: hidden; background-image: var(--gradient-candy); }
.su-blob { position: absolute; border-radius: 9999px; filter: blur(48px); }
.su-blob.m { top: 2.5rem; left: 2.5rem; height: 10rem; width: 10rem; background: oklch(0.86 0.12 165 / 0.5); }
.su-blob.s { bottom: 2.5rem; right: 2.5rem; height: 14rem; width: 14rem; background: oklch(0.82 0.12 230 / 0.5); }
.su-benefit {
  border-radius: 1.5rem; background: oklch(0.995 0.005 320 / 0.9);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  padding: 1.5rem; box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.su-benefit:hover { transform: translateY(-4px); box-shadow: var(--shadow-pop); }
.su-benefit-icon {
  display: grid; place-items: center; height: 3rem; width: 3rem; margin-bottom: 1rem;
  border-radius: 1rem; background-image: var(--gradient-cta); color: var(--primary-foreground); font-size: 1.25rem;
}
.su-benefit h3 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; }
.su-benefit p { margin-top: 0.25rem; font-size: 0.875rem; color: var(--muted-foreground); }

/* ------------------------- Reviews -------------------------------------- */
.su-review {
  border-radius: 1.5rem; background: var(--card);
  border: 1px solid oklch(0.92 0.03 320 / 0.6); padding: 1.5rem; box-shadow: var(--shadow-soft);
}
.su-review .su-stars { color: var(--accent); margin-bottom: 0.75rem; }
.su-review p { font-size: 0.875rem; }
.su-review-name { margin-top: 1rem; font-size: 0.75rem; font-weight: 800; color: var(--muted-foreground); }

/* ------------------------- Viral ---------------------------------------- */
.su-dark { background: var(--foreground); color: var(--background); overflow: hidden; }
.su-dark .su-eyebrow { color: var(--accent); }
.su-viral-grid { display: grid; gap: 1rem; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 640px) { .su-viral-grid { grid-template-columns: repeat(4, 1fr); } }
.su-viral {
  position: relative; aspect-ratio: 9 / 16; border-radius: 1.5rem; overflow: hidden;
  background-image: var(--gradient-hero); cursor: pointer;
}
.su-viral img { position: absolute; inset: 0; height: 100%; width: 100%; object-fit: cover; opacity: 0.8; transition: opacity 0.3s ease, transform 0.3s ease; }
.su-viral:hover img { opacity: 1; transform: scale(1.1); }
.su-viral-overlay { position: absolute; inset: 0; background: linear-gradient(to top, oklch(0 0 0 / 0.6), transparent); }
.su-viral-meta { position: absolute; left: 0.75rem; right: 0.75rem; bottom: 0.75rem; font-size: 0.75rem; color: #fff; }
.su-viral-play { position: absolute; top: 0.75rem; right: 0.75rem; display: grid; place-items: center; height: 2rem; width: 2rem; border-radius: 9999px; background: oklch(1 0 0 / 0.2); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); color: #fff; }

/* ------------------------- Newsletter ----------------------------------- */
.su-newsletter { max-width: 56rem; margin: 0 auto; padding: 5rem 1rem; text-align: center; }
.su-newsletter-card { border-radius: 2.5rem; background-image: var(--gradient-cta); padding: 2.5rem; box-shadow: var(--shadow-pop); color: var(--primary-foreground); }
@media (min-width: 640px) { .su-newsletter-card { padding: 4rem; } }
.su-newsletter-card h2 { font-family: var(--font-display); font-size: clamp(2.25rem, 4vw, 3rem); font-weight: 700; }
.su-newsletter-card p { margin-top: 0.75rem; opacity: 0.9; }
.su-newsletter-form { margin-top: 1.75rem; display: flex; flex-direction: column; gap: 0.75rem; max-width: 28rem; margin-inline: auto; }
@media (min-width: 640px) { .su-newsletter-form { flex-direction: row; } }
.su-newsletter-form input { flex: 1; border: 0; border-radius: 9999px; padding: 0.75rem 1.25rem; color: var(--foreground); font-family: inherit; }
.su-newsletter-form input:focus { outline: 4px solid oklch(1 0 0 / 0.4); }

/* ------------------------- Page hero (inner) ---------------------------- */
.su-page-hero { position: relative; overflow: hidden; background-image: var(--gradient-hero); padding: 4rem 1rem; text-align: center; }
.su-page-hero h1 { font-family: var(--font-display); font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 700; }
.su-page-hero p { margin: 1rem auto 0; max-width: 38rem; font-size: 1.05rem; color: oklch(0.22 0.06 300 / 0.8); }

/* ------------------------- Product detail ------------------------------- */
.su-pd { max-width: 80rem; margin: 0 auto; padding: 2.5rem 1rem 5rem; }
@media (min-width: 640px) { .su-pd { padding: 2.5rem 1.5rem 5rem; } }
.su-breadcrumb { font-size: 0.75rem; color: var(--muted-foreground); margin-bottom: 1.5rem; }
.su-breadcrumb a:hover { color: var(--primary); }
.su-breadcrumb .here { color: var(--foreground); }
.su-pd-grid { display: grid; gap: 2.5rem; }
@media (min-width: 1024px) { .su-pd-grid { grid-template-columns: 1fr 1fr; } }
.su-pd-main {
  position: relative; aspect-ratio: 1 / 1; border-radius: 2rem; overflow: hidden;
  background-image: linear-gradient(135deg, oklch(0.7 0.22 350 / 0.15), oklch(0.85 0.16 200 / 0.15), oklch(0.9 0.18 95 / 0.15));
  box-shadow: var(--shadow-soft);
}
.su-pd-main img { position: absolute; inset: 0; height: 100%; width: 100%; object-fit: cover; transition: transform 0.7s ease; }
.su-pd-main:hover img { transform: scale(1.1); }
.su-pd-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.75rem; margin-top: 1rem; }
.su-pd-thumb { aspect-ratio: 1 / 1; border-radius: 1rem; overflow: hidden; border: 2px solid transparent; background: none; padding: 0; cursor: pointer; }
.su-pd-thumb.is-active { border-color: var(--primary); }
.su-pd-rating { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; }
.su-pd h1 { margin-top: 0.75rem; font-family: var(--font-display); font-size: clamp(2.25rem, 5vw, 3rem); font-weight: 700; }
.su-pd-price { margin-top: 1rem; display: flex; align-items: baseline; gap: 0.75rem; }
.su-pd-price .now { font-size: 1.875rem; font-weight: 800; color: var(--primary); }
.su-pd-price .was { font-size: 1.25rem; color: var(--muted-foreground); text-decoration: line-through; }
.su-save { font-size: 0.75rem; font-weight: 800; color: var(--destructive); background: oklch(0.6 0.24 25 / 0.1); border-radius: 9999px; padding: 0.125rem 0.5rem; }
.su-pd-desc { margin-top: 1.25rem; color: var(--muted-foreground); }
.su-features { margin: 1.5rem 0 0; padding: 0; list-style: none; display: grid; gap: 0.5rem; font-size: 0.875rem; }
.su-features li { display: flex; align-items: flex-start; gap: 0.5rem; }
.su-features li::before { content: "✓"; color: var(--primary); margin-top: 0.1rem; }
.su-buy-row { margin-top: 2rem; display: flex; align-items: center; gap: 0.75rem; }
.su-qty { display: flex; align-items: center; border: 1px solid var(--border); background: var(--card); border-radius: 9999px; }
.su-qty button { display: grid; place-items: center; height: 3rem; width: 3rem; border: 0; background: none; cursor: pointer; color: var(--foreground); }
.su-qty button:hover { background: var(--muted); }
.su-qty button:first-child { border-radius: 9999px 0 0 9999px; }
.su-qty button:last-child { border-radius: 0 9999px 9999px 0; }
.su-qty-val { width: 3rem; text-align: center; font-weight: 800; }
.su-trust { margin-top: 1.5rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; font-size: 0.75rem; }
.su-trust div { border-radius: 1rem; background: var(--muted); padding: 0.75rem; text-align: center; }
.su-meta { margin-top: 2rem; display: grid; gap: 0.75rem; font-size: 0.875rem; }
.su-meta .label { font-weight: 800; }
.su-meta .value { color: var(--muted-foreground); }
.su-sticky-atc { position: fixed; bottom: 1rem; left: 1rem; right: 1rem; z-index: 40; }
@media (min-width: 1024px) { .su-sticky-atc { display: none; } }
.su-sticky-inner { border-radius: 9999px; background: var(--foreground); color: var(--background); box-shadow: var(--shadow-pop); padding: 0.5rem; display: flex; align-items: center; gap: 0.75rem; }
.su-sticky-inner img { height: 3rem; width: 3rem; border-radius: 9999px; object-fit: cover; }

/* ------------------------- FAQ accordion -------------------------------- */
.su-faq { max-width: 48rem; margin: 0 auto; }
.su-faq-item { width: 100%; text-align: left; border-radius: 1rem; background: var(--card); border: 1px solid var(--border); padding: 1.25rem; cursor: pointer; transition: border-color 0.2s ease; margin-bottom: 0.75rem; }
.su-faq-item:hover { border-color: var(--primary); }
.su-faq-q { display: flex; align-items: center; justify-content: space-between; font-weight: 800; }
.su-faq-q .chevron { transition: transform 0.2s ease; }
.su-faq-item.is-open .su-faq-q .chevron { transform: rotate(180deg); }
.su-faq-a { margin-top: 0.5rem; font-size: 0.875rem; color: var(--muted-foreground); display: none; }
.su-faq-item.is-open .su-faq-a { display: block; }

/* ------------------------- Contact -------------------------------------- */
.su-contact-grid { display: grid; gap: 2.5rem; }
@media (min-width: 1024px) { .su-contact-grid { grid-template-columns: 1.2fr 1fr; } }
.su-field { display: grid; gap: 0.4rem; margin-bottom: 1rem; }
.su-field label { font-size: 0.8rem; font-weight: 800; }
.su-field input, .su-field textarea, .su-field select {
  border-radius: 1rem; background: var(--card); border: 1px solid var(--border);
  padding: 0.75rem 1rem; font-family: inherit; font-size: 0.95rem; color: var(--foreground);
}
.su-field input:focus, .su-field textarea:focus { outline: 2px solid var(--primary); }
.su-field textarea { min-height: 8rem; resize: vertical; }
.su-form-status { margin-top: 0.5rem; font-size: 0.875rem; font-weight: 700; }
.su-form-status.is-error { color: var(--destructive); }
.su-form-status.is-success { color: oklch(0.6 0.15 165); }
.su-contact-card { border-radius: 1.5rem; background: var(--card); border: 1px solid var(--border); padding: 1.5rem; box-shadow: var(--shadow-soft); margin-bottom: 1rem; }
.su-contact-card h3 { font-family: var(--font-display); font-weight: 700; margin-bottom: 0.25rem; }
.su-contact-card p { color: var(--muted-foreground); font-size: 0.9rem; }

/* ------------------------- Cart / checkout ------------------------------ */
.su-cart-layout { display: grid; gap: 2rem; }
@media (min-width: 1024px) { .su-cart-layout { grid-template-columns: 1.6fr 1fr; } }
.su-line { display: flex; gap: 1rem; align-items: center; border-radius: 1.25rem; background: var(--card); border: 1px solid var(--border); padding: 1rem; margin-bottom: 1rem; }
.su-line img { height: 5rem; width: 5rem; border-radius: 1rem; object-fit: cover; }
.su-line-info { flex: 1; }
.su-line-info h4 { font-family: var(--font-display); font-weight: 700; }
.su-summary { border-radius: 1.5rem; background: var(--card); border: 1px solid var(--border); padding: 1.5rem; box-shadow: var(--shadow-soft); }
.su-summary-row { display: flex; justify-content: space-between; padding: 0.4rem 0; font-size: 0.95rem; }
.su-summary-total { display: flex; justify-content: space-between; padding-top: 0.75rem; margin-top: 0.5rem; border-top: 1px solid var(--border); font-weight: 800; font-size: 1.15rem; }

/* ------------------------- Prose (legal/about) -------------------------- */
.su-prose { max-width: 48rem; margin: 0 auto; padding: 3rem 1rem; }
.su-prose h1 { font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3rem); font-weight: 700; margin-bottom: 1.5rem; }
.su-prose h2 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; margin: 2rem 0 0.75rem; }
.su-prose p, .su-prose li { color: var(--muted-foreground); margin-bottom: 0.75rem; }
.su-prose ul { padding-left: 1.25rem; }

/* ------------------------- Animations ----------------------------------- */
.su-animate-float { animation: su-float 6s ease-in-out infinite; }
.su-animate-float-slow { animation: su-float 9s ease-in-out infinite; }
.su-animate-blob { animation: su-blob 8s ease-in-out infinite; }
@keyframes su-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-22px) rotate(2deg); }
}
@keyframes su-blob {
  0%, 100% { border-radius: 50% 60% 55% 45% / 55% 45% 60% 50%; }
  50% { border-radius: 60% 45% 50% 55% / 45% 55% 50% 60%; }
}
@media (prefers-reduced-motion: reduce) {
  .su-animate-float, .su-animate-float-slow, .su-animate-blob { animation: none; }
}

/* ------------------------- Icon sizing ---------------------------------- */
/* Works whether Elementor outputs Font Awesome <i> or inline SVG. */
.su-icon-btn i, .su-icon-btn svg,
.su-cart i, .su-cart svg,
.su-burger i, .su-burger svg { font-size: 1.15rem; width: 1.25rem; height: 1.25rem; line-height: 1; }
.su-cart i, .su-cart svg, .su-cart { color: var(--primary-foreground); }
.su-cart svg { fill: currentColor; }

/* ------------------------- Elementor reset ------------------------------ */
/* Let our sections span full width inside Elementor's container. */
.elementor-widget-container > .su-block { width: 100%; }
