/* ── Accordion (tbs-acc) ────────────────────────────────────── */
.tbs-acc {
  width: 100%;
}

.tbs-acc-trigger {
  all: unset;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  cursor: pointer;
  gap: 1rem;
  padding-bottom: 0.5rem;
}
.tbs-acc-trigger:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
  border-radius: 4px;
}
.tbs-acc-header {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  flex: 1;
  min-width: 0;
}
.tbs-acc-chevron {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  opacity: 0.4;
  transition:
    transform 0.32s ease,
    opacity 0.2s;
  margin-top: 0.15rem;
  color: #b8501e;
}
.tbs-acc-trigger[aria-expanded="true"] .tbs-acc-chevron {
  transform: rotate(180deg);
  opacity: 0.7;
}
.tbs-acc-hint {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.75;
  font-weight: 500;
  transition:
    opacity 0.2s,
    max-height 0.2s;
  max-height: 2rem;
  overflow: hidden;
}
.tbs-acc-trigger[aria-expanded="true"] .tbs-acc-hint {
  opacity: 0;
  max-height: 0;
}
/* smooth height animation via CSS grid trick */
.tbs-acc-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}
.tbs-acc-panel.is-open {
  grid-template-rows: 1fr;
}
.tbs-acc-panel-inner {
  overflow: hidden;
}

/* Clutter-free: duplicate marketing block only */
#reasons-qr-ean {
  display: none !important;
}
