/* GM Upsell Checkbox - CSS moderno e responsivo */
.gm-upsell-checkbox-wrap {
  margin: 32px 0 0 0;
  padding: 24px 16px;
  background: #f7f7fa;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.gm-upsell-title {
  font-size: 1.25rem;
  margin-bottom: 16px;
  color: #2d3748;
  text-align: center;
  font-weight: 600;
}
.gm-upsell-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: flex-start;
  align-items: stretch;
  margin-bottom: 14px;
}
.gm-upsell-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 1px 6px rgba(0,0,0,0.03);
  padding: 8px 8px;
  min-width: 0;
  max-width: 100%;
  cursor: pointer;
  transition: box-shadow 0.2s;
  border: 1.5px solid transparent;
  font-size: 0.98em;
}
.gm-upsell-item input[type="checkbox"] {
  margin-right: 12px;
  margin-bottom: 0;
  accent-color: #37B7FF;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.gm-upsell-item:hover, .gm-upsell-item input[type="checkbox"]:checked ~ .gm-upsell-img {
  box-shadow: 0 2px 12px rgba(55,183,255,0.10);
  border-color: #37B7FF;
}
.gm-upsell-img {
  width: 46px;
  height: 46px;
  margin: 0 12px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.gm-upsell-img img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 6px;
}
.gm-upsell-name {
  font-size: 0.97em;
  font-weight: 500;
  color: #222;
  margin-bottom: 0;
  text-align: left;
  margin-right: 12px;
}
.gm-upsell-price {
  font-size: 0.97em;
  color: #37B7FF;
  font-weight: 600;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: 8px;
}
.gm-upsell-add-selected {
  display: block;
  width: 100%;
  max-width: 340px;
  margin: 0 auto 10px auto;
  padding: 12px 0;
  background: linear-gradient(90deg,#37B7FF 0%,#37B7FF 100%);
  color: #fff;
  font-size: 1.15rem;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(55,183,255,0.09);
  transition: background 0.2s;
}
.gm-upsell-add-selected:active {
  background: #37B7FF;
}
.gm-upsell-feedback {
  text-align: center;
  min-height: 22px;
  font-size: 1rem;
  color: #37B7FF;
  font-weight: 500;
}
@media (max-width: 600px) {
  .gm-upsell-list {
    gap: 6px;
  }
  .gm-upsell-item {
    padding: 6px 2px;
    font-size: 0.93em;
  }
  .gm-upsell-img {
    width: 36px;
    height: 36px;
    margin-right: 8px;
  }
  .gm-upsell-add-selected {
    font-size: 0.99em;
    padding: 8px 0;
  }
}
