/* Free Delivery Popup Styling */
.free-delivery-popup {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: linear-gradient(135deg, #f5d9b0 0%, #e8c490 100%);
  color: #5a3e2a;
  padding: 15px 25px;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  z-index: 9999;
  max-width: 300px;
  transform: translateY(100px);
  opacity: 0;
  animation: slideIn 0.8s forwards 3s ease-out;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  backdrop-filter: blur(5px);
  overflow: hidden;
}

.free-delivery-popup:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('https://fakhra.sa/en/azzure-aoud-edp-100ml/p462369661') center/cover;
  opacity: 0.1;
  pointer-events: none;
}

.free-delivery-popup h3 {
  margin: 0 0 8px 0;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
}

.free-delivery-popup h3:before {
  content: "🚚";
  margin-right: 10px;
  font-size: 22px;
}

.free-delivery-popup p {
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
}

.close-popup {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(0,0,0,0.1);
  border: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  color: #5a3e2a;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.close-popup:hover {
  background: rgba(0,0,0,0.2);
}

/* Animation */
@keyframes slideIn {
  0% { transform: translateY(100px); opacity: 0; }
  80% { transform: translateY(-10px); opacity: 1; }
  100% { transform: translateY(0); opacity: 1; }
}

/* Pulse effect for attention */
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.free-delivery-popup:hover {
  animation: pulse 1.5s infinite ease-in-out;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .free-delivery-popup {
    max-width: 90%;
    left: 5%;
    right: 5%;
    bottom: 10px;
  }
}





<div class="free-delivery-popup">
  <button class="close-popup">×</button>
  <h3>FREE DELIVERY!</h3>
  <p>Enjoy complimentary shipping on selected premium perfume collections. Limited time offer!</p>
</div>

img[alt="فاخرة logo"] {


  transform: scale(1.9); /* زوّد الرقم لو تبيها أكبر */
 
margin-top: 20px; /* هنا تنزل الصورة لتحت */