/* Path: wp-content/plugins/woo-tour-manager/assets/css/wtt-modals.css */
.wtt-modal-root { position: fixed; inset: 0; z-index: 99999; }
.wtt-modal-root[hidden] { display: none !important; }

.wtt-modal-overlay { position: absolute; inset: 0; background: rgba(0,0,0,.5); }

.wtt-modal-wrap { position: relative; display: flex; align-items: center; justify-content: center; min-height: 100%; padding: 24px; }

.wtt-modal { background: #fff; border-radius: 10px; max-width: 960px; width: 100%; box-shadow: 0 10px 30px rgba(0,0,0,.2); overflow: hidden; }
.wtt-modal__header { display: flex; align-items: center; justify-content: space-between; padding: 14px 18px; border-bottom: 1px solid #eee; }
.wtt-modal__title { margin: 0; font-size: 20px; }
.wtt-modal__close { background: transparent; border: 0; font-size: 24px; line-height: 1; cursor: pointer; }

.wtt-modal__tabs { display: flex; gap: 8px; padding: 8px 12px; border-bottom: 1px solid #eee; }
.wtt-tab { background: #f7f7f7; border: 1px solid #eee; padding: 8px 12px; border-radius: 6px; cursor: pointer; }
.wtt-tab.is-active { background: #fff; border-color: #ddd; }

.wtt-modal__body { padding: 16px 18px; }
.wtt-tabpane { display: none; }
.wtt-tabpane.is-active { display: block; }

.wtt-accordion { border: 1px solid #e6e6e6; border-radius: 8px; overflow: hidden; }
.wtt-acc-item + .wtt-acc-item { border-top: 1px solid #e6e6e6; }
.wtt-acc-toggle { width: 100%; text-align: left; padding: 12px 14px; background: #fafafa; border: 0; cursor: pointer; font-weight: 600; display: flex; align-items: center; justify-content: space-between; }
.wtt-acc-panel { padding: 12px 14px; background: #fff; }
.wtt-acc-icon { margin-left: 8px; opacity: .6; }
.wtt-empty { color: #777; }

.wtt-gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 10px; }
.wtt-gallery-thumb { width: 100%; height: auto; display: block; border-radius: 6px; }

.wtt-location-section__content li {
  list-style-type: disclosure-closed !important;
  list-style-position: outside !important;
  margin-left: 15px;
}

/* Prevent page scroll when lightbox is open (lightbox toggles this class) */
.wtt-lb-locked { overflow: hidden; }
