.floating-logo {
  position: fixed;
  bottom: 100px;
  right: 20px;
  z-index: 9999;
}

.floating-logo img {
    width: 150px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}
.floating-coupon-message {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background-color: #fff8dc;
            color: #333;
            border: 1px solid #ddd;
            padding: 16px 20px;
            border-radius: 12px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            z-index: 9999;
            max-width: 300px;
            font-family: sans-serif;
        }

        .coupon-content {
            position: relative;
        }

        .close-coupon {
            position: absolute;
            top: -10px;
            right: -10px;
            background: #f44336;
            color: #fff;
            border: none;
            border-radius: 50%;
            width: 24px;
            height: 24px;
            font-size: 16px;
            line-height: 24px;
            text-align: center;
            cursor: pointer;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
        }

        .close-coupon:hover {
            background: #c0392b;
        }