.catalog-container{width:100%;padding:20px;background-color:#f4f4f4;display:flex;justify-content:center;align-items:center;flex-direction:column;min-height:100vh}h1{text-align:center;margin-bottom:20px}.product-list{display:flex;flex-wrap:wrap;justify-content:center;gap:30px;width:100%}.product{width:250px;height:auto;background-color:white;box-shadow:0 4px 8px rgba(0,0,0,.1);border-radius:8px;overflow:hidden;text-align:center;position:relative;transition:transform .3s;display:flex;flex-direction:column;justify-content:space-between}.product img{width:100%;height:200px;object-fit:cover}.product .info{padding:15px;display:flex;flex-direction:column;justify-content:center;align-items:center}.product .info p{font-size:1.2rem;font-weight:700}.product .stok-bilgi{background-color:rgba(0,0,0,.7);color:white;text-align:center;padding:10px;font-weight:700;box-sizing:border-box;width:100%;position:relative}.stokta-var{background-color:green}.stokta-yok{background-color:red}.product:hover{transform:translateY(-10px)}@media(min-width:768px){.product-list{display:flex;flex-wrap:wrap;justify-content:center;gap:30px}.product{width:250px}}@media(max-width:767px){.product-list{flex-direction:column;gap:15px;overflow-y:scroll;max-height:90vh}.product{width:100%;max-width:100%}}