/* styles.css */

:root {
  --family-color: #2e7d32; /* глубже зелёный */
  --career-color: #00acc1; /* бирюзовый вместо синего */
  --accent-color: #ffeb3b; /* мягкий жёлтый */
  --gourmet-color: #ff5722; /* оранжевый (можно оставить) */
  --discount-color: #ff5252; /* мягкий красный */
  --trendsetter-color: #ab47bc; /* современный фиолетовый */
  --primary-color: #e91e63; /* мягкий розовый */
  --primaryti-color: #ff5252; /* вместо чистого красного */
  --secondary-color: #1a2a3a; /* глубже тёмно-синий */
  --header-bg: linear-gradient(135deg, #1a2a3a, #2c3e50);
  --white: #fff;
  --border-color: #e0e0e0;
  --text-muted: #5a5a5a; /* лучше читаемость */
  --black: #000; /* чёрный */
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-color: var(--white);
  color: var(--secondary-color);
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--secondary-color); /* Цвет текста */
}

.logo {
  height: 50px;
}

.slide:nth-child(1) {
  background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
    url("https://storage.yandexcloud.net/vikitchen/slaid_3.webp");
}

.slide:nth-child(2) {
  background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
    url("https://storage.yandexcloud.net/vikitchen/slaid_2.webp");
}

.slide:nth-child(3) {
  background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
    url("https://storage.yandexcloud.net/vikitchen/slaid_1_2.webp");
}

.slide.active {
  opacity: 1;
}

.cta-button {
  display: inline-block;
  padding: 12px 30px;
  background-color: var(--primary-color);
  color: var(--white);
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s;
}

.cta-button:hover {
  background-color: var(--gourmet-color);
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: var(--white);
  border: none;
  padding: 15px;
  cursor: pointer;
  font-size: 1.5rem;
  z-index: 10;
}

.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10 !important;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.dot {
  width: 12px;
  height: 12px;
  margin: 0 5px;
  background-color: var(--text-muted);
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s;
  z-index: 1001 !important;
  position: relative;
}

.dot.active {
  background-color: var(--family-color);
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
  z-index: 1;
}

.slides-container {
  display: flex;
  height: 100%;
  transition: transform 0.5s ease-in-out;
}

.slide {
  min-width: 100%;
  height: 100%;
  position: relative;
  background-size: cover;
  background-position: center;
  z-index: 2;
}

.slide-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: var(--white);
  width: 80%;
  max-width: 800px;
}

.slide-content h2 {
  color: var(--white);
}

.slide h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.slide p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Общие стили */

.family-tag {
  background-color: var(--family-color);
}
.career-tag {
  background-color: var(--career-color);
}
.trendsetter-tag {
  background-color: var(--trendsetter-color);
}
.gourmet-tag {
  background-color: var(--accent-color);
}

/* Стили для компьютерной версии (по умолчанию) */
.styles-slider-container {
  position: relative;
  margin-top: 30px;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.5rem;
  color: var(--secondary-color);
  position: relative;
  display: inline-block;
  text-align: center;
}

h2::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 180px;
  height: 4px;
  background: var(--primary-color);
  border-radius: 2px;
}

/* Target Audience Section */
.target-audience {
  padding: 30px 0;
  text-align: center;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.audience-card {
  background: var(--white);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
}

.audience-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.family {
  border-top: 5px solid var(--family-color);
}

.career {
  border-top: 5px solid var(--career-color);
}

.gourmet {
  border-top: 5px solid var(--gourmet-color);
}

.trendsetter {
  border-top: 5px solid var(--trendsetter-color);
}

.audience-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.audience-icon img {
  width: 200px;
  height: 200px;
  object-fit: contain;
}

/* Kitchen Types Section */

.type-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.type-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.type-image {
  height: 200px;
  background-size: cover;
  background-position: center;
}

.type-content {
  padding: 15px;
}

/* Zones Section */
.zones-section {
  padding: 60px 0;
}

.zones-grid {
  display: grid;
  margin-top: 40px;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.zone-card {
  background: var(--white);
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.zone-card:hover {
  transform: translateY(-5px);
}

.zone-card h3 {
  color: var(--secondary-color);
  margin-bottom: 10px;
}

.zone-card p {
  color: var(--text-muted);
  margin: 8px 0;
}

/* Product Groups & Styles Sections */
.product-groups,
.styles-section,
.categories-section {
  background-color: var(--white);
}

.styles-section,
.kitchen-types {
  background-color: var(--white);
}

.product-grid,
.style-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.product-card,
.style-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
}

.product-card:hover,
.style-card:hover {
  transform: translateY(-10px);
}

.product-image,
.style-image {
  height: 200px;
  background-size: cover;
  background-position: center;
}

.product-content,
.style-content {
  padding: 20px;
}

.styles-slider .container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.styles-slider h2 {
  text-align: center;
  margin-bottom: 15px;
}

.styles-slider p {
  text-align: center;
  margin-bottom: 40px;
  color: var(--text-muted);
}

.styles-slider-container {
  position: relative;
  overflow: hidden;
  height: 500px;
}

.style-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 30px;
  background: var(--white);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.style-slide.active {
  opacity: 1;
  z-index: 1;
}

.style-slide-image {
  width: 50%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.style-slide-content {
  width: 50%;
  box-sizing: border-box;
  flex: 1;
  padding: 20px;
  align-items: center;
  text-align: center;
}

.style-slide-content p {
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.style-slide-content h3 {
  margin: 0 auto 15px;
  text-align: center;
}

.slider-arrow {
  background: rgba(255, 255, 255, 0.7);
  border: none;
  font-size: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s;
}

.slider-arrow:hover {
  background: var(--text-muted);
}

.price {
  font-weight: bold;
  color: var(--primary-color);
  margin: 10px 0;
}

/* Categories Section */
.category-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.category-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border-left: 5px solid var(--primary-color);
  transition: transform 0.3s;
}

.category-card:hover {
  transform: translateY(-5px);
}

.category-header {
  background-color: var(--secondary-color);
  color: var(--white);
  padding: 15px 20px;
  font-size: 1.2rem;
}

.subcategory-list {
  padding: 20px;
}

.subcategory-item {
  padding: 10px 0;
  border-bottom: 1px solid var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.subcategory-item:last-child {
  border-bottom: none;
}

.subcategory-name {
  font-weight: 500;
}

.subcategory-link {
  color: var(--primary-color);
  text-decoration: none;
  font-size: 0.9rem;
  padding: 5px 10px;
  border-radius: 15px;
  border: 1px solid var(--border-color);
  transition: all 0.3s;
}

.subcategory-link:hover {
  background-color: var(--primaryti-color);
  color: var(--white);
}

/* Style Tags */
.style-tags {
  margin-top: 10px;
}

.style-tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.8rem;
  margin-right: 5px;
  margin-bottom: 5px;
  color: var(--white);
}

.career-tag {
  background-color: var(--career-color);
  color: var(--white);
}
.gourmet-tag {
  background-color: var(--gourmet-color);
  color: var(--white);
}
.trendsetter-tag {
  background-color: var(--trendsetter-color);
  color: var(--white);
}

/* Promo Section */
.promo-section {
  padding: 80px 0;
}

.promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.promo-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}

.promo-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.promo-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--primary-color);
  color: var(--white);
  padding: 5px 15px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 0.9rem;
  z-index: 2;
}

.promo-image {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.promo-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.1),
    rgba(0, 0, 0, 0.3)
  );
}

.promo-content {
  padding: 25px;
}

.promo-title {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: var(--secondary-color);
}

.promo-description {
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.6;
}

.promo-details {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 20px;
}

.promo-price {
  font-size: 32px;
  font-weight: bold;
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 10px 0;
}

.original-price {
  font-size: 18px;
  text-decoration: line-through;
  color: var(--text-muted);
  margin-right: 10px;
}

.discount-price {
  font-size: 32px;
  color: var(--primary-color);
  font-weight: bold;
}

.promo-button {
  display: inline-block;
  background: var(--primary-color);
  color: var(--white);
  padding: 10px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.promo-button:hover {
  background: var(--gourmet-color);
}

.product-button {
  display: inline-block;
  background: var(--primary-color);
  color: var(--white);
  padding: 10px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
  justify-content: center;
}

.product-button:hover {
  background: var(--gourmet-color);
}

.promo-timer {
  background: var(--secondary-color);
  color: var(--white);
  padding: 15px;
  text-align: center;
  font-size: 1.1rem;
  margin-top: 20px;
}

.timer-text {
  margin-bottom: 10px;
}

.timer-numbers {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--accent-color);
}

/* Header Styles */
.main-header {
  background: var(--header-bg);
  color: var(--white);
  padding: 1rem 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
}

.logo {
  display: flex;
  gap: 10px;
}

.logo h1 {
  font-size: 2rem;
  margin: 0;
  color: var(--white);
}

.logo span {
  font-size: 0.9rem;
  color: var(--white);
  opacity: 0.8;
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 1.5rem;
}

.main-nav a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
  padding: 0.5rem 0;
  position: relative;
}

.main-nav a:hover {
  color: var(--accent-color);
}

.main-nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-color);
  transition: width 0.3s;
}

.main-nav a:hover::after {
  width: 100%;
}

.header-contacts {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.phone {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
  align-items: center;
}

.phone:hover {
  color: var(--accent-color);
}

.callback-btn {
  background: var(--primary-color);
  color: var(--white);
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s;
}

.callback-btn:hover {
  background: var(--primaryti-color);
  transform: translateY(-2px);
}

/* Footer Styles */
.main-footer {
  background: var(--secondary-color);
  color: var(--white);
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-column h3 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: var(--white);
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-column h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: var(--accent-color);
}

.footer-column ul {
  list-style: none;
}

.footer-column li {
  margin-bottom: 0.8rem;
}

.footer-column a {
  color: var(--border-color);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-column a:hover {
  color: var(--accent-color);
}

.contacts-column address {
  font-style: normal;
  margin-bottom: 1.5rem;
}

.contacts-column p {
  margin-bottom: 0.5rem;
  color: var(--border-color);
}

.contacts-column a {
  color: var(--border-color);
  transition: color 0.3s;
}

.contacts-column a:hover {
  color: var(--accent-color);
}

.social-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--white);
  transition: all 0.3s;
}

.social-icon:hover {
  background: var(--primaryti-color);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.policy-link {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s;
}

.policy-link:hover {
  color: var(--accent-color);
}

.mobile-version {
  display: none;
}

.mobile-slide-content {
  display: none;
}

/* Стили для модального окна */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.modal-content {
  background-color: var(--white);
  padding: 30px;
  border-radius: 10px;
  width: 100%;
  max-width: 500px;
  position: relative;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  animation: modalFadeIn 0.3s;
}

.open-feedback-btn {
  padding: 16px 20px;
  background: var(--white);
  border: 2px solid var(--primary-color);
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s;
  background-color: var(--primary-color);
  color: var(--white);
  font-weight: 1000;
  margin-top: 40px; /* Регулируйте значение */
}

.open-feedback-btn:hover {
  background-color: var(--primaryti-color);
}

.download-btn {
  display: inline-block;
  padding: 10px 20px;
  background: var(--primary-color);
  color: var(--white);
  text-decoration: none;
  border-radius: 5px;
  font-weight: 500;
  transition: background 0.3s;
}

.download-btn:hover {
  background-color: var(--primaryti-color);
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--white);
}

.modal-title {
  font-size: 1.5rem;
  color: var(--secondary-color);
  margin: 0;
}

.modal-overlay {
  transition: opacity 0.3s ease;
}
.modal-content {
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.modal-overlay:not([style*="display: flex"]) {
  opacity: 0;
  pointer-events: none;
}
.modal-overlay[style*="display: flex"] .modal-content {
  animation: modalFadeIn 0.3s;
}

.close-btn {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-muted);
  transition: color 0.3s;
}

.close-btn:hover {
  color: var(--gourmet-color);
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--secondary-color);
}

.form-input {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  font-size: 1rem;
  transition: border-color 0.3s;
}

.form-input:focus {
  border-color: var(--career-color);
  outline: none;
}

.error-message {
  color: var(--gourmet-color);
  font-size: 0.85rem;
  margin-top: 5px;
  display: none;
}

.submit-btn {
  width: 100%;
  padding: 12px;
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s;
}

.submit-btn:hover {
  background-color: var(--primaryti-color);
}

.submit-btn:disabled {
  background-color: var(--border-color);
  cursor: not-allowed;
}

.captcha-container {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.captcha-text {
  font-weight: bold;
  letter-spacing: 3px;
  padding: 5px 10px;
  background: var(--white);
  border-radius: 3px;
}

.refresh-captcha {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--career-color);
  font-size: 1.2rem;
}

/* Стили для модального окна благодарности */
.thank-you-modal {
  text-align: center;
  padding: 40px 20px;
}

.thank-you-icon {
  font-size: 4rem;
  color: var(--family-color);
  margin-bottom: 20px;
}

.thank-you-title {
  font-size: 1.8rem;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.thank-you-text {
  color: var(--text-muted);
  margin-bottom: 25px;
  line-height: 1.6;
}

.assistant-header {
  text-align: center;
  padding: 10px 0 30px;
}

.assistant-header h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: var(--secondary-color);
}

.assistant-header p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto;
}

.category-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 30px 0;
}

.tab-btn {
  padding: 12px 25px;
  background: var(--white);
  border: 2px solid var(--primary-color);
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.tab-btn:hover {
  background: rgba(233, 30, 99, 0.1);
}

.tab-btn.active {
  background: var(--primary-color);
  color: var(--white);
}

.content-section {
  display: none;
  padding: 30px 0;
  animation: fadeIn 0.5s;
}

.content-section.active {
  display: block;
}

.materials-grid {
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.material-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
}

.material-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.material-image {
  height: 300px;
  background-size: cover;
  background-position: center;
}

.material-content {
  padding: 20px;
}

.material-category {
  display: inline-block;
  padding: 3px 10px;
  background: var(--accent-color);
  color: var(--secondary-color);
  border-radius: 20px;
  font-size: 0.8rem;
  margin-bottom: 10px;
}

.material-title {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--secondary-color);
}

.material-desc {
  color: var(--text-muted);
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.material-link {
  display: inline-block;
  padding: 8px 20px;
  background: var(--primary-color);
  color: var(--white);
  text-decoration: none;
  border-radius: 5px;
  font-weight: 500;
  transition: background 0.3s;
}

.material-link:hover {
  background: var(--primaryti-color);
}

.calculator-container {
  background: var(--white);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  max-width: 600px;
  margin: 0 auto;
}

.calculator-title {
  text-align: center;
  margin-bottom: 20px;
  color: var(--secondary-color);
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.form-input {
  width: 100%;
  padding: 10px 15px;
  border: 1px;
  border-radius: 5px;
}

.form-select {
  width: 100%;
  padding: 10px 15px;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  background: var(--white);
}

.calculate-btn {
  display: block;
  width: 100%;
  padding: 12px;
  background: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
}

.calculate-btn:hover {
  background: var(--primaryti-color);
}

.result-container {
  margin-top: 20px;
  padding: 15px;
  background: var(--white);
  border-radius: 5px;
  display: none;
}

.test-question {
  background: var(--white);
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
  display: none;
}

.test-question.active {
  display: block;
}

.test-options {
  margin-top: 15px;
}

.test-option {
  display: block;
  margin-bottom: 10px;
  padding: 10px 15px;
  background: var(--white);
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s;
}

.test-option:hover {
  background: var(--white);
}

.test-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

.test-btn {
  padding: 10px 20px;
  background: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.test-btn:disabled {
  background: var(--border-color);
  cursor: not-allowed;
}

.checklist-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  padding: 15px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.checklist-checkbox {
  margin-right: 15px;
  width: 20px;
  height: 20px;
}

.checklist-label {
  flex: 1;
}

.sections-header {
  text-align: center;
  padding: 0px 0 30px;
 }

.section-header {
  text-align: center;
 }

.section-header h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
  color: var(--secondary-color);
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--primary-color);
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto;
}

/* Отзывы */
.slaider-section {
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.reviews-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 10px;
}

.review-tab {
  padding: 10px 20px;
  background: var(--white);
  border: 2px solid var(--primary-color);
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s;
}

.review-tab:hover {
  background: rgba(233, 30, 99, 0.1);
}

.review-tab.active {
  background: var(--primary-color);
  color: var(--white);
}

.review-content {
  display: none;
}

.review-content.active {
  display: block;
  animation: fadeIn 0.5s;
}

.photo-reviews {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 25px;
}

.photo-review {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.review-image {
  height: 250px;
  background-size: cover;
  background-position: center;
}

.review-text {
  padding: 20px;
}

.review-author {
  font-weight: 600;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.review-author::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 2px;
  background: var(--primary-color);
  margin-right: 10px;
}

.video-reviews {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 25px;
}

.video-review {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.video-thumbnail {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(233, 30, 99, 0.7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 24px;
}

.video-info {
  padding: 15px;
  background: var(--white);
}

.before-after {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.comparison {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.comparison-images {
  display: flex;
  position: relative;
  height: 250px;
}

.before-image,
.after-image {
  width: 50%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.comparison-slider {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--primary-color);
  left: 50%;
  cursor: ew-resize;
}

.comparison-slider::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--primary-color);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.comparison-info {
  padding: 15px;
}

/* FAQ */
.faq-section {
  background: var(--white);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 15px;
  border: 1px solid var(--white);
  border-radius: 8px;
  overflow: hidden;
}

.faq-question {
  padding: 15px 20px;
  background: var(--white);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
}

.faq-question::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--primary-color);
}

.faq-question.active::after {
  content: "-";
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.faq-answer.active {
  padding: 15px 20px;
  max-height: 500px;
}

/* Процесс заказа */
.process-section {
  background-color: var(--white);
}

.process-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.process-step {
  flex: 1;
  min-width: 250px;
  max-width: 300px;
  background: var(--white);
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  position: relative;
}

.step-number {
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto 15px;
}

.step-title {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--secondary-color);
}

.step-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Сборка и монтаж */
.assembly-section {
  padding: 0px 0;
}

.assembly-comparison {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
}

.assembly-option {
  flex: 1;
  min-width: 300px;
  background: var(--white);
  border-radius: 10px;
  padding: 0px 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.option-header {
  display: flex;
  flex-direction: column; /* Расположить элементы вертикально */
  align-items: center;
  justify-content: center; /* Центрирование по горизонтали */
  margin-bottom: 20px;
}

.option-icon {
  width: 50px;
  height: 50px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  font-size: 1.5rem;
}

.option-title {
  font-size: 1.3rem;
  color: var(--secondary-color);
}

.option-list {
  list-style-type: none;
}

.option-list li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}

.option-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

/* Условия доставки */
.delivery-section {
  background-color: var(--white);
}

.delivery-options {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 40px;
}

.delivery-option {
  flex: 1;
  min-width: 250px;
  background: var(--white);
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.delivery-title {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: center; /* Добавлено для центрирования */
  text-align: center;
}

.delivery-title::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 3px;
  background: var(--primary-color);
  margin-right: 10px;
}

.delivery-price {
  font-weight: bold;
  margin: 10px 0;
  color: var(--primary-color);
}

/* Варианты оплаты */
.payment-section {
  padding: 0px 0;
}

.payment-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 40px;
  justify-content: space-between; /* Для равномерного распределения в десктопной версии */
}

.payment-method {
  flex: 1;
  min-width: 200px;
  background: var(--white);
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.payment-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.payment-name {
  font-weight: 500;
  margin-bottom: 10px;
}

/* Гарантии */
.warranty-section {
  background-color: var(--white);
}

.warranty-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 40px;
}

.warranty-card {
  flex: 1;
  min-width: 250px;
  background: var(--white);
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.warranty-period {
  font-size: 2rem;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.warranty-title {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: var(--secondary-color);
}

/* Возврат и обмен */
.return-section {
  padding: 0px 0;
}

.return-policy {
  max-width: 800px;
  margin: 40px auto 0;
  background: var(--white);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.policy-item {
  margin-bottom: 25px;
}

.policy-title {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--secondary-color);
  display: flex;
  align-items: center;
}

.policy-title::before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  background: var(--primary-color);
  margin-right: 10px;
  border-radius: 3px;
}

/* Секция услуг */
.services-section {
  padding: 40px 0 80px;
}

.service-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 10px;
}

.service-tab {
  padding: 12px 25px;
  background: var(--white);
  border: 2px solid var(--primary-color);
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s;
  font-weight: 600;
}

.service-tab:hover {
  background: rgba(233, 30, 99, 0.1);
}

.service-tab.active {
  background: var(--primary-color);
  color: var(--white);
}

.service-content {
  display: none;
  animation: fadeIn 0.5s;
}

.service-content.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.service-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.service-image {
  flex: 1;
  min-width: 300px;
  height: 400px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-details {
  flex: 1;
  min-width: 300px;
}

.service-title {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--secondary-color);
}

.service-description {
  margin-bottom: 25px;
  color: var(--text-muted);
}

.service-features {
  margin-bottom: 30px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.feature-icon {
  width: 24px;
  height: 24px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
  color: var(--secondary-color);
}

.feature-text {
  flex: 1;
}

.service-price {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.service-cta {
  display: inline-block;
  padding: 12px 30px;
  background: var(--primary-color);
  color: var(--white);
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  transition: background 0.3s;
}

.service-cta:hover {
  background: var(--primaryti-color);
}

/* Блок преимуществ */
.benefits-section {
  background: var(--secondary-color);
  color: var(--white);
  padding: 60px 0;
  margin: 60px 0;
}

.benefits-container {
  max-width: 1000px;
  margin: 0 auto;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.benefit-card {
  text-align: center;
  padding: 30px 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

.benefit-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--accent-color);
}

.benefit-title {
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.benefit-text {
  opacity: 0.9;
}

.product-page {
  display: grid;
  grid-template-columns: 1fr;
  padding: 30px 0;
}

/* Основной блок товара */
.product-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  background: var(--white);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* Галерея изображений */
.product-gallery {
  position: relative;
}

.main-image {
  width: 100%;
  height: 500px;
  object-fit: contain;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  cursor: zoom-in;
  background: var(--white);
  margin-bottom: 15px;
}

.thumbnail-slider {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 10px;
}

.thumbnail {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s;
}

.thumbnail:hover {
  border-color: var(--primaryti-color);
}

.thumbnail.active {
  border-color: var(--primary-color);
  transform: scale(1.05);
}

.zoom-icon {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  z-index: 10;
}

.zoom-icon:hover {
  background-color: rgba(255, 255, 255, 1);
  transform: scale(1.1);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
}

.zoom-icon .fa-search-plus {
  color: var(--secondary-color);
  font-size: 18px;
  transition: all 0.2s ease;
}

.zoom-icon:hover .fa-search-plus {
  color: var(--black);
}

/* Информация о товаре */
.product-info {
  position: relative;
}

.product-title {
  font-size: 2rem;
  margin-bottom: 10px;
  color: var(--secondary-color);
}

.product-sku {
  color: var(--text-muted);
  margin-bottom: 15px;
  font-size: 0.9rem;
}

.rating {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.stars {
  color: var(--accent-color);
  margin-right: 10px;
}

.reviews-count {
  color: var(--text-muted);
  font-size: 0.9rem;
  text-decoration: underline;
  cursor: pointer;
}

.price-container {
  margin: 25px 0;
}

.current-price {
  font-size: 2.2rem;
  font-weight: bold;
  color: var(--primary-color);
}

.old-price {
  font-size: 1.5rem;
  text-decoration: line-through;
  color: var(--text-muted);
  margin-left: 10px;
}

.discount-badge {
  display: inline-block;
  background: var(--discount-color);
  color: var(--white);
  padding: 3px 10px;
  border-radius: 15px;
  font-size: 0.9rem;
  margin-left: 10px;
  vertical-align: super;
}

.stock-status {
  display: flex;
  align-items: center;
  margin: 20px 0;
  color: var(--family-color);
  font-weight: 500;
}

.stock-status.out-of-stock {
  color: var(--discount-color);
}

.stock-status i {
  margin-right: 8px;
}

/* Кнопки действий */
.action-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin: 30px 0;
}

.btn {
  padding: 12px 25px;
  border-radius: 5px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-primary {
  background: var(--primary-color);
  color: var(--white);
  flex: 1;
  min-width: 200px;
}

.btn-primary:hover {
  background: var(--primaryti-color);
  transform: translateY(-2px);
}

.btn-secondary {
  background: var(--white);
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  flex: 1;
  min-width: 200px;
}

.btn-secondary:hover {
  background: rgba(233, 30, 99, 0.1);
}

.btn-wishlist {
  width: 50px;
  height: 50px;
  border: 1px solid var(--border-color);
  background: var(--white);
  border-radius: 5px;
  color: var(--text-muted);
}

.btn-wishlist:hover,
.btn-wishlist.active {
  color: var(--primary-color);
  border-color: var(--primaryti-color);
}

.btn-compare {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--border-color);
  color: var(--secondary-color);
  padding: 10px 15px;
  border-radius: 5px;
  margin-top: 10px;
}

.btn-compare:hover {
  border-color: var(--primary-color);
  color: var(--primaryti-color);
}

/* Варианты товара */
.product-variants {
  margin: 30px 0;
}

.variant-option {
  margin-bottom: 20px;
}

.variant-title {
  font-weight: 500;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.variant-title i {
  margin-left: 10px;
  color: var(--text-muted);
  cursor: pointer;
}

.color-options {
  display: flex;
  gap: 10px;
}

.color-option {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  position: relative;
}

.color-option.active {
  border-color: var(--primary-color);
}

.color-option.active::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--white);
  font-size: 0.8rem;
}

.size-options {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.size-option {
  padding: 8px 15px;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  cursor: pointer;
  min-width: 50px;
  text-align: center;
}

.size-option.active {
  border-color: var(--primary-color);
  background: rgba(233, 30, 99, 0.1);
  color: var(--primary-color);
}

.size-table-link {
  color: var(--primary-color);
  text-decoration: underline;
  font-size: 0.9rem;
  margin-left: 15px;
  cursor: pointer;
}

/* Описание товара */
.product-description {
  background: var(--white);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  margin-top: 30px;
}

.description-section {
  margin-bottom: 30px;
}

.section-title {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--secondary-color);
  position: relative;
  padding-bottom: 10px;
}

.section-title::after {
  content: "";
  bottom: 0;
  width: 50px;
  height: 3px;
  background: var(--primary-color);
}

.short-description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.features-list {
  list-style-type: none;
  margin: 20px 0;
}

.features-list li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}

.features-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

.specs-table tr:nth-child(even) {
  background: var(--white);
}

.specs-table td {
  padding: 12px 15px;
  border: 1px solid var(--border-color);
}

.specs-table td:first-child {
  font-weight: 500;
  width: 40%;
}

/* Доставка и оплата */
.delivery-payment {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 30px;
}

.delivery-card,
.payment-card {
  background: var(--white);
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.delivery-methods {
  margin-top: 15px;
}

.method-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px dashed var(--border-color);
  justify-content: center; /* Горизонтальное выравнивание по центру */
  text-align: center;  
}

.method-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.method-icon {
  width: 40px;
  height: 40px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  color: var(--primary-color);
}

.method-info h4 {
  margin-bottom: 5px;
}

.method-info p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Отзывы и вопросы */
.reviews-section,
.questions-section {
  background: var(--white);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.review-item,
.question-item {
  border-bottom: 1px solid var(--border-color);
  padding: 20px 0;
}

.review-header,
.question-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.review-author,
.question-author {
  font-weight: 500;
}

.review-date,
.question-date {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.review-rating {
  color: var(--accent-color);
  margin: 5px 0;
}

.review-text,
.question-text {
  line-height: 1.6;
}

.add-review-btn,
.add-question-btn {
  margin-top: 20px;
  background: var(--primary-color);
  color: var(--white);
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
}

/* Рекомендации */
.recommendations {
  margin-top: 50px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.product-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-card-img {
  height: 200px;
  object-fit: cover;
  width: 100%;
}

.product-card-body {
  padding: 15px;
}

.product-card-title {
  font-size: 1rem;
  margin-bottom: 10px;
  height: 40px;
  overflow: hidden;
}

.product-card-price {
  font-weight: bold;
  color: var(--primary-color);
}

.page-header {
  text-align: center;
  padding: 20px 0 30px;
}

.page-title {
  font-size: 2.2rem;
  margin-bottom: 15px;
  color: var(--secondary-color);
}

.page-description {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto;
}

.filter-section {
  background: var(--white);
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.filter-group {
  margin-bottom: 20px;
}

.filter-title {
  font-weight: 500;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.filter-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-option {
  padding: 8px 15px;
  border: 1px solid var(--border-color);
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 0.9rem;
}

.filter-option:hover {
  border-color: var(--primaryti-color);
  color: var(--primary-color);
}

.filter-option.active {
  background: var(--primaryti-color);
  color: var(--white);
  border-color: var(--primary-color);
}

.reset-filters {
  color: var(--primary-color);
  text-decoration: underline;
  cursor: pointer;
  font-size: 0.9rem;
  margin-top: 10px;
  display: inline-block;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 20px;
}

.product-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
  position: relative;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.product-card.selected {
  box-shadow: 0 0 0 3px var(--primary-color);
}

.product-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--primary-color);
  color: var(--white);
  padding: 3px 10px;
  border-radius: 15px;
  font-size: 0.8rem;
  z-index: 2;
}

.product-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  cursor: pointer;
}

.product-body {
  padding: 15px;
}

.product-title {
  font-size: 1.1rem;
  margin-bottom: 10px;
  height: 40px;
  overflow: hidden;
}

.product-sku {
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-bottom: 10px;
}

.product-rating {
  color: var(--accent-color);
  margin-bottom: 10px;
  font-size: 0.9rem;
}

.product-price {
  font-weight: bold;
  font-size: 1.2rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.product-old-price {
  text-decoration: line-through;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-left: 5px;
}

.product-actions {
  display: flex;
  gap: 10px;
}

.select-btn {
  flex: 1;
  background: var(--primary-color);
  color: var(--white);
  border: none;
  padding: 8px;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s;
}

.select-btn:hover {
  background: var(--primaryti-color);
}

.compare-btn {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-muted);
}

.compare-btn:hover {
  border-color: var(--primaryti-color);
  color: var(--primary-color);
}

.pagination {
  display: flex;
  justify-content: center;
  margin: 40px 0;
  gap: 10px;
}

.page-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  cursor: pointer;
}

.page-link.active {
  background: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
}

.page-link:hover:not(.active) {
  border-color: var(--primaryti-color);
  color: var(--primary-color);
}

.selected-product-info {
  background: var(--white);
  border-radius: 10px;
  padding: 20px;
  margin-top: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  display: none;
}

.selected-product-title {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.selected-product-actions {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.btn {
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-primary {
  background: var(--primary-color);
  color: var(--white);
  border: none;
}

.btn-primary:hover {
  background: var(--primaryti-color);
}

/* Стили для лоадера */
.loader {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  width: 100%;
  min-height: 200px;
}

.spinner {
  border: 5px solid var(--white);
  border-top: 5px solid var(--career-color);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
  margin-bottom: 20px;
}

/* Стили для селектора количества товаров */
.items-per-page-selector {
  padding: 10px;
  align-items: center;
  margin-bottom: -65px;
  font-size: 14px;
  color: var(--text-muted);
}

.items-per-page-selector span {
  margin-right: 10px;
}

#itemsPerPageSelect {
  padding: 8px 12px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  background-color: var(--white);
  font-size: 14px;
  cursor: pointer;
  transition: border-color 0.3s;
}

#itemsPerPageContainer {
  display: flex;
  justify-content: flex-end; /* Выравниваем содержимое по правому краю */
  margin-bottom: 20px;
}

#itemsPerPageSelect:hover {
  border-color: var(--border-color);
}

#itemsPerPageSelect:focus {
  outline: none;
  border-color: var(--career-color);
  box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2);
}

/* Стили для пагинации */
.pagination {
  display: flex;
  justify-content: center;
  margin: 30px 0;
  gap: 5px;
}

.page-link {
  padding: 8px 15px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
}

.page-link:hover:not(.active, .disabled) {
  background-color: var(--white);
}

.page-link.active {
  background-color: var(--career-color);
  color: var(--white);
  border-color: var(--career-color);
}

.page-link.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Сообщения об ошибках и пустых списках */
.error-message, .no-products {
  text-align: center;
  padding: 40px;
  font-size: 18px;
  color: var(--primary-color);
  width: 100%;
}

.product-not-found, .error-message {
  text-align: center;
  padding: 40px;
  max-width: 600px;
  margin: 0 auto;
}

.product-not-found h2, .error-message h2 {
  color: var(--discount-color);
}

/* Стили для лоадера */
.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.3s ease;
}

.loader-text {
  font-size: 18px;
  color: var(--secondary-color);
  font-weight: 500;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.tooltip-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.tooltip-content {
  background: var(--white);
  padding: 20px;
  border-radius: 8px;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  position: relative;
}

.tooltip-content h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.close-tooltip {
  background: var(--career-color);
  color: var(--white);
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
  margin-top: 15px;
}

.close-tooltip:hover {
  background: var(--career-color);
}

/* Стили для слайдера наших работ */
.prev {
  left: 10px;
}

.next {
  right: 10px;
}

.bue_slider-nav:hover {
  background: rgba(0,0,0,0.8);
}

/* Основные стили слайдера */
.bue_slider-section {
  position: relative;
  padding: 40px 0;
  background: var(--white);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.bue_works-slider-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}

.bue_works-slider {
  display: flex;
  transition: transform 0.5s ease;
  position: relative;
}

.bue_slides-container {
  display: flex;
  width: 100%;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
}

.bue_slide {
  flex: 0 0 100%;
  scroll-snap-align: start;
  padding: 0 15px;
  box-sizing: border-box;
}

.bue_slide img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

.bue_slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255,255,255,0.7);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
}

.bue_slider-nav.prev {
  left: 10px;
}

.bue_slider-nav.next {
  right: 10px;
}

.bue_slider-dots-container {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.bue_slider-dots {
  display: flex;
  gap: 10px;
}

.bue_slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--border-color);
  border: none;
  cursor: pointer;
  padding: 0;
}

.bue_slider-dot.active {
  background: var(--career-color);
}

.bue_slider-loader{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255,255,255,0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 100;
}

.bue_loader-spinner {
  width: 40px;
  height: 40px;
  border: 4px solid var(--white);
  border-top: 4px solid var(--career-color);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}


.salons-container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 20px;
  margin-top: 30px;
}

.salon-card {
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 20px;
  cursor: pointer;
  transition: transform 0.3s;
}

.salon-card:hover {
  transform: translateY(-5px);
}

.salon-card.coming-soon {
  opacity: 0.8;
  position: relative;
}

.salon-card.coming-soon::after {
  content: "СКОРО ОТКРЫТИЕ";
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--gourmet-color);
  color: var(--white);
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 12px;
}

.salon-photo {
  height: 200px;
  background-size: cover;
  background-position: center;
}

.salon-info {
  padding: 15px;
}

.city-filter {
  margin: 20px 0;
}

.filter-select {
  padding: 10px 15px;
  border-radius: 4px;
  border: 1px solid var(--border-color);
  width: 300px;
}

.checkbox-container {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 5px;
}

.form-checkbox {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

/* Стили для страницы 404 */
.error-page { 
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.error-container {
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding: 50px 0;
}

.error-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.error-code {
  font-size: 120px;
  font-weight: 700;
  color: var(--secondary-color);
  line-height: 1;
  margin-bottom: 20px;
}

.error-image {
  max-width: 400px;
  margin: 40px auto 0;
  display: block;
}

.error-actions {
  margin-top: 30px;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.last-update {
  text-align: right;
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 30px;
}
.contact-info {
  background-color: var(--white);
  padding: 15px;
  border-radius: 5px;
  margin-top: 30px;
}

.slider-version {
  display: block;
  width: 100%;
}

.floating-icons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 1000;
}

.floating-icons a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
}

.floating-icons a:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}

.whatsapp-icon {
  background: #25D366;
}

.telegram-icon {
  background: #0088cc;
}

.floating-icons img {
  width: 100%;
  height: auto;
}

.floating-icons {
  opacity: 0;
  animation: fadeIn 0.5s ease-out forwards;
  animation-delay: 1s;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}


.whatsapp-icon.pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Модальное окно изображения */
#imageModal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 2000;
  justify-content: center;
  align-items: center;
}

.image-modal-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
}

.expanded-img {
  max-width: 100%;
  max-height: 80vh;
  border: 3px solid white;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
}

.close-image-btn {
  position: absolute;
  top: -40px;
  right: -30px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.close-image-btn:hover {
  color: #ccc;
}

/* Для мобильных устройств */
@media (max-width: 768px) {
  .close-image-btn {
    top: -50px;
    right: 10px;
    font-size: 35px;
  }
}

/* Интерактивность изображений в карточках */
.product-image {
  cursor: zoom-in;
  transition: transform 0.3s;
}

.product-image:hover {
  transform: scale(1.02);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .audience-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .zones-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-grid,
  .style-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }

  .header-top {
    flex-wrap: wrap;
    gap: 1rem;
    padding: 0;
    max-width: max-content;
  }

  .main-nav {
    order: 3;
    width: 100%;
  }

  .main-nav ul {
    justify-content: center;
  }
  
}

@media (max-width: 768px) {
  /* Общие стили */
  .hero-slider {
    height: 400px;
    padding: 140px 0px 0px;

  }

  .slide h2 {
    font-size: 1.8rem;
  }

  .slide p {
    font-size: 1rem;
  }

  .cta-button {
    padding: 10px 20px;
  }

  /* Сетки */
  .footer-content,
  .zones-grid,
  .audience-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    gap: 2rem;
  }

  .promo-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

  /* Шапка */
  .header-contacts {
    margin-left: auto;
    flex-direction: column;
    align-items: flex-end;
    width: 100%;
    position: relative;
    top: -40px;
  }

  .logo {
    order: 1;
  }

  .header-contacts {
    order: 2;
  }

  .main-nav {
    height: 1em;
  }

  .main-nav ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem;
    position: relative;
    top: -40px;
  }

  .callback-btn {
    width: 100%;
  }

  /* Карточки */
  .zone-card img {
    height: 150px;
  }

  /* Футер */
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  /* Слайдеры */
  .styles-slider-container,
  .mobile-slider-container {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 40px;
    overflow: hidden;
  }

  .style-slide,
  .mobile-slide {
    position: relative;
    text-align: center;
    min-width: 100%;
    box-sizing: border-box;
    display: none;
    width: 100%;
  }

  .style-slide {
    display: flex;
    align-items: center;
    background: var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transition: opacity 0.5s ease;
  }

  .style-slide.active {
    opacity: 1;
    z-index: 1;
  }

  .style-slide-image,
  .mobile-slide-image {
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    margin-bottom: 20px;
  }

  .style-slide-content,
  .mobile-slide-content {
    padding: 0 10px;
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  .style-slide-content p,
  .mobile-slide p {
    max-width: 90%;
    margin: 0 auto 15px;
    text-align: center;
  }

  .style-slide-content h3,
  .mobile-slide h3 {
    margin: 0 auto 15px;
    text-align: center;
  }

  .style-tags {
    justify-content: center;
  }

  /* Мобильная версия слайдера */
  .desktop-version {
    display: none;
  }

  .mobile-version {
    display: block;
    position: relative;
    overflow: hidden;
  }

  .mobile-slides-container {
    position: relative;
    width: 100%;
    overflow: hidden;
  }

  .mobile-slider-dots {
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    z-index: 10;
  }

  .mobile-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--text-muted);
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .mobile-dot.active {
    background-color: var(--family-color);
    width: 12px;
    height: 12px;
  }

  .mobile-nav-arrows {
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    padding: 0 10px;
    z-index: 1;
  }

  .mobile-arrow {
    width: 30px;
    height: 30px;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-weight: bold;
    font-size: 18px;
  }

  .slider-dots {
    display: none;
  }

  .type-grid {
    display: block; /* Меняем grid на block для вертикального расположения */
  }

  .type-card {
    margin-bottom: 20px; /* Отступ между карточками */
  }

  .type-card:last-child {
    margin-bottom: 0; /* Убираем отступ у последней карточки */
  }

  .type-image {
    height: 150px; /* Меньшая высота изображения для мобильных */
  }

  .category-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .category-card {
    width: 100%;
    margin-bottom: 15px;
  }

  .category-header {
    padding: 12px;
    font-size: 16px;
  }

  .subcategory-list {
    padding: 10px;
  }

  .subcategory-item {
    padding: 8px 0;
  }

  .subcategory-name {
    font-size: 14px;
  }

  .subcategory-link {
    font-size: 13px;
  }

  .assistant-header h1 {
    padding: 130px 0 0px;
    font-size: 2rem;
  }

  .materials-grid {
    grid-template-columns: 1fr;
  }

  .category-tabs {
    flex-direction: column;
    align-items: center;
  }

  .tab-btn {
    width: 100%;
    max-width: 300px;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

  .process-step,
  .assembly-option,
  .delivery-option,
  .warranty-card {
    min-width: 100%;
  }

  .payment-methods {
    flex-direction: column; /* Расположить элементы по вертикали */
    align-items: center; /* Центрировать элементы */
  }

  .payment-method {
    width: 100%; /* Занимать всю ширину контейнера */
    max-width: 300px; /* Ограничить максимальную ширину */
  }

  .services-header h1 {
    font-size: 2rem;
  }

  .service-container {
    flex-direction: column;
  }

  .service-image {
    height: 300px;
    min-width: 100%;
  }

  .service-tab {
    padding: 10px 15px;
    font-size: 0.9rem;
  }

  .action-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .main-image {
    height: 300px;
  }

  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }

  .filter-options {
    gap: 8px;
  }

  .filter-option {
    padding: 6px 12px;
    font-size: 0.8rem;
  }

  .items-per-page-selector {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .items-per-page-selector span {
    margin-bottom: 8px;
  }
  
  .pagination {
    flex-wrap: wrap;
  }
  
  .page-link {
    padding: 6px 10px;
    min-width: 30px;
  }

  .salons-container {
    grid-template-columns: 1fr;
  }
  
  .bue_works-slider {
    /* Специфичные стили для мобилок */
    flex-direction: column;
  }
  .bue_slider-nav {
    /* Пример изменения размера кнопок */
    width: 40px;
    height: 40px;
  }

  .error-code {
    font-size: 80px;
  }
  
  .error-image {
    max-width: 250px;
  }

  .floating-icons {
    bottom: 10px;
    right: 10px;
  }
  .floating-icons a {
    width: 35px;
    height: 35px;
  }

  .main-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  }
  
  .header-hidden {
    transform: translateY(-100%);
  }
  
  body {
    padding-top: 60px; /* Высота вашего хедера */
  }

  .page-header {
    padding: 130px 0 30px;
  }

  .return-policy {
    padding: 130px 30px 0px;
  }
  
  .salons-section{
    padding: 140px 30px 0px;
  }


}
