.bss-seat-wrap {
  margin: 18px 0;
  padding: 14px;
  border: 1px solid #d7d7d7;
  border-radius: 8px;
  background: #f8fafc;
}

.bss-hidden-field {
  display: none !important;
}

.bss-seat-title {
  margin: 0 0 8px;
  font-size: 16px;
  line-height: 1.3;
}

.bss-seat-wrap .booking-quantity,
.bss-seat-wrap .booking-people,
.bss-seat-wrap .people-field,
.bss-seat-wrap .form-group {
  margin-bottom: 12px;
}

.bss-pickup-field {
  margin-bottom: 12px;
}

.bss-pickup-field label {
  display: block;
  margin-bottom: 6px;
}

.bss-pickup-field select {
  width: 100%;
  min-height: 36px;
}

.bss-seat-counter {
  margin: 0 0 10px;
  font-size: 14px;
  color: #1f2937;
}

.bss-seat-notice {
  display: none;
  margin: 0 0 10px;
  padding: 8px 10px;
  border-radius: 6px;
  background: #ffe5e5;
  color: #7f1d1d;
  font-size: 13px;
}

.bss-seat-grid {
  display: grid;
  gap: 6px;
}

.bss-seat-row {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: nowrap;
}

.bss-seat-row-label {
  width: 22px;
  text-align: right;
  font-size: 12px;
  color: #475569;
}

.bss-seat-aisle {
  min-width: 42px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  border: 1px dashed #cbd5e1;
  background: #f8fafc;
  color: #94a3b8;
  font-size: 12px;
  flex-shrink: 0;
}

.bss-seat {
  min-width: 42px;
  height: 34px;
  border: 1px solid #94a3b8;
  border-radius: 6px;
  background: #ffffff;
  color: #0f172a;
  font-size: 12px;
  cursor: pointer;
  transition: transform 0.12s ease, background-color 0.12s ease;
}

.bss-seat:hover:not(:disabled) {
  transform: translateY(-1px);
}

.bss-seat.is-selected {
  background: #0f766e;
  border-color: #0f766e;
  color: #ffffff;
}

.bss-seat.is-occupied,
.bss-seat:disabled {
  background: #e5e7eb;
  border-color: #cbd5e1;
  color: #94a3b8;
  cursor: not-allowed;
}

.bss-seat.is-disabled-by-limit {
  opacity: 0.7;
}

.bss-seat-fixed {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 34px;
  border-radius: 6px;
  background: #f1f5f9;
  color: #94a3b8;
  border: 1px dashed #cbd5e1;
}

@media (max-width: 680px) {
  .bss-seat {
    min-width: 34px;
    height: 30px;
    font-size: 11px;
  }

  .bss-seat-fixed {
    min-width: 34px;
    height: 30px;
  }

  .bss-seat-aisle {
    min-width: 34px;
    height: 30px;
  }
}
