.fixed-img {
    height: 200px;
    object-fit: cover;
}

.cart-item {
    display: flex;
    padding: 10px 0;
}
.cart-item img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    box-shadow: 0px 2px 4px rgba(1,1,1,.2);
}
@media (min-width: 768px) {
            .product-card {
                /* Ваши стили для ноутбуков */
                width: 320px;
                background-color: red;
            }
        }

.cart-info {
    flex: 1;
}
.counter {
    display: flex;
    align-items: center;
    gap: 10px;
}
.slider-img {
    height: 300px;   /* фиксированная высота */
    object-fit: cover;
}

.main_menu {
  width: 100%;
  height: 92vh;
  overflow-y: scroll;
  background-color: white;
}

.main_menu::-webkit-scrollbar {
  display: none;
}

.contact {
  display: block;
  width: 100%;
  padding: 30px;
  bottom: 30px;
}
.contact div span {
    margin-top: 15px;
    margin-bottom: 15px;
}

a {
  text-decoration: none;
  outline: none;
  text-underline-offset: none;
}


