html {
  scrollbar-width: thin;
  scrollbar-color: #ff783f #eef0f6;
}

* {
  scrollbar-width: thin;
  scrollbar-color: #ff783f #eef0f6;
}

*::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

*::-webkit-scrollbar-track {
  background: #eef0f6;
  border-radius: 999px;
}

*::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #ff783f, #ffbc04);
  border: 2px solid #eef0f6;
  border-radius: 999px;
  min-height: 48px;
}

*::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #ff6830, #ffb000);
}

*::-webkit-scrollbar-thumb:active {
  background: linear-gradient(180deg, #ff6830, #ffb000);
}

*::-webkit-scrollbar-corner {
  background: transparent;
}

@media (pointer: fine) {
  *::-webkit-scrollbar-thumb {
    transition: background 0.2s ease;
  }
  *::-webkit-scrollbar-track:hover {
    background: #e4e7f0;
  }
}
body {
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", sans-serif;
  padding-top: 84px;
  /*background-image: linear-gradient(to right, #ffffff, #fbfbfc, #f6f8fa, #f1f5f7, #ffffff);*/
}

body.header-menu-open {
  overflow: hidden;
}

header.site-header {
  top: 0;
  position: fixed;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(234, 235, 243, 0.9);
  z-index: 100;
}
header.site-header a,
header.site-header .install {
  text-decoration: none;
  color: #252f57;
}
header.site-header .container {
  position: relative;
  padding: 14px 24px;
  box-sizing: border-box;
  display: flex;
  width: 100%;
  max-width: 1320px !important;
  margin: 0 auto;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
header.site-header .app-logo {
  flex-shrink: 0;
}
header.site-header .app-logo img {
  display: block;
  max-width: 54px;
  height: auto;
}
header.site-header .header-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  margin-left: auto;
  padding: 0;
  border: 1px solid #eaebf3;
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}
header.site-header .header-burger span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  border-radius: 2px;
  background: #252f57;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
header.site-header .header-burger:hover {
  border-color: #d8dbe8;
  background: #fafbff;
}
header.site-header.is-open .header-burger span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
header.site-header.is-open .header-burger span:nth-child(2) {
  opacity: 0;
}
header.site-header.is-open .header-burger span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
header.site-header .header-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
  min-width: 0;
  justify-content: flex-end;
}
header.site-header .header-nav {
  flex-shrink: 0;
}
header.site-header .main-menu {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}
header.site-header .main-menu li {
  margin: 0;
}
header.site-header .main-menu a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 500;
  color: #252f57;
  transition: background 0.2s ease, color 0.2s ease;
}
header.site-header .main-menu a i {
  font-size: 16px;
  line-height: 1;
}
header.site-header .main-menu a:hover {
  color: #ff7e3a;
  background: rgba(255, 126, 58, 0.08);
}
header.site-header .main-menu a.active {
  color: #252f57;
  background: #fff3c4;
  box-shadow: inset 0 0 0 1px rgba(255, 190, 4, 0.35);
}
header.site-header .search-catalog {
  position: relative;
  flex: 1;
  max-width: 360px;
  min-width: 180px;
  margin: 0;
}
header.site-header form.search-catalog input {
  width: 100%;
  border: 1px solid #eaebf3;
  color: #353644;
  border-radius: 999px;
  padding: 11px 18px 11px 44px;
  box-sizing: border-box;
  background: #fff;
  font: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
header.site-header form.search-catalog input:focus {
  outline: none;
  border-color: #ffd86b;
  box-shadow: 0 0 0 3px rgba(255, 234, 116, 0.45);
}
header.site-header form.search-catalog input::placeholder {
  color: #8b90a7;
}
header.site-header form.search-catalog button {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: transparent;
  color: #6b728f;
  padding: 0;
  cursor: pointer;
  line-height: 1;
}
header.site-header .header-lang {
  position: relative;
  flex-shrink: 0;
}
header.site-header .header-lang__trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  height: 42px;
  padding: 0 12px 0 14px;
  border: 1px solid #eaebf3;
  border-radius: 999px;
  background: #fff;
  color: #252f57;
  font: inherit;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(37, 47, 87, 0.06);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
header.site-header .header-lang__trigger:hover {
  border-color: rgba(255, 190, 4, 0.55);
  background: #fffdf2;
}
header.site-header .header-lang__trigger:focus-visible {
  outline: 2px solid rgba(255, 190, 4, 0.85);
  outline-offset: 2px;
}
header.site-header .header-lang.is-open .header-lang__trigger {
  border-color: rgba(255, 190, 4, 0.75);
  background: #fffdf2;
  box-shadow: 0 8px 20px rgba(37, 47, 87, 0.1);
}
header.site-header .header-lang__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-left: auto;
  font-size: 16px;
  line-height: 1;
  color: #6b728f;
}
header.site-header .header-lang__current {
  max-width: 120px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
header.site-header .header-lang__chevron {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  line-height: 1;
  color: #6b728f;
  transition: transform 0.2s ease;
}
header.site-header .header-lang.is-open .header-lang__chevron {
  transform: rotate(180deg);
}
header.site-header .header-lang__menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 30;
  min-width: 196px;
  max-height: 320px;
  margin: 0;
  padding: 8px;
  list-style: none;
  border: 1px solid #eaebf3;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 16px 40px rgba(37, 47, 87, 0.14);
  overflow-y: auto;
  overscroll-behavior: contain;
}
header.site-header .header-lang__menu[hidden] {
  display: none;
}
header.site-header .header-lang__option {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 10px 12px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: #252f57;
  font: inherit;
  font-size: 14px;
  text-align: left;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}
header.site-header .header-lang__option:hover {
  background: #f5f7fb;
}
header.site-header .header-lang__option:focus-visible {
  outline: 2px solid rgba(255, 190, 4, 0.85);
  outline-offset: -2px;
}
header.site-header .header-lang__option.is-active {
  background: #fff8cf;
  color: #252f57;
  font-weight: 600;
}
header.site-header .header-lang__label {
  font-size: 11px;
  font-weight: 600;
  color: #6b728f;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
header.site-header .header-lang__select {
  min-width: 118px;
  height: 40px;
  border: 1px solid #eaebf3;
  border-radius: 12px;
  padding: 0 12px;
  background: #fff;
  font: inherit;
  color: #252f57;
  cursor: pointer;
}
header.site-header .install {
  flex-shrink: 0;
  background: linear-gradient(135deg, #ff783f, #ffbc04);
  padding: 0 18px;
  border-radius: 14px;
  color: white !important;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 46px;
  font-weight: 600;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  box-shadow: 0 8px 18px rgba(255, 120, 63, 0.22);
}
header.site-header .install img {
  width: 24px;
  height: 24px;
  margin: 0;
}
header.site-header .install:hover {
  color: white !important;
  background: #ff783f;
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(255, 120, 63, 0.28);
}
@media (max-width: 1024px) {
  header.site-header .header-burger {
    display: flex;
  }
  header.site-header .header-wrapper {
    position: fixed;
    top: 73px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    padding: 18px 20px 24px;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid #eaebf3;
    box-shadow: 0 18px 30px rgba(37, 47, 87, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    pointer-events: none;
  }
  header.site-header.is-open .header-wrapper {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }
  header.site-header .main-menu {
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
  }
  header.site-header .main-menu a {
    width: 100%;
  }
  header.site-header .search-catalog {
    max-width: none;
    min-width: 0;
    width: 100%;
  }
  header.site-header .install {
    width: 100%;
    justify-content: center;
  }
  header.site-header .header-lang {
    width: 100%;
  }
  header.site-header .header-lang__trigger {
    width: 100%;
    justify-content: center;
  }
  header.site-header .header-lang__menu {
    left: 0;
    right: 0;
    min-width: 0;
  }
}
@media (max-width: 640px) {
  header.site-header .container {
    padding: 12px 16px;
  }
  header.site-header .header-wrapper {
    top: 69px;
  }
}

footer {
  background: #fbfbfb;
  padding: 30px 0 24px;
}
footer .container {
  padding: 20px 0;
  margin: 0 auto;
  display: flex;
  gap: 50px;
  justify-content: space-between;
  box-sizing: border-box;
}
footer .container img {
  cursor: pointer;
  opacity: 0.8;
}
footer .container img:hover {
  opacity: 1;
}
footer .container .bottom-menu {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
}
footer .container .bottom-menu > div {
  width: 250px;
}
footer .container .bottom-menu ul {
  list-style: none;
}
footer .container .bottom-menu ul li {
  text-align: left;
  margin-bottom: 10px;
}
footer .container .bottom-menu ul a {
  color: black;
  text-decoration: none;
}
footer .container .bottom-menu ul a:hover {
  color: #e70047;
}
footer .container .bottom-menu ul:last-child {
  margin-right: 0;
}
footer a {
  text-decoration: none;
}
footer .footer__bottom {
  max-width: 1200px;
  margin: 8px auto 0;
  padding: 20px 20px 0;
  border-top: 1px solid #eaebf3;
  text-align: center;
}
footer .footer__copyright {
  margin: 0;
  color: #6b728f;
  font-size: 0.875rem;
  line-height: 1.5;
}

.catalogue-wrapper {
  background-size: 25%;
  height: 100px;
  margin-bottom: 70px;
}
.catalogue-wrapper .container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.catalogue-search {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -28px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  z-index: 2;
}
.catalogue-search input {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
  box-shadow: 0 8px 24px rgba(37, 47, 87, 0.08);
  border: 1px solid #eaebf3;
  border-radius: 999px;
  padding: 16px 52px 16px 22px;
  font: inherit;
  color: #353644;
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.catalogue-search input:focus {
  outline: none;
  border-color: #ffd86b;
  box-shadow: 0 0 0 3px rgba(255, 234, 116, 0.45), 0 8px 24px rgba(37, 47, 87, 0.08);
}
.catalogue-search input::placeholder {
  color: #8b90a7;
}
.catalogue-search button {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: transparent;
  color: #6b728f;
  padding: 0;
  cursor: pointer;
  line-height: 1;
}
.catalogue-search button i {
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .catalogue-search {
    bottom: -22px;
    width: calc(100% - 8px);
  }
  .catalogue-search input {
    padding: 14px 48px 14px 18px;
    font-size: 0.9375rem;
  }
  .pets-page .catalogue-hero,
  .search-page .catalogue-hero {
    min-height: 88px;
    margin-bottom: 48px;
  }
}
.list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
  justify-items: stretch;
  align-items: stretch;
}

.card_pet {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  border: 1px solid #eaebf3;
  border-radius: 24px;
  overflow: hidden;
  text-align: left;
  box-shadow: 0 4px 18px rgba(37, 47, 87, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.card_pet:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 190, 4, 0.45);
  box-shadow: 0 16px 36px rgba(255, 120, 63, 0.14);
}
.card_pet__preview {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  padding: 36px 28px;
  text-decoration: none;
  overflow: hidden;
  transition: filter 0.25s ease;
}
.card_pet__preview::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 48px;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.35), transparent);
  pointer-events: none;
}
.card_pet:hover .card_pet__preview {
  filter: brightness(1.02);
}
.card_pet__img {
  width: 140px;
  height: 140px;
  object-fit: contain;
  transition: transform 0.3s ease;
  filter: drop-shadow(0 8px 16px rgba(27, 28, 42, 0.12));
}
.card_pet:hover .card_pet__img {
  transform: scale(1.06) translateY(-2px);
}
.card_pet__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 10px;
  padding: 18px 20px 20px;
  border-top: 1px solid rgba(234, 235, 243, 0.9);
  background: linear-gradient(180deg, #fff 0%, #fafbff 100%);
}
.card_pet__title {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.35;
  color: #1b1c2a;
}
.card_pet__title-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}
.card_pet__title-link:hover {
  color: #ff783f;
}
.card_pet__description, .card_pet .pet-description {
  flex: 1;
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: #6b728f;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
}
.card_pet__actions {
  display: flex;
  gap: 10px;
  margin-top: auto;
  padding-top: 6px;
}
.card_pet__view {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 14px;
  border: 1px solid #eaebf3;
  background: #fff;
  color: #252f57;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.card_pet__view:hover {
  border-color: #ffd86b;
  background: #fffdf5;
  color: #ff783f;
}
.card_pet__add, .card_pet .add-pet {
  flex: 1;
  min-width: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 14px;
  border: none;
  border-radius: 14px;
  background: linear-gradient(135deg, #ff783f, #ffbc04);
  color: #fff;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(255, 120, 63, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.card_pet__add:hover, .card_pet .add-pet:hover {
  background: #ff783f;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(255, 120, 63, 0.28);
}
.card_pet__add.disabled, .card_pet .disabled.add-pet, .card_pet__add.added, .card_pet .added.add-pet {
  pointer-events: none;
  background: #f4f0fb;
  color: #7e7e7e;
  box-shadow: none;
  transform: none;
}

.catalogue-grid {
  margin-bottom: 100px;
}
.catalogue-grid .container {
  position: relative;
  margin: 0 auto;
}
.catalogue-grid .container ul {
  display: grid;
  grid-gap: 28px;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}
.catalogue-grid .container.items-grid ul {
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}

@media (max-width: 640px) {
  .list {
    grid-template-columns: 1fr;
  }
  .card_pet__actions {
    flex-direction: column;
  }
  .card_pet__view,
  .card_pet__add,
  .card_pet .add-pet {
    width: 100%;
  }
}
.catalogue-view-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  margin: 0;
  border: 1px solid #eaebf3;
  border-radius: 14px;
  background: #f4f6fb;
}
.catalogue-view-toggle__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 16px;
  border: none;
  border-radius: 11px;
  background: transparent;
  color: #6b728f;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}
.catalogue-view-toggle__btn i {
  font-size: 1rem;
  line-height: 1;
}
.catalogue-view-toggle__btn:hover:not(.is-active) {
  color: #ff783f;
}
.catalogue-view-toggle__btn.is-active {
  background: #fff;
  color: #252f57;
  box-shadow: 0 2px 10px rgba(37, 47, 87, 0.1);
}
.catalogue-view-toggle__btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 234, 116, 0.55);
}

.catalogue-view-toggle-wrap {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 28px;
}

.pets-page .catalogue-hero {
  position: relative;
  min-height: 100px;
  margin-bottom: 56px;
}
.pets-page .catalogue-hero .container {
  position: relative;
}
.pets-page .catalogue-ad {
  margin: 0 0 40px;
}
.pets-page .catalogue-ad__inner {
  text-align: center;
}
.pets-page .catalogue-heading {
  margin-bottom: 8px;
}
.pets-page .catalogue-heading .container {
  width: 100%;
  max-width: 1200px;
}
.pets-page .catalogue-heading .container p {
  margin-bottom: 28px;
}
.pets-page .catalogue-heading .container ul.tags {
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 36px;
  padding: 0;
  list-style: none;
}
.pets-page .catalogue-heading .container ul.tags li {
  margin-right: 0;
}
.pets-page .catalogue-grid {
  margin-bottom: 72px;
}
.pets-page .catalogue-grid__inner {
  width: 100%;
  max-width: 1200px;
}
.pets-page .catalogue-grid .wave {
  display: block;
  width: 100%;
  max-width: 1200px;
  height: auto;
  margin: 56px auto 0;
  opacity: 0.12;
}

.pets-catalogue__list.is-grid-view {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
  width: 100%;
}

.pets-catalogue__list.is-list-view {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  max-width: none;
  margin: 0;
}
.pets-catalogue__list.is-list-view .card_pet {
  flex-direction: row;
  align-items: stretch;
  max-width: none;
}
.pets-catalogue__list.is-list-view .card_pet:hover {
  transform: translateY(-2px);
}
.pets-catalogue__list.is-list-view .card_pet__preview {
  flex: 0 0 168px;
  min-height: auto;
  padding: 20px;
  border-right: none;
}
.pets-catalogue__list.is-list-view .card_pet__preview::after {
  display: none;
}
.pets-catalogue__list.is-list-view .card_pet__img {
  width: 108px;
  height: 108px;
}
.pets-catalogue__list.is-list-view .card_pet__body {
  flex: 1;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 24px;
  padding: 20px 24px;
  border-top: none;
  border-left: 1px solid rgba(234, 235, 243, 0.9);
}
.pets-catalogue__list.is-list-view .card_pet__title {
  flex: 1 1 160px;
  min-width: 120px;
  font-size: 1.2rem;
}
.pets-catalogue__list.is-list-view .card_pet__description, .pets-catalogue__list.is-list-view .card_pet .pet-description, .card_pet .pets-catalogue__list.is-list-view .pet-description {
  flex: 2 1 240px;
  min-width: 200px;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}
.pets-catalogue__list.is-list-view .card_pet__actions {
  flex: 0 0 auto;
  margin-top: 0;
  padding-top: 0;
  margin-left: auto;
}
.pets-catalogue__list.is-list-view .card_pet__add, .pets-catalogue__list.is-list-view .card_pet .add-pet, .card_pet .pets-catalogue__list.is-list-view .add-pet {
  flex: 0 1 auto;
  min-width: 160px;
}
.pets-catalogue__list.is-list-view .card_pet:hover .card_pet__img {
  transform: scale(1.04);
}

@media (max-width: 1024px) {
  .pets-page .catalogue-heading .container,
  .pets-page .catalogue-grid__inner {
    width: 90%;
  }
}
@media (max-width: 768px) {
  .pets-page .catalogue-hero {
    margin-bottom: 40px;
  }
  .pets-page .catalogue-view-toggle-wrap {
    margin-bottom: 20px;
  }
  .pets-page .catalogue-heading .container ul.tags {
    margin-bottom: 28px;
  }
  .pets-catalogue__list.is-grid-view {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .pets-catalogue__list.is-list-view .card_pet {
    flex-direction: column;
  }
  .pets-catalogue__list.is-list-view .card_pet__preview {
    flex: none;
    width: 100%;
    min-height: 160px;
  }
  .pets-catalogue__list.is-list-view .card_pet__body {
    flex-direction: column;
    align-items: stretch;
    border-left: none;
    border-top: 1px solid rgba(234, 235, 243, 0.9);
  }
  .pets-catalogue__list.is-list-view .card_pet__actions {
    margin-left: 0;
    width: 100%;
    flex-direction: column;
  }
  .pets-catalogue__list.is-list-view .card_pet__view, .pets-catalogue__list.is-list-view .card_pet__add, .pets-catalogue__list.is-list-view .card_pet .add-pet, .card_pet .pets-catalogue__list.is-list-view .add-pet {
    width: 100%;
  }
  .catalogue-view-toggle__btn span {
    display: none;
  }
  .catalogue-view-toggle__btn {
    min-width: 44px;
    padding: 0 12px;
  }
}
.newcomers-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  width: 100%;
  margin: 0 0 8px;
}

.card_newcomer {
  --pet-accent: #e1ddb0;
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 3px;
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(255, 190, 4, 0.55), rgba(255, 120, 63, 0.35), rgba(255, 255, 255, 0.9));
  box-shadow: 0 10px 30px rgba(37, 47, 87, 0.08);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.card_newcomer:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 44px rgba(255, 120, 63, 0.16);
}
.card_newcomer__inner {
  position: relative;
  display: flex;
  flex: 1;
  flex-direction: column;
  overflow: hidden;
  border-radius: 25px;
  background: #fff;
}
.card_newcomer__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  color: #ff783f;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 4px 14px rgba(255, 120, 63, 0.18);
}
.card_newcomer__badge i {
  font-size: 0.875rem;
  line-height: 1;
}
.card_newcomer__stage {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 220px;
  padding: 32px 24px 0;
  background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.65) 0%, transparent 55%), linear-gradient(165deg, rgba(255, 255, 255, 0.2) 0%, var(--pet-accent) 72%);
  overflow: hidden;
}
.card_newcomer__stage::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  top: -40px;
  right: -30px;
}
.card_newcomer__stage::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 56px;
  background: linear-gradient(to top, #fff, transparent);
  pointer-events: none;
}
.card_newcomer__link {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 100%;
  text-decoration: none;
}
.card_newcomer__img {
  width: min(100%, 200px);
  height: auto;
  max-height: 200px;
  aspect-ratio: 1;
  object-fit: contain;
  margin-bottom: -24px;
  filter: drop-shadow(0 14px 22px rgba(27, 28, 42, 0.18));
  transition: transform 0.35s cubic-bezier(0.34, 1.4, 0.64, 1);
}
.card_newcomer:hover .card_newcomer__img {
  transform: translateY(-8px) scale(1.05);
}
.card_newcomer__footer {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 10px;
  padding: 36px 24px 22px;
}
.card_newcomer__name {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.3;
  color: #1b1c2a;
}
.card_newcomer__name a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}
.card_newcomer__name a:hover {
  color: #ff783f;
}
.card_newcomer__desc {
  flex: 1;
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: #6b728f;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}
.card_newcomer__add {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 46px;
  margin-top: 4px;
  padding: 0 16px;
  border: none;
  border-radius: 14px;
  background: linear-gradient(135deg, #ff783f 0%, #ffbc04 100%);
  color: #fff;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(255, 120, 63, 0.24);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.card_newcomer__add i {
  font-size: 1rem;
  line-height: 1;
}
.card_newcomer__add:hover {
  background: #ff783f;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(255, 120, 63, 0.3);
}
.card_newcomer__add.disabled, .card_newcomer__add.added {
  pointer-events: none;
  background: #f4f0fb;
  color: #7e7e7e;
  box-shadow: none;
  transform: none;
}

.featured .newcomers-grid {
  margin-bottom: 0;
  width: 100%;
}
.featured .actions {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}
.featured .actions .more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: 0 28px;
  border-radius: 16px;
  background: #4896fa;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(72, 150, 250, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.featured .actions .more:hover {
  background: #3580e8;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(72, 150, 250, 0.34);
}

@media (max-width: 900px) {
  .newcomers-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }
}
@media (max-width: 560px) {
  .newcomers-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .card_newcomer__img {
    width: min(100%, 180px);
    max-height: 180px;
  }
}
.how-page {
  padding-bottom: 48px;
}
.how-page .catalogue-ad {
  margin: 0 0 40px;
}
.how-page .catalogue-ad__inner {
  text-align: center;
}

.how-hero {
  margin: 8px 0 40px;
}
.how-hero .container {
  width: 100%;
  max-width: 820px;
  text-align: center;
}
.how-hero h1 {
  margin: 0 0 16px;
  color: #0b182c;
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  line-height: 1.2;
}
.how-hero__intro {
  margin: 0 auto 28px;
  max-width: 680px;
  color: #2d3748;
  font-size: 1.05rem;
  line-height: 1.65;
}
.how-hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.how-hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 14px;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.how-hero__cta img {
  width: 22px;
  height: 22px;
}
.how-hero__cta--primary {
  background: linear-gradient(135deg, #ff783f, #ffbc04);
  color: #fff;
  box-shadow: 0 8px 20px rgba(255, 120, 63, 0.24);
}
.how-hero__cta--primary:hover {
  background: #ff783f;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(255, 120, 63, 0.3);
  color: #fff;
}
.how-hero__cta--secondary {
  border: 1px solid #eaebf3;
  background: #fff;
  color: #252f57;
}
.how-hero__cta--secondary:hover {
  border-color: #ffd86b;
  background: #fffdf5;
  color: #ff783f;
}

.how-guide .container {
  width: 100%;
  max-width: 860px;
}

.how-guide__install {
  margin-bottom: 24px;
  padding: 28px 28px 32px;
  border: 1px solid #eaebf3;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 8px 28px rgba(37, 47, 87, 0.08);
}
.how-guide__install h2 {
  margin: 0 0 20px;
  color: #1b1c2a;
  font-size: 1.35rem;
  line-height: 1.35;
}
.how-guide__install ol {
  margin: 0;
  padding-left: 1.25rem;
  color: #2d3748;
}
.how-guide__install ol > li {
  margin-bottom: 24px;
  line-height: 1.65;
}
.how-guide__install ol > li:last-child {
  margin-bottom: 0;
}
.how-guide__install ol > li p {
  margin: 0 0 12px;
}
.how-guide__install ol > li a {
  color: #4896fa;
  text-decoration: none;
  font-weight: 600;
}
.how-guide__install ol > li a:hover {
  color: #ff783f;
}

.how-guide__figure {
  margin: 12px 0 0;
  max-width: 720px;
}
.how-guide__figure img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid #eaebf3;
  border-radius: 14px;
  object-fit: contain;
}
.how-guide__figure figcaption {
  margin-top: 8px;
  color: #6b728f;
  font-size: 0.875rem;
  line-height: 1.45;
}

.how-guide__topics {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.how-topic {
  border: 1px solid #eaebf3;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 4px 18px rgba(37, 47, 87, 0.06);
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.how-topic.is-open {
  border-color: rgba(255, 190, 4, 0.45);
  box-shadow: 0 10px 28px rgba(255, 120, 63, 0.1);
}
.how-topic__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 20px 22px;
  border: none;
  background: transparent;
  text-align: left;
  cursor: pointer;
  font: inherit;
  color: inherit;
}
.how-topic__trigger h2 {
  margin: 0;
  color: #1b1c2a;
  font-size: 1.125rem;
  line-height: 1.4;
  font-weight: 600;
}
.how-topic__trigger i {
  flex-shrink: 0;
  color: #6b728f;
  font-size: 1rem;
  transition: transform 0.25s ease, color 0.2s ease;
}
.how-topic__trigger:hover i {
  color: #ff783f;
}
.how-topic.is-open .how-topic__trigger i {
  transform: rotate(180deg);
  color: #ff783f;
}
.how-topic__panel {
  display: none;
  padding: 0 22px 22px;
  color: #2d3748;
  line-height: 1.65;
}
.how-topic__panel p {
  margin: 0 0 12px;
}
.how-topic__panel p:last-child {
  margin-bottom: 0;
}
.how-topic__panel ol {
  margin: 0;
  padding-left: 1.25rem;
}
.how-topic__panel ol li {
  margin-bottom: 10px;
}
.how-topic__panel ol li:last-child {
  margin-bottom: 0;
}
.how-topic.is-open .how-topic__panel {
  display: block;
}

@media (max-width: 768px) {
  .how-hero {
    margin-bottom: 32px;
  }
  .how-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .how-hero__cta {
    width: 100%;
  }
  .how-guide__install {
    padding: 22px 18px 24px;
  }
  .how-topic__trigger {
    padding: 16px 18px;
  }
  .how-topic__trigger h2 {
    font-size: 1.05rem;
  }
  .how-topic__panel {
    padding: 0 18px 18px;
  }
}
.pet-showcase__motion-select, .pet-showcase__badge, .pet-hero__back {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 32px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(234, 235, 243, 0.95);
  color: #252f57;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.2;
  box-shadow: 0 4px 14px rgba(37, 47, 87, 0.08);
}

.pet-showcase__badge i, .pet-hero__back i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  font-size: 0.9rem;
  line-height: 1;
}

.pet-detail-page {
  --pet-section-gap: 24px;
  padding-bottom: 56px;
}

.pet-detail-ad {
  margin: 0 auto;
  padding: var(--pet-section-gap) 0;
  text-align: center;
}

.pet-hero {
  position: relative;
  overflow: hidden;
  padding: 8px 0 0;
}
.pet-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 10% 35%, rgba(255, 188, 4, 0.2) 0%, transparent 42%), radial-gradient(circle at 90% 15%, rgba(255, 120, 63, 0.14) 0%, transparent 38%), linear-gradient(180deg, #fffdf6 0%, #ffffff 72%);
}
.pet-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  padding-top: 4px;
  padding-bottom: 12px;
}
.pet-hero__back {
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.pet-hero__back:hover {
  border-color: rgba(255, 190, 4, 0.65);
  color: #ff783f;
  transform: translateX(-2px);
}

.pet-detail-page__wrap {
  display: flex;
  flex-direction: column;
  gap: var(--pet-section-gap);
  max-width: 1120px;
  margin: 0 auto;
  padding: 4px 0 8px;
}

.pet-showcase {
  position: relative;
  margin-bottom: 0;
  background: #fff;
  border: 1px solid #eaebf3;
  border-radius: 28px;
  box-shadow: 0 16px 48px rgba(37, 47, 87, 0.1);
  overflow: hidden;
}
.pet-showcase:has(.pet-showcase__motion.is-open) {
  overflow: visible;
}
.pet-showcase__glow {
  position: absolute;
  top: -100px;
  left: -60px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 188, 4, 0.2) 0%, transparent 68%);
  pointer-events: none;
}
.pet-showcase__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(320px, 1.1fr);
  gap: 36px;
  padding: 32px;
}
.pet-showcase__media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 340px;
  padding: 32px 28px;
  border-radius: 22px;
  background: radial-gradient(circle at 20% 25%, rgba(255, 255, 255, 0.65) 0%, transparent 45%), radial-gradient(circle at 80% 75%, rgba(255, 120, 63, 0.08) 0%, transparent 40%), linear-gradient(160deg, var(--pet-accent, #f5f3f6) 0%, #ffffff 100%);
  overflow: hidden;
}
.pet-showcase__media:has(.pet-showcase__motion.is-open) {
  overflow: visible;
}
.pet-showcase__media-bar {
  position: absolute;
  top: 16px;
  left: 16px;
  right: 16px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  pointer-events: none;
}
.pet-showcase__media-bar > * {
  pointer-events: auto;
}
.pet-showcase__badge {
  flex-shrink: 0;
}
.pet-showcase__badge i {
  color: #ff783f;
}
.pet-showcase__motion {
  position: relative;
  flex: 0 1 auto;
  min-width: 0;
  max-width: min(220px, 55%);
  margin-left: auto;
}
.pet-showcase__motion.is-open {
  z-index: 11;
}
.pet-showcase__motion-select {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  width: auto;
  min-width: 120px;
  max-width: 100%;
  height: 32px;
  min-height: 32px;
  max-height: 32px;
  margin: 0;
  padding: 0 28px 0 12px;
  box-sizing: border-box;
  border: 1px solid rgba(234, 235, 243, 0.95);
  background: rgba(255, 255, 255, 0.94);
  font-family: inherit;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.pet-showcase__motion-select:hover {
  border-color: rgba(255, 190, 4, 0.65);
}
.pet-showcase__motion-select:focus-visible {
  outline: none;
  border-color: rgba(255, 120, 63, 0.65);
  box-shadow: 0 0 0 3px rgba(255, 120, 63, 0.16);
}
.pet-showcase__motion.is-open .pet-showcase__motion-select {
  border-color: rgba(255, 190, 4, 0.75);
  background: #fffdf2;
  box-shadow: 0 8px 20px rgba(37, 47, 87, 0.1);
}
.pet-showcase__motion-value {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.pet-showcase__motion-chevron {
  position: absolute;
  top: 50%;
  right: 10px;
  flex-shrink: 0;
  font-size: 14px;
  line-height: 1;
  color: #252f57;
  transform: translateY(-50%);
  transition: transform 0.2s ease;
  pointer-events: none;
}
.pet-showcase__motion.is-open .pet-showcase__motion-chevron {
  transform: translateY(-50%) rotate(180deg);
}
.pet-showcase__motion-menu {
  position: absolute;
  top: calc(100% + 8px);
  bottom: auto;
  right: 0;
  left: auto;
  z-index: 12;
  min-width: 100%;
  width: max-content;
  max-width: min(280px, 72vw);
  max-height: 280px;
  margin: 0;
  padding: 6px;
  list-style: none;
  border: 1px solid rgba(234, 235, 243, 0.95);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 12px 32px rgba(37, 47, 87, 0.14);
  overflow-y: auto;
  overscroll-behavior: contain;
}
.pet-showcase__motion-menu[hidden] {
  display: none;
}
.pet-showcase__motion-option {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 8px 10px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: #252f57;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.3;
  text-align: left;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}
.pet-showcase__motion-option:hover {
  background: #f5f7fb;
}
.pet-showcase__motion-option:focus-visible {
  outline: 2px solid rgba(255, 190, 4, 0.85);
  outline-offset: -2px;
}
.pet-showcase__motion-option.is-active {
  background: rgba(255, 234, 116, 0.35);
  color: #252f57;
}
.pet-showcase__sprite-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition: transform 0.35s ease;
}
.pet-showcase__media:hover .pet-showcase__sprite-wrap {
  transform: translateY(-4px);
}
.pet-showcase__sprite {
  display: block;
  width: min(72vw, 240px);
  max-width: 100%;
  height: auto;
  aspect-ratio: 1;
  filter: drop-shadow(0 18px 36px rgba(27, 28, 42, 0.16));
  image-rendering: pixelated;
  image-rendering: crisp-edges;
}
.pet-showcase__sprite-shadow {
  display: block;
  width: 58%;
  height: 12px;
  border-radius: 50%;
  background: rgba(37, 47, 87, 0.14);
  filter: blur(5px);
}
.pet-showcase__img-head {
  position: absolute;
  right: 20px;
  bottom: 20px;
  z-index: 3;
  width: 88px;
  height: 88px;
  padding: 10px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid #eaebf3;
  object-fit: contain;
  box-shadow: 0 10px 26px rgba(37, 47, 87, 0.14);
}
.pet-showcase__main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  padding: 8px 0;
}
.pet-showcase__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.pet-showcase__chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 12px;
  border-radius: 999px;
  background: #f5f7fb;
  border: 1px solid #eef0f6;
  color: #252f57;
  font-size: 0.8125rem;
  font-weight: 600;
}
.pet-showcase__chip img {
  width: 16px;
  height: 16px;
}
.pet-showcase__chip--accent {
  background: rgba(255, 234, 116, 0.35);
  border-color: rgba(255, 190, 4, 0.45);
}
.pet-showcase__title {
  margin: 0;
  color: #252f57;
  font-size: clamp(1.9rem, 3.5vw, 2.55rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
}
.pet-showcase__tagline {
  margin: 0;
  color: #4a5568;
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.5;
}
.pet-showcase__lead {
  margin: 0;
  color: #6b728f;
  font-size: 1.05rem;
  line-height: 1.68;
}
.pet-showcase__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 6px;
}
.pet-showcase__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 28px;
  border-radius: 14px;
  font-family: inherit;
  font-size: 0.97rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.pet-showcase__btn.add-cat {
  max-width: none;
  width: auto;
  white-space: nowrap;
}
.pet-showcase__btn img {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
.pet-showcase__btn--primary {
  border: none;
  background: linear-gradient(135deg, #ff783f, #ffbc04);
  color: #fff;
  box-shadow: 0 10px 24px rgba(255, 120, 63, 0.28);
  min-width: 220px;
}
.pet-showcase__btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(255, 120, 63, 0.34);
}
.pet-showcase__btn--secondary {
  background: #fff;
  color: #252f57;
  border: 1px solid #eaebf3;
}
.pet-showcase__btn--secondary:hover {
  background: #fafbff;
  border-color: #d8dbe8;
}
.pet-showcase__note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: #6b728f;
  font-size: 0.875rem;
}
.pet-showcase__note i {
  color: #ff783f;
}

.pet-highlights {
  margin-bottom: 0;
  padding: 26px 28px;
  background: #fff;
  border: 1px solid #eaebf3;
  border-radius: 22px;
  box-shadow: 0 6px 22px rgba(37, 47, 87, 0.06);
}
.pet-highlights__heading {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  color: #252f57;
  font-size: 1.2rem;
}
.pet-highlights__heading i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(255, 234, 116, 0.35);
  color: #ff783f;
}
.pet-highlights__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.pet-highlights__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 14px;
  background: #fafbff;
  border: 1px solid #eef0f6;
  color: #252f57;
  font-size: 0.9375rem;
  line-height: 1.55;
}
.pet-highlights__item i {
  flex-shrink: 0;
  margin-top: 2px;
  color: #ff783f;
  font-size: 1rem;
}

.pet-sections {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 0;
}

.pet-section {
  padding: 24px 22px;
  background: linear-gradient(180deg, #fff 0%, #fafbff 100%);
  border: 1px solid #eaebf3;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(37, 47, 87, 0.05);
}
.pet-section__heading {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 12px;
  color: #252f57;
  font-size: 1.05rem;
  line-height: 1.35;
}
.pet-section__heading i {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: rgba(255, 234, 116, 0.3);
  color: #ff783f;
  font-size: 0.9rem;
}
.pet-section__text {
  margin: 0;
  color: #6b728f;
  font-size: 0.9375rem;
  line-height: 1.62;
}

.pet-cta {
  margin-bottom: 0;
}
.pet-cta__inner {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 24px;
  padding: 28px 32px;
  border-radius: 24px;
  background: radial-gradient(circle at 100% 50%, rgba(255, 188, 4, 0.14) 0%, transparent 42%), linear-gradient(135deg, #fff8f3 0%, #fff 55%, #fafbff 100%);
  border: 1px solid #eaebf3;
  box-shadow: 0 10px 32px rgba(37, 47, 87, 0.08);
}
.pet-cta__visual {
  flex: 0 0 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 96px;
  border-radius: 22px;
}
.pet-cta__visual img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(27, 28, 42, 0.12));
}
.pet-cta__content {
  flex: 1 1 auto;
  min-width: 0;
  white-space: nowrap;
}
.pet-cta__title {
  margin: 0 0 8px;
  color: #252f57;
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  line-height: 1.3;
  white-space: nowrap;
}
.pet-cta__body {
  margin: 0;
  color: #6b728f;
  font-size: 0.97rem;
  line-height: 1.6;
  white-space: nowrap;
}
.pet-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: fit-content;
  min-height: 52px;
  padding: 0 24px;
  margin-left: auto;
  border: none;
  border-radius: 14px;
  background: linear-gradient(135deg, #ff783f, #ffbc04);
  color: #fff;
  font-family: inherit;
  font-size: 0.97rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(255, 120, 63, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.pet-cta__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(255, 120, 63, 0.34);
}

.pet-detail-page__wave {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: -8px 0 0;
  opacity: 0.12;
}

.pet-page__similar {
  margin: 0;
  padding: 40px 0 24px;
}
.pet-page__similar .container {
  max-width: 1120px;
}
.pet-page__similar-head {
  margin-bottom: 24px;
  text-align: center;
}
.pet-page__similar-title {
  margin: 0 0 8px;
  color: #252f57;
  font-size: clamp(1.45rem, 2.5vw, 1.75rem);
}
.pet-page__similar-desc {
  margin: 0 auto;
  max-width: 560px;
  color: #6b728f;
  font-size: 1rem;
  line-height: 1.55;
}
.pet-page__similar-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.pet-detail-page .block_products {
  margin-top: 0;
  padding: 24px 0 0;
}

@media (max-width: 1024px) {
  .pet-showcase__layout {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 24px;
  }
  .pet-sections {
    grid-template-columns: 1fr;
  }
  .pet-page__similar-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .pet-cta__btn {
    margin-left: 0;
    width: fit-content;
    align-self: center;
  }
}
@media (max-width: 640px) {
  .pet-detail-page {
    --pet-section-gap: 20px;
  }
  .pet-detail-ad {
    padding: 20px 0;
  }
  .pet-detail-page__wrap {
    padding-bottom: 4px;
  }
  .pet-page__similar {
    padding: 32px 0 20px;
  }
  .pet-detail-page .block_products {
    padding-top: 20px;
  }
  .pet-showcase__layout {
    padding: 18px;
  }
  .pet-showcase__media {
    min-height: 280px;
    padding: 24px 18px;
  }
  .pet-showcase__media-bar {
    left: 12px;
    right: 12px;
    gap: 8px;
  }
  .pet-showcase__motion {
    max-width: min(200px, 58%);
  }
  .pet-showcase__motion-select {
    min-width: 108px;
  }
  .pet-showcase__motion-menu {
    max-width: min(100vw - 36px, 280px);
  }
  .pet-showcase__sprite {
    width: min(80vw, 210px);
  }
  .pet-showcase__actions {
    flex-direction: column;
  }
  .pet-showcase__actions .pet-showcase__btn {
    width: 100%;
  }
  .pet-highlights {
    padding: 20px;
  }
  .pet-highlights__grid {
    grid-template-columns: 1fr;
  }
  .pet-cta__inner {
    flex-direction: column;
    align-items: center;
    padding: 22px 20px;
    text-align: center;
  }
  .pet-cta__content {
    white-space: nowrap;
  }
  .pet-cta__btn {
    width: fit-content;
    margin-left: 0;
  }
  .pet-cta__visual {
    margin: 0 auto;
  }
  .pet-page__similar-list {
    grid-template-columns: 1fr;
  }
}
@media (prefers-reduced-motion: reduce) {
  .pet-showcase__media:hover .pet-showcase__sprite-wrap {
    transform: none;
  }
}
.install-cta {
  margin: 48px 0 0;
  padding: 0 20px 56px;
}
.install-cta__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  max-width: 960px;
  margin: 0 auto;
  padding: 36px 40px;
  background: linear-gradient(135deg, #fff8f3 0%, #fff 55%, #fafbff 100%);
  border: 1px solid #eaebf3;
  border-radius: 24px;
  box-shadow: 0 8px 28px rgba(37, 47, 87, 0.08);
}
.install-cta__visual {
  flex: 0 0 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  border-radius: 24px;
  background: rgba(255, 120, 63, 0.1);
}
.install-cta__visual img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(27, 28, 42, 0.12));
}
.install-cta__content {
  flex: 1 1 280px;
  min-width: 0;
}
.install-cta__title {
  margin: 0 0 10px;
  color: #0b182c;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  line-height: 1.25;
}
.install-cta__body {
  margin: 0 0 20px;
  color: #6b728f;
  font-size: 1rem;
  line-height: 1.6;
}
.install-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.install-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 14px;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.install-cta__btn img {
  width: 22px;
  height: 22px;
}
.install-cta__btn--primary {
  border: none;
  background: linear-gradient(135deg, #ff783f, #ffbc04);
  color: #fff;
  box-shadow: 0 8px 20px rgba(255, 120, 63, 0.24);
}
.install-cta__btn--primary:hover {
  background: #ff783f;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(255, 120, 63, 0.3);
  color: #fff;
}
.install-cta__btn--secondary {
  border: 1px solid #eaebf3;
  background: #fff;
  color: #252f57;
}
.install-cta__btn--secondary:hover {
  border-color: #d8dbe8;
  background: #fafbff;
  color: #252f57;
}

@media (max-width: 640px) {
  .install-cta {
    padding-bottom: 40px;
  }
  .install-cta__inner {
    padding: 28px 24px;
    text-align: center;
    justify-content: center;
  }
  .install-cta__visual {
    margin: 0 auto;
  }
  .install-cta__actions {
    justify-content: center;
  }
  .install-cta__btn {
    width: 100%;
    max-width: 320px;
  }
}
.faq-section {
  padding: 72px 0 88px;
  background: linear-gradient(180deg, #fffbf6 0%, #fff 100%);
}
.faq-section .container {
  max-width: 820px;
}
.faq-section__title {
  margin: 0 0 12px;
  color: #0b182c;
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.25;
  text-align: center;
}
.faq-section__intro {
  margin: 0 auto 36px;
  max-width: 640px;
  color: #6b728f;
  font-size: 1rem;
  line-height: 1.65;
  text-align: center;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid #eaebf3;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 4px 18px rgba(37, 47, 87, 0.05);
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.faq-item:hover {
  border-color: #dfe2ec;
  box-shadow: 0 8px 24px rgba(37, 47, 87, 0.08);
}
.faq-item.is-open {
  border-color: #ffd4bc;
  box-shadow: 0 10px 28px rgba(255, 120, 63, 0.1);
}
.faq-item.is-open .faq-item__question {
  color: #252f57;
}
.faq-item.is-open .faq-item__icon {
  background: rgba(255, 120, 63, 0.12);
  color: #ff783f;
}
.faq-item.is-open .faq-item__icon i {
  transform: rotate(180deg);
}
.faq-item.is-open .faq-item__panel {
  grid-template-rows: 1fr;
}
.faq-item__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 18px 20px;
  border: none;
  background: transparent;
  cursor: pointer;
  text-align: left;
  font: inherit;
}
.faq-item__question {
  margin: 0;
  color: #0b182c;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.45;
  transition: color 0.2s ease;
}
.faq-item__icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: #f4f6fb;
  color: #6b728f;
  transition: background 0.2s ease, color 0.2s ease;
}
.faq-item__icon i {
  font-size: 16px;
  line-height: 1;
  transition: transform 0.22s ease;
}
.faq-item__trigger:focus-visible {
  outline: none;
}
.faq-item__trigger:focus-visible .faq-item__icon {
  box-shadow: 0 0 0 3px rgba(255, 234, 116, 0.55);
}
.faq-item__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.28s ease;
}
.faq-item__panel-inner {
  overflow: hidden;
}
.faq-item__panel-inner p {
  margin: 0;
  padding: 0 20px 18px;
  color: #6b728f;
  font-size: 0.9375rem;
  line-height: 1.65;
}

.support-section .faq-section__title,
.support-section .faq-section__intro {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

.support-section .faq-accordion {
  max-width: 820px;
  margin: 0 auto;
}

@media (max-width: 640px) {
  .faq-section {
    padding: 56px 0 72px;
  }
  .faq-item__trigger {
    padding: 16px 16px;
  }
  .faq-item__panel-inner p {
    padding: 0 16px 16px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .faq-item__panel,
  .faq-item__icon i {
    transition: none;
  }
}
.sl li p {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

.catalogue-heading .container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  text-align: center;
  margin: 0 auto;
}
.catalogue-heading .container h1 {
  margin-bottom: 10px;
  position: relative;
  z-index: 3;
  color: #0b182c;
}
.catalogue-heading .container p {
  color: #2d3748;
  max-width: 800px;
  margin: 0 auto 50px auto;
  text-align: center;
}
.catalogue-heading .container ul {
  margin: 30px 0 50px 0;
  display: flex;
  justify-content: center;
}
.catalogue-heading .container ul li {
  margin-right: 20px;
}
.catalogue-heading .container ul li a {
  color: #1b1c2a;
  text-decoration: none;
  padding: 10px 15px;
  border-radius: 10px;
  background: #fffbf6;
}
.catalogue-heading .container ul li a:hover {
  transition: all 0.5s ease;
  background: #ff7e3a;
  color: white;
}
.catalogue-heading .container ul li:last-child {
  margin-right: 0;
}

.border-gradient-purple {
  border-image-source: linear-gradient(135deg, #ecc344 0%, #e42d7f 100%);
}

body {
  /* For tablets */
  /* For mobile devices */
  /* For smaller mobile devices */
}
body .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  body .container {
    width: 90%;
  }
}
@media (max-width: 768px) {
  body .container {
    width: 95%;
  }
}
@media (max-width: 480px) {
  body .container {
    width: 100%;
    padding: 0 15px; /* You can add padding to avoid content sticking to the edges */
  }
}

.main-page .sun {
  position: absolute;
  z-index: 1;
  right: 0;
  margin: 0 auto;
  width: 150%;
  left: -25%;
  top: -25%;
  opacity: 0.05;
  -webkit-animation: spin 100s linear infinite;
  animation: spin 100s linear infinite;
}
.main-page .main-page-logo {
  width: 70px;
  margin-bottom: 30px;
  position: relative;
  z-index: 3;
}
.main-page .main-section {
  overflow: hidden;
  position: relative;
  padding-top: 50px;
  height: 750px;
  background: #fffbf6;
}
.main-page .main-section .container {
  text-align: center;
}
.main-page .main-section h1 {
  margin-bottom: 20px;
  color: #0b182c;
  position: relative;
  z-index: 3;
  font-size: 3em;
  font-weight: 600;
}
.main-page .main-section h2 {
  color: #2d3748;
  margin-bottom: 20px;
  position: relative;
  z-index: 3;
}
.main-page .main-section .benefits {
  min-height: 400px;
  z-index: 2;
  position: relative;
  background-size: 700px;
  background: url(/images/main-bg.webp?222e96ed6b195602617a9206a3d2dc20) bottom 33px center/700px no-repeat;
}
.main-page .main-section .pentahedron {
  position: absolute;
  width: 50px;
  height: 50px;
  fill: #ff0052;
  z-index: 1;
}
.main-page .main-section .point {
  fill: #8491A3;
}
.main-page .main-section .rhombus {
  fill: #2DA94F;
  stroke: #2DA94F;
  z-index: 1;
}
.main-page .main-section .x {
  fill: #FDBD00;
}
.main-page .main-section .circle {
  fill: #ED412D;
  z-index: 1;
}
.main-page .main-section svg {
  display: block;
  width: 30px;
  height: 30px;
  opacity: 0.6;
  z-index: 1;
  position: absolute;
  transform: translateZ(0px);
}
.main-page .main-section .background {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#edf3f8", endColorstr="#dee3e8", GradientType=1);
}
.main-page .main-section .divider {
  background: white;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  width: 100vw;
  height: 140px;
}
.main-page .main-section .white-section {
  background: white;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  box-shadow: 0 0 18px 4px rgba(0, 0, 0, 0.0705882353);
  width: 800px;
  align-items: center;
  height: 120px;
  box-sizing: border-box;
  padding: 30px;
  bottom: -25px;
  left: 0;
  right: 0;
  margin: 0 auto;
  position: absolute;
}
.main-page .main-section .white-section ul {
  width: 70%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
}
.main-page .main-section .white-section ul li {
  flex: 1 1 auto;
  text-align: center;
}
.main-page .main-section .white-section ul li:last-child {
  border-right: none;
  padding-right: 0;
}
.main-page .main-section .white-section ul li + li {
  border-left: 1px solid #e5e3e3;
}
.main-page .main-section .white-section li span {
  font-size: 2em;
}
.main-page .main-section .white-section li span:first-child {
  font-weight: 600;
  background: linear-gradient(#ff783f, #ffbc04);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.main-page .main-section .white-section .browse {
  background: linear-gradient(#ff783f, #ffbc04);
  padding: 3px 29px 3px 29px;
  border-radius: 15px;
  color: white;
  display: flex;
  align-items: center;
  text-decoration: none;
  height: 52px;
}
.main-page .main-section .white-section .browse:hover {
  background: #ff783f;
}

@-webkit-keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
.features {
  margin-bottom: 50px;
}
.features .container {
  display: flex;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
}
.features .container h2 {
  margin-bottom: 20px;
  position: relative;
  z-index: 3;
  color: #0b182c;
}
.features .container h2 img {
  width: 48px;
  vertical-align: bottom;
}
.features .container > div:first-child {
  width: 400px;
}
.features .container > div:last-child {
  max-width: calc(100% - 400px);
}
.features .container > div h3.footer__heading {
  margin-bottom: 10px;
  position: relative;
  z-index: 3;
  color: #0b182c;
}
.features .container > div p {
  color: #2d3748;
}

.ending {
  position: relative;
}
.ending .container {
  max-width: 950px;
  display: flex;
  margin: 100px auto 0 auto;
  align-items: center;
}
.ending .area {
  margin-right: 50px;
  background: #4e54c8;
  background: linear-gradient(#c783ff, #c783ff);
  width: 300px;
  height: 300px;
  border-radius: 20px;
  overflow: hidden;
}
.ending .area .content {
  height: 400px;
  position: absolute;
  z-index: 9;
  box-sizing: border-box;
  top: 0;
}
.ending .area .content img {
  position: absolute;
  left: 50px;
  bottom: 100px;
  width: 200px;
}
.ending .circles {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.ending .circles li {
  position: absolute;
  display: block;
  list-style: none;
  width: 20px;
  height: 20px;
  background: #ff85e5;
  -webkit-animation: animate 25s linear infinite;
  animation: animate 25s linear infinite;
  bottom: -150px;
}
.ending .circles li:nth-child(1) {
  left: 25%;
  width: 80px;
  height: 80px;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}
.ending .circles li:nth-child(2) {
  left: 10%;
  width: 20px;
  height: 20px;
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
  -webkit-animation-duration: 12s;
  animation-duration: 12s;
}
.ending .circles li:nth-child(3) {
  left: 70%;
  width: 20px;
  height: 20px;
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
}
.ending .circles li:nth-child(4) {
  left: 40%;
  width: 60px;
  height: 60px;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation-duration: 18s;
  animation-duration: 18s;
}
.ending .circles li:nth-child(5) {
  left: 65%;
  width: 20px;
  height: 20px;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}
.ending .circles li:nth-child(6) {
  left: 75%;
  width: 110px;
  height: 110px;
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}
.ending .circles li:nth-child(7) {
  left: 35%;
  width: 150px;
  height: 150px;
  -webkit-animation-delay: 7s;
  animation-delay: 7s;
}
.ending .circles li:nth-child(8) {
  left: 50%;
  width: 25px;
  height: 25px;
  -webkit-animation-delay: 15s;
  animation-delay: 15s;
  -webkit-animation-duration: 45s;
  animation-duration: 45s;
}
.ending .circles li:nth-child(9) {
  left: 20%;
  width: 15px;
  height: 15px;
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
  -webkit-animation-duration: 35s;
  animation-duration: 35s;
}
.ending .circles li:nth-child(10) {
  left: 85%;
  width: 150px;
  height: 150px;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation-duration: 11s;
  animation-duration: 11s;
}
.ending h3 {
  margin-bottom: 15px;
  position: relative;
  z-index: 3;
  color: #0b182c;
}
.ending h3 img {
  width: 40px;
  vertical-align: top;
}
.ending p {
  color: #2d3748;
}
.ending a {
  background: #4896fa;
  padding: 3px 29px;
  border-radius: 15px;
  color: white;
  display: inline-flex;
  align-items: center;
  margin-top: 20px;
  text-decoration: none;
  height: 52px;
}
.ending a:hover {
  background: #2580f6;
}
.ending a img {
  margin-right: 10px;
}

@-webkit-keyframes animate {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 1;
    border-radius: 0;
  }
  100% {
    transform: translateY(-1000px) rotate(720deg);
    opacity: 0;
    border-radius: 50%;
  }
}
@keyframes animate {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 1;
    border-radius: 0;
  }
  100% {
    transform: translateY(-1000px) rotate(720deg);
    opacity: 0;
    border-radius: 50%;
  }
}
.wave {
  opacity: 0.1;
  margin: 50px 0 0 0;
}

.featured {
  margin: 100px 0;
}
.featured h2 {
  text-align: center;
  margin-bottom: 15px;
  position: relative;
  z-index: 3;
  color: #0b182c;
}
.featured h2 img {
  width: 40px;
  vertical-align: top;
}
.featured .container > p {
  color: #2d3748;
  max-width: 800px;
  margin: 0 auto 50px auto;
  text-align: center;
}

.emoji {
  width: 50px;
}

.results h3 {
  margin-bottom: 30px;
  text-align: center;
}

.card__wrapper {
  display: grid;
  grid-template-columns: minmax(240px, 340px) 1fr;
  grid-gap: 32px;
  margin-top: 32px;
  background: #fff;
  border: 1px solid #eaebf3;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 8px 28px rgba(37, 47, 87, 0.08);
}
.card__wrapper .card__image {
  width: 100%;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  overflow: hidden;
}
.card__wrapper .card__image img {
  width: 180px;
  height: 180px;
  object-fit: contain;
  padding: 8px;
  filter: drop-shadow(0 10px 20px rgba(27, 28, 42, 0.15));
}
.card__wrapper .card__box {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}
.card__wrapper .card__title {
  margin: 0;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  line-height: 1.2;
  color: #1b1c2a;
}
.card__wrapper .card__text {
  margin: 0;
  font-size: 1rem;
  line-height: 1.75;
  color: #6b728f;
}
.card__wrapper .card__add,
.card__wrapper .add-pet.add-cat {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  min-width: 190px;
  padding: 0 22px;
  border: none;
  border-radius: 14px;
  background: linear-gradient(135deg, #ff783f, #ffbc04);
  color: #fff;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(255, 120, 63, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.card__wrapper .card__add:hover,
.card__wrapper .add-pet.add-cat:hover {
  background: #ff783f;
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(255, 120, 63, 0.28);
}
.card__wrapper .card__add.disabled, .card__wrapper .card__add.added,
.card__wrapper .add-pet.add-cat.disabled,
.card__wrapper .add-pet.add-cat.added {
  pointer-events: none;
  background: #f4f0fb;
  color: #7e7e7e;
  box-shadow: none;
  transform: none;
}

@media (max-width: 768px) {
  .card__wrapper {
    grid-template-columns: 1fr;
    padding: 24px;
  }
  .card__wrapper .card__image {
    min-height: 220px;
  }
  .card__wrapper .card__add,
  .card__wrapper .add-pet.add-cat {
    width: 100%;
  }
}
.actions {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-items: center;
  margin-top: 50px;
}
.actions .more {
  background: #4896fa;
  padding: 0 19px;
  border-radius: 15px;
  color: white;
  height: 48px;
  text-decoration: none;
  cursor: pointer;
  text-align: center;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  align-content: center;
  justify-content: center;
  align-items: center;
}
.actions .more:hover {
  background: #2580f6;
}

.add-cat {
  background: linear-gradient(#ff783f, #ffbc04);
  padding: 0 19px;
  border-radius: 15px;
  color: white;
  height: 48px;
  text-decoration: none;
  cursor: pointer;
  max-width: 100px;
  text-align: center;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  align-content: center;
  justify-content: center;
  align-items: center;
}
.add-cat:hover {
  background: linear-gradient(#ff783f, #ff783f);
}

body.modal-open {
  overflow: hidden;
}

.modal-window {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  pointer-events: none;
  visibility: hidden;
}
.modal-window.show {
  pointer-events: auto;
  visibility: visible;
}
.modal-window.show .modal-window__backdrop {
  opacity: 1;
}
.modal-window.show .modal-window__panel {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.modal-window__backdrop {
  position: absolute;
  inset: 0;
  margin: 0;
  padding: 0;
  border: none;
  background: rgba(11, 24, 44, 0.58);
  backdrop-filter: blur(4px);
  opacity: 0;
  cursor: pointer;
  transition: opacity 0.25s ease;
}

.modal-window__panel {
  position: relative;
  z-index: 1;
  width: min(100%, 480px);
  padding: 36px 32px 32px;
  border: 1px solid #eaebf3;
  border-radius: 24px;
  background: linear-gradient(135deg, #fff8f3 0%, #fff 55%, #fafbff 100%);
  box-shadow: 0 24px 48px rgba(37, 47, 87, 0.18);
  text-align: center;
  opacity: 0;
  transform: translateY(18px) scale(0.97);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.modal-window__close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid #eaebf3;
  border-radius: 12px;
  background: #fff;
  color: #6b728f;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.modal-window__close:hover {
  border-color: #d8dbe8;
  background: #fafbff;
  color: #252f57;
}
.modal-window__close:focus-visible {
  outline: 2px solid #ff783f;
  outline-offset: 2px;
}

.modal-window__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 96px;
  margin: 0 auto 20px;
  border-radius: 24px;
  background: rgba(255, 120, 63, 0.1);
}
.modal-window__visual img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(27, 28, 42, 0.12));
}

.modal-window__title {
  margin: 0 0 10px;
  color: #0b182c;
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  line-height: 1.3;
}

.modal-window__text {
  margin: 0 0 24px;
  color: #6b728f;
  font-size: 1rem;
  line-height: 1.6;
}

.modal-window__install {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 28px;
  border-radius: 14px;
  background: linear-gradient(135deg, #ff783f, #ffbc04);
  box-shadow: 0 8px 20px rgba(255, 120, 63, 0.24);
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.modal-window__install img {
  width: 22px;
  height: 22px;
}
.modal-window__install:hover {
  background: #ff783f;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(255, 120, 63, 0.3);
  color: #fff;
}
.modal-window__install:focus-visible {
  outline: 2px solid #ff783f;
  outline-offset: 3px;
}

@media (max-width: 480px) {
  .modal-window__panel {
    padding: 32px 24px 28px;
  }
  .modal-window__install {
    width: 100%;
  }
}
@media (prefers-reduced-motion: reduce) {
  .modal-window__backdrop,
  .modal-window__panel {
    transition: none;
  }
}
.alert-alert {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1100;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: min(100vw - 32px, 400px);
  pointer-events: none;
}

.alert-alert__panel {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 48px 22px 18px;
  border: 1px solid #eaebf3;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(37, 47, 87, 0.14);
  overflow: hidden;
  pointer-events: auto;
  opacity: 0;
  transform: translateX(calc(100% + 24px));
  transition: opacity 0.28s ease, transform 0.28s ease, max-height 0.28s ease, margin 0.28s ease, padding 0.28s ease;
}
.alert-alert__panel.is-visible {
  opacity: 1;
  transform: translateX(0);
}
.alert-alert__panel.is-visible .alert-alert__progress {
  animation: alertProgress 4s linear forwards;
}
.alert-alert__panel.is-leaving {
  opacity: 0;
  transform: translateX(calc(100% + 24px));
  max-height: 0;
  margin-top: -12px;
  padding-top: 0;
  padding-bottom: 0;
  border-width: 0;
}

.alert-alert__icon {
  flex: 0 0 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(41, 216, 133, 0.14);
  color: #16a34a;
}
.alert-alert__icon svg {
  width: 22px;
  height: 22px;
}

.alert-alert__content {
  flex: 1;
  min-width: 0;
}

.alert-alert__title {
  margin: 0 0 4px;
  color: #0b182c;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.35;
}

.alert-alert__text {
  margin: 0;
  color: #6b728f;
  font-size: 0.875rem;
  line-height: 1.5;
}

.alert-alert__close {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 10px;
  background: transparent;
  color: #9ca3af;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.alert-alert__close:hover {
  background: #f3f4f8;
  color: #252f57;
}
.alert-alert__close:focus-visible {
  outline: 2px solid #ff783f;
  outline-offset: 2px;
}

.alert-alert__progress {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #29d885, #22c55e);
  transform-origin: left center;
  transform: scaleX(1);
}

@keyframes alertProgress {
  from {
    transform: scaleX(1);
  }
  to {
    transform: scaleX(0);
  }
}
@media (max-width: 480px) {
  .alert-alert {
    right: 16px;
    bottom: 16px;
    left: 16px;
    width: auto;
  }
}
@media (prefers-reduced-motion: reduce) {
  .alert-alert__panel {
    transition: none;
  }
  .alert-alert__panel.is-visible .alert-alert__progress {
    animation: none;
  }
}
.hidden {
  display: none;
}

.disabled {
  background: #eaebf3 !important;
}

.hidden-text {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}

.not-found-page {
  padding: 24px 0 72px;
}
.not-found-page__card {
  max-width: 760px;
  margin: 0 auto;
  padding: 48px 32px 40px;
  border-radius: 28px;
  text-align: center;
  background: radial-gradient(circle at top right, rgba(255, 188, 4, 0.18), transparent 42%), radial-gradient(circle at bottom left, rgba(255, 120, 63, 0.14), transparent 38%), #fff;
  box-shadow: 0 24px 60px rgba(11, 24, 44, 0.08);
}
.not-found-page__visual {
  position: relative;
  width: 160px;
  height: 160px;
  margin: 0 auto 24px;
}
.not-found-page__code {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(11, 24, 44, 0.08);
  font-size: clamp(5rem, 16vw, 7rem);
  font-weight: 800;
  line-height: 1;
  user-select: none;
}
.not-found-page__cat {
  position: relative;
  z-index: 1;
  display: block;
  width: 112px;
  height: 112px;
  margin: 24px auto 0;
  object-fit: contain;
  filter: drop-shadow(0 12px 24px rgba(11, 24, 44, 0.12));
  animation: not-found-bob 3.2s ease-in-out infinite;
}
.not-found-page__title {
  margin: 0 0 12px;
  color: #0b182c;
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  line-height: 1.2;
}
.not-found-page__lead, .not-found-page__message {
  margin: 0 auto;
  max-width: 520px;
  color: #6b728f;
  font-size: 1.05rem;
  line-height: 1.65;
}
.not-found-page__message {
  margin-top: 8px;
  font-size: 0.98rem;
}
.not-found-page__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}
.not-found-page__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 14px;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.not-found-page__btn--primary {
  border: none;
  color: #fff;
  background: linear-gradient(135deg, #ff783f, #ffbc04);
  box-shadow: 0 10px 24px rgba(255, 120, 63, 0.28);
}
.not-found-page__btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(255, 120, 63, 0.34);
}
.not-found-page__btn--secondary {
  border: 1px solid rgba(11, 24, 44, 0.12);
  color: #0b182c;
  background: #fff;
}
.not-found-page__btn--secondary:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(11, 24, 44, 0.08);
}
.not-found-page__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin-top: 22px;
}
.not-found-page__link {
  color: #ff783f;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
}
.not-found-page__link:hover {
  text-decoration: underline;
}

@keyframes not-found-bob {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
@media (max-width: 640px) {
  .not-found-page__card {
    padding: 36px 20px 32px;
    border-radius: 22px;
  }
  .not-found-page__visual {
    width: 140px;
    height: 140px;
  }
  .not-found-page__cat {
    width: 96px;
    height: 96px;
  }
}
.privacy-page {
  padding-bottom: 64px;
}

.privacy-hero {
  margin-bottom: 32px;
}
.privacy-hero .container {
  max-width: 820px;
  text-align: center;
}
.privacy-hero__title {
  margin: 0 0 12px;
  color: #0b182c;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  line-height: 1.2;
}
.privacy-hero__intro {
  margin: 0 auto;
  max-width: 680px;
  color: #6b728f;
  font-size: 1.05rem;
  line-height: 1.65;
}

.privacy-page__layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 32px;
  align-items: start;
  max-width: 1120px;
}

.privacy-nav {
  position: sticky;
  top: 96px;
}

.privacy-nav__inner {
  padding: 20px;
  background: #fff;
  border: 1px solid #eaebf3;
  border-radius: 16px;
  box-shadow: 0 4px 18px rgba(37, 47, 87, 0.06);
}

.privacy-nav__heading {
  margin: 0 0 12px;
  color: #6b728f;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.privacy-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.privacy-nav__list li {
  margin: 0;
}

.privacy-nav__link {
  display: block;
  padding: 8px 0 8px 12px;
  border-left: 2px solid transparent;
  color: #252f57;
  font-size: 0.875rem;
  line-height: 1.45;
  text-decoration: none;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.privacy-nav__link:hover {
  color: #ff783f;
}
.privacy-nav__link.is-active {
  border-left-color: #ff783f;
  color: #ff783f;
  font-weight: 600;
}

.privacy-card {
  background: #fff;
  border: 1px solid #eaebf3;
  border-radius: 24px;
  box-shadow: 0 8px 28px rgba(37, 47, 87, 0.08);
}

.privacy-card__body {
  padding: 32px 36px 40px;
  color: #2d3748;
  line-height: 1.65;
}

.privacy-card__lead {
  margin: 0 0 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid #eef0f6;
  color: #6b728f;
  font-size: 1.05rem;
}

.privacy-section {
  scroll-margin-top: 96px;
}
.privacy-section:not(:last-child) {
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid #eef0f6;
}
.privacy-section h2 {
  margin: 0 0 12px;
  color: #0b182c;
  font-size: 1.25rem;
  line-height: 1.35;
}
.privacy-section h3 {
  margin: 0 0 8px;
  color: #252f57;
  font-size: 1rem;
  font-weight: 600;
}
.privacy-section p {
  margin: 0 0 12px;
}
.privacy-section p:last-child {
  margin-bottom: 0;
}
.privacy-section a {
  color: #ff783f;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.privacy-section a:hover {
  color: #e56a35;
}

.privacy-list {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}
.privacy-list li {
  margin: 0 0 16px;
  padding: 16px 18px;
  background: #fafbff;
  border: 1px solid #eef0f6;
  border-radius: 14px;
}
.privacy-list li:last-child {
  margin-bottom: 0;
}
.privacy-list li p {
  margin: 0;
  color: #6b728f;
}

@media (max-width: 960px) {
  .privacy-page__layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .privacy-nav {
    position: static;
  }
  .privacy-nav__inner {
    padding: 16px;
  }
  .privacy-nav__list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }
  .privacy-nav__list li {
    flex: 1 1 calc(50% - 8px);
    min-width: 140px;
  }
  .privacy-nav__link {
    padding: 10px 12px;
    border-left: none;
    border-radius: 10px;
    background: #fafbff;
  }
  .privacy-nav__link.is-active {
    background: rgba(255, 120, 63, 0.1);
    border-left: none;
  }
}
@media (max-width: 640px) {
  .privacy-card__body {
    padding: 24px 20px 32px;
  }
  .privacy-nav__list li {
    flex: 1 1 100%;
  }
}
.about-page {
  padding-bottom: 64px;
}

.about-hero {
  margin-bottom: 40px;
  text-align: center;
}
.about-hero .container {
  max-width: 760px;
}
.about-hero__logo {
  display: block;
  margin: 0 auto 20px;
}
.about-hero__title {
  margin: 0 0 14px;
  color: #0b182c;
  font-size: clamp(1.85rem, 4vw, 2.45rem);
  line-height: 1.2;
}
.about-hero__intro {
  margin: 0 auto 28px;
  max-width: 680px;
  color: #6b728f;
  font-size: 1.05rem;
  line-height: 1.65;
}
.about-hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.about-hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 14px;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.about-hero__cta img {
  width: 22px;
  height: 22px;
}
.about-hero__cta--primary {
  border: none;
  background: linear-gradient(135deg, #ff783f, #ffbc04);
  color: #fff;
  box-shadow: 0 8px 20px rgba(255, 120, 63, 0.24);
}
.about-hero__cta--primary:hover {
  background: #ff783f;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(255, 120, 63, 0.3);
  color: #fff;
}
.about-hero__cta--secondary {
  border: 1px solid #eaebf3;
  background: #fff;
  color: #252f57;
}
.about-hero__cta--secondary:hover {
  border-color: #d8dbe8;
  background: #fafbff;
  color: #252f57;
}

.about-stats {
  margin-bottom: 48px;
}
.about-stats__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.about-stats__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 24px 16px;
  background: #fff;
  border: 1px solid #eaebf3;
  border-radius: 18px;
  box-shadow: 0 4px 18px rgba(37, 47, 87, 0.06);
}
.about-stats__value {
  color: #0b182c;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  line-height: 1.1;
}
.about-stats__label {
  color: #6b728f;
  font-size: 0.9375rem;
  text-align: center;
}

.about-section {
  margin-bottom: 48px;
}
.about-section--muted {
  padding: 48px 0;
  background: linear-gradient(180deg, #fafbff 0%, #fff 100%);
}
.about-section__title {
  margin: 0 0 28px;
  color: #0b182c;
  font-size: 1.5rem;
  text-align: center;
}

.about-card {
  max-width: 820px;
  margin: 0 auto;
  padding: 32px 36px;
  background: #fff;
  border: 1px solid #eaebf3;
  border-radius: 24px;
  box-shadow: 0 8px 28px rgba(37, 47, 87, 0.08);
  color: #2d3748;
  line-height: 1.65;
}
.about-card h2 {
  margin: 0 0 12px;
  color: #0b182c;
  font-size: 1.25rem;
}
.about-card h2:not(:first-child) {
  margin-top: 28px;
}
.about-card p {
  margin: 0 0 12px;
  color: #6b728f;
}
.about-card p:last-child {
  margin-bottom: 0;
}
.about-card__note {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #eef0f6;
}
.about-card__note a {
  color: #ff783f;
  font-weight: 600;
  text-decoration: none;
}
.about-card__note a:hover {
  text-decoration: underline;
}
.about-card--split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  max-width: 960px;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
}

.about-feature {
  padding: 24px;
  background: #fff;
  border: 1px solid #eaebf3;
  border-radius: 20px;
  box-shadow: 0 4px 18px rgba(37, 47, 87, 0.06);
}
.about-feature__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 14px;
  border-radius: 14px;
  background: rgba(255, 120, 63, 0.12);
  color: #ff783f;
  font-size: 22px;
}
.about-feature h3 {
  margin: 0 0 8px;
  color: #0b182c;
  font-size: 1.05rem;
}
.about-feature p {
  margin: 0;
  color: #6b728f;
  font-size: 0.9375rem;
  line-height: 1.6;
}

.about-steps {
  margin: 0;
  padding-left: 1.25rem;
}
.about-steps li {
  margin-bottom: 10px;
  color: #6b728f;
}
.about-steps li:last-child {
  margin-bottom: 0;
}

.about-contact__email {
  color: #ff783f;
  font-weight: 600;
  text-decoration: none;
}
.about-contact__email:hover {
  text-decoration: underline;
}

.about-cta .container {
  max-width: 720px;
  padding: 40px 32px;
  text-align: center;
  background: #fff;
  border: 1px solid #eaebf3;
  border-radius: 24px;
  box-shadow: 0 8px 28px rgba(37, 47, 87, 0.08);
}
.about-cta h2 {
  margin: 0 0 10px;
  color: #0b182c;
  font-size: 1.5rem;
}
.about-cta p {
  margin: 0 0 24px;
  color: #6b728f;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .about-stats__list {
    grid-template-columns: 1fr;
  }
  .about-features {
    grid-template-columns: 1fr;
  }
  .about-card {
    padding: 24px 20px;
  }
  .about-card--split {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.support-page {
  padding-bottom: 64px;
}

.support-hero {
  margin-bottom: 40px;
  text-align: center;
}
.support-hero .container {
  max-width: 720px;
}
.support-hero__title {
  margin: 0 0 12px;
  color: #0b182c;
  font-size: clamp(1.85rem, 4vw, 2.35rem);
  line-height: 1.2;
}
.support-hero__intro {
  margin: 0 auto;
  max-width: 640px;
  color: #6b728f;
  font-size: 1.05rem;
  line-height: 1.65;
}

.support-section {
  margin-bottom: 48px;
}
.support-section--muted {
  padding: 48px 0;
  background: linear-gradient(180deg, #fafbff 0%, #fff 100%);
}
.support-section__title {
  margin: 0 0 12px;
  color: #0b182c;
  font-size: 1.5rem;
  text-align: center;
}
.support-section__intro {
  margin: 0 auto 28px;
  max-width: 640px;
  color: #6b728f;
  text-align: center;
  line-height: 1.6;
}

.support-contact {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  max-width: 720px;
  margin: 0 auto;
  padding: 32px 36px;
  background: #fff;
  border: 1px solid #eaebf3;
  border-radius: 24px;
  box-shadow: 0 8px 28px rgba(37, 47, 87, 0.08);
}
.support-contact__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(255, 120, 63, 0.12);
  color: #ff783f;
  font-size: 24px;
}
.support-contact h2 {
  margin: 0 0 10px;
  color: #0b182c;
  font-size: 1.25rem;
}
.support-contact p {
  margin: 0 0 10px;
  color: #6b728f;
  line-height: 1.6;
}
.support-contact p:last-child {
  margin-bottom: 0;
}
.support-contact__email a {
  color: #ff783f;
  font-size: 1.125rem;
  font-weight: 600;
  text-decoration: none;
}
.support-contact__email a:hover {
  text-decoration: underline;
}
.support-contact__note {
  font-size: 0.875rem;
  color: #8b90a7;
}

.support-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  max-width: 960px;
  margin: 24px auto 0;
}

.support-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 24px 16px;
  background: #fff;
  border: 1px solid #eaebf3;
  border-radius: 18px;
  box-shadow: 0 4px 18px rgba(37, 47, 87, 0.06);
  color: #252f57;
  font-size: 0.9375rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.support-link i {
  font-size: 24px;
  color: #ff783f;
}
.support-link:hover {
  transform: translateY(-2px);
  border-color: #ffd4bc;
  box-shadow: 0 8px 24px rgba(255, 120, 63, 0.12);
  color: #252f57;
}

.support-trouble {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  max-width: 960px;
  margin: 24px auto 0;
}

.support-trouble__item {
  padding: 24px;
  background: #fff;
  border: 1px solid #eaebf3;
  border-radius: 18px;
  box-shadow: 0 4px 18px rgba(37, 47, 87, 0.06);
}
.support-trouble__item h3 {
  margin: 0 0 10px;
  color: #0b182c;
  font-size: 1rem;
}
.support-trouble__item p {
  margin: 0;
  color: #6b728f;
  font-size: 0.9375rem;
  line-height: 1.6;
}

.support-cta .container {
  max-width: 640px;
  padding: 36px 32px;
  text-align: center;
  background: #fff;
  border: 1px solid #eaebf3;
  border-radius: 24px;
  box-shadow: 0 8px 28px rgba(37, 47, 87, 0.08);
}
.support-cta h2 {
  margin: 0 0 10px;
  color: #0b182c;
  font-size: 1.35rem;
}
.support-cta p {
  margin: 0 0 20px;
  color: #6b728f;
  line-height: 1.6;
}
.support-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 28px;
  border-radius: 14px;
  background: linear-gradient(135deg, #ff783f, #ffbc04);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(255, 120, 63, 0.24);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.support-cta__btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(255, 120, 63, 0.3);
  color: #fff;
}

@media (max-width: 900px) {
  .support-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .support-trouble {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .support-contact {
    flex-direction: column;
    padding: 24px 20px;
  }
  .support-links {
    grid-template-columns: 1fr;
  }
}
.search-page .catalogue-hero {
  position: relative;
  min-height: 100px;
  margin-bottom: 56px;
}
.search-page .catalogue-hero .container {
  position: relative;
}
.search-page .catalogue-ad {
  margin: 0 0 40px;
}
.search-page .catalogue-ad__inner {
  text-align: center;
}
.search-page .catalogue-heading {
  margin-bottom: 8px;
}
.search-page .catalogue-heading .container {
  width: 100%;
  max-width: 1200px;
}
.search-page .catalogue-heading .container p {
  margin-bottom: 28px;
}
.search-page .catalogue-grid {
  margin-bottom: 72px;
}
.search-page .catalogue-grid__inner {
  width: 100%;
  max-width: 1200px;
}
.search-page .catalogue-grid .wave {
  display: block;
  width: 100%;
  max-width: 1200px;
  height: auto;
  margin: 56px auto 0;
  opacity: 0.12;
}

.search-page__meta {
  color: #6b728f;
  font-size: 1rem;
}

.search-page__tags-label {
  margin: 0 0 14px;
  color: #6b728f;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.search-page__tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 0 0 36px;
  padding: 0;
  list-style: none;
}
.search-page__tags .tags__link {
  display: inline-block;
  padding: 10px 16px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: #fffbf6;
  color: #1b1c2a;
  font-size: 0.9375rem;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.search-page__tags .tags__link:hover {
  background: #ff7e3a;
  color: #fff;
}
.search-page__tags .tags__link.is-active {
  border-color: #ffd86b;
  background: #fff3c4;
  color: #252f57;
  font-weight: 600;
}

.search-form__field {
  position: relative;
  width: 100%;
}

.search-form__clear {
  position: absolute;
  top: 50%;
  right: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #f3f4f8;
  color: #6b728f;
  font-size: 1.125rem;
  line-height: 1;
  text-decoration: none;
  transform: translateY(-50%);
  transition: background 0.2s ease, color 0.2s ease;
}
.search-form__clear:hover {
  background: #eaebf3;
  color: #252f57;
}
.search-form__clear:focus-visible {
  outline: 2px solid #ff783f;
  outline-offset: 2px;
}

.search-form.catalogue-search input {
  padding-right: 52px;
}

.search-form__field:has(.search-form__clear) input {
  padding-right: 84px;
}

.search-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 520px;
  margin: 12px auto 0;
  padding: 48px 32px;
  border: 1px solid #eaebf3;
  border-radius: 24px;
  background: linear-gradient(135deg, #fff8f3 0%, #fff 55%, #fafbff 100%);
  box-shadow: 0 8px 28px rgba(37, 47, 87, 0.08);
  text-align: center;
}

.search-empty__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  margin-bottom: 20px;
  border-radius: 20px;
  background: rgba(255, 120, 63, 0.1);
  color: #ff783f;
  font-size: 1.75rem;
}

.search-empty__title {
  margin: 0 0 10px;
  color: #0b182c;
  font-size: 1.35rem;
  line-height: 1.3;
}

.search-empty__text {
  margin: 0 0 24px;
  color: #6b728f;
  font-size: 1rem;
  line-height: 1.6;
}

.search-empty__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.search-empty__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 14px;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.search-empty__btn--primary {
  background: linear-gradient(135deg, #ff783f, #ffbc04);
  color: #fff;
  box-shadow: 0 8px 20px rgba(255, 120, 63, 0.24);
}
.search-empty__btn--primary:hover {
  background: #ff783f;
  transform: translateY(-1px);
  color: #fff;
}
.search-empty__btn--secondary {
  border: 1px solid #eaebf3;
  background: #fff;
  color: #252f57;
}
.search-empty__btn--secondary:hover {
  border-color: #d8dbe8;
  background: #fafbff;
  color: #252f57;
}

@media (max-width: 1024px) {
  .search-page .catalogue-heading .container,
  .search-page .catalogue-grid__inner {
    width: 90%;
  }
}
@media (max-width: 768px) {
  .search-page .catalogue-hero {
    min-height: 88px;
    margin-bottom: 40px;
  }
  .search-page .catalogue-view-toggle-wrap {
    margin-bottom: 20px;
  }
  .search-page .search-page__tags {
    margin-bottom: 28px;
  }
  .search-empty {
    padding: 36px 24px;
  }
  .search-empty__actions {
    flex-direction: column;
    width: 100%;
  }
  .search-empty__btn {
    width: 100%;
  }
}
/* Breadcrumb container */
.breadcrumb {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  width: 100%;
  max-width: 1200px;
  margin: 32px auto 24px;
  /* Breadcrumb links */
}
.breadcrumb a {
  text-decoration: none;
  color: #041e49;
  /* Hover styles for breadcrumb links */
}
.breadcrumb a:hover {
  color: black;
}

.block_products {
  width: 100%;
  max-width: none !important;
  margin: 0;
}

.block_products__header {
  padding: 20px 0;
  margin: 0 auto;
  text-align: center;
}

.block_products__header__name {
  color: #252f57;
  text-align: center;
  font-size: 1.7em;
  margin-bottom: 15px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.products-grid__wrap {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px 32px;
  box-sizing: border-box;
}
.products-grid__item.card {
  width: 100%;
  max-width: none;
  margin: 0;
  border-radius: 0.5rem;
  background-color: #fff;
  box-sizing: border-box;
  border: 1px solid #eaebf3;
  box-shadow: 0 6px 20px rgba(37, 47, 87, 0.06);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.products-grid__item.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(37, 47, 87, 0.1);
}
.products-grid__item.card .image-content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 16/10;
  min-height: 0;
  padding: 14px 16px;
  box-sizing: border-box;
  background: linear-gradient(180deg, #f8f9fd 0%, #eef1f8 100%);
  overflow: hidden;
}
.products-grid__item.card .image-content .product-card__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 0;
  text-decoration: none;
}
.products-grid__item.card .image-content .product-card__img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center center;
  border-radius: 10px;
  transition: transform 0.3s ease;
}
.products-grid__item.card:hover .image-content .product-card__img {
  transform: scale(1.03);
}
.products-grid__item.card .card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 14px 14px;
  gap: 8px;
}
.products-grid__item.card .card-content .name {
  margin: 0;
  font-size: 17px;
  font-weight: 500;
  color: #333;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.products-grid__item.card .card-content .description {
  margin: 0;
  color: #707070;
  text-align: center;
  font-size: 14px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 1.45;
}
.products-grid__item.card .card-content__buttons {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 6px;
  margin-top: 2px;
}
.products-grid__item.card .card-content__buttons .btn.icon {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  gap: 5px;
  padding: 5px 7px;
}
.products-grid__item.card .card-content__buttons .btn.icon.w36 {
  width: 36px;
  height: 36px;
}
.products-grid__item.card .card-content__buttons .btn.icon:hover {
  color: #4070f4;
}
.products-grid__item.card .card-content__buttons .btn.icon:hover svg {
  transition-duration: 0.1s;
  transform: scale(1.1);
}
.products-grid__item.card .card-content__buttons .btn.website {
  padding: 4px 10px 4px 7px;
}
.products-grid__item.card .card-content__buttons__installs {
  display: flex;
  gap: 2px;
}

.block_products__footer {
  padding: 10px 0;
}

.secondary-btn.icon.website:hover {
  color: #4070f4 !important;
}

.primary-btn {
  color: white;
  border: none;
  height: 36px;
  padding: 0 20px;
  box-sizing: border-box;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 10px;
  text-decoration: none;
  background: #ffea74;
}

.secondary-btn {
  padding: 5px 20px;
  box-sizing: border-box;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 10px;
  text-decoration: none;
  background: #ffea74 !important;
  color: #252f57;
  border: 1px solid #eaebf3;
}
.secondary-btn:hover {
  background: #f5f5f5;
}

.text-content * {
  line-height: 1.5em;
}

.card-content__buttons__installs a.website {
  padding: 5px 12px !important;
}

@media (max-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }
}
@media (max-width: 640px) {
  .products-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .products-grid__wrap {
    padding: 0 12px 24px;
  }
}
.page-how-to ul {
  list-style: none;
}
.page-how-to ul p img {
  width: 100%;
}

.tags {
  list-style: none;
}

.home_popular_list {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: center;
  gap: 26px;
}
.home_popular_list .card_pet_popular {
  width: 200px;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: flex-start;
  justify-content: flex-start;
  align-items: flex-start;
}
.home_popular_list .card_pet_popular img {
  width: 50px;
  padding: 10px;
  background: #fffbf6;
  border-radius: 50%;
}

/*# sourceMappingURL=app.css.map */
