/* ===== STICKY FOOTER STYLES ===== */
.unq-sticky-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, #1a1a2e, #2d3748);
    color: white;
    padding: 15px 0;
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 3px solid #2E8B57;
}

.unq-sticky-footer.unq-sticky-visible {
    transform: translateY(0);
}

.unq-sticky-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.unq-sticky-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

/* Urgency Section */
.unq-sticky-urgency {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.unq-sticky-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #e53e3e, #c53030);
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 1px;
    white-space: nowrap;
    animation: unq-sticky-pulse 2s infinite;
}

@keyframes unq-sticky-pulse {
    0%, 100% { 
        box-shadow: 0 0 10px rgba(229, 62, 62, 0.3);
    }
    50% { 
        box-shadow: 0 0 20px rgba(229, 62, 62, 0.6);
    }
}

.unq-sticky-badge-icon {
    animation: unq-sticky-spin 3s linear infinite;
}

@keyframes unq-sticky-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.unq-sticky-message {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #e2e8f0;
}

.unq-sticky-warning {
    color: #fbb6ce;
    animation: unq-sticky-blink 1s infinite;
}

@keyframes unq-sticky-blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.unq-sticky-text {
    font-weight: 500;
}

.unq-sticky-countdown {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 20px;
    color: #68d391;
    background: rgba(104, 211, 145, 0.1);
    padding: 4px 12px;
    border-radius: 6px;
    min-width: 60px;
    text-align: center;
    border: 1px solid rgba(104, 211, 145, 0.3);
    animation: unq-sticky-countdown-pulse 1s infinite;
}

@keyframes unq-sticky-countdown-pulse {
    0%, 100% { 
        box-shadow: 0 0 5px rgba(104, 211, 145, 0.3);
    }
    50% { 
        box-shadow: 0 0 10px rgba(104, 211, 145, 0.6);
    }
}

/* CTA Button */
.unq-sticky-cta {
    flex-shrink: 0;
}

.unq-sticky-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #2E8B57, #3CB371);
    color: white;
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
    box-shadow: 0 5px 20px rgba(46, 139, 87, 0.4);
    transition: all 0.3s ease;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.unq-sticky-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.7s ease;
}

.unq-sticky-btn:hover {
    background: linear-gradient(135deg, #267349, #2E8B57);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(46, 139, 87, 0.6);
}

.unq-sticky-btn:hover::before {
    left: 100%;
}

.unq-sticky-btn-icon {
    font-size: 16px;
}

.unq-sticky-btn-text {
    font-size: 14px;
}

.unq-sticky-arrow {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.unq-sticky-btn:hover .unq-sticky-arrow {
    transform: translateX(5px);
}

/* Close Button */
.unq-sticky-close {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #a0aec0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-left: 10px;
}

.unq-sticky-close:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    transform: rotate(90deg);
}

/* Responsive Design */
@media (max-width: 992px) {
    .unq-sticky-content {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
        gap: 15px;
    }
    
    .unq-sticky-urgency {
        flex-direction: column;
        gap: 10px;
        width: 100%;
        order: 1;
    }
    
    .unq-sticky-cta {
        order: 2;
    }
    
    .unq-sticky-close {
        position: absolute;
        top: 10px;
        right: 20px;
        margin-left: 0;
    }
    
    .unq-sticky-badge {
        align-self: center;
    }
    
    .unq-sticky-message {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .unq-sticky-footer {
        padding: 12px 0;
    }
    
    .unq-sticky-container {
        padding: 0 15px;
    }
    
    .unq-sticky-btn {
        padding: 12px 25px;
        font-size: 13px;
    }
    
    .unq-sticky-countdown {
        font-size: 18px;
        min-width: 50px;
    }
    
    .unq-sticky-text {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .unq-sticky-badge {
        padding: 6px 12px;
        font-size: 11px;
    }
    
    .unq-sticky-btn {
        padding: 10px 20px;
        font-size: 12px;
        gap: 8px;
    }
    
    .unq-sticky-countdown {
        font-size: 16px;
        min-width: 45px;
    }
    
    .unq-sticky-text {
        font-size: 12px;
    }
    
    .unq-sticky-close {
        width: 28px;
        height: 28px;
        top: 8px;
        right: 15px;
    }
}