/* Мобильная сетка товаров */
.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

@media (max-width: 576px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}

/* Мобильные карточки */
.product-card {
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
}

.product-card .card-img-top {
    height: 140px;
    object-fit: cover;
}

@media (max-width: 576px) {
    .product-card .card-img-top {
        height: 180px;
    }
}

/* Улучшенная читаемость */
body {
    font-size: 14px;
}

h1, .h1 { font-size: 1.8rem; }
h2, .h2 { font-size: 1.5rem; }
h3, .h3 { font-size: 1.3rem; }
h4, .h4 { font-size: 1.1rem; }
h5, .h5 { font-size: 1rem; }
h6, .h6 { font-size: 0.9rem; }

/* Отступы для мобильной навигации */
body {
    padding-top: 70px;
    padding-bottom: 70px;
}

/* Модальное окно на мобильных */
.modal-dialog {
    margin: 10px;
}

.modal-content {
    border-radius: 16px;
}