/* LatePoint Dynamic Book Now - Frontend Styles */

.lpdb-booking-wrapper {
    display: inline-block;
    text-align: center;
}

.lpdb-book-now-btn,
.latepoint-book-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: #0073aa;
    color: #ffffff !important;
    text-decoration: none !important;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 16px;
    line-height: 1.5;
}

.lpdb-book-now-btn:hover,
.latepoint-book-button:hover {
    background-color: #005177;
    color: #ffffff !important;
    text-decoration: none !important;
    transform: translateY(-1px);
}

.lpdb-book-now-btn:focus,
.latepoint-book-button:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 115, 170, 0.3);
}

.lpdb-service-info {
    margin-bottom: 10px;
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.lpdb-price {
    font-weight: 600;
    color: #0073aa;
}

.lpdb-duration {
    color: #666;
}

.lpdb-caption {
    margin-bottom: 8px;
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

/* Elementor button compatibility */
.elementor-button.latepoint-book-button {
    text-decoration: none !important;
}

.elementor-button.latepoint-book-button:hover {
    text-decoration: none !important;
}

/* Ensure proper cursor */
a.latepoint-book-button {
    cursor: pointer !important;
}

/* Loading state */
.latepoint-book-button.loading {
    opacity: 0.6;
    pointer-events: none;
}

.latepoint-book-button.loading::after {
    content: '';
    display: inline-block;
    width: 14px;
    height: 14px;
    margin-left: 8px;
    border: 2px solid #ffffff;
    border-top-color: transparent;
    border-radius: 50%;
    animation: lpdb-spin 0.6s linear infinite;
}

@keyframes lpdb-spin {
    to {
        transform: rotate(360deg);
    }
}
