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

html {
  overflow-x: hidden;
}

html, body {
  max-width: 100%;
}

:root {
  --primary-orange: #FF8C42;
  --primary-brown: #6B4423;
  --secondary-orange: #FFB366;
  --light-orange: #FFDAB9;
  --dark-brown: #4A2C17;
  --warm-white: #FFF8F0;
  --accent-green: #7CB342;
}

body {
  font-family: 'Comfortaa', 'Montserrat', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #e0e0e0;
  background-color: #000000;
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}

.l-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}

.wrapper {
  width: 100%;
  max-width: 100%;
  padding: 50px 0;
  overflow: hidden;
}

/* Общие стили для секций */
section {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  position: relative;
}

/* Стили для кнопок */
.btn-link-primary {
  display: inline-block;
  padding: 12px 30px;
  background-color: var(--primary-orange);
  color: white;
  font-weight: 600;
  border-radius: 25px;
  transition: all 0.3s ease;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  border: 2px solid transparent;
}

.btn-link-primary:hover {
  background-color: white;
  color: var(--primary-orange);
  border-color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

/* Стили для хедера */
.header-absolute {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 100;
}

.header {
  padding: 5px 0;
  background-color: #E57125;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__logo img {
  max-height: 80px;
  transition: transform 0.3s ease;
}

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

.header__nav {
  display: flex;
  align-items: center;
}

.header__burger span {
  display: block;
  width: 30px;
  height: 3px;
  background-color: var(--primary-orange);
  margin: 5px 0;
  transition: all 0.3s ease;
}

.header__menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: var(--warm-white);
  padding: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.header__list {
  display: flex;
  flex-direction: column;
}

.header__link {
  padding: 10px 0;
  color: var(--dark-brown);
  font-weight: 500;
  transition: color 0.3s ease;
}

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

.header__nav-main {
  margin-left: 20px;
}

.nav-list {
  display: flex;
}

.menu-item {
  margin-right: 20px;
}

.menu-link {
  color: white;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.menu-link:hover, .menu-link-active {
  color: var(--dark-brown);
  transform: translateY(-1px);
}

.menu-link-active::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--dark-brown);
  border-radius: 2px;
}

.cart {
  position: relative;
  margin-left: 20px;
}

.cart__number {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 20px;
  height: 20px;
  background-color: var(--primary-orange);
  color: white;
  font-size: 12px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
}

.cart__price {
  margin-left: 10px;
  font-weight: 600;
  color: var(--dark-brown);
}

.header__contacts {
  display: flex;
  flex-direction: column;
}

.contacts__link {
  color: white;
  font-size: 14px;
  transition: all 0.3s ease;
  margin-bottom: 5px;
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.contacts__link:hover {
  color: var(--dark-brown);
  transform: translateY(-1px);
}

.border-top {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 10px;
}

.mb-20 {
  margin-bottom: 20px;
}

.d-none-pc {
  display: none;
}

.d-none-mobile {
  display: block;
}

/* Стили для слайдера */
.swiper-container {
  width: 100vw;
  height: 92vh;
  position: relative;
  margin-top: 90px;
  margin-left: calc(-50vw + 50%);
}

.swiper-slide {
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  padding: 0 10%;
  width: 100vw;
}

.swiper-slide.cactus {
  background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('../images/slides/banner_pc_cactus.png');
}

.swiper-slide.cactus .content {
  color: white;
}

.swiper-slide.cactus h2 {
  color: white;
}

.swiper-slide.cactus h3 {
  color: white;
}

.swiper-slide.shrooms {
  background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('../images/slides/banner_pc_shrooms.png');
}

.swiper-slide.shrooms .content {
  color: white;
}

.swiper-slide.shrooms h2 {
  color: white;
}

.swiper-slide.shrooms h3 {
  color: white;
}

.swiper-slide.cannabis {
  background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('../images/slides/banner_pc_cannabis.png');
}

.swiper-slide.cannabis .content {
  color: white;
}

.swiper-slide.cannabis h2 {
  color: white;
}

.swiper-slide.cannabis h3 {
  color: white;
}

.swiper-slide .content {
  max-width: 600px;
  color: #2a2a2a;
}

.swiper-slide h2 {
  font-size: 48px;
  margin-bottom: 10px;
  font-weight: 700;
  color: #1a1a1a;
  font-family: 'Comfortaa', cursive;
}

.swiper-slide h3 {
  font-size: 28px;
  margin-bottom: 20px;
  font-weight: 600;
  color: #2a2a2a;
}

.swiper-slide p {
  font-size: 18px;
  margin-bottom: 30px;
  line-height: 1.7;
}

.swiper-slide .yellow-thin {
  color: var(--primary-orange);
  font-weight: 600;
}

.swiper-slide a.consult-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  transition: all 0.3s ease;
  padding: 15px 40px;
  background-color: var(--primary-orange);
  border-radius: 25px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  border: 2px solid transparent;
  font-size: 16px;
  text-decoration: none;
}

.swiper-slide a.consult-button:hover {
  background-color: white;
  color: var(--primary-orange);
  border-color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

.slide-buttons {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: 20px;
}

/* Старые стили кнопок уже не нужны - теперь все кнопки являются ссылками */

.swiper-button-next, .swiper-button-prev {
  color: rgba(255, 255, 255, 0.7);
  background: none;
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 0;
  box-shadow: none;
  opacity: 1;
  transition: all 0.3s ease;
}

.swiper-button-next:hover, .swiper-button-prev:hover {
  color: rgba(255, 255, 255, 1);
  transform: scale(1.1);
}

.swiper-button-next:after, .swiper-button-prev:after {
  font-size: 32px;
  font-weight: bold;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.swiper-pagination-bullet {
  background-color: white;
  opacity: 0.6;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.swiper-pagination-bullet-active {
  background-color: white;
  opacity: 1;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

/* Стили для секции "Наши преимущества" */
.our_adv {
  display: none !important;
}

.our_adv::before {
  content: '';
  position: absolute;
  top: -30px;
  left: -30px;
  width: 150px;
  height: 150px;
  background-color: var(--light-orange);
  border-radius: 50%;
  opacity: 0.2;
  z-index: -1;
}

.our_adv::after {
  content: '';
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background-color: var(--secondary-orange);
  border-radius: 50%;
  opacity: 0.1;
  z-index: -1;
}

.main-heading {
  font-size: 42px;
  text-align: center;
  margin-bottom: 60px;
  color: #ffffff;
  font-family: 'Comfortaa', cursive;
  font-weight: 700;
}

.advantages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  position: relative;
  z-index: 1;
}

.advantage-block {
  background-color: #000000;
  padding: 35px;
  border-radius: 20px;
  position: relative;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.advantage-block:hover {
  transform: translateY(-10px);
  border-color: var(--primary-orange);
  box-shadow: 0 15px 30px rgba(255, 140, 66, 0.2);
}

.advantage-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 25px;
  filter: hue-rotate(20deg) saturate(1.2);
}

.advantage-block h2 {
  font-size: 24px;
  margin-bottom: 15px;
  color: var(--primary-orange);
  font-family: 'Comfortaa', cursive;
}

.advantage-block p {
  font-size: 16px;
  color: #d0d0d0;
  line-height: 1.6;
}

.arrow {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 30px;
  height: 30px;
  filter: brightness(0) saturate(100%) invert(45%) sepia(88%) saturate(537%) hue-rotate(347deg) brightness(96%) contrast(99%);
}

/* Стили для секции телеграм */
.our-telegram {
  background-color: #000000;
  padding: 40px 0;
  border-radius: 30px;
  margin: 40px 20px;
  border: 2px solid var(--light-orange);
}

.our-telegram__inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.our-telegram__title {
  font-size: 26px;
  margin-bottom: 20px;
  color: #ffffff;
  font-family: 'Comfortaa', cursive;
  font-weight: 600;
}

/* Стили для секции "Грибник Илюша - это" */
.about-us {
  background-color: #000000;
  padding: 80px 0;
  position: relative;
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.section-heading {
  font-size: 42px;
  text-align: center;
  margin-bottom: 60px;
  color: #ffffff;
  font-family: 'Comfortaa', cursive;
  font-weight: 700;
}

.content-blocks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.content-block {
  background-color: #3a3a3a;
  padding: 40px;
  border-radius: 20px;
  height: 100%;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  border: 2px solid var(--light-orange);
  transition: all 0.3s ease;
}

.content-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 140, 66, 0.3);
  border-color: var(--primary-orange);
}

.content-block h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: var(--primary-orange);
  font-family: 'Comfortaa', cursive;
}

.content-block p {
  font-size: 17px;
  color: #d0d0d0;
  line-height: 1.7;
}

/* Стили для секции "Популярные товары" */
.popular-products {
  background-color: #2a2a2a;
  padding: 80px 0;
}

.popular__title {
  font-size: 42px;
  text-align: center;
  margin-bottom: 60px;
  color: #ffffff;
  font-family: 'Comfortaa', cursive;
  font-weight: 700;
}

.products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-bottom: 50px;
}

.product__item {
  background-color: #3a3a3a;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  border: 2px solid transparent;
}

.product__item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(255, 140, 66, 0.2);
  border-color: var(--primary-orange);
}

.product-top {
  position: relative;
  height: 200px;
  overflow: hidden;
}

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

.product__item:hover .product-top img {
  transform: scale(1.1);
}

.product-badges {
  position: absolute;
  top: 15px;
  left: 15px;
}

.badge {
  display: inline-block;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 15px;
  margin-right: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.badge.fm {
  background-color: var(--accent-green);
  color: white;
}

.badge.print {
  background-color: var(--primary-orange);
  color: white;
}

.badge.powder {
  background-color: var(--primary-brown);
  color: #fff;
}

.badge.kit {
  background-color: #4CAF50;
  color: white;
}

.product-main-info {
  padding: 25px;
}

.woocommerce-loop-product__title {
  font-size: 20px;
  margin-bottom: 10px;
  color: #ffffff;
  font-family: 'Comfortaa', cursive;
  font-weight: 600;
}

.product__item .product-main-info p {
  font-size: 14px;
  color: #d0d0d0;
  margin-bottom: 0 !important;
  line-height: 1.6;
  opacity: 0 !important;
  transform: translateY(10px);
  transition: all 0.3s ease;
  max-height: 0 !important;
  overflow: hidden;
  padding: 0 !important;
}

.product__item:hover .product-main-info p {
  opacity: 1 !important;
  transform: translateY(0);
  max-height: 200px !important;
  margin-bottom: 20px !important;
  padding: 10px 0 !important;
}

/* Для мобильных устройств показываем описание при клике */
@media (max-width: 768px) {
  .product__item.active .product-main-info p {
    opacity: 1 !important;
    transform: translateY(0);
    max-height: 200px !important;
    margin-bottom: 20px !important;
    padding: 10px 0 !important;
  }
}

.shop_product__product-buy {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.add_to_cart_button {
  padding: 10px 20px;
  background-color: var(--primary-orange);
  color: white;
  font-weight: 600;
  border-radius: 20px;
  transition: all 0.3s ease;
  font-size: 14px;
}

.add_to_cart_button:hover {
  background-color: var(--secondary-orange);
  transform: translateY(-2px);
}

.price {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary-orange);
}

.woocommerce-Price-currencySymbol {
  margin-left: 2px;
}

.btn-all-catalog {
  display: block;
  width: 280px;
  margin: 0 auto;
  padding: 15px 0;
  background-color: var(--primary-orange);
  color: white;
  font-weight: 600;
  text-align: center;
  border-radius: 30px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  border: 2px solid transparent;
}

.btn-all-catalog:hover {
  background-color: white;
  color: var(--dark-brown);
  border-color: var(--dark-brown);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

/* Стили для галереи */
.mushroom-gallery {
  display: none !important;
}

.gallery-images {
  position: relative;
  overflow: hidden;
  height: 300px;
}

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

.gallery-images:hover .gallery__image {
  transform: scale(1.1);
}

/* Стили для секции "О магазине" */
.about-store {
  background-color: var(--warm-white);
  padding: 80px 0;
}

.about-store__title {
  font-size: 42px;
  text-align: center;
  margin-bottom: 60px;
  color: var(--primary-brown);
  font-family: 'Comfortaa', cursive;
  font-weight: 700;
}

.about-store__info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.about-store__text {
  font-size: 17px;
  color: var(--primary-brown);
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-store-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-store__pluses {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.pluses__card {
  display: flex;
  align-items: center;
  gap: 25px;
  background-color: white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.pluses__card:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 25px rgba(255, 140, 66, 0.2);
}

.pluses__numbers {
  font-size: 48px;
  font-weight: 700;
  color: var(--primary-orange);
  font-family: 'Comfortaa', cursive;
}

.pluses__title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--primary-brown);
  font-family: 'Comfortaa', cursive;
}

.pluses__text {
  font-size: 15px;
  color: var(--primary-brown);
  line-height: 1.6;
}

.about-store__img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.telegram-links {
  display: flex;
  justify-content: center;
  gap: 50px;
}

.telegram-title {
  font-size: 20px;
  margin-bottom: 15px;
  text-align: center;
}

/* Стили для секции FAQ */
.faq-section {
  background: linear-gradient(135deg, var(--light-orange) 0%, var(--secondary-orange) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.faq-section::before {
  content: '?';
  position: absolute;
  top: 20px;
  right: 5%;
  font-size: 150px;
  color: rgba(255, 255, 255, 0.1);
  font-weight: 700;
  transform: rotate(-15deg);
  z-index: 0;
}

.faq-container {
  position: relative;
  z-index: 1;
}

.faq-title {
  font-size: 42px;
  text-align: center;
  margin-bottom: 40px;
  color: white;
  font-family: 'Comfortaa', cursive;
  font-weight: 700;
}

.faq-cta {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.faq-cta-text {
  font-size: 20px;
  margin-bottom: 30px;
  color: white;
  font-weight: 500;
}

.faq-btn {
  font-size: 18px;
  padding: 15px 40px;
  background-color: white;
  color: var(--primary-orange);
  font-weight: 700;
}

.faq-btn:hover {
  background-color: var(--warm-white);
  color: var(--primary-brown);
}

/* Стили для футера */
.footer {
  background-color: #E57125;
  padding: 60px 0 30px;
  color: white;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.footer__col {
  display: flex;
  flex-direction: column;
}

.footer__title {
  font-size: 20px;
  margin-bottom: 20px;
  color: var(--dark-brown);
  font-family: 'Comfortaa', cursive;
  font-weight: 600;
}

.footer__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__item {
  color: var(--dark-brown);
  font-size: 15px;
}

.footer__link {
  color: var(--dark-brown);
  transition: color 0.3s ease;
  font-size: 15px;
}

.footer__link:hover {
  color: white;
}

.footer__logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.footer__logo_img {
  max-width: 100px;
  margin-bottom: 15px;
}

.footer__logo_copyright {
  color: var(--dark-brown);
  font-size: 13px;
  text-align: center;
  font-weight: 500;
}

.mobile-footer {
  display: none;
}

/* Медиа запросы */
@media (max-width: 1200px) {
  .products {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .header-container {
    flex-wrap: wrap;
  }
  
  .header__logo {
    margin-bottom: 20px;
  }
  
  .advantages {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .products {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .content-blocks, .about-shop__content {
    grid-template-columns: 1fr;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-menu-list {
    justify-content: center;
  }
  
  .footer-contacts {
    align-items: center;
  }
}

@media (max-width: 768px) {
  .d-none-pc {
    display: block;
  }
  
  /* РАДИКАЛЬНО СКРЫВАЕМ БЛОК ТЕЛЕГРАМ НА МОБИЛЬНЫХ */
  .our-telegram {
    display: none !important;
  }
  
  .our-telegram.d-none-pc {
    display: none !important;
  }
  
  section.our-telegram {
    display: none !important;
  }
  
  .d-none-mobile {
    display: none;
  }
  
  .header__nav-main {
    display: none;
  }
  
  /* Компактный хедер для мобильных устройств */
  .header {
    padding: 8px 0;
  }
  
  .header-container {
    align-items: center;
    min-height: auto;
  }
  
  .header__logo {
    margin-bottom: 0;
  }
  
  .header__logo img {
    max-height: 80px; /* Сохраняем размер логотипа */
  }
  
  .swiper-container {
    margin-left: 0;
    width: 100%;
    height: 80vh;
  }

  .swiper-slide {
    width: 100%;
    padding: 0 5%;
  }

  .swiper-slide.cactus {
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../images/slides/banner_mob_cactus.png');
    background-position: center top;
  }

  .swiper-slide.shrooms {
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../images/slides/banner_mob_shrooms.png');
    background-position: center top;
  }

  .swiper-slide.cannabis {
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../images/slides/banner_mob_cannabis.png');
    background-position: center top;
  }

  .swiper-slide .content {
    background: linear-gradient(135deg, rgba(255, 140, 66, 0.75) 0%, rgba(107, 68, 35, 0.75) 100%);
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(3px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    max-width: 350px;
  }

  .swiper-slide h2 {
    font-size: 28px;
    color: white;
    margin-bottom: 15px;
  }

  .swiper-slide h3 {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
  }
  
  .swiper-slide p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
    margin-bottom: 20px;
  }

  .slide-buttons {
    justify-content: center;
    margin-top: 15px;
  }

  .swiper-slide a.consult-button {
    background-color: var(--primary-orange);
    color: white;
    font-size: 14px;
    padding: 12px 25px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.3);
  }

  .swiper-slide a.consult-button:hover {
    background-color: rgba(255, 255, 255, 0.95);
    color: var(--primary-orange);
    border-color: white;
  }
  
  .advantages {
    grid-template-columns: 1fr;
  }
  
  .about-shop__stats {
    grid-template-columns: 1fr;
  }
  
  .telegram-links {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}

@media (max-width: 576px) {
  .products {
    grid-template-columns: 1fr;
  }
  
  /* Ультра-компактный хедер для телефонов */
  .header {
    padding: 6px 0;
  }
  
  .header-container {
    padding: 0 10px;
  }
  
  .header__logo img {
    max-height: 80px; /* Логотип остается крупным */
  }
  
  /* БЛОК ТЕЛЕГРАМ УБИРАЕМ И НА САМЫХ МАЛЕНЬКИХ ЭКРАНАХ */
  .our-telegram {
    display: none !important;
  }
  
  section.our-telegram {
    display: none !important;
  }
  
  .swiper-slide h2 {
    font-size: 28px;
  }
  
  .main-heading, .section-heading, .popular__title, .about-shop__title, .faq-title {
    font-size: 28px;
  }
} 