* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --green: #008f8d;
  --green-l: #eaf7f3;
  --green-d: #007775;
  --mint: #bfe7df;
  --coral: #d66c43;
  --bg: #f7f7f9;
  --panel: #f7f7f9;
  --panel-border: rgba(255, 255, 255, 0.88);
  --text: #211f20;
  --muted: #9d9d9f;
  --border: #e5e5e7;
  --shadow: 0 30px 90px rgba(28, 31, 31, 0.22);
}

html,
body {
  min-height: 100%;
  background: linear-gradient(180deg, #fbfbfb 0, #e7e8e7 100%);
  font-family: "Fredoka One", cursive;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  color: var(--text);
}

button,
input,
textarea {
  font: inherit;
}

button {
  -webkit-appearance: none;
  appearance: none;
}

.app-shell {
  min-height: 100svh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 32px 18px;
}

.app-frame {
  width: min(100%, 430px);
  min-height: calc(100svh - 64px);
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: 42px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  padding-bottom: 118px;
}

.app-frame::before {
  display: none;
}

.home-page,
.page {
  position: relative;
  z-index: 1;
}

.home-page {
  min-height: calc(100svh - 64px);
  padding: 78px 28px 24px;
}

.top-area {
  padding-top: 0;
  position: relative;
}

.logo {
  display: block;
  text-align: left;
  font-size: 46px;
  line-height: 1;
  color: var(--coral);
  letter-spacing: 0;
  margin-bottom: 34px;
}

.search {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  min-height: 62px;
  border: none;
  border-radius: 999px;
  padding: 0 24px;
  background: #fff;
  box-shadow: 0 14px 32px rgba(39, 38, 42, 0.08);
}

.search svg {
  flex-shrink: 0;
  color: #b8b9bc;
  width: 24px;
  height: 24px;
}

.search input {
  width: 100%;
  border: none;
  outline: none;
  background: transparent;
  color: var(--text);
  font-family: "DM Sans", sans-serif;
  font-size: 18px;
  font-weight: 500;
}

.search input::placeholder {
  color: #c9c9cc;
}

.lock-btn {
  position: absolute;
  top: -10px;
  right: 0;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: none;
  background: #fff;
  box-shadow: 0 13px 30px rgba(40, 39, 43, 0.11);
  color: var(--coral);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.16s ease, background 0.16s ease;
}

.lock-btn:hover {
  background: #fff;
  transform: translateY(-1px);
}

.cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 14px;
  margin-top: 42px;
}

.cat-card {
  width: 100%;
  aspect-ratio: 1 / 1.03;
  min-height: 0;
  padding: 0;
  border: none;
  border-radius: 31px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: block;
  text-align: left;
  box-shadow: none;
  transition: transform 0.18s ease, filter 0.18s ease, box-shadow 0.18s ease;
  order: var(--card-order);
}

.cat-card:hover {
  transform: translateY(-2px) scale(1.01);
  filter: saturate(1.02);
  box-shadow: 0 14px 28px rgba(45, 44, 48, 0.08);
}

.cat-card:active {
  transform: scale(0.99);
}

.wm {
  display: none;
}

.cc {
  position: absolute;
  inset: 28px 24px 24px;
  z-index: 1;
  display: block;
  color: var(--card-text);
}

.cc svg {
  display: block;
  width: 29px;
  height: 29px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.44);
  color: var(--icon-text);
  box-sizing: content-box;
}

.cc svg path,
.cc svg circle,
.cc svg rect {
  stroke: currentColor;
}

.cc span {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  max-width: 100%;
  font-size: 21px;
  line-height: 1.14;
  overflow-wrap: break-word;
}

.c1 {
  --card-order: 1;
  --card-text: #913f31;
  --icon-text: #c65b39;
  background: #ffd0c8;
}

.c2 {
  --card-order: 2;
  --card-text: #006f72;
  --icon-text: #008d8e;
  background: #c7ece8;
}

.c3 {
  --card-order: 3;
  --card-text: #8b6a16;
  --icon-text: #b99531;
  background: #fff0c7;
}

.c4 {
  --card-order: 5;
  --card-text: #111015;
  --icon-text: #8431a6;
  background: #e9cdf6;
}

.c5 {
  --card-order: 4;
  --card-text: #92382d;
  --icon-text: #c65337;
  background: #ffc8c0;
}

.c6 {
  --card-order: 6;
  --card-text: #007a7e;
  --icon-text: #008d8e;
  background: #c4ebe5;
}

.page {
  display: none;
  min-height: calc(100svh - 56px);
  padding: 20px 22px 24px;
}

.page.show {
  display: block;
}

.home-page.hide {
  display: none;
}

.ph {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding-bottom: 14px;
  margin-bottom: 6px;
  border-bottom: 1px solid rgba(181, 205, 199, 0.8);
}

.results-head {
  flex: 1;
  min-width: 0;
}

.back {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid rgba(208, 214, 211, 0.95);
  background: rgba(255, 255, 255, 0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
  flex-shrink: 0;
}

.ph-title {
  font-size: 20px;
  color: var(--text);
  margin-bottom: 10px;
}

.results-search {
  padding: 12px 14px;
  border-radius: 14px;
}

.results-search input {
  font-size: 15px;
}

.rlist {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 12px;
}

.rcard {
  display: flex;
  gap: 12px;
  padding: 13px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(219, 226, 223, 0.95);
  cursor: pointer;
  transition: transform 0.16s ease, background 0.16s ease;
}

.rcard:hover {
  background: rgba(244, 251, 248, 0.98);
  transform: translateY(-1px);
}

.rthumb {
  width: 78px;
  height: 78px;
  border-radius: 16px;
  object-fit: cover;
  flex-shrink: 0;
  background: #e0e0e0;
}

.rinfo {
  flex: 1;
  min-width: 0;
}

.rname {
  font-size: 16px;
  margin-bottom: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.rloc {
  font-size: 12px;
  color: #949a98;
  margin-bottom: 7px;
}

.rtags {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}

.rtag {
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: #666;
  background: rgba(255, 255, 255, 0.86);
}

.rscore {
  flex-shrink: 0;
  display: flex;
  align-items: flex-start;
}

.rsv {
  display: flex;
  align-items: center;
  gap: 3px;
  background: var(--green-l);
  border-radius: 999px;
  padding: 4px 8px;
  font-size: 12px;
}

.rst {
  color: #f59e0b;
  font-size: 11px;
}

.blocked-badge {
  font-size: 10px;
  background: #fef3c7;
  color: #92400e;
  border: 1px solid #fde68a;
  padding: 2px 7px;
  border-radius: 20px;
  margin-left: 5px;
  vertical-align: middle;
}

.bottom-nav {
  position: fixed;
  left: 50%;
  bottom: 32px;
  transform: translateX(-50%);
  width: min(100%, 430px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 8px 24px calc(10px + env(safe-area-inset-bottom));
  border-radius: 0 0 42px 42px;
  background: rgba(255, 255, 255, 0.96);
  border: none;
  border-top: 1px solid #e5e5e8;
  box-shadow: none;
  backdrop-filter: blur(18px);
  z-index: 1000;
}

.nav-item {
  min-height: 66px;
  border: none;
  border-radius: 0;
  background: transparent;
  color: #b9b9bc;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  transition: color 0.18s ease, background 0.18s ease, transform 0.18s ease;
  font-family: "Fredoka One", cursive;
  position: relative;
}

.nav-item svg {
  width: 30px;
  height: 30px;
}

.nav-item span {
  font-size: 13px;
  line-height: 1;
}

.nav-item:hover {
  transform: translateY(-1px);
}

.nav-item.active {
  color: var(--coral);
  background: transparent;
}

.nav-item.featured.active {
  background: transparent;
}

.overlay {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(3px);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}

.overlay.open {
  opacity: 1;
  pointer-events: all;
}

.sheet {
  background: #fff;
  border-radius: 22px 22px 0 0;
  width: 100%;
  max-width: 560px;
  max-height: 92vh;
  overflow-y: auto;
  scrollbar-width: none;
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.sheet::-webkit-scrollbar {
  display: none;
}

.overlay.open .sheet {
  transform: translateY(0);
}

.hdl {
  width: 36px;
  height: 4px;
  border-radius: 2px;
  background: #e0e0e0;
  margin: 13px auto 0;
}

.gal {
  position: relative;
  height: 220px;
  margin-top: 11px;
  overflow: hidden;
}

.gal img.main {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gcl {
  position: absolute;
  top: 9px;
  right: 9px;
  width: 29px;
  height: 29px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.3);
  border: none;
  color: #fff;
  font-size: 13px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gth {
  position: absolute;
  bottom: 9px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
}

.gth img {
  width: 40px;
  height: 40px;
  border-radius: 7px;
  object-fit: cover;
  cursor: pointer;
  border: 2.5px solid rgba(255, 255, 255, 0.3);
  transition: border-color 0.15s;
  flex-shrink: 0;
}

.gth img.on {
  border-color: #fff;
}

.sbody {
  padding: 16px 17px 90px;
}

.stop {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 3px;
}

.sname {
  font-size: 20px;
  line-height: 1.2;
}

.spill {
  display: flex;
  align-items: center;
  gap: 3px;
  background: var(--green-l);
  border-radius: 8px;
  padding: 5px 9px;
  font-size: 12px;
  flex-shrink: 0;
}

.spill .st {
  color: #f59e0b;
}

.srevs {
  font-size: 12px;
  color: #aaa;
  margin-bottom: 9px;
}

.tabs {
  display: flex;
  border-bottom: 2px solid #f0f0f0;
  margin-bottom: 14px;
}

.tab {
  flex: 1;
  padding: 9px 4px;
  text-align: center;
  font-size: 13px;
  cursor: pointer;
  color: #aaa;
  border: none;
  background: transparent;
  font-family: "Fredoka One", cursive;
  border-bottom: 2.5px solid transparent;
  margin-bottom: -2px;
  transition: color 0.15s, border-color 0.15s;
}

.tab.active {
  color: var(--green);
  border-bottom-color: var(--green);
}

.sdesc {
  font-size: 13.5px;
  color: #666;
  line-height: 1.65;
  margin-bottom: 14px;
}

.ibox {
  background: #f5f5f5;
  border-radius: 12px;
  padding: 13px;
  margin-bottom: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.irow {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.iico {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--green-l);
  border: 1px solid #eee;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}

.ilbl {
  font-size: 9.5px;
  color: #bbb;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 1px;
}

.ival {
  font-size: 13px;
  color: var(--text);
}

.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 18px;
}

.spill2 {
  font-size: 12px;
  padding: 4px 11px;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  color: #444;
}

.pricebox {
  background: #fff7ed;
  border: 1px solid #fed7aa;
  border-radius: 14px;
  padding: 14px;
  margin-bottom: 18px;
}

.pricebox-title {
  font-size: 13px;
  color: #9a3412;
  margin-bottom: 10px;
}

.price-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
  color: var(--text);
  padding-bottom: 8px;
  border-bottom: 1px dashed rgba(154, 52, 18, 0.18);
}

.price-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.price-row strong {
  color: #9a3412;
  font-size: 12.5px;
}

.ctas {
  display: flex;
  gap: 9px;
  margin-bottom: 22px;
}

.cbtn {
  flex: 1;
  padding: 14px;
  border-radius: 12px;
  font-size: 13.5px;
  font-family: "Fredoka One", cursive;
  border: none;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: opacity 0.15s, transform 0.15s;
}

.cbtn:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.cbtn-coral {
  background: var(--coral);
  color: #fff;
}

.cbtn-ghost {
  background: #fff;
  color: var(--text);
  border: 1.5px solid var(--border);
}

.blocked-notice {
  background: #fef3c7;
  border: 1px solid #fde68a;
  border-radius: 12px;
  padding: 14px 16px;
  text-align: center;
  margin-bottom: 16px;
}

.blocked-notice p {
  font-size: 13px;
  color: #92400e;
  line-height: 1.5;
}

.calnav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 11px;
}

.cnbtn {
  width: 31px;
  height: 31px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: #fff;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cnbtn:hover {
  background: var(--green-l);
}

.calmth {
  font-size: 14px;
  color: var(--text);
}

.calgrid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
  text-align: center;
}

.cdow {
  font-size: 10px;
  color: #aaa;
  padding: 3px 0;
}

.cday {
  aspect-ratio: 1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  cursor: pointer;
  border: none;
  background: transparent;
  font-family: "Fredoka One", cursive;
  color: var(--text);
  position: relative;
  transition: background 0.12s;
}

.cday:hover:not(.dis):not(.emp) {
  background: var(--green-l);
}

.cday.today {
  border: 1.5px solid var(--green);
  color: var(--green);
}

.cday.sel {
  background: var(--green);
  color: #fff !important;
}

.cday.dis {
  color: #ccc;
  cursor: default;
}

.cday.emp {
  cursor: default;
}

.cday.hapt::after {
  content: "";
  position: absolute;
  bottom: 3px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--coral);
}

.cday.sel.hapt::after {
  background: #fff;
}

.slotwrap {
  margin-top: 13px;
  display: none;
}

.slottitle {
  font-size: 12px;
  color: #888;
  margin-bottom: 7px;
}

.slotgrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}

.slot {
  padding: 8px 4px;
  border-radius: 9px;
  border: 1.5px solid var(--border);
  background: #fff;
  font-size: 12px;
  font-family: "Fredoka One", cursive;
  color: #444;
  cursor: pointer;
  text-align: center;
  transition: all 0.15s;
}

.slot:hover:not([disabled]) {
  border-color: var(--green);
  color: var(--green);
}

.slot.sel {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}

.slot.booked {
  background: #fef2f2;
  color: #f87171;
  border-color: #fecaca;
  cursor: default;
  font-size: 10.5px;
}

.slot.past {
  background: #f5f5f5;
  color: #ccc;
  cursor: default;
  border-color: #f0f0f0;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.cwrap,
.nwrap {
  display: none;
  margin-top: 13px;
  animation: fadeUp 0.2s ease;
}

.cwrap.show,
.nwrap.show {
  display: block;
}

.cfield {
  margin-bottom: 9px;
}

.clbl {
  font-size: 11px;
  color: #888;
  margin-bottom: 4px;
  display: block;
}

.cinput {
  width: 100%;
  padding: 10px 12px;
  border-radius: 11px;
  border: 1.5px solid var(--border);
  font-size: 13.5px;
  font-family: "Fredoka One", cursive;
  color: var(--text);
  outline: none;
  background: #fff;
  transition: border-color 0.15s;
}

.cinput:focus {
  border-color: var(--green);
}

.cinput::placeholder {
  color: #bbb;
}

.cinput.err {
  border-color: #f87171;
  background: #fef2f2;
}

.cerr {
  font-size: 11px;
  color: #f87171;
  margin-top: 3px;
  display: none;
}

.cerr.show {
  display: block;
}

textarea.cinput {
  resize: none;
}

.cfmbtn {
  width: 100%;
  padding: 13px;
  background: var(--green);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 14px;
  font-family: "Fredoka One", cursive;
  cursor: pointer;
  margin-top: 13px;
  transition: opacity 0.15s, transform 0.15s;
  display: none;
}

.cfmbtn.show {
  display: block;
}

.cfmbtn:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.cfmbtn:disabled {
  background: #aaa;
  cursor: default;
}

.spin {
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: sp 0.7s linear infinite;
  vertical-align: middle;
  margin-right: 5px;
}

@keyframes sp {
  to {
    transform: rotate(360deg);
  }
}

.toast {
  position: fixed;
  left: 50%;
  bottom: calc(98px + env(safe-area-inset-bottom));
  transform: translateX(-50%) translateY(80px);
  background: #1a1a1a;
  color: #fff;
  padding: 12px 22px;
  border-radius: 50px;
  font-family: "Fredoka One", cursive;
  font-size: 13.5px;
  z-index: 999;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  pointer-events: none;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
}

.login-ov {
  position: fixed;
  inset: 0;
  z-index: 600;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}

.login-ov.open {
  opacity: 1;
  pointer-events: all;
}

.login-sh {
  width: 100%;
  max-width: 560px;
  background: #fff;
  border-radius: 24px 24px 0 0;
  padding: 16px 20px 136px;
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.login-ov.open .login-sh {
  transform: translateY(0);
}

.lhdl {
  width: 42px;
  height: 4px;
  border-radius: 999px;
  background: #ddd;
  margin: 0 auto 14px;
}

.ltitle {
  font-size: 30px;
  color: var(--coral);
  text-align: center;
  margin-bottom: 4px;
}

.lsub {
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  margin-bottom: 18px;
}

.llbl {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 5px;
}

.linput {
  width: 100%;
  padding: 12px 14px;
  border-radius: 13px;
  border: 1.5px solid var(--border);
  font-size: 14px;
  font-family: "Fredoka One", cursive;
  color: var(--text);
  outline: none;
  background: #fff;
  margin-bottom: 12px;
}

.linput:focus {
  border-color: var(--green);
}

.lbtn {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 14px;
  background: var(--green);
  color: #fff;
  font-family: "Fredoka One", cursive;
  font-size: 14px;
  cursor: pointer;
  margin-top: 6px;
}

.lerr {
  display: none;
  text-align: center;
  color: #ef4444;
  font-size: 12px;
  margin-top: 10px;
}

.lhint {
  margin-top: 14px;
  text-align: center;
  font-size: 12px;
  color: var(--muted);
}

.lhint a {
  color: var(--green-d);
  text-decoration: none;
}

@media (max-width: 680px) {
  .app-shell {
    padding: 0;
  }

  .app-frame {
    width: 100%;
    min-height: 100svh;
    border-radius: 0;
    border: none;
    box-shadow: none;
    background: var(--panel);
    padding-bottom: 112px;
  }

  .home-page,
  .page {
    padding-left: 26px;
    padding-right: 26px;
  }

  .home-page {
    padding-top: 74px;
    padding-bottom: 20px;
  }

  .page {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .top-area {
    padding-top: 0;
  }

  .logo {
    font-size: 46px;
    margin-bottom: 32px;
  }

  .search input {
    font-size: 17px;
  }

  .cards {
    gap: 16px 14px;
    margin-top: 42px;
  }

  .cat-card {
    border-radius: 29px;
  }

  .cc {
    inset: 27px 22px 23px;
  }

  .cc svg {
    width: 28px;
    height: 28px;
    padding: 13px;
  }

  .cc span {
    font-size: 20px;
  }

  .bottom-nav {
    width: 100%;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    bottom: 0;
    border-radius: 0;
    padding: 8px 24px calc(10px + env(safe-area-inset-bottom));
    gap: 0;
  }

  .nav-item {
    min-height: 64px;
  }

  .nav-item svg {
    width: 29px;
    height: 29px;
  }

  .nav-item span {
    font-size: 13px;
  }

  .toast {
    bottom: calc(88px + env(safe-area-inset-bottom));
    max-width: calc(100% - 32px);
    white-space: normal;
    text-align: center;
  }

  .sheet,
  .login-sh {
    max-width: none;
  }
}

@media (max-width: 680px) and (max-height: 880px) {
  .home-page {
    padding-top: 62px;
  }

  .logo {
    margin-bottom: 28px;
  }

  .cards {
    margin-top: 36px;
  }

  .cat-card {
    aspect-ratio: 1 / 0.98;
  }

  .cc {
    inset: 25px 22px 21px;
  }

  .cc svg {
    width: 27px;
    height: 27px;
    padding: 12px;
  }
}

@media (max-width: 380px) {
  .home-page,
  .page {
    padding-left: 18px;
    padding-right: 18px;
  }

  .home-page {
    padding-top: 58px;
  }

  .logo {
    font-size: 42px;
    margin-bottom: 26px;
  }

  .lock-btn {
    width: 54px;
    height: 54px;
  }

  .search {
    min-height: 58px;
    padding: 0 20px;
  }

  .cards {
    gap: 12px;
    margin-top: 34px;
  }

  .cat-card {
    border-radius: 25px;
  }

  .cc {
    inset: 22px 18px 19px;
  }

  .cc svg {
    width: 25px;
    height: 25px;
    padding: 12px;
    border-radius: 16px;
  }

  .cc span {
    font-size: 18px;
  }

  .bottom-nav {
    padding-left: 16px;
    padding-right: 16px;
  }
}
