.booking-container {
  max-width: 1140px;
  margin: 0 auto;
  background: white;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin-top: 60px;
}

.booking-header {
  background: linear-gradient(135deg, #050d24 0%, #050d24f1 100%);
  color: white;
  padding: 40px;
  text-align: center;
}

.booking-header h1 {
  color: #fff;
  text-align: center;
  text-shadow: 0px 0px 6px #000;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 700;
  line-height: 2.25rem;
  letter-spacing: 0.35rem;
  text-transform: uppercase;
  padding-bottom: 12px;
}

.booking-header p {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  opacity: 0.8;
  font-weight: 400;
}

.booking-content {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 0;
  min-height: 800px;
}

.main-section {
  padding: 40px;
}

/* Galeria Customizada */
.gallery-section {
  margin-bottom: 40px;
}

.custom-gallery {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  background: #f8f9fa;
}

.gallery-container {
  position: relative;
  height: 400px;
  overflow: hidden;
  background: #f8f9fa;
}

.gallery-main-image {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
}

.gallery-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Desktop: ocupa 100% do container */
  transition: opacity 0.3s ease;
}

/* Mobile: mostrar imagem inteira */
@media (max-width: 768px) {
  .gallery-main-image img {
    object-fit: contain; /* Mobile: mostra imagem inteira */
  }

  .gallery-main-image {
    background: #000; /* Fundo preto para mobile */
  }
}

/* Desktop: sem fundo preto */
@media (min-width: 769px) {
  .gallery-main-image {
    background: #f8f9fa; /* Fundo claro para desktop */
  }
}

/* Botão de tela cheia */
.gallery-fullscreen {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.3s ease;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-fullscreen:hover {
  background: rgba(0, 0, 0, 0.9);
  transform: scale(1.1);
}

/* Modal de tela cheia */
.fullscreen-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

.fullscreen-modal.active {
  display: flex;
}

.fullscreen-image {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
}

.fullscreen-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  color: white;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  z-index: 10000;
}

.fullscreen-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fullscreen-prev {
  left: 20px;
}

.fullscreen-next {
  right: 20px;
}

.gallery-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: #6c757d;
  text-align: center;
}

.gallery-placeholder i {
  font-size: 4rem;
  margin-bottom: 20px;
  opacity: 0.5;
}

.gallery-placeholder p {
  font-size: 1.2rem;
  font-weight: 500;
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.7);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  z-index: 10;
}

.gallery-nav:hover {
  background: rgba(0, 0, 0, 0.9);
  transform: translateY(-50%) scale(1.1);
}

.gallery-prev {
  left: 15px;
}

.gallery-next {
  right: 15px;
}

.gallery-thumbnails {
  display: flex;
  gap: 10px;
  padding: 15px;
  background: white;
  overflow-x: auto;
  scrollbar-width: thin;
}

.gallery-thumbnails::-webkit-scrollbar {
  height: 4px;
}

.gallery-thumbnails::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.gallery-thumbnails::-webkit-scrollbar-thumb {
  background: #667eea;
  border-radius: 2px;
}

.gallery-thumbnail {
  flex-shrink: 0;
  width: 80px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.gallery-thumbnail:hover {
  border-color: #667eea;
  transform: scale(1.05);
}

.gallery-thumbnail.active {
  border-color: #667eea;
  box-shadow: 0 0 0 2px rgba(102, 126, 234, 0.3);
}

.gallery-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-counter {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 0.9rem;
  font-weight: 500;
  display: none !important;
}

/* Formulário */
.booking-form {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-group label {
  font-weight: 600;
  color: #2c3e50;
  font-size: 0.95rem;
}

/* Dropdown Customizado */
.custom-dropdown {
  position: relative;
}

.dropdown-selected {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  border: 2px solid #e1e8ed;
  border-radius: 10px;
  background: white;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.dropdown-selected:hover {
  border-color: #667eea;
}

.dropdown-selected.active {
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.dropdown-options {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 2px solid #e1e8ed;
  border-top: none;
  border-radius: 0 0 10px 10px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
}

.dropdown-options.show {
  max-height: 300px;
  border-color: #667eea;
  opacity: 1;
  visibility: visible;
}

.dropdown-option {
  padding: 15px 20px;
  cursor: pointer;
  transition: background 0.2s ease;
  border-bottom: 1px solid #f8f9fa;
}

.dropdown-option:hover {
  background: #f8f9fa;
}

.dropdown-option:last-child {
  border-bottom: none;
}

.dropdown-option span {
  display: block;
  font-weight: 500;
  color: #2c3e50;
}

.dropdown-option small {
  color: #7f8c8d;
  font-size: 0.85rem;
}

/* Dropdown Passageiros */
.passengers-options {
  padding: 20px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.passengers-options.show {
  max-height: 400px;
  opacity: 1;
  visibility: visible;
}

.passenger-type {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid #f8f9fa;
}

.passenger-type:last-child {
  border-bottom: none;
}

.passenger-info span {
  display: block;
  font-weight: 500;
  color: #2c3e50;
}

.passenger-info small {
  color: #7f8c8d;
  font-size: 0.85rem;
}

.passenger-controls {
  display: flex;
  align-items: center;
  gap: 15px;
}

.passenger-btn {
  width: 35px;
  height: 35px;
  border: 2px solid #e1e8ed;
  background: white;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 600;
  color: #667eea;
  transition: all 0.3s ease;
}

.passenger-btn:hover {
  background: #667eea;
  color: white;
  border-color: #667eea;
}

.passenger-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.passenger-count {
  font-weight: 600;
  color: #2c3e50;
  min-width: 20px;
  text-align: center;
}

/* Calendário Personalizado */
.custom-calendar {
  position: relative;
}

.calendar-input {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  border: 2px solid #e1e8ed;
  border-radius: 10px;
  background: white;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.calendar-input:hover {
  border-color: #667eea;
}

.calendar-input.active {
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.calendar-popup {
  position: fixed;
  background: white;
  border: 2px solid #667eea;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 9999;
  min-width: 320px;
  max-width: 400px;
}

.calendar-popup.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.calendar-popup.position-above {
  transform: translateY(10px);
}

.calendar-popup.position-above.show {
  transform: translateY(0);
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid #f8f9fa;
}

.calendar-nav {
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  border-radius: 50%;
  transition: background 0.2s ease;
  color: #667eea;
}

.calendar-nav:hover {
  background: #f8f9fa;
}

.calendar-month {
  font-weight: 600;
  color: #2c3e50;
  font-size: 1.1rem;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1px;
  padding: 20px;
}

.calendar-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.2s ease;
  font-weight: 500;
}

.calendar-day:hover {
  background: #f8f9fa;
}

.calendar-day.disabled {
  color: #bdc3c7;
  cursor: not-allowed;
}

.calendar-day.disabled:hover {
  background: none;
}

.calendar-day.selected {
  background: #667eea;
  color: white;
}

.calendar-day.today {
  background: #e8f2ff;
  color: #667eea;
  font-weight: 600;
}

/* Transfer Section */
.transfer-section {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.transfer-option {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  border: 2px solid #e1e8ed;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.transfer-option:hover {
  border-color: #667eea;
  background: #f8f9fa;
}

.transfer-option input[type='checkbox'] {
  display: none;
}

.checkmark {
  width: 20px;
  height: 20px;
  border: 2px solid #e1e8ed;
  border-radius: 4px;
  position: relative;
  transition: all 0.3s ease;
}

.transfer-option input[type='checkbox']:checked + .checkmark {
  background: #667eea;
  border-color: #667eea;
}

.transfer-option input[type='checkbox']:checked + .checkmark::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-weight: bold;
  font-size: 0.8rem;
}

.transfer-info span {
  display: block;
  font-weight: 500;
  color: #2c3e50;
}

.transfer-info small {
  color: #7f8c8d;
  font-size: 0.85rem;
}

.transfer-details {
  margin-top: 15px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 10px;
  border: 1px solid #e1e8ed;
}

.transfer-location {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.location-option {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px;
  border: 1px solid #e1e8ed;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  background: white;
}

.location-option:hover {
  border-color: #667eea;
  background: #f8f9fa;
}

.location-option input[type='radio'] {
  display: none;
}

.radio-mark {
  width: 18px;
  height: 18px;
  border: 2px solid #e1e8ed;
  border-radius: 50%;
  position: relative;
  transition: all 0.3s ease;
}

.location-option input[type='radio']:checked + .radio-mark {
  border-color: #667eea;
}

.location-option input[type='radio']:checked + .radio-mark::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background: #667eea;
  border-radius: 50%;
}

.location-info span {
  display: block;
  font-weight: 500;
  color: #2c3e50;
  margin-bottom: 2px;
}

.free-badge {
  background: #27ae60;
  color: white;
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
}

.quote-badge {
  background: #f39c12;
  color: white;
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
}

.hotel-input {
  margin-top: 18px;
}

.hotel-input .form-group {
  margin-bottom: 16px;
}

.hotel-input label {
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 6px;
  display: block;
}

.hotel-input .hotel-field {
  padding: 12px 14px;
  font-size: 1rem;
  border-radius: 8px;
  border: 1.5px solid #d1d5db;
  background: #f8fafc;
  margin-top: 2px;
  transition: border 0.2s;
}

.hotel-input .hotel-field:focus {
  border-color: #667eea;
  background: #fff;
  outline: none;
}

.input-help {
  display: block;
  margin-top: 16px;
  margin-left: 2px;
  color: #7f8c8d;
  font-size: 0.8rem;
}

/* Detalhes do Tour */
.tour-details {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 15px;
  border: 2px solid #e1e8ed;
}

.tour-details h3 {
  color: #2c3e50;
  margin-bottom: 20px;
  font-size: 1.3rem;
}

.details-content p {
  color: #7f8c8d;
  line-height: 1.6;
  margin-bottom: 15px;
}

/* Melhorar o estilo da descrição para textos mais longos */
.detail-item {
  display: flex;
  align-items: start;
  gap: 10px;
  margin-bottom: 15px;
  color: #2c3e50;
}

.detail-item i {
  color: #667eea;
  width: 20px;
  min-width: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.detail-item span {
  flex: 1;
}

.detail-item strong {
  display: block;
  margin-bottom: 4px;
}

/* Painel Lateral - Resumo */
.summary-panel {
  background: #f8f9fa;
  border-left: 1px solid #e1e8ed;
  display: flex;
  flex-direction: column;
}

.summary-header {
  padding: 30px;
  border-bottom: 1px solid #e1e8ed;
  background: white;
}

.summary-header h3 {
  color: #2c3e50;
  font-size: 1.3rem;
}

.summary-header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

.summary-content {
  flex: 1;
  padding: 30px;
  overflow-y: auto;
}

.summary-empty {
  text-align: center;
  color: #7f8c8d;
  padding: 40px 0;
}

.summary-empty i {
  font-size: 3rem;
  margin-bottom: 20px;
  opacity: 0.5;
}

.summary-empty p {
  font-size: 1.2rem;
  font-weight: 500;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid #e1e8ed;
}

.summary-item:last-child {
  border-bottom: none;
}

.summary-item-info span {
  display: block;
  color: #2c3e50;
  font-weight: 500;
}

.summary-item-info small {
  color: #7f8c8d;
  font-size: 0.85rem;
}

.summary-item-price {
  font-weight: 600;
  color: #27ae60;
}

.currency-btn {
  background: #667eea;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  min-width: 70px;
}

.currency-btn:hover {
  background: #5a6ecc;
  transform: translateY(-1px);
}

.currency-btn i {
  font-size: 0.75rem;
}

.summary-footer {
  padding: 30px;
  border-top: 1px solid #e1e8ed;
  background: white;
}

.total-section {
  margin-bottom: 20px;
}

.subtotal,
.total {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.subtotal {
  color: #7f8c8d;
}

.total {
  font-size: 1.2rem;
  font-weight: 700;
  color: #2c3e50;
  padding-top: 10px;
  border-top: 2px solid #e1e8ed;
}

/* Melhorar responsividade do cupom */
.coupon-container {
  margin-top: 20px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.coupon-container h4 {
  margin-bottom: 15px;
  color: #2c3e50;
  font-size: 1rem;
}

.coupon-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding-bottom: 40px;
}

.coupon-input {
  flex: 1;
  min-width: 150px;
  padding: 12px 15px;
  border: 2px solid #e1e8ed;
  border-radius: 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.coupon-input:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.coupon-button {
  padding: 12px 20px;
  background: #667eea;
  color: white;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  min-width: 80px;
}

.coupon-button:hover {
  background: #5a6ecc;
}

.buy-button {
  width: 100%;
  padding: 18px;
  background: linear-gradient(135deg, #050d24 0%, #050d24dc 100%);
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
}

.buy-button:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(5, 13, 36, 0.3);
}

.buy-button:disabled {
  background: #bdc3c7;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.discount {
  color: #27ae60;
  font-weight: 600;
}

.discount-applied {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px dashed #e1e8ed;
  padding-bottom: 12px;
}

/* Responsividade */
@media (max-width: 1200px) {
  .booking-content {
    grid-template-columns: 1fr 350px;
  }
  .booking-container {
    margin-top: 0;
    border-radius: 0;
  }
  .footer.reserva {
    margin-top: 0;
  }
}

@media (max-width: 1120px) {
  .form-row {
    gap: 20px;
  }
}

@media (max-width: 968px) {
  .booking-content {
    grid-template-columns: 1fr;
  }

  .summary-panel {
    border-left: none;
    border-top: 1px solid #e1e8ed;
  }
}

@media (max-width: 768px) {
  .booking-header {
    padding: 30px 20px;
  }

  .booking-header h1 {
    font-size: 1.5rem;
  }

  .main-section {
    padding: 20px;
  }

  .gallery-container {
    height: 320px;
  }

  .gallery-nav {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .gallery-prev {
    left: 10px;
  }

  .gallery-next {
    right: 10px;
  }

  .gallery-thumbnail {
    width: 60px;
    height: 45px;
  }

  .coupon-form {
    flex-direction: column;
    gap: 15px;
  }

  .coupon-input {
    min-width: 100%;
  }

  .coupon-button {
    width: 100%;
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .summary-header-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .currency-btn {
    align-self: flex-end;
    font-size: 0.8rem;
    padding: 6px 10px;
  }

  .booking-header h1 {
    font-size: 1.5rem;
  }

  .booking-header p {
    font-size: 1rem;
  }

  .main-section {
    padding: 15px;
  }

  .gallery-container {
    height: 280px;
  }

  .gallery-nav {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
  }

  .gallery-thumbnail {
    width: 50px;
    height: 38px;
  }

  .summary-content,
  .summary-footer,
  .summary-header {
    padding: 15px;
  }
}

.gallery-section.reserva {
  padding-top: 0;
}

.gallery-section.reserva .gallery-container {
  padding: 0;
}

/* Melhorias na galeria */
.gallery-main-image {
  position: relative;
}

.gallery-main-image img {
  display: block;
  opacity: 1;
}

.gallery-main-image img.loading {
  opacity: 0.5;
}

/* Animação suave para troca de imagens */
.gallery-main-image img {
  transition: opacity 0.3s ease-in-out;
}

/* Melhor tratamento de erro */
.gallery-error {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: #e74c3c;
  text-align: center;
  background: #fff5f5;
}

.gallery-error i {
  font-size: 3rem;
  margin-bottom: 15px;
  opacity: 0.7;
}

.gallery-error p {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 5px;
}

.gallery-error small {
  font-size: 0.9rem;
  opacity: 0.8;
  word-break: break-all;
}

.summary-warning {
  display: flex;
  gap: 8px;
  margin-top: 16px;
  align-items: center;
  opacity: 0.8;
  font-size: 0.875rem;
  color: #7f8c8d;
}
.summary-warning i {
  display: none;
}

.transfer-qty-control.right {
  margin-left: auto;
  margin-right: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.transfer-btn {
  width: 36px;
  height: 36px;
  background: #f5f5f5;
  border: 1.5px solid #d1d5db;
  border-radius: 8px;
  font-size: 1.3rem;
  color: #3b4256;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, border 0.2s, color 0.2s;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.transfer-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.transfer-btn:hover:not(:disabled) {
  background: #e0e7ef;
  border-color: #a0aec0;
  color: #1a202c;
}

#transfer-qty {
  min-width: 28px;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 600;
  color: #2d3748;
  margin: 0 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}
