/* ── AquiRecetas Web — app.css ───────────────────────────────────────────── */

/* Variables */
:root {
  --cream:          #FAF8F3;
  --cream-dark:     #F0EDE4;
  --terracotta:     #C8694A;
  --terracotta-lt:  #E8896A;
  --terracotta-dk:  #A04D30;
  --olive:          #6B7B45;
  --brown:          #2D2520;
  --brown-md:       #5C4A3A;
  --brown-lt:       #8C7060;
  --white:          #FFFFFF;
  --shadow-sm:      0 1px 3px rgba(45,37,32,.08);
  --shadow-md:      0 4px 16px rgba(45,37,32,.12);
  --shadow-lg:      0 8px 32px rgba(45,37,32,.16);
  --radius-sm:      8px;
  --radius-md:      14px;
  --radius-lg:      20px;
  --font-serif:     'Playfair Display', Georgia, serif;
  --font-sans:      'Inter', system-ui, sans-serif;
  --container:      1240px;
  --gap:            24px;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body { font-family: var(--font-sans); background: var(--cream); color: var(--brown); line-height: 1.6; }
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }

/* Container */
.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }

/* ── Typography ─────────────────────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-serif); line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2rem); }

/* ── Buttons ─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 22px; border-radius: 100px; border: 2px solid transparent;
  font-family: var(--font-sans); font-weight: 600; font-size: .9rem;
  transition: all .2s ease; white-space: nowrap;
}
.btn--primary { background: var(--terracotta); color: #fff; border-color: var(--terracotta); }
.btn--primary:hover { background: var(--terracotta-dk); border-color: var(--terracotta-dk); }
.btn--ghost { background: transparent; color: var(--terracotta); border-color: var(--terracotta); }
.btn--ghost:hover { background: var(--terracotta); color: #fff; }
.btn--sm { padding: 6px 14px; font-size: .82rem; }
.btn--lg { padding: 14px 30px; font-size: 1rem; }
.btn--full { width: 100%; justify-content: center; }

/* ── Navbar ─────────────────────────────────────────────────────────────── */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250,248,243,.95); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--cream-dark);
  box-shadow: var(--shadow-sm);
}
.navbar__inner { position: relative; display: flex; align-items: center; gap: 20px; padding: 16px 0; transition: padding .25s ease; }
.navbar__brand { display: flex; align-items: center; }
.navbar__brand-logo { height: 72px; width: auto; display: block; transition: height .25s ease; }
.navbar.is-scrolled .navbar__inner { padding: 10px 0; }
.navbar.is-scrolled .navbar__brand-logo { height: 44px; }
.navbar__search { flex: 1; max-width: 440px; }
.search-form { display: flex; align-items: center; gap: 0; }
.search-form__input {
  flex: 1; padding: 8px 16px; border: 1.5px solid var(--cream-dark);
  border-right: none; border-radius: 100px 0 0 100px; background: #fff;
  font-family: var(--font-sans); font-size: .9rem;
  transition: border-color .2s;
}
.search-form__input:focus { outline: none; border-color: var(--terracotta); }
.search-form__btn {
  padding: 8px 14px; background: var(--terracotta); color: #fff;
  border: 1.5px solid var(--terracotta); border-radius: 0 100px 100px 0;
  display: flex; align-items: center;
}
.navbar__actions { display: flex; align-items: center; gap: 10px; margin-left: auto; }
.is-hidden { display: none !important; }

/* ── PWA install bar (public/js/app.js) ─────────────────────────────────── */
.install-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 300;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 14px 20px; padding-bottom: calc(14px + env(safe-area-inset-bottom));
  background: var(--brown); color: #fff;
  box-shadow: 0 -4px 16px rgba(0,0,0,.15);
}
.install-bar__text { font-size: .9rem; font-weight: 500; }
.install-bar__actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.install-bar__close {
  background: none; border: none; color: rgba(255,255,255,.7); font-size: 1.1rem;
  line-height: 1; cursor: pointer; padding: 4px;
}
.install-bar__close:hover { color: #fff; }
@media (max-width: 640px) {
  .install-bar { flex-direction: column; align-items: stretch; text-align: center; }
  .install-bar__actions { justify-content: center; }
}
.navbar__user { position: relative; }
.navbar__avatar {
  width: 36px; height: 36px; border-radius: 50%; background: var(--terracotta);
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-weight: 700; cursor: pointer;
}
.navbar__dropdown {
  display: none; position: absolute; right: 0; top: calc(100% + 8px);
  background: #fff; border: 1px solid var(--cream-dark); border-radius: var(--radius-md);
  box-shadow: var(--shadow-md); min-width: 160px; overflow: hidden;
}
/* Toggled by click (app.js), not :hover — hover doesn't work on touch, and
   moving the mouse toward the dropdown to click a link used to close it. */
.navbar__user--open .navbar__dropdown { display: block; }
.navbar__dropdown a { display: block; padding: 10px 16px; font-size: .88rem; transition: background .15s; }
.navbar__dropdown a:hover { background: var(--cream); }
.navbar__panel { display: contents; }
.navbar__burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 4px; margin-left: auto; }
.navbar__burger span { display: block; width: 22px; height: 2px; background: var(--brown); transition: .3s; }

/* Some Android browsers (confirmed: Brave) force-darken pages with no
   declared dark palette — but only partially: they reliably respect an
   explicit `background` we set here, while still re-darkening images and
   small flat-color elements (the logo, the burger bars) regardless of what
   color we give those specifically — tried inverting/relighting them and it
   didn't hold up on a real device either way. So instead of fighting for a
   light icon on a dark bar, this reasserts the ORIGINAL light navbar (with
   !important, since it's fighting an external override, not our own
   cascade) so the logo/icon — whatever shade the browser leaves them at —
   stay legible against a background we can actually keep under control. */
@media (prefers-color-scheme: dark) {
  .navbar { background: rgba(250,248,243,.95) !important; border-bottom-color: var(--cream-dark) !important; }
  .navbar__brand-logo { filter: none !important; }
  .search-form__input { background: #fff !important; border-color: var(--cream-dark) !important; color: var(--brown) !important; }
  .navbar__dropdown { background: #fff !important; border-color: var(--cream-dark) !important; }
  .navbar__dropdown a { color: var(--brown) !important; }
  .navbar__dropdown a:hover { background: var(--cream) !important; }
  .navbar__burger span { background: var(--brown) !important; }
}

/* ── Ingredient autocomplete dropdown (public/js/app.js: IngredientAutocomplete) ── */
.autocomplete-dropdown {
  position: absolute; z-index: 200; margin: 0; padding: 4px;
  list-style: none; background: #fff; border: 1px solid var(--cream-dark);
  border-radius: var(--radius-md); box-shadow: var(--shadow-md);
  max-height: 220px; overflow-y: auto;
}
.autocomplete-dropdown li {
  padding: 8px 12px; border-radius: var(--radius-sm); font-size: .9rem; cursor: pointer;
}
.autocomplete-dropdown li:hover { background: var(--cream); }

/* ── Flash ───────────────────────────────────────────────────────────────── */
.flash { padding: 12px 0; font-size: .9rem; font-weight: 500; }
.flash--success { background: #d4edda; color: #155724; }
.flash--error   { background: #f8d7da; color: #721c24; }
.flash--info    { background: #d1ecf1; color: #0c5460; }

/* ── Hero ────────────────────────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 520px; display: flex; align-items: center;
  overflow: hidden; background: linear-gradient(135deg, #2D2520 0%, #5C3020 60%, #C8694A 100%);
}
.hero__bg {
  position: absolute; inset: 0;
  background: url('/images/hero-pattern.svg') repeat; opacity: .06;
}
.hero__inner {
  position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: center; padding: 80px 20px;
}
.hero__text { color: #fff; }
.hero__title { font-size: clamp(2.5rem, 6vw, 4rem); font-weight: 700; line-height: 1.1; margin-bottom: 20px; }
.hero__title em { color: var(--terracotta-lt); font-style: italic; }
.hero__subtitle { font-size: 1.1rem; opacity: .85; margin-bottom: 32px; line-height: 1.7; }
.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero__cuisines-label { color: rgba(255,255,255,.6); font-size: .85rem; margin-bottom: 12px; }
.cuisine-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.cuisine-pill {
  display: flex; align-items: center; gap: 6px;
  padding: 6px 12px; background: rgba(255,255,255,.12); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.2); border-radius: 100px; color: #fff;
  font-size: .82rem; font-weight: 500; transition: .2s;
}
.cuisine-pill:hover { background: rgba(255,255,255,.22); }
.cuisine-pill--more { color: var(--terracotta-lt); border-color: var(--terracotta-lt); }

/* ── Sections ────────────────────────────────────────────────────────────── */
.section { padding: 64px 0; }
.section--categories { padding: 40px 0; background: #fff; }
.section__header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 32px; }
.section__title { font-size: 1.8rem; }
.section__link { color: var(--terracotta); font-weight: 600; font-size: .9rem; }
.section__link:hover { text-decoration: underline; }

/* ── Category grid ───────────────────────────────────────────────────────── */
.category-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(90px, 1fr)); gap: 12px; }
.category-card {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  padding: 16px 8px; border-radius: var(--radius-md); background: var(--cream);
  border: 1.5px solid var(--cream-dark); font-size: .82rem; font-weight: 500;
  transition: .2s; text-align: center;
}
.category-card:hover { border-color: var(--terracotta); background: #fff; transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.category-card__icon { font-size: 2.75rem; line-height: 1; }

/* ── Masonry grid ────────────────────────────────────────────────────────── */
.masonry {
  columns: 4; column-gap: var(--gap);
}
.masonry--featured { columns: 3; }
.recipe-card { break-inside: avoid; margin-bottom: var(--gap); }

/* ── Recipe card ─────────────────────────────────────────────────────────── */
.recipe-card {
  border-radius: var(--radius-md); overflow: hidden;
  background: #fff; box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}
.recipe-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.recipe-card__link { display: block; }
.recipe-card__image { position: relative; overflow: hidden; }
.recipe-card__img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform .4s ease; }
.recipe-card:hover .recipe-card__img { transform: scale(1.04); }
.recipe-card__placeholder {
  width: 100%; aspect-ratio: 4/3; display: flex; align-items: center;
  justify-content: center; background: var(--cream-dark); font-size: 3rem;
}
.recipe-card__overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 32px 14px 14px;
  background: linear-gradient(transparent, rgba(20,12,8,.75));
}
.recipe-card__title { color: #fff; font-size: 1rem; font-family: var(--font-serif); line-height: 1.3; }
.recipe-card__meta-overlay { display: flex; align-items: center; gap: 8px; margin-top: 4px; }
.recipe-card__flag { font-size: 1rem; }
.recipe-card__rating { color: #FFD700; font-size: .82rem; font-weight: 600; }
.recipe-card__badge {
  position: absolute; top: 10px; right: 10px;
  padding: 3px 8px; background: var(--terracotta); color: #fff;
  border-radius: 100px; font-size: .72rem; font-weight: 600;
}
.recipe-card__body { padding: 12px 14px; }
.recipe-card__info { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; font-size: .78rem; color: var(--brown-lt); }
.recipe-card__author { display: block; margin-top: 6px; font-size: .78rem; color: var(--terracotta); font-weight: 500; }
.recipe-card__author:hover { text-decoration: underline; }

/* ── Difficulty stars ────────────────────────────────────────────────────── */
.star--on  { color: var(--terracotta); }
.star--off { color: var(--cream-dark); }

/* ── Fridge CTA ──────────────────────────────────────────────────────────── */
.section--fridge-cta { background: var(--brown); }
.fridge-cta {
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px; padding: 20px 0;
}
.fridge-cta__text { color: #fff; }
.fridge-cta__text h2 { color: #fff; margin-bottom: 12px; }
.fridge-cta__text p { opacity: .8; margin-bottom: 24px; max-width: 480px; }
.fridge-cta__emoji { font-size: 4rem; letter-spacing: 4px; }

/* ── Recipe detail ───────────────────────────────────────────────────────── */
.recipe-detail__hero { height: 480px; overflow: hidden; }
.recipe-detail__hero-img { width: 100%; height: 100%; object-fit: cover; }
.recipe-detail__hero-placeholder { height: 100%; display: flex; align-items: center; justify-content: center; background: var(--cream-dark); font-size: 6rem; }
.recipe-detail__body { display: grid; grid-template-columns: 1fr 300px; gap: 48px; padding-top: 48px; padding-bottom: 80px; }
.recipe-detail__header { margin-bottom: 32px; }
.recipe-detail__breadcrumb { display: flex; gap: 8px; margin-bottom: 16px; flex-wrap: wrap; }
.chip { padding: 4px 12px; background: var(--cream-dark); border-radius: 100px; font-size: .82rem; font-weight: 500; }
.chip:hover { background: var(--terracotta); color: #fff; }
.recipe-detail__title { font-size: 2.5rem; margin-bottom: 16px; }
.recipe-detail__author-row { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 20px; }
.author-link { display: flex; align-items: center; gap: 8px; }
.author-link__avatar { width: 32px; height: 32px; border-radius: 50%; background: var(--terracotta); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: .9rem; }
.recipe-detail__date { color: var(--brown-lt); font-size: .85rem; }
.recipe-detail__actions { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 20px; }
.favorite-btn--active { background: #fce4e1 !important; border-color: #e07070 !important; color: #c0392b !important; }
.recipe-meta-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; padding: 24px; background: var(--cream); border-radius: var(--radius-md); margin-bottom: 32px; }
.recipe-meta-grid__item { display: flex; flex-direction: column; align-items: center; gap: 4px; text-align: center; }
.recipe-meta-grid__icon { font-size: 1.5rem; }
.recipe-meta-grid__label { font-size: .75rem; color: var(--brown-lt); text-transform: uppercase; letter-spacing: .05em; }
.recipe-meta-grid__value { font-weight: 600; font-size: .95rem; }
.recipe-detail__description { font-size: 1.05rem; line-height: 1.8; margin-bottom: 40px; color: var(--brown-md); }
.recipe-section { margin-bottom: 48px; }
.recipe-section__title { font-size: 1.5rem; margin-bottom: 20px; padding-bottom: 10px; border-bottom: 2px solid var(--cream-dark); }

/* ── Ingredients list ────────────────────────────────────────────────────── */
.ingredients-list { list-style: none; }
.ingredients-list__item { display: flex; align-items: baseline; gap: 10px; padding: 10px 0; border-bottom: 1px solid var(--cream-dark); font-size: .95rem; }
.ingredients-list__dot { color: var(--terracotta); font-size: .6rem; flex-shrink: 0; }
.ingredients-list__notes { color: var(--brown-lt); font-size: .88rem; }

/* ── Steps list ──────────────────────────────────────────────────────────── */
.steps-list { list-style: none; }
.steps-list__item { display: flex; gap: 20px; margin-bottom: 32px; }
.steps-list__number { width: 36px; height: 36px; border-radius: 50%; background: var(--terracotta); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; flex-shrink: 0; margin-top: 2px; }
.steps-list__content { flex: 1; }
.steps-list__duration { display: inline-block; color: var(--terracotta); font-size: .82rem; font-weight: 600; margin-bottom: 6px; }
.steps-list__media { display: flex; gap: 10px; margin-top: 14px; flex-wrap: wrap; }
.steps-list__media img,
.steps-list__media video { width: 140px; height: 100px; object-fit: cover; border-radius: var(--radius-sm); }

/* ── Ratings ─────────────────────────────────────────────────────────────── */
.ratings-list { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.rating-item { padding: 16px; background: var(--cream); border-radius: var(--radius-md); }
.rating-item__header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 6px; }
.rating-item__author { font-weight: 600; font-size: .9rem; }
.rating-item__comment { font-size: .9rem; color: var(--brown-md); }
.rating-form { margin-top: 24px; padding: 24px; background: var(--cream); border-radius: var(--radius-md); }
.rating-form h3 { margin-bottom: 16px; }
.star-picker { display: flex; gap: 6px; margin-bottom: 16px; }
.star-picker__star { background: none; border: none; font-size: 2rem; color: var(--cream-dark); transition: color .15s; }
.star-picker__star:hover,
.star-picker__star.star--on { color: var(--terracotta); }
.rating-form__comment { width: 100%; padding: 10px; border: 1.5px solid var(--cream-dark); border-radius: var(--radius-sm); font-family: var(--font-sans); font-size: .9rem; resize: vertical; min-height: 80px; margin-bottom: 12px; }

/* ── Sidebar ─────────────────────────────────────────────────────────────── */
.recipe-detail__sidebar { display: flex; flex-direction: column; gap: 20px; }
.sidebar-card { background: var(--cream); border-radius: var(--radius-md); padding: 20px; }
.sidebar-card h3 { font-size: 1rem; margin-bottom: 14px; padding-bottom: 10px; border-bottom: 1px solid var(--cream-dark); }
.author-card { display: flex; align-items: center; gap: 12px; }
.author-card__avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--terracotta); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1.1rem; flex-shrink: 0; }
.author-card p { font-size: .82rem; color: var(--terracotta); margin-top: 2px; }

/* ── Auth forms ──────────────────────────────────────────────────────────── */
.auth-page { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 40px 20px; }
.auth-card { position: relative; background: #fff; border-radius: var(--radius-lg); padding: 48px; max-width: 440px; width: 100%; box-shadow: var(--shadow-md); }
.auth-card__back {
  display: inline-block; margin-bottom: 20px; font-size: .85rem; font-weight: 500;
  color: var(--brown-lt); transition: color .15s;
}
.auth-card__back:hover { color: var(--terracotta); }
.auth-card__brand { text-align: center; margin-bottom: 32px; }
.auth-card__brand-logo { height: 72px; width: auto; }
.auth-card h2 { font-size: 1.6rem; margin-bottom: 8px; }
.auth-card__subtitle { color: var(--brown-lt); margin-bottom: 32px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: .88rem; font-weight: 500; margin-bottom: 6px; }
.form-control {
  width: 100%; padding: 10px 14px; border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius-sm); font-family: var(--font-sans); font-size: .95rem;
  background: var(--cream); transition: border-color .2s;
}
.form-control:focus { outline: none; border-color: var(--terracotta); background: #fff; }
.form-error { color: #c0392b; font-size: .85rem; margin-top: 4px; }
.auth-card__footer { text-align: center; margin-top: 24px; font-size: .9rem; color: var(--brown-lt); }
.auth-card__footer a { color: var(--terracotta); font-weight: 500; }

/* ── Footer ──────────────────────────────────────────────────────────────── */
.footer { background: var(--brown); color: rgba(255,255,255,.8); padding: 60px 0 0; }
.footer__inner { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 40px; margin-bottom: 40px; }
.footer__brand .footer__logo { height: 52px; width: auto; margin-bottom: 12px; filter: invert(1); }
.footer__brand p { font-size: .88rem; opacity: .6; }
.footer__links { display: contents; }
.footer__links > div h4 { color: #fff; font-size: .85rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 12px; }
.footer__links > div a { display: block; font-size: .85rem; margin-bottom: 8px; opacity: .7; transition: opacity .2s; }
.footer__links > div a:hover { opacity: 1; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 16px 0; }
.footer__bottom p { font-size: .82rem; opacity: .5; text-align: center; }

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .masonry { columns: 3; }
  .masonry--featured { columns: 2; }
  .recipe-meta-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__cuisines { display: none; }
  .masonry { columns: 2; }
  .masonry--featured { columns: 1; }
  .recipe-detail__body { grid-template-columns: 1fr; }
  .recipe-detail__sidebar { display: none; }
  .recipe-detail__hero { height: 280px; }
  .recipe-meta-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 1fr; }

  .navbar__burger { display: flex; }
  .navbar__panel {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 14px; padding: 16px;
    background: #fff; border-bottom: 1px solid var(--cream-dark);
    box-shadow: var(--shadow-md); max-height: 80vh; overflow-y: auto;
  }
  .navbar__panel.navbar__panel--open { display: flex; }
  .navbar__search { max-width: none; }
  .navbar__actions { flex-direction: column; align-items: stretch; margin-left: 0; gap: 10px; }
  .navbar__actions .btn { width: 100%; justify-content: center; }
  .navbar__user { width: 100%; }
  .navbar__avatar { margin: 0 auto; }
  .navbar__dropdown {
    display: block; position: static; margin-top: 10px; box-shadow: none;
    border: none; background: var(--cream); text-align: center;
  }
}

@media (max-width: 480px) {
  .masonry { columns: 1; }
  .category-grid { grid-template-columns: repeat(3, 1fr); }
  .fridge-cta { flex-direction: column; text-align: center; }
  .fridge-cta__emoji { display: none; }
}

/* ── Utilities ───────────────────────────────────────────────────────────── */
.text-muted { color: var(--brown-lt); }
.empty-state { text-align: center; padding: 60px 20px; color: var(--brown-lt); }

/* ── Print ───────────────────────────────────────────────────────────────── */
@media print {
  .navbar, .footer, .recipe-detail__actions, .recipe-detail__sidebar,
  .rating-form, .btn { display: none !important; }
  .recipe-detail__body { grid-template-columns: 1fr; }
}
