/* Toni Naturale 2.2 — camada visual pública, leve e sem dependências externas. */
:root {
  --green-950: #0b2f22;
  --green-900: #123d2b;
  --green-800: #1e5638;
  --green-700: #2e7d4b;
  --green-600: #42945c;
  --brown: #543729;
  --orange: #f28b22;
  --orange-dark: #d86f0b;
  --cream: #f3f5ef;
  --cream-deep: #e7ebdf;
  --paper: #fbfcf9;
  --white: #fff;
  --ink: #17211b;
  --ink-soft: #5d6961;
  --line: #dce3dc;
  --shadow-soft: 0 14px 40px rgba(8, 40, 27, 0.07);
  --shadow: 0 28px 80px rgba(8, 40, 27, 0.14);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 30px;
  --radius-xl: 44px;
}

body {
  overflow-x: hidden;
  background: var(--cream);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

h1,
h2,
h3 {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: -0.045em;
}

h2 {
  font-size: clamp(2.25rem, 5vw, 4.5rem);
}

p {
  line-height: 1.68;
}

.site-container,
.container {
  width: min(1220px, calc(100% - 48px));
}

.eyebrow {
  margin-bottom: 13px;
  color: var(--green-700);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.19em;
}

.button {
  min-height: 50px;
  gap: 8px;
  border-radius: 14px;
  padding: 13px 22px;
  font-size: 0.88rem;
  font-weight: 780;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.button--large {
  min-height: 58px;
  padding: 16px 26px;
}

.button--primary {
  background: var(--green-700);
  box-shadow: 0 13px 28px rgba(35, 111, 66, 0.2);
}

.button--orange {
  box-shadow: 0 13px 28px rgba(242, 139, 34, 0.22);
}

.button--glass {
  border-color: rgba(255, 255, 255, 0.3);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
}

.button--outline {
  border-color: rgba(30, 86, 56, 0.32);
  border-radius: 14px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* Cabeçalho */
.site-header {
  background: rgba(18, 61, 43, 0.98);
}

.site-header--overlay {
  background: transparent;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 34px rgba(11, 47, 34, 0.1);
}

.site-header__inner {
  min-height: 82px;
}

.brand {
  width: 66px;
  flex: 0 0 66px;
}

.brand img {
  width: 66px;
  height: 66px;
  max-height: none;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(6, 34, 22, 0.14);
  object-fit: cover;
  padding: 0;
}

.desktop-nav {
  gap: clamp(16px, 2.3vw, 30px);
}

.desktop-nav a {
  font-size: 0.83rem;
  font-weight: 720;
}

.desktop-nav a::after {
  bottom: -11px;
  height: 3px;
  border-radius: 99px;
}

.button--header {
  min-height: 43px;
  border-radius: 12px;
  background: var(--orange);
  padding: 11px 18px;
}

.button--header:hover {
  background: var(--orange-dark);
}

.menu-toggle {
  border-radius: 14px;
}

.mobile-menu {
  border: 1px solid var(--line);
  border-radius: 20px;
}

/* Abertura */
.home-hero {
  position: relative;
  display: block;
  min-height: auto;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 18%, rgba(104, 174, 109, 0.24), transparent 29%),
    linear-gradient(135deg, #092f21 0%, #123d2b 52%, #1e5638 100%);
  padding: 132px 0 112px;
  text-align: left;
}

.home-hero::before {
  position: absolute;
  top: -220px;
  right: -160px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
  content: "";
}

.home-hero::after {
  position: absolute;
  bottom: 38px;
  left: -110px;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  content: "";
}

.home-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  gap: clamp(44px, 7vw, 94px);
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
}

.home-hero__content {
  max-width: 650px;
}

.hero-kicker {
  margin-bottom: 24px;
  border-color: rgba(255, 255, 255, 0.17);
  background: rgba(255, 255, 255, 0.07);
  padding: 9px 15px;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
}

.home-hero h1 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(3.45rem, 6.2vw, 6.1rem);
  line-height: 0.96;
}

.home-hero h1 span {
  display: block;
  color: #a6d15b;
}

.home-hero__lead {
  max-width: 600px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.77);
  font-size: clamp(1rem, 1.7vw, 1.22rem);
}

.home-hero__actions {
  justify-content: flex-start;
  margin-top: 34px;
}

.home-hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 34px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.73rem;
  font-weight: 700;
}

.home-hero__trust span {
  position: relative;
  padding-left: 15px;
}

.home-hero__trust span::before {
  position: absolute;
  top: 0.47em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  content: "";
}

.home-hero__visual {
  position: relative;
  margin: 0;
}

.home-hero__image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.12 / 1;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 42px;
  background: #102e22;
  box-shadow: 0 40px 100px rgba(0, 19, 11, 0.38);
  transform: rotate(1.25deg);
}

.home-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 64% center;
  transition: transform 900ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.home-hero__visual:hover img {
  transform: scale(1.035);
}

.home-hero__visual figcaption {
  position: absolute;
  right: -20px;
  bottom: -28px;
  display: grid;
  width: min(310px, 68%);
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
  color: var(--ink);
  padding: 20px 22px;
  backdrop-filter: blur(15px);
}

.home-hero__visual figcaption strong {
  color: var(--green-900);
  font-size: 0.96rem;
}

.home-hero__visual figcaption span {
  margin-top: 4px;
  color: var(--ink-soft);
  font-size: 0.76rem;
}

/* Cabeçalhos de seção */
.section-heading {
  display: grid;
  align-items: end;
  gap: 44px;
  margin-bottom: 48px;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
}

.section-heading h2 {
  max-width: 820px;
  margin: 0;
  color: var(--green-950);
  line-height: 1.02;
}

.section-heading > p {
  max-width: 470px;
  margin: 0;
  color: var(--ink-soft);
}

.section-heading > .button {
  justify-self: end;
}

.section-heading--light h2 {
  color: var(--white);
}

.section-heading--light > p {
  color: rgba(255, 255, 255, 0.66);
}

/* Atalhos — primeira dobra sobreposta */
.feature-section {
  position: relative;
  z-index: 3;
  margin-top: -46px;
  border-radius: 48px 48px 0 0;
  background: var(--paper);
  padding: 108px 0 126px;
}

.feature-grid {
  gap: 18px;
}

.feature-card {
  position: relative;
  display: flex;
  min-height: 370px;
  overflow: hidden;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #f2f5ef;
  box-shadow: none;
  padding: 30px;
}

.feature-card:hover {
  border-color: #cbd8ce;
  box-shadow: 0 22px 54px rgba(14, 62, 39, 0.1);
  transform: translateY(-7px);
}

.feature-card--green {
  border-color: transparent;
  background: var(--green-900);
  color: var(--white);
}

.feature-card--orange {
  border-color: transparent;
  background: var(--orange);
  color: #2d1b0f;
}

.feature-card__number {
  position: absolute;
  top: 28px;
  right: 30px;
  color: rgba(18, 61, 43, 0.38);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.16em;
}

.feature-card--green .feature-card__number {
  color: rgba(255, 255, 255, 0.38);
}

.feature-card--orange .feature-card__number {
  color: rgba(45, 27, 15, 0.42);
}

.feature-card__icon {
  display: grid;
  width: 62px;
  height: 62px;
  margin-bottom: auto;
  place-items: center;
  border-radius: 18px;
  background: var(--white);
  color: var(--green-800);
  font-size: 0;
}

.feature-card__icon svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.feature-card h3 {
  margin: 34px 0 12px;
  color: var(--green-950);
  font-size: clamp(1.65rem, 2.8vw, 2.2rem);
}

.feature-card--green h3,
.feature-card--green p,
.feature-card--green .feature-card__link {
  color: var(--white);
}

.feature-card--orange h3,
.feature-card--orange p,
.feature-card--orange .feature-card__link {
  color: #2d1b0f;
}

.feature-card p {
  min-height: 0;
  margin-bottom: 24px;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.feature-card__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(18, 61, 43, 0.13);
  color: var(--green-800);
  padding-top: 18px;
  font-size: 0.82rem;
  font-weight: 820;
}

.feature-card--green .feature-card__link {
  border-color: rgba(255, 255, 255, 0.18);
}

.feature-card--orange .feature-card__link {
  border-color: rgba(45, 27, 15, 0.16);
}

.feature-card__link b {
  font-size: 1.15rem;
}

/* Sabores — segunda dobra */
.taste-section {
  position: relative;
  z-index: 4;
  margin-top: -46px;
  border-radius: 48px 48px 0 0;
  background: #0d2d21;
  color: var(--white);
  padding: 112px 0 114px;
}

.taste-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: 1.08fr 0.92fr;
}

.taste-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.06);
}

.taste-card > img {
  width: 100%;
  height: 390px;
  object-fit: cover;
}

.taste-card > div:last-child {
  padding: 32px;
}

.taste-card h3 {
  margin-bottom: 14px;
  font-size: clamp(1.8rem, 3.2vw, 2.85rem);
  line-height: 1.04;
}

.taste-card p:not(.eyebrow) {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.66);
}

.taste-card--frozen {
  background: #edf3e9;
  color: var(--ink);
}

.taste-card--frozen p:not(.eyebrow) {
  color: var(--ink-soft);
}

.taste-card__mosaic {
  display: grid;
  height: 390px;
  gap: 4px;
  grid-template-columns: 1.18fr 0.82fr;
  grid-template-rows: repeat(2, 1fr);
}

.taste-card__mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.taste-card__mosaic img:first-child {
  grid-row: 1 / -1;
}

.taste-card--frozen .text-link {
  margin-top: 22px;
}

.heritage-strip {
  display: grid;
  align-items: center;
  gap: 28px;
  margin-top: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 30px;
  background: linear-gradient(100deg, #1c5639, #16432f);
  padding: 30px 34px;
  grid-template-columns: auto minmax(260px, 1fr) minmax(280px, 0.8fr);
}

.heritage-strip__year {
  color: #a6d15b;
  font-size: clamp(2.6rem, 5vw, 5rem);
  font-weight: 900;
  letter-spacing: -0.07em;
}

.heritage-strip h3,
.heritage-strip p,
.heritage-strip .eyebrow {
  margin: 0;
}

.heritage-strip h3 {
  font-size: clamp(1.35rem, 2.5vw, 2.1rem);
}

.heritage-strip > p {
  color: rgba(255, 255, 255, 0.67);
  font-size: 0.88rem;
}

/* Congelados em destaque — terceira dobra */
.frozen-preview-section {
  position: relative;
  z-index: 5;
  margin-top: -44px;
  border-radius: 48px 48px 0 0;
  background: var(--paper);
  padding: 112px 0 108px;
}

.frozen-preview-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.frozen-preview-card {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 0.86 / 1;
  border-radius: 28px;
  background: var(--green-950);
  box-shadow: var(--shadow-soft);
}

.frozen-preview-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 43%, rgba(4, 26, 16, 0.88) 100%);
  content: "";
}

.frozen-preview-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.frozen-preview-card:hover img {
  transform: scale(1.045);
}

.frozen-preview-card > span {
  position: absolute;
  z-index: 1;
  right: 26px;
  bottom: 25px;
  left: 26px;
  display: grid;
  color: var(--white);
  gap: 5px;
}

.frozen-preview-card strong {
  font-size: 1.16rem;
}

.frozen-preview-card small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.75rem;
}

.frozen-preview-actions {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

/* Chamada de conta */
.account-cta-section {
  position: relative;
  z-index: 6;
  margin-top: -30px;
  background: var(--cream);
  padding: 86px 0 98px;
}

.account-cta {
  display: grid;
  align-items: center;
  gap: 54px;
  border-radius: 36px;
  background:
    radial-gradient(circle at 88% 12%, rgba(166, 209, 91, 0.18), transparent 26%),
    var(--green-950);
  padding: clamp(42px, 6vw, 72px);
  text-align: left;
  grid-template-columns: 1fr auto;
}

.account-cta h2 {
  max-width: 830px;
  margin: 0;
  font-size: clamp(2.25rem, 4.6vw, 4.15rem);
}

.account-cta__content > p:not(.eyebrow) {
  max-width: 670px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.account-cta__actions {
  display: grid;
  min-width: 245px;
  gap: 12px;
}

/* Páginas internas */
.page-main {
  background: var(--cream);
}

.page-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 20%, rgba(166, 209, 91, 0.16), transparent 30%),
    linear-gradient(135deg, var(--green-950), var(--green-800));
  padding: 150px 0 112px;
}

.page-hero::after {
  position: absolute;
  right: -90px;
  bottom: -180px;
  width: 390px;
  height: 390px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  content: "";
}

.page-hero h1 {
  max-width: 900px;
  font-size: clamp(3rem, 6vw, 5.4rem);
  line-height: 0.98;
}

.page-hero__aside {
  border-color: rgba(255, 255, 255, 0.13);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
}

.account-choice-shell,
.product-shell,
.pix-shell,
.form-shell {
  margin-top: -52px;
}

.account-choice-card {
  min-height: 360px;
  border-color: var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
}

.account-choice-card h2 {
  color: var(--green-950);
}

.account-choice-card__icon {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  color: var(--green-800);
  font-size: 0;
}

.account-choice-card__icon svg {
  width: 29px;
  height: 29px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.account-choice-card__icon--orange {
  color: var(--orange-dark);
}

/* Formulários: mantém a estrutura aprovada, com acabamento mais limpo. */
.account-form {
  gap: 18px;
}

.form-section {
  border-color: var(--line);
  border-radius: 26px;
  box-shadow: 0 12px 34px rgba(11, 47, 34, 0.06);
}

.form-section__heading > span {
  width: 44px;
  height: 44px;
  flex-basis: 44px;
  background: var(--green-900);
}

.form-section__heading h2,
.form-section__title {
  color: var(--green-950);
}

.field > span:first-child,
.admin-filters label > span {
  color: #34463b;
  font-size: 0.8rem;
}

.input,
.field > input,
.field > select,
.field > textarea,
.filters input,
.filters select {
  min-height: 54px;
  border-color: #cdd7cf;
  border-radius: 13px;
  background: #fff;
  padding: 13px 15px;
}

.input:focus,
.field input:focus,
.field select:focus,
.field textarea:focus,
.filters input:focus,
.filters select:focus {
  border-color: var(--green-700);
  box-shadow: 0 0 0 4px rgba(46, 125, 75, 0.12);
}

.student-card {
  border-color: var(--line);
  background: #f7f9f5;
}

.choice-option {
  border-radius: 18px;
  background: #fff;
}

.choice-option:has(input:checked) {
  border-color: var(--green-700);
  background: #f1f7ef;
  box-shadow: inset 0 0 0 1px var(--green-700);
}

.form-consent {
  border-color: var(--line);
  background: #f9fbf7;
}

/* Catálogo completo */
.product-grid {
  gap: 20px;
}

.product-card {
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: var(--shadow-soft);
}

.product-card__image {
  height: 270px;
}

.product-card__image > span {
  top: 16px;
  left: 16px;
  border-radius: 10px;
  padding: 8px 11px;
  font-size: 0.62rem;
}

.product-card__content {
  padding: 25px;
}

.product-card__content h2 {
  color: var(--green-950);
  font-size: 1.55rem;
}

.button--whatsapp {
  border-radius: 12px;
}

.pix-card {
  border-radius: 26px;
  background: var(--green-950);
}

/* Rodapé */
.site-footer {
  background: #081d15;
  padding-top: 72px;
}

.brand--footer {
  width: 76px;
}

.brand--footer img {
  width: 76px;
  height: 76px;
}

.site-footer__grid {
  grid-template-columns: 1.5fr 0.7fr 0.7fr;
}

.site-footer__grid p {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.57);
}

.site-footer__bottom {
  color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 1040px) {
  .home-hero {
    padding-bottom: 104px;
  }

  .home-hero__grid {
    gap: 58px;
    grid-template-columns: 1fr 0.92fr;
  }

  .home-hero h1 {
    font-size: clamp(3.3rem, 7.7vw, 5.2rem);
  }

  .home-hero__visual figcaption {
    right: -8px;
  }

  .feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .feature-card:last-child {
    grid-column: auto;
  }

  .feature-card {
    min-height: 340px;
    padding: 24px;
  }

  .taste-grid {
    grid-template-columns: 1fr;
  }

  .heritage-strip {
    grid-template-columns: auto 1fr;
  }

  .heritage-strip > p {
    grid-column: 2;
  }

  .account-cta {
    align-items: stretch;
    grid-template-columns: 1fr;
  }

  .account-cta__actions {
    width: min(480px, 100%);
  }
}

@media (max-width: 820px) {
  .home-hero__grid {
    grid-template-columns: 1fr;
  }

  .home-hero__content {
    max-width: 720px;
  }

  .home-hero__visual {
    width: min(690px, 100%);
    margin-top: 8px;
  }

  .section-heading {
    gap: 22px;
    grid-template-columns: 1fr;
  }

  .section-heading > .button {
    justify-self: start;
  }

  .feature-grid,
  .frozen-preview-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: 320px;
  }

  .frozen-preview-card {
    aspect-ratio: 1.45 / 1;
  }
}

@media (max-width: 720px) {
  .site-container,
  .container {
    width: min(100% - 28px, 1220px);
  }

  .site-header__inner {
    min-height: 72px;
  }

  .brand,
  .brand img {
    width: 56px;
    height: 56px;
  }

  .brand {
    flex-basis: 56px;
  }

  .home-hero {
    min-height: auto;
    padding: 108px 0 104px;
  }

  .home-hero h1 {
    font-size: clamp(2.8rem, 13.7vw, 4.2rem);
  }

  .home-hero__lead {
    font-size: 1rem;
  }

  .home-hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .home-hero__trust {
    display: grid;
  }

  .home-hero__image {
    aspect-ratio: 1 / 0.9;
    border-radius: 28px;
    transform: none;
  }

  .home-hero__visual figcaption {
    right: 14px;
    bottom: -36px;
    width: calc(100% - 28px);
  }

  .feature-section,
  .taste-section,
  .frozen-preview-section {
    margin-top: -34px;
    border-radius: 34px 34px 0 0;
    padding: 86px 0 94px;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .section-heading h2 {
    font-size: clamp(2.25rem, 11vw, 3.25rem);
  }

  .feature-card {
    min-height: 300px;
    border-radius: 24px;
  }

  .taste-card {
    border-radius: 24px;
  }

  .taste-card > img,
  .taste-card__mosaic {
    height: 290px;
  }

  .taste-card > div:last-child {
    padding: 26px 22px;
  }

  .taste-card h3 {
    font-size: 2rem;
  }

  .heritage-strip {
    gap: 18px;
    border-radius: 24px;
    padding: 24px;
    grid-template-columns: 1fr;
  }

  .heritage-strip > p {
    grid-column: auto;
  }

  .frozen-preview-card {
    aspect-ratio: 1.08 / 1;
    border-radius: 24px;
  }

  .account-cta-section {
    padding: 64px 0 78px;
  }

  .account-cta {
    gap: 30px;
    border-radius: 28px;
    padding: 34px 22px;
  }

  .account-cta h2 {
    font-size: clamp(2.15rem, 10vw, 3.1rem);
  }

  .page-hero {
    padding: 118px 0 90px;
  }

  .page-hero h1 {
    font-size: clamp(2.55rem, 12vw, 3.75rem);
  }

  .account-choice-shell,
  .product-shell,
  .pix-shell,
  .form-shell {
    margin-top: -38px;
  }

  .product-card__image {
    height: 250px;
  }

  .form-section {
    border-radius: 22px;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 420px) {
  .home-hero__image {
    aspect-ratio: 0.94 / 1;
  }

  .home-hero__visual figcaption {
    position: relative;
    right: auto;
    bottom: auto;
    width: calc(100% - 20px);
    margin: -20px auto 0;
  }

  .taste-card__mosaic {
    height: 250px;
  }
}
