/* Denizli25 — Mağaza stilleri */
.section { padding: 120px 0 60px; }
.shop-title { color: var(--primary); margin-bottom: 24px; font-size: 2rem; }
.shop-cats { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
.shop-cats a { background: #fff; border: 1px solid var(--light-gray); padding: 8px 16px; border-radius: 20px; font-size: .9rem; }
.shop-cats a:hover { background: var(--primary); color: #fff; }

.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 24px; }
.product-card { background: #fff; border-radius: 12px; box-shadow: var(--shadow); overflow: hidden; display: flex; flex-direction: column; }
.product-thumb { display: block; aspect-ratio: 4/3; background: var(--light-gray); overflow: hidden; }
.product-thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-thumb .no-img { display: flex; align-items: center; justify-content: center; height: 100%; color: #bbb; font-size: 2.5rem; }
.product-body { padding: 16px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.product-body h3 { font-size: 1.05rem; color: var(--dark); margin: 0; }
.product-body .price { margin-top: auto; }
.product-body .price strong { font-size: 1.25rem; color: var(--primary); }
.product-body .price .old { text-decoration: line-through; color: var(--gray); font-size: .9rem; margin-right: 8px; }

/* Ürün detay */
.product-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.product-detail .gallery img { width: 100%; border-radius: 12px; box-shadow: var(--shadow); }
.product-detail .gallery .no-img { aspect-ratio: 1; background: var(--light-gray); display:flex; align-items:center; justify-content:center; border-radius:12px; color:#bbb; font-size:4rem; }
.product-detail h1 { color: var(--primary); font-size: 1.8rem; }
.product-detail .price-lg { font-size: 2rem; font-weight: 700; color: var(--primary); margin: 16px 0; }
.product-detail .qty { width: 80px; padding: 10px; border: 1px solid var(--light-gray); border-radius: 8px; }
.stock-in { color: #1c7a43; font-weight: 600; } .stock-out { color: #b42318; font-weight: 600; }

/* Sepet & Checkout */
.cart-table { width: 100%; border-collapse: collapse; background:#fff; border-radius:12px; overflow:hidden; box-shadow:var(--shadow); }
.cart-table th, .cart-table td { padding: 14px; border-bottom: 1px solid var(--light-gray); text-align: left; vertical-align: middle; }
.cart-table img { width: 56px; height: 56px; object-fit: cover; border-radius: 8px; }
.cart-summary { background:#fff; border-radius:12px; box-shadow:var(--shadow); padding:24px; }
.cart-summary .row { display:flex; justify-content:space-between; padding:8px 0; }
.cart-summary .total { font-size:1.3rem; font-weight:700; color:var(--primary); border-top:1px solid var(--light-gray); margin-top:8px; padding-top:12px; }
.checkout-grid { display:grid; grid-template-columns: 1.4fr 1fr; gap:28px; align-items:start; }
.pay-option { display:flex; align-items:center; gap:10px; border:1px solid var(--light-gray); border-radius:8px; padding:12px 14px; margin-bottom:10px; cursor:pointer; }

@media (max-width:768px){ .product-detail,.checkout-grid{ grid-template-columns:1fr; } }
