:root {
  --db-bg: #fbf7ff;
  --db-surface: #fff;
  --db-purple: #39064a;
  --db-purple-soft: #eee5f5;
  --db-red: #cf2726;
  --db-yellow: #fcc10f;
  --db-green: #2e9e48;
  --db-muted: #6e6075;
  --db-border: #e6dceb;
  --db-display: "Bebas Neue", sans-serif;
  --db-body: "Sora", sans-serif;
  --db-container: min(1180px, calc(100% - 40px));
  --db-shadow: 0 22px 60px rgba(57, 6, 74, .12);
}

.db-acaipower-template {
  margin: 0;
  overflow-x: hidden;
  background: var(--db-bg);
}

.db-menu-open {
  overflow: hidden;
}

.db-landing,
.db-landing *,
.db-landing *::before,
.db-landing *::after {
  box-sizing: border-box;
}

.db-landing {
  overflow-x: hidden;
  color: var(--db-purple);
  background-color: var(--db-bg);
  background-image: radial-gradient(circle at 1px 1px, rgba(57, 6, 74, .07) 1px, transparent 0);
  background-size: 28px 28px;
  font-family: var(--db-body);
  line-height: 1.72;
}

.db-landing img {
  display: block;
  max-width: 100%;
}

.db-landing a {
  color: inherit;
  text-decoration: none;
}

.db-landing button {
  color: inherit;
  font: inherit;
}

.db-landing :focus-visible {
  outline: 3px solid var(--db-yellow);
  outline-offset: 4px;
}

.db-container {
  width: var(--db-container);
  margin-inline: auto;
}

.db-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  color: var(--db-red);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.db-eyebrow::before {
  width: 26px;
  height: 4px;
  border-radius: 99px;
  background: currentColor;
  content: "";
}

.db-section-title {
  max-width: 760px;
  margin: 0;
  font-family: var(--db-display);
  font-size: clamp(2.8rem, 5.4vw, 5rem);
  font-weight: 400;
  letter-spacing: 1px;
  line-height: 1;
}

.db-section-copy {
  max-width: 620px;
  margin: 22px 0 0;
  color: var(--db-muted);
  font-size: clamp(1rem, 1.6vw, 1.14rem);
}

.db-button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 24px;
  border: 2px solid transparent;
  border-radius: 999px;
  background: var(--db-red);
  color: #fff !important;
  font-size: .9rem;
  font-weight: 800;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.db-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(207, 39, 38, .24);
}

.db-button--outline {
  border-color: var(--db-purple);
  background: transparent;
  color: var(--db-purple) !important;
}

.db-button--outline:hover {
  background: var(--db-purple);
  color: #fff !important;
}

.db-button--yellow {
  background: var(--db-yellow);
  color: var(--db-purple) !important;
}

.db-button--light-outline {
  border-color: #fff;
  background: transparent;
}

.db-header {
  position: fixed;
  z-index: 1000;
  inset: 0 0 auto;
  padding-block: 16px;
  transition: padding .18s ease;
}

.admin-bar .db-header {
  top: 32px;
}

.db-header::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  border-bottom: 1px solid transparent;
  background: rgba(251, 247, 255, 0);
  content: "";
  transition: background .18s ease, border-color .18s ease, backdrop-filter .18s ease;
}

.db-header.is-scrolled {
  padding-block: 8px;
}

.db-header.is-scrolled::before {
  border-color: rgba(57, 6, 74, .1);
  background: rgba(251, 247, 255, .9);
  backdrop-filter: blur(18px);
}

.db-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.db-header__logo,
.db-header__menu-button {
  position: relative;
  z-index: 2;
}

.db-header__logo-image {
  width: 72px;
  height: 72px;
  object-fit: contain;
  transition: width .18s ease, height .18s ease;
}

.db-header.is-scrolled .db-header__logo-image {
  width: 56px;
  height: 56px;
}

.db-header__nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.8vw, 38px);
}

.db-header__link {
  position: relative;
  font-size: .86rem;
  font-weight: 800;
}

.db-header__link::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 2px;
  border-radius: 99px;
  background: var(--db-red);
  content: "";
  transform: scaleX(0);
  transition: transform .18s ease;
}

.db-header__link:hover::after {
  transform: scaleX(1);
}

.db-header__menu-button {
  display: none;
  width: 50px;
  height: 50px;
  border: 0;
  border-radius: 50%;
  background: var(--db-purple);
  cursor: pointer;
}

.db-header__menu-line {
  display: block;
  width: 21px;
  height: 2px;
  margin: 5px auto;
  border-radius: 10px;
  background: #fff;
  transition: transform .18s ease, opacity .18s ease;
}

.db-hero {
  min-height: 780px;
  padding: 148px 0 80px;
}

.db-hero__inner {
  display: grid;
  min-height: 570px;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 1fr);
  align-items: center;
  gap: 40px;
}

.db-hero__content {
  position: relative;
  z-index: 4;
}

.db-hero__title {
  max-width: 820px;
  margin: 0;
  font-family: var(--db-display);
  font-size: clamp(4.8rem, 9.4vw, 9rem);
  font-weight: 400;
  letter-spacing: 1px;
  line-height: .92;
}

.db-hero__title-accent {
  display: block;
  color: var(--db-yellow);
  text-shadow: 0 2px 0 rgba(57, 6, 74, .16);
}

.db-hero__copy {
  max-width: 540px;
  margin: 30px 0 32px;
  color: var(--db-muted);
  font-size: clamp(1rem, 1.8vw, 1.18rem);
}

.db-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.db-hero__visual {
  position: relative;
  min-height: 570px;
}

.db-hero__image {
  position: absolute;
  z-index: 2;
  bottom: 18px;
  left: 50%;
  width: min(410px, 76%);
  max-height: 590px;
  object-fit: contain;
  filter: drop-shadow(0 24px 20px rgba(19, 8, 29, .18));
  transform: translateX(-50%) rotate(2deg);
  animation: db-float 5s ease-in-out infinite;
}

.db-hero__topping {
  position: absolute;
  z-index: 3;
  width: 86px;
  height: 86px;
  object-fit: contain;
  filter: drop-shadow(0 13px 14px rgba(57, 6, 74, .14));
}

.db-hero__topping--granola { top: 10%; right: 4%; width: 104px; height: 104px; transform: rotate(12deg); }
.db-hero__topping--blueberry { bottom: 21%; left: 4%; transform: rotate(-10deg); }
.db-hero__topping--strawberry { top: 30%; left: 1%; width: 78px; height: 78px; transform: rotate(9deg); }

@keyframes db-float {
  0%, 100% { transform: translateX(-50%) translateY(0) rotate(2deg); }
  50% { transform: translateX(-50%) translateY(-14px) rotate(0); }
}

.db-decor {
  position: absolute;
  z-index: 1;
  width: clamp(82px, 9vw, 140px);
  pointer-events: none;
  filter: drop-shadow(0 18px 18px rgba(57, 6, 74, .14));
}

.db-decor--sizes-one { top: 13%; left: -42px; transform: rotate(-18deg); }
.db-decor--sizes-two { right: -40px; bottom: 4%; width: clamp(70px, 8vw, 115px); transform: rotate(15deg); }
.db-decor--flavors { top: 6%; right: -42px; transform: rotate(14deg); }
.db-decor--companions { bottom: 3%; left: -44px; transform: rotate(-14deg); }

.db-sizes,
.db-flavors,
.db-companions {
  position: relative;
  padding: 126px 0;
  overflow: hidden;
}

.db-sizes > .db-container,
.db-flavors > .db-container,
.db-companions > .db-container {
  position: relative;
  z-index: 2;
}

.db-sizes__head {
  display: grid;
  justify-items: center;
  margin-bottom: 52px;
  text-align: center;
}

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

.db-size-card {
  display: flex;
  min-height: 650px;
  flex-direction: column;
  padding: 28px;
  overflow: hidden;
  border: 1px solid rgba(57, 6, 74, .08);
  border-radius: 34px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 22px 52px rgba(57, 6, 74, .08);
  transition: transform .22s ease, box-shadow .22s ease;
}

.db-size-card--m { background: #fff7dc; }
.db-size-card--g { background: var(--db-purple-soft); }
.db-size-card:hover { transform: translateY(-8px); box-shadow: var(--db-shadow); }

.db-size-card__top,
.db-size-card__buy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.db-size-card__letter {
  display: grid;
  width: 58px;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 50%;
  background: var(--db-red);
  color: #fff;
  font-family: var(--db-display);
  font-size: 2.1rem;
}

.db-size-card__volume,
.db-size-card__from {
  color: var(--db-purple);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.db-size-card__visual {
  display: grid;
  height: 340px;
  place-items: end center;
}

.db-size-card__image {
  width: 80%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 24px 18px rgba(57, 6, 74, .18));
}

.db-size-card--m .db-size-card__image { width: 88%; }
.db-size-card--g .db-size-card__image { width: 98%; }

.db-size-card__title {
  margin: 18px 0 5px;
  font-family: var(--db-display);
  font-size: 2.8rem;
  font-weight: 400;
  letter-spacing: 1px;
  line-height: 1;
}

.db-size-card__detail {
  margin: 0;
  color: var(--db-muted);
  font-size: .9rem;
}

.db-size-card__buy {
  align-items: end;
  margin-top: auto;
  padding-top: 24px;
}

.db-size-card__from { display: block; }

.db-size-card__price {
  color: var(--db-red);
  font-family: var(--db-display);
  font-size: 2.55rem;
  font-weight: 400;
  line-height: 1;
}

.db-size-card__button {
  display: grid;
  width: 50px;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 50%;
  background: var(--db-purple);
  color: #fff !important;
  font-size: 1.25rem;
}

.db-marquee {
  position: relative;
  z-index: 4;
  padding-block: 13px;
  overflow: hidden;
  border-block: 1px solid rgba(57, 6, 74, .15);
  background: var(--db-yellow);
  color: var(--db-purple);
}

.db-marquee--fruits { background: var(--db-red); color: #fff; }
.db-marquee--extras { background: var(--db-yellow); color: var(--db-purple); }

.db-marquee__track {
  display: flex;
  width: max-content;
  animation: db-marquee 32s linear infinite;
}

.db-marquee--fruits .db-marquee__track { animation-direction: reverse; animation-duration: 36s; }
.db-marquee:hover .db-marquee__track { animation-play-state: paused; }

.db-marquee__group {
  display: flex;
  flex-shrink: 0;
  align-items: center;
}

.db-marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(.88rem, 1.4vw, 1.04rem);
  font-weight: 800;
  white-space: nowrap;
}

.db-marquee__item::after { margin-inline: 22px; content: "✦"; }

.db-marquee__image {
  width: 46px;
  height: 46px;
  object-fit: contain;
  filter: drop-shadow(0 7px 7px rgba(57, 6, 74, .15));
}

@keyframes db-marquee { to { transform: translateX(-50%); } }

.db-flavors__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 52px;
}

.db-flavors__intro {
  max-width: 400px;
  margin: 0 0 4px;
  color: var(--db-muted);
}

.db-flavors__list { display: grid; gap: 24px; }

.db-flavor-card {
  display: grid;
  min-height: 520px;
  grid-template-columns: minmax(320px, .92fr) minmax(0, 1.08fr);
  overflow: hidden;
  border: 1px solid rgba(57, 6, 74, .08);
  border-radius: 40px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 22px 58px rgba(57, 6, 74, .09);
}

.db-flavor-card:nth-child(even) { grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr); }
.db-flavor-card:nth-child(even) .db-flavor-card__visual { order: 2; }

.db-flavor-card__visual {
  position: relative;
  display: grid;
  min-height: 520px;
  place-items: center;
  overflow: hidden;
  background-color: #e9def1;
  background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, .55) 1px, transparent 0);
  background-size: 24px 24px;
}

.db-flavor-card--rio .db-flavor-card__visual { background-color: #ffe7a0; }
.db-flavor-card--power .db-flavor-card__visual { background-color: #dceede; }

.db-flavor-card__visual::before {
  position: absolute;
  width: 74%;
  aspect-ratio: 1;
  border-radius: 48% 52% 42% 58%;
  background: var(--db-red);
  content: "";
  opacity: .92;
  transform: rotate(12deg);
}

.db-flavor-card--rio .db-flavor-card__visual::before { background: var(--db-purple); }
.db-flavor-card--power .db-flavor-card__visual::before { background: var(--db-yellow); }

.db-flavor-card__image {
  position: relative;
  z-index: 2;
  width: min(84%, 410px);
  height: 91%;
  object-fit: contain;
  filter: drop-shadow(0 30px 20px rgba(57, 6, 74, .28));
}

.db-flavor-card__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 5vw, 64px);
}

.db-flavor-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.db-flavor-card__tag {
  color: var(--db-red);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.db-flavor-card__price {
  padding: 7px 13px;
  border-radius: 999px;
  background: var(--db-red);
  color: #fff;
  font-family: var(--db-display);
  font-size: 1.45rem;
  letter-spacing: 1px;
  line-height: 1;
}

.db-flavor-card__title {
  margin: 0;
  font-family: var(--db-display);
  font-size: clamp(3.6rem, 6.5vw, 6.2rem);
  font-weight: 400;
  letter-spacing: 1px;
  line-height: .98;
}

.db-flavor-card__copy {
  max-width: 550px;
  margin: 22px 0 30px;
  color: var(--db-muted);
}

.db-flavor-card__ingredients {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.db-ingredient__icon {
  display: grid;
  width: 68px;
  aspect-ratio: 1;
  place-items: center;
  margin-bottom: 10px;
  border-radius: 20px;
  background: var(--db-purple-soft);
}

.db-ingredient:nth-child(2) .db-ingredient__icon { background: #fff1c8; }
.db-ingredient:nth-child(3) .db-ingredient__icon { background: #deefe2; }

.db-ingredient__image { width: 54px; height: 54px; object-fit: contain; }
.db-ingredient__name { display: block; font-size: .72rem; font-weight: 700; line-height: 1.35; }

.db-companions__head { margin-bottom: 48px; }

.db-companions__grid {
  display: grid;
  min-height: 620px;
  grid-template-columns: 1.2fr .8fr;
  grid-template-rows: repeat(2, 1fr);
  gap: 20px;
}

.db-companion-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 34px;
  overflow: hidden;
  border-radius: 30px;
  background: #dceee0;
}

.db-companion-card--large { grid-row: 1 / 3; background: var(--db-yellow); }
.db-companion-card--red { background: var(--db-red); color: #fff; }

.db-companion-card__image {
  position: absolute;
  right: -2%;
  bottom: 5%;
  width: 70%;
  height: 76%;
  object-fit: contain;
  filter: drop-shadow(0 24px 20px rgba(57, 6, 74, .18));
}

.db-companion-card--large .db-companion-card__image { right: -7%; bottom: 12%; width: 90%; height: 70%; }

.db-companion-card__content { position: relative; z-index: 2; max-width: 310px; }

.db-companion-card:not(.db-companion-card--large) .db-companion-card__content { max-width: 46%; }

.db-companion-card__tag {
  display: inline-flex;
  margin-bottom: 8px;
  padding: 5px 12px;
  border-radius: 999px;
  background: #fff;
  color: var(--db-purple);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.db-companion-card__title {
  margin: 0;
  font-family: var(--db-display);
  font-size: clamp(2rem, 4vw, 3.7rem);
  font-weight: 400;
  letter-spacing: 1px;
  line-height: 1;
}

.db-companion-card__copy { max-width: 250px; margin: 12px 0 0; font-size: .9rem; }

.db-delivery {
  position: relative;
  padding: 138px 0;
  overflow: hidden;
  background-color: var(--db-purple-soft);
  background-image: radial-gradient(circle at 1px 1px, rgba(57, 6, 74, .08) 1px, transparent 0);
  background-size: 30px 30px;
}

.db-delivery__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: clamp(60px, 9vw, 130px);
}

.db-delivery__title,
.db-cta__title {
  margin: 0;
  font-family: var(--db-display);
  font-size: clamp(3.8rem, 7vw, 6.7rem);
  font-weight: 400;
  letter-spacing: 1px;
  line-height: .98;
}

.db-delivery__copy { max-width: 520px; margin: 24px 0 0; color: var(--db-muted); }

.db-delivery__platforms {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-block: 1px solid rgba(57, 6, 74, .18);
}

.db-delivery__platform {
  display: grid;
  min-height: 160px;
  place-items: center;
  padding: 26px 20px;
}

.db-delivery__platform + .db-delivery__platform { border-left: 1px solid rgba(57, 6, 74, .18); }
.db-delivery__logo { width: min(145px, 100%); max-height: 74px; object-fit: contain; }

.db-delivery__fruit {
  position: absolute;
  z-index: 1;
  width: clamp(90px, 12vw, 170px);
  filter: drop-shadow(0 20px 18px rgba(57, 6, 74, .15));
}

.db-delivery__fruit--one { right: 4%; bottom: -24px; transform: rotate(14deg); }
.db-delivery__fruit--two { top: 18px; left: 46%; width: clamp(72px, 8vw, 120px); transform: rotate(-12deg); }

.db-cta {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  background: var(--db-red);
  color: #fff;
}

.db-cta__inner { display: grid; justify-items: center; text-align: center; }
.db-cta__logo { width: 112px; height: 112px; margin-bottom: 22px; object-fit: contain; }
.db-cta__title { max-width: 900px; font-size: clamp(3.4rem, 7.7vw, 7rem); }
.db-cta__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 40px; }

.db-footer { padding: 78px 0 28px; background: #2d173e; color: #fff; }
.db-footer__grid { display: grid; grid-template-columns: 1.3fr repeat(3, 1fr); gap: 54px; }
.db-footer__logo { width: 130px; height: 130px; object-fit: contain; }
.db-footer__brand-copy { max-width: 280px; margin: 18px 0 0; color: rgba(255, 255, 255, .64); font-size: .88rem; }
.db-footer__title { margin: 13px 0 20px; color: var(--db-yellow); font-family: var(--db-display); font-size: 1.3rem; font-weight: 400; letter-spacing: 1px; }
.db-footer__list { display: grid; gap: 11px; margin: 0; padding: 0; list-style: none; }
.db-footer__link, .db-footer__text { color: rgba(255, 255, 255, .74) !important; font-size: .86rem; }
.db-footer__link:hover { color: #fff !important; }
.db-footer__bottom { display: flex; justify-content: space-between; gap: 24px; margin-top: 64px; padding-top: 24px; border-top: 1px solid rgba(255, 255, 255, .12); color: rgba(255, 255, 255, .46); font-size: .76rem; }

.db-whatsapp-float {
  position: fixed;
  z-index: 1100;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
  display: inline-flex;
  width: 62px;
  height: 62px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  background: #25d366;
  color: #fff !important;
  box-shadow: 0 10px 26px rgba(37, 211, 102, .34);
  line-height: 1;
  transition: transform .18s ease, box-shadow .18s ease;
}

.db-whatsapp-float:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(37, 211, 102, .42);
}

.db-whatsapp-float__icon {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.db-whatsapp-float__label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.db-reveal { opacity: 0; transform: translateY(28px); transition: opacity .65s ease, transform .65s ease; }
.db-reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1024px) {
  .db-header__nav {
    position: fixed;
    inset: 0;
    display: flex;
    visibility: hidden;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    background: #2d173e;
    color: #fff;
    opacity: 0;
    transition: opacity .18s ease, visibility .18s ease;
  }

  .db-header__nav.is-open { visibility: visible; opacity: 1; }
  .db-header__link { font-family: var(--db-display); font-size: 2rem; letter-spacing: 1px; }
  .db-header__menu-button { display: block; }
  .db-header__menu-button[aria-expanded="true"] .db-header__menu-line:first-child { transform: translateY(7px) rotate(45deg); }
  .db-header__menu-button[aria-expanded="true"] .db-header__menu-line:nth-child(2) { opacity: 0; }
  .db-header__menu-button[aria-expanded="true"] .db-header__menu-line:last-child { transform: translateY(-7px) rotate(-45deg); }

  .db-hero { padding-top: 136px; }
  .db-hero__inner { grid-template-columns: 1fr; }
  .db-hero__content { max-width: 760px; }
  .db-hero__visual { min-height: 510px; }
  .db-hero__image { bottom: 16px; width: min(390px, 66vw); }
  .db-hero__topping--granola { right: 12%; }
  .db-hero__topping--blueberry, .db-hero__topping--strawberry { left: 12%; }

  .db-sizes__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .db-size-card:last-child { grid-column: 1 / -1; }
  .db-size-card:last-child .db-size-card__image { width: 58%; }

  .db-flavor-card, .db-flavor-card:nth-child(even) { grid-template-columns: .86fr 1.14fr; }
  .db-flavor-card__ingredients { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .db-companions__grid { min-height: auto; grid-template-columns: 1fr 1fr; grid-template-rows: 500px 360px; }
  .db-companion-card--large { grid-column: 1 / -1; grid-row: auto; }
  .db-companion-card--large .db-companion-card__image { right: 1%; width: 62%; height: 80%; }

  .db-delivery__grid { grid-template-columns: 1fr; }
  .db-footer__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 680px) {
  :root { --db-container: min(100% - 28px, 1180px); }
  .admin-bar .db-header { top: 46px; }
  .db-button { min-height: 50px; padding-inline: 20px; }
  .db-header__logo-image, .db-header.is-scrolled .db-header__logo-image { width: 58px; height: 58px; }

  .db-hero { min-height: 0; padding: 116px 0 54px; }
  .db-hero__inner { min-height: 0; gap: 10px; }
  .db-hero__title { font-size: clamp(4.2rem, 23vw, 6.5rem); }
  .db-hero__visual { min-height: 430px; }
  .db-hero__image { bottom: 12px; width: min(330px, 78vw); max-height: 455px; }
  .db-hero__topping { width: 60px; height: 60px; }
  .db-hero__topping--granola { top: 7%; right: 1%; width: 72px; height: 72px; }
  .db-hero__topping--blueberry { bottom: 22%; left: 0; }
  .db-hero__topping--strawberry { top: 33%; left: 0; }

  .db-sizes, .db-flavors, .db-companions { padding: 88px 0; }
  .db-sizes__grid { grid-template-columns: 1fr; }
  .db-size-card, .db-size-card:last-child { min-height: 600px; grid-column: auto; }
  .db-size-card:last-child .db-size-card__image { width: 98%; }

  .db-marquee { padding-block: 10px; }
  .db-marquee__image { width: 40px; height: 40px; }
  .db-marquee__item::after { margin-inline: 15px; }

  .db-flavors__head { display: block; }
  .db-flavors__intro { margin-top: 20px; }
  .db-flavor-card, .db-flavor-card:nth-child(even) { min-height: 0; grid-template-columns: 1fr; }
  .db-flavor-card:nth-child(even) .db-flavor-card__visual { order: 0; }
  .db-flavor-card__visual { min-height: 420px; }
  .db-flavor-card__content { padding: 34px 24px 40px; }
  .db-flavor-card__title { font-size: clamp(3.8rem, 18vw, 5.4rem); }

  .db-companions__grid { grid-template-columns: 1fr; grid-template-rows: 500px 360px 360px; }
  .db-companion-card--large { grid-column: auto; }
  .db-companion-card--large .db-companion-card__image { right: -14%; bottom: 17%; width: 108%; height: 66%; }
  .db-companion-card:not(.db-companion-card--large) .db-companion-card__content { max-width: 56%; }

  .db-delivery { padding: 92px 0; }
  .db-delivery__grid { gap: 52px; }
  .db-delivery__platform { min-height: 112px; padding: 20px 12px; }
  .db-delivery__logo { max-height: 48px; }

  .db-cta { padding: 88px 0; }
  .db-cta__logo { width: 88px; height: 88px; }
  .db-footer__grid { grid-template-columns: 1fr; gap: 34px; }
  .db-footer__bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  .db-landing *, .db-landing *::before, .db-landing *::after { animation-duration: .01ms; animation-iteration-count: 1; transition-duration: .01ms; }
  .db-marquee__track { width: auto; flex-wrap: wrap; animation: none; }
  .db-marquee__group { flex-wrap: wrap; padding-inline: 14px; }
  .db-marquee__group:last-child { display: none; }
  .db-reveal { opacity: 1; transform: none; }
}
