:root { --green: #2d6a2d; --gl: #4a9c4a; --gp: #e8f5e8; --red: #c0392b; --white: #fff; --gray: #f4f6f4; --text: #2c3e2c; }
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Nunito', sans-serif; background: var(--white); color: var(--text); padding-bottom: 80px; }

nav { background: var(--green); padding: 1rem 1.5rem; position: sticky; top: 0; z-index: 100; color: white; display: flex; justify-content: space-between; align-items: center; box-shadow: 0 2px 10px rgba(0,0,0,0.1); }
.logo { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 900; text-decoration: none; color: white; }

.container { max-width: 1200px; margin: 0 auto; padding: 15px; }

/* Кнопки категорій як посилання */
.cat-scroll { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; padding: 10px 0; margin-bottom: 15px; }
.cat-btn { background: var(--gray); border: 1px solid #ddd; padding: 8px 16px; border-radius: 20px; cursor: pointer; white-space: nowrap; font-size: 0.9rem; font-weight: 600; transition: 0.2s; text-decoration: none; color: var(--text); display: inline-block; }
.cat-btn:hover { background: #e0e0e0; }
.cat-btn.active { background: var(--green); color: white; border-color: var(--green); }

.search-box { width: 100%; padding: 14px; border: 2px solid var(--green); border-radius: 12px; margin-bottom: 15px; font-size: 1rem; outline: none; }

/* Сітка товарів */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 15px;
    padding: 10px;
}

/* Стиль картки */
.card {
    background: #fff;
    border-radius: 12px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05); /* Легка тінь */
    border: 1px solid #f0f0f0;
    text-align: center;
}

/* Ефект при наведенні (тільки для ПК) */
.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* Назва товару */
.card h3 {
    font-size: 0.95rem;
    margin-bottom: 10px;
    color: #333;
    font-family: 'Nunito', sans-serif;
    line-height: 1.3;
    min-height: 2.6em; /* Щоб картки були однакової висоти */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Ціна */
.card .price {
    font-size: 1.2rem;
    font-weight: 800;
    color: #2e7d32; /* Темно-зелений */
    margin-bottom: 12px;
}

/* Кнопка "Додати" */
.card .btn {
    background: var(--green, #27ae60);
    color: white;
    border: none;
    padding: 10px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s;
    width: 100%;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card .btn:active {
    transform: scale(0.95);
}.card h3 { font-size: 0.85rem; margin-bottom: 8px; min-height: 2.6em; line-height: 1.3; color: #333; }
.price { font-size: 1.2rem; font-weight: 800; color: var(--green); margin-bottom: 10px; }

.btn { background: var(--green); color: white; border: none; padding: 10px; border-radius: 8px; cursor: pointer; width: 100%; font-weight: bold; font-size: 0.8rem; text-transform: uppercase; }

#cart-float { position: fixed; bottom: 20px; right: 20px; background: var(--red); color: white; padding: 12px 20px; border-radius: 50px; cursor: pointer; display: none; z-index: 1000; box-shadow: 0 4px 15px rgba(0,0,0,0.3); font-weight: bold; }

/* Модальне вікно кошика */
.modal { display: none; position: fixed; top:0; left:0; width:100%; height:100%; background:rgba(0,0,0,0.6); z-index:2000; justify-content:center; align-items:center; }
.cart-ui { background: white; width: 95%; max-width: 450px; padding: 20px; border-radius: 20px; max-height: 85vh; overflow-y: auto; }
.cart-item { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid #eee; }

@media (max-width: 480px) { .grid { grid-template-columns: 1fr 1fr; } .logo { font-size: 1.1rem; } }

#sub-cat-container .cat-btn {
    font-size: 0.75rem; /* Трохи менший шрифт */
    background: #e8f5e8; /* Світло-зелений фон */
    border: 1px solid #c8e6c9;
}

#sub-cat-container .cat-btn.active {
    background: var(--gl); /* Яскравіший зелений для активної підкатегорії */
    color: white;
}
