.elementor-3550 .elementor-element.elementor-element-0c2183d{--display:flex;--flex-direction:row;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--align-items:center;--padding-top:13px;--padding-bottom:13px;--padding-left:13px;--padding-right:13px;}.elementor-3550 .elementor-element.elementor-element-9fcce19{width:100%;max-width:100%;}.elementor-3550 .elementor-element.elementor-element-3e990ff{--display:flex;--align-items:center;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );}#elementor-popup-modal-3550 .dialog-widget-content{animation-duration:1.2s;box-shadow:2px 8px 23px 3px rgba(0,0,0,0.2);margin:0px 0px 30px 0px;}#elementor-popup-modal-3550 .dialog-message{width:1000px;height:auto;padding:0px 0px 0px 0px;}#elementor-popup-modal-3550{justify-content:center;align-items:flex-end;}#elementor-popup-modal-3550 .dialog-close-button{display:flex;top:-20px;font-size:25px;}body:not(.rtl) #elementor-popup-modal-3550 .dialog-close-button{right:-10%;}body.rtl #elementor-popup-modal-3550 .dialog-close-button{left:-10%;}#elementor-popup-modal-3550 .dialog-close-button i{color:#616161;}#elementor-popup-modal-3550 .dialog-close-button svg{fill:#616161;}#elementor-popup-modal-3550 .dialog-close-button:hover i{color:var( --e-global-color-secondary );}@media(min-width:768px){.elementor-3550 .elementor-element.elementor-element-0c2183d{--width:1130px;}.elementor-3550 .elementor-element.elementor-element-3e990ff{--width:24%;}}/* Start custom CSS *//* Banner container */
.promo-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #f2f2f2;
    border-radius: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    padding: 12px 18px;
    z-index: 9999;
    max-width: 90%;
}

/* Layout */
.promo-content {
    display: flex;
    align-items: center;
    gap: 14px;
}

/* Promo text */
.promo-text {
    font-size: 14px;
    color: #222;
    line-height: 1.5;
    margin: 0;
}

/* Badge */
.promo-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #ffd400;
    color: #000;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    margin-right: 6px;
    animation: pulseBadge 1.8s infinite;
}

/* Icon */
.promo-icon {
    font-size: 14px;
    animation: flashIcon 1.5s infinite;
}

/* Highlight text */
.promo-highlight {
    color: #d4148e;
}

/* Price emphasis */
.promo-price {
    color: #000;
    background: #ffd400;
    padding: 2px 6px;
    border-radius: 6px;
    font-weight: 800;
    text-decoration: underline;
    animation: priceGlow 2s infinite;
}

/* Button */
.promo-btn {
    background: #000;
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    text-decoration: none;
    white-space: nowrap;
}

.promo-btn:hover {
    background: #333;
}

/* Close button */
.promo-close {
    background: none;
    border: none;
    font-size: 14px;
    cursor: pointer;
    margin-left: 10px;
    color: #555;
}

/* Animations */
@keyframes pulseBadge {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes flashIcon {
    0% { opacity: 1; }
    50% { opacity: 0.6; }
    100% { opacity: 1; }
}

@keyframes priceGlow {
    0% { box-shadow: 0 0 0 rgba(255,212,0,0.6); }
    50% { box-shadow: 0 0 10px rgba(255,212,0,0.9); }
    100% { box-shadow: 0 0 0 rgba(255,212,0,0.6); }
}/* End custom CSS */