/* FLOATING BOOKING CARD - replaces the old button */
    .booking-card {
      position: relative;
      z-index: 15;
      max-width: 860px;
      width: 90%;
      margin: 2rem auto 3rem auto;
      background: rgba(20, 30, 25, 0.85);
      backdrop-filter: blur(12px);
      border-radius: 28px;
      border: 1px solid rgba(212, 175, 55, 0.4);
      box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.4);
      padding: 0.8rem 1rem 1.5rem 1rem;
      transition: all 0.2s;
    }

    /* TABS */
    .tabs-container {
      display: flex;
      gap: 0.25rem;
      background: rgba(0, 0, 0, 0.35);
      border-radius: 60px;
      padding: 0.3rem;
      margin-bottom: 1.5rem;
    }

    .tab-btn {
      flex: 1;
      background: transparent;
      border: none;
      padding: 0.7rem 0.5rem;
      font-weight: 600;
      font-size: 0.95rem;
      border-radius: 40px;
      color: #e6e2c3;
      cursor: pointer;
      transition: all 0.2s;
      font-family: inherit;
      backdrop-filter: blur(4px);
    }

    .tab-btn.active {
      background: #d4af37;
      color: #1e2a24;
      box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    }

    /* TAB CONTENT PANELS */
    .tab-panel {
      display: none;
      animation: fadeSlide 0.25s ease;
    }

    .tab-panel.active-panel {
      display: block;
    }

    @keyframes fadeSlide {
      from { opacity: 0; transform: translateY(5px); }
      to { opacity: 1; transform: translateY(0); }
    }

    /* Experience options grid */
    .exp-options {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      margin: 1rem 0 0.5rem;
    }

    .exp-card {
      background: rgba(255, 248, 225, 0.9);
      border-radius: 20px;
      padding: 1rem;
      flex: 1 1 180px;
      cursor: pointer;
      text-align: center;
      transition: all 0.2s;
      border: 2px solid transparent;
      color: #1e3a2f;
      font-weight: 500;
    }

    .exp-card.selected {
      border-color: #d4af37;
      background: #fff3cf;
      transform: scale(1.02);
      box-shadow: 0 6px 14px rgba(0,0,0,0.15);
    }

    .exp-card:hover {
      background: #fff0c4;
      transform: translateY(-3px);
    }


    .exp-icon {
      font-size: 2rem;
      display: block;
      margin-bottom: 0.5rem;
    }

    /* Date inputs row */
    .date-row {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
      margin: 1rem 0;
    }

    .date-input-group {
      flex: 1;
      background: rgba(255,250,235,0.95);
      border-radius: 24px;
      padding: 0.6rem 1rem;
    }

    .date-input-group label {
      font-size: 0.7rem;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: #4a3b1c;
      font-weight: bold;
      display: block;
    }

    .date-input-group input {
      width: 100%;
      border: none;
      background: transparent;
      font-size: 1rem;
      font-weight: 500;
      padding: 0.3rem 0;
      font-family: monospace;
      color: #1e2a24;
      outline: none;
    }

    /* Guests panel */
    .guests-panel {
      background: rgba(255,250,235,0.95);
      border-radius: 24px;
      padding: 1.2rem;
      margin: 0.5rem 0;
    }

    .guest-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 1rem;
      padding: 0.3rem 0;
      border-bottom: 1px solid #ddd0a8;
    }

    .guest-label {
      font-weight: 600;
      color: #2a3b2e;
    }

    .guest-controls {
      display: flex;
      gap: 0.8rem;
      align-items: center;
    }

    .guest-controls button {
      width: 32px;
      height: 32px;
      border-radius: 40px;
      border: none;
      background: #d4af37;
      color: #1e3a2f;
      font-weight: bold;
      font-size: 1.2rem;
      cursor: pointer;
      transition: 0.1s;
    }

    .guest-controls span {
      min-width: 28px;
      text-align: center;
      font-weight: 600;
      font-size: 1.1rem;
    }

    .pet-check {
      display: flex;
      align-items: center;
      gap: 0.8rem;
      margin-top: 0.8rem;
    }

    /* Continue button */
    .continue-btn {
      width: 100%;
      background: #d4af37;
      border: none;
      padding: 0.9rem;
      border-radius: 40px;
      font-weight: bold;
      font-size: 1rem;
      margin-top: 1.2rem;
      cursor: pointer;
      transition: 0.2s;
      font-family: inherit;
      color: #1e3a2f;
      letter-spacing: 0.5px;
    }


    .continue-btn:hover {
      background: #f3cd5c;
      transform: scale(0.98);
    }

    /* Small text */
    .note-text {
      font-size: 0.7rem;
      text-align: center;
      margin-top: 0.8rem;
      color: #ddd8bb;
    }


    /* Responsive */
    @media (max-width: 650px) {
      .exp-options {
        flex-direction: column;
      }
      .date-row {
        flex-direction: column;
      }
      .booking-card {
        width: 95%;
        padding: 0.6rem 0.8rem 1rem;
      }
      .tab-btn {
        font-size: 0.8rem;
        padding: 0.5rem 0;
      }
    }