/* ===== Подключение шрифтов ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,300;14..32,400;14..32,500;14..32,600;14..32,700;14..32,800&display=swap');

/* ===== CSS переменные ===== */
:root {
  --primary: #FF6B35;
  --primary-dark: #E85A2A;
  --primary-light: #FF8A5C;
  --secondary: #2ECC71;
  --secondary-dark: #27AE60;
  --accent: #F1C40F;
  --dark: #1A1A2E;
  --dark-light: #16213E;
  --gray: #6B7280;
  --gray-light: #E5E7EB;
  --bg-light: #FFF8F5;
  --white: #FFFFFF;
  --shadow-sm: 0 4px 15px rgba(255, 107, 53, 0.15);
  --shadow-md: 0 8px 30px rgba(255, 107, 53, 0.25);
  --shadow-lg: 0 16px 48px rgba(255, 107, 53, 0.35);
  --shadow-xl: 0 24px 64px rgba(255, 107, 53, 0.4);
  --gradient-1: linear-gradient(135deg, #FF6B35 0%, #FF8A5C 100%);
  --gradient-2: linear-gradient(135deg, #2ECC71 0%, #27AE60 100%);
  --gradient-3: linear-gradient(135deg, #FF6B35 0%, #F1C40F 100%);
  --border-radius: 20px;
  --border-radius-sm: 12px;
  --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg-light);
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===== Кастомный скроллбар ===== */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
  background: var(--gradient-1);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gradient-3);
}

/* ========================================
   ХЕДЕР
======================================== */
.header {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
  position: sticky;
  top: 0;
  z-index: 1000;
  animation: slideDown 0.6s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.header__menu {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0.8rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.header__logo img {
  height: 45px;
  width: auto;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.header__logo img:hover {
  transform: scale(1.05) rotate(-3deg);
}

.header__link {
  color: var(--gray);
  text-decoration: none;
  font-weight: 500;
  padding: 0.4rem 0.8rem;
  border-radius: 40px;
  transition: all 0.3s ease;
  position: relative;
  font-size: 0.9rem;
}

.header__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gradient-1);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.header__link:hover::after {
  width: 70%;
}

.header__link:hover {
  color: var(--primary);
  background: rgba(255, 107, 53, 0.08);
}

.header__icon {
  display: flex;
  gap: 0.3rem;
  margin-left: auto;
  align-items: center;
}

.header__icons {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  border-radius: 50%;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.header__icons:hover {
  background: rgba(255, 107, 53, 0.1);
  transform: translateY(-2px);
}

.header__icons:active {
  transform: scale(0.95);
}

.header__img {
  width: 22px;
  height: 22px;
}

.cart-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background: var(--primary);
  color: white;
  font-size: 9px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  animation: pulse 2s ease infinite;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }
}

/* ===== Бургер-меню ===== */
.burger-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  margin-left: auto;
}

.burger-menu span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--dark);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.burger-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.burger-menu.active span:nth-child(2) {
  opacity: 0;
}

.burger-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== Основной контент ===== */
.main {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.5rem;
}

/* ===== Главный блок ===== */
.main__section {
  background: linear-gradient(135deg, #FFF0E8 0%, #FFE4D6 100%);
  border-radius: var(--border-radius);
  padding: 2rem;
  margin-bottom: 2.5rem;
  position: relative;
  overflow: hidden;
}

.main__section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: floatBg 8s ease-in-out infinite;
}

@keyframes floatBg {

  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(-20px, -20px);
  }
}

.main__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.main__title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
  animation: fadeInLeft 0.8s ease;
}

.main__title .highlight {
  background: var(--gradient-1);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.main__subtitle h2 {
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--gray);
  line-height: 1.5;
  animation: fadeInLeft 0.8s ease 0.2s both;
}

.main__image {
  display: flex;
  justify-content: center;
  animation: float 3s ease-in-out infinite;
}

.main__image img {
  max-width: 100%;
  max-height: 300px;
  object-fit: contain;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.main__actions {
  grid-column: span 2;
  text-align: center;
  display: flex;
  gap: 0.8rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.4s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.catalog__button {
  display: inline-block;
  background: var(--gradient-1);
  color: var(--white);
  text-decoration: none;
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.catalog__button i {
  margin-left: 0.3rem;
  transition: transform 0.3s ease;
}

.catalog__button:hover i {
  transform: translateX(5px);
}

.catalog__button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.catalog__button:hover::before {
  width: 200px;
  height: 200px;
}

.catalog__button:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.catalog__button:active {
  transform: translateY(0) scale(0.98);
}

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

.catalog__button.secondary:hover {
  background: var(--primary);
  color: white;
}

/* ========================================
   СТАТИСТИКА
======================================== */
.stats__section {
  margin-bottom: 2.5rem;
}

.stats__items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.stats__item {
  background: var(--white);
  padding: 1.5rem 1rem;
  border-radius: var(--border-radius-sm);
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
  cursor: default;
}

.stats__item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.stats__number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  background: var(--gradient-1);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  transition: transform 0.3s ease;
}

.stats__item:hover .stats__number {
  transform: scale(1.05);
}

.stats__label {
  color: var(--gray);
  font-weight: 500;
  margin-top: 0.3rem;
  display: block;
  font-size: 0.85rem;
}

/* ========================================
   КАТЕГОРИИ
======================================== */
.category__section {
  margin-bottom: 2.5rem;
}

.category__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  margin-bottom: 1.2rem;
}

.category__title h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--dark);
  position: relative;
  display: inline-block;
}

.category__title h2::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 50px;
  height: 4px;
  background: var(--gradient-1);
  border-radius: 4px;
}

.category__subtitle {
  color: var(--gray);
  font-size: 0.95rem;
  margin-top: 0.3rem;
}

.category__all {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.category__all:hover {
  gap: 0.6rem;
  color: var(--primary-dark);
}

.category__items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
}

.category__item {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease;
}

.category__item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.category__item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.category__item:hover img {
  transform: scale(1.08);
}

.category__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.2rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  color: white;
  transform: translateY(10px);
  transition: transform 0.3s ease;
}

.category__item:hover .category__overlay {
  transform: translateY(0);
}

.category__text {
  font-size: 1.1rem;
  font-weight: 700;
}

.category__count {
  font-size: 0.8rem;
  opacity: 0.8;
}

/* ========================================
   О КОМПАНИИ
======================================== */
.about__section {
  margin-bottom: 2.5rem;
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.about__section:hover {
  box-shadow: var(--shadow-md);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.about__tag {
  display: inline-block;
  background: rgba(255, 107, 53, 0.1);
  color: var(--primary);
  padding: 0.2rem 0.8rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about__title h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0.3rem 0;
}

.about__text p {
  color: var(--gray);
  line-height: 1.7;
  font-size: 0.95rem;
}

.about__features {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 0.8rem 0;
}

.about__features span {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  color: var(--dark);
  font-weight: 500;
  font-size: 0.9rem;
}

.about__features i {
  color: var(--secondary);
}

.about__button {
  background: var(--gradient-1);
  color: var(--white);
  border: none;
  padding: 0.7rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
  font-size: 0.9rem;
}

.about__button:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.about__button:active {
  transform: translateY(0) scale(0.98);
}

.about__image {
  position: relative;
}

.about__image img {
  width: 100%;
  border-radius: var(--border-radius-sm);
}

.about__badge {
  position: absolute;
  bottom: -8px;
  right: -8px;
  background: var(--gradient-1);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  box-shadow: var(--shadow-md);
  animation: pulse 2s ease infinite;
}

/* ========================================
   КАРТОЧКА ТОВАРА
======================================== */
.card__section {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  margin-bottom: 2.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.card__header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
}

.card__section-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark);
}

.card__section-badge {
  background: var(--gradient-1);
  color: white;
  padding: 0.2rem 0.8rem;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
}

.card__content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 1.5rem;
}

.card__images {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.card__image-main {
  position: relative;
  border-radius: var(--border-radius-sm);
  overflow: hidden;
}

.card__image-main img {
  width: 100%;
  border-radius: var(--border-radius-sm);
  transition: transform 0.3s ease;
}

.card__image-main:hover img {
  transform: scale(1.02);
}

.card__discount {
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  background: var(--primary);
  color: white;
  padding: 0.2rem 0.6rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.8rem;
}

.card__image-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.card__image-thumbs img {
  width: 100%;
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0.6;
}

.card__image-thumbs img:hover,
.card__image-thumbs img.active {
  opacity: 1;
  border: 2px solid var(--primary);
}

.card__title {
  font-size: 1.6rem;
  font-weight: 700;
  background: var(--gradient-1);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 0.3rem;
}

.card__rating {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  margin-bottom: 0.8rem;
}

.card__rating i {
  color: var(--accent);
  font-size: 0.9rem;
}

.card__estimation {
  font-weight: 700;
  color: var(--dark);
  margin-left: 0.3rem;
  font-size: 0.9rem;
}

.card__feedback {
  color: var(--gray);
  font-size: 0.8rem;
}

.card__text h3 {
  font-size: 0.95rem;
  color: var(--gray);
  margin-bottom: 0.8rem;
}

.card__text ul {
  margin: 0.8rem 0;
  padding-left: 0;
  list-style: none;
}

.card__text li {
  margin: 0.3rem 0;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.card__text li:hover {
  color: var(--primary);
  transform: translateX(3px);
}

.card__text li i {
  color: var(--primary);
  width: 18px;
}

.card__volume {
  margin: 1rem 0;
}

.card__volume label {
  font-weight: 600;
  display: block;
  margin-bottom: 0.3rem;
  font-size: 0.95rem;
}

.selector-options {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.selector-options label {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.3rem 1rem;
  border: 2px solid var(--gray-light);
  border-radius: 40px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
  font-size: 0.85rem;
}

.selector-options input[type="radio"] {
  display: none;
}

.selector-options label:hover {
  border-color: var(--primary);
  background: rgba(255, 107, 53, 0.05);
}

.selector-options input[type="radio"]:checked+label {
  border-color: var(--primary);
  background: rgba(255, 107, 53, 0.1);
}

.card__quantity {
  margin: 1rem 0;
}

.card__quantity label {
  font-weight: 600;
  display: block;
  margin-bottom: 0.3rem;
  font-size: 0.95rem;
}

.quantity__controls {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.quantity__minus,
.quantity__plus {
  background: var(--gray-light);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--dark);
}

.quantity__minus:hover,
.quantity__plus:hover {
  background: var(--primary);
  color: white;
  transform: scale(1.05);
}

.quantity__minus:active,
.quantity__plus:active {
  transform: scale(0.95);
}

.quantity__number {
  width: 60px;
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  border: 2px solid var(--gray-light);
  border-radius: 40px;
  padding: 0.3rem;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
}

.quantity__number:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.1);
}

.card__delivery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  margin: 1rem 0;
}

.card__delivery>input[type="radio"] {
  display: none;
}

.delivery__once,
.delivery__regular {
  padding: 0.8rem;
  border: 2px solid var(--gray-light);
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.card__delivery input[type="radio"]:checked+div {
  border-color: var(--primary);
  background: rgba(255, 107, 53, 0.05);
  box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.08);
}

.delivery__once:hover,
.delivery__regular:hover {
  border-color: var(--primary);
}

.price {
  font-size: 1.2rem;
  font-weight: 700;
  background: var(--gradient-1);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  display: block;
  margin: 0.3rem 0;
}

.delivery__info {
  color: var(--gray);
  font-size: 0.75rem;
}

.delivery__badge {
  display: inline-block;
  background: var(--gradient-2);
  color: white;
  padding: 0.15rem 0.6rem;
  border-radius: 50px;
  font-size: 0.65rem;
  font-weight: 600;
  margin-top: 0.3rem;
}

.card__actions {
  display: flex;
  gap: 0.8rem;
  margin-top: 1rem;
}

.card__button {
  flex: 1;
  background: var(--gradient-1);
  color: var(--white);
  border: none;
  padding: 0.8rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
}

.card__button:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.card__button:active {
  transform: translateY(0) scale(0.98);
}

.card__button.favorite {
  flex: 0 0 44px;
  background: var(--gray-light);
  color: var(--gray);
  padding: 0;
  font-size: 1rem;
}

.card__button.favorite:hover {
  background: rgba(255, 107, 53, 0.1);
  color: var(--primary);
}

.card__button.favorite.active {
  color: var(--primary);
  background: rgba(255, 107, 53, 0.15);
}

.card__button.favorite.active i {
  animation: heartBeat 0.5s ease;
}

@keyframes heartBeat {
  0% {
    transform: scale(1);
  }

  25% {
    transform: scale(1.3);
  }

  50% {
    transform: scale(0.9);
  }

  75% {
    transform: scale(1.2);
  }

  100% {
    transform: scale(1);
  }
}

/* ========================================
   ОТЗЫВЫ
======================================== */
.reviews__section {
  margin-bottom: 2.5rem;
}

.reviews__title {
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  color: var(--dark);
  margin-bottom: 1.5rem;
  position: relative;
}

.reviews__title::after {
  content: '';
  display: block;
  width: 50px;
  height: 4px;
  background: var(--gradient-1);
  margin: 0.3rem auto 0;
  border-radius: 4px;
}

.reviews__items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.2rem;
}

.reviews__item {
  background: var(--white);
  padding: 1.2rem;
  border-radius: var(--border-radius);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.reviews__item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.reviews__stars {
  color: var(--accent);
  margin-bottom: 0.3rem;
}

.reviews__stars i {
  margin-right: 2px;
  font-size: 0.9rem;
}

.reviews__text {
  color: var(--gray);
  font-style: italic;
  margin-bottom: 0.8rem;
  font-size: 0.9rem;
}

.reviews__author {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--gray-light);
  padding-top: 0.8rem;
}

.reviews__name {
  font-weight: 600;
  color: var(--dark);
  font-size: 0.9rem;
}

.reviews__pet {
  color: var(--gray);
  font-size: 0.8rem;
}

/* ========================================
   ПРЕИМУЩЕСТВА
======================================== */
.advantages__section {
  background: var(--gradient-1);
  border-radius: var(--border-radius);
  padding: 2rem;
  margin-bottom: 2.5rem;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.advantages__section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.advantages__title {
  font-size: 1.6rem;
  text-align: center;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.advantages__items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.advantages__item {
  text-align: center;
  background: rgba(255, 255, 255, 0.15);
  padding: 1.2rem;
  border-radius: var(--border-radius);
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
  cursor: default;
}

.advantages__item:hover {
  transform: translateY(-6px) scale(1.02);
  background: rgba(255, 255, 255, 0.25);
}

.advantages__icon {
  margin-bottom: 0.8rem;
}

.advantages__image {
  width: 50px;
  transition: transform 0.5s ease;
}

.advantages__item:hover .advantages__image {
  transform: rotate(360deg);
}

.advantages__text {
  font-weight: 700;
  font-size: 1rem;
}

.advantages__desc {
  display: block;
  font-size: 0.8rem;
  opacity: 0.8;
  margin-top: 0.2rem;
}

/* ========================================
   О КОМПАНИИ (второй блок)
======================================== */
.company__section {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 2rem;
  margin-bottom: 2.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.company__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.company__tag {
  display: inline-block;
  background: rgba(255, 107, 53, 0.1);
  color: var(--primary);
  padding: 0.2rem 0.8rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.company__title h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0.3rem 0;
}

.company__text p {
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
}

.company__features {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 0.8rem 0;
}

.company__features span {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  color: var(--dark);
  font-weight: 500;
  font-size: 0.9rem;
}

.company__features i {
  color: var(--primary);
}

.company__button {
  background: var(--gradient-1);
  color: var(--white);
  border: none;
  padding: 0.7rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
  font-size: 0.9rem;
}

.company__button:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.company__button:active {
  transform: translateY(0) scale(0.98);
}

.company__image {
  position: relative;
}

.company__image img {
  width: 100%;
  border-radius: var(--border-radius-sm);
}

.company__badge {
  position: absolute;
  bottom: 0.8rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-1);
  color: white;
  padding: 0.3rem 1rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.8rem;
  box-shadow: var(--shadow-md);
  white-space: nowrap;
}

/* ========================================
   ФОРМА
======================================== */
.form__section {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 2rem;
  margin-bottom: 2.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.form__header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.form__title {
  font-size: 1.6rem;
  font-weight: 700;
  background: var(--gradient-1);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.form__subtitle {
  color: var(--gray);
  max-width: 600px;
  margin: 0.3rem auto 0;
  font-size: 0.95rem;
}

.form {
  max-width: 600px;
  margin: 0 auto;
}

.form__row {
  margin-bottom: 1.2rem;
}

.form__label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: var(--dark);
  font-size: 0.9rem;
}

.form__label i {
  color: var(--primary);
  margin-right: 0.3rem;
}

.form__input {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 2px solid var(--gray-light);
  border-radius: var(--border-radius-sm);
  font-size: 0.95rem;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
  background: var(--white);
}

.form__input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.1);
}

.form__input.error {
  border-color: #FF6B35;
  box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.1);
}

.input__label {
  font-weight: 600;
  display: block;
  margin-bottom: 0.3rem;
  font-size: 0.9rem;
}

.radio__group {
  display: flex;
  gap: 0.8rem;
  margin: 0.8rem 0;
  flex-wrap: wrap;
}

.radio__option {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.3rem 1rem;
  border: 2px solid var(--gray-light);
  border-radius: 40px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.radio__option:hover {
  border-color: var(--primary);
  background: rgba(255, 107, 53, 0.05);
}

.radio__option input[type="radio"] {
  display: none;
}

.radio__option input[type="radio"]:checked+.radio__text {
  color: var(--primary);
}

.radio__text i {
  margin-right: 0.2rem;
}

.form__checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin: 0.8rem 0;
}

.form__checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: var(--primary);
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.form__checkbox label {
  color: var(--gray);
  font-size: 0.85rem;
  cursor: pointer;
}

.form__button {
  background: var(--gradient-1);
  color: var(--white);
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.form__button:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.form__button:active {
  transform: translateY(0) scale(0.98);
}

/* ========================================
   КНОПКА "НАВЕРХ"
======================================== */
.scroll-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  background: var(--gradient-1);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: var(--shadow-md);
}

.scroll-top:active {
  transform: scale(0.95);
}

/* ========================================
   ФУТЕР
======================================== */
.footer {
  background: var(--dark);
  color: var(--white);
  padding: 2rem 1.5rem 1rem;
  margin-top: 2.5rem;
  border-top: 4px solid var(--primary);
}

.footer__container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__about h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  background: var(--gradient-1);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.footer__about p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  font-size: 0.9rem;
  max-width: 400px;
}

.footer__links h4,
.footer__social-block h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: var(--white);
}

.footer__links a {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  padding: 0.2rem 0;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.footer__links a:hover {
  color: var(--primary);
  transform: translateX(5px);
}

.footer__social-links {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  color: var(--white);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.footer__social-link:hover {
  background: var(--gradient-1);
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.footer__social-link i {
  transition: transform 0.3s ease;
}

.footer__social-link:hover i {
  transform: scale(1.1);
}

.footer__bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.footer__copy {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
}

.footer__copy .heart {
  color: var(--primary);
  display: inline-block;
  animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.2);
  }
}

.footer__bottom-links {
  display: flex;
  gap: 1rem;
}

.footer__bottom-links a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 0.8rem;
  transition: all 0.3s ease;
}

.footer__bottom-links a:hover {
  color: var(--primary);
}

/* ========================================
   УВЕДОМЛЕНИЯ
======================================== */
.notification {
  position: fixed;
  top: 70px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.8rem 1.5rem;
  border-radius: var(--border-radius-sm);
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  z-index: 9999;
  max-width: 90%;
  text-align: center;
  animation: slideDown 0.5s ease;
  box-shadow: var(--shadow-lg);
  font-size: 0.9rem;
}

.notification--success {
  background: var(--gradient-2);
  color: white;
}

.notification--error {
  background: var(--gradient-1);
  color: white;
}

.notification--info {
  background: linear-gradient(135deg, #3498DB 0%, #2980B9 100%);
  color: white;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

/* ========================================
   АДАПТИВНОСТЬ
======================================== */

/* --- Планшеты и маленькие ноутбуки --- */
@media (max-width: 1024px) {
  .header__menu {
    padding: 0.6rem 1.2rem;
    gap: 1rem;
  }

  .header__link {
    font-size: 0.85rem;
    padding: 0.3rem 0.7rem;
  }

  .main__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .main__title {
    font-size: 2.2rem;
  }

  .main__image {
    order: -1;
  }

  .main__image img {
    max-height: 250px;
  }

  .main__actions {
    grid-column: span 1;
  }

  .about__grid,
  .company__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .about__image {
    order: -1;
  }

  .card__content {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .stats__items {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
  }

  .footer__container {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  /* Бургер-меню для планшетов */
  .header__menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 1rem 1.5rem;
    box-shadow: var(--shadow-md);
    gap: 0.3rem;
    border-bottom: 1px solid var(--gray-light);
    max-height: 80vh;
    overflow-y: auto;
  }

  .header__menu.active {
    display: flex;
  }

  .burger-menu {
    display: flex;
  }

  .header__icon {
    margin-left: 0;
  }

  .header__link {
    width: 100%;
    text-align: center;
    padding: 0.6rem;
  }
}

/* --- Телефоны (горизонтальная и вертикальная ориентация) --- */
@media (max-width: 768px) {
  .main {
    padding: 0.8rem;
  }

  .main__section {
    padding: 1.5rem;
    border-radius: var(--border-radius-sm);
    margin-bottom: 1.5rem;
  }

  .main__title {
    font-size: 1.8rem;
  }

  .main__subtitle h2 {
    font-size: 0.95rem;
  }

  .main__image img {
    max-height: 200px;
  }

  .main__actions {
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
  }

  .catalog__button {
    width: 100%;
    justify-content: center;
    padding: 0.7rem 1.5rem;
    font-size: 0.9rem;
  }

  .stats__items {
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
  }

  .stats__item {
    padding: 1rem 0.8rem;
  }

  .stats__number {
    font-size: 1.6rem;
  }

  .stats__label {
    font-size: 0.75rem;
  }

  .category__items {
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
  }

  .category__item img {
    height: 140px;
  }

  .category__title h2 {
    font-size: 1.4rem;
  }

  .category__overlay {
    padding: 0.8rem;
  }

  .category__text {
    font-size: 0.95rem;
  }

  .category__count {
    font-size: 0.7rem;
  }

  .about__section,
  .company__section,
  .form__section {
    padding: 1.2rem;
    border-radius: var(--border-radius-sm);
  }

  .about__title h2,
  .company__title h2 {
    font-size: 1.3rem;
  }

  .about__text p,
  .company__text p {
    font-size: 0.9rem;
  }

  .about__features span,
  .company__features span {
    font-size: 0.8rem;
  }

  .about__badge {
    width: 50px;
    height: 50px;
    font-size: 0.8rem;
    bottom: -5px;
    right: -5px;
  }

  .card__section {
    padding: 1rem;
    border-radius: var(--border-radius-sm);
  }

  .card__section-title {
    font-size: 1.1rem;
  }

  .card__section-badge {
    font-size: 0.6rem;
    padding: 0.15rem 0.6rem;
  }

  .card__title {
    font-size: 1.3rem;
  }

  .card__text h3 {
    font-size: 0.85rem;
  }

  .card__text li {
    font-size: 0.8rem;
  }

  .selector-options label {
    font-size: 0.75rem;
    padding: 0.2rem 0.7rem;
  }

  .quantity__number {
    width: 50px;
    font-size: 0.9rem;
  }

  .quantity__minus,
  .quantity__plus {
    width: 32px;
    height: 32px;
    font-size: 0.8rem;
  }

  .price {
    font-size: 1rem;
  }

  .card__delivery {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }

  .delivery__once,
  .delivery__regular {
    padding: 0.6rem;
  }

  .card__button {
    font-size: 0.8rem;
    padding: 0.6rem;
  }

  .card__button.favorite {
    flex: 0 0 40px;
    font-size: 0.9rem;
  }

  .reviews__title {
    font-size: 1.4rem;
  }

  .reviews__items {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .reviews__item {
    padding: 1rem;
  }

  .reviews__text {
    font-size: 0.85rem;
  }

  .advantages__section {
    padding: 1.5rem;
  }

  .advantages__title {
    font-size: 1.3rem;
  }

  .advantages__items {
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
  }

  .advantages__item {
    padding: 1rem;
  }

  .advantages__image {
    width: 40px;
  }

  .advantages__text {
    font-size: 0.85rem;
  }

  .advantages__desc {
    font-size: 0.7rem;
  }

  .form__title {
    font-size: 1.3rem;
  }

  .form__subtitle {
    font-size: 0.85rem;
  }

  .form__row {
    margin-bottom: 0.8rem;
  }

  .form__input {
    padding: 0.6rem 0.8rem;
    font-size: 0.9rem;
  }

  .radio__group {
    gap: 0.5rem;
  }

  .radio__option {
    font-size: 0.8rem;
    padding: 0.2rem 0.8rem;
  }

  .form__checkbox label {
    font-size: 0.8rem;
  }

  .form__button {
    font-size: 0.9rem;
    padding: 0.7rem;
  }

  .company__badge {
    font-size: 0.7rem;
    padding: 0.2rem 0.8rem;
    bottom: 0.5rem;
  }

  .footer {
    padding: 1.5rem 1rem 0.8rem;
  }

  .footer__container {
    grid-template-columns: 1fr;
    gap: 1.2rem;
    text-align: center;
  }

  .footer__about p {
    max-width: 100%;
    margin: 0 auto;
  }

  .footer__social-links {
    justify-content: center;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }

  .footer__bottom-links {
    justify-content: center;
  }

  .scroll-top {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
    bottom: 1rem;
    right: 1rem;
  }

  .notification {
    font-size: 0.85rem;
    padding: 0.6rem 1rem;
    top: 60px;
  }
}

/* --- Маленькие телефоны (до 480px) --- */
@media (max-width: 480px) {
  .header__menu {
    padding: 0.4rem 0.8rem;
    gap: 0.5rem;
  }

  .header__logo img {
    height: 35px;
  }

  .header__img {
    width: 18px;
    height: 18px;
  }

  .cart-badge {
    width: 16px;
    height: 16px;
    font-size: 8px;
    top: -4px;
    right: -4px;
  }

  .main {
    padding: 0.5rem;
  }

  .main__section {
    padding: 1rem;
    margin-bottom: 1rem;
  }

  .main__title {
    font-size: 1.5rem;
  }

  .main__image img {
    max-height: 160px;
  }

  .stats__items {
    grid-template-columns: 1fr 1fr;
    gap: 0.4rem;
  }

  .stats__item {
    padding: 0.8rem 0.5rem;
  }

  .stats__number {
    font-size: 1.3rem;
  }

  .stats__label {
    font-size: 0.65rem;
  }

  .category__items {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .category__item img {
    height: 120px;
  }

  .category__title h2 {
    font-size: 1.2rem;
  }

  .category__subtitle {
    font-size: 0.8rem;
  }

  .category__all {
    font-size: 0.8rem;
  }

  .about__section,
  .company__section,
  .form__section {
    padding: 1rem;
  }

  .about__title h2,
  .company__title h2 {
    font-size: 1.1rem;
  }

  .about__features {
    gap: 0.5rem;
  }

  .about__features span {
    font-size: 0.75rem;
  }

  .about__badge {
    width: 40px;
    height: 40px;
    font-size: 0.65rem;
  }

  .card__section {
    padding: 0.8rem;
  }

  .card__title {
    font-size: 1.1rem;
  }

  .card__rating i {
    font-size: 0.75rem;
  }

  .card__estimation {
    font-size: 0.8rem;
  }

  .card__feedback {
    font-size: 0.7rem;
  }

  .card__text ul {
    margin: 0.5rem 0;
  }

  .card__text li {
    font-size: 0.75rem;
  }

  .selector-options label {
    font-size: 0.7rem;
    padding: 0.15rem 0.6rem;
  }

  .card__volume label,
  .card__quantity label {
    font-size: 0.8rem;
  }

  .quantity__number {
    width: 40px;
    font-size: 0.8rem;
  }

  .quantity__minus,
  .quantity__plus {
    width: 28px;
    height: 28px;
    font-size: 0.7rem;
  }

  .price {
    font-size: 0.9rem;
  }

  .delivery__info {
    font-size: 0.65rem;
  }

  .delivery__badge {
    font-size: 0.55rem;
    padding: 0.1rem 0.4rem;
  }

  .card__button {
    font-size: 0.7rem;
    padding: 0.5rem;
  }

  .card__button.favorite {
    flex: 0 0 36px;
    font-size: 0.8rem;
  }

  .reviews__title {
    font-size: 1.2rem;
  }

  .reviews__item {
    padding: 0.8rem;
  }

  .reviews__stars i {
    font-size: 0.75rem;
  }

  .reviews__text {
    font-size: 0.8rem;
  }

  .reviews__name {
    font-size: 0.8rem;
  }

  .reviews__pet {
    font-size: 0.7rem;
  }

  .advantages__items {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }

  .advantages__title {
    font-size: 1.1rem;
  }

  .advantages__item {
    padding: 0.8rem;
  }

  .advantages__image {
    width: 35px;
  }

  .advantages__text {
    font-size: 0.8rem;
  }

  .form__title {
    font-size: 1.1rem;
  }

  .form__subtitle {
    font-size: 0.8rem;
  }

  .form__input {
    padding: 0.5rem 0.7rem;
    font-size: 0.85rem;
  }

  .radio__option {
    font-size: 0.75rem;
    padding: 0.15rem 0.6rem;
  }

  .form__checkbox label {
    font-size: 0.75rem;
  }

  .form__button {
    font-size: 0.85rem;
    padding: 0.6rem;
  }

  .company__badge {
    font-size: 0.6rem;
    padding: 0.15rem 0.6rem;
    bottom: 0.3rem;
  }

  .footer {
    padding: 1rem 0.8rem 0.5rem;
  }

  .footer__about h3 {
    font-size: 1.1rem;
  }

  .footer__about p {
    font-size: 0.8rem;
  }

  .footer__links h4,
  .footer__social-block h4 {
    font-size: 0.9rem;
  }

  .footer__links a {
    font-size: 0.8rem;
  }

  .footer__social-link {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }

  .footer__copy {
    font-size: 0.7rem;
  }

  .footer__bottom-links a {
    font-size: 0.7rem;
  }

  .scroll-top {
    width: 36px;
    height: 36px;
    font-size: 0.8rem;
    bottom: 0.8rem;
    right: 0.8rem;
  }

  .notification {
    font-size: 0.75rem;
    padding: 0.5rem 0.8rem;
    top: 55px;
    max-width: 95%;
  }
}

/* ========================================
   УТИЛИТЫ
======================================== */
.text-gradient {
  background: var(--gradient-1);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.text-center {
  text-align: center;
}

.mt-1 {
  margin-top: 0.5rem;
}

.mt-2 {
  margin-top: 1rem;
}

.mt-3 {
  margin-top: 1.5rem;
}

.mt-4 {
  margin-top: 2rem;
}

.mb-1 {
  margin-bottom: 0.5rem;
}

.mb-2 {
  margin-bottom: 1rem;
}

.mb-3 {
  margin-bottom: 1.5rem;
}

.mb-4 {
  margin-bottom: 2rem;
}

.hidden-mobile {
  display: block;
}

@media (max-width: 768px) {
  .hidden-mobile {
    display: none;
  }
}

.hidden-desktop {
  display: none;
}

@media (max-width: 768px) {
  .hidden-desktop {
    display: block;
  }
}