/* Laguna Booking Flow - 9c639302 */

.lbf-9c639302-wrapper {
    position: relative;
    background-color: #FAF8F5;
    border-radius: 12px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    max-width: 480px;
    margin: 0 auto;
    overflow: hidden;
}

.lbf-9c639302-heading {
    font-size: 26px;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0 0 24px 0;
    line-height: 1.2;
}

/* Steps */
.lbf-9c639302-step {
    display: none;
    animation: lbf9c639302FadeIn 0.35s ease;
}

.lbf-9c639302-step.lbf-9c639302-active {
    display: block;
}

@keyframes lbf9c639302FadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.lbf-9c639302-step-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Step 1 Cards */
.lbf-9c639302-card-option {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 130px;
    border: 1px solid transparent !important;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    padding: 24px;
    outline: none !important;
    -webkit-appearance: none;
    appearance: none;
}

.lbf-9c639302-card-activity {
    background-color: #A8D5E2;
}

.lbf-9c639302-card-rental {
    background-color: #D4D9A0;
}

.lbf-9c639302-card-option:hover,
.lbf-9c639302-card-option:focus,
.lbf-9c639302-card-option:focus-visible,
.lbf-9c639302-card-option:active {
    border: 1px solid rgba(26, 26, 26, 0.25) !important;
    outline: none !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.04) !important;
}

.lbf-9c639302-card-label {
    font-size: 16px;
    font-weight: 800;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
}

/* Breadcrumb */
.lbf-9c639302-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    font-size: 13px;
    font-weight: 700;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.lbf-9c639302-breadcrumb-icon {
    font-size: 16px;
}

.lbf-9c639302-breadcrumb-icon-img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    flex-shrink: 0;
}

/* Step 2 Items */
.lbf-9c639302-item-btn {
    display: block;
    width: 100%;
    text-align: left;
    padding: 16px 20px;
    background: #FFFFFF;
    border: 1px solid #e8e5e0;
    border-radius: 8px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 400;
    color: #555;
    transition: all 0.2s ease;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    font-family: inherit;
}

.lbf-9c639302-item-btn:hover {
    border-color: #999;
    color: #1a1a1a;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.lbf-9c639302-item-btn:focus-visible {
    border-color: #9B59B6;
    box-shadow: 0 0 0 3px rgba(155, 89, 182, 0.2);
}

.lbf-9c639302-item-btn.lbf-9c639302-selected {
    border-color: #9B59B6;
    color: #1a1a1a;
    font-weight: 600;
    background: #faf5fc;
}

/* Navigation */
.lbf-9c639302-nav {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 32px;
}

.lbf-9c639302-btn-back {
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
    border: none !important;
    box-shadow: none !important;
    cursor: pointer;
    font-size: 14px;
    font-weight: 800;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 12px 0;
    transition: color 0.2s ease;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    font-family: inherit;
}

.lbf-9c639302-btn-back:hover,
.lbf-9c639302-btn-back:focus,
.lbf-9c639302-btn-back:active,
.lbf-9c639302-btn-back:focus-visible {
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
    box-shadow: none !important;
    color: #1a1a1a;
}

.lbf-9c639302-btn-primary {
    border: none;
    border-radius: 12px;
    padding: 14px 36px;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.25s ease;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    font-family: inherit;
}

.lbf-9c639302-btn-next {
    background-color: #9B59B6;
    color: #FFFFFF;
}

.lbf-9c639302-btn-submit {
    background-color: #9B59B6;
    color: #FFFFFF;
}

.lbf-9c639302-btn-primary:hover {
    filter: brightness(1.1);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(155, 89, 182, 0.3);
}

.lbf-9c639302-btn-primary:focus-visible {
    box-shadow: 0 0 0 3px rgba(155, 89, 182, 0.4);
}

.lbf-9c639302-btn-primary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Step 3 - Date Select */
.lbf-9c639302-date-select,
.lbf-9c639302-input {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #e8e5e0;
    border-radius: 8px;
    font-size: 15px;
    color: #555;
    background: #FFFFFF;
    outline: none;
    transition: border-color 0.2s ease;
    font-family: inherit;
    box-sizing: border-box;
    -webkit-appearance: none;
    appearance: none;
}

.lbf-9c639302-date-select:focus,
.lbf-9c639302-input:focus {
    border-color: #9B59B6;
    box-shadow: 0 0 0 3px rgba(155, 89, 182, 0.1);
}

.lbf-9c639302-no-dates {
    font-size: 14px;
    color: #888;
    font-style: italic;
    margin: 8px 0;
}

/* Section Label */
.lbf-9c639302-section-label {
    font-size: 14px;
    font-weight: 800;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 20px 0 12px 0;
}

/* People Grid */
.lbf-9c639302-people-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.lbf-9c639302-people-group {
    text-align: center;
}

.lbf-9c639302-people-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-bottom: 8px;
}

/* Counter */
.lbf-9c639302-counter {
    display: inline-flex;
    align-items: center;
    gap: 0;
    border: 1px solid #e8e5e0;
    border-radius: 8px;
    overflow: hidden;
    background: #FFFFFF;
}

.lbf-9c639302-counter-btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 18px;
    color: #555;
    transition: all 0.15s ease;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    font-family: inherit;
}

.lbf-9c639302-counter-btn:hover {
    background: #f5f3f0;
    color: #1a1a1a;
}

.lbf-9c639302-counter-value {
    min-width: 32px;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    user-select: none;
}

/* Field Group */
.lbf-9c639302-field-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.lbf-9c639302-field-label {
    font-size: 13px;
    font-weight: 700;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* Contact Grid */
.lbf-9c639302-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

/* Info Text */
.lbf-9c639302-info-text {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin: 8px 0 0 0;
}

/* Success */
.lbf-9c639302-success-content {
    text-align: center;
    padding: 40px 20px;
}

.lbf-9c639302-success-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #27ae60;
    color: #fff;
    font-size: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.lbf-9c639302-success-text {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

/* Loading */
.lbf-9c639302-loading {
    position: absolute;
    inset: 0;
    background: rgba(250, 248, 245, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    border-radius: inherit;
}

.lbf-9c639302-spinner {
    width: 36px;
    height: 36px;
    border: 1px solid #e8e5e0;
    border-top-color: #9B59B6;
    border-radius: 50%;
    animation: lbf9c639302Spin 0.7s linear infinite;
}

@keyframes lbf9c639302Spin {
    to { transform: rotate(360deg); }
}

/* Error */
.lbf-9c639302-error-msg {
    color: #e74c3c;
    font-size: 13px;
    margin-top: 4px;
}

.lbf-9c639302-input-error {
    border-color: #e74c3c !important;
}

/* Responsive */
@media (max-width: 600px) {
    .lbf-9c639302-wrapper {
        max-width: 100%;
    }

    .lbf-9c639302-heading {
        font-size: 22px;
    }

    .lbf-9c639302-card-option {
        min-height: 100px;
        padding: 20px;
    }

    .lbf-9c639302-people-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .lbf-9c639302-counter-btn {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    .lbf-9c639302-counter-value {
        min-width: 24px;
        font-size: 14px;
    }

    .lbf-9c639302-contact-grid {
        grid-template-columns: 1fr;
    }

    .lbf-9c639302-nav {
        flex-wrap: wrap;
    }

    .lbf-9c639302-btn-primary {
        padding: 12px 28px;
        font-size: 14px;
    }
}

@media (max-width: 380px) {
    .lbf-9c639302-people-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .lbf-9c639302-people-group {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .lbf-9c639302-people-label {
        margin-bottom: 0;
    }
}
