:root {
  --red: #cc1517;
  --red-dark: #a9080d;
  --yellow: #ffcc03;
  --cream: #fff7e6;
  --black: #080808;
  --white: #ffffff;
  --muted: #6d6a63;
  --line: rgba(8, 8, 8, 0.12);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "DM Sans", sans-serif;
  background: var(--cream);
  color: var(--black);
  overflow-x: hidden;
}
a {
  text-decoration: none;
  color: inherit;
}
button {
  font: inherit;
}
.container {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.topbar {
  background: var(--black);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}
.topbar-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.topbar i {
  color: var(--yellow);
  margin-right: 7px;
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 247, 230, 0.95);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.nav {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.brand {
  display: flex;
  align-items: center;
  width: 142px;
  height: 68px;
}
.brand img {
  width: 180%;
  height: 180%;
  object-fit: contain;
}
.desktop-menu {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
}
.desktop-menu a {
  font-size: 0.88rem;
  font-weight: 700;
  position: relative;
}
.desktop-menu a:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 3px;
  background: var(--red);
  transition: 0.25s;
}
.desktop-menu a:hover:after {
  width: 100%;
}
.nav-order,
.mobile-order {
  background: var(--red);
  color: #fff;
  padding: 13px 19px;
  font-weight: 800;
  font-size: 0.84rem;
  border-radius: 8px;
  box-shadow: 4px 4px 0 var(--black);
  transition: 0.2s;
}
.nav-order:hover {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--black);
}
.nav-order i {
  margin-left: 7px;
}
.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  width: 40px;
  height: 40px;
}
.menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--black);
  margin: 5px auto;
  border-radius: 2px;
}
.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  background: var(--red);
  color: #fff;
  min-height: 680px;
  overflow: hidden;
}
.hero:before {
  content: "";
  position: absolute;
  width: 720px;
  height: 720px;
  border: 110px solid rgba(255, 196, 0, 0.12);
  border-radius: 50%;
  right: -330px;
  top: -170px;
}
.hero:after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border: 80px solid rgba(0, 0, 0, 0.08);
  border-radius: 50%;
  left: -240px;
  bottom: -180px;
}
.hero-noise {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  gap: 50px;
  align-items: center;
  padding: 88px 0 118px;
  min-height: 642px;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin-bottom: 20px;
}
.eyebrow span {
  width: 28px;
  height: 4px;
  background: var(--yellow);
  display: inline-block;
}
.hero h1,
.section-head h2,
.about h2,
.cta h2 {
  font-family: "Anton", sans-serif;
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0.015em;
}
.hero h1 {
  font-size: clamp(4.4rem, 7vw, 7.3rem);
  max-width: 690px;
}
.hero h1 em,
.section-head h2 em,
.about h2 em,
.cta h2 em {
  font-style: normal;
  color: var(--yellow);
}
.hero p {
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 560px;
  margin: 27px 0;
  color: rgba(255, 255, 255, 0.88);
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 21px;
  border-radius: 8px;
  font-weight: 800;
  transition: 0.22s;
  border: 0;
  cursor: pointer;
}
.btn-primary {
  background: var(--yellow);
  color: var(--black);
  box-shadow: 5px 5px 0 var(--black);
}
.btn-primary:hover {
  transform: translate(3px, 3px);
  box-shadow: 2px 2px 0 var(--black);
}
.btn-ghost {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.5);
}
.btn-ghost:hover {
  background: #fff;
  color: var(--black);
}
.hero-details {
  display: flex;
  gap: 35px;
  margin-top: 40px;
}
.hero-details div {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-left: 13px;
  border-left: 3px solid var(--yellow);
}
.hero-details strong {
  font-size: 0.85rem;
}
.hero-details strong i {
  color: var(--yellow);
  margin-right: 5px;
}
.hero-details span {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
}

.hero-art {
  position: relative;
  height: 500px;
}
.burst {
  position: absolute;
  border-radius: 50%;
  border: 2px dashed rgba(255, 255, 255, 0.38);
}
.burst-1 {
  width: 430px;
  height: 430px;
  right: 20px;
  top: 25px;
  animation: spin 25s linear infinite;
}
.burst-2 {
  width: 330px;
  height: 330px;
  right: 70px;
  top: 75px;
  border-color: rgba(255, 196, 0, 0.8);
  animation: spin 18s linear infinite reverse;
}
.main-card {
  position: absolute;
  right: 32px;
  top: 54px;
  width: 410px;
  height: 400px;
  background: var(--yellow);
  color: var(--black);
  border-radius: 18px;
  transform: rotate(3deg);
  box-shadow: 16px 17px 0 var(--black);
  padding: 25px;
}
.main-card:before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 2px solid rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  pointer-events: none;
}
.card-top {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  font-family: "Anton";
  font-size: 1.25rem;
  letter-spacing: 0.04em;
}
.card-top i {
  font-size: 1.1rem;
}
.pastel-illustration {
  position: absolute;
  left: 50%;
  top: 52%;
  transform: translate(-50%, -45%);
  width: 320px;
  height: 210px;
}
.pastel-shadow {
  position: absolute;
  width: 250px;
  height: 38px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.22);
  bottom: 15px;
  left: 35px;
  filter: blur(7px);
}
.pastel-shape {
  position: absolute;
  width: 270px;
  height: 145px;
  background: #e18d22;
  border-radius: 18px 22px 55px 18px;
  left: 23px;
  top: 22px;
  transform: rotate(-8deg);
  box-shadow:
    inset 0 -13px 0 rgba(119, 55, 0, 0.18),
    inset 0 9px 0 rgba(255, 218, 108, 0.4),
    8px 9px 0 rgba(0, 0, 0, 0.16);
}
.pastel-shape:before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 3px dashed rgba(120, 60, 0, 0.45);
  border-radius: 12px 18px 42px 14px;
}
.pastel-shape span {
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #b94d18;
}
.pastel-shape span:nth-child(1) {
  left: 58px;
  top: 44px;
}
.pastel-shape span:nth-child(2) {
  right: 60px;
  bottom: 36px;
  background: #e44c22;
}
.pastel-shape span:nth-child(3) {
  left: 130px;
  top: 70px;
  background: #ffcf35;
}
.crumb {
  position: absolute;
  width: 11px;
  height: 11px;
  background: #e18d22;
  border-radius: 50%;
}
.c1 {
  right: 15px;
  top: 52px;
}
.c2 {
  left: 2px;
  bottom: 45px;
  width: 7px;
  height: 7px;
}
.c3 {
  right: 38px;
  bottom: 20px;
  width: 8px;
  height: 8px;
}
.crunch {
  position: absolute;
  bottom: 19px;
  right: 28px;
  font-family: "Anton";
  font-size: 4.4rem;
  letter-spacing: 0.02em;
  color: var(--red);
  transform: rotate(-5deg);
}
.hero-sticker {
  position: absolute;
  z-index: 4;
  background: #fff;
  color: var(--black);
  border: 3px solid var(--black);
  box-shadow: 6px 6px 0 var(--black);
  font-family: "Anton";
  letter-spacing: 0.04em;
}
.sticker-one {
  left: 0;
  top: 90px;
  padding: 13px 18px;
  transform: rotate(-8deg);
  display: flex;
  align-items: center;
  gap: 10px;
}
.sticker-one i {
  color: var(--red);
  font-size: 1.8rem;
}
.sticker-two {
  right: -7px;
  bottom: 35px;
  padding: 15px;
  transform: rotate(-7deg);
  display: flex;
  align-items: center;
  gap: 10px;
}
.sticker-two strong {
  font-size: 1.8rem;
  color: var(--red);
}
.sticker-two span {
  font-size: 0.65rem;
  line-height: 1.1;
}
.price-tag {
  position: absolute;
  z-index: 5;
  left: 55px;
  bottom: 14px;
  width: 116px;
  height: 116px;
  border-radius: 50%;
  background: var(--black);
  border: 5px solid #fff;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: rotate(10deg);
}
.price-tag small {
  text-transform: uppercase;
  font-size: 0.55rem;
  letter-spacing: 0.06em;
}
.price-tag strong {
  font-family: "Anton";
  font-size: 1.65rem;
  color: var(--yellow);
}
.hero-strip {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--yellow);
  color: var(--black);
  overflow: hidden;
  height: 47px;
  display: flex;
  align-items: center;
  transform: rotate(-1.2deg) scale(1.02);
}
.ticker {
  display: flex;
  white-space: nowrap;
  gap: 35px;
  font-family: "Anton";
  font-size: 1.2rem;
  letter-spacing: 0.06em;
  animation: ticker 24s linear infinite;
}

.flavors {
  padding: 110px 0 100px;
  background: var(--cream);
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 45px;
  margin-bottom: 38px;
}
.section-head h2,
.about h2 {
  font-size: clamp(3.5rem, 5.5vw, 5.7rem);
  margin-top: 8px;
}
.section-kicker {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: var(--red);
}
.section-head > p {
  max-width: 360px;
  line-height: 1.65;
  color: var(--muted);
  font-size: 0.95rem;
  padding-bottom: 7px;
}
.flavor-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 27px;
}
.tab {
  border: 1px solid var(--line);
  background: transparent;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.82rem;
  cursor: pointer;
  transition: 0.2s;
}
.tab.active,
.tab:hover {
  background: var(--black);
  color: #fff;
  border-color: var(--black);
}
.flavor-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.flavor-card {
  position: relative;
  background: #fff;
  padding: 28px;
  min-height: 275px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  overflow: hidden;
  transition: 0.25s;
}
.flavor-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.1);
}
.flavor-card:nth-child(2n) .flavor-icon {
  background: var(--red);
  color: #fff;
}
.flavor-card:nth-child(3n) .flavor-icon {
  background: var(--black);
  color: var(--yellow);
}
.number {
  position: absolute;
  right: 20px;
  top: 14px;
  font-family: "Anton";
  font-size: 3rem;
  color: rgba(0, 0, 0, 0.06);
}
.flavor-icon {
  width: 54px;
  height: 54px;
  background: var(--yellow);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  margin-bottom: 25px;
}
.flavor-card h3 {
  font-family: "Fredoka";
  font-size: 1.45rem;
  margin-bottom: 7px;
}
.flavor-card p {
  font-size: 0.86rem;
  line-height: 1.55;
  color: var(--muted);
  max-width: 250px;
}
.card-bottom {
  position: absolute;
  bottom: 22px;
  left: 28px;
  right: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.card-bottom strong {
  font-family: "Anton";
  font-size: 1.2rem;
  letter-spacing: 0.03em;
}
.card-bottom button {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 0;
  background: var(--cream);
  font-size: 1rem;
  cursor: pointer;
  transition: 0.2s;
}
.card-bottom button:hover {
  background: var(--red);
  color: #fff;
  transform: rotate(90deg);
}
.special-card {
  background: var(--black);
  color: #fff;
  border-color: var(--black);
}
.special-card .number {
  color: rgba(255, 255, 255, 0.07);
}
.special-card p {
  color: rgba(255, 255, 255, 0.65);
}
.badge-special {
  position: absolute;
  right: 20px;
  top: 25px;
  background: var(--yellow);
  color: var(--black);
  font-size: 0.58rem;
  font-weight: 900;
  padding: 6px 9px;
  border-radius: 3px;
}
.special-card .number {
  display: none;
}
.special-card .card-bottom button {
  background: #222;
  color: #fff;
}
.order-banner {
  margin-top: 50px;
  background: var(--yellow);
  padding: 38px 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  position: relative;
  overflow: hidden;
}
.order-banner:after {
  content: "!!!";
  position: absolute;
  right: 270px;
  bottom: -38px;
  font-family: "Anton";
  font-size: 9rem;
  color: rgba(216, 15, 21, 0.12);
  transform: rotate(-8deg);
}
.order-banner > div,
.order-banner > a {
  position: relative;
  z-index: 2;
}
.order-banner span {
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  color: var(--red);
}
.order-banner h3 {
  font-family: "Anton";
  font-size: 2.4rem;
  line-height: 1;
  margin-top: 7px;
}
.order-banner em {
  font-style: normal;
  color: var(--red);
}
.btn-dark {
  background: var(--black);
  color: #fff;
  box-shadow: 5px 5px 0 var(--red);
  white-space: nowrap;
}
.btn-dark:hover {
  transform: translate(3px, 3px);
  box-shadow: 2px 2px 0 var(--red);
}

.about {
  background: var(--black);
  color: #fff;
  padding: 110px 0;
}
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 110px;
  align-items: center;
}
.about-art {
  height: 460px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-art:before {
  content: "";
  position: absolute;
  width: 355px;
  height: 355px;
  border-radius: 50%;
  background: var(--yellow);
}
.about-art:after {
  content: "";
  position: absolute;
  width: 390px;
  height: 390px;
  border-radius: 50%;
  border: 2px dashed rgba(255, 255, 255, 0.35);
  animation: spin 25s linear infinite;
}
.about-logo-wrap {
  position: relative;
  z-index: 2;
  width: 320px;
  height: 320px;
  background: var(--red);
  border-radius: 50%;
  border: 8px solid var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 4px #fff;
}
.about-logo-wrap img {
  width: 92%;
  height: 92%;
  object-fit: contain;
}
.floating-note {
  position: absolute;
  z-index: 4;
  background: #fff;
  color: var(--black);
  font-family: "Anton";
  letter-spacing: 0.04em;
  line-height: 1;
  padding: 14px;
  box-shadow: 5px 5px 0 var(--red);
}
.note-a {
  right: -10px;
  top: 60px;
  transform: rotate(8deg);
}
.note-a i {
  color: var(--red);
}
.note-b {
  left: -5px;
  bottom: 65px;
  transform: rotate(-7deg);
  font-size: 0.8rem;
}
.note-b i {
  color: var(--red);
  font-size: 1.2rem;
  margin-right: 5px;
}
.about-content p {
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.75;
  max-width: 570px;
  margin-top: 20px;
}
.about-points {
  display: flex;
  gap: 35px;
  margin-top: 35px;
}
.about-points > div {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.6);
}
.about-points i {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--black);
  display: grid;
  place-items: center;
  font-size: 1rem;
}
.about-points strong {
  color: #fff;
  font-size: 0.8rem;
}

.how {
  padding: 110px 0;
  background: #fff;
}
.section-head.compact {
  margin-bottom: 48px;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}
.step {
  position: relative;
  padding: 40px 35px 20px;
  border-right: 1px solid var(--line);
}
.step:last-child {
  border-right: 0;
}
.step > span {
  position: absolute;
  right: 20px;
  top: 20px;
  font-family: "Anton";
  font-size: 2.8rem;
  color: rgba(0, 0, 0, 0.08);
}
.step i {
  font-size: 2.2rem;
  color: var(--red);
  margin-bottom: 22px;
}
.step h3 {
  font-family: "Fredoka";
  font-size: 1.5rem;
  margin-bottom: 8px;
}
.step p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.55;
  max-width: 270px;
}

.cta {
  background: var(--red);
  color: #fff;
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
.cta:after {
  content: "DORATTO";
  position: absolute;
  right: -20px;
  bottom: -70px;
  font-family: "Anton";
  font-size: 14rem;
  color: rgba(0, 0, 0, 0.08);
}
.cta-inner {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
.cta span {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}
.cta h2 {
  font-size: clamp(3.3rem, 5vw, 5.5rem);
  margin-top: 7px;
}
.large {
  font-size: 1rem;
  padding: 20px 28px;
}

footer {
  background: var(--black);
  color: #fff;
  padding-top: 65px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 1fr;
  gap: 45px;
  padding-bottom: 55px;
}
.footer-brand img {
  width: 260px;
  height: 150px;
  object-fit: contain;
  object-position: left center;
}
.footer-brand p {
  font-family: "Fredoka";
  font-size: 1.1rem;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.7);
}
.socials {
  display: flex;
  gap: 9px;
  margin-top: 20px;
}
.socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #1d1d1d;
  display: grid;
  place-items: center;
  transition: 0.2s;
}
.socials a:hover {
  background: var(--yellow);
  color: var(--black);
}
.footer-col h4 {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--yellow);
  margin: 12px 0 18px;
}
.footer-col p {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
}
.footer-col i {
  color: var(--red);
  width: 18px;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.72rem;
}
.floating-order {
  display: none;
}
.toast {
  position: fixed;
  z-index: 300;
  left: 50%;
  bottom: 25px;
  transform: translate(-50%, 130px);
  background: #fff;
  color: var(--black);
  padding: 15px 20px;
  border-radius: 9px;
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
  transition: 0.35s;
  max-width: calc(100% - 32px);
  text-align: center;
}
.toast.show {
  transform: translate(-50%, 0);
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 900px) {
  .desktop-menu,
  .nav-order {
    display: none;
  }

  .header {
    height: 110px;
    align-items: center;
    justify-content: center;
    display: flex;
  }
  .menu-toggle {
    display: block;
  }
  .nav {
    height: 74px;
  }
  .mobile-menu {
    position: absolute;
    left: 0;
    right: 0;
    top: 84px;
    background: var(--cream);
    padding: 15px 24px 24px;
    border-bottom: 1px solid var(--line);
    display: none;
    flex-direction: column;
    gap: 15px;
  }
  .mobile-menu.open {
    display: flex;
  }
  .mobile-menu a {
    font-weight: 700;
    padding: 8px 0;
  }
  .mobile-menu .mobile-order {
    padding: 14px 16px;
    color: #fff;
    text-align: center;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    padding: 72px 0 105px;
    gap: 30px;
  }
  .hero-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .eyebrow {
    justify-content: center;
  }
  .hero p {
    max-width: 610px;
  }
  .hero-details {
    justify-content: center;
    text-align: left;
  }
  .hero-art {
    height: 440px;
    width: min(520px, 100%);
    margin: auto;
  }
  .main-card {
    right: 50%;
    transform: translateX(50%) rotate(3deg);
  }
  .sticker-one {
    left: 20px;
  }
  .sticker-two {
    right: 15px;
  }
  .price-tag {
    left: 60px;
  }
  .section-head {
    align-items: start;
    flex-direction: column;
    gap: 15px;
  }
  .section-head > p {
    max-width: 580px;
  }
  .flavor-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  .about-content {
    text-align: center;
  }
  .about-content p {
    margin-left: auto;
    margin-right: auto;
  }
  .about-points {
    justify-content: center;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .container {
    width: min(100% - 32px, 1180px);
  }
  .topbar-inner {
    justify-content: center;
    text-align: center;
    font-size: 0.68rem;
    padding: 8px 0;
  }
  .topbar-hours {
    display: none;
  }
  .brand {
    width: 125px;
  }
  .hero {
    min-height: auto;
  }
  .hero-grid {
    padding: 58px 0 86px;
  }
  .hero h1 {
    font-size: clamp(3.6rem, 16vw, 5.5rem);
  }
  .hero p {
    font-size: 0.94rem;
    margin: 22px 0;
  }
  .hero-actions {
    width: 100%;
    flex-direction: column;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .hero-details {
    gap: 14px;
    margin-top: 30px;
    justify-content: space-between;
    width: 100%;
  }
  .hero-details div {
    font-size: 0.72rem;
  }
  .hero-art {
    height: 355px;
    margin-top: 5px;
  }
  .burst-1 {
    width: 310px;
    height: 310px;
    right: 50%;
    top: 10px;
    transform: translateX(50%);
  }
  .burst-2 {
    width: 245px;
    height: 245px;
    right: 50%;
    top: 42px;
    transform: translateX(50%);
  }
  .main-card {
    width: 285px;
    height: 290px;
    top: 36px;
    padding: 17px;
    box-shadow: 10px 11px 0 var(--black);
  }
  .card-top {
    font-size: 0.92rem;
  }
  .pastel-illustration {
    transform: translate(-50%, -47%) scale(0.72);
  }
  .crunch {
    font-size: 3.2rem;
    bottom: 10px;
    right: 20px;
  }
  .sticker-one {
    left: 0;
    top: 55px;
    padding: 9px 11px;
    font-size: 0.7rem;
  }
  .sticker-one i {
    font-size: 1.2rem;
  }
  .sticker-two {
    right: 0;
    bottom: 26px;
    padding: 9px;
    font-size: 0.65rem;
  }
  .sticker-two strong {
    font-size: 1.25rem;
  }
  .price-tag {
    width: 85px;
    height: 85px;
    left: 8px;
    bottom: 5px;
    border-width: 4px;
  }
  .price-tag strong {
    font-size: 1.25rem;
  }
  .hero-strip {
    height: 40px;
  }
  .ticker {
    font-size: 0.95rem;
  }
  .flavors,
  .about,
  .how {
    padding: 78px 0;
  }
  .section-head h2,
  .about h2 {
    font-size: clamp(3.2rem, 15vw, 4.7rem);
  }
  .flavor-grid {
    grid-template-columns: 1fr;
  }
  .flavor-card {
    min-height: 245px;
  }
  .flavor-tabs {
    overflow: auto;
    padding-bottom: 4px;
  }
  .tab {
    white-space: nowrap;
  }
  .order-banner {
    padding: 30px 25px;
    align-items: flex-start;
    flex-direction: column;
  }
  .order-banner h3 {
    font-size: 2rem;
  }
  .order-banner .btn {
    width: 100%;
  }
  .order-banner:after {
    right: -15px;
  }
  .about-art {
    height: 350px;
  }
  .about-art:before {
    width: 260px;
    height: 260px;
  }
  .about-art:after {
    width: 290px;
    height: 290px;
  }
  .about-logo-wrap {
    width: 235px;
    height: 235px;
  }
  .note-a {
    right: 0;
    top: 25px;
    font-size: 0.72rem;
  }
  .note-b {
    left: 0;
    bottom: 20px;
  }
  .about-points {
    gap: 13px;
    justify-content: space-between;
  }
  .about-points > div {
    gap: 6px;
    font-size: 0.62rem;
  }
  .about-points i {
    width: 34px;
    height: 34px;
    font-size: 0.8rem;
  }
  .steps {
    grid-template-columns: 1fr;
    border-top: 0;
  }
  .step {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 32px 15px;
  }
  .cta {
    padding: 58px 0;
  }
  .cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }
  .cta .btn {
    width: 100%;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .footer-bottom {
    flex-direction: column;
    padding-bottom: 90px;
  }
  .floating-order {
    display: flex;
    position: fixed;
    z-index: 150;
    bottom: 15px;
    left: 16px;
    right: 16px;
    background: var(--yellow);
    color: var(--black);
    height: 56px;
    border-radius: 10px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 900;
    box-shadow: 0 7px 22px rgba(0, 0, 0, 0.28);
  }
}
