:root {
  --hel-navy: #0D1B2A;
  --hel-teal: #0D9488;
  --hel-light-teal: #F0FDFA;
  --hel-amber: #F59E0B;
  --hel-white: #ffffff;
  --hel-max-width: 880px;
}
.hel-catalog-wrap {
  max-width: var(--hel-max-width);
  margin: 0 auto;
  font-family: Arial, sans-serif;
}
.hel-bundle-note {
  font-family: Arial, sans-serif;
  font-size: 14px;
  color: #555;
  margin-bottom: 16px;
  font-style: italic;
}
.hel-bundle-accordion details {
  border: 1px solid #e0e0e0;
  margin-bottom: 6px;
  border-radius: 4px;
  overflow: hidden;
}
.hel-bundle-accordion summary {
  background: var(--hel-navy);
  color: var(--hel-white);
  font-family: Arial, sans-serif;
  font-size: 15px;
  font-weight: bold;
  padding: 12px 16px;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  user-select: none;
}
.hel-bundle-accordion summary::-webkit-details-marker { display: none; }
.hel-summary-left {
  display: flex;
  align-items: center;
  gap: 10px;
}
.hel-doc-count {
  background: var(--hel-teal);
  color: var(--hel-white);
  font-size: 12px;
  font-weight: normal;
  padding: 2px 8px;
  border-radius: 12px;
  white-space: nowrap;
}
.hel-chevron {
  font-style: normal;
  display: inline-block;
  transition: transform 0.25s ease;
  font-size: 14px;
  transform: rotate(0deg);
}
details[open] .hel-chevron {
  transform: rotate(90deg);
}
.hel-bundle-accordion .hel-section-content {
  padding: 0;
  background: #fff;
}
.hel-product-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-bottom: 1px solid #f0f0f0;
  font-family: Arial, sans-serif;
}
.hel-product-row:last-child { border-bottom: none; }
.hel-type-badge {
  background: var(--hel-teal);
  color: var(--hel-white);
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 3px;
  white-space: nowrap;
  flex-shrink: 0;
  font-family: Arial, sans-serif;
}
.hel-product-name {
  font-family: Arial, sans-serif;
  font-size: 14px;
  color: var(--hel-navy);
}
.hel-product-name a {
  color: var(--hel-navy);
  text-decoration: none;
}
.hel-product-name a:hover { text-decoration: underline; }
.hel-new-badge {
  background: var(--hel-teal);
  color: var(--hel-white);
  font-size: 10px;
  padding: 1px 6px;
  border-radius: 3px;
  margin-left: 6px;
  font-family: Arial, sans-serif;
  vertical-align: middle;
}
.hel-newly-added-section {
  max-width: var(--hel-max-width);
  margin: 0 auto;
  padding: 20px 0;
  font-family: Arial, sans-serif;
}
.hel-newly-added-section h2 {
  color: var(--hel-navy);
  font-family: Arial, sans-serif;
  margin-bottom: 16px;
}
.hel-newly-added-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 12px;
}
.hel-newly-added-card {
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  padding: 12px 16px;
  background: var(--hel-light-teal);
  font-family: Arial, sans-serif;
}
.hel-newly-added-card a {
  color: var(--hel-navy);
  font-weight: bold;
  text-decoration: none;
  font-size: 14px;
  display: block;
  margin-bottom: 6px;
}
.hel-newly-added-card a:hover { text-decoration: underline; }
.hel-bundle-label {
  font-size: 12px;
  color: #555;
  font-family: Arial, sans-serif;
  margin: 4px 0 0;
}
.hel-also-in-bundles {
  font-family: Arial, sans-serif;
  font-size: 14px;
  color: #444;
  padding: 10px 14px;
  background: var(--hel-light-teal);
  border-left: 3px solid var(--hel-teal);
  margin: 12px 0;
}
.hel-also-in-bundles a { color: var(--hel-teal); text-decoration: none; }
.hel-also-in-bundles a:hover { text-decoration: underline; }