/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */

        .kids-group {
            position: relative;
        }

        .kids-age-dropdown {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background: #fff;
            border: 1px solid #ddd;
            margin-top: 6px;
            padding: 10px;
            z-index: 20;
        }

        .kids-age-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 8px;
        }

        .kids-age-row:last-child {
            margin-bottom: 0;
        }

        .kids-age-row span {
            font-size: 13px;
        }

        .age-counter {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .age-counter input {
            width: 50px;
            height: 32px;
            text-align: center;
            border: 1px solid #ddd;
            pointer-events: none;
        }

        .age-counter .age-controls {
            display: flex;
            flex-direction: column;
        }

        .age-controls span {
            font-size: 10px;
            cursor: pointer;
            user-select: none;
        }

        .booking-wrapper {
            max-width: 100%;
            width: 100%;
            margin: auto;
            background: #fff;
            padding: 0px 18px 10px;
            /* box-shadow: 0 4px 21px rgba(0, 0, 0, 0.12); */
            filter: none;
            overflow: visible;
        }

        .booking-form {
            display: grid;
            grid-template-columns: 1.4fr 1.4fr 1fr 1fr auto;
            gap: 12px;
            align-items: end;
        }

        .field-group {
            display: flex;
            flex-direction: column;
            flex: 1;
            min-width: 160px;
        }

        .field-group.small {
            max-width: 100%;
        }

        .field-group label {
            font-size: 13px;
            margin-bottom: 6px;
            color: #333;
        }

        /* Date input */
        .date-wrapper {
            position: relative;
        }

        .date-wrapper input {
            height: 44px;
            width: 100%;
			background: #F1F0F0;
            padding: 8px 38px 8px 10px;
            border: 1px solid #ddd;
            font-size: 14px;
        }

        /* Hide native calendar icon (Chrome / Edge) */
        .date-wrapper input::-webkit-calendar-picker-indicator {
            opacity: 0;
            cursor: pointer;
        }

        /* Custom calendar icon */
        .date-icon {
            position: absolute;
            right: 10px;
            top: 50%;
            transform: translateY(-50%);
            width: 18px;
            height: 18px;
            cursor: pointer;
            fill: #666;
        }

        .date-icon:hover {
            fill: #000;
        }

        /* Counter input */
        .counter-wrapper {
            position: relative;
        }

        .counter-wrapper input {
            height: 44px;
            width: 100%;
            padding: 8px 48px 8px 10px;
            border: 1px solid #ddd;
            font-size: 14px;
            background: #F1F0F0;
            pointer-events: none;
        }

        /* Chevron container */
        .counter-controls {
            position: absolute;
            right: 6px;
            top: 50%;
            transform: translateY(-50%);
            width: 26px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .counter-controls span {
            font-size: 10px;
            line-height: 12px;
            cursor: pointer;
            color: #666;
            user-select: none;
        }

        .counter-controls span:hover {
            color: #000;
        }

        /* Button */
        .button-group button {
            height: 46px;
            padding: 0 26px;
            border: none;
            border-radius: 4px;
			background: #5B496E;
            font-family :Inter;
			font-weight : 600;
            color: #fff;
            font-size: 12px;
            font-weight: 500;
            cursor: pointer;
        }

        .button-group button:hover,
        .button-group button:focus,
        .button-group button:active {
            background: #5B496E;
        }
