/* ===== METFI Bundle Suggestion ===== */
.metfi-bundle-section {
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  margin: 16px 0;
  overflow: hidden;
  background: #fff;
}
.metfi-bundle-header {
  padding: 14px 16px 8px;
  background: linear-gradient(135deg, #fff9e6 0%, #fff3cc 100%);
  border-bottom: 1px solid #f0e0a0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.metfi-bundle-icon { font-size: 20px; }
.metfi-bundle-title { font-size: 14px; font-weight: 700; color: #222; }
.metfi-bundle-subtitle { font-size: 11px; color: #888; margin-top: 1px; }
.metfi-bundle-items { padding: 8px 16px; }
.metfi-bundle-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
}
.metfi-bundle-item + .metfi-bundle-item { border-top: 1px solid #f5f5f5; }
.metfi-bundle-check {
  accent-color: #B80C09;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  cursor: pointer;
}
.metfi-bundle-item-img {
  width: 44px;
  height: 44px;
  border-radius: 6px;
  overflow: hidden;
  background: #f5f5f5;
  flex-shrink: 0;
}
.metfi-bundle-item-img img { width: 100%; height: 100%; object-fit: contain; }
.metfi-bundle-item-info { flex: 1; min-width: 0; }
.metfi-bundle-item-name {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: #222;
  line-height: 1.3;
  text-decoration: none;
}
a.metfi-bundle-item-name:hover { color: #B80C09; }
.metfi-bundle-badge {
  display: inline-block;
  background: #eee;
  padding: 1px 6px;
  border-radius: 3px;
  font-size: 9px;
  color: #666;
  margin-left: 4px;
  vertical-align: middle;
}
.metfi-bundle-item-price {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #B80C09;
  margin-top: 2px;
}
.metfi-bundle-separator {
  text-align: center;
  color: #ccc;
  font-size: 16px;
  font-weight: 700;
  padding: 2px 0;
}
.metfi-bundle-footer {
  padding: 10px 16px;
  background: #fafafa;
  border-top: 1px solid #eee;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.metfi-bundle-pricing-label { font-size: 10px; color: #888; }
.metfi-bundle-pricing-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 2px;
}
.metfi-bundle-old-price { font-size: 12px; color: #999; text-decoration: line-through; }
.metfi-bundle-new-price { font-size: 16px; font-weight: 700; color: #B80C09; }
.metfi-bundle-discount-badge {
  background: #2ecc71;
  color: #fff;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 600;
}
.metfi-bundle-add-btn {
  background: #B80C09;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px 16px;
  font-weight: 700;
  font-size: 12px;
  cursor: pointer;
  white-space: nowrap;
  text-align: center;
  line-height: 1.3;
  transition: background .2s;
  flex-shrink: 0;
}
.metfi-bundle-add-btn:hover { background: #8B0000; }
.metfi-bundle-add-btn:disabled { background: #ccc; cursor: not-allowed; }
.metfi-bundle-add-btn small { font-weight: 400; font-size: 10px; }
.metfi-bundle-item.unchecked .metfi-bundle-item-img,
.metfi-bundle-item.unchecked .metfi-bundle-item-info { opacity: .4; }
