body .product-section .product-card{display:flex;flex-direction:column;height:100%;padding:10px;background:#fff;transition:all .3s ease-out;border-radius:4px;position:relative;text-decoration:none;color:inherit}body .product-section .product-card:hover{box-shadow:0 15px 30px rgba(0,0,0,.08);transform:translateY(-5px);z-index:10}body .product-section .product-card .img-container{overflow:hidden;position:relative;background:#fff;margin-bottom:15px;border-radius:4px}body .product-section .product-card .product-img{transition:transform .6s cubic-bezier(.16,1,.3,1);mix-blend-mode:multiply}body .product-section .product-card:hover .product-img{transform:scale(1.08)}body .product-section .product-card .product-info{text-align:center;display:flex;flex-direction:column;flex-grow:1;justify-content:space-between}body .product-section .product-card .product-title{font-family:var(--Baskervville);font-weight:400;color:#1a1a1a;font-size:1em;text-transform:uppercase;line-height:normal;margin-bottom:5px;min-height:50px;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;transition:color .2s}body .product-section .product-card:hover .product-title{color:#000}body .product-section .product-card .price{font-family:var(--Montserrat);color:#000;font-weight:500;font-size:.95em;margin:5px 0 15px;min-height:24px;display:flex;align-items:center;justify-content:center;gap:8px;flex-wrap:wrap}body .product-section .product-card .price .regular-price{text-decoration:line-through;color:#999;font-size:.9em;font-weight:400}body .product-section .product-card .pro-percentage{background-color:#000;color:#fff;font-family:var(--Montserrat);font-size:.7rem;font-weight:700;padding:5px 10px;border-radius:4px;position:absolute;top:12px;left:12px;width:auto;height:auto;z-index:5;display:inline-block;line-height:1;letter-spacing:.5px;box-shadow:0 2px 5px rgba(0,0,0,.1)}body .product-section .product-card .add-btn-wrapper{margin-top:auto;opacity:0;transform:translateY(10px);transition:all .3s ease}body .product-section .product-card:hover .add-btn-wrapper{opacity:1;transform:translateY(0)}body .product-section .product-card .add-to-cart-btn{background-color:#000;color:#fff;border:1px solid #000;padding:10px 0;width:100%;font-family:var(--Montserrat);font-weight:600;font-size:.85rem;text-transform:uppercase;letter-spacing:1px;cursor:pointer;border-radius:4px;transition:all .3s ease;display:block}body .product-section .product-card .add-to-cart-btn:hover{background-color:#fff;color:#000}body .product-section .product-card .add-to-cart-btn:disabled{background-color:#e0e0e0;border-color:#e0e0e0;color:#888;cursor:not-allowed}@media (max-width:767px){body .product-section .product-card .product-title{font-size:1.4em}body .product-section .product-card .add-btn-wrapper{opacity:1;transform:translateY(0)}}