/* Общие стили */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Стили для заголовков */
h1, h2, h3, h4, h5, h6 {
  margin-bottom: 0.5rem;
}

/* Стили для хедера */
header {
  position: sticky;
  top: 0;
  z-index: 10;
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

header .container {
  padding: 1rem;
}

.header-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

@media (min-width: 768px) {
  .header-content {
    flex-direction: row;
    gap: 0;
  }
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.site-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #e11d48;
}

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  font-size: 1.125rem;
}

nav a {
  color: #4b5563;
  text-decoration: none;
  transition: color 0.2s;
}

nav a:hover {
  color: #e11d48;
}

/* Баннер */
.hero {
  background: linear-gradient(to right, #ffecf0, #ffe4eb);
  padding: 4rem 0;
  text-align: center;
}

.hero h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .hero h2 {
    font-size: 3rem;
  }
}

.hero p {
  max-width: 36rem;
  margin: 0 auto 2rem;
  font-size: 1.125rem;
  color: #4b5563;
}

/* Секции */
section {
  padding: 4rem 0;
}

section h2 {
  text-align: center;
  font-size: 1.875rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 2.5rem;
}

/* Породы */
.breeds-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 640px) {
  .breeds-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .breeds-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.breed-card {
  overflow: hidden;
  border-radius: 0.5rem;
  background-color: white;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.breed-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.breed-image {
  width: 100%;
  height: 12rem;
  object-fit: cover;
}

.breed-content {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.breed-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.breed-description {
  color: #4b5563;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.card-actions {
  display: flex;
  justify-content: space-between;
  margin-top: auto;
}

/* Кнопки */
.btn {
  display: inline-block;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 0.375rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-lg {
  padding: 0.75rem 1.5rem;
  font-size: 1.125rem;
}

.btn-primary {
  background-color: #e11d48;
  color: white;
}

.btn-primary:hover {
  background-color: #be123c;
}

.btn-outline {
  background-color: transparent;
  border-color: #e11d48;
  color: #e11d48;
}

.btn-outline:hover {
  background-color: #fff1f2;
}

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

/* Отзывы */
.reviews-section {
  background-color: #f9fafb;
}

.carousel {
  position: relative;
  max-width: 36rem;
  margin: 0 auto;
}

.carousel-content {
  position: relative;
}

.carousel-item {
  width: 100%;
}

.review-card {
  background-color: white;
  border-radius: 0.5rem;
  padding: 1.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.review-content {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.stars {
  display: flex;
  gap: 0.25rem;
}

.star {
  color: #f59e0b;
  font-size: 1.25rem;
}

.review-text {
  font-size: 1.125rem;
  color: #4b5563;
}

.review-author {
  font-weight: 600;
  color: #1f2937;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  color: #4b5563;
  border: none;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  z-index: 1;
}

.carousel-btn:hover {
  background-color: #f9fafb;
}

.carousel-prev {
  left: -1.25rem;
}

.carousel-next {
  right: -1.25rem;
}

/* Информационные блоки */
.info-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .info-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.info-card {
  padding: 1.5rem;
  border-radius: 0.5rem;
  background-color: white;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.info-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
  background-color: #fff1f2;
  color: #e11d48;
}

.info-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1f2937;
}

.info-text {
  color: #4b5563;
}

.info-list {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* Контакты */
.contacts-section {
  background-color: #f9fafb;
}

.contacts-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .contacts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .contacts-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.contact-card {
  padding: 1.5rem;
  background-color: white;
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
}

.contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: #fff1f2;
  color: #e11d48;
}

.contact-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0.25rem;
}

.social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: #f3f4f6;
  color: #4b5563;
  transition: all 0.2s;
}

/* Подвал */
.footer {
  background-color: #f9fafb;
  color: black;
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.footer-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.footer-contact-list, .footer-hours-list {
  list-style: none;
  margin-bottom: 1.5rem;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.footer-icon {
  margin-right: 0.75rem;
  color: #16a34a;
}

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

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: #134e4a;
  border-radius: 4px;
  transition: background-color 0.2s;
}

.social-link:hover {
  background-color: #16a34a;
}

.social-icon {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}

.newsletter-signup {
  width: 100%;
}

.newsletter-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.newsletter-input {
  padding: 0.75rem;
  border: none;
  border-radius: 4px;
  font-size: 0.875rem;
  width: 100%;
}

.newsletter-button {
  padding: 0.75rem;
  background-color: #16a34a;
  color: white;
  font-weight: 500;
  border-radius: 4px;
  border: none;
  cursor: pointer;
}

.newsletter-button:hover {
  background-color: #15803d;
}

.footer-hours-list li {
  margin-bottom: 0.5rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid #134e4a;
  font-size: 0.875rem;
  color: black;
}
/* Модальное окно */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20;
}

.modal {
  background-color: white;
  border-radius: 0.5rem;
  width: 100%;
  max-width: 36rem;
  max-height: 90vh;
  overflow-y: auto;
  padding: 1.5rem;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.modal-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f2937;
}

.modal-price {
  font-size: 1.25rem;
  font-weight: 600;
  color: #e11d48;
}

.modal-image {
  width: 100%;
  height: 15rem;
  object-fit: cover;
  border-radius: 0.375rem;
  margin-bottom: 1.5rem;
}

.modal-description {
  color: #4b5563;
  margin-bottom: 1.5rem;
  white-space: pre-wrap;
}

.characteristics-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 1rem;
}

.characteristic {
  margin-bottom: 1rem;
}

.characteristic-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.progress-bar {
  width: 100%;
  height: 0.5rem;
  background-color: #e5e7eb;
  border-radius: 0.25rem;
  overflow: hidden;
}

.progress-value {
  height: 100%;
  background-color: #e11d48;
  border-radius: 0.25rem;
}

.modal-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 1.5rem;
}

.hidden {
  display: none;
} 

