#bcwcat-seating {
  border: 0;
  padding: 0;
  margin: 0;
  background: transparent;
}
.bcwcat-product-section {
  clear: both;
  width: 100%;
  padding-top: 1rem;
}
#bcwcat-seating .bcwcat-stage-label,
.bcwcat-stage-label {
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  text-align: center;
  font-size: 1rem;
}
#bcwcat-seating .bcwcat-grid {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
#bcwcat-seating .bcwcat-row {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-wrap: nowrap;
}
#bcwcat-seating .bcwcat-rowlabel {
  width: 1.8rem;
  font-weight: bold;
}
#bcwcat-seating .bcwcat-seat {
  width: 12px;
  height: 16px;
  flex: 0 0 12px;
  border: 1px solid #999;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 4px;
  transition: background 0.2s ease;
}
#bcwcat-seating .bcwcat-seat:focus {
  outline: 2px solid #0073aa;
}
#bcwcat-seating .bcwcat-seat.bcwcat-premium {
  border-color: #c77d00;
}
#bcwcat-seating .bcwcat-seat.bcwcat-held {
  background: #ffc107;
}
#bcwcat-seating .bcwcat-seat.bcwcat-selected {
  background: #2563eb;
  color: #fff;
}
#bcwcat-seating .bcwcat-seat.bcwcat-sold {
  background: #ccc;
  cursor: not-allowed;
}
#bcwcat-seating .bcwcat-seat.bcwcat-disabled {
  position: relative;
}
#bcwcat-seating .bcwcat-seat.bcwcat-disabled:after {
  content: '\267f';
  position: absolute;
  font-size: 0.75rem;
  color: #444;
}
#bcwcat-seating .bcwcat-seat span {
  pointer-events: none;
}
#bcwcat-seating .bcwcat-aisle {
  width: 47px;
  height: 16px;
  flex: 0 0 47px;
  background: transparent;
  display: inline-block;
}
#bcwcat-seating .bcwcat-legend {
  margin-top: 0.75rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
#bcwcat-seating .bcwcat-legend .bcwcat-seat {
  min-width: 60px;
  padding: 0.2rem 0.4rem;
  border-radius: 4px;
  justify-content: flex-start;
  height: auto;
}
#bcwcat-seating .bcwcat-addcart {
  margin-top: 1rem;
}
#bcwcat-seating .bcwcat-errors {
  margin-top: 0.5rem;
  color: #b32d2e;
  min-height: 1.2em;
}

#bcwcat-seating .bcwcat-grid {
  overflow-x: auto;
  padding-bottom: 0.5rem;
}

@media (max-width: 640px) {
  #bcwcat-seating .bcwcat-seat {
    width: 10px;
    height: 14px;
    flex: 0 0 10px;
    font-size: 10px;
  }
  #bcwcat-seating .bcwcat-aisle {
    width: 30px;
    flex: 0 0 30px;
  }
  #bcwcat-seating .bcwcat-rowlabel {
    width: 2rem;
  }
}
