/* Mobile Exhibitor Panel - Bottom Sheet */

.exhibitor-panel-mobile {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-radius: 16px 16px 0 0;
  box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.2);
  z-index: 10000;
  max-height: 85vh;
  transform: translateY(100%);
  transition: transform 0.3s ease-out;
  flex-direction: column;
  display: none;
}

@media (max-width: 991px) {
  .exhibitor-panel-mobile {
    display: flex;
  }
}

.exhibitor-panel-mobile.open {
  transform: translateY(0);
}

/* Header */
.exhibitor-panel-header {
  padding: 16px 20px 12px;
  border-bottom: 1px solid #e0e0e0;
  flex-shrink: 0;
}

.exhibitor-panel-handle {
  width: 40px;
  height: 4px;
  background: #ccc;
  border-radius: 2px;
  margin: 0 auto 12px;
}

.exhibitor-panel-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #333;
  margin: 0 0 12px;
}

/* Controls */
.exhibitor-controls {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.exhibitor-search-wrapper,
.exhibitor-filter-wrapper,
.exhibitor-map-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
}

.exhibitor-search-wrapper input,
.exhibitor-filter-wrapper select,
.exhibitor-map-wrapper select {
  flex: 1;
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1.6rem;
  background: #f8f8f8;
}

.exhibitor-search-wrapper input:focus,
.exhibitor-filter-wrapper select:focus,
.exhibitor-map-wrapper select:focus {
  outline: none;
  border-color: #48A648;
  background: #fff;
}

/* Stats */
.exhibitor-stats {
  display: flex;
  justify-content: space-around;
  padding: 12px 20px;
  background: #f8f8f8;
  border-bottom: 1px solid #e0e0e0;
  flex-shrink: 0;
}

.exhibitor-stat {
  text-align: center;
}

.exhibitor-stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: #48A648;
}

.exhibitor-stat-label {
  font-size: 0.875rem;
  color: #666;
  margin-top: 2px;
}

/* List Container */
.exhibitor-list-container {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.exhibitor-list-mobile {
  list-style: none;
  margin: 0;
  padding: 0;
}

.exhibitor-list-mobile li {
  padding: 16px 20px;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  transition: background-color 0.2s;
  min-height: 44px;
}

.exhibitor-list-mobile li:active {
  background-color: #f8f8f8;
}

.exhibitor-list-mobile li.selected {
  background-color: #e8f5e9;
  border-left: 4px solid #48A648;
}

.exhibitor-item-name {
  font-size: 1.6rem;
  font-weight: 600;
  color: #333;
}

.exhibitor-item-company {
  font-size: 1.5rem;
  color: #666;
}

.exhibitor-item-commodity {
  font-size: 1.4rem;
  color: #999;
}

/* Footer */
.exhibitor-panel-footer {
  padding: 16px 20px;
  border-top: 1px solid #e0e0e0;
  background: #fff;
  flex-shrink: 0;
  display: flex;
  gap: 12px;
}

.exhibitor-panel-footer button {
  flex: 1;
  padding: 14px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s;
}

.exhibitor-apply-btn {
  background: #48A648;
  color: #fff;
}

.exhibitor-apply-btn:active {
  opacity: 0.8;
}

.exhibitor-close-btn {
  background: #f0f0f0;
  color: #666;
}

.exhibitor-close-btn:active {
  background: #e0e0e0;
}

/* Empty State */
.exhibitor-empty {
  padding: 40px 20px;
  text-align: center;
  color: #999;
}

.exhibitor-empty-icon {
  font-size: 3rem;
  margin-bottom: 12px;
}

.exhibitor-empty-text {
  font-size: 1rem;
}

/* Desktop Hide */
@media (min-width: 993px) {
  .mobile-exhibitors-button {
    display: none !important;
  }
  .exhibitor-panel-mobile {
    display: none !important;
  }
}
