/* ============================================
   СТИЛИ МАГАЗИНА
   ============================================ */

.shop-categories {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.category-btn {
    padding: 10px 20px;
    background: #fafbfc;
    border: 1px solid #e1e5eb;
    border-radius: 10px;
    color: #666;
    cursor: pointer;
    transition: 0.3s;
}

.category-btn:hover,
.category-btn.active {
    background: #e8f5e9;
    border-color: #2e7d32;
    color: #2e7d32;
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.shop-item {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    border: 1px solid #e1e5eb;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.shop-item:hover {
    border-color: #2e7d32;
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(46, 125, 50, 0.1);
}

.product-icon {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 12px;
}

.product-name {
    font-size: 1.25rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 8px;
    color: #333;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 900;
    color: #2e7d32;
    text-align: center;
    margin-bottom: 12px;
}

.product-description {
    color: #777;
    text-align: center;
    margin-bottom: 12px;
}

.btn-buy {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #2d7a2d, #3a8a3a);
    border: none;
    border-radius: 12px;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    margin-top: auto;
}

.btn-buy:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(46, 125, 50, 0.3);
}

/* ============================================
   КОРЗИНА
   ============================================ */
.cart-float-btn {
    margin-top: 15px;
}

#cartCount {
    display: inline-block;
    background: #d32f2f;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.85rem;
    margin-left: 5px;
}

.cart-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.cart-modal.show {
    display: flex;
}

.cart-modal-content {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    border: 1px solid #e1e5eb;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #e1e5eb;
}

.cart-total {
    text-align: right;
    font-size: 1.3rem;
    font-weight: 700;
    color: #2e7d32;
    padding: 16px 0;
    border-top: 2px solid #e1e5eb;
}

.cart-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    margin-top: 20px;
}

@media (max-width: 680px) {
    .shop-grid {
        grid-template-columns: 1fr;
    }
    
    .cart-actions {
        flex-direction: column;
    }
}
