/* Pixazo Recipes — theme matches pixazo.ai playground (dark + lime accent) */

/* Inline section CTA (added below model-mention sections).
   Needs generous space ABOVE and BELOW so the pill button reads as a
   discrete CTA — not visually fused with the prompt block / callout
   that follows. Bottom was 0.25rem which made the button "merge" into
   the next dark surface card. */
.section-cta {
  display: flex;
  justify-content: center;
  margin: 2rem 0 2.5rem;
}
.section-cta .btn {
  font-weight: 700;
  letter-spacing: 0.005em;
}
@media (max-width: 540px) {
  .section-cta { margin: 1.5rem 0 2rem; }
  .section-cta .btn { width: 100%; justify-content: center; }
}


:root {
  --bg: #0a0a0b;
  --bg-soft: #131316;
  --surface: #1c1c1f;
  --surface-2: #27272a;
  --surface-3: #343536;
  --border: #2f2f33;
  --border-soft: #232327;
  --text: #ffffff;
  --text-muted: #a1a1aa;
  --text-dim: #71717a;
  --accent: #d1fe17;
  --accent-hover: #b8e30a;
  --accent-soft: rgba(209, 254, 23, 0.12);
  --danger: #ef4444;
  --container: 1180px;
  --radius: 14px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --shadow-soft: 0 1px 0 rgba(255, 255, 255, 0.04) inset, 0 12px 40px rgba(0, 0, 0, 0.35);
  --font: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-mono: "JetBrains Mono", SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 10, 11, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-soft);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 1.5rem;
}
.brand { display: flex; align-items: center; gap: 0.5rem; }
.brand img { height: 30px; width: auto; }
.brand-text { font-weight: 700; letter-spacing: -0.01em; color: #fff; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  flex-wrap: nowrap;
}
.nav-links a:hover { color: #fff; }
.nav-signin {
  color: var(--text) !important;
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-weight: 500;
  font-size: 0.88rem;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.nav-signin:hover { border-color: var(--accent); background: var(--accent-soft); }
.nav-cta {
  background: var(--accent);
  color: #0a0a0b !important;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.88rem;
  transition: transform 0.15s ease, background 0.15s ease;
}
.nav-cta:hover { background: var(--accent-hover); transform: translateY(-1px); }

@media (max-width: 1100px) {
  .nav-links { gap: 0.9rem; font-size: 0.85rem; }
}
@media (max-width: 980px) {
  .nav-links .hide-mobile { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  padding: 4rem 0 3rem;
  background:
    radial-gradient(900px 480px at 50% -10%, rgba(209, 254, 23, 0.08), transparent 60%),
    radial-gradient(700px 400px at 10% 0%, rgba(120, 80, 255, 0.06), transparent 60%);
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(209, 254, 23, 0.25);
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 1rem 0 0.6rem;
  font-weight: 700;
}
.hero .subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 680px;
  margin-bottom: 1.8rem;
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin-bottom: 2rem;
  font-size: 0.88rem;
  color: var(--text-dim);
}
.hero-meta .chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  color: var(--text-muted);
}
.hero-meta .chip strong { color: #fff; font-weight: 600; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 0.5rem; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  transition: all 0.15s ease;
  cursor: pointer;
}
.btn-primary { background: var(--accent); color: #0a0a0b; }
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-1px); color: #0a0a0b; }
.btn-ghost { background: transparent; color: #fff; border-color: var(--border); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

/* ---------- Media embed ---------- */
.media-wrap {
  margin-top: 2.5rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}
.media-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0;
  min-height: 420px;
}
.media-video {
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.media-video iframe,
.media-video twitter-widget,
.media-video .twitter-tweet {
  width: 100% !important;
  max-width: 520px !important;
  margin: 0 !important;
}
.media-side {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  border-left: 1px solid var(--border-soft);
}
.media-side h3 {
  margin: 0;
  font-size: 1.25rem;
  letter-spacing: -0.01em;
}
.media-side p { margin: 0; color: var(--text-muted); }
.tool-stack {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 0.25rem;
}
.tool-stack .pill {
  background: var(--surface-2);
  border: 1px solid var(--border);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
}

@media (max-width: 880px) {
  .media-inner { grid-template-columns: 1fr; }
  .media-side { border-left: 0; border-top: 1px solid var(--border-soft); }
}

/* ---------- Section base ---------- */
section.block { padding: 4rem 0; border-top: 1px solid var(--border-soft); }
.section-head {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1.75rem;
}
.section-head .step-num {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--accent);
  background: var(--accent-soft);
  border: 1px solid rgba(209, 254, 23, 0.25);
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  letter-spacing: 0.06em;
}
.section-head h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin: 0;
  letter-spacing: -0.015em;
  font-weight: 700;
}
.section-lede {
  color: var(--text-muted);
  max-width: 780px;
  margin-bottom: 2rem;
  font-size: 1.02rem;
}

/* ---------- Workflow overview ---------- */
.workflow-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.workflow-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.workflow-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.workflow-card .num {
  font-family: var(--font-mono);
  color: var(--accent);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
}
.workflow-card h4 { margin: 0; font-size: 1.15rem; }
.workflow-card p { margin: 0; color: var(--text-muted); font-size: 0.95rem; }

@media (max-width: 720px) { .workflow-grid { grid-template-columns: 1fr; } }

/* ---------- Prompt block ---------- */
.prompt-block {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 1.5rem;
}
.prompt-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 1.1rem;
  background: var(--surface-2);
  border-bottom: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--text-muted);
}
.prompt-head .label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  color: #fff;
}
.prompt-head .label::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
}
.copy-btn {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.35rem 0.85rem;
  font-size: 0.78rem;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: all 0.15s ease;
}
.copy-btn:hover { color: var(--accent); border-color: var(--accent); }
.copy-btn.copied { color: var(--accent); border-color: var(--accent); background: var(--accent-soft); }

.prompt-body {
  padding: 1.25rem 1.25rem 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.86rem;
  line-height: 1.65;
  color: #e4e4e7;
  white-space: pre-wrap;
  word-break: break-word;
  max-height: 520px;
  overflow-y: auto;
}
.prompt-body::-webkit-scrollbar { width: 8px; }
.prompt-body::-webkit-scrollbar-thumb { background: var(--surface-3); border-radius: 4px; }
.prompt-body::-webkit-scrollbar-track { background: transparent; }

/* ---------- Step output (prompt + result side-by-side) ---------- */
.step-output-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
}
.step-output {
  margin: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.step-output img,
.step-output video {
  width: 100%;
  display: block;
  background: #000;
  max-height: 600px;
  object-fit: contain;
}
.step-output figcaption {
  padding: 0.85rem 1.1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  border-top: 1px solid var(--border);
  background: var(--surface-2);
  font-size: 0.8rem;
}
.step-output-meta {
  color: var(--text-muted);
  font-family: var(--font-mono);
}
@media (max-width: 880px) {
  .step-output-grid { grid-template-columns: 1fr; }
}

/* ---------- Callout ---------- */
.callout {
  background: var(--accent-soft);
  border: 1px solid rgba(209, 254, 23, 0.3);
  border-radius: var(--radius);
  padding: 1rem 1.2rem;
  margin-bottom: 1.5rem;
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.95rem;
}
.callout .ico {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border-radius: 999px;
  background: var(--accent);
  color: #0a0a0b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
}
.callout strong { color: #fff; }

/* ---------- Timeline ---------- */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 1.5rem;
}
.beat {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1.1rem;
}
.beat .time {
  font-family: var(--font-mono);
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.beat .desc { color: var(--text-muted); font-size: 0.93rem; }
.beat .desc strong { color: #fff; font-weight: 500; }
.beat .sfx { display: block; color: var(--text-dim); font-size: 0.82rem; margin-top: 0.3rem; font-style: italic; }

@media (max-width: 600px) {
  .beat { grid-template-columns: 1fr; gap: 0.25rem; }
}

/* ---------- Remix CTA ---------- */
.remix {
  background:
    radial-gradient(700px 320px at 100% 0%, rgba(209, 254, 23, 0.1), transparent 60%),
    linear-gradient(180deg, var(--surface), var(--bg-soft));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  margin: 3rem 0;
  text-align: center;
}
.remix h2 { margin: 0 0 0.6rem; font-size: clamp(1.6rem, 3vw, 2.2rem); letter-spacing: -0.015em; }
.remix p { color: var(--text-muted); margin: 0 auto 1.75rem; max-width: 620px; }
.remix-prompt {
  background: rgba(0, 0, 0, 0.4);
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  padding: 1.1rem 1.25rem;
  text-align: left;
  font-family: var(--font-mono);
  font-size: 0.86rem;
  color: #e4e4e7;
  white-space: pre-wrap;
  max-width: 760px;
  margin: 0 auto 1.5rem;
}

/* ---------- Footer (rich, multi-column — matches main pixazo.ai brand) ---------- */
.site-footer {
  background: var(--bg-soft);
  border-top: 1px solid var(--border-soft);
  padding: 3.5rem 0 1.75rem;
  color: var(--text-dim);
  font-size: 0.88rem;
  margin-top: 3rem;
}
.site-footer .container { display: block; }
.site-footer a { color: var(--text-muted); transition: color 0.15s ease; }
.site-footer a:hover { color: var(--accent); }

.footer-cols {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border-soft);
}
.footer-col h4 {
  margin: 0 0 1rem;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #fff;
}
.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.footer-col ul li { font-size: 0.88rem; line-height: 1.5; }

.footer-col-brand .brand { display: inline-block; margin-bottom: 0.85rem; }
.footer-col-brand .brand img { height: 28px; }
.footer-blurb {
  max-width: 280px;
  margin: 0 0 1.25rem;
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--text-dim);
}
.footer-social {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.15s ease;
}
.footer-social a:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-soft);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 1.5rem;
  font-size: 0.82rem;
  color: var(--text-dim);
}
.footer-disclosure {
  max-width: 640px;
  text-align: right;
  font-style: italic;
}
.footer-bottom a { color: var(--accent); }

@media (max-width: 960px) {
  .footer-cols { grid-template-columns: 1fr 1fr 1fr; }
  .footer-col-brand { grid-column: span 3; }
}
@media (max-width: 640px) {
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .footer-col-brand { grid-column: span 2; }
  .footer-bottom { flex-direction: column; }
  .footer-disclosure { text-align: left; }
}

/* ---------- Toast ---------- */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--accent);
  color: #0a0a0b;
  padding: 0.7rem 1.2rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.88rem;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
  pointer-events: none;
  z-index: 200;
}
.toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }

/* ---------- Production-shell CSS overrides ---------- */
/* Pixazo-shell.css has marketing rules that override our hero/typography.
   Reassert recipes-specific styling for content INSIDE main but OUTSIDE the
   shell header/footer. */
main, main * { box-sizing: border-box; }
main h1, main h2, main h3, main h4 {
  color: #fff !important;
  font-family: 'Poppins', sans-serif !important;
  text-transform: none !important;
}
main h1 { font-size: clamp(2.2rem, 4.8vw, 3.6rem) !important; line-height: 1.1 !important; letter-spacing: -0.025em !important; }
main p, main li, main span:not(.eyebrow):not(.step-num):not(.chip):not(.label) { font-family: 'Poppins', sans-serif !important; }
main .container { max-width: var(--container) !important; }
/* Hero & sections shouldn't get marketing-CSS background colors */
.hero, .block, section.block { background: transparent !important; }

/* ---------- Pixazo navbar (production shell) — opaque dark background ---------- */
/* Bootstrap .navbar.fixed-top defaults to transparent; production site has its
   own bg-fill rules that don't always travel cleanly. Force opaque dark so the
   nav doesn't show content scrolling under it. */
#topNavAppy.navbar,
#topNavAppy.navbar.fixed-top,
header > nav#topNavAppy {
  background: #0a0a0b !important;
  border-bottom: 1px solid #1f1f23 !important;
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
}
/* Defensive: some shell CSS adds .header-effect.squeezelogo with a different bg;
   keep it consistent. */
#topNavAppy.header-effect,
#topNavAppy.header-effect.squeezelogo {
  background: #0a0a0b !important;
}

/* ---------- Recipes index grid (/prompts) ---------- */
.prompts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 1.5rem;
}
.prompt-card {
  display: flex;
  flex-direction: column;
  background: #1f1f23;
  border: 1px solid #3a3a40;
  border-radius: var(--radius-lg);
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06) inset, 0 8px 24px rgba(0, 0, 0, 0.4);
}
.prompt-card:hover {
  transform: translateY(-3px);
  border-color: rgba(209, 254, 23, 0.55);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08) inset, 0 20px 60px rgba(0, 0, 0, 0.6);
  color: inherit;
}
.prompt-card-media {
  background: #000;
  aspect-ratio: 16 / 9;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.prompt-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.prompt-card:hover .prompt-card-media img {
  transform: scale(1.04);
}
.prompt-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}
.prompt-card-body h3 {
  margin: 0;
  font-size: 1.5rem;
  letter-spacing: -0.015em;
  font-weight: 700;
  color: #fff;
}
.prompt-card-body p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  flex: 1;
}
.prompt-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.prompt-card-meta .chip {
  background: var(--surface-2);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.78rem;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
}
.prompt-card-cta {
  margin-top: 0.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.95rem;
  transition: gap 0.18s ease;
}
.prompt-card:hover .prompt-card-cta {
  gap: 0.7rem;
}
@media (max-width: 540px) {
  .prompts-grid { grid-template-columns: 1fr; gap: 1rem; }
  .prompt-card-body { padding: 1.25rem; }
  .prompt-card-body h3 { font-size: 1.3rem; }
}

/* ---------- Hero: prompt collections (right column) — added 2026-06-26 ---------- */
.hero .hero-grid { display: grid; grid-template-columns: 1fr 340px; gap: 2.5rem; align-items: center; }
.hero-copy .subtitle { margin-bottom: 0; }
.hero-collections {
  display: flex; flex-direction: column; gap: 0.55rem;
  background: var(--bg-soft); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.1rem;
}
.hero-collections-title {
  font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--text-dim); margin: 0.1rem 0 0.3rem 0.2rem;
}
.collection-card {
  display: flex; align-items: center; gap: 0.75rem;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 0.85rem 1rem;
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.collection-card:hover { border-color: var(--accent); transform: translateX(3px); color: inherit; }
.collection-card .cc-text { display: flex; flex-direction: column; gap: 0.1rem; }
.collection-card .cc-name { font-weight: 600; color: #fff; font-size: 0.98rem; }
.collection-card .cc-desc { color: var(--text-muted); font-size: 0.82rem; }
.collection-card .cc-arrow { margin-left: auto; color: var(--accent); font-size: 1.15rem; transition: transform 0.15s ease; }
.collection-card:hover .cc-arrow { transform: translateX(3px); }
@media (max-width: 860px) {
  .hero .hero-grid { grid-template-columns: 1fr; gap: 1.8rem; }
  .hero-collections { max-width: 460px; }
}
