.product-card{position:relative;transition:all 0.3s cubic-bezier(0.25,0.8,0.25,1);cursor:pointer;border-radius:12px;overflow:hidden;box-shadow:0 2px 8px rgba(0,0,0,0.1)}.product-card:hover{transform:translateY(-8px);box-shadow:0 8px 25px rgba(0,0,0,0.15)}.product-image-container{position:relative;overflow:hidden;border-radius:12px 12px 0 0}.product-image{transition:transform 0.3s ease}.product-card:hover .product-image{transform:scale(1.05)}.product-actions{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);display:flex;gap:8px;opacity:0;visibility:hidden;transition:all 0.3s ease;z-index:10}.product-card:hover .product-actions{opacity:1;visibility:visible}.action-btn{background:rgba(255,255,255,0.95);border:none;border-radius:50%;width:40px;height:40px;display:flex;align-items:center;justify-content:center;cursor:pointer;transition:all 0.2s ease;backdrop-filter:blur(10px);box-shadow:0 2px 10px rgba(0,0,0,0.1);color:#333}.action-btn:hover{background:#ff6b6b;color:white;transform:scale(1.1)}.action-btn.wishlist:hover{background:#e74c3c}.action-btn.add-to-cart:hover{background:#2ecc71}.action-btn.quick-view:hover{background:#3498db}.featured-badge{animation:pulse 2s infinite}@keyframes pulse{0%{transform:scale(1)}50%{transform:scale(1.05)}100%{transform:scale(1)}}.product-info{padding:16px;background:white;transition:background-color 0.3s ease}.product-card:hover .product-info{background:#f8f9fa}.product-info h3{transition:color 0.3s ease;font-weight:600;margin-bottom:8px}.product-card:hover .product-info h3{color:#ff6b6b}.price-container{display:flex;align-items:center;gap:8px;flex-wrap:wrap;margin-bottom:8px}.price{font-weight:700;color:#e74c3c;font-size:1.1em;transition:transform 0.2s ease}.product-card:hover .price{transform:scale(1.05)}.mrp{text-decoration:line-through;color:#95a5a6;font-size:0.9em}.discount{background:linear-gradient(135deg,#ff6b6b,#e74c3c);color:white;padding:2px 6px;border-radius:12px;font-size:0.8em;font-weight:600;animation:bounce 0.6s ease-out}@keyframes bounce{0%,20%,50%,80%,100%{transform:translateY(0)}40%{transform:translateY(-4px)}60%{transform:translateY(-2px)}}.stock-info{font-size:0.8em;padding:4px 8px;border-radius:8px;display:inline-block;transition:all 0.3s ease}.stock-info:not(.out-of-stock){background:rgba(46,204,113,0.1);color:#27ae60}.stock-info.out-of-stock{background:rgba(231,76,60,0.1);color:#e74c3c}@media(max-width:768px){.product-actions{opacity:1;visibility:visible;position:static;transform:none;justify-content:center;margin-top:8px;background:rgba(248,249,250,0.9);padding:8px;border-radius:8px}.action-btn{width:36px;height:36px}.product-card:hover{transform:none}.product-card:active{transform:scale(0.98)}}.quick-view-modal{position:fixed;top:0;left:0;width:100%;height:100%;background:rgba(0,0,0,0.8);display:flex;align-items:center;justify-content:center;z-index:1000;opacity:0;visibility:hidden;transition:all 0.3s ease}.quick-view-modal.active{opacity:1;visibility:visible}.quick-view-content{background:white;border-radius:16px;max-width:600px;width:90%;max-height:80vh;overflow-y:auto;position:relative;transform:scale(0.8);transition:transform 0.3s ease}.quick-view-modal.active .quick-view-content{transform:scale(1)}.quick-view-close{position:absolute;top:16px;right:16px;background:rgba(0,0,0,0.1);border:none;border-radius:50%;width:32px;height:32px;cursor:pointer;z-index:10}.action-btn.loading{pointer-events:none;opacity:0.6}.action-btn.loading svg{animation:spin 1s linear infinite}@keyframes spin{from{transform:rotate(0deg)}to{transform:rotate(360deg)}}.action-btn.success{background:#2ecc71 !important;color:white}.action-btn.wishlist.active{background:#e74c3c;color:white}.toast-notification{position:fixed;bottom:20px;right:20px;background:#2ecc71;color:white;padding:12px 20px;border-radius:8px;box-shadow:0 4px 12px rgba(0,0,0,0.15);transform:translateX(100%);transition:transform 0.3s ease;z-index:1001}.toast-notification.show{transform:translateX(0)}.toast-notification.error{background:#e74c3c}.toast-notification.warning{background:#f39c12}