/**
 * Shop Styles - hierkaufeichmeinfahrrad.de
 * Produktkatalog, Warenkorb, Checkout
 */

.hk-shop { max-width: 1200px; margin: 0 auto; }

/* Produkt-Karten */
.hk-product-card { background: #fff; border: 1px solid #e0e0e0; border-radius: 12px; overflow: hidden; transition: all .25s; }
.hk-product-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,.1); transform: translateY(-2px); border-color: #3A7C22; }
.hk-product-card__img { width: 100%; height: 200px; object-fit: cover; }
.hk-product-card__body { padding: 1rem; }
.hk-product-card__title { font-weight: 700; font-size: .95rem; margin-bottom: .3rem; }
.hk-product-card__price { color: #3A7C22; font-weight: 700; font-size: 1.1rem; }
.hk-product-card__price-old { color: #999; text-decoration: line-through; font-size: .85rem; margin-left: .3rem; }
.hk-product-card__btn { display: block; width: 100%; padding: .55rem; background: #3A7C22; color: #fff; border: none; border-radius: 8px; font-weight: 600; font-size: .85rem; cursor: pointer; text-align: center; transition: background .2s; margin-top: .75rem; }
.hk-product-card__btn:hover { background: #2d6319; }

/* Warenkorb */
.hk-cart-item { display: flex; gap: 1rem; padding: .75rem 0; border-bottom: 1px solid #eee; align-items: center; }
.hk-cart-item__img { width: 60px; height: 60px; object-fit: cover; border-radius: 8px; flex-shrink: 0; }
.hk-cart-item__name { font-weight: 600; font-size: .9rem; }
.hk-cart-item__price { color: #3A7C22; font-weight: 700; }
.hk-cart-total { font-size: 1.2rem; font-weight: 700; text-align: right; padding: 1rem 0; border-top: 2px solid #3A7C22; }
