/* ===== МАГАЗИН ===== */

/* Подвал карточки товара */
.shop-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid var(--border-color, #dce3f0);
}

/* Цена товара */
.shop-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
}

/* Кнопка "В корзину" / "Купить" */
.shop-btn-buy {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 8px 18px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
    transition: background 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.shop-btn-buy:hover {
    background: var(--primary-dark);
    color: #fff;
}

/* Кнопка корзины в шапке */
.cart-badge {
    position: relative;
}
.cart-count {
    display: inline-block;
    background: var(--primary-dark);
    color: #fff;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    font-size: 11px;
    font-weight: 700;
    margin-left: 4px;
}

/* Мобильная кнопка корзины */
.mobile-cart-btn {
    width: 36px;
    height: 36px;
    background: #ffffff;
    border: 1px solid #dce3f0;
    border-radius: 8px;
    color: #64748b;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    position: relative;
    flex-shrink: 0;
}
.mobile-cart-btn .cart-count {
    position: absolute;
    top: -4px;
    right: -4px;
    display: inline-block;
    background: var(--primary-dark);
    color: #fff;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    line-height: 16px;
    text-align: center;
    font-size: 10px;
    font-weight: 700;
}

/* Кнопка удаления в панели корзины */
.cart-remove-item {
    background: #ef4444;
    color: white;
    border: none;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}
.cart-remove-item:hover {
    background: #dc2626;
}