.elementor-989683 .elementor-element.elementor-element-4e931722{--display:flex;}.elementor-989683 .elementor-element.elementor-element-372bd51{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:3em;--margin-bottom:0em;--margin-left:0em;--margin-right:0em;}.elementor-989683 .elementor-element.elementor-element-00da237{text-align:center;}.elementor-989683 .elementor-element.elementor-element-3f1ce86{--display:flex;}@media(max-width:1024px){.elementor-989683 .elementor-element.elementor-element-372bd51{--margin-top:3em;--margin-bottom:0em;--margin-left:0em;--margin-right:0em;}.elementor-989683 .elementor-element.elementor-element-00da237{text-align:center;}.elementor-989683 .elementor-element.elementor-element-3f1ce86{--align-items:center;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );}}/* Start custom CSS for shortcode, class: .elementor-element-cded1c7 *//* Container Spacing */
.cr-reservation-wrapper {
    max-width: 850px;
    margin: 40px auto;
    font-family: inherit;
    color: #232323;
}

/* Section Separation */
.cr-form-section {
    background: #fff;
    padding: 25px;
    margin-bottom: 30px;
    border: 1px solid #f0f0f0;
    border-radius: 8px;
}

.cr-section-title {
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
    color: #2c3e50;
    border-bottom: 2px solid #f0f5ed;
    padding-bottom: 10px;
}

/* Field Layout & Spacing */
.cr-field-row {
    display: flex;
    gap: 30px; /* Wide gap between columns */
    margin-bottom: 20px; /* Spacing between rows */
}

.cr-field {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.cr-field label {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 8px;
}

.cr-details {
    margin-bottom: 2em;
}

.cr-sub-label {
    font-size: 16px;
    font-weight: 600;
    color: #888;
    margin: 15px 0 10px 0;
}

/* Input Styling & Dropdown Fix */
.cr-reservation-wrapper input:not([type="submit"]):not([type="radio"]),
.cr-reservation-wrapper select,
.cr-reservation-wrapper textarea {
    width: 100%;
    padding: 14px 15px; /* Comfortable padding */
    background-color: #fff;
    color: #232323;
    border: 1px solid #e0e3dc;
    border-radius: 4px;
    font-size: 16px;
    line-height: 1.5; /* Prevents text being cut off */
    box-sizing: border-box;
    appearance: none; /* Removes default browser styling for cleaner look */
}

/* Specific fix for dropdown height */
.cr-reservation-wrapper select {
    height: 50px; /* Explicit height ensures it won't cut off */
    background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23666%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E');
    background-repeat: no-repeat;
    background-position: right 15px top 50%;
    background-size: 12px auto;
}

/* Radio Button Spacing */
.cr-radio-item {
    margin-bottom: 15px;
    padding: 10px;
    border-radius: 4px;
    border: 1px solid #fafafa;
}

.cr-radio-item label {
    font-weight: 600;
    margin-bottom: 5px;
    display: block;
}

/* Footer & Button */
.cr-form-footer {
    text-align: center;
    padding: 20px;
}

.cr-submit-container {
    margin-top: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cr-reservation-wrapper input[type="submit"] {
    background-color: #6E6A69;
    color: #fff;
    padding: 16px 60px;
    border: none;
    border-radius: 0;
    cursor: pointer;
    font-weight: bold;
    letter-spacing: 1px;
}

.cr-reservation-wrapper input[type="submit"]:hover {
    background-color: #A7ACA2;
}

/* Fix for "Weird" Checkboxes and Radio Buttons */
.cr-reservation-wrapper .wpcf7-list-item {
    display: inline-block;
    margin: 0 15px 10px 0;
}

.cr-reservation-wrapper input[type="checkbox"], 
.cr-reservation-wrapper input[type="radio"] {
    width: auto !important; /* Prevents it from stretching to 100% */
    height: auto !important;
    margin-right: 8px;
    appearance: checkbox !important; /* Forces the browser to show the standard box */
    -webkit-appearance: checkbox !important;
    display: inline-block;
    vertical-align: middle;
}

/* Specific fix for the Acceptance/Consent checkbox at the bottom */
.cr-form-footer .wpcf7-acceptance input {
    width: auto !important;
    margin-right: 10px;
}

.cr-form-footer .wpcf7-acceptance .wpcf7-list-item-label {
    font-size: 13px;
    color: #666;
    vertical-align: middle;
}

/* Ensure the Radio item labels don't force a vertical stack */
.cr-radio-item label {
    display: block;
    margin-bottom: 10px;
}

.cr-radio-item span.wpcf7-list-item {
    display: inline-flex;
    align-items: center;
    margin-right: 20px;
}

/* Mobile Fix */
@media (max-width: 650px) {
    .cr-field-row { flex-direction: column; gap: 15px; }
    .cr-form-section { padding: 15px; }
}/* End custom CSS */