
  /* ============================================================
     TEDDY'S KITCHEN — Brand v3 (PawHome-inspired)
     Palette extracted from Halo Lab's PawHome project
     ============================================================ */
  :root {
    --white: #FFFFFF;
    --cream: #FFF7EA;
    --vanilla: #FFEDC1;
    --sunray: #FEB229;
    --sunray-deep: #E89E1F;
    --maroon: #470102;
    --maroon-soft: #6B0204;
    --rose: #FE9ABE;
    --rose-deep: #F87FAE;
    --ink-faint: rgba(71,1,2,0.55);
    --ink-fainter: rgba(71,1,2,0.30);
  }

  * { box-sizing: border-box; }
  html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
  body {
    margin: 0;
    background: var(--cream);
    color: var(--maroon);
    font-family: 'Inter', -apple-system, system-ui, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    font-weight: 400;
    /* Stop any descendant from causing horizontal scroll on mobile (the
       .mobile-menu lives off-screen-right via transform and would otherwise
       extend document.scrollWidth on touch devices).
       NOTE: `overflow-x: clip` rather than `hidden` — `hidden` creates a new
       scroll container, which breaks `position: sticky` on the nav (it would
       stick to body instead of the viewport). `clip` clips without that
       side effect. Safari ≥16, Chrome ≥90, Firefox ≥81. */
    overflow-x: clip;
    max-width: 100vw;
  }

  /* ============================================================
     TYPOGRAPHY
     ============================================================ */
  .display {
    font-family: 'Archivo Black', 'Inter', sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    line-height: 0.92;
  }
  h1, h2, h3, h4 {
    margin: 0;
    font-family: 'Archivo Black', sans-serif;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    line-height: 0.95;
    color: var(--maroon);
  }
  h1 { font-size: clamp(40px, 8vw, 104px); }
  h2 { font-size: clamp(40px, 6vw, 80px); }
  h3 { font-size: clamp(28px, 3.5vw, 48px); }
  h4 { font-size: clamp(20px, 2vw, 28px); }
  p { margin: 0 0 1em; }

  /* Audit P4 #44 — tighter mobile sizing on the homepage hero so it doesn't
     eat two viewport heights. Below 600px we cap aggressively. */
  @media (max-width: 600px) {
    .hero h1 { font-size: 40px !important; line-height: 1.05 !important; }
  }

  .eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--maroon);
    opacity: 0.7;
    display: inline-block;
  }
  .lead {
    font-size: clamp(17px, 1.5vw, 21px);
    line-height: 1.55;
    color: var(--maroon);
    opacity: 0.85;
    font-weight: 400;
    max-width: 580px;
  }

  /* ============================================================
     LAYOUT
     ============================================================ */
  .wrap { max-width: 1320px; margin: 0 auto; padding: 0 32px; }
  @media (max-width: 720px) { .wrap { padding: 0 20px; } }
  section { padding: 96px 0; }
  @media (max-width: 720px) { section { padding: 64px 0; } }

  /* ============================================================
     BUTTONS / PILLS
     ============================================================ */
  .pill-btn {
    display: inline-flex; align-items: center; justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 999px;
    font-family: 'Inter', sans-serif;
    font-weight: 600; font-size: 15px;
    letter-spacing: 0.01em;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
    white-space: nowrap;
  }
  .pill-btn-dark { background: var(--maroon); color: var(--cream); }
  .pill-btn-dark:hover { background: var(--maroon-soft); transform: translateY(-1px); }
  .pill-btn-sunray { background: var(--sunray); color: var(--maroon); }
  .pill-btn-sunray:hover { background: var(--sunray-deep); transform: translateY(-1px); }
  .pill-btn-ghost {
    background: transparent; color: var(--maroon);
    border: 1.5px solid var(--maroon);
  }
  .pill-btn-ghost:hover { background: var(--maroon); color: var(--cream); }
  .pill-btn-cream { background: var(--cream); color: var(--maroon); }
  .pill-btn-cream:hover { background: var(--white); }
  .pill-btn-lg { padding: 18px 36px; font-size: 16px; }

  .pill-meta {
    display: inline-flex; align-items: center;
    padding: 6px 14px;
    border-radius: 999px;
    background: var(--cream);
    color: var(--maroon);
    font-size: 12.5px;
    font-weight: 500;
    border: 1px solid rgba(71,1,2,0.12);
  }

  /* ============================================================
     ANNOUNCE BAR
     ============================================================ */
  .announce {
    background: var(--maroon);
    color: var(--cream);
    text-align: center;
    padding: 11px 20px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.04em;
  }
  .announce-dot {
    display: inline-block; width: 7px; height: 7px;
    background: var(--sunray); border-radius: 50%;
    margin-right: 10px; vertical-align: middle;
  }
  .announce a {
    color: var(--sunray); text-decoration: underline;
    text-decoration-thickness: 1.5px; text-underline-offset: 3px;
    margin-left: 10px;
  }

  /* ============================================================
     NAVIGATION
     ============================================================ */
  /* Audit P0 #4 — sticky nav was getting trapped inside <header>'s box and
     would unstick once the header scrolled off. Flatten <header> so the nav's
     sticky context is the body. */
  header { display: contents; }
  nav {
    background: var(--cream);
    position: sticky; top: 0; z-index: 50;
    border-bottom: 1px solid rgba(71,1,2,0.08);
  }
  .nav-inner {
    display: flex; align-items: center; justify-content: space-between;
    max-width: 1320px; margin: 0 auto;
    padding: 18px 32px;
  }
  @media (max-width: 720px) { .nav-inner { padding: 14px 20px; } }
  .logo {
    display: flex; align-items: center; gap: 12px;
    text-decoration: none;
  }
  .logo-mark {
    width: 52px; height: 52px;
  }


  .logo-text {
    font-family: 'Archivo Black', sans-serif;
    font-size: 24px;
    color: var(--maroon);
    letter-spacing: -0.01em;
    line-height: 1;
  }
  .nav-links {
    display: flex; align-items: center; gap: 36px;
  }
  .nav-links a {
    color: var(--maroon);
    text-decoration: none;
    font-size: 14.5px;
    font-weight: 500;
    transition: opacity .15s ease;
  }
  .nav-links a:hover { opacity: 0.6; }
  @media (max-width: 880px) {
    .nav-links a:not(.pill-btn) { display: none; }
  }

  /* ============================================================
     HERO
     ============================================================ */
  .hero {
    background: var(--cream);
    padding: 80px 0 96px;
    position: relative;
    overflow: hidden;
  }
  .hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center;
  }
  @media (max-width: 980px) {
    .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  }

  .hero h1 {
    margin-bottom: 28px;
  }
  .hero h1 .sunray { color: var(--maroon); position: relative; display: inline-block; }
  .hero h1 .sunray::after {
    content: ''; position: absolute; left: 0; right: 0; bottom: 4px;
    height: 12px; background: var(--sunray); z-index: -1; border-radius: 6px;
  }
  .hero-sub {
    font-size: clamp(18px, 1.6vw, 22px);
    line-height: 1.5;
    color: var(--maroon);
    opacity: 0.82;
    max-width: 540px;
    margin-bottom: 36px;
    font-weight: 400;
  }
  .hero-actions {
    display: flex; gap: 14px; flex-wrap: wrap;
    margin-bottom: 36px;
  }
  .hero-tags {
    display: flex; gap: 10px; flex-wrap: wrap;
  }
  .hero-tags .pill-meta {
    background: transparent;
    border: 1.5px solid rgba(71,1,2,0.2);
  }

  .hero-visual {
    position: relative;
    aspect-ratio: 1/1;
    max-width: 580px;
    margin-left: auto;
    width: 100%;
  }
  .hero-frame {
    position: absolute; inset: 0;
    background: var(--vanilla);
    border-radius: 50% 50% 45% 45% / 55% 55% 45% 45%;
    overflow: hidden;
    transform: rotate(-2deg);
  }
  .hero-frame::before {
    /* Subtle inner glow / sky-ish effect */
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 50% 0%, var(--sunray) -10%, transparent 50%);
    opacity: 0.3;
  }
  .hero-bowl-img {
    position: absolute; inset: 8% 5% 0 5%;
    background-size: cover; background-position: center top;
    border-radius: 50% 50% 45% 45% / 55% 55% 45% 45%;
  }
  /* New: actual photo positioned over the vanilla circle. .hero-bowl-photo is now
     a <picture> wrapping the <img>, so geometry sits on the wrapper and image
     fitting / drop-shadow sit on the inner img. */
  .hero-bowl-photo {
    position: absolute;
    top: 50%; left: 50%;
    width: 95%; height: auto; max-height: 92%;
    transform: translate(-50%, -50%);
    z-index: 2;
    display: block;
  }
  .hero-bowl-photo img {
    width: 100%; height: auto;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 12px 24px rgba(71, 1, 2, 0.18));
  }
  @media (max-width: 720px) {
    .hero-bowl-photo { width: 92%; }
  }
  .hero-floating-tag {
    position: absolute;
    background: var(--sunray);
    color: var(--maroon);
    padding: 14px 22px;
    border-radius: 16px;
    font-family: 'Archivo Black', sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    box-shadow: 0 12px 28px rgba(71,1,2,0.18);
    transform: rotate(-6deg);
    z-index: 2;
  }
  .hero-floating-tag.tag-1 { top: 12%; right: -4%; }
  .hero-floating-tag.tag-2 { bottom: 14%; left: -4%; background: var(--rose); transform: rotate(4deg); }
  .hero-floating-tag .small {
    display: block; font-size: 10px; opacity: 0.7; margin-bottom: 2px;
  }

  /* ============================================================
     STATS STRIP
     ============================================================ */
  .stats-strip {
    background: var(--sunray);
    padding: 56px 0;
  }
  .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
  }
  @media (max-width: 720px) { .stats-grid { grid-template-columns: 1fr 1fr; gap: 24px; } }
  .stat-item {
    text-align: left;
    border-left: 3px solid var(--maroon);
    padding-left: 20px;
  }
  .stat-num {
    font-family: 'Archivo Black', sans-serif;
    font-size: clamp(48px, 6vw, 84px);
    color: var(--maroon);
    line-height: 0.9;
    text-transform: uppercase;
    margin-bottom: 8px;
  }
  .stat-label {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--maroon);
    text-transform: uppercase;
  }

  /* ============================================================
     HOW IT WORKS
     ============================================================ */
  .section-cream { background: var(--cream); }
  .section-vanilla { background: var(--vanilla); }
  .section-maroon { background: var(--maroon); color: var(--cream); }
  .section-maroon h1, .section-maroon h2, .section-maroon h3 { color: var(--cream); }
  .section-rose { background: var(--rose); }

  .section-header {
    margin-bottom: 64px;
    max-width: 800px;
  }
  .section-header.centered { text-align: center; margin-left: auto; margin-right: auto; }
  .section-header h2 { margin-bottom: 20px; }

  .steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  @media (max-width: 880px) { .steps-grid { grid-template-columns: 1fr; } }

  .step-card {
    background: var(--cream);
    border-radius: 28px;
    padding: 40px;
    position: relative;
    border: 2px solid var(--maroon);
    transition: transform .25s ease;
  }
  .step-card:hover { transform: translateY(-4px); }
  .step-card.bg-vanilla { background: var(--vanilla); }
  .step-card.bg-rose { background: var(--rose); }

  .step-num {
    font-family: 'Archivo Black', sans-serif;
    font-size: 96px;
    line-height: 0.85;
    color: var(--maroon);
    margin-bottom: 20px;
    display: block;
  }
  .step-card h3 {
    font-size: clamp(24px, 2.4vw, 32px);
    margin-bottom: 14px;
  }
  .step-card p {
    color: var(--maroon);
    font-size: 16px;
    line-height: 1.55;
    margin: 0;
    opacity: 0.85;
  }

  /* ============================================================
     CALCULATOR (PRESERVED LOGIC, RESTYLED)
     ============================================================ */
  .calculator {
    background: var(--cream);
    padding: 96px 0;
    position: relative;
  }
  .calc-card {
    background: var(--white);
    border: 2.5px solid var(--maroon);
    border-radius: 32px;
    padding: 56px;
    max-width: 760px;
    margin: 0 auto;
    box-shadow: 12px 12px 0 var(--maroon);
  }
  @media (max-width: 720px) { .calc-card { padding: 32px 24px; box-shadow: 6px 6px 0 var(--maroon); } }

  .calc-progress {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 36px;
  }
  .progress-bar {
    flex: 1;
    height: 6px;
    background: var(--vanilla);
    border-radius: 999px;
    overflow: hidden;
    margin-right: 18px;
  }
  #progress-fill {
    height: 100%;
    background: var(--sunray);
    width: 14%;
    transition: width .35s ease;
  }
  .progress-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--maroon);
    white-space: nowrap;
  }

  .calc-step { display: none; animation: fadeIn .35s ease; }
  .calc-step.is-active { display: block; }
  @keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

  .step-question {
    font-family: 'Archivo Black', sans-serif;
    font-size: clamp(28px, 3.5vw, 44px);
    line-height: 1.0;
    text-transform: uppercase;
    color: var(--maroon);
    margin-bottom: 12px;
  }
  .step-question em, .step-question .dn { color: var(--sunray); font-style: normal; }
  .step-sub {
    font-size: 15px;
    color: var(--maroon);
    opacity: 0.75;
    margin-bottom: 28px;
    line-height: 1.5;
  }

  /* Input fields */
  .step-input-wrap {
    display: flex; align-items: center; gap: 10px;
    background: var(--vanilla);
    border: 2px solid var(--maroon);
    border-radius: 16px;
    padding: 14px 20px;
    max-width: 400px;
    margin-bottom: 28px;
  }
  .step-input-wrap input {
    flex: 1; background: transparent; border: none; outline: none;
    font-family: 'Inter', sans-serif;
    font-size: 18px; font-weight: 600;
    color: var(--maroon);
  }
  .step-input-wrap input::placeholder { color: rgba(71,1,2,0.4); }
  .input-unit { font-weight: 700; color: var(--maroon); opacity: 0.6; font-size: 16px; }

  /* Breed search */
  .breed-search-wrap { position: relative; margin-bottom: 20px; }
  .breed-search-wrap input {
    width: 100%;
    background: var(--vanilla);
    border: 2px solid var(--maroon);
    border-radius: 16px;
    padding: 16px 16px 16px 48px;
    font-family: 'Inter', sans-serif;
    font-size: 16px; font-weight: 500;
    color: var(--maroon);
    outline: none;
  }
  .breed-search-wrap input::placeholder { color: rgba(71,1,2,0.4); }
  .breed-search-icon {
    position: absolute; left: 18px; top: 50%; transform: translateY(-50%);
    color: var(--maroon); opacity: 0.5;
    pointer-events: none;
  }
  .breed-dropdown {
    position: absolute; top: calc(100% + 8px); left: 0; right: 0;
    background: var(--white);
    border: 2px solid var(--maroon);
    border-radius: 16px;
    max-height: 340px;
    overflow-y: auto;
    z-index: 10;
    box-shadow: 4px 4px 0 var(--maroon);
    display: none;
    padding: 6px;
    scrollbar-width: thin;
    scrollbar-color: rgba(71,1,2,0.25) transparent;
  }
  .breed-dropdown::-webkit-scrollbar { width: 8px; }
  .breed-dropdown::-webkit-scrollbar-thumb {
    background: rgba(71,1,2,0.25); border-radius: 999px;
  }
  .breed-dropdown.is-open { display: block; }
  .breed-option {
    /* Reset browser <button> defaults so the dropdown looks like a list */
    appearance: none; -webkit-appearance: none;
    display: flex; align-items: center; gap: 12px;
    width: 100%;
    padding: 11px 14px;
    background: transparent;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-family: inherit;
    text-align: left;
    color: var(--maroon);
    transition: background .12s ease, transform .12s ease;
  }
  .breed-option + .breed-option { margin-top: 2px; }
  .breed-option:hover,
  .breed-option.is-focused {
    background: var(--vanilla);
  }
  .breed-option:active { background: var(--sunray); }
  @media (max-width: 720px) {
    .breed-option { padding: 16px 16px; min-height: 48px; font-size: 16px; }
    .breed-option-name { font-size: 16px; }
    .breed-dropdown { max-height: 340px; }
  }
  .breed-option-emoji { font-size: 20px; line-height: 1; }
  .breed-option-name { color: var(--maroon); font-weight: 600; font-size: 15px; flex: 1; }
  .breed-option-size { color: var(--maroon); opacity: 0.5; font-size: 12px; margin-left: auto; }
  .breed-dropdown-footer {
    padding: 8px 14px 4px;
    font-size: 11.5px;
    color: var(--maroon);
    opacity: 0.5;
    text-align: center;
    border-top: 1px solid rgba(71,1,2,0.08);
    margin-top: 4px;
    font-weight: 500;
    letter-spacing: 0.02em;
  }

  .breed-quick-picks {
    display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 20px;
  }
  .breed-quick {
    padding: 10px 18px;
    border-radius: 999px;
    background: var(--cream);
    border: 1.5px solid var(--maroon);
    color: var(--maroon);
    font-family: 'Inter', sans-serif;
    font-size: 13.5px;
    font-weight: 600;
    cursor: pointer;
    transition: all .15s ease;
  }
  .breed-quick:hover, .breed-quick.is-active { background: var(--maroon); color: var(--cream); }
  .breed-quick .quick-emoji { margin-right: 6px; }
  .breed-quick .quick-meta { opacity: 0.7; font-weight: 400; margin-left: 4px; font-size: 12px; }

  /* Breed info card */
  .breed-info-card {
    background: var(--vanilla);
    border: 2px solid var(--maroon);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 24px;
    display: none;
  }
  .breed-info-card.is-visible { display: block; }
  .breed-info-card-header { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
  .breed-info-card-header .emoji { font-size: 28px; }
  .breed-info-card-header h4 { font-size: 18px; margin: 0; }
  .breed-info-card-traits {
    display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 10px;
  }
  .breed-info-trait {
    background: var(--cream); border: 1px solid rgba(71,1,2,0.15);
    padding: 3px 10px; border-radius: 999px;
    font-size: 12px; color: var(--maroon); font-weight: 500;
  }
  .breed-info-card-notes { font-size: 13.5px; color: var(--maroon); opacity: 0.8; line-height: 1.5; margin: 0; }

  /* Mixed breed picker */
  .mixed-picker {
    background: var(--vanilla);
    border: 2px solid var(--maroon);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 24px;
    display: none;
  }
  .mixed-picker.is-visible { display: block; }
  .mixed-picker h4 { font-size: 14px; margin: 0 0 14px; }
  .mixed-parent-row { display: flex; gap: 10px; margin-bottom: 12px; align-items: center; }
  .mixed-parent-label {
    font-weight: 700; font-size: 13px; color: var(--maroon);
    width: 90px; text-transform: uppercase; letter-spacing: 0.06em;
  }
  .mixed-parent-input-wrap { flex: 1; position: relative; }
  .mixed-parent-input-wrap input {
    width: 100%; background: var(--cream);
    border: 1.5px solid rgba(71,1,2,0.2);
    border-radius: 12px; padding: 10px 14px;
    font-size: 16px; color: var(--maroon);
    font-family: 'Inter', sans-serif;
    outline: none;
  }
  .mixed-parent-selected {
    display: none;
    background: var(--cream); border: 1.5px solid var(--maroon);
    border-radius: 12px; padding: 10px 14px;
    align-items: center; gap: 10px; cursor: pointer;
  }
  .mixed-parent-selected.is-set { display: flex; }
  .mixed-parent-selected .remove { margin-left: auto; opacity: 0.5; cursor: pointer; }

  /* Multi-choice option grid */
  .option-grid {
    display: grid; gap: 12px; margin-bottom: 28px;
  }
  .option-grid.cols-2 { grid-template-columns: 1fr 1fr; }
  .option-grid.cols-3 { grid-template-columns: 1fr 1fr 1fr; }
  @media (max-width: 540px) { .option-grid.cols-3 { grid-template-columns: 1fr; } }
  .option-card {
    background: var(--cream);
    border: 2px solid var(--maroon);
    border-radius: 16px;
    padding: 20px;
    cursor: pointer;
    transition: all .15s ease;
    text-align: left;
    font-family: 'Inter', sans-serif;
  }
  .option-card:hover, .option-card.is-active { background: var(--maroon); color: var(--cream); }
  .option-card.is-active * { color: var(--cream); }
  .option-card-emoji { font-size: 32px; display: block; margin-bottom: 8px; }
  .option-card-title { font-family: 'Archivo Black', sans-serif; font-size: 16px; text-transform: uppercase; margin-bottom: 4px; color: var(--maroon); }
  .option-card-desc { font-size: 13px; color: var(--maroon); opacity: 0.7; line-height: 1.4; }
  .option-card.is-active .option-card-title, .option-card.is-active .option-card-desc { color: var(--cream); opacity: 1; }
  /* Bug fix — on mobile, tapping briefly enters :hover state. Children had hard-coded
     maroon color, so the cream-on-maroon bg made text invisible for a split second
     until the option was committed (`is-active`). Match the children to the parent's
     hover state. */
  .option-card:hover .option-card-title,
  .option-card:hover .option-card-desc {
    color: var(--cream);
    opacity: 1;
  }
  /* On touch devices, :hover sticks until the next tap — disable the hover swap
     entirely so the card only shows its inverted look once committed (.is-active). */
  @media (hover: none) {
    .option-card:hover { background: var(--cream); color: var(--maroon); }
    .option-card:hover .option-card-title { color: var(--maroon); opacity: 1; }
    .option-card:hover .option-card-desc { color: var(--maroon); opacity: 0.7; }
    .option-card.is-active { background: var(--maroon); }
    .option-card.is-active .option-card-title,
    .option-card.is-active .option-card-desc { color: var(--cream); opacity: 1; }
  }

  /* Concern chips (multi-select) */
  .concern-chips {
    display: flex; flex-wrap: wrap; gap: 10px;
    margin-bottom: 28px;
  }
  .concern-chip {
    padding: 10px 18px;
    border-radius: 999px;
    background: var(--cream);
    border: 1.5px solid var(--maroon);
    color: var(--maroon);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all .15s ease;
  }
  .concern-chip:hover { background: var(--vanilla); }
  .concern-chip.is-active { background: var(--maroon); color: var(--cream); }

  /* Calc nav (back/continue) */
  .calc-nav {
    display: flex; align-items: center; justify-content: space-between;
    margin-top: 8px;
  }
  .calc-back {
    background: none; border: none;
    color: var(--maroon); opacity: 0.6;
    cursor: pointer; padding: 8px 0;
    font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 500;
  }
  .calc-back:hover { opacity: 1; }
  .calc-skip {
    background: none; border: none;
    color: var(--maroon); opacity: 0.55;
    cursor: pointer; padding: 8px 0;
    font-family: 'Inter', sans-serif; font-size: 13.5px;
    text-decoration: underline;
    text-underline-offset: 3px;
  }

  /* ============================================================
     EMAIL GATE
     ============================================================ */
  .email-gate {
    background: var(--maroon);
    color: var(--cream);
    padding: 56px;
    border-radius: 32px;
    box-shadow: 12px 12px 0 var(--sunray);
    max-width: 760px;
    margin: 0 auto;
  }
  @media (max-width: 720px) { .email-gate { padding: 36px 24px; box-shadow: 6px 6px 0 var(--sunray); } }
  .email-gate h3 { color: var(--cream); margin-bottom: 14px; font-size: clamp(28px, 3vw, 42px); }
  .email-gate-sub { color: var(--cream); opacity: 0.8; font-size: 15px; line-height: 1.55; margin-bottom: 28px; max-width: 560px; }
  .email-gate-form { display: flex; flex-direction: column; gap: 14px; max-width: 440px; }
  .email-gate-form input {
    background: var(--cream); border: none;
    border-radius: 12px; padding: 16px 20px;
    font-family: 'Inter', sans-serif; font-size: 16px; font-weight: 500;
    color: var(--maroon);
    outline: none;
  }
  .email-gate-form input::placeholder { color: rgba(71,1,2,0.4); }
  .email-gate-error-box { background: rgba(255,247,234,0.1); border: 1px solid var(--rose); padding: 12px 16px; border-radius: 12px; color: var(--rose); font-size: 14px; margin-bottom: 14px; display: none; }
  .email-gate-error-box.is-visible { display: block; }
  .email-gate-loading { display: none; font-size: 14px; opacity: 0.7; margin-top: 12px; }
  .email-gate-loading.is-visible { display: block; }
  .email-gate-disclaimer { font-size: 12px; opacity: 0.5; margin-top: 16px; line-height: 1.5; }

  /* ============================================================
     RESULTS — DOG PROFILE CARD (the killer move)
     ============================================================ */
  .calc-results {
    display: none;
    max-width: 1100px;
    margin: 0 auto;
  }
  .calc-results.is-visible, .calc-results.show { display: block; }
  .dog-profile {
    background: var(--vanilla);
    border-radius: 36px;
    padding: 64px 56px;
    border: 2.5px solid var(--maroon);
    position: relative;
    overflow: hidden;
    margin-bottom: 48px;
    box-shadow: 12px 12px 0 var(--maroon);
  }
  @media (max-width: 720px) {
    .dog-profile { padding: 40px 28px; box-shadow: 6px 6px 0 var(--maroon); border-radius: 24px; }
  }
  .dog-profile-eyebrow {
    font-family: 'Inter', sans-serif; font-weight: 700;
    font-size: 12px; letter-spacing: 0.16em;
    text-transform: uppercase; opacity: 0.65; color: var(--maroon);
    display: block; margin-bottom: 20px;
  }
  .dog-profile-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 48px;
    align-items: center;
  }
  @media (max-width: 720px) { .dog-profile-grid { grid-template-columns: 1fr; gap: 32px; } }
  .dog-profile-name {
    font-family: 'Archivo Black', sans-serif;
    font-size: clamp(56px, 9vw, 120px);
    line-height: 0.88;
    text-transform: uppercase;
    color: var(--maroon);
    margin-bottom: 16px;
    word-break: break-all;
  }
  .dog-profile-personality {
    display: inline-block;
    background: var(--rose);
    color: var(--maroon);
    padding: 10px 22px;
    border-radius: 999px;
    font-family: 'Archivo Black', sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 24px;
  }
  .dog-profile-stats {
    display: flex; flex-wrap: wrap; gap: 8px;
    margin-bottom: 32px;
  }
  .dog-profile-stats .pill-meta {
    background: var(--cream);
    border-color: rgba(71,1,2,0.15);
    font-weight: 600;
  }
  .dog-profile-numbers {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    padding: 24px;
    background: var(--cream);
    border-radius: 20px;
    border: 1.5px solid rgba(71,1,2,0.1);
    margin-bottom: 28px;
  }
  .dog-profile-number-block .label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0.6;
    color: var(--maroon);
    margin-bottom: 6px;
  }
  .dog-profile-number-block .value {
    font-family: 'Archivo Black', sans-serif;
    font-size: clamp(28px, 3vw, 40px);
    color: var(--maroon);
    line-height: 1;
    text-transform: uppercase;
  }
  .dog-profile-cta {
    display: flex; gap: 12px; flex-wrap: wrap;
  }
  .dog-profile-image {
    aspect-ratio: 4/5;
    background: var(--cream);
    border-radius: 24px;
    border: 2px solid var(--maroon);
    position: relative;
    overflow: hidden;
    display: flex; align-items: center; justify-content: center;
  }
  .dog-profile-image .bowl-illu {
    width: 70%; aspect-ratio: 1/1;
    background:
      radial-gradient(circle at 30% 30%, var(--maroon) 0%, transparent 12%),
      radial-gradient(circle at 65% 40%, var(--sunray) 0%, transparent 10%),
      radial-gradient(circle at 45% 65%, var(--rose) 0%, transparent 8%),
      #FFEDC1;
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(71,1,2,0.15);
  }
  .dog-profile-image-tag {
    position: absolute;
    bottom: 20px; left: 20px;
    background: var(--sunray);
    color: var(--maroon);
    padding: 8px 14px;
    border-radius: 999px;
    font-family: 'Archivo Black', sans-serif;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
  }

  /* Recipe recommendations below profile */
  .recipe-recommendations { display: none; } .recipe-recommendations.show { display: block; } .recipe-recommendations h3 {
    font-size: clamp(24px, 2.5vw, 36px);
    margin-bottom: 24px;
    text-align: center;
  }
  .recipe-recommendation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
  }
  .recipe-rec-card {
    background: var(--cream);
    border: 2px solid var(--maroon);
    border-radius: 24px;
    padding: 24px;
    text-decoration: none;
    color: var(--maroon);
    transition: transform .2s ease;
  }
  .recipe-rec-card:hover { transform: translateY(-3px); }
  .recipe-rec-card .rec-rank {
    font-family: 'Archivo Black', sans-serif; font-size: 12px;
    background: var(--sunray); color: var(--maroon);
    padding: 4px 10px; border-radius: 999px;
    display: inline-block; margin-bottom: 14px;
    text-transform: uppercase; letter-spacing: 0.08em;
  }
  .recipe-rec-card h4 {
    font-family: 'Archivo Black', sans-serif;
    font-size: 24px; text-transform: uppercase;
    margin-bottom: 10px; line-height: 1;
  }
  .recipe-rec-card .grams {
    font-family: 'Archivo Black', sans-serif;
    font-size: 32px; color: var(--maroon);
    line-height: 1; margin-top: 14px;
  }
  .recipe-rec-card .grams small { font-size: 13px; opacity: 0.7; font-family: 'Inter', sans-serif; font-weight: 600; text-transform: lowercase; }

  /* ============================================================
     RECIPE PROFILE CARDS (Buddy-style)
     ============================================================ */
  .recipe-gallery {
    background: var(--cream);
    padding: 96px 0;
  }
  .recipe-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  @media (max-width: 980px) { .recipe-gallery-grid { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 640px) { .recipe-gallery-grid { grid-template-columns: 1fr; } }

  .recipe-profile {
    border-radius: 28px;
    padding: 28px;
    text-decoration: none;
    color: var(--maroon);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform .25s ease;
    border: 2px solid var(--maroon);
  }
  .recipe-profile:hover { transform: translateY(-6px); }
  .recipe-profile-image {
    border-radius: 20px;
    aspect-ratio: 1/1;
    overflow: hidden;
    margin-bottom: 20px;
    background: var(--cream);
  }
  .recipe-profile-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
  }
  .recipe-profile-personality {
    display: inline-block;
    background: var(--maroon);
    color: var(--cream);
    padding: 6px 14px;
    border-radius: 999px;
    font-family: 'Archivo Black', sans-serif;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    align-self: flex-start;
    margin-bottom: 14px;
  }
  .recipe-profile-name {
    font-family: 'Archivo Black', sans-serif;
    font-size: clamp(36px, 3.5vw, 52px);
    line-height: 0.88;
    text-transform: uppercase;
    margin-bottom: 12px;
    color: var(--maroon);
  }
  .recipe-profile-blurb {
    font-size: 14.5px;
    line-height: 1.5;
    color: var(--maroon);
    opacity: 0.82;
    margin-bottom: 18px;
  }
  .recipe-profile-meta {
    display: flex; flex-wrap: wrap; gap: 6px;
    margin-bottom: 20px;
  }
  .recipe-profile-meta .pill-meta {
    background: rgba(71,1,2,0.08);
    border: none;
    font-size: 11.5px;
  }
  .recipe-profile .pill-btn {
    align-self: flex-start;
  }

  /* ============================================================
     THE PREMIX SECTION
     ============================================================ */
  .premix {
    background: var(--maroon);
    color: var(--cream);
    padding: 120px 0;
  }
  .premix h2 { color: var(--cream); margin-bottom: 24px; }
  .premix-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
  }
  @media (max-width: 980px) { .premix-grid { grid-template-columns: 1fr; gap: 48px; } }
  .premix-text .lead { color: var(--cream); opacity: 0.85; margin-bottom: 28px; }
  .premix-stats {
    display: flex; gap: 36px; flex-wrap: wrap;
    margin-bottom: 36px;
    padding: 24px 0;
    border-top: 1.5px solid rgba(255,247,234,0.15);
    border-bottom: 1.5px solid rgba(255,247,234,0.15);
  }
  .premix-stat .num {
    font-family: 'Archivo Black', sans-serif;
    font-size: clamp(36px, 4vw, 56px);
    color: var(--sunray);
    line-height: 1;
  }
  .premix-stat .label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    opacity: 0.7;
    margin-top: 6px;
  }
  .premix-product-card {
    background: var(--sunray);
    border-radius: 32px;
    padding: 48px;
    transform: rotate(-3deg);
    transition: transform .3s ease;
    aspect-ratio: 4/5;
    display: flex; flex-direction: column; justify-content: space-between;
    color: var(--maroon);
    box-shadow: 16px 16px 0 var(--rose);
  }
  .premix-product-card:hover { transform: rotate(0deg); }
  .premix-product-claim {
    display: inline-block;
    background: var(--maroon);
    color: var(--cream);
    padding: 6px 14px;
    border-radius: 999px;
    font-family: 'Archivo Black', sans-serif;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 18px;
  }
  .premix-product-name {
    font-family: 'Archivo Black', sans-serif;
    font-size: 44px;
    text-transform: uppercase;
    line-height: 0.9;
    color: var(--maroon);
    margin-bottom: 10px;
  }
  .premix-product-meta {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--maroon);
  }
  .premix-product-illu {
    flex: 1;
    display: flex; align-items: center; justify-content: center;
    margin: 32px 0;
  }
  .premix-product-illu svg { width: 60%; }
  .premix-product-ingredients {
    background: var(--cream);
    border-radius: 16px;
    padding: 16px;
    font-size: 11px;
    color: var(--maroon);
    line-height: 1.55;
  }
  .premix-product-ingredients strong {
    display: block;
    font-family: 'Archivo Black', sans-serif;
    font-size: 10.5px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 6px;
  }

  /* ============================================================
     FOUNDER
     ============================================================ */
  .founder {
    background: var(--vanilla);
    padding: 96px 0;
  }
  .founder-grid {
    display: grid;
    grid-template-columns: 0.65fr 1fr;
    gap: 64px;
    align-items: center;
  }
  @media (max-width: 880px) { .founder-grid { grid-template-columns: 1fr; gap: 40px; } }
  .founder-photo {
    background: var(--rose);
    aspect-ratio: 4/5;
    border-radius: 32px;
    border: 2px solid var(--maroon);
    position: relative;
    overflow: hidden;
    display: flex; align-items: flex-end; padding: 24px;
    box-shadow: 8px 8px 0 var(--maroon);
    max-width: 380px;
    justify-self: end;
    width: 100%;
  }
  @media (max-width: 880px) {
    .founder-photo {
      max-width: 340px;
      justify-self: center;
    }
  }
  .founder-photo img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 28%;
    display: block;
    z-index: 1;
  }
  .founder-photo-tag {
    position: relative; z-index: 2;
    background: var(--cream);
    color: var(--maroon);
    padding: 8px 16px;
    border-radius: 999px;
    font-family: 'Archivo Black', sans-serif;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    box-shadow: 0 2px 8px rgba(71,1,2,0.18);
  }
  .founder-text .eyebrow { margin-bottom: 16px; }
  .founder-text h2 { margin-bottom: 24px; }
  .founder-text blockquote {
    font-size: clamp(20px, 2vw, 26px);
    line-height: 1.4;
    color: var(--maroon);
    margin: 0 0 24px;
    padding: 0;
    font-weight: 500;
  }
  .founder-sig {
    font-family: 'Archivo Black', sans-serif;
    font-size: 18px;
    text-transform: uppercase;
    color: var(--maroon);
  }
  .founder-sig small {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: var(--maroon);
    opacity: 0.7;
    text-transform: none;
    letter-spacing: 0;
    margin-top: 6px;
  }

  /* ============================================================
     FINAL CTA
     ============================================================ */
  .final-cta {
    background: var(--sunray);
    padding: 120px 0;
    text-align: center;
  }
  .final-cta h2 {
    font-size: clamp(48px, 8vw, 96px);
    margin-bottom: 24px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
  }
  .final-cta p {
    font-size: 18px;
    color: var(--maroon);
    opacity: 0.8;
    max-width: 540px;
    margin: 0 auto 36px;
  }

  /* ============================================================
     FOOTER
     ============================================================ */
  footer {
    background: var(--maroon);
    color: var(--cream);
    padding: 80px 0 40px;
  }
  @media (max-width: 600px) { footer { padding: 56px 0 32px; } }
  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 56px;
  }
  @media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
  @media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; gap: 28px; margin-bottom: 36px; } }
  .footer-brand .logo-text { color: var(--cream); }


  .footer-brand p { font-size: 14px; color: rgba(255,247,234,0.7); margin-top: 16px; max-width: 320px; }
  @media (max-width: 600px) { .footer-brand p { max-width: 100%; } }
  .footer-col h3, .footer-col h4 {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--sunray);
    margin: 0 0 16px;
  }
  .footer-col a {
    display: block;
    color: rgba(255,247,234,0.85);
    text-decoration: none;
    font-size: 14px;
    padding: 5px 0;
  }
  .footer-col a:hover { color: var(--sunray); }
  .footer-bottom {
    border-top: 1px solid rgba(255,247,234,0.1);
    padding-top: 32px;
    display: flex; flex-wrap: wrap;
    justify-content: space-between; align-items: center; gap: 20px;
  }
  .footer-tagline {
    font-family: 'Archivo Black', sans-serif;
    font-size: clamp(32px, 4vw, 56px);
    text-transform: uppercase;
    color: var(--sunray);
    line-height: 1;
    flex: 1;
  }
  .footer-credits {
    font-size: 12px;
    opacity: 0.55;
  }


  /* Concern chip as label (checkbox toggle) */
  label.concern-chip { user-select: none; }
  label.concern-chip:has(input:checked) { background: var(--maroon); color: var(--cream); }


  /* Style legacy .recipe-result cards in new brand */
  .recipe-recommendations { background: transparent; padding: 32px 0; }
  .recipe-result {
    background: var(--cream);
    border: 2px solid var(--maroon);
    border-radius: 24px;
    padding: 28px 24px 24px;
    text-decoration: none;
    color: var(--maroon);
    display: block;
    transition: transform .2s ease, box-shadow .2s ease;
    position: relative;
  }
  .recipe-result:hover { transform: translateY(-4px); box-shadow: 6px 6px 0 var(--maroon); }
  .recipe-result.excluded { opacity: 0.5; pointer-events: none; }
  .recipe-result.recommended { background: var(--vanilla); border-color: var(--maroon); }
  .recipe-result-badge {
    position: absolute; top: -12px; left: 16px;
    background: var(--sunray); color: var(--maroon);
    padding: 4px 12px; border-radius: 999px;
    font-family: 'Archivo Black', sans-serif;
    font-size: 11px; text-transform: uppercase; letter-spacing: 0.04em;
  }
  .recipe-result h4 {
    font-family: 'Archivo Black', sans-serif;
    font-size: 22px; text-transform: uppercase;
    line-height: 1; margin: 0 0 8px;
    color: var(--maroon);
  }
  .recipe-result-info p {
    font-size: 13.5px; opacity: 0.75;
    margin: 0 0 10px; line-height: 1.5; color: var(--maroon);
  }
  .recipe-result-info .result-cta {
    font-size: 13px; font-weight: 600;
    color: var(--maroon);
  }
  .recipe-result-portion {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1.5px solid rgba(71,1,2,0.1);
  }
  .recipe-result-portion .grams {
    font-family: 'Archivo Black', sans-serif;
    font-size: 32px; color: var(--maroon); line-height: 1;
  }
  .recipe-result-portion .grams-label {
    font-size: 11px; font-weight: 600; opacity: 0.6;
    text-transform: uppercase; letter-spacing: 0.08em;
    color: var(--maroon);
  }
  .recipe-result-illo {
    aspect-ratio: 4/3;
    overflow: visible;
    margin-bottom: 16px;
    background: transparent;
    display: flex; align-items: center; justify-content: center;
  }
  .recipe-result-illo img {
    width: 88%; height: 88%;
    object-fit: contain;
    filter: drop-shadow(0 8px 12px rgba(26,59,50,0.18));
  }
  .recipe-result-illo svg { width: 100%; height: 100%; object-fit: contain; }
  #calc-recipe-results {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 24px;
  }
  #calc-concerns-summary {
    font-size: 14px; opacity: 0.75; margin: 12px 0 0;
    color: var(--maroon);
  }


  /* === Breed-info card styling (matches calc script's dynamic HTML) === */
  .breed-info-header { display: flex; align-items: center; gap: 16px; margin-bottom: 16px; }
  .breed-info-emoji { font-size: 36px; line-height: 1; }
  .breed-info-name {
    font-family: 'Archivo Black', sans-serif;
    font-size: 20px; text-transform: uppercase;
    color: var(--maroon); line-height: 1; margin-bottom: 4px;
  }
  .breed-info-size {
    font-size: 12px; font-weight: 600; letter-spacing: 0.08em;
    text-transform: uppercase; opacity: 0.6; color: var(--maroon);
  }
  .breed-health-section { margin-bottom: 14px; }
  .breed-health-heading {
    display: flex; align-items: center; gap: 8px;
    font-size: 12px; font-weight: 700; letter-spacing: 0.1em;
    text-transform: uppercase; color: var(--maroon);
    opacity: 0.7; margin-bottom: 8px;
  }
  .breed-health-icon { font-size: 14px; }
  .breed-traits {
    display: flex; flex-wrap: wrap; gap: 6px;
  }
  .breed-trait {
    display: inline-block;
    background: var(--cream);
    border: 1px solid rgba(71,1,2,0.15);
    color: var(--maroon);
    padding: 4px 11px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 500;
  }
  .breed-notes {
    font-size: 13.5px; line-height: 1.55;
    color: var(--maroon); opacity: 0.85;
    margin: 12px 0;
  }
  .breed-rec-line {
    font-size: 13.5px; line-height: 1.55;
    color: var(--maroon); margin: 12px 0 6px;
  }
  .breed-rec-line strong { color: var(--maroon); font-weight: 700; }
  .breed-info-disclaimer {
    font-size: 11.5px; line-height: 1.5;
    color: var(--maroon); opacity: 0.55;
    margin: 8px 0 0;
  }
  .breed-no-results {
    padding: 18px; color: var(--maroon); opacity: 0.6;
    font-size: 14px; text-align: center;
  }
  /* Dropdown item sub-elements (calc uses .bo-* not .breed-option-*) */
  .bo-emoji { font-size: 22px; line-height: 1; flex-shrink: 0; }
  .bo-name {
    color: var(--maroon); font-weight: 600; font-size: 15px;
    flex: 1; min-width: 0;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  }
  .bo-size {
    color: var(--maroon); font-size: 10.5px;
    margin-left: auto; text-transform: uppercase; letter-spacing: 0.06em;
    font-weight: 700;
    background: var(--cream);
    padding: 4px 10px;
    border-radius: 999px;
    opacity: 0.7;
    flex-shrink: 0;
    transition: background .12s ease, opacity .12s ease;
  }
  /* On mobile: let breed names wrap to multiple lines so they're never cut off */
  @media (max-width: 720px) {
    .bo-name {
      white-space: normal;
      overflow: visible;
      text-overflow: clip;
      font-size: 15.5px;
      line-height: 1.3;
    }
    .bo-size {
      font-size: 10px;
      padding: 3px 8px;
      align-self: flex-start;
      margin-top: 2px;
    }
    .breed-option {
      align-items: flex-start;
    }
  }
  .breed-option:hover .bo-size,
  .breed-option.is-focused .bo-size {
    background: var(--white);
    opacity: 1;
  }
  /* Parent picker (mixed breed) */
  .parent-emoji { font-size: 18px; margin-right: 8px; }
  .parent-name { color: var(--maroon); font-weight: 600; font-size: 14px; }
  .parent-clear {
    opacity: 0.5; cursor: pointer; font-size: 16px;
    background: none; border: none; color: var(--maroon);
  }
  .excluded-label {
    font-size: 12px; color: var(--maroon); opacity: 0.6;
    font-style: italic;
  }


  /* === Improved breed picker UI === */
  .breed-search-wrap input:focus {
    outline: 2px solid var(--sunray);
    outline-offset: 2px;
  }
  .breed-quick-label {
    width: 100%;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--maroon);
    opacity: 0.55;
    margin-bottom: 4px;
  }
  .breed-quick.popular-pick {
    background: var(--vanilla);
    border-color: rgba(71,1,2,0.15);
    font-weight: 600;
  }
  .breed-quick.popular-pick:hover {
    background: var(--sunray);
    color: var(--maroon);
    border-color: var(--sunray);
    transform: translateY(-1px);
  }
  .breed-other-options {
    display: flex; flex-wrap: wrap; gap: 10px;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid rgba(71,1,2,0.08);
    margin-bottom: 24px;
  }
  .breed-quick-secondary {
    background: transparent;
    border: 1.5px dashed rgba(71,1,2,0.3);
    font-size: 13px;
  }
  .breed-quick-secondary:hover {
    background: var(--maroon);
    color: var(--cream);
    border-color: var(--maroon);
    border-style: solid;
  }

  /* Mixed picker improvements */
  .mixed-picker-header {
    display: flex; flex-direction: column; gap: 12px;
    margin-bottom: 18px;
  }
  .mixed-back-btn {
    align-self: flex-start;
    background: transparent;
    border: none;
    color: var(--maroon);
    opacity: 0.7;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    padding: 6px 0;
    transition: opacity .15s ease;
  }
  .mixed-back-btn:hover { opacity: 1; }
  .mixed-picker-hint {
    font-size: 12.5px;
    color: var(--maroon);
    opacity: 0.6;
    margin: 12px 0 0;
    font-style: italic;
  }

  /* Parent dropdown — same style as breed-dropdown but smaller */
  .parent-dropdown {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background: var(--white);
    border: 2px solid var(--maroon);
    border-radius: 12px;
    max-height: 240px;
    overflow-y: auto;
    z-index: 100;
    box-shadow: 4px 4px 0 var(--maroon);
    display: none;
  }
  .parent-dropdown .breed-option {
    padding: 10px 14px;
    font-size: 14px;
  }
  
  /* Selected parent display */
  .mixed-parent-selected.is-set {
    background: var(--sunray);
    border-color: var(--maroon);
    color: var(--maroon);
    font-weight: 600;
  }
  
  /* Breed dropdown also gets sharper styling */
  .breed-dropdown {
    box-shadow: 4px 4px 0 var(--maroon);
  }

