🚚 FREE delivery above 500 AED! Save up to 35 AED on delivery. >200 AED: 10 AED | <200 AED: 35 AED .notice-container { display: flex; justify-content: center; padding: 10px; background-color: transparent; } .notice { display: flex; align-items: center; gap: 10px; background: linear-gradient(135deg, #ffffff, #ffecec); border-radius: 15px; padding: 10px; max-width: 300px; width: 100%; box-shadow: 0 5px 10px rgba(217,27,40,0.1); animation: fadeInUp 1s ease-out; transition: transform 0.3s ease, box-shadow 0.3s ease; } .notice:hover { transform: translateY(-3px); box-shadow: 0 8px 15px rgba(217,27,40,0.15); } .icon { font-size: 24px; animation: bounce 2s infinite; } .content p { margin: 2px 0; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 12px; color: #333; line-height: 1.3; } .content strong { color: #d91b28; } @keyframes fadeInUp { from { opacity: 0; transform: translateY(15px);