.product-grid{display:grid;grid-template-columns:repeat(3,1fr);grid-gap:30px;gap:30px}.product-card{display:flex;flex-direction:column;background:#fff;border-radius:8px;overflow:hidden;text-decoration:none;color:inherit;box-shadow:0 4px 8px rgba(0,0,0,.05);transition:transform .2s,box-shadow .2s}.product-card:hover{transform:translateY(-2px);box-shadow:0 8px 16px rgba(0,0,0,.1)}.product-card-image-wrapper{position:relative;width:100%;height:240px;overflow:hidden;background:#f5f5f5}.product-card-image{width:100%;height:100%;object-fit:cover}.product-card-badge{position:absolute;top:12px;left:8px;padding:4px 8px;border-radius:100px;font-size:12px;line-height:12px;font-weight:400;color:#fff;z-index:1}.product-card-favorite{position:absolute;top:12px;right:12px;width:56px;height:56px;background:#004638;border:none;border-radius:50%;cursor:pointer;z-index:1;display:flex;align-items:center;justify-content:center;transition:background .2s,transform .2s}.product-card-favorite:hover{background:#00624c}.product-card-favorite:active{background:#003529}.product-card-favorite.active{background:#004638}.product-card-favorite svg{width:24px;height:24px}.product-card-favorite svg path{fill:#fff;transition:fill .2s}.product-card-favorite.active svg path{fill:#fff}.product-card-content{padding:16px;display:flex;flex-direction:column;gap:12px;flex:1 1}.product-card-info{display:flex;flex-direction:column;gap:4px}.product-card-category{font-size:12px;line-height:12px;color:#6c6c6c}.product-card-name{font-size:16px;line-height:24px;font-weight:400;color:#222;margin:0;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}.product-card-rating{display:flex;align-items:center;gap:4px;font-size:12px;line-height:12px;color:#6c6c6c}.product-card-rating-value,.product-card-reviews{color:#6c6c6c}.product-card-footer{display:flex;align-items:center;justify-content:space-between;margin-top:auto}.product-card-price{font-size:20px;line-height:32px;font-weight:400;color:#222}.product-card-cart-button{width:36px;height:36px;border-radius:50%;background:#004638;border:none;cursor:pointer;display:flex;align-items:center;justify-content:center;transition:background .2s;flex-shrink:0}.product-card-cart-button:hover:not(:disabled){background:#003329}.product-card-cart-button:disabled{background:#c1c1c1;cursor:not-allowed;opacity:.6}@media (max-width:1200px){.product-grid{grid-template-columns:repeat(2,1fr);gap:24px}}@media (max-width:768px){.product-grid{grid-template-columns:1fr;gap:20px}}