.eoc {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  font-family: inherit;
}

.eoc__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.eoc__title {
  font-size: 20px;
  font-weight: 700;
}

.eoc__controls--bottom {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 6px !important;
}

/* BEAST Grundfarbe für alle Texte im Carousel */
.eoc,
.eoc * {
  color: #522033;
}


/* Ausgegraute / sekundäre Texte NICHT einfärben */
.eoc__feature.is-excluded,
.eoc__feature.is-excluded * {
  color: rgba(120, 130, 140, 0.85) !important;
}

.eoc__feature.is-excluded .eoc__check {
  color: rgba(140, 150, 160, 0.95) !important;
}

/* Disabled Buttons */
.eoc__btn.is-disabled {
  color: #fff !important; /* Button-Icon bleibt weiß */
}

/* Info-Icon bleibt neutral */
.eoc .eoc__info {
  color: rgba(120, 130, 140, 0.9) !important;
}

/* kleinere Kreise */
.eoc__btn {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.12);
  background: #7E0E33 !important;

  cursor: pointer;

  font-size: 24px !important;
  line-height: 24px !important;

  padding: 0 !important;
  min-width: 34px !important;
  min-height: 34px !important;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  color: #fff !important;
}


.eoc__btn:hover {
  box-shadow: 0 10px 20px rgba(0,0,0,.08);
  transform: translateY(-1px);
  transition: transform 160ms ease, box-shadow 160ms ease;
}


.eoc__viewport {
  overflow: hidden;
  border-radius: 18px;
}

.eoc__track {
  display: flex;
  gap: 16px;
  transition: transform 300ms ease;
  will-change: transform;
  padding: 20px 6px 0 6px; /* unten 0 */
}

.eoc__card {
  flex: 0 0 calc((100% - 32px) / 3); /* 3 Karten, 2 Gaps à 16px = 32px */
  width: auto;
  background: #fff;
  border: 1px solid rgba(0,0,0,.10);
  border-radius: 18px;
  padding: 30px 22px 22px 22px; /* oben größer */
  box-shadow: 0 10px 25px rgba(0,0,0,.06);
	position: relative; /* wichtig für absolute badge */
}

.eoc__cardTop {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.eoc__cardTitle {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 6px;
}

.eoc__cardSubtitle {
  font-size: 14px;
  font-weight: 600;
  opacity: .8;
  margin-bottom: 8px;
}

.eoc__cardDesc {
  font-size: 13px;
  opacity: .75;
  line-height: 1.35;
}


.eoc__badge {
  position: absolute;
  top: -18px;              /* sitzt über der Card */
  left: 75%;
  transform: translateX(-50%);

  font-size: 12px;
  padding: 6px 14px;
  border-radius: 999px;
  font-weight: 800;
  white-space: nowrap;

  background: #7E0E33;
  color: #fff;

  box-shadow: 0 6px 22px rgba(126, 14, 51, 0.22);
  z-index: 10;
}

.eoc__priceRow {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-top: 14px;
  margin-bottom: 12px;
}

.eoc__pricePrefix,
.eoc__priceSuffix {
  font-size: 13px;
  opacity: .75;
}

.eoc__price {
  font-size: 26px;
  font-weight: 900;
}

.eoc__cta {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;

  padding: 8px 8px;
	font-size: 14px !important;
  border-radius: 999px;
  font-weight: 800;

  background: linear-gradient(90deg, #7a1d33, #3b2149);
  color: #fff !important;

  margin-bottom: 14px;

  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
  will-change: transform;
}

.eoc__cta:hover,
.eoc__cta:focus,
.eoc__cta:active {
  color: #fff !important;
  text-decoration: none;

  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0,0,0,.14);
  filter: brightness(1.03);
}

.eoc__features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.eoc__feature {
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: center;
  gap: 10px;
  font-size: 13px;
}

.eoc__check {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 900;
}

.eoc__feature.is-included .eoc__check {
  background: rgba(70, 160, 90, .14);
}

.eoc__feature.is-excluded {
  opacity: 1;
}

.eoc__feature.is-excluded .eoc__featureText {
  color: rgba(120, 130, 140, 0.85);
}

.eoc__feature.is-excluded .eoc__check {
  color: rgba(140, 150, 160, 0.95);
}

/* Tooltip Box */
.eoc__tooltip {
  position: fixed;
  z-index: 99999;

  max-width: 260px;
  background: #522033;
  color: #fff;

  padding: 10px 12px;
  border-radius: 12px;

  font-size: 12px;
  line-height: 1.3;

  box-shadow: 0 12px 30px rgba(0,0,0,.25);

  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);

  pointer-events: none;

  transition:
    opacity 140ms ease,
    transform 140ms ease,
    visibility 0s linear 140ms;
}

.eoc__tooltip.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition-delay: 0s;
}

.eoc__check {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
}

/* Included (grüner Kreis) */
.eoc__feature.is-included .eoc__check {
  background: rgba(70, 160, 90, .14);
  color: rgba(70, 160, 90, 1);
}

/* Excluded: X ebenfalls im Kreis (hellgrau) */
.eoc__feature.is-excluded .eoc__check {
  background: rgba(150, 160, 170, 0.18);
  color: rgba(140, 150, 160, 0.95);
}

.eoc__checkIcon,
.eoc__xIcon {
  width: 12px;
  height: 12px;
  display: block;
}

/* Responsive: Kartenbreite */
@media (max-width: 900px) {
  .eoc__card {
    flex: 0 0 calc((100% - 16px) / 2); /* 2 Karten */
  }
}

@media (max-width: 520px) {
  .eoc__card {
    flex: 0 0 100%; /* 1 Karte */
  }
}

@media (max-width: 520px) {
  .eoc .eoc__btn--prev { margin-left: 6px; }
  .eoc .eoc__btn--next { margin-right: 6px; }
}

/* Carousel als Position-Container */
.eoc {
  position: relative;
  padding-bottom: 0; /* kein Platz unten mehr nötig */
}

/* Pfeile links & rechts mittig */
.eoc .eoc__controls--bottom {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;

  transform: translateY(-50%);
  margin: 0 !important;

  display: flex;
  justify-content: space-between;
  align-items: center;

  pointer-events: none; /* wichtig: nur Buttons klickbar */
  z-index: 20;
}

/* Buttons wieder klickbar machen */
.eoc .eoc__btn {
  pointer-events: auto;
}

/* Abstand nach außen, damit sie nicht auf den Cards liegen */
.eoc .eoc__btn--prev {
  margin-left: -54px;
}

.eoc .eoc__btn--next {
  margin-right: -54px;
}



/* Force small inline info icon (override theme/elementor button styles) */
.eoc .eoc__info {
  width: 14px !important;
  height: 14px !important;

  min-width: 14px !important;
  min-height: 14px !important;

  padding: 0 !important;
  margin: 0 0 8px 1px !important;

  border-radius: 999px !important;
  border: 1px solid rgba(120, 130, 140, 0.35) !important;
  background: transparent !important;

  font-size: 9px !important;
  font-weight: 700 !important;
  line-height: 1 !important;

  color: rgba(120, 130, 140, 0.9) !important;

  box-shadow: none !important;
  text-transform: none !important;
  letter-spacing: normal !important;

  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;

  vertical-align: middle !important;
}

.eoc .eoc__info:hover,
.eoc .eoc__info:focus {
  border-color: rgba(120, 130, 140, 0.7) !important;
  color: rgba(90, 100, 110, 1) !important;
  outline: none !important;
}


/* Disabled arrows */
.eoc__btn.is-disabled {
  opacity: 0.35;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
  filter: grayscale(0.2);
}

/* MOBILE/TABLET: Track darf KEIN horizontales Padding haben (sonst stimmt translateX nicht) */
@media (max-width: 900px) {

  /* ganz bewusst "padding" als shorthand überschreiben */
  .eoc .eoc__track{
    padding: 20px 0 0 0 !important;  /* oben bleibt, links/rechts = 0 */
  }

  /* falls du den optischen Rand brauchst: gib ihn dem Viewport statt dem Track */
  .eoc .eoc__viewport{
    padding-left: 6px !important;
    padding-right: 6px !important;
    box-sizing: border-box;
  }
}