:root {
  --primary: #2f8f6f;
  --primary-dark: #25705a;
  --primary-soft: #e6f2ec;
  --text: #233038;
  --text-muted: #64737c;
  --bg: #f9fbfa;
  --card: #ffffff;
  --border: #e4ebe7;
  --shadow: 0 8px 30px rgba(38, 50, 56, 0.07);
  --radius: 16px;
  --danger: #e05d5d;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ----- Фоновая подложка: кошка ----- */
.bg-pets {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
}

.bg-pets__cat {
  position: absolute;
  right: -40px;
  bottom: -60px;
  width: 45%;
  max-width: 600px;
  opacity: 0.10;
  transform: scaleX(-1);
  object-fit: contain;
  filter: grayscale(20%);
}

.bg-pets__dog {
  position: absolute;
  left: -60px;
  top: 45%;
  width: 40%;
  max-width: 520px;
  opacity: 0.08;
  object-fit: contain;
  filter: grayscale(20%);
}

/* Мягкая маска поверх фоновых фото */
.bg-pets__mask {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(249,251,250,0.9) 0%, rgba(249,251,250,0.55) 40%, rgba(249,251,250,0.9) 100%);
}

/* ----- Шапка ----- */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 16px;
}

.logo {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
}

.logo span {
  color: var(--primary);
}

.nav {
  display: flex;
  gap: 26px;
}

.nav__link {
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
}

.nav__link:hover {
  color: var(--primary);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn--sm {
  padding: 9px 18px;
  font-size: 0.9rem;
}

.cart-btn {
  position: relative;
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: 12px;
  padding: 8px 12px;
  font-size: 1.05rem;
  cursor: pointer;
  transition: all 0.2s;
}

.cart-btn:hover {
  border-color: var(--primary);
}

#cartCount {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--primary);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.burger span {
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
}

/* ----- Кнопки ----- */
.btn {
  display: inline-block;
  padding: 14px 26px;
  border-radius: 12px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 1rem;
  font-family: inherit;
}

.btn--primary {
  background: var(--primary);
  color: #fff;
}

.btn--primary:hover {
  background: var(--primary-dark);
}

.btn--ghost {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn--ghost:hover {
  background: var(--primary-soft);
}

.btn--full {
  width: 100%;
}

/* ----- Главный экран ----- */
.hero {
  padding: 90px 0 70px;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
}

.hero h1 {
  font-size: 2.7rem;
  line-height: 1.15;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}

.hero h1 span {
  color: var(--primary);
}

.hero__text p {
  color: var(--text-muted);
  font-size: 1.12rem;
  margin-bottom: 20px;
  max-width: 540px;
}

.hero__strong {
  color: var(--primary);
  font-weight: 700;
}

.hero__badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}

.hero__badge {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero__img {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 50%;
  border: 8px solid var(--card);
  box-shadow: var(--shadow);
}

.hero__stamp {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  padding: 12px 18px;
  border-radius: 40px;
  box-shadow: var(--shadow);
}

/* ----- Особенности ----- */
.features {
  padding: 10px 0 60px;
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}

.feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.feature__icon {
  font-size: 2.3rem;
  margin-bottom: 12px;
}

.feature h3 {
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.feature p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ----- Секционные заголовки ----- */
.section-head {
  text-align: center;
  margin-bottom: 40px;
}

.section-head h2 {
  font-size: 2.1rem;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.section-head p {
  color: var(--text-muted);
}

.services, .doctors, .shop {
  padding: 70px 0;
}

.doctors, .contacts, .booking {
  background: #eef5f1;
}

/* ----- Услуги ----- */
.services__cats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.service-cat {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

.service-cat__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}

.service-cat__icon {
  font-size: 1.6rem;
}

.service-cat__head h3 {
  font-size: 1.25rem;
  letter-spacing: -0.01em;
}

.service-cat__list {
  list-style: none;
}

.service-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.95rem;
}

.service-row__name {
  color: var(--text);
}

.service-row__dots {
  flex: 1;
  border-bottom: 1px dotted var(--border);
  transform: translateY(-4px);
}

.service-row__price {
  font-weight: 700;
  color: var(--primary);
  white-space: nowrap;
}

/* ----- Вкладки разделов услуг ----- */
.svc-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.svc-tab {
  padding: 9px 18px;
  border-radius: 30px;
  border: 1px solid var(--border);
  background: var(--card);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}

.svc-tab:hover {
  border-color: var(--primary);
}

.svc-tab.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* ----- Панель фильтра и поиска (используется в услугах и магазине) ----- */
.svc-toolbar,
.shop__toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
}

.animal-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
}

.animal-tab {
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: var(--card);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}

.animal-tab:hover {
  border-color: var(--primary);
}

.animal-tab.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.svc-search {
  padding: 9px 14px;
  border-radius: 24px;
  border: 1px solid var(--border);
  background: var(--card);
  font-family: inherit;
  font-size: 0.92rem;
  width: 100%;
  max-width: 340px;
}

.svc-search:focus {
  outline: none;
  border-color: var(--primary);
}

/* ----- Список услуг ----- */
.svc-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.svc-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.95rem;
  border-bottom: 1px solid var(--border);
}

.svc-row__name {
  color: var(--text);
}

.svc-row__dots {
  flex: 1;
  border-bottom: 1px dotted var(--border);
  transform: translateY(-4px);
}

.svc-row__price {
  font-weight: 700;
  color: var(--primary);
  white-space: nowrap;
}

/* ----- Раскрытие карточки товара ----- */
.product-card {
  cursor: pointer;
}

.product-card__desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 12px;
  line-height: 1.45;
}

/* ----- Галерея ----- */
.gallery {
  padding: 70px 0;
}

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

.gallery__item {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4/3;
  border: 1px solid var(--border);
  background: var(--card);
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.gallery__item:hover img {
  transform: scale(1.05);
}

.gallery__more {
  text-align: center;
  margin-top: 32px;
}

/* ----- Как нас найти ----- */
.location {
  padding: 70px 0;
  background: #eef5f1;
}

.location__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 30px;
}

.location__card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
}

.location__card h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.location__card p {
  color: var(--text-muted);
  margin-bottom: 20px;
}

.location__links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.location__btn {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  font-weight: 600;
  padding: 11px 18px;
  border-radius: 10px;
  font-size: 0.9rem;
  transition: background 0.2s;
}

.location__btn:hover {
  background: var(--primary-dark);
}

.location__phones {
  text-align: center;
  background: var(--primary);
  border-radius: var(--radius);
  padding: 26px;
  color: #fff;
}

.location__phone-label {
  display: block;
  margin-bottom: 12px;
  font-size: 0.95rem;
  opacity: 0.85;
}

.location__phone {
  display: block;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 4px 0;
}

.location__phone:hover {
  opacity: 0.85;
}

/* ----- Врачи ----- */
.doctors__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.doctor-card {
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  text-align: center;
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
}

.doctor-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.doctor-card__photo-wrap {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--primary-soft);
  display: flex;
  align-items: center;
  justify-content: center;
}

.doctor-card__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--primary);
}

.doctor-card__photo {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.doctor-card__body {
  padding: 18px;
}

.doctor-card__body h3 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.doctor-card__specialty {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 6px;
}

.doctor-card__desc {
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* ----- Запись / бронирование ----- */
.booking {
  padding: 70px 0;
}

.booking__card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 36px;
  box-shadow: var(--shadow);
}

.booking__left h3,
.booking__right h3 {
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.booking__hint {
  color: var(--text-muted);
  margin-bottom: 22px;
  font-size: 0.95rem;
}

.booking__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.booking__field span {
  font-weight: 600;
  font-size: 0.9rem;
}

.booking__field input,
.booking__field select,
.booking__field textarea {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--bg);
  transition: border-color 0.2s;
}

.booking__field input:focus,
.booking__field select:focus,
.booking__field textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: #fff;
}

.booking__right {
  border-left: 1px solid var(--border);
  padding-left: 32px;
}

.time-title {
  margin-top: 8px;
}

/* Календарь */
.calendar {
  margin-bottom: 16px;
}

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

.calendar__nav button {
  border: 1px solid var(--border);
  background: var(--card);
  width: 30px;
  height: 30px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 700;
}

.calendar__nav button:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.calendar__month {
  font-weight: 700;
}

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

.calendar__dow {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 4px 0;
}

.calendar__day {
  border: none;
  background: var(--bg);
  border-radius: 8px;
  padding: 8px 0;
  cursor: pointer;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.15s;
}

.calendar__day:hover:not(.disabled):not(.past) {
  background: var(--primary-soft);
  color: var(--primary);
}

.calendar__day.selected {
  background: var(--primary);
  color: #fff;
}

.calendar__day.past,
.calendar__day.disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

/* Время */
.time-slots {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 20px;
}

.time-slot {
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: 8px;
  padding: 8px 4px;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.15s;
}

.time-slot:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.time-slot.selected {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.time-slot.booked {
  opacity: 0.4;
  cursor: not-allowed;
  text-decoration: line-through;
}

.booking__summary {
  border: 1px dashed var(--primary);
  background: var(--primary-soft);
  border-radius: 10px;
  padding: 12px 16px;
  margin-bottom: 16px;
  font-size: 0.95rem;
  color: var(--primary-dark);
  font-weight: 600;
}

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

/* ----- Магазин ----- */
.shop__filters {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.filter-btn {
  padding: 10px 20px;
  border-radius: 30px;
  border: 1px solid var(--border);
  background: var(--card);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.filter-btn:hover {
  border-color: var(--primary);
}

.filter-btn.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

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

.product-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.product-card__img {
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.2rem;
  background: var(--primary-soft);
}

.product-card__body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-card__cat {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 6px;
}

.product-card__body h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.product-card__price {
  font-weight: 700;
  margin-bottom: 12px;
  margin-top: auto;
}

.add-btn {
  padding: 10px;
  border-radius: 10px;
  border: none;
  background: var(--primary);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  font-family: inherit;
}

.add-btn:hover {
  background: var(--primary-dark);
}

/* ----- Контакты ----- */
.contacts {
  padding: 70px 0;
}

.contacts__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 30px;
}

.contact-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}

.contact-card h3 {
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.contact-card p {
  color: var(--text-muted);
}

.contacts__social {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.social-link {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 22px;
  font-weight: 600;
  transition: all 0.2s;
}

.social-link:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

/* ----- Футер ----- */
.footer {
  background: #1d292e;
  color: #cfd8dc;
  padding: 30px 0;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer .logo {
  color: #fff;
}

.footer p {
  font-size: 0.85rem;
  max-width: 520px;
}

/* ----- Корзина ----- */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s;
  z-index: 60;
}

.cart-overlay.open {
  opacity: 1;
  visibility: visible;
}

.cart {
  position: fixed;
  top: 0;
  right: 0;
  width: 360px;
  max-width: 90vw;
  height: 100%;
  background: var(--card);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
  transform: translateX(100%);
  transition: transform 0.3s;
  z-index: 70;
  display: flex;
  flex-direction: column;
}

.cart.open {
  transform: translateX(0);
}

.cart__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid var(--border);
}

.cart__close {
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--text-muted);
}

.cart__items {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cart-item {
  display: flex;
  gap: 14px;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px;
}

.cart-item__emoji {
  font-size: 1.8rem;
  background: var(--primary-soft);
  border-radius: 10px;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-item__info {
  flex: 1;
}

.cart-item__info h4 {
  font-size: 0.9rem;
}

.cart-item__qty {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cart-item__qty button {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  border: 1px solid var(--border);
  background: var(--bg);
  cursor: pointer;
  font-size: 1rem;
}

.cart-item__remove {
  background: none;
  border: none;
  color: var(--danger);
  cursor: pointer;
  font-size: 0.85rem;
}

.cart__footer {
  padding: 20px;
  border-top: 1px solid var(--border);
}

.cart__total {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 14px;
}

/* ----- Тосты ----- */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--text);
  color: #fff;
  padding: 12px 24px;
  border-radius: 12px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 80;
}

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

/* ----- Адаптивность ----- */
@media (max-width: 992px) {
  .services__cats, .features__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .doctors__grid, .shop__grid, .contacts__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .booking__card {
    grid-template-columns: 1fr;
  }
  .booking__right {
    border-left: none;
    border-top: 1px solid var(--border);
    padding-left: 0;
    padding-top: 24px;
  }
}

@media (max-width: 768px) {
  .hero__inner {
    grid-template-columns: 1fr;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .nav {
    position: fixed;
    top: 68px;
    right: 0;
    flex-direction: column;
    background: var(--card);
    padding: 24px;
    gap: 18px;
    box-shadow: -10px 10px 30px rgba(0,0,0,0.1);
    transform: translateX(100%);
    transition: transform 0.3s;
    width: 240px;
  }
  .nav.open {
    transform: translateX(0);
  }
  .burger {
    display: flex;
  }
  .header__actions .btn--sm {
    display: none;
  }
  .services__cats, .features__grid, .doctors__grid, .contacts__grid,
  .gallery__grid, .location__grid {
    grid-template-columns: 1fr;
  }
  .shop__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .svc-tabs, .shop__filters, .animal-tabs {
    gap: 5px;
  }
  .svc-tab, .filter-btn, .animal-tab {
    padding: 7px 10px;
    font-size: 0.8rem;
  }
  .product-card__img {
    height: 90px;
  }
  .bg-pets__cat {
    width: 70%;
  }
  .bg-pets__dog {
    width: 60%;
  }
}

@media (max-width: 420px) {
  .footer__inner {
    flex-direction: column;
    text-align: center;
  }
}
