/* Order Now Button - Floating Overlay */

.onb-7585d1a9-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 10;
}

/* Floating overlay mode */
.onb-7585d1a9-floating {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 50;
    pointer-events: auto;
}

/* Glow ring behind button */
.onb-7585d1a9-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110%;
    height: 140%;
    border-radius: 50px;
    box-shadow: 0 0 20px 8px rgba(194, 24, 91, 0.5);
    opacity: 0.6;
    pointer-events: none;
    animation: onb-7585d1a9-glow-pulse 2.5s ease-in-out infinite;
}

@keyframes onb-7585d1a9-glow-pulse {
    0%, 100% { opacity: 0.4; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.08); }
}

/* Button */
.onb-7585d1a9-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 16px 40px;
    background: #C2185B;
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    cursor: pointer;
    position: relative;
    z-index: 2;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 8px 32px rgba(194, 24, 91, 0.45), 0 2px 8px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    white-space: nowrap;
    line-height: 1;
}

.onb-7585d1a9-btn:hover {
    background: #E91E63;
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 12px 40px rgba(233, 30, 99, 0.55), 0 4px 12px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

.onb-7585d1a9-btn:active {
    transform: translateY(-1px) scale(1.01);
}

/* Pulse animation */
.onb-7585d1a9-pulse {
    animation: onb-7585d1a9-btn-pulse 2s ease-in-out infinite;
}

@keyframes onb-7585d1a9-btn-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.onb-7585d1a9-pulse:hover {
    animation: none;
}

/* Icon */
.onb-7585d1a9-icon {
    display: inline-flex;
    align-items: center;
    font-size: 18px;
    line-height: 1;
}

.onb-7585d1a9-icon svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.onb-7585d1a9-icon-before {
    margin-right: 10px;
}

.onb-7585d1a9-icon-after {
    margin-left: 10px;
}

/* Text */
.onb-7585d1a9-text {
    display: inline-block;
    line-height: 1;
}

/* Shimmer effect on button */
.onb-7585d1a9-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    border-radius: inherit;
    animation: onb-7585d1a9-shimmer 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes onb-7585d1a9-shimmer {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

/* Responsive */
@media (max-width: 767px) {
    .onb-7585d1a9-btn {
        padding: 14px 30px;
        font-size: 15px;
        letter-spacing: 1.5px;
    }
}
