@import url('https://fonts.googleapis.com/css?family=Montserrat:400,700&display=swap');

#bottle-listing-form {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 300;
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  max-width: 700px;
  margin: 20px auto;
  box-shadow: 0 2px 16px rgba(83,1,30,0.08);
  color: #130100;
  border: 1.5px solid #53001E;
}
#bottle-listing-form h3 {
  margin-top: 24px;
  margin-bottom: 8px;
  color: #130100;
  font-weight: 700;
}
.field-label {
  display: block;
  margin-bottom: 2px;
  font-size: 15px;
  font-weight: 400;
  color: #53001E;
  letter-spacing: 0.01em;
}
#bottle-listing-form input[type="text"],
#bottle-listing-form input[type="number"] {
  margin: 0 0 12px 0;
  padding: 10px 12px;
  border: 1.5px solid #53001E;
  border-radius: 6px;
  background: #fff;
  color: #130100;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 15px;
  font-weight: 300;
  width: 100%;
  box-sizing: border-box;
}
.input-error {
  border: 1.5px solid #e53935 !important;
  background: #fff0f0 !important;
}
.reserve-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}
.reserve-label {
  font-weight: 400;
  font-size: 15px;
  color: #53001E;
  display: flex;
  align-items: center;
  gap: 6px;
  background: none !important;
}
.reserve-tag {
  background: #DDB726;
  color: #130100;
  border-radius: 4px;
  padding: 2px 10px;
  font-size: 14px;
  font-weight: 500;
  margin-left: 4px;
  letter-spacing: 0.02em;
}
#bottle-listing-form .main-btn {
  display: block;
  width: 100%;
  margin: 12px 0 16px 0;
  padding: 14px 0;
  border: none;
  background: #130100;
  color: #fff;
  border-radius: 8px;
  cursor: pointer;
  font-size: 17px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 400;
  transition: background 0.2s, color 0.2s;
  letter-spacing: 0.03em;
}
#bottle-listing-form .main-btn:hover {
  background: #DDB726;
  color: #130100;
}
#bottle-listing-form .series-entry,
#bottle-listing-form .bottle-entry {
  background: #fff;
  border: 1.5px solid #53001E;
  border-radius: 8px;
  margin-bottom: 14px;
  padding: 12px 8px 8px 8px;
  color: #130100;
  box-shadow: 0 1px 6px rgba(83,1,30,0.04);
  width: 100%;
  max-width: 100%;
}
#bottle-listing-form .series-bottle-entry {
  background: #fff;
  border: 1px solid #DDB726;
  border-radius: 6px;
  margin: 8px 0 8px 0;
  padding: 10px 6px;
  color: #130100;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}
#bottle-listing-form label {
  margin-right: 8px;
  color: #53001E;
  font-weight: 400;
}
.required-star {
  color: #e53935;
  font-size: 15px;
  font-weight: 400;
}
#bottle-listing-message {
  margin-top: 16px;
  color: #DDB726;
  font-weight: 400;
  font-family: 'Montserrat', Arial, sans-serif;
}
#bottle-listing-info.info-box {
  background: #f8f6f2;
  border: 1.5px solid #DDB726;
  color: #130100;
  border-radius: 8px;
  padding: 14px 12px;
  margin: 20px 0 10px 0;
  font-size: 15px;
  font-weight: 400;
}
.total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 14px 0 0 0;
  padding: 10px 0 0 0;
  border-top: 1.5px solid #53001E;
  font-size: 18px;
  font-weight: 400;
}
.total-label {
  color: #53001E;
  font-weight: 400;
}
.total-value {
  color: #DDB726;
  font-weight: 500;
  font-size: 20px;
}
.loading-spinner {
  display: block;
  margin: 24px auto 0 auto;
  border: 6px solid #f3f3f3;
  border-top: 6px solid #DDB726;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Responsive */
@media (max-width: 600px) {
  #bottle-listing-form {
    padding: 6px;
    max-width: 99vw;
  }
  .series-entry, .bottle-entry {
    padding: 7px 2px 4px 2px;
    max-width: 99vw;
  }
  .series-bottle-entry {
    padding: 6px 2px;
    max-width: 99vw;
  }
  .main-btn {
    font-size: 15px;
    padding: 10px 0;
  }
  .info-box {
    font-size: 13px;
    padding: 8px 4px;
  }
  .total-row {
    font-size: 15px;
    padding: 6px 0 0 0;
  }
  .total-value {
    font-size: 16px;
  }
}

.series-header, .bottle-header {
  margin-bottom: 6px;
  margin-top: 2px;
  text-align: left;
}
.series-number, .bottle-number {
  font-size: 13px;
  font-weight: 400;
  color: #53001E;
  background: #f8f6f2;
  border-radius: 4px;
  padding: 2px 8px;
  display: inline-block;
  letter-spacing: 0.01em;
}
.small-btn {
  padding: 7px 0 !important;
  font-size: 14px !important;
  margin: 8px 0 10px 0 !important;
} 