/* Baggage reference + pack-weight simulator */
.bag-hero {
  background: linear-gradient(135deg, #0f766e 0%, #115e59 35%, #134e4a 55%, #1e293b 100%);
}
.bag-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.bag-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px -12px rgba(15, 118, 110, 0.35);
}
.bag-tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.bag-sim-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.75rem;
  align-items: center;
  padding: 0.65rem 0.85rem;
  border-radius: 1rem;
  border: 1px solid rgb(231 229 228);
  background: linear-gradient(180deg, #fff 0%, #fafaf9 100%);
  transition: border-color 0.15s, background 0.15s;
}
.bag-sim-item:hover {
  border-color: rgb(45 212 191 / 0.5);
}
.bag-sim-item.is-active {
  border-color: rgb(20 184 166);
  background: rgb(240 253 250);
}
.bag-qty {
  display: inline-flex;
  align-items: center;
  border-radius: 9999px;
  border: 1px solid rgb(214 211 209);
  overflow: hidden;
  background: #fff;
}
.bag-qty button {
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: rgb(68 64 60);
  border: none;
  background: transparent;
  cursor: pointer;
  line-height: 1;
}
.bag-qty button:hover {
  background: rgb(245 245 244);
}
.bag-qty input {
  width: 2.5rem;
  text-align: center;
  border: none;
  font-weight: 700;
  font-size: 0.95rem;
  background: transparent;
  -moz-appearance: textfield;
}
.bag-qty input::-webkit-outer-spin-button,
.bag-qty input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.bag-gauge-wrap {
  position: relative;
  width: min(280px, 85vw);
  aspect-ratio: 1;
  margin: 0 auto;
}
.bag-gauge-ring {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: conic-gradient(var(--gauge-gradient));
  mask: radial-gradient(farthest-side, transparent calc(100% - 18px), #000 calc(100% - 18px + 1px));
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 18px), #000 calc(100% - 18px + 1px));
  transition: background 0.35s ease;
}
.bag-gauge-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.bag-gauge-center-inner {
  width: 58%;
  height: 58%;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 4px 24px rgba(15, 118, 110, 0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.5rem;
}
.bag-bar-compare {
  height: 12px;
  border-radius: 9999px;
  background: rgb(231 229 228);
  overflow: hidden;
  margin-top: 0.5rem;
}
.bag-bar-fill {
  height: 100%;
  border-radius: 9999px;
  transition: width 0.4s ease, background 0.3s ease;
}
.bag-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.75rem;
  justify-content: center;
  margin-top: 1rem;
  font-size: 0.7rem;
  color: rgb(87 83 78);
}
.bag-legend span {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}
.bag-legend i {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 2px;
  display: inline-block;
}
@media print {
  .bag-no-print {
    display: none !important;
  }
}
