
@media (max-width: 767px) {
  #popularGoods.owl-loaded {
    display: block;
    overflow: hidden;
    position: relative;
  }
  #popularGoods.owl-loaded .owl-stage {
    display: flex;
    align-items: stretch;
  }
  #popularGoods.owl-loaded .owl-item {
    display: flex;
    height: auto;
  }
  #popularGoods.owl-loaded .block-grid-item {
    width: 100% !important;
    float: none !important;
    display: flex !important;
    flex-direction: column;
    height: auto;
    list-style: none;
  }
  #popularGoods.owl-loaded .good-block {
    width: 100% !important;
    height: 100%;
  }
  /* фиксируем картинку */
  #popularGoods.owl-loaded .image img {
    max-width: 200px;
    height: auto;
    margin: 0 auto;
    display: block;
  }
  /* Контейнер точек */
  #popularGoods .owl-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    padding: 10px 0;
  }
  
  /* Сама точка */
  #popularGoods .owl-dots .owl-dot {
    display: inline-block;
    outline: none;
    border: none;
    background: transparent;
    padding: 0;
    cursor: pointer;
  }
  
  #popularGoods .owl-dots .owl-dot span {
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d0d0d0;
    transition: all 0.25s ease;
  }
  
  /* Hover */
  #popularGoods .owl-dots .owl-dot:hover span {
    background: #a0a0a0;
  }
  
  /* Активная точка */
  #popularGoods .owl-dots .owl-dot.active span {
    background: #ffed00;
    transform: scale(1.3);
  }
  
  /* Убираем синюю обводку при фокусе */
  #popularGoods .owl-dots .owl-dot:focus {
    outline: none;
  }
}
@media (max-width: 575px) {
  #popularGoods.owl-loaded .owl-item {
    width: 100% !important;
  }
  .store-catalog__link {
    max-height: 80px;
  }
}

@media (max-width: 767px) {
  .articles-carousel.owl-loaded {
    display: block;
    margin-left: 0;
    margin-right: 0;
    overflow: hidden;
  }
  .articles-carousel.owl-loaded .owl-stage {
    display: flex;
    align-items: stretch;
  }
  .articles-carousel.owl-loaded .owl-item {
    display: flex;
    height: auto;
    width: 100% !important;
  }
  .articles-carousel.owl-loaded .owl-item > article {
    width: 100% !important;
    float: none !important;
    padding: 0;
  }
  .articles-carousel.owl-loaded .tickets-row {
    height: 100%;
    display: flex;
    flex-direction: column;
  }

  /* Точки — те же стили, что и для popularGoods */
  .articles-carousel .owl-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    padding: 10px 0;
  }
  .articles-carousel .owl-dots .owl-dot {
    background: transparent;
    border: none;
    padding: 0;
    outline: none;
    cursor: pointer;
  }
  .articles-carousel .owl-dots .owl-dot span {
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d0d0d0;
    transition: all 0.25s ease;
  }
  .articles-carousel .owl-dots .owl-dot.active span {
    background: #ffed00;
    transform: scale(1.3);
  }
}