/* =====================================================================
   GLOBAL — from layouts/application.html.erb
   ===================================================================== */

:root {
  --cream: #fdf6ec; --warm-white: #fff9f2; --paper: #f5e6d0;
  --red: #c0392b; --red-dark: #922b21; --red-light: #e8a89e; --red-pale: #fde8e6;
  --gold: #c9922a; --gold-light: #f0c060; --gold-pale: #fef3d8;
  --ink: #1a0f08; --ink-soft: #3d2b1a; --ink-faint: #6b4c35;
  --border: rgba(26,15,8,0.12);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body { background: var(--cream); color: var(--ink); font-family: 'M PLUS Rounded 1c', sans-serif; font-weight: 300; -webkit-font-smoothing: antialiased; }
.panel { border: 2.5px solid var(--ink); box-shadow: 4px 4px 0 var(--ink); }
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 500; background: var(--cream); border-bottom: 2.5px solid var(--ink); display: flex; align-items: center; flex-wrap: wrap; gap: 0; padding: 0.75rem 1.25rem; }
.nav-top { display: flex; align-items: center; justify-content: space-between; width: 100%; gap: 0.75rem; }
.nav-search-row { width: 100%; padding: 0.5rem 0 0; }
.search-form { display: flex; width: 100%; gap: 0; }
.search-input { flex: 1; background: var(--warm-white); color: var(--ink); border: 2px solid var(--ink); border-right: none; border-radius: 4px 0 0 4px; padding: 0.6rem 1rem; font-family: 'M PLUS Rounded 1c', sans-serif; font-size: 0.9rem; outline: none; min-width: 0; }
.search-input:focus { border-color: var(--red); }
.search-submit { background: var(--red); color: var(--warm-white); border: 2px solid var(--ink); border-radius: 0 4px 4px 0; padding: 0.6rem 1rem; font-family: 'Dela Gothic One', sans-serif; font-size: 0.75rem; letter-spacing: 0.06em; cursor: pointer; white-space: nowrap; }
.nav-logo { font-family: 'Dela Gothic One', sans-serif; font-size: 1.3rem; letter-spacing: 0.04em; text-decoration: none; color: var(--ink); display: flex; align-items: baseline; gap: 0.1em; }
.nav-logo .o { color: var(--red); font-family: 'Zen Antique Soft', serif; font-style: italic; font-size: 1.6rem; }
.nav-logo .dot { color: var(--gold); font-size: 1rem; }
.nav-menu-btn { background: var(--red); border: 2px solid var(--ink); box-shadow: 2px 2px 0 var(--ink); border-radius: 6px; padding: 0.45rem 0.6rem; display: flex; flex-direction: column; gap: 4px; cursor: pointer; -webkit-tap-highlight-color: transparent; }
.nav-menu-btn span { display: block; width: 18px; height: 2px; background: var(--warm-white); border-radius: 2px; transition: transform 0.3s, opacity 0.3s; }
.nav-menu-btn.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-menu-btn.open span:nth-child(2) { opacity: 0; }
.nav-menu-btn.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.nav-drawer { position: fixed; inset: 0; z-index: 400; background: var(--cream); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0; transform: translateX(100%); transition: transform 0.4s cubic-bezier(0.16,1,0.3,1); border-left: 3px solid var(--ink); }
.nav-drawer.open { transform: translateX(0); }
.drawer-item { width: 100%; text-align: center; padding: 1.5rem 2rem; border-bottom: 2px solid var(--border); font-family: 'Dela Gothic One', sans-serif; font-size: 1.6rem; color: var(--ink); text-decoration: none; -webkit-tap-highlight-color: transparent; }
.drawer-item:active { background: var(--red-pale); color: var(--red); }
.drawer-cta { margin-top: 2rem; background: var(--red); color: var(--warm-white) !important; border: 2.5px solid var(--ink); box-shadow: 4px 4px 0 var(--ink); padding: 1rem 3rem !important; font-size: 1rem !important; border-radius: 4px; width: auto !important; }
.nav-links { display: none; }
.chapter-label { display: inline-flex; align-items: center; gap: 0.5rem; font-family: 'Dela Gothic One', sans-serif; font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--warm-white); background: var(--ink); padding: 0.3rem 0.8rem; border-radius: 2px; margin-bottom: 0.75rem; }
.sec-title { font-family: 'Zen Antique Soft', serif; font-size: 2.2rem; line-height: 1.1; color: var(--ink); }
.sec-title em { font-style: italic; color: var(--red); }
.ticker { overflow: hidden; border-top: 2.5px solid var(--ink); border-bottom: 2.5px solid var(--ink); background: var(--red); padding: 0.6rem 0; cursor: grab; }
.ticker.ticker-dragging { cursor: grabbing; user-select: none; }
.ticker-track { display: inline-flex; animation: slide 35s linear infinite; white-space: nowrap; }
@keyframes tickerShake { 0%,100%{transform:translateX(0) scaleY(1)} 15%{transform:translateX(-10px) scaleY(1.08)} 35%{transform:translateX(10px) scaleY(0.93)} 55%{transform:translateX(-6px) scaleY(1.04)} 75%{transform:translateX(6px) scaleY(0.97)} }
.t-item { font-family: 'Dela Gothic One', sans-serif; font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--warm-white); padding: 0 1.5rem; }
.t-star { color: var(--gold-light); font-size: 0.6rem; }
@keyframes slide { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.btn-red { display: flex; align-items: center; justify-content: center; gap: 0.5rem; background: var(--red); color: var(--warm-white); border: 2.5px solid var(--ink); box-shadow: 4px 4px 0 var(--ink); padding: 0.95rem 1.5rem; font-family: 'M PLUS Rounded 1c', sans-serif; font-size: 0.85rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; text-decoration: none; border-radius: 4px; min-height: 52px; -webkit-tap-highlight-color: transparent; transition: transform 0.15s, box-shadow 0.15s; }
.btn-red:active { transform: translate(2px,2px); box-shadow: 2px 2px 0 var(--ink); }
.btn-outline-ink { display: flex; align-items: center; justify-content: center; gap: 0.5rem; background: transparent; color: var(--ink); border: 2.5px solid var(--ink); box-shadow: 4px 4px 0 var(--ink); padding: 0.95rem 1.5rem; font-family: 'M PLUS Rounded 1c', sans-serif; font-size: 0.85rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; text-decoration: none; border-radius: 4px; min-height: 52px; transition: transform 0.15s, box-shadow 0.15s; }
.btn-outline-ink:active { transform: translate(2px,2px); box-shadow: 2px 2px 0 var(--ink); background: var(--gold-pale); }
.reveal { opacity: 0; transform: translateY(25px); transition: opacity 0.55s cubic-bezier(0.16,1,0.3,1), transform 0.55s cubic-bezier(0.16,1,0.3,1); }
.reveal.in { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: 0.07s; } .d2 { transition-delay: 0.14s; } .d3 { transition-delay: 0.21s; } .d4 { transition-delay: 0.28s; }
footer { background: var(--ink); color: var(--warm-white); padding: 2.5rem 1.25rem 2rem; }
.foot-logo { font-family: 'Dela Gothic One', sans-serif; font-size: 2rem; letter-spacing: 0.04em; line-height: 1; }
.foot-logo .o { color: var(--red); font-family: 'Zen Antique Soft', serif; font-style: italic; font-size: 2.5rem; display: inline-block; cursor: pointer; transform-origin: center; }
@keyframes footerOSpin { from { transform: rotate(0deg); } to { transform: rotate(1800deg); } }
.foot-tag { font-size: 0.65rem; letter-spacing: 0.1em; color: rgba(255,249,242,0.35); margin-top: 0.4rem; text-transform: uppercase; }
.foot-divider { height: 1px; background: rgba(255,249,242,0.1); margin: 1.75rem 0; }
.foot-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 2rem; }
.foot-col h4 { font-family: 'Dela Gothic One', sans-serif; font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 1rem; }
.foot-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }
.foot-col a { color: rgba(255,249,242,0.6); text-decoration: none; font-family: 'Zen Antique Soft', serif; font-size: 1rem; }
.foot-bottom { font-size: 0.6rem; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,249,242,0.2); text-align: center; line-height: 1.8; }
@media (min-width: 900px) {
  .nav-menu-btn { display: none; }
  .nav-links { display: flex; gap: 1.75rem; list-style: none; }
  .nav-links a { font-family: 'Dela Gothic One', sans-serif; font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink); text-decoration: none; padding: 0.3rem 0; border-bottom: 2px solid transparent; transition: border-color 0.2s, color 0.2s; }
  .nav-links a:hover { color: var(--red); border-color: var(--red); }
  .nav-pill { background: var(--red) !important; color: var(--warm-white) !important; border: 2px solid var(--ink) !important; box-shadow: 2px 2px 0 var(--ink) !important; padding: 0.4rem 1rem !important; border-radius: 4px !important; border-bottom: 2px solid var(--ink) !important; }
  nav { padding: 0.85rem 3rem; flex-wrap: nowrap; align-items: center; gap: 1.5rem; }
  .nav-top { width: auto; flex-shrink: 0; }
  .nav-search-row { padding: 0; flex: 1; max-width: 420px; }
  footer { padding: 4rem 3rem 2rem; }
  .foot-inner { display: flex; justify-content: space-between; align-items: flex-start; }
  .foot-nav { margin-bottom: 0; gap: 4rem; }
  .foot-bottom { display: flex; justify-content: space-between; align-items: center; text-align: left; }
}
@media (max-width: 899px) { main { padding-top: 7.5rem; } }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; } }
@keyframes poPageIn { from { opacity:0.2; transform:translateY(10px); } to { opacity:1; transform:translateY(0); } }
main.po-enter { animation: poPageIn 0.42s cubic-bezier(0.16,1,0.3,1) both; }
.btn-red, .btn-outline-ink, .form-btn, .popup-btn, .search-submit { position:relative; overflow:hidden; }
.po-ripple { position:absolute; border-radius:50%; width:8px; height:8px; background:rgba(255,255,255,0.38); transform:translate(-50%,-50%) scale(0); animation:poRipple 0.58s ease-out forwards; pointer-events:none; }
@keyframes poRipple { to { transform:translate(-50%,-50%) scale(40); opacity:0; } }
@media (hover: hover) {
  .btn-red { transition: transform 0.18s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.18s; }
  .btn-red:hover { transform:translate(-2px,-2px); box-shadow:6px 6px 0 var(--ink); }
  .btn-outline-ink { transition: transform 0.18s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.18s, background 0.15s; }
  .btn-outline-ink:hover { transform:translate(-2px,-2px); box-shadow:6px 6px 0 var(--ink); background:var(--gold-pale); }
  .rcard-image-box { transition: transform 0.18s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.18s; }
  .rcard:hover .rcard-image-box { transform:translate(-2px,-2px); box-shadow:7px 7px 0 var(--ink); }
  .nav-links a { transition: color 0.2s, border-color 0.2s, transform 0.2s cubic-bezier(0.34,1.56,0.64,1); }
  .nav-links a:hover { transform:translateY(-2px); }
  .search-submit { transition: background 0.15s, transform 0.18s cubic-bezier(0.34,1.56,0.64,1); }
  .search-submit:hover { background: var(--red-dark); transform:scale(1.03); }
}
@keyframes drawerIn { from { opacity:0; transform:translateX(22px); } to { opacity:1; transform:translateX(0); } }
.nav-logo { user-select: none; -webkit-user-select: none; }
.logo-3d-scene { display: inline-flex; perspective: 600px; }
.logo-3d-group { display: inline-flex; align-items: baseline; transform-style: preserve-3d; position: relative; cursor: grab; user-select: none; -webkit-user-select: none; }
.logo-3d-group.dragging { cursor: grabbing; }
.logo-3d-layer { position: absolute; inset: 0; display: flex; align-items: baseline; pointer-events: none; overflow: visible; white-space: nowrap; opacity: 0; transition: opacity 0.12s; }
.logo-3d-group.dragging .logo-3d-layer,
.logo-3d-group.springing .logo-3d-layer { opacity: 1; }
.logo-3d-layer .l-main { font-family: 'Dela Gothic One', sans-serif; font-size: 1.3rem; letter-spacing: 0.04em; }
.logo-3d-layer .l-o { font-family: 'Zen Antique Soft', serif; font-style: italic; font-size: 1.6rem; }
.popup-overlay { position: fixed; inset: 0; z-index: 900; background: rgba(26,15,8,0.55); display: flex; align-items: center; justify-content: center; padding: 1.25rem; opacity: 0; pointer-events: none; transition: opacity 0.35s ease; }
.popup-overlay.show { opacity: 1; pointer-events: all; }
.popup-box { background: var(--cream); border: 2.5px solid var(--ink); box-shadow: 6px 6px 0 var(--ink); border-radius: 6px; max-width: 420px; width: 100%; padding: 2rem 1.75rem 1.75rem; position: relative; transform: translateY(20px); transition: transform 0.35s cubic-bezier(0.16,1,0.3,1); }
.popup-overlay.show .popup-box { transform: translateY(0); }
.popup-close { position: absolute; top: 0.75rem; right: 0.85rem; background: none; border: none; font-size: 1.3rem; line-height: 1; cursor: pointer; color: var(--ink-faint); -webkit-tap-highlight-color: transparent; }
.popup-eyebrow { font-family: 'Dela Gothic One', sans-serif; font-size: 0.6rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--warm-white); background: var(--red); display: inline-block; padding: 0.25rem 0.7rem; border-radius: 2px; margin-bottom: 0.85rem; }
.popup-title { font-family: 'Zen Antique Soft', serif; font-size: 1.8rem; line-height: 1.15; color: var(--ink); margin-bottom: 0.5rem; }
.popup-title em { font-style: italic; color: var(--red); }
.popup-sub { font-size: 0.85rem; color: var(--ink-faint); line-height: 1.5; margin-bottom: 1.25rem; }
.popup-form { display: flex; flex-direction: column; gap: 0.65rem; }
.popup-input { background: var(--warm-white); color: var(--ink); border: 2px solid var(--ink); border-radius: 4px; padding: 0.75rem 1rem; font-family: 'M PLUS Rounded 1c', sans-serif; font-size: 0.9rem; outline: none; width: 100%; }
.popup-input:focus { border-color: var(--red); }
.popup-btn { background: var(--red); color: var(--warm-white); border: 2.5px solid var(--ink); box-shadow: 3px 3px 0 var(--ink); border-radius: 4px; padding: 0.85rem; font-family: 'Dela Gothic One', sans-serif; font-size: 0.85rem; letter-spacing: 0.08em; cursor: pointer; transition: transform 0.15s, box-shadow 0.15s; }
.popup-btn:active { transform: translate(2px,2px); box-shadow: 1px 1px 0 var(--ink); }
.popup-skip { text-align: center; margin-top: 0.75rem; font-size: 0.72rem; color: var(--ink-faint); cursor: pointer; text-decoration: underline; -webkit-tap-highlight-color: transparent; }
.popup-success { text-align: center; padding: 1rem 0 0.5rem; }
.popup-success .ps-icon { font-size: 2.5rem; margin-bottom: 0.5rem; }
.popup-success p { font-family: 'Zen Antique Soft', serif; font-size: 1.1rem; color: var(--ink); }
#po-loader { position: fixed; inset: 0; z-index: 9999; background: var(--cream); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.25rem; transition: opacity 0.5s ease; }
#po-loader.hidden { opacity: 0; pointer-events: none; }
.po-loader-logo { font-family: 'Dela Gothic One', 'M PLUS Rounded 1c', sans-serif; font-size: 1.8rem; letter-spacing: 0.05em; color: var(--ink); }
.po-loader-logo span { color: var(--red); font-style: italic; }
.po-loader-msg { font-family: 'M PLUS Rounded 1c', sans-serif; font-size: 0.9rem; letter-spacing: 0.1em; color: var(--ink-faint); text-transform: uppercase; opacity: 0; transition: opacity 0.6s ease; }
.po-loader-msg.show { opacity: 1; }
.po-loader-dots span { display: inline-block; animation: poLoaderDot 1.2s ease-in-out infinite; color: var(--gold); }
.po-loader-dots span:nth-child(2) { animation-delay: 0.2s; }
.po-loader-dots span:nth-child(3) { animation-delay: 0.4s; }
@keyframes poLoaderDot { 0%, 80%, 100% { transform: scale(0.6); opacity: 0.3; } 40% { transform: scale(1.1); opacity: 1; } }

/* =====================================================================
   RECIPES INDEX — from recipes/index.html.erb
   ===================================================================== */

.recipes-page-hero { padding: 5.5rem 1.25rem 2.5rem; background: var(--paper); border-bottom: 2.5px solid var(--ink); position: relative; overflow: hidden; }
.recipes-page-hero::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle, rgba(201,146,42,0.1) 1px, transparent 1px); background-size: 18px 18px; pointer-events: none; }
.recipes-page-hero > * { position: relative; z-index: 1; }
.recipes-page-hero .chapter-label { margin-bottom: 0.75rem; }
.page-title { font-family: 'Dela Gothic One', sans-serif; font-size: clamp(2.5rem, 10vw, 5rem); line-height: 1; margin-bottom: 0.5rem; }
.page-title em { color: var(--red); font-style: normal; }
.page-subtitle { font-size: 0.9rem; color: var(--ink-soft); line-height: 1.7; max-width: 480px; margin-top: 0.75rem; }
.filter-bar { padding: 1.25rem 1.25rem 0; display: flex; gap: 0.5rem; flex-wrap: wrap; }
.filter-btn { font-family: 'Dela Gothic One', sans-serif; font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.4rem 0.9rem; border: 2px solid var(--ink); border-radius: 100px; background: var(--warm-white); color: var(--ink); text-decoration: none; transition: background 0.15s, color 0.15s, box-shadow 0.15s; box-shadow: 2px 2px 0 var(--ink); white-space: nowrap; }
.filter-btn:hover, .filter-btn.active { background: var(--red); color: var(--warm-white); border-color: var(--red); box-shadow: 2px 2px 0 var(--ink); }
.all-recipes-section { padding: 2rem 1.25rem 4rem; }
.rgrid { display: flex; flex-direction: column; gap: 1rem; }
.rcard { text-decoration: none; color: inherit; display: flex; flex-direction: column; background: transparent; box-shadow: none; }
.rcard-image-box { border: 2.5px solid var(--ink); box-shadow: 5px 5px 0 var(--ink); border-radius: 6px; overflow: hidden; position: relative; height: 320px; flex-shrink: 0; transition: transform 0.15s, box-shadow 0.15s; }
.rcard-image-box.no-img { border: none; box-shadow: none; border-radius: 6px 6px 0 0; }
.rcard:active .rcard-image-box { transform: translate(3px,3px); box-shadow: 2px 2px 0 var(--ink); }
.rcard-bg-img { width: 100%; height: 320px; object-fit: cover; display: block; }
.rcard-placeholder { width: 100%; height: 320px; background: #f0e6dc; display: flex; align-items: center; justify-content: center; }
.rcard-placeholder-logo { font-family: 'Dela Gothic One', sans-serif; font-size: 1.3rem; letter-spacing: 0.04em; color: var(--ink); opacity: 0.25; }
.rcard-placeholder-logo em { color: var(--red); font-family: 'Zen Antique Soft', serif; font-style: italic; font-size: 1.6rem; }
.rcard-inner { padding: 0.875rem 0.5rem 0.75rem; display: flex; flex-direction: column; flex: 1; align-items: center; text-align: center; }
.rcard-tags { display: flex; gap: 0.35rem; flex-wrap: wrap; justify-content: center; padding-top: 0.4rem; margin-bottom: 0.4rem; }
.rcard-badge { display: inline-block; background: var(--gold); color: var(--ink); border: 1.5px solid var(--ink); font-size: 0.5rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.2rem 0.55rem; border-radius: 100px; }
.rcard-cat-pill { display: inline-block; color: var(--red); border: 1.5px solid var(--red); font-size: 0.5rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.2rem 0.55rem; border-radius: 100px; }
.rc1 { background: #fff5f4; } .rc2 { background: #fffbf0; } .rc3 { background: #f4fff6; } .rc4 { background: #f8f4ff; } .rc5 { background: #fff8f0; }
.rcard-name { font-family: 'Cousine', monospace; font-size: 1.2rem; font-weight: 700; line-height: 1.25; color: var(--ink); margin-bottom: 0.4rem; }
.rcard-meta { display: flex; gap: 0.6rem; font-size: 0.6rem; letter-spacing: 0.08em; color: var(--ink-faint); flex-wrap: wrap; margin-top: auto; padding-top: 0.4rem; }
.empty-state { text-align: center; padding: 4rem 2rem; color: var(--ink-faint); }
.empty-state p { font-family: 'Zen Antique Soft', serif; font-size: 1.2rem; }
@media (min-width: 640px) {
  .recipes-page-hero { padding: 6.5rem 2rem 3rem; }
  .filter-bar { padding: 1.5rem 2rem 0; }
  .all-recipes-section { padding: 2.5rem 2rem 5rem; }
  .rgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
}
@media (min-width: 900px) {
  .recipes-page-hero { padding: 7.5rem 3rem 3.5rem; }
  .filter-bar { padding: 1.75rem 3rem 0; }
  .all-recipes-section { padding: 3rem 3rem 6rem; }
  .rgrid { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; align-items: start; }
  .rcard:hover .rcard-image-box { transform: translate(-2px,-2px); box-shadow: 7px 7px 0 var(--ink); }
}

/* =====================================================================
   RECIPES SHOW — from recipes/show.html.erb
   ===================================================================== */

.recipe-hero { padding: 5.5rem 1.25rem 2rem; background: var(--paper); border-bottom: 2.5px solid var(--ink); position: relative; overflow: hidden; }
.recipe-hero::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle, rgba(201,146,42,0.1) 1px, transparent 1px); background-size: 18px 18px; pointer-events: none; }
.recipe-hero > * { position: relative; z-index: 1; }
.recipe-back { display: inline-flex; align-items: center; gap: 0.4rem; font-family: 'Dela Gothic One', sans-serif; font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--red); text-decoration: none; border-bottom: 2px solid var(--red); margin-bottom: 1.25rem; padding-bottom: 1px; }
.recipe-img-wrap { position: relative; margin-bottom: 1.75rem; }
.recipe-hero-img { width: 100%; max-height: 380px; object-fit: cover; border: 2.5px solid var(--ink); box-shadow: 6px 6px 0 var(--ink); border-radius: 6px; display: block; }
.recipe-hero-img-placeholder { width: 100%; height: 220px; background: #fff5f4; border: 2.5px solid var(--ink); box-shadow: 6px 6px 0 var(--ink); border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 5rem; opacity: 0.35; }
.recipe-featured-badge { position: absolute; top: 0.75rem; left: 0.75rem; background: var(--gold); color: var(--ink); border: 2px solid var(--ink); font-size: 0.55rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 0.2rem 0.65rem; border-radius: 2px; box-shadow: 2px 2px 0 var(--ink); }
.recipe-category-tag { display: inline-block; background: var(--gold); color: var(--ink); border: 1.5px solid var(--ink); font-size: 0.55rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 0.2rem 0.6rem; border-radius: 2px; margin-bottom: 0.75rem; }
.recipe-title { font-family: 'Dela Gothic One', sans-serif; font-size: clamp(2rem, 8vw, 3.5rem); line-height: 1.0; margin-bottom: 0.75rem; }
.recipe-meta-row { display: flex; gap: 0.6rem; flex-wrap: wrap; margin-bottom: 1.1rem; }
.recipe-meta-item { display: inline-flex; align-items: center; gap: 0.35rem; background: var(--warm-white); border: 1.5px solid var(--ink); border-radius: 100px; padding: 0.35rem 1rem; font-family: 'Zen Antique Soft', serif; font-size: 0.95rem; font-weight: 400; }
.recipe-description { font-family: 'Zen Antique Soft', serif; font-size: 1rem; line-height: 1.9; color: var(--ink-soft); max-width: 640px; }
.macros-section { margin-bottom: 1.1rem; }
.macros-title { font-size: 0.55rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 0.35rem; }
.macros-bar { display: flex; gap: 0.35rem; flex-wrap: wrap; }
.macro-chip { display: flex; flex-direction: column; align-items: center; background: var(--ink); color: var(--warm-white); border: 1.5px solid var(--ink); border-radius: 5px; padding: 0.3rem 0.6rem; min-width: 48px; }
.macro-chip .macro-val { font-family: 'Dela Gothic One', sans-serif; font-size: 0.8rem; color: var(--gold-light); line-height: 1; }
.macro-chip .macro-label { font-size: 0.45rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,249,242,0.45); margin-top: 0.15rem; }
.recipe-body { padding: 2rem 1.25rem 3rem; }
.recipe-section-title { font-family: 'Dela Gothic One', sans-serif; font-size: 1rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink); margin-bottom: 1rem; display: flex; align-items: center; gap: 0.6rem; }
.recipe-section-title::after { content: ''; flex: 1; height: 2px; background: var(--ink); }
.ingredients-panel { background: var(--warm-white); border: 2.5px solid var(--ink); box-shadow: 5px 5px 0 var(--ink); border-radius: 8px; padding: 1.4rem; margin-bottom: 2rem; }
.servings-adjuster { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.1rem; padding-bottom: 1rem; border-bottom: 1.5px solid var(--border); }
.servings-adjuster label { font-family: 'Dela Gothic One', sans-serif; font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-faint); flex: 1; }
.servings-multiplier { display: flex; gap: 0.4rem; }
.srv-btn { font-family: 'Dela Gothic One', sans-serif; font-size: 0.7rem; letter-spacing: 0.06em; padding: 0.3rem 0.65rem; border: 2px solid var(--ink); background: var(--cream); color: var(--ink); border-radius: 4px; cursor: pointer; box-shadow: 2px 2px 0 var(--ink); transition: transform 0.1s, box-shadow 0.1s, background 0.1s; -webkit-tap-highlight-color: transparent; }
.srv-btn.active { background: var(--ink); color: var(--warm-white); transform: translate(2px,2px); box-shadow: none; }
.srv-btn:not(.active):hover { background: var(--gold); }
.ingredient-list { list-style: none; display: flex; flex-direction: column; gap: 0.45rem; }
.ingredient-item { display: flex; align-items: center; gap: 0.75rem; padding: 0.6rem 0.75rem; border-radius: 6px; cursor: pointer; transition: background 0.15s; -webkit-tap-highlight-color: transparent; }
.ingredient-item:hover { background: var(--cream); }
.ingredient-item.checked { opacity: 0.45; }
.ingredient-item.checked .ingredient-name { text-decoration: line-through; }
.ing-checkbox { width: 20px; height: 20px; border: 2px solid var(--ink); border-radius: 4px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; background: var(--cream); transition: background 0.15s, border-color 0.15s; }
.ingredient-item.checked .ing-checkbox { background: var(--red); border-color: var(--red); }
.ing-check-icon { display: none; color: white; font-size: 0.7rem; font-weight: 700; }
.ingredient-item.checked .ing-check-icon { display: block; }
.ingredient-qty { font-family: 'Zen Antique Soft', serif; font-weight: 700; color: var(--red); font-size: 0.9rem; min-width: 72px; flex-shrink: 0; }
.ingredient-name { font-family: 'Zen Antique Soft', serif; color: var(--ink); font-size: 0.95rem; }
.ing-reset { margin-top: 1rem; font-family: 'Dela Gothic One', sans-serif; font-size: 0.62rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-faint); border: none; background: none; cursor: pointer; padding: 0; }
.ing-reset:hover { color: var(--red); }
.steps-list { list-style: none; display: flex; flex-direction: column; gap: 1rem; }
.step-item { display: flex; gap: 1rem; align-items: flex-start; }
.step-num { width: 38px; height: 38px; background: var(--red); color: #fff; border: 2.5px solid var(--ink); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Dela Gothic One', sans-serif; font-size: 0.85rem; flex-shrink: 0; box-shadow: 2px 2px 0 var(--ink); }
.step-body { background: var(--warm-white); border: 2px solid var(--ink); box-shadow: 3px 3px 0 var(--ink); border-radius: 6px; padding: 0.9rem 1.1rem; font-family: 'Zen Antique Soft', serif; font-size: 1rem; line-height: 1.9; color: var(--ink); flex: 1; }
.related-section { padding: 2.5rem 1.25rem 3rem; border-top: 2.5px solid var(--ink); background: var(--paper); }
.related-grid { display: flex; flex-direction: column; gap: 0.85rem; margin-top: 1.5rem; }
.recipe-body--sectioned { display: block !important; }
.recipe-named-section { margin-bottom: 2.5rem; }
.recipe-named-section-header {
  font-family: 'Dela Gothic One', sans-serif;
  font-size: clamp(1rem, 3vw, 1.35rem);
  letter-spacing: 0.04em;
  color: var(--ink);
  background: var(--gold);
  border: 2.5px solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
  border-radius: 6px;
  padding: 0.55rem 1.1rem;
  margin-bottom: 1.25rem;
  display: inline-block;
}
@media (min-width: 640px) {
  .recipe-hero { padding: 6.5rem 2rem 2.5rem; }
  .recipe-body { padding: 2.5rem 2rem 3.5rem; }
  .recipe-hero-img { max-height: 440px; }
  .related-section { padding: 3rem 2rem 4rem; }
  .related-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
}
@media (min-width: 900px) {
  .recipe-hero { padding: 7.5rem 3rem 3.5rem; display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
  .recipe-back { grid-column: span 2; }
  .recipe-img-wrap { margin-bottom: 0; }
  .recipe-hero-img { max-height: 520px; }
  .recipe-body { padding: 3.5rem 3rem 5rem; display: grid; grid-template-columns: 340px 1fr; gap: 3.5rem; align-items: start; }
  .ingredients-panel { position: sticky; top: 5.5rem; margin-bottom: 0; }
  .section-body { display: grid; grid-template-columns: 340px 1fr; gap: 3.5rem; align-items: start; }
  .section-body .ingredients-panel { position: sticky; top: 5.5rem; margin-bottom: 0; }
  .related-section { padding: 4rem 3rem 5rem; }
  .related-grid { grid-template-columns: repeat(3, 1fr); }
}

/* =====================================================================
   HOME PAGE — from pages/home.html.erb
   ===================================================================== */

.hero { min-height: 100svh; padding: 5.5rem 1.25rem 2.5rem; position: relative; overflow: hidden; display: flex; flex-direction: column; justify-content: flex-end; background: var(--cream); }
@media (max-width: 899px) { .hero { min-height: 40svh; } }
.hero::before { content: ''; position: absolute; inset: 0; background: repeating-conic-gradient(from 0deg at 50% 120%, rgba(192,57,43,0.035) 0deg, transparent 1deg, transparent 7deg); pointer-events: none; }
.hero-halftone { position: absolute; top: 0; right: 0; width: 55%; height: 100%; background-image: radial-gradient(circle, rgba(201,146,42,0.15) 1.5px, transparent 1.5px); background-size: 14px 14px; -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,0.8), transparent); mask-image: linear-gradient(to left, rgba(0,0,0,0.8), transparent); pointer-events: none; }
.hero-sfx { position: absolute; top: 3.5rem; right: -0.5rem; font-family: 'Dela Gothic One', sans-serif; font-size: clamp(4rem, 20vw, 8rem); color: rgba(192,57,43,0.07); line-height: 1; pointer-events: none; user-select: none; }
.hero-tag { display: inline-flex; align-items: center; gap: 0.5rem; background: var(--gold); color: var(--ink); border: 2px solid var(--ink); box-shadow: 2px 2px 0 var(--ink); font-size: 0.6rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; padding: 0.3rem 0.75rem; border-radius: 2px; margin-bottom: 1rem; align-self: flex-start; opacity: 0; animation: popIn 0.5s 0.1s cubic-bezier(0.34,1.56,0.64,1) forwards; }
.hero-title { font-family: 'Dela Gothic One', sans-serif; font-size: clamp(3rem, 14vw, 5.5rem); line-height: 1.0; letter-spacing: 0.01em; margin-bottom: 0.15em; opacity: 0; animation: slideUp 0.6s 0.2s cubic-bezier(0.16,1,0.3,1) forwards; }
.hero-title .red { color: var(--red); }
.hero-title .gold { color: var(--gold); }
.hero-title .outlined { -webkit-text-stroke: 2px var(--ink); color: transparent; }
.speech-bubble { position: relative; background: var(--warm-white); border: 2.5px solid var(--ink); border-radius: 16px 16px 16px 4px; box-shadow: 3px 3px 0 var(--ink); padding: 0.85rem 1.1rem; margin: 1.25rem 0; max-width: 320px; align-self: flex-start; opacity: 0; animation: popIn 0.5s 0.4s cubic-bezier(0.34,1.56,0.64,1) forwards; }
.speech-bubble::before { content: ''; position: absolute; bottom: -12px; left: 18px; width: 0; height: 0; border-left: 10px solid transparent; border-right: 4px solid transparent; border-top: 12px solid var(--ink); }
.speech-bubble::after { content: ''; position: absolute; bottom: -8px; left: 20px; width: 0; height: 0; border-left: 8px solid transparent; border-right: 3px solid transparent; border-top: 10px solid var(--warm-white); }
.speech-bubble p { font-size: 0.88rem; line-height: 1.65; color: var(--ink-soft); }
.hero-actions { display: flex; flex-direction: column; gap: 0.7rem; margin-top: 1.5rem; opacity: 0; animation: slideUp 0.5s 0.55s cubic-bezier(0.16,1,0.3,1) forwards; }
.recipes-section { padding: 3rem 1.25rem; position: relative; }
.recipes-bg { position: absolute; inset: 0; background-image: radial-gradient(circle, rgba(201,146,42,0.1) 1px, transparent 1px); background-size: 16px 16px; pointer-events: none; }
.sec-head { margin-bottom: 1.75rem; position: relative; z-index: 1; }
.sec-head-row { display: flex; align-items: center; justify-content: space-between; }
.see-all { font-family: 'Dela Gothic One', sans-serif; font-size: 0.7rem; color: var(--red); text-decoration: none; letter-spacing: 0.1em; border-bottom: 2px solid var(--red); padding-bottom: 1px; }
.email-wrap { padding: 0 1.25rem 3rem; }
.email-box { background: var(--gold-pale); border: 2.5px solid var(--ink); box-shadow: 6px 6px 0 var(--ink); border-radius: 8px; padding: 2rem 1.5rem; position: relative; overflow: hidden; }
.email-box::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle, rgba(201,146,42,0.2) 1px, transparent 1px); background-size: 14px 14px; pointer-events: none; }
.email-box > * { position: relative; z-index: 1; }
.thought-bubble { background: var(--warm-white); border: 2.5px solid var(--ink); border-radius: 20px; box-shadow: 3px 3px 0 var(--ink); padding: 1.25rem 1.5rem; margin-bottom: 1.5rem; position: relative; }
.email-title { font-family: 'Zen Antique Soft', serif; font-size: 1.9rem; line-height: 1.1; color: var(--ink); margin-bottom: 0.6rem; }
.email-title em { font-style: italic; color: var(--red); }
.email-desc { font-size: 0.875rem; line-height: 1.7; color: var(--ink-soft); }
.pdf-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.65rem; margin: 1.5rem 0; }
.pdf-card { background: var(--warm-white); border: 2px solid var(--ink); box-shadow: 3px 3px 0 var(--ink); border-radius: 6px; padding: 0.85rem; }
.pdf-icon { font-size: 1.3rem; margin-bottom: 0.35rem; }
.pdf-name { font-family: 'Zen Antique Soft', serif; font-size: 0.9rem; line-height: 1.3; color: var(--ink); margin-bottom: 0.25rem; }
.pdf-info { font-size: 0.55rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--red); font-weight: 700; }
.form-wrap { display: flex; flex-direction: column; gap: 0.6rem; }
.form-input { width: 100%; background: var(--warm-white); color: var(--ink); border: 2px solid var(--ink); border-radius: 4px; padding: 0.9rem 1.1rem; font-family: 'M PLUS Rounded 1c', sans-serif; font-size: 1rem; outline: none; min-height: 52px; -webkit-appearance: none; }
.form-input:focus { box-shadow: 3px 3px 0 var(--red); border-color: var(--red); }
.form-btn { width: 100%; background: var(--red); color: var(--warm-white); border: 2.5px solid var(--ink); box-shadow: 4px 4px 0 var(--ink); border-radius: 4px; padding: 0.9rem 1.4rem; font-family: 'Dela Gothic One', sans-serif; font-size: 0.9rem; letter-spacing: 0.06em; cursor: pointer; min-height: 52px; }
.form-note { font-size: 0.62rem; color: var(--ink-faint); text-align: center; margin-top: 0.4rem; }
.philosophy { padding: 3rem 1.25rem; background: var(--paper); border-top: 2.5px solid var(--ink); border-bottom: 2.5px solid var(--ink); }
.phi-grid { display: flex; flex-direction: column; gap: 0.85rem; }
.phi-card { background: var(--warm-white); border: 2.5px solid var(--ink); box-shadow: 4px 4px 0 var(--ink); border-radius: 6px; padding: 1.5rem; position: relative; overflow: hidden; }
.phi-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; }
.phi-card:nth-child(1)::before { background: var(--red); } .phi-card:nth-child(2)::before { background: var(--gold); } .phi-card:nth-child(3)::before { background: var(--red-light); } .phi-card:nth-child(4)::before { background: var(--gold-light); }
.phi-num { font-family: 'Dela Gothic One', sans-serif; font-size: 2.5rem; color: rgba(26,15,8,0.07); line-height: 1; margin-bottom: 0.3rem; }
.phi-title { font-family: 'Zen Antique Soft', serif; font-size: 1.2rem; color: var(--ink); margin-bottom: 0.5rem; }
.phi-body { font-size: 0.83rem; line-height: 1.75; color: var(--ink-soft); }
.phi-sfx { position: absolute; top: 0.75rem; right: 1rem; font-family: 'Dela Gothic One', sans-serif; font-size: 1.4rem; color: rgba(192,57,43,0.12); user-select: none; }
@keyframes popIn { from { opacity:0; transform: scale(0.8); } to { opacity:1; transform: scale(1); } }
@keyframes slideUp { from { opacity:0; transform: translateY(20px); } to { opacity:1; transform: translateY(0); } }
@media (min-width: 640px) {
  .hero { padding: 6rem 2rem 3rem; }
  .hero-actions { flex-direction: row; }
  .recipes-section { padding: 3.5rem 2rem; }
  .recipes-section .rgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
  .rcard.featured { grid-column: auto; }
  .rcard.featured .rcard-image-box { height: auto; }
  .email-wrap { padding: 0 2rem 3.5rem; }
  .philosophy { padding: 3.5rem 2rem; }
  .phi-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
}
@media (min-width: 900px) {
  .hero { padding: 8rem 3rem 5rem; }
  .hero-title { font-size: clamp(5rem, 10vw, 8rem); }
  .speech-bubble { max-width: 420px; }
  .recipes-section { padding: 5rem 3rem; }
  .recipes-section .rgrid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .rcard.featured { grid-column: auto; }
  .email-wrap { padding: 0 3rem 5rem; }
  .email-box { padding: 3.5rem; display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
  .email-title { font-size: 2.8rem; }
  .form-wrap { flex-direction: row; gap: 0; }
  .form-input { border-right: none; border-radius: 4px 0 0 4px; flex: 1; width: auto; }
  .form-btn { width: auto; border-radius: 0 4px 4px 0; white-space: nowrap; }
  .form-note { text-align: left; }
  .philosophy { padding: 5rem 3rem; }
  .phi-grid { grid-template-columns: repeat(4,1fr); }
}

/* =====================================================================
   ABOUT PAGE — from pages/about.html.erb
   ===================================================================== */

.about-page { background: var(--cream); min-height: calc(100svh - 120px); padding: 7rem 1.5rem 5rem; position: relative; overflow: hidden; }
.about-page::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle, rgba(201,146,42,0.08) 1.5px, transparent 1.5px); background-size: 22px 22px; pointer-events: none; }
.about-inner { max-width: 1080px; margin: 0 auto; position: relative; z-index: 1; }
.about-header { text-align: center; margin-bottom: 4rem; }
.about-badge { display: inline-flex; align-items: center; gap: 0.5rem; background: var(--gold); color: var(--ink); border: 2px solid var(--ink); box-shadow: 3px 3px 0 var(--ink); font-family: 'Dela Gothic One', sans-serif; font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; padding: 0.35rem 0.9rem; border-radius: 2px; margin-bottom: 1rem; }
.about-title { font-family: 'Dela Gothic One', sans-serif; font-size: clamp(2.8rem, 12vw, 5.5rem); line-height: 1; }
.about-title em { color: var(--red); font-style: normal; }
.about-body { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: start; }
.about-photo-wrap { position: relative; }
.about-photo { display: block; width: 100%; max-width: 420px; height: 520px; object-fit: cover; border: 3px solid var(--ink); box-shadow: 8px 8px 0 var(--ink); border-radius: 4px; margin: 0 auto; }
.about-photo-caption { font-family: 'Dela Gothic One', sans-serif; font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--ink-soft); margin-top: 0.75rem; text-align: center; }
.about-text { display: flex; flex-direction: column; gap: 1.5rem; }
.about-intro { font-family: 'Dela Gothic One', sans-serif; font-size: clamp(1.4rem, 4vw, 2rem); line-height: 1.3; color: var(--ink); border-left: 4px solid var(--red); padding-left: 1.25rem; }
.about-body-text p { font-family: 'Zen Antique Soft', serif; font-size: 1.1rem; line-height: 1.8; color: var(--ink-soft); margin-bottom: 1rem; }
.about-body-text p:last-child { margin-bottom: 0; }
.about-divider { width: 48px; height: 3px; background: var(--red); border-radius: 2px; }
.about-chips { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.chip { background: transparent; border: 2px solid var(--ink); border-radius: 100px; padding: 0.4rem 1rem; font-size: 0.75rem; font-weight: 600; color: var(--ink); box-shadow: 2px 2px 0 var(--ink); letter-spacing: 0.03em; }
@media (min-width: 760px) {
  .about-body { grid-template-columns: 380px 1fr; gap: 4rem; align-items: start; }
  .about-photo { max-width: 100%; height: 560px; margin: 0; }
  .about-photo-caption { text-align: left; }
}
@media (min-width: 1024px) {
  .about-body { grid-template-columns: 420px 1fr; gap: 5rem; }
  .about-photo { height: 600px; }
}

/* =====================================================================
   SHOP PAGE — from pages/shop.html.erb
   ===================================================================== */

.shop-hero { min-height: calc(100svh - 120px); padding: 7rem 1.25rem 4rem; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; position: relative; overflow: hidden; background: var(--cream); }
.shop-hero::before { content: ''; position: absolute; inset: 0; background: repeating-conic-gradient(from 0deg at 50% 50%, rgba(192,57,43,0.03) 0deg, transparent 1deg, transparent 8deg); pointer-events: none; }
.shop-hero::after { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle, rgba(201,146,42,0.1) 1.5px, transparent 1.5px); background-size: 20px 20px; pointer-events: none; }
.shop-hero > * { position: relative; z-index: 1; }
.shop-sfx { font-family: 'Dela Gothic One', sans-serif; font-size: clamp(5rem, 25vw, 12rem); color: rgba(192,57,43,0.06); line-height: 1; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); pointer-events: none; user-select: none; white-space: nowrap; z-index: 0; }
.shop-badge { display: inline-flex; align-items: center; gap: 0.5rem; background: var(--gold); color: var(--ink); border: 2px solid var(--ink); box-shadow: 3px 3px 0 var(--ink); font-family: 'Dela Gothic One', sans-serif; font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; padding: 0.35rem 0.9rem; border-radius: 2px; margin-bottom: 1.5rem; }
.shop-title { font-family: 'Dela Gothic One', sans-serif; font-size: clamp(3rem, 14vw, 6rem); line-height: 1; margin-bottom: 0.5rem; }
.shop-title em { color: var(--red); font-style: normal; }
.shop-panel { background: var(--warm-white); border: 2.5px solid var(--ink); box-shadow: 6px 6px 0 var(--ink); border-radius: 12px; padding: 2rem 2.5rem; margin: 2rem 0; max-width: 480px; width: 100%; }
.shop-panel p { font-family: 'Zen Antique Soft', serif; font-size: 1.15rem; line-height: 1.7; color: var(--ink-soft); }
.shop-panel p strong { color: var(--ink); }
.notify-form { display: flex; flex-direction: column; gap: 0.6rem; margin-top: 1.5rem; }
.notify-input { background: var(--cream); color: var(--ink); border: 2px solid var(--ink); border-radius: 4px; padding: 0.85rem 1rem; font-family: 'M PLUS Rounded 1c', sans-serif; font-size: 0.95rem; outline: none; }
.notify-input:focus { border-color: var(--red); }
.notify-btn { background: var(--red); color: var(--warm-white); border: 2.5px solid var(--ink); box-shadow: 4px 4px 0 var(--ink); border-radius: 4px; padding: 0.85rem 1.5rem; font-family: 'Dela Gothic One', sans-serif; font-size: 0.85rem; letter-spacing: 0.06em; cursor: pointer; transition: transform 0.15s, box-shadow 0.15s; }
.notify-btn:active { transform: translate(2px,2px); box-shadow: 2px 2px 0 var(--ink); }
.coming-chips { display: flex; flex-wrap: wrap; gap: 0.6rem; justify-content: center; margin-top: 1.5rem; }
.chip { background: var(--warm-white); border: 2px solid var(--ink); border-radius: 100px; padding: 0.35rem 0.85rem; font-size: 0.75rem; font-weight: 500; color: var(--ink-soft); box-shadow: 2px 2px 0 var(--ink); }
@media (min-width: 640px) { .shop-hero { padding: 8rem 2rem 5rem; } }
@media (min-width: 900px) { .shop-hero { padding: 9rem 3rem 6rem; } }
