@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Neucha&display=swap");
:root {
  font-family: Manrope, Arial, sans-serif;
  color: #f8f5f1;
  background: #211f20 url("source/backgroundcatfried.webp") repeat;
  background-size: 540px;
  font-synthesis: none;
  --orange: #f58a18;
  --orange2: #ffad37;
  --ink: #1b191a;
  --panel: #2d2a2b;
  --muted: #aaa4a1;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  min-height: 100%;
  background: #211f20 url("source/backgroundcatfried.webp") repeat;
  background-size: 540px;
}
body {
  margin: 0;
  min-height: 100vh;
  background: #211f20 url("source/backgroundcatfried.webp") repeat;
  background-size: 540px;
}
#app {
  min-height: calc(100vh - 82px);
}
body:before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(28, 26, 27, 0.82);
  z-index: -1;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea {
  font: inherit;
}
button {
  cursor: pointer;
}
header {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(4vw, 24px);
  position: sticky;
  top: 0;
  background: rgba(28, 26, 27, 0.95);
  backdrop-filter: blur(12px);
  z-index: 20;
  border-bottom: 1px solid #ffffff12;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}
.brand span {
  display: flex;
  flex-direction: column;
  line-height: 0.95;
}
.brand b {
  color: var(--orange);
  font-size: 18px;
}
.brand small {
  font-size: 12px;
  letter-spacing: 4px;
  margin-top: 5px;
}
nav {
  display: flex;
  gap: 34px;
  font-weight: 600;
  font-size: 14px;
}
nav a:hover {
  color: var(--orange);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cart-pill,
.primary,
.light-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 14px;
  background: var(--orange);
  color: #181516;
  padding: 14px 20px;
  font-weight: 800;
}
.cart-pill {
  padding: 11px 16px;
}
.cart-pill b {
  background: #211f20;
  color: white;
  border-radius: 99px;
  min-width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  font-size: 12px;
}
.hero {
  min-height: 670px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  max-width: 1240px;
  margin: auto;
  padding: 60px 40px;
  overflow: hidden;
}
.eyebrow {
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
}
.hero h1,
.page-title,
.detail h1,
.tracking h1,
.checkout h1,
.empty h1 {
  font-size: clamp(45px, 6vw, 82px);
  line-height: 0.98;
  margin: 20px 0;
  font-weight: 800;
  letter-spacing: -3px;
}
.hero h1 em {
  font-family: Neucha, cursive;
  color: var(--orange);
  font-style: normal;
  font-weight: 400;
}
.hero-copy > p {
  max-width: 570px;
  font-size: 19px;
  color: #d3cfcc;
  line-height: 1.65;
}
.hero-buttons {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 34px;
}
.hero-buttons > span {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
}
.hero-buttons small {
  color: var(--muted);
}
.hero-art {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
}
.hero-art:before {
  content: "";
  position: absolute;
  width: 470px;
  height: 470px;
  background: radial-gradient(circle, #f58a182d, transparent 68%);
  border: 1px solid #f58a1838;
  border-radius: 50%;
}
.hero-art img {
  width: min(520px, 45vw);
  z-index: 1;
  filter: drop-shadow(0 30px 35px #0009);
}
.burst {
  position: absolute;
  z-index: 2;
  top: 30px;
  right: 20px;
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  text-align: center;
  background: var(--orange);
  color: #211f20;
  border-radius: 42% 58% 44% 56%;
  font-family: Neucha;
  font-size: 21px;
  font-weight: bold;
  transform: rotate(10deg);
}
.floating-card {
  position: absolute;
  z-index: 2;
  bottom: 25px;
  left: 0;
  background: #f5f0e8;
  color: #201e1f;
  padding: 15px 20px;
  border-radius: 14px;
  box-shadow: 0 15px 35px #0006;
}
.floating-card b {
  display: block;
  color: #c96400;
}
.section {
  max-width: 1240px;
  margin: auto;
  padding: 90px 40px;
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 36px;
}
.section h2,
.promo h2,
.story h2 {
  font-size: clamp(32px, 4vw, 54px);
  margin: 10px 0;
  letter-spacing: -2px;
}
.section-head > a {
  color: var(--orange);
  display: flex;
  align-items: center;
  font-weight: 700;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.product-card {
  background: #302d2e;
  border: 1px solid #ffffff12;
  border-radius: 22px;
  overflow: hidden;
  transition: 0.25s;
}
.product-card:hover {
  transform: translateY(-5px);
  border-color: #f58a1855;
}
.product-image {
  height: 255px;
  background: linear-gradient(145deg, #3b3738, #262324);
  display: grid;
  place-items: center;
  position: relative;
}
.product-image img {
  width: 90%;
  height: 90%;
  object-fit: contain;
  transition: 0.25s;
}
.product-card:hover img {
  transform: scale(1.04);
}
.badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--orange);
  color: #211f20;
  border-radius: 99px;
  padding: 6px 11px;
  font-size: 11px;
  font-weight: 800;
  z-index: 2;
}
.product-info {
  padding: 20px;
}
.product-info > small {
  color: var(--orange);
  font-weight: 700;
}
.product-info h3 {
  font-size: 20px;
  margin: 7px 0;
}
.product-info p {
  height: 63px;
  color: #b9b3b0;
  font-size: 13px;
  line-height: 1.55;
  overflow: hidden;
}
.product-info > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 15px;
}
.product-info strong {
  font-size: 19px;
}
.add,
.icon {
  border: 0;
  border-radius: 12px;
  background: var(--orange);
  color: #211f20;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
}
.add.done {
  background: #69ba75;
}
.promo {
  max-width: 1160px;
  margin: 35px auto 100px;
  padding: 50px 70px;
  background: var(--orange);
  color: #211f20;
  border-radius: 30px;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
}
.promo > div {
  max-width: 510px;
  z-index: 2;
}
.promo .eyebrow {
  color: #6f3200;
}
.promo p {
  line-height: 1.7;
}
.promo img {
  width: 360px;
  height: 310px;
  object-fit: contain;
  filter: drop-shadow(0 20px 20px #8c430060);
}
.light-btn {
  background: #211f20;
  color: white;
  margin-top: 15px;
}
.benefits {
  max-width: 1160px;
  margin: 0 auto 100px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  border-radius: 22px;
  overflow: hidden;
}
.benefits div {
  background: #302d2e;
  padding: 34px;
  display: grid;
  gap: 9px;
}
.benefits svg {
  color: var(--orange);
  width: 31px;
  height: 31px;
  margin-bottom: 8px;
}
.benefits span {
  font-size: 13px;
  color: var(--muted);
}
.story {
  text-align: center;
  max-width: 850px;
  margin: 130px auto;
  padding: 20px;
}
.story p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}
footer {
  padding: 45px max(4vw, 30px);
  background: #181617;
  border-top: 1px solid #ffffff14;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #85807e;
  font-size: 12px;
}
.menu-page .page-title,
.cart-page .page-title {
  margin-bottom: 10px;
}
.lead {
  font-size: 18px;
  line-height: 1.65;
  color: #bcb6b3;
}
.chips {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
  margin: 35px 0;
}
.chips button {
  border: 1px solid #ffffff1a;
  color: #c8c2bf;
  background: #302d2e;
  border-radius: 99px;
  padding: 10px 17px;
}
.chips button.active {
  background: var(--orange);
  color: #211f20;
  border-color: var(--orange);
  font-weight: 700;
}
.detail {
  max-width: 1140px;
  margin: auto;
  padding: 45px 40px 100px;
}
.back {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 35px;
}
.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.detail-art {
  height: 580px;
  border-radius: 30px;
  background: #302d2e;
  display: grid;
  place-items: center;
  border: 1px solid #ffffff12;
}
.detail-art img {
  width: 90%;
  height: 90%;
  object-fit: contain;
}
.detail h1 {
  font-size: 58px;
}
.option {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 28px 0;
}
.option > b {
  width: 100%;
  margin-bottom: 6px;
}
.option button {
  background: #302d2e;
  border: 1px solid #ffffff1a;
  color: white;
  border-radius: 10px;
  padding: 10px 12px;
}
.option button.active {
  border-color: var(--orange);
  color: var(--orange);
}
.meter {
  margin: 28px 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 9px;
}
.meter i {
  height: 7px;
  background: #393536;
  border-radius: 99px;
  grid-row: 2;
  grid-column: 1/3;
  overflow: hidden;
}
.meter i b {
  display: block;
  height: 100%;
  background: var(--orange);
}
.meter strong {
  font-size: 12px;
  color: var(--orange);
}
.wide {
  width: 100%;
}
.fine {
  display: block;
  text-align: center;
  color: var(--muted);
  margin-top: 14px;
}
.empty {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
}
.empty > svg {
  width: 80px;
  height: 80px;
  color: var(--orange);
}
.empty h1 {
  font-size: 50px;
}
.empty p {
  color: var(--muted);
  margin: 0 0 25px;
}
.big404 {
  font-size: 120px;
  color: #ffffff0e;
  line-height: 0.5;
}
.cart-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  margin-top: 40px;
}
.cart-line {
  display: grid;
  grid-template-columns: 135px 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid #ffffff12;
}
.cart-line img {
  width: 135px;
  height: 110px;
  object-fit: contain;
  background: #302d2e;
  border-radius: 18px;
}
.cart-line h3 {
  margin: 0 0 7px;
}
.cart-line small {
  display: block;
  color: var(--muted);
  margin-bottom: 13px;
}
.stepper {
  display: flex;
  align-items: center;
  background: #302d2e;
  border-radius: 12px;
}
.stepper button {
  width: 42px;
  height: 42px;
  background: none;
  border: 0;
  color: white;
}
.stepper svg {
  width: 17px;
}
.stepper span {
  min-width: 30px;
  text-align: center;
}
.summary {
  background: #f2ede5;
  color: #211f20;
  border-radius: 22px;
  padding: 28px;
  height: max-content;
  position: sticky;
  top: 110px;
}
.summary h2 {
  margin-top: 0;
}
.summary > div {
  display: flex;
  justify-content: space-between;
  margin: 16px 0;
}
.summary hr {
  border: 0;
  border-top: 1px solid #0002;
}
.summary .total {
  font-size: 21px;
  margin: 25px 0;
}
.summary > small {
  display: flex;
  gap: 8px;
  line-height: 1.4;
  margin-top: 15px;
  color: #666;
}
.summary > small svg {
  width: 25px;
  color: #427c4a;
}
.checkout {
  max-width: 850px;
  margin: auto;
  padding: 50px 30px 100px;
}
.progress {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
  position: relative;
}
.progress:before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  height: 2px;
  background: #ffffff18;
  top: 18px;
}
.progress > span {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  z-index: 1;
  color: #706b69;
}
.progress b {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #373334;
}
.progress small {
  font-size: 11px;
}
.progress .active {
  color: white;
}
.progress .active b {
  background: var(--orange);
  color: #211f20;
}
.progress svg {
  width: 17px;
}
.checkout-card {
  background: #f2ede5;
  color: #211f20;
  border-radius: 26px;
  padding: 45px;
}
.checkout-card h1 {
  font-size: 45px;
  letter-spacing: -2px;
}
.checkout-card label {
  display: grid;
  gap: 7px;
  font-size: 13px;
  font-weight: 700;
  margin: 17px 0;
}
.checkout-card input,
.checkout-card textarea {
  width: 100%;
  border: 1px solid #d5cdc4;
  background: white;
  border-radius: 11px;
  padding: 14px;
  outline: none;
}
.checkout-card input:focus,
.checkout-card textarea:focus {
  border-color: var(--orange);
}
.checkout-card input.invalid {
  border-color: #c84c42;
  box-shadow: 0 0 0 2px #c84c421f;
}
.field-error,
.field-hint {
  margin-top: -2px;
  font-size: 11px;
  font-weight: 600;
}
.field-error {
  color: #b4362e;
}
.field-hint {
  color: #77716d;
}
.checkout-card textarea {
  resize: vertical;
  min-height: 80px;
}
.cols {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 14px;
}
.notice {
  display: flex;
  gap: 10px;
  background: #e0e8db;
  color: #35513a;
  padding: 14px;
  border-radius: 11px;
  font-size: 13px;
  line-height: 1.5;
}
.notice svg {
  flex: none;
}
.notice.important {
  background: #fff1d2;
  color: #714900;
}
.location,
.secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid #d3cbc3;
  background: transparent;
  border-radius: 12px;
  padding: 13px;
  color: inherit;
}
.select-list {
  display: grid;
  gap: 10px;
  margin: 25px 0;
}
.select-list button {
  display: flex;
  justify-content: space-between;
  text-align: left;
  padding: 16px;
  border: 1px solid #d4ccc4;
  background: white;
  border-radius: 13px;
}
.select-list button span {
  display: grid;
  gap: 4px;
}
.select-list button small {
  color: #777;
}
.select-list button i {
  width: 24px;
  height: 24px;
  border: 1px solid #ccc;
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.select-list button.active {
  border-color: var(--orange);
  box-shadow: 0 0 0 1px var(--orange);
}
.select-list button.active i {
  background: var(--orange);
  border-color: var(--orange);
}
.select-list svg {
  width: 15px;
}
.fake-total {
  display: grid;
  background: #211f20;
  color: white;
  border-radius: 15px;
  padding: 20px;
  margin: 25px 0;
}
.fake-total b {
  font-size: 30px;
  color: var(--orange);
}
.fake-total small {
  color: #aaa;
}
.checkout-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 30px;
}
.checkout-actions .secondary {
  margin-right: auto;
}
.tracking {
  max-width: 850px;
  margin: auto;
  padding: 70px 30px 120px;
  text-align: center;
}
.tracking h1 {
  font-size: 58px;
}
.track-card {
  margin-top: 38px;
  text-align: left;
  background: #302d2e;
  border: 1px solid #ffffff12;
  border-radius: 26px;
  padding: 30px;
}
.cat-map {
  height: 160px;
  border-radius: 17px;
  background:
    radial-gradient(circle at 50%, #f58a1836, transparent 55%), #242122;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}
.cat-map svg {
  width: 70px;
  height: 70px;
  color: var(--orange);
  animation: prowl 1.3s infinite alternate;
}
.cat-map span {
  position: absolute;
  bottom: 18px;
  color: #ffffff50;
  letter-spacing: 12px;
}
.cat-map.failed svg {
  animation: escape 0.45s forwards;
}
.timeline {
  margin: 28px 0;
}
.timeline > div {
  display: flex;
  gap: 15px;
  min-height: 66px;
  position: relative;
  color: #6f6a68;
}
.timeline > div:not(:last-child):before {
  content: "";
  position: absolute;
  left: 15px;
  top: 32px;
  height: 34px;
  border-left: 2px solid #ffffff10;
}
.timeline i {
  width: 32px;
  height: 32px;
  flex: none;
  border-radius: 50%;
  border: 2px solid #4a4647;
  display: grid;
  place-items: center;
  font-style: normal;
  font-size: 12px;
}
.timeline span {
  display: grid;
}
.timeline small {
  font-size: 11px;
  margin-top: 3px;
}
.timeline .done,
.timeline .current {
  color: white;
}
.timeline .done i {
  background: #5aa56a;
  border-color: #5aa56a;
}
.timeline .current i {
  border-color: var(--orange);
  color: var(--orange);
}
.timeline svg {
  width: 15px;
}
.fail-box {
  border-radius: 16px;
  background: #f2ede5;
  color: #211f20;
  padding: 22px;
}
.fail-box > b {
  font-size: 11px;
  color: #c45500;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.fail-box h2 {
  margin: 8px 0;
}
.fail-box p {
  margin: 0;
  color: #706866;
}
.final-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
}
.final-actions .secondary {
  color: white;
  border-color: #ffffff30;
}
@keyframes prowl {
  to {
    transform: translateX(45px) rotate(8deg);
  }
}
@keyframes escape {
  to {
    transform: translate(500px, -80px) rotate(40deg);
  }
}
.mobile-nav,
.mobile-only {
  display: none;
}
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 90px;
  }
  .hero-art {
    min-height: 430px;
  }
  .hero-art img {
    width: min(500px, 80vw);
  }
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .detail-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .detail-art {
    height: 470px;
  }
  .cart-layout {
    grid-template-columns: 1fr;
  }
  .summary {
    position: static;
  }
  .promo {
    margin-left: 25px;
    margin-right: 25px;
  }
  .promo img {
    width: 280px;
  }
  .benefits {
    margin-left: 25px;
    margin-right: 25px;
  }
}
@media (max-width: 650px) {
  body {
    padding-bottom: 68px;
  }
  header {
    height: 68px;
    padding: 0 16px;
  }
  .brand img {
    width: 42px;
    height: 42px;
  }
  .brand b {
    font-size: 14px;
  }
  .brand small {
    font-size: 9px;
  }
  .cart-pill span {
    display: none;
  }
  .mobile-only {
    display: grid;
  }
  header nav {
    display: none;
    position: absolute;
    top: 67px;
    left: 0;
    right: 0;
    background: #211f20;
    padding: 25px;
    flex-direction: column;
  }
  header nav.open {
    display: flex;
  }
  .hero {
    padding: 50px 20px 35px;
    min-height: auto;
  }
  .hero h1 {
    font-size: 48px;
    letter-spacing: -2px;
  }
  .hero-copy > p {
    font-size: 16px;
  }
  .hero-buttons {
    align-items: flex-start;
    flex-direction: column;
  }
  .hero-art {
    min-height: 350px;
  }
  .hero-art:before {
    width: 330px;
    height: 330px;
  }
  .burst {
    right: 0;
  }
  .floating-card {
    bottom: 0;
  }
  .section {
    padding: 65px 18px;
  }
  .section-head {
    align-items: flex-start;
    gap: 20px;
  }
  .section-head > a {
    font-size: 0;
  }
  .section-head > a svg {
    display: block;
  }
  .product-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .product-image {
    height: 175px;
  }
  .product-info {
    padding: 14px;
  }
  .product-info h3 {
    font-size: 15px;
  }
  .product-info p {
    display: none;
  }
  .product-info strong {
    font-size: 15px;
  }
  .add {
    width: 38px;
    height: 38px;
  }
  .promo {
    padding: 35px 25px;
    margin: 10px 18px 70px;
    min-height: 460px;
    align-items: flex-start;
  }
  .promo img {
    position: absolute;
    width: 290px;
    margin-top: 160px;
    margin-left: 40px;
  }
  .benefits {
    grid-template-columns: 1fr;
    margin: 0 18px 60px;
  }
  .story {
    margin: 60px auto;
  }
  footer {
    display: block;
    text-align: center;
    padding-bottom: 30px;
  }
  footer .brand {
    justify-content: center;
    margin-bottom: 20px;
  }
  .detail {
    padding: 30px 18px;
  }
  .detail-grid {
    gap: 25px;
  }
  .detail-art {
    height: 350px;
  }
  .detail h1 {
    font-size: 43px;
  }
  .cart-line {
    grid-template-columns: 90px 1fr;
  }
  .cart-line img {
    width: 90px;
    height: 85px;
  }
  .cart-line .stepper {
    grid-column: 2;
    width: max-content;
  }
  .checkout {
    padding: 25px 12px 70px;
  }
  .progress small {
    display: none;
  }
  .checkout-card {
    padding: 28px 20px;
  }
  .checkout-card h1 {
    font-size: 36px;
  }
  .checkout-actions {
    flex-direction: column-reverse;
  }
  .checkout-actions button {
    width: 100%;
  }
  .cols {
    grid-template-columns: 1fr;
  }
  .tracking {
    padding: 50px 15px 80px;
  }
  .tracking h1 {
    font-size: 43px;
  }
  .track-card {
    padding: 16px;
  }
  .final-actions {
    display: grid;
  }
  .mobile-nav {
    display: flex;
    position: fixed;
    z-index: 30;
    bottom: 0;
    left: 0;
    right: 0;
    height: 68px;
    background: #1c1a1b;
    border-top: 1px solid #ffffff15;
    justify-content: space-around;
  }
  .mobile-nav a {
    display: grid;
    place-items: center;
    align-content: center;
    gap: 2px;
    color: #aaa;
    min-width: 80px;
  }
  .mobile-nav svg {
    width: 21px;
  }
  .mobile-nav small {
    font-size: 10px;
  }
}

.toast {
  position: fixed;
  z-index: 50;
  left: 50%;
  bottom: 28px;
  transform: translate(-50%, 25px);
  opacity: 0;
  pointer-events: none;
  background: #f2ede5;
  color: #211f20;
  border-radius: 12px;
  padding: 13px 18px;
  font-size: 13px;
  font-weight: 700;
  transition: 0.25s;
  box-shadow: 0 15px 40px #0008;
}
.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}
.cat-symbol {
  font-size: 70px;
  line-height: 1;
}
.story.standalone {
  min-height: calc(100vh - 82px);
  margin-top: 0;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.sticker-cta {
  max-width: 1160px;
  min-height: 390px;
  margin: 30px auto 160px;
  padding: 55px 65px;
  border: 1px solid #f58a184f;
  border-radius: 30px;
  background:
    linear-gradient(115deg, #302d2ef5, #211f20f2),
    url("source/backgroundcatfried.webp") center / 520px;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  align-items: center;
  gap: 45px;
  overflow: hidden;
}
.sticker-cta .eyebrow {
  color: var(--orange);
}
.sticker-cta h2 {
  margin: 12px 0 18px;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.05;
  letter-spacing: -2px;
}
.sticker-cta p {
  color: #bbb6b3;
  line-height: 1.7;
  max-width: 610px;
}
.telegram-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 15px;
  padding: 14px 20px;
  border-radius: 14px;
  background: var(--orange);
  color: #211f20;
  font-weight: 800;
  box-shadow: 0 12px 30px #0005;
}
.telegram-btn:hover {
  background: var(--orange2);
  transform: translateY(-2px);
}
.telegram-btn span {
  font-size: 20px;
  transform: rotate(-15deg);
}
.sticker-art {
  position: relative;
  display: grid;
  place-items: center;
}
.sticker-art:before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: #f58a1826;
  border: 1px solid #f58a183d;
}
.sticker-art img {
  position: relative;
  width: min(280px, 100%);
  filter: drop-shadow(0 20px 25px #0008);
}
.sticker-art > span {
  position: relative;
  margin-top: -20px;
  padding: 8px 12px;
  border-radius: 9px;
  background: var(--orange);
  color: #211f20;
  font-size: 10px;
  font-weight: 800;
  text-align: center;
  transform: rotate(-3deg);
}
.sticker-inline {
  display: inline-flex;
  margin-top: 16px;
  color: #c85f00;
  font-weight: 800;
}
.sticker-inline:hover {
  color: #8f4300;
}
@media (max-width: 650px) {
  #app,
  .story.standalone {
    min-height: calc(100vh - 68px);
  }
  .toast {
    bottom: 85px;
    width: calc(100% - 30px);
    text-align: center;
  }
  .sticker-cta {
    grid-template-columns: 1fr;
    margin: 10px 18px 125px;
    padding: 38px 24px;
    text-align: center;
  }
  .sticker-art {
    order: -1;
  }
  .sticker-art img {
    width: 190px;
  }
  .telegram-btn {
    width: 100%;
    justify-content: center;
  }
}
