/* 
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 */


.booking-wrapper {
  max-width: 100%;   /* ⬅️ fixed width */
  width: 100%;
  margin: auto;
  background: #fff;
  padding: 16px 18px;
  filter: drop-shadow(0 4px 21px rgba(0, 0, 0, 0.12));
}

.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%;
  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 input */
.counter-wrapper {
  position: relative;
}

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

/* Chevron container */
.counter-controls {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  width: 26px;                 /* ⬅️ reserved space */
  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: #dcc8a4;
  color: #000;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
}

.button-group button:hover {
  background: #d2b98d;
}
.button-group button:focus {
  background: #d2b98d;
}
.button-group button:active {
  background: #d2b98d;
}

@media (max-width: 820px) {
  .booking-wrapper {
    max-width: 100%;
  }

  .booking-form {
    grid-template-columns: 1fr 1fr;
  }

  .button-group {
    grid-column: span 2;
  }
}

@media (max-width: 480px) {
  .booking-form {
    grid-template-columns: 1fr;
  }
}

