/* assets/css/65-tours-mobile-contact-step.css
   Tours mobile contact step.
   Alcance:
   - solo móvil
   - tercera pantalla dentro de Tours Mobile Booking Flow
   - reutiliza la route móvil existente
   - no toca #contact visual
   - no toca desktop
   - no redefine el booking flow principal
*/

.tours-mobile-contact-step{
  display:none;
}

.tours-mobile-contact-step[hidden]{
  display:none !important;
}

@media (max-width:720px){
  body[data-tours-mobile-contact-step-active="true"] .tours-mobile-route .tours-mobile-config-step[data-tours-mobile-config-step-hidden="true"]{
    display:none !important;
  }

  .tours-mobile-route .tours-mobile-contact-step{
    position:absolute;
    inset:0;
    z-index:3;
    display:grid;
    grid-template-rows:auto auto minmax(0, 1fr) auto auto;
    gap:0;
    height:100svh;
    min-height:100svh;
    overflow:hidden;
    box-sizing:border-box;
    padding:
      calc(60px + env(safe-area-inset-top))
      18px
      calc(14px + env(safe-area-inset-bottom));
    background-color:#0f1113;
    background-image:
      linear-gradient(180deg, rgba(15,17,19,.88) 0%, rgba(15,17,19,.78) 38%, rgba(15,17,19,.94) 100%),
      url("../img/cdmx-angel-night.webp");
    background-position:center top, center top;
    background-size:100% 100%, auto 100vh;
    background-repeat:no-repeat;
  }

  .tours-mobile-route .tours-mobile-contact-step__summary{
    display:grid;
    gap:8px;
    padding:12px 12px 6px;
    border:1px solid rgba(236,220,189,.22);
    border-radius:10px;
    background:rgba(15,17,19,.42);
  }

  .tours-mobile-route .tours-mobile-contact-step__summary-title{
    margin:0;
    color:rgba(255,249,238,.94);
    font-size:13px;
    line-height:1.2;
    font-weight:800;
  }

  .tours-mobile-route .tours-mobile-contact-step__summary-list{
    display:grid;
    grid-template-columns:repeat(3, minmax(0, 1fr));
    gap:7px 6px;
    margin:0;
  }

  .tours-mobile-route .tours-mobile-contact-step__summary-row{
    min-width:0;
    display:grid;
    gap:2px;
  }

  .tours-mobile-route .tours-mobile-contact-step__summary-row[data-tours-mobile-contact-summary-row="tour"],
  .tours-mobile-route .tours-mobile-contact-step__summary-row[data-tours-mobile-contact-summary-row="pickup"],
  .tours-mobile-route .tours-mobile-contact-step__summary-row[data-tours-mobile-contact-summary-row="price"]{
    grid-column:1 / -1;
  }

  .tours-mobile-route .tours-mobile-contact-step__summary-row[data-tours-mobile-contact-summary-row="duration"],
  .tours-mobile-route .tours-mobile-contact-step__summary-row[data-tours-mobile-contact-summary-row="guide"],
  .tours-mobile-route .tours-mobile-contact-step__summary-row[data-tours-mobile-contact-summary-row="guideLanguage"]{
    grid-column:auto;
  }

  .tours-mobile-route .tours-mobile-contact-step__summary-label{
    margin:0;
    color:rgba(255,245,228,.56);
    font-size:11px;
    line-height:1.2;
    font-weight:700;
  }

  .tours-mobile-route .tours-mobile-contact-step__summary-value{
    margin:0;
    min-width:0;
    color:rgba(255,249,238,.92);
    font-size:12.5px;
    line-height:1.25;
    font-weight:750;
    overflow:hidden;
    text-overflow:ellipsis;
    white-space:nowrap;
  }

  .tours-mobile-route .tours-mobile-contact-step__summary-row[data-tours-mobile-contact-summary-row="tour"] .tours-mobile-contact-step__summary-value,
  .tours-mobile-route .tours-mobile-contact-step__summary-row[data-tours-mobile-contact-summary-row="pickup"] .tours-mobile-contact-step__summary-value{
    white-space:normal;
    overflow:visible;
    text-overflow:clip;
  }

  .tours-mobile-route .tours-mobile-contact-step__summary-row[data-tours-mobile-contact-summary-row="price"] .tours-mobile-contact-step__summary-value{
    color:rgba(61,158,122,.98);
  }

  .tours-mobile-route .tours-mobile-contact-step__summary-row[data-tours-mobile-contact-summary-row="tour"]{
    display:none;
  }

  .tours-mobile-route .tours-mobile-contact-step__form{
    min-height:0;
    overflow:auto;
    display:grid;
    grid-template-columns:1fr;
    gap:9px;
    padding-top:10px;
    padding-right:2px;
    padding-bottom:5px;
    -webkit-overflow-scrolling:touch;
  }

  .tours-mobile-route .tours-mobile-contact-step__field{
    display:grid;
    gap:6px;
    min-width:0;
  }

  .tours-mobile-route .tours-mobile-contact-step__label{
    color:rgba(255,245,228,.74);
    font-size:11.5px;
    line-height:1.2;
    font-weight:700;
  }

  .tours-mobile-route .tours-mobile-contact-step__control{
    width:100%;
    min-width:0;
    min-height:48px;
    height:48px;
    max-height:48px;
    padding:0 12px;
    border:1px solid rgba(236,220,189,.38);
    border-radius:9px;
    background:rgba(15,17,19,.46);
    color:rgba(255,249,238,.96);
    box-shadow:none;
    box-sizing:border-box;
    font:inherit;
    font-size:14px;
    line-height:48px;
    font-weight:650;
    color-scheme:dark;
  }

  .tours-mobile-route textarea.tours-mobile-contact-step__control{
    min-height:48px;
    height:48px;
    max-height:48px;
    padding:0 12px;
    line-height:48px;
    resize:none;
    overflow:hidden;
  }

  .tours-mobile-route .tours-mobile-contact-step__control::placeholder{
    color:rgba(255,245,228,.50);
    opacity:1;
  }

  .tours-mobile-route .tours-mobile-contact-step__control:focus-visible{
    outline:none;
    border-color:rgba(31,122,109,.78);
    background-color:rgba(15,17,19,.62);
  }

  .tours-mobile-route .tours-mobile-contact-step__field.is-invalid .tours-mobile-contact-step__control{
    border-color:rgba(212,94,74,.85);
  }

  .tours-mobile-route .tours-mobile-contact-step__error,
  .tours-mobile-route .tours-mobile-contact-step__global-error{
    margin:0;
    color:rgba(255,188,166,.95);
    font-size:12px;
    line-height:1.3;
    font-weight:650;
  }

  .tours-mobile-route .tours-mobile-contact-step__error[hidden],
  .tours-mobile-route .tours-mobile-contact-step__global-error[hidden]{
    display:none !important;
  }

  .tours-mobile-route .tours-mobile-contact-step__actions{
    display:block;
    align-self:end;
    padding-top:4px;
    margin-bottom:-4px;
  }

  .tours-mobile-route .tours-mobile-contact-step__submit{
    width:100%;
    min-height:50px;
    padding:0 16px;
    border:0;
    border-radius:9px;
    background:rgba(31,122,109,.86);
    color:rgba(255,249,238,.98);
    box-shadow:none;
    font:inherit;
    font-size:14px;
    line-height:1;
    font-weight:800;
    cursor:pointer;
  }

  .tours-mobile-route .tours-mobile-contact-step__submit:disabled,
  .tours-mobile-route .tours-mobile-contact-step__submit[aria-disabled="true"]{
    background:rgba(255,245,228,.14);
    color:rgba(255,245,228,.38);
    cursor:not-allowed;
  }

  .tours-mobile-route .tours-mobile-contact-step__submit:focus-visible{
    outline:2px solid rgba(255,249,238,.88);
    outline-offset:2px;
  }

  body[data-tours-mobile-notes-editor-active="true"]{
    overflow:hidden;
  }

  .tours-mobile-notes-editor[hidden]{
    display:none !important;
  }

  .tours-mobile-notes-editor{
    position:fixed;
    top:calc(64px + env(safe-area-inset-top));
    right:0;
    bottom:0;
    left:0;
    z-index:91;
    display:block;
    padding:0;
    background:#0f1113;
    overflow:hidden;
    transform:translateY(0);
    opacity:1;
    transition:
      transform .28s cubic-bezier(.2,.8,.2,1),
      opacity .20s ease;
  }

  .tours-mobile-notes-editor[aria-hidden="true"]{
    transform:translateY(28px);
    opacity:0;
    pointer-events:none;
  }

  .tours-mobile-notes-editor__panel{
    display:flex;
    flex-direction:column;
    width:100%;
    height:100%;
    min-height:0;
    overflow:hidden;
    border-top:1px solid rgba(236,220,189,.16);
    background:#0f1113;
  }

  .tours-mobile-notes-editor__panel::before{
    content:"";
    display:block;
    width:38px;
    height:4px;
    margin:10px auto 8px;
    border-radius:999px;
    background:rgba(255,245,228,.22);
    flex:0 0 auto;
  }

  .tours-mobile-notes-editor__header{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    min-height:40px;
    padding:0 16px;
    background:#0f1113;
    flex:0 0 auto;
  }

  .tours-mobile-notes-editor__title{
    margin:0;
    color:rgba(255,249,238,.94);
    font-size:14px;
    line-height:1.2;
    font-weight:750;
    letter-spacing:-.01em;
  }

  .tours-mobile-notes-editor__close{
    min-width:44px;
    min-height:34px;
    padding:0 8px;
    border:0;
    border-radius:8px;
    background:transparent;
    color:rgba(255,245,228,.78);
    font:inherit;
    font-size:13px;
    line-height:1;
    font-weight:700;
  }

  .tours-mobile-notes-editor__close:focus-visible{
    outline:2px solid rgba(31,122,109,.95);
    outline-offset:0;
  }

  .tours-mobile-notes-editor__body{
    position:relative;
    display:block;
    min-height:0;
    flex:1 1 auto;
    padding:8px 16px calc(16px + env(safe-area-inset-bottom));
    background:#0f1113;
  }

  .tours-mobile-notes-editor__input{
    width:100%;
    height:100%;
    min-height:220px;
    padding:14px 42px 14px 14px;
    border:1px solid rgba(236,220,189,.38);
    border-radius:9px;
    background-color:rgba(15,17,19,.68);
    color:rgba(255,249,238,.96);
    box-shadow:none;
    box-sizing:border-box;
    font:inherit;
    font-size:14px;
    line-height:1.45;
    font-weight:650;
    resize:none;
    color-scheme:dark;
    -webkit-appearance:none;
    appearance:none;
  }

  .tours-mobile-notes-editor__input::placeholder{
    color:rgba(255,245,228,.50);
    opacity:1;
  }

  .tours-mobile-notes-editor__input:focus{
    outline:none;
    border-color:rgba(31,122,109,.78);
    background-color:rgba(15,17,19,.82);
  }

  .tours-mobile-notes-editor__input:focus-visible{
    outline:2px solid rgba(31,122,109,.95);
    outline-offset:0;
  }

  .tours-mobile-notes-editor__clear{
    position:absolute;
    right:26px;
    top:20px;
    width:30px;
    height:30px;
    border:0;
    border-radius:999px;
    background:rgba(255,255,255,.05);
    color:rgba(255,245,228,.74);
    font:inherit;
    font-size:18px;
    line-height:1;
    font-weight:600;
  }

  .tours-mobile-notes-editor__clear[hidden]{
    display:none !important;
  }
}