html { scroll-behavior: smooth; }
body { overflow-x: hidden; }
.product-card { transition: transform 0.3s ease, box-shadow 0.3s ease; }
.product-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -15px rgba(255, 107, 0, 0.12); }
#langMenu { animation: fadeIn 0.15s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }

#productModal.hidden { display: none !important; }
#productModal:not(.hidden) {
  display: flex !important;
  align-items: center;
  justify-content: center;
}

/* Modal image zoom on hover */
.zoom-wrap { position: relative; }
.zoom-wrap .zoom-img { transform-origin: center center; will-change: transform; }
.zoom-wrap:hover .zoom-img { transform: scale(1.45); }
.zoom-wrap:active .zoom-img { transform: scale(1.6); }
