.product-card{display:flex;flex-direction:column;justify-content:flex-start;align-items:stretch;border:1px solid var(--primary);border-radius:20px;overflow:hidden;background:#fff;transition:transform .3s ease,box-shadow .3s ease}.product-card:hover{transform:translateY(-5px);box-shadow:0 10px 20px rgba(0,0,0,.15)}.product-card .product-card-image{position:relative;height:200px;overflow:hidden}.product-card .product-card-image img{border-radius:0;object-fit:contain}.product-card .product-card-image.fit-cover img{object-fit:cover}.product-card .product-card-info{padding:20px;display:flex;flex-direction:column}.product-card .product-card-info h4{margin:0 0 10px;font-size:1.2rem}.product-card .product-card-info p{margin:0 0 20px;line-height:1.5;font-size:.95rem;color:#555}.product-card .product-card-info button{width:100%;padding:10px 0;border:none;border-radius:10px;background-color:var(--primary);color:#fff;cursor:pointer;font-weight:500;transition:background .3s ease}.product-card .product-card-info button:hover{filter:opacity(10)}@media(max-width:768px){.product-card .product-card-image{height:200px}}@media(max-width:430px){.product-card .product-card-image{height:150px}.product-card .product-card-info{padding:15px}.product-card .product-card-info h4{font-size:1rem}.product-card .product-card-info p{font-size:.85rem}.product-card .product-card-info button{padding:8px 0}}