:root {
  --ink: #1e2928;
  --cream: #f7f2e8;
  --paper: #fffdf8;
  --aqua: #18a9a0;
  --coral: #ee735e;
  --yellow: #f0c84b;
  --muted: #68716f;
  --line: rgba(30, 41, 40, 0.13);
  --shadow: 0 24px 70px rgba(20, 31, 29, 0.16);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: #162220;
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  line-height: 1.5;
}
button {
  font: inherit;
  color: inherit;
  cursor: pointer;
}
img {
  display: block;
  max-width: 100%;
}
.demo-ribbon {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  padding: 7px 16px;
  background: var(--yellow);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}
.app-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(360px, 0.72fr) minmax(460px, 1.28fr);
  padding-top: 29px;
}
.desktop-rail {
  position: sticky;
  top: 29px;
  height: calc(100vh - 29px);
  display: flex;
  flex-direction: column;
  padding: 44px clamp(32px, 6vw, 90px);
  color: #fff;
  background:
    linear-gradient(0deg, rgba(19, 36, 34, 0.96), rgba(19, 36, 34, 0.62)),
    url("../assets/hero-via-pet.png") 69% center/cover;
}
.back-site {
  font-weight: 700;
  text-underline-offset: 5px;
}
.rail-copy {
  margin: auto 0;
}
.rail-copy p {
  margin: 0 0 12px;
  color: #83ddd4;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.rail-copy h1 {
  max-width: 650px;
  margin: 0 0 22px;
  font:
    700 clamp(3rem, 5.4vw, 6.4rem)/0.96 "Bricolage Grotesque",
    sans-serif;
  letter-spacing: -0.055em;
}
.rail-copy span {
  display: block;
  max-width: 520px;
  color: #ffffffb0;
  font-size: 1.05rem;
}
.rail-card {
  display: grid;
  gap: 4px;
  padding: 18px 20px;
  border: 1px solid #ffffff2d;
  border-radius: 18px;
  background: #ffffff13;
  backdrop-filter: blur(12px);
}
.rail-card span {
  color: #ffffffa0;
  font-size: 0.8rem;
}
.app {
  position: relative;
  min-width: 0;
  min-height: calc(100vh - 29px);
  overflow-x: hidden;
  padding: 0 max(24px, calc((100% - 760px) / 2)) 110px;
  background: var(--cream);
}
.app-header {
  position: sticky;
  z-index: 50;
  top: 29px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 82px;
  margin-inline: calc(-1 * max(24px, calc((100% - 760px) / 2)));
  padding: 10px max(24px, calc((100% - 760px) / 2));
  background: #f7f2e8eb;
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.app-header img {
  width: 126px;
}
.avatar {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: var(--coral);
  font-weight: 800;
}
.cart-button {
  justify-self: end;
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  font-size: 0.72rem;
  font-weight: 800;
}
.cart-button span {
  display: inline-grid;
  width: 23px;
  height: 23px;
  margin-left: 5px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--ink);
}
.view {
  display: none;
  padding-top: 34px;
}
.view.active {
  display: block;
  animation: enter 0.28s ease;
}
@keyframes enter {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.welcome {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 25px;
}
.welcome span,
.page-heading p {
  color: var(--aqua);
  font-size: 0.71rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.welcome h2,
.page-heading h2 {
  max-width: 590px;
  margin: 4px 0 0;
  font:
    700 clamp(2.4rem, 5vw, 4.4rem)/0.98 "Bricolage Grotesque",
    sans-serif;
  letter-spacing: -0.05em;
}
.location {
  padding: 8px 10px;
  border-radius: 999px;
  background: #d8efec;
  color: #14776f !important;
  white-space: nowrap;
}
.next-care {
  display: grid;
  grid-template-columns: 82px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border-radius: 24px;
  color: #fff;
  background: var(--ink);
  box-shadow: var(--shadow);
}
.care-photo {
  position: relative;
}
.care-photo img {
  width: 82px;
  height: 82px;
  object-fit: cover;
  border-radius: 18px;
}
.care-photo span {
  position: absolute;
  left: 7px;
  bottom: 6px;
  padding: 3px 6px;
  border-radius: 999px;
  background: #ffffffdf;
  color: var(--ink);
  font-size: 0.6rem;
  font-weight: 800;
}
.next-care p,
.next-care h3 {
  margin: 0;
}
.next-care p {
  color: #83ddd4;
  font-size: 0.67rem;
  font-weight: 800;
  text-transform: uppercase;
}
.next-care h3 {
  font:
    700 1.25rem/1.2 "Bricolage Grotesque",
    sans-serif;
}
.next-care div > span {
  color: #ffffffa0;
  font-size: 0.75rem;
}
.next-care button {
  border: 0;
  background: none;
  color: var(--yellow);
  font-size: 0.75rem;
  font-weight: 800;
}
.quick-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 20px 0 36px;
}
.quick-actions button {
  min-height: 142px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--paper);
  text-align: left;
}
.quick-actions strong,
.quick-actions small {
  display: block;
}
.quick-actions strong {
  margin-top: 18px;
  font:
    700 1.05rem/1.1 "Bricolage Grotesque",
    sans-serif;
}
.quick-actions small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.68rem;
}
.action-mark {
  display: grid;
  width: 35px;
  height: 35px;
  place-items: center;
  border-radius: 12px;
  font-size: 0.68rem;
  font-weight: 800;
}
.coral {
  background: #f8d0c9;
}
.aqua {
  background: #cceee9;
}
.yellow {
  background: #f5e6a8;
}
.section-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 15px;
}
.section-row p,
.section-row h3 {
  margin: 0;
}
.section-row p {
  color: var(--coral);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}
.section-row h3 {
  font:
    700 1.8rem/1.15 "Bricolage Grotesque",
    sans-serif;
}
.section-row button {
  border: 0;
  background: none;
  color: var(--aqua);
  font-size: 0.75rem;
  font-weight: 800;
}
.product-scroll {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 13px;
}
.product-card {
  padding: 10px 10px 14px;
  border: 1px solid var(--line);
  border-radius: 21px;
  background: var(--paper);
}
.product-image {
  position: relative;
  height: 165px;
  border-radius: 15px;
  background: #ddd center/cover no-repeat;
}
.product-image span {
  position: absolute;
  left: 8px;
  top: 8px;
  padding: 5px 8px;
  border-radius: 999px;
  background: var(--yellow);
  font-size: 0.58rem;
  font-weight: 800;
  text-transform: uppercase;
}
.product-image.beds {
  background-image: url("../assets/maui-samyla.jpg");
}
.product-image.bandana {
  background: linear-gradient(145deg, #149b92, #65d1c8);
}
.product-image.bandana:after {
  content: "";
  position: absolute;
  width: 105px;
  height: 85px;
  left: 50%;
  top: 37px;
  transform: translateX(-50%) rotate(-5deg);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  background: #f9e6bd;
  box-shadow: 0 12px 20px #0002;
}
.product-image.care {
  background: linear-gradient(145deg, #f4c848, #f9e6a5);
}
.product-image.care:before,
.product-image.care:after {
  content: "";
  position: absolute;
  bottom: 30px;
  width: 45px;
  border-radius: 10px 10px 14px 14px;
  background: var(--paper);
  box-shadow: 0 9px 20px #0002;
}
.product-image.care:before {
  left: 42px;
  height: 90px;
}
.product-image.care:after {
  right: 42px;
  height: 70px;
  background: var(--coral);
}
.product-image.collar {
  background: var(--coral);
}
.product-image.collar:after {
  content: "";
  position: absolute;
  width: 105px;
  height: 105px;
  left: 50%;
  top: 30px;
  transform: translateX(-50%);
  border: 17px solid var(--yellow);
  border-radius: 50%;
  box-shadow: 0 9px 20px #0002;
}
.product-card h4 {
  margin: 12px 3px 1px;
  font:
    700 1rem/1.2 "Bricolage Grotesque",
    sans-serif;
}
.product-card p {
  margin: 0 3px;
  color: var(--muted);
  font-size: 0.7rem;
}
.product-card button,
.shop-product button {
  width: 100%;
  margin-top: 10px;
  padding: 9px;
  border: 0;
  border-radius: 999px;
  background: #e2f1ef;
  color: #14776f;
  font-size: 0.68rem;
  font-weight: 800;
}
.birthday-banner {
  display: grid;
  grid-template-columns: 1fr 170px;
  min-height: 190px;
  margin-top: 32px;
  overflow: hidden;
  border-radius: 25px;
  background: var(--yellow);
}
.birthday-banner > div {
  align-self: center;
  padding: 25px;
}
.birthday-banner p {
  margin: 0;
  color: #795f0e;
  font-size: 0.67rem;
  font-weight: 800;
  text-transform: uppercase;
}
.birthday-banner h3 {
  margin: 5px 0 15px;
  font:
    700 1.65rem/1.05 "Bricolage Grotesque",
    sans-serif;
}
.birthday-banner button {
  padding: 8px 13px;
  border: 0;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
}
.birthday-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-heading {
  margin-bottom: 28px;
}
.page-heading p {
  margin: 0;
}
.page-heading span {
  color: var(--muted);
  font-size: 0.75rem;
}
.category-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 22px;
  overflow-x: auto;
}
.category-tabs button {
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  font-size: 0.72rem;
  font-weight: 800;
  white-space: nowrap;
}
.category-tabs button.active {
  color: #fff;
  background: var(--ink);
}
.shop-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
.shop-product {
  display: grid;
  grid-template-columns: 145px 1fr;
  gap: 16px;
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--paper);
}
.shop-product.hidden {
  display: none;
}
.shop-product .product-image {
  height: 165px;
}
.shop-product > div:last-child {
  align-self: center;
}
.shop-product small {
  color: var(--aqua);
  font-weight: 800;
  text-transform: uppercase;
}
.shop-product h3,
.shop-product p {
  margin: 3px 0;
}
.shop-product h3 {
  font:
    700 1.25rem/1.1 "Bricolage Grotesque",
    sans-serif;
}
.shop-product p {
  color: var(--muted);
  font-size: 0.78rem;
}
.booking-form {
  display: grid;
  gap: 22px;
}
.booking-form fieldset {
  min-width: 0;
  margin: 0;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--paper);
}
.booking-form legend {
  padding: 0 8px;
  font:
    700 1.1rem/1.1 "Bricolage Grotesque",
    sans-serif;
}
.pet-choices,
.date-choices,
.time-choices {
  display: flex;
  gap: 10px;
  overflow-x: auto;
}
.booking-form input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.pet-choices label span {
  display: grid;
  grid-template-columns: 46px auto;
  gap: 9px;
  align-items: center;
  min-width: 120px;
  padding: 7px 12px 7px 7px;
  border: 1px solid var(--line);
  border-radius: 999px;
}
.pet-choices img {
  width: 46px;
  height: 46px;
  object-fit: cover;
  border-radius: 50%;
}
.pet-choices input:checked + span,
.date-choices input:checked + span,
.time-choices input:checked + span,
.choice-list input:checked + span {
  border-color: var(--aqua);
  background: #dcf2ef;
  box-shadow: inset 0 0 0 1px var(--aqua);
}
.pet-choices > button {
  min-width: 105px;
  border: 1px dashed var(--aqua);
  border-radius: 999px;
  background: transparent;
  color: #14776f;
  font-size: 0.72rem;
  font-weight: 800;
}
.choice-list {
  display: grid;
  gap: 8px;
}
.choice-list label span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 15px;
}
.choice-list small {
  text-align: right;
}
.choice-list small {
  color: var(--muted);
}
.date-choices label span {
  display: grid;
  min-width: 70px;
  height: 78px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 16px;
}
.date-choices small {
  font-size: 0.63rem;
  color: var(--muted);
}
.date-choices strong {
  font-size: 1.35rem;
}
.time-choices label span {
  display: block;
  min-width: 78px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 800;
}
.primary-action {
  width: 100%;
  min-height: 54px;
  padding: 13px 20px;
  border: 0;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-weight: 800;
}
.club-hero {
  padding: 36px;
  border-radius: 28px;
  background: var(--aqua);
  color: #fff;
}
.club-hero > p {
  margin: 0;
  color: #d6fffb;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
}
.club-hero h2 {
  max-width: 630px;
  margin: 6px 0 30px;
  font:
    700 clamp(2.5rem, 5vw, 4.5rem)/0.98 "Bricolage Grotesque",
    sans-serif;
  letter-spacing: -0.05em;
}
.points {
  padding: 20px;
  border-radius: 20px;
  background: #ffffffea;
  color: var(--ink);
}
.points span,
.points strong,
.points small {
  display: block;
}
.points span {
  color: var(--muted);
  font-size: 0.65rem;
  text-transform: uppercase;
}
.points strong {
  font:
    700 1.8rem/1.2 "Bricolage Grotesque",
    sans-serif;
}
.points small {
  color: var(--muted);
}
.points i {
  display: block;
  height: 7px;
  margin-top: 14px;
  border-radius: 999px;
  background: #dce2df;
}
.points b {
  display: block;
  width: 82%;
  height: 100%;
  border-radius: 999px;
  background: var(--yellow);
}
.benefits {
  margin: 26px 0;
}
.benefits h3 {
  font:
    700 1.8rem/1.1 "Bricolage Grotesque",
    sans-serif;
}
.benefits article {
  display: grid;
  grid-template-columns: 45px 1fr;
  gap: 15px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}
.benefits article > span {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 13px;
  background: var(--yellow);
  font-size: 0.7rem;
  font-weight: 800;
}
.benefits strong {
  display: block;
}
.benefits p {
  margin: 3px 0;
  color: var(--muted);
  font-size: 0.83rem;
}
.profile-cover {
  text-align: center;
}
.profile-cover img {
  width: 145px;
  height: 145px;
  margin: auto;
  object-fit: cover;
  border: 7px solid var(--paper);
  border-radius: 50%;
  box-shadow: var(--shadow);
}
.profile-cover > span {
  display: inline-block;
  margin-top: 15px;
  padding: 6px 9px;
  border-radius: 999px;
  background: #f7e5a2;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
}
.profile-cover h2 {
  margin: 10px 0 0;
  font:
    700 3rem/1 "Bricolage Grotesque",
    sans-serif;
}
.profile-cover p {
  margin: 5px 0;
  color: var(--muted);
}
.profile-data {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 25px 0;
}
.profile-data article {
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--paper);
}
.profile-data span,
.profile-data strong {
  display: block;
}
.profile-data span {
  color: var(--muted);
  font-size: 0.68rem;
}
.profile-data strong {
  margin-top: 5px;
}
.history {
  padding: 22px;
  border-radius: 24px;
  background: var(--ink);
  color: #fff;
}
.history h3 {
  font:
    700 1.5rem/1.2 "Bricolage Grotesque",
    sans-serif;
}
.history p {
  display: grid;
  grid-template-columns: 55px 1fr auto;
  gap: 10px;
  padding: 13px 0;
  margin: 0;
  border-top: 1px solid #ffffff20;
}
.history p span {
  color: #83ddd4;
  font-size: 0.65rem;
  font-weight: 800;
}
.history p small {
  color: #ffffff90;
}
.bottom-nav {
  position: fixed;
  z-index: 60;
  right: max(24px, calc((64% - 760px) / 2));
  bottom: 16px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  width: min(710px, calc(64% - 48px));
  padding: 9px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fffdf8ee;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}
.bottom-nav button {
  min-height: 48px;
  border: 0;
  border-radius: 16px;
  background: transparent;
  color: var(--muted);
  font-size: 0.67rem;
  font-weight: 800;
}
.bottom-nav button.active {
  color: var(--ink);
  background: #e6f3f1;
}
.nav-book {
  position: relative;
}
.nav-book i {
  display: grid;
  width: 34px;
  height: 34px;
  margin: -28px auto 1px;
  place-items: center;
  border: 5px solid var(--cream);
  border-radius: 50%;
  background: var(--coral);
  color: #fff;
  font-style: normal;
  font-size: 1.3rem;
}
.nav-book span {
  display: block;
}
.cart-drawer {
  position: fixed;
  z-index: 120;
  top: 0;
  right: 0;
  width: min(420px, 100%);
  height: 100vh;
  padding: 30px;
  transform: translateX(105%);
  transition: transform 0.25s ease;
  background: var(--paper);
  box-shadow: -25px 0 70px #0003;
}
.cart-drawer.open {
  transform: none;
}
.drawer-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.drawer-head span {
  color: var(--aqua);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}
.drawer-head h2 {
  margin: 2px 0;
  font:
    700 2.5rem/1 "Bricolage Grotesque",
    sans-serif;
}
.drawer-head button,
.success-dialog > button:first-child {
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: var(--cream);
  font-size: 1.4rem;
}
.cart-items {
  margin: 28px 0;
}
.empty-cart {
  color: var(--muted);
}
.cart-line {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 10px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}
.cart-line button {
  border: 0;
  background: none;
  color: var(--coral);
}
.cart-total {
  display: flex;
  justify-content: space-between;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}
.scrim {
  position: fixed;
  z-index: 110;
  inset: 0;
  display: none;
  background: #10191880;
}
.scrim.show {
  display: block;
}
.success-dialog {
  position: fixed;
  z-index: 150;
  left: 50%;
  top: 50%;
  width: min(420px, calc(100% - 30px));
  padding: 30px;
  border: 0;
  border-radius: 28px;
  background: var(--paper);
  box-shadow: var(--shadow);
  transform: translate(-50%, -50%);
}
.success-dialog[hidden] {
  display: none;
}
.success-dialog > button:first-child {
  position: absolute;
  right: 18px;
  top: 18px;
}
.success-dialog > span {
  color: var(--aqua);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}
.success-dialog h2 {
  margin: 12px 0;
  font:
    700 2.2rem/1.02 "Bricolage Grotesque",
    sans-serif;
}
.success-dialog p {
  color: var(--muted);
}
.toast {
  position: fixed;
  z-index: 200;
  left: 50%;
  bottom: 100px;
  max-width: calc(100% - 30px);
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  box-shadow: var(--shadow);
  font-size: 0.75rem;
  font-weight: 700;
  opacity: 0;
  transform: translate(-50%, 20px);
  transition: 0.2s;
}
.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}
@media (max-width: 950px) {
  .app-shell {
    display: block;
    padding-top: 29px;
  }
  .desktop-rail {
    display: none;
  }
  .app {
    min-height: calc(100vh - 29px);
    padding-inline: max(16px, calc((100% - 680px) / 2));
  }
  .app-header {
    margin-inline: calc(-1 * max(16px, calc((100% - 680px) / 2)));
    padding-inline: max(16px, calc((100% - 680px) / 2));
  }
  .bottom-nav {
    right: 50%;
    width: min(650px, calc(100% - 24px));
    transform: translateX(50%);
  }
}
@media (max-width: 620px) {
  .view {
    padding-top: 25px;
  }
  .app-header {
    min-height: 72px;
  }
  .app-header img {
    width: 112px;
  }
  .avatar {
    width: 38px;
    height: 38px;
  }
  .welcome {
    align-items: flex-start;
  }
  .welcome h2,
  .page-heading h2 {
    font-size: 2.55rem;
  }
  .location {
    display: none;
  }
  .next-care {
    grid-template-columns: 66px 1fr;
  }
  .care-photo img {
    width: 66px;
    height: 66px;
  }
  .next-care > button {
    grid-column: 2;
    justify-self: start;
    padding: 0;
  }
  .quick-actions {
    gap: 8px;
  }
  .quick-actions button {
    min-height: 126px;
    padding: 13px;
  }
  .product-scroll {
    display: flex;
    margin-right: -16px;
    padding-right: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }
  .product-card {
    min-width: 205px;
    scroll-snap-align: start;
  }
  .birthday-banner {
    grid-template-columns: 1fr 120px;
  }
  .shop-grid {
    grid-template-columns: 1fr;
  }
  .shop-product {
    grid-template-columns: 125px 1fr;
  }
  .shop-product .product-image {
    height: 145px;
  }
  .booking-form fieldset {
    padding: 18px 13px;
  }
  .club-hero {
    padding: 26px 22px;
  }
  .profile-data {
    grid-template-columns: 1fr;
  }
  .history p {
    grid-template-columns: 50px 1fr;
  }
  .history p small {
    grid-column: 2;
  }
  .bottom-nav {
    bottom: 8px;
    border-radius: 21px;
  }
  .bottom-nav button {
    font-size: 0.61rem;
  }
  .cart-drawer {
    padding: 24px;
  }
  .demo-ribbon {
    font-size: 0.6rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
