:root {
  --primary-color: #3a86ff;
  --secondary-color: #8338ec;
  --accent-color: #ff006e;
  --light-color: #f8f9fa;
  --dark-color: #212529;
  --success-color: #38b000;
  --info-color: #3a86ff;
  --warning-color: #ffbe0b;
}

body {
  font-family: Verdana, sans-serif;
  color: #333;
  line-height: 1.7;
}

/* Общие стили для секций */
.section-title {
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--dark-color);
  position: relative;
}

.title-line {
  width: 80px;
  height: 3px;
  background-color: var(--primary-color);
  margin: 0 auto 2rem;
}

/* Стили для главного баннера */
.ElegantMotionSphere {
  background: linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.5)),
              url('../images/hero-bg.webp');
  padding: 120px 0;
  background-size: cover;
}

/* Стили для карточек */
.hover-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}

.icon-box {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Стили для продуктовых карточек */
.product-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 12px;
  overflow: hidden;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
}

.product-card .card-img-top {
  height: 200px;
  object-fit: cover;
}

.price-tag {
  color: var(--primary-color);
}

/* Стили для отзывов */
.testimonial-bubble {
  position: relative;
}

.testimonial-bubble::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 30px;
  width: 20px;
  height: 20px;
  background-color: white;
  transform: rotate(45deg);
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  font-weight: bold;
}

/* Стили для контактной формы */
.contact-title {
  position: relative;
  padding-bottom: 15px;
}

.contact-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--primary-color);
}

.contact-icon {
  width: 24px;
  text-align: center;
}

/* Стили для команды на странице О нас */
.team-image {
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.team-social {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0;
  background-color: rgba(58, 134, 255, 0.8);
  overflow: hidden;
  transition: height 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 0 100% 100%;
}

.team-image:hover .team-social {
  height: 60px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: white;
  color: var(--primary-color);
  margin: 0 5px;
  transition: all 0.3s ease;
}

.social-link:hover {
  background-color: var(--dark-color);
  color: white;
}

/* Медиа-запросы для адаптивности */
@media (max-width: 768px) {
  .ElegantMotionSphere {
      padding: 80px 0;
  }
  
  .section-title {
      font-size: 1.8rem;
  }
}