* {
    box-sizing: border-box;
}

/* ===== ТЕЛО САЙТА ===== */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f2f2f2;
    color: #2a2a2a;
}

/* ===== МАГАЗИН ВНИЗУ ===== */
.shop {
    background-color: #ffffff;
    padding: 40px 15px;
    border-top: 4px solid #e6d38a;
}

/* Заголовок */
.shop h2 {
    text-align: center;
    font-size: 30px;
    margin-bottom: 35px;
    color: #3a2f00;
}

/* ===== СЕТКА (ПК) ===== */
.shop-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

/* ===== КАРТОЧКА ТОВАРА ===== */
.shop-item {
    background-color: #fffdf4;
    border: 2px solid #e6d38a;
    border-radius: 12px;
    padding: 25px 20px;
    text-align: center;
}

/* Название */
.shop-item h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

/* Цена */
.shop-item .price {
    font-size: 19px;
    font-weight: bold;
    margin-bottom: 18px;
}

/* ===== БЕРЁЗОВАЯ КНОПКА ===== */
.shop-item button {
    width: 100%;
    background-color: #f3e5ab;
    border: 2px solid #d1b85f;
    color: #3a2f00;
    padding: 14px;
    font-size: 17px;
    font-weight: bold;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.2s;
}

.shop-item button:hover {
    background-color: #ead98c;
    transform: scale(1.05);
}

.shop-item button:active {
    transform: scale(0.97);
}

/* ===== ПЛАНШЕТ ===== */
@media (max-width: 1024px) {
    .shop-items {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===== ТЕЛЕФОН ===== */
@media (max-width: 600px) {
    .shop {
        padding: 30px 10px;
    }

    .shop h2 {
        font-size: 24px;
    }

    .shop-items {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .shop-item h3 {
        font-size: 20px;
    }

    .shop-item button {
        font-size: 16px;
        padding: 13px;
    }
}
