/**
 * ribbon-florist theme CSS — byte-for-byte port of
 *   /Volumes/x9/claude-design/ui_kits/ribbon-florist/{index,blog,post,page}.html
 *
 * Generated by scripts/port-theme-css.py.
 *
 * NOTE: top-level `:root` and `html, body` selectors are mechanically
 * rewritten to `body[data-theme="ribbon-florist"]` so multiple theme.css
 * files can coexist in the bundle without overriding each other's
 * CSS custom properties. Other selectors (.brand, .nav-link, etc.)
 * are preserved verbatim from source — they reference var(--bg)/
 * var(--fg) which inherit from the scoped body.
 */

/* ===== ribbon-florist/index.html <style> ===== */
body[data-theme="ribbon-florist"], [data-theme="ribbon-florist"] {
    overflow-x: clip;
    --bg:        oklch(98.0% 0.012 30.0);   /* ivory */
    --surface:   oklch(95.0% 0.020 30.0);   /* pearl */
    --blush:     oklch(88.0% 0.045 25.0);
    --fg:        oklch(28.0% 0.018 40.0);   /* soft coffee */
    --muted-fg:  oklch(45.0% 0.022 38.0);
    --subtle-fg: oklch(60.0% 0.020 36.0);
    --gold:      oklch(75.0% 0.110 80.0);
    --gold-dark: oklch(66.0% 0.115 78.0);
    --rose:      oklch(50.0% 0.115 20.0);
    --rose-h:    oklch(43.0% 0.120 18.0);
    --sage:      oklch(75.0% 0.040 130.0);
    --border:    oklch(85.0% 0.025 35.0);
    --heading: var(--font-cormorant-garamond, 'Cormorant Garamond'), Georgia, serif;
    --body:    'Lora', Georgia, serif;
    --container: 1200px;
  }
  [data-theme="ribbon-florist"] * { box-sizing: border-box; }
  body[data-theme="ribbon-florist"], [data-theme="ribbon-florist"] {
    margin: 0; padding: 0;
    background: var(--bg);
    color: var(--fg);
    font-family: var(--body);
    -webkit-font-smoothing: antialiased;
  }
  [data-theme="ribbon-florist"] a { color: inherit; text-decoration: none; }

  /* Nav */
  [data-theme="ribbon-florist"] header.site-nav {
    background: var(--bg);
    border-bottom: 1px solid var(--border);
  }
  [data-theme="ribbon-florist"] .nav-inner {
    max-width: var(--container); margin: 0 auto;
    height: 72px;
    padding: 0 32px;
    display: flex; align-items: center; justify-content: space-between;
  }
  [data-theme="ribbon-florist"] .brand {
    font-family: var(--heading);
    font-size: 24px;
    font-style: italic;
    font-weight: 500;
    color: var(--gold-dark);
    letter-spacing: -0.01em;
    white-space: nowrap;
  }
  [data-theme="ribbon-florist"] .nav-links { display: flex; align-items: center; gap: 32px; }
  @media (max-width: 1023px) { [data-theme="ribbon-florist"] .nav-links { display: none; } }
  [data-theme="ribbon-florist"] .rf-nav {
    font-family: var(--heading);
    font-style: italic;
    font-size: 15px;
    color: var(--rose);
    transition: color 150ms;
    white-space: nowrap;
  }
  [data-theme="ribbon-florist"] .rf-nav:hover { color: var(--rose-h); }
  [data-theme="ribbon-florist"] .rf-cta {
    font-family: var(--heading);
    font-style: italic;
    font-size: 14px;
    font-weight: 500;
    color: var(--gold-dark);
    border: 1px solid var(--gold);
    padding: 8px 22px;
    border-radius: 2px;
    transition: background 150ms;
    white-space: nowrap;
  }
  [data-theme="ribbon-florist"] .rf-cta:hover { background: var(--surface); }

  /* Hero */
  [data-theme="ribbon-florist"] .hero {
    position: relative;
    background: var(--surface);
    max-height: 720px;
    overflow: hidden;
  }
  [data-theme="ribbon-florist"] .hero-img {
    width: 100%;
    aspect-ratio: 16/7;
    background-size: cover; background-position: center;
    background-image: linear-gradient(135deg, var(--blush) 0%, var(--surface) 100%);
  }
  [data-theme="ribbon-florist"] .hero-card {
    position: absolute;
    bottom: 40px; left: 50%; transform: translateX(-50%);
    background: oklch(98.0% 0.012 30.0 / 0.95);
    padding: 36px 48px 28px;
    max-width: 660px;
    width: calc(100% - 80px);
    text-align: center;
    border: 1px solid var(--border);
  }
  [data-theme="ribbon-florist"] .ribbon-bow {
    display: block; margin: 0 auto 16px;
    color: var(--gold);
    width: 56px; height: 38px;
  }
  [data-theme="ribbon-florist"] .rf-tag {
    font-family: var(--heading);
    font-style: italic;
    font-size: 13px;
    color: var(--rose);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin: 0 0 10px;
  }
  [data-theme="ribbon-florist"] .hero-card h1 {
    font-family: var(--heading);
    font-style: italic;
    font-size: clamp(32px, 4.4vw, 52px);
    font-weight: 500;
    line-height: 1.12;
    color: var(--fg);
    margin: 0 0 16px;
    letter-spacing: -0.01em;
  }
  [data-theme="ribbon-florist"] .hero-card p {
    font-family: var(--body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--muted-fg);
    margin: 0 0 20px;
  }
  [data-theme="ribbon-florist"] .read-full {
    font-family: var(--heading);
    font-style: italic;
    font-size: 14px;
    font-weight: 500;
    color: var(--rose);
    border-bottom: 1px solid var(--border);
    padding-bottom: 2px;
    letter-spacing: 0.04em;
  }

  /* Tagline */
  [data-theme="ribbon-florist"] .tagline-wrap {
    text-align: center;
    padding: 56px 24px 0;
  }
  [data-theme="ribbon-florist"] .tagline {
    font-family: var(--heading);
    font-style: italic;
    font-size: 20px;
    color: var(--muted-fg);
    margin: 0;
  }

  /* Bow divider */
  [data-theme="ribbon-florist"] .ribbon-divider {
    display: flex; align-items: center; justify-content: center;
    gap: 24px;
    padding: 48px 32px;
    max-width: var(--container);
    margin: 0 auto;
  }
  [data-theme="ribbon-florist"] .ribbon-divider::before, [data-theme="ribbon-florist"] .ribbon-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: var(--gold);
    opacity: 0.4;
    max-width: 200px;
  }
  [data-theme="ribbon-florist"] .ribbon-divider svg {
    width: 72px; height: 48px;
    color: var(--gold);
  }

  /* Post grid */
  [data-theme="ribbon-florist"] .grid-wrap {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 32px 80px;
  }
  [data-theme="ribbon-florist"] .label-caps {
    font-family: var(--heading);
    font-style: italic;
    font-size: 14px;
    color: var(--rose);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    text-align: center;
    margin: 0 0 40px;
  }
  [data-theme="ribbon-florist"] .grid-2 {
    display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
  }
  @media (max-width: 800px) { [data-theme="ribbon-florist"] .grid-2 { grid-template-columns: 1fr; } }
  [data-theme="ribbon-florist"] .post-card {
    background: var(--surface);
    border: 1px solid var(--border);
    overflow: hidden;
    display: block;
    transition: border-color 200ms;
  }
  [data-theme="ribbon-florist"] .post-card:hover { border-color: var(--gold); }
  [data-theme="ribbon-florist"] .post-img {
    width: 100%; aspect-ratio: 3/2;
    background-size: cover; background-position: center;
  }
  [data-theme="ribbon-florist"] .img-1 { background-image: linear-gradient(135deg, var(--blush) 0%, var(--surface) 100%); }
  [data-theme="ribbon-florist"] .img-2 { background-image: linear-gradient(135deg, var(--rose) 0%, var(--blush) 100%); }
  [data-theme="ribbon-florist"] .img-3 { background-image: linear-gradient(135deg, var(--sage) 0%, var(--surface) 100%); }
  [data-theme="ribbon-florist"] .img-4 { background-image: linear-gradient(135deg, var(--surface) 0%, var(--blush) 100%); }
  [data-theme="ribbon-florist"] .post-body { padding: 24px 28px 28px; }
  [data-theme="ribbon-florist"] .post-card h3 {
    font-family: var(--heading);
    font-style: italic;
    font-size: 22px;
    font-weight: 500;
    line-height: 1.25;
    color: var(--fg);
    margin: 0 0 12px;
  }
  [data-theme="ribbon-florist"] .post-card p {
    font-family: var(--body);
    font-size: 15px;
    line-height: 1.65;
    color: var(--muted-fg);
    margin: 0 0 16px;
  }
  [data-theme="ribbon-florist"] .post-date {
    font-family: var(--heading);
    font-style: italic;
    font-size: 12px;
    color: var(--subtle-fg);
  }
  [data-theme="ribbon-florist"] .browse-all {
    text-align: center; margin-top: 48px;
  }
  [data-theme="ribbon-florist"] .browse-link {
    font-family: var(--heading);
    font-style: italic;
    font-size: 15px;
    font-weight: 500;
    color: var(--rose);
    border-bottom: 1px solid var(--border);
    padding-bottom: 3px;
  }

  /* Rose divider */
  [data-theme="ribbon-florist"] .rose-divider {
    display: flex; align-items: center; justify-content: center;
    gap: 24px;
    padding: 56px 32px;
    max-width: var(--container);
    margin: 0 auto;
  }
  [data-theme="ribbon-florist"] .rose-divider::before, [data-theme="ribbon-florist"] .rose-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: var(--rose);
    opacity: 0.3;
    max-width: 160px;
  }
  [data-theme="ribbon-florist"] .rose-divider svg { width: 28px; height: 36px; color: var(--rose); }

  /* Footer */
  [data-theme="ribbon-florist"] footer.site-footer {
    background: var(--bg);
    border-top: 1px solid var(--border);
  }
  [data-theme="ribbon-florist"] .footer-grid {
    max-width: var(--container); margin: 0 auto;
    padding: 56px 32px 32px;
    display: grid; grid-template-columns: 2fr 1fr 1.5fr; gap: 48px;
  }
  @media (max-width: 800px) { [data-theme="ribbon-florist"] .footer-grid { grid-template-columns: 1fr; } }
  [data-theme="ribbon-florist"] .footer-brand {
    font-family: var(--heading);
    font-style: italic;
    font-size: 24px;
    font-weight: 500;
    color: var(--gold-dark);
    margin: 0 0 12px;
  }
  [data-theme="ribbon-florist"] .footer-tagline {
    font-family: var(--body);
    font-size: 14px;
    line-height: 1.7;
    color: var(--muted-fg);
    margin: 0;
  }
  [data-theme="ribbon-florist"] .footer-center {
    display: flex; flex-direction: column; align-items: center; gap: 16px;
  }
  [data-theme="ribbon-florist"] .footer-center svg { width: 32px; height: 40px; color: var(--sage); }
  [data-theme="ribbon-florist"] .powered {
    font-family: var(--heading);
    font-style: italic;
    font-size: 11px;
    color: var(--subtle-fg);
    border: 1px solid var(--border);
    padding: 5px 12px;
  }
  [data-theme="ribbon-florist"] .footer-nav {
    display: flex; flex-direction: column; gap: 10px;
  }
  [data-theme="ribbon-florist"] .footer-nav a {
    font-family: var(--heading);
    font-style: italic;
    font-size: 14px;
    color: var(--muted-fg);
  }
  [data-theme="ribbon-florist"] .footer-nav a:hover { color: var(--rose); }
  [data-theme="ribbon-florist"] .footer-bar {
    border-top: 1px solid var(--border);
    padding: 20px 32px;
    text-align: center;
  }
  [data-theme="ribbon-florist"] .footer-bar p {
    font-family: var(--heading);
    font-style: italic;
    font-size: 13px;
    color: var(--rose);
    margin: 0;
  }

/* ===== ribbon-florist/blog.html <style> ===== */
/* === Inner page (blog/post/page) — inherits theme typography & color from body === */
  [data-theme="ribbon-florist"] .ip-wrap { max-width: 1200px; margin: 0 auto; padding: 64px clamp(16px, 4vw, 32px); }
  [data-theme="ribbon-florist"] .ip-narrow { max-width: 760px; margin: 0 auto; padding: 64px clamp(16px, 4vw, 32px); }
  [data-theme="ribbon-florist"] .ip-prose-wrap { max-width: 720px; margin: 0 auto; padding: 0 clamp(16px, 4vw, 32px); }
  [data-theme="ribbon-florist"] .ip-eyebrow { font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; opacity: 0.55; margin: 0 0 18px; }
  [data-theme="ribbon-florist"] .ip-h1 { font-size: clamp(40px, 6vw, 72px); font-weight: 800; letter-spacing: -0.025em; line-height: 1.05; margin: 0 0 18px; text-wrap: balance; }
  [data-theme="ribbon-florist"] .ip-h1-serif { font-family: var(--vb-heading-font, var(--heading, var(--display, inherit))); font-size: clamp(40px, 5.4vw, 64px); font-weight: 600; letter-spacing: -0.015em; line-height: 1.1; margin: 0 0 18px; text-wrap: balance; }
  [data-theme="ribbon-florist"] .ip-dek { font-size: 19px; line-height: 1.55; opacity: 0.7; margin: 0 0 28px; max-width: 640px; text-wrap: pretty; }
  [data-theme="ribbon-florist"] .ip-byline { display: flex; align-items: center; gap: 14px; margin: 0 0 40px; padding: 14px 0; border-top: 1px solid color-mix(in srgb, currentColor 12%, transparent); border-bottom: 1px solid color-mix(in srgb, currentColor 12%, transparent); }
  [data-theme="ribbon-florist"] .ip-byline > div { min-width: 0; flex: 1; }
  [data-theme="ribbon-florist"] .ip-avatar { width: 40px; height: 40px; border-radius: 9999px; background: color-mix(in srgb, currentColor 12%, transparent); display: inline-flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; flex-shrink: 0; }
  [data-theme="ribbon-florist"] .ip-byline .author { font-size: 14px; font-weight: 600; }
  [data-theme="ribbon-florist"] .ip-byline .meta { font-size: 13px; opacity: 0.55; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  [data-theme="ribbon-florist"] .ip-cover { width: 100%; aspect-ratio: 16/9; background-size: cover; background-position: center; margin: 0 0 40px; }
  [data-theme="ribbon-florist"] .ip-prose { font-size: 18px; line-height: 1.75; }
  [data-theme="ribbon-florist"] .ip-prose p { margin: 0 0 22px; opacity: 0.92; }
  [data-theme="ribbon-florist"] .ip-prose h2 { font-size: clamp(24px, 3vw, 32px); font-weight: 700; letter-spacing: -0.015em; line-height: 1.2; margin: 40px 0 16px; }
  [data-theme="ribbon-florist"] .ip-prose h3 { font-size: clamp(20px, 2.4vw, 24px); font-weight: 700; margin: 32px 0 12px; }
  [data-theme="ribbon-florist"] .ip-prose blockquote { margin: 28px 0; padding: 4px 0 4px 22px; border-left: 3px solid color-mix(in srgb, currentColor 35%, transparent); font-style: italic; font-size: 21px; line-height: 1.5; opacity: 0.78; }
  [data-theme="ribbon-florist"] .ip-prose ul, [data-theme="ribbon-florist"] .ip-prose ol { margin: 0 0 22px; padding-left: 22px; }
  [data-theme="ribbon-florist"] .ip-prose li { margin: 0 0 8px; opacity: 0.92; line-height: 1.7; }
  [data-theme="ribbon-florist"] .ip-prose code:not(pre code) { font-family: 'JetBrains Mono', 'IBM Plex Mono', 'Courier New', monospace; font-size: 0.88em; background: color-mix(in srgb, currentColor 8%, transparent); padding: 1px 6px; border-radius: 4px; }
  [data-theme="ribbon-florist"] .ip-prose pre { font-family: 'JetBrains Mono', 'IBM Plex Mono', 'Courier New', monospace; background: color-mix(in srgb, currentColor 4%, transparent); border: 1px solid color-mix(in srgb, currentColor 12%, transparent); border-radius: 8px; padding: 16px 18px; overflow-x: auto; font-size: 14px; line-height: 1.65; margin: 22px 0; }
  [data-theme="ribbon-florist"] .ip-prose hr { border: none; height: 1px; background: color-mix(in srgb, currentColor 14%, transparent); margin: 36px 0; }
  [data-theme="ribbon-florist"] .ip-tags { display: flex; gap: 8px; flex-wrap: wrap; margin: 32px 0 0; }
  [data-theme="ribbon-florist"] .ip-tag { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; padding: 5px 12px; border: 1px solid color-mix(in srgb, currentColor 22%, transparent); border-radius: 9999px; opacity: 0.7; text-decoration: none; color: inherit; white-space: nowrap; }
  [data-theme="ribbon-florist"] .ip-tag:hover { opacity: 1; }
  /* Blog index */
  [data-theme="ribbon-florist"] .ip-index-head { margin: 0 0 40px; padding-bottom: 24px; border-bottom: 1px solid color-mix(in srgb, currentColor 12%, transparent); }
  [data-theme="ribbon-florist"] .ip-filters { display: flex; gap: 8px; flex-wrap: wrap; margin: 18px 0 0; }
  [data-theme="ribbon-florist"] .ip-filter { font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; padding: 6px 14px; border: 1px solid color-mix(in srgb, currentColor 18%, transparent); border-radius: 9999px; text-decoration: none; color: inherit; opacity: 0.7; white-space: nowrap; }
  [data-theme="ribbon-florist"] .ip-filter:hover { opacity: 1; border-color: color-mix(in srgb, currentColor 32%, transparent); }
  [data-theme="ribbon-florist"] .ip-filter.active { background: color-mix(in srgb, currentColor 14%, transparent); border-width: 2px; padding: 5px 13px; opacity: 1; font-weight: 700; }
  [data-theme="ribbon-florist"] .ip-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
  @media (max-width: 900px) { [data-theme="ribbon-florist"] .ip-grid { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 600px) { [data-theme="ribbon-florist"] .ip-grid { grid-template-columns: 1fr; } }
  [data-theme="ribbon-florist"] .ip-card { display: block; border: 1px solid color-mix(in srgb, currentColor 12%, transparent); border-radius: 8px; overflow: hidden; text-decoration: none; color: inherit; transition: border-color 200ms, transform 200ms; }
  [data-theme="ribbon-florist"] .ip-card:hover { border-color: color-mix(in srgb, currentColor 30%, transparent); transform: translateY(-2px); }
  [data-theme="ribbon-florist"] .ip-card .img { width: 100%; aspect-ratio: 16/10; background-size: cover; background-position: center; }
  [data-theme="ribbon-florist"] .ip-card .body { padding: 18px 20px 20px; }
  [data-theme="ribbon-florist"] .ip-card .kicker { font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; opacity: 0.6; margin: 0 0 8px; }
  [data-theme="ribbon-florist"] .ip-card h3 { font-size: 18px; font-weight: 700; letter-spacing: -0.01em; line-height: 1.3; margin: 0 0 8px; }
  [data-theme="ribbon-florist"] .ip-card p { font-size: 14px; line-height: 1.55; opacity: 0.7; margin: 0 0 12px; }
  [data-theme="ribbon-florist"] .ip-card .meta { font-size: 12px; opacity: 0.55; }
  [data-theme="ribbon-florist"] .ip-pag { display: flex; align-items: center; justify-content: center; gap: 8px; margin: 56px 0 0; }
  [data-theme="ribbon-florist"] .ip-pag a, [data-theme="ribbon-florist"] .ip-pag span { min-width: 36px; height: 36px; padding: 0 12px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid color-mix(in srgb, currentColor 16%, transparent); border-radius: 6px; text-decoration: none; color: inherit; font-size: 13px; font-weight: 600; }
  [data-theme="ribbon-florist"] .ip-pag .current { background: color-mix(in srgb, currentColor 12%, transparent); }
  /* Inline newsletter CTA — outline style, no blend tricks */
  [data-theme="ribbon-florist"] .ip-inline-cta { margin: 56px 0 0; padding: 36px; border: 1px solid color-mix(in srgb, currentColor 14%, transparent); border-radius: 12px; text-align: center; }
  [data-theme="ribbon-florist"] .ip-inline-cta h3 { font-size: 22px; font-weight: 700; letter-spacing: -0.01em; margin: 0 0 8px; }
  [data-theme="ribbon-florist"] .ip-inline-cta p { font-size: 14px; opacity: 0.7; margin: 0 0 18px; }
  [data-theme="ribbon-florist"] .ip-inline-cta form { display: flex; gap: 8px; max-width: 380px; margin: 0 auto; }
  [data-theme="ribbon-florist"] .ip-inline-cta input { flex: 1; min-width: 0; background: transparent; border: 1px solid color-mix(in srgb, currentColor 22%, transparent); border-radius: 8px; color: inherit; font-family: inherit; font-size: 14px; padding: 10px 14px; outline: none; }
  [data-theme="ribbon-florist"] .ip-inline-cta button { background: transparent; border: 2px solid currentColor; border-radius: 8px; color: inherit; font-family: inherit; font-size: 13px; font-weight: 700; letter-spacing: 0.04em; padding: 9px 22px; cursor: pointer; white-space: nowrap; transition: background 150ms; }
  [data-theme="ribbon-florist"] .ip-inline-cta button:hover { background: color-mix(in srgb, currentColor 10%, transparent); }
  /* Comments */
  [data-theme="ribbon-florist"] .ip-comments { margin: 64px 0 0; padding-top: 32px; border-top: 1px solid color-mix(in srgb, currentColor 14%, transparent); }
  [data-theme="ribbon-florist"] .ip-comments h3 { font-size: 18px; font-weight: 700; margin: 0 0 24px; }
  [data-theme="ribbon-florist"] .ip-comment { display: flex; gap: 14px; padding: 18px 0; border-bottom: 1px solid color-mix(in srgb, currentColor 8%, transparent); }
  [data-theme="ribbon-florist"] .ip-comment > div { min-width: 0; flex: 1; }
  [data-theme="ribbon-florist"] .ip-comment:last-child { border-bottom: none; }
  [data-theme="ribbon-florist"] .ip-comment .who { font-size: 13px; font-weight: 600; }
  [data-theme="ribbon-florist"] .ip-comment .when { font-size: 12px; opacity: 0.55; }
  [data-theme="ribbon-florist"] .ip-comment .text { font-size: 14px; line-height: 1.55; opacity: 0.85; margin: 6px 0 0; }
  /* Back link */
  [data-theme="ribbon-florist"] .ip-back { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; letter-spacing: 0.04em; text-decoration: none; color: inherit; opacity: 0.65; margin: 0 0 24px; white-space: nowrap; }
  [data-theme="ribbon-florist"] .ip-back:hover { opacity: 1; }
  /* Static page form */
  [data-theme="ribbon-florist"] .ip-form { max-width: 520px; margin: 32px 0 0; }
  [data-theme="ribbon-florist"] .ip-form label { display: block; font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; opacity: 0.7; margin: 0 0 6px; }
  [data-theme="ribbon-florist"] .ip-form .row { margin: 0 0 16px; }
  [data-theme="ribbon-florist"] .ip-form input, [data-theme="ribbon-florist"] .ip-form textarea { width: 100%; background: transparent; border: 1px solid color-mix(in srgb, currentColor 20%, transparent); border-radius: 8px; color: inherit; font-family: inherit; font-size: 15px; padding: 10px 14px; outline: none; }
  [data-theme="ribbon-florist"] .ip-form textarea { min-height: 120px; resize: vertical; }
  [data-theme="ribbon-florist"] .ip-form button { background: transparent; border: 2px solid currentColor; border-radius: 8px; color: inherit; font-family: inherit; font-size: 14px; font-weight: 700; letter-spacing: 0.04em; padding: 10px 24px; cursor: pointer; white-space: nowrap; transition: background 150ms; }
  [data-theme="ribbon-florist"] .ip-form button:hover { background: color-mix(in srgb, currentColor 10%, transparent); }

/* ===== Old-30 Bespoke Parity Wave 3 — mobile drawer + shop CSS ===== */
[data-theme="ribbon-florist"] .rf-hamburger {
  display: none;
  align-items: center;
  justify-content: center;
  padding: 8px;
  background: transparent;
  border: none;
  color: var(--fg);
  cursor: pointer;
}
@media (max-width: 1023px) {
  [data-theme="ribbon-florist"] .rf-hamburger { display: inline-flex; }
}
[data-theme="ribbon-florist"] .rf-shop-input:focus { border-color: var(--rose) !important; }
[data-theme="ribbon-florist"] .rf-shop-pill { transition: background 150ms, color 150ms; }
[data-theme="ribbon-florist"] .rf-shop-pill:hover { background: var(--blush) !important; }
[data-theme="ribbon-florist"] .rf-shop-card { transition: border-color 200ms; }
[data-theme="ribbon-florist"] .rf-shop-card:hover { border-color: var(--rose) !important; }

/* ===== Page-builder block token bridge (Theme Data Contract V2) ===== */
/* Maps generic --vb-* block-renderer variables to ribbon-florist palette. */
[data-theme="ribbon-florist"] main {
  --vb-color-bg:          var(--bg);
  --vb-color-fg:          var(--fg);
  --vb-color-muted:       var(--muted-fg);
  --vb-color-surface:     var(--surface);
  --vb-color-border:      var(--border);
  --vb-color-primary:     var(--rose);
  --vb-color-primary-fg:  var(--bg);
  --vb-color-cta-btn-bg:  var(--gold);
  --vb-color-cta-btn-fg:  var(--bg);
  --vb-font-heading:      var(--heading);
  --vb-font-body:         var(--body);
}
