.stcdb-drink-wrapper {
  max-width: 700px;
  margin: 2rem auto;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.stcdb-drink-form {
  background: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 12px;
  padding: 1.5rem;
}

.stcdb-drink-field {
  margin-bottom: 1.15rem;
}

.stcdb-drink-field > label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: #023E73;
  font-size: 0.95rem;
}

.stcdb-drink-field select,
.stcdb-drink-field input[type="number"] {
  width: 100%;
  padding: 0.6rem 0.75rem;
  border: 1px solid #ced4da;
  border-radius: 8px;
  font-size: 1rem;
  background: #fff;
  box-sizing: border-box;
}

.stcdb-drink-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* Drinking profile radio buttons */
.stcdb-drink-profiles {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stcdb-drink-profile-option {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 0.85rem;
  border: 2px solid #dee2e6;
  border-radius: 8px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  background: #fff;
}

.stcdb-drink-profile-option:hover {
  border-color: #0077B6;
  background: #f0f9ff;
}

.stcdb-drink-profile-option input[type="radio"] {
  margin: 0;
  transform: scale(1.15);
}

.stcdb-drink-profile-option input[type="radio"]:checked + .stcdb-drink-profile-text {
  color: #0077B6;
  font-weight: 600;
}

.stcdb-drink-profile-option:has(input:checked) {
  border-color: #0077B6;
  background: #f0f9ff;
}

.stcdb-drink-profile-text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.stcdb-drink-profile-label {
  font-weight: 600;
  font-size: 0.95rem;
  color: #333;
}

.stcdb-drink-profile-desc {
  font-size: 0.82rem;
  color: #888;
}

/* Drink preference checkboxes */
.stcdb-drink-pref-checks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.stcdb-drink-pref-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.6rem;
  border: 1px solid #dee2e6;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.9rem;
  background: #fff;
  transition: border-color 0.2s;
}

.stcdb-drink-pref-item:hover {
  border-color: #0077B6;
}

.stcdb-drink-pref-item input[type="checkbox"] {
  margin: 0;
}

/* Calculate button */
.stcdb-drink-btn {
  display: block;
  width: 100%;
  padding: 0.75rem;
  background: #0077B6;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  margin-top: 0.5rem;
  transition: background 0.2s;
}

.stcdb-drink-btn:hover {
  background: #005f8f;
}

/* Results */
.stcdb-drink-results {
  margin-top: 1.5rem;
  border: 2px solid #0077B6;
  border-radius: 12px;
  overflow: hidden;
}

.stcdb-drink-results-header {
  background: #0077B6;
  color: #fff;
  padding: 1rem 1.5rem;
  font-size: 1.1rem;
  font-weight: 700;
}

/* Verdict */
.stcdb-drink-verdict {
  text-align: center;
  padding: 1.5rem;
  background: #f8f9fa;
  border-bottom: 1px solid #dee2e6;
}

.stcdb-drink-verdict-badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.stcdb-drink-verdict--buy {
  background: #d4edda;
  color: #155724;
}

.stcdb-drink-verdict--skip {
  background: #f8d7da;
  color: #721c24;
}

.stcdb-drink-verdict--borderline {
  background: #fff3cd;
  color: #856404;
}

.stcdb-drink-verdict-comment {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
  max-width: 500px;
  margin: 0 auto;
  font-style: italic;
}

/* Cost comparison boxes */
.stcdb-drink-costs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-bottom: 1px solid #dee2e6;
}

.stcdb-drink-cost-box {
  text-align: center;
  padding: 1.25rem;
}

.stcdb-drink-cost-box:first-child {
  border-right: 1px solid #dee2e6;
}

.stcdb-drink-cost-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #666;
  margin-bottom: 0.25rem;
}

.stcdb-drink-cost-value {
  font-size: 2rem;
  font-weight: 800;
  color: #023E73;
}

/* Difference banner */
.stcdb-drink-diff {
  text-align: center;
  padding: 0.75rem;
  font-weight: 700;
  font-size: 0.95rem;
  border-bottom: 1px solid #dee2e6;
}

.stcdb-drink-diff--save {
  background: #d4edda;
  color: #155724;
}

.stcdb-drink-diff--lose {
  background: #f8d7da;
  color: #721c24;
}

/* Daily breakdown */
.stcdb-drink-breakdown {
  padding: 0 1.5rem;
}

.stcdb-drink-breakdown-row {
  display: flex;
  justify-content: space-between;
  padding: 0.65rem 0;
  border-bottom: 1px solid #eee;
  font-size: 0.92rem;
  color: #444;
}

.stcdb-drink-breakdown-row:last-child {
  border-bottom: none;
}

.stcdb-drink-breakdown-row strong {
  color: #023E73;
}

/* Sea vs Port comparison bars */
.stcdb-drink-comparison {
  padding: 1rem 1.5rem;
  border-top: 1px solid #dee2e6;
}

.stcdb-drink-comp-row {
  margin-bottom: 0.75rem;
}

.stcdb-drink-comp-row:last-child {
  margin-bottom: 0;
}

.stcdb-drink-comp-label {
  font-weight: 600;
  font-size: 0.85rem;
  color: #333;
  margin-bottom: 0.25rem;
}

.stcdb-drink-comp-bar-wrap {
  height: 20px;
  background: #e9ecef;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 0.2rem;
}

.stcdb-drink-comp-bar {
  height: 100%;
  border-radius: 10px;
  transition: width 0.5s ease;
}

.stcdb-drink-comp-bar--sea {
  background: #0077B6;
}

.stcdb-drink-comp-bar--port {
  background: #008080;
}

.stcdb-drink-comp-val {
  font-size: 0.78rem;
  color: #888;
}

/* Notes */
.stcdb-drink-notes {
  padding: 1rem 1.5rem;
  background: #fffbf0;
  border-top: 1px solid #f0e6c8;
}

.stcdb-drink-notes p {
  margin: 0.3rem 0;
  font-size: 0.82rem;
  color: #666;
  line-height: 1.4;
}

/* Share */
.stcdb-drink-share-section {
  padding: 1rem 1.5rem;
  text-align: center;
  border-top: 1px solid #eee;
  background: #f8f9fa;
}

.stcdb-drink-share-btn {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: #023E73;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.stcdb-drink-share-btn:hover {
  background: #012b52;
}

/* Responsive */
@media (max-width: 560px) {
  .stcdb-drink-row {
    grid-template-columns: 1fr;
  }

  .stcdb-drink-pref-checks {
    grid-template-columns: repeat(2, 1fr);
  }

  .stcdb-drink-costs {
    grid-template-columns: 1fr;
  }

  .stcdb-drink-cost-box:first-child {
    border-right: none;
    border-bottom: 1px solid #dee2e6;
  }

  .stcdb-drink-cost-value {
    font-size: 1.6rem;
  }

  .stcdb-drink-verdict-badge {
    font-size: 1.2rem;
  }
}
