/* Getkidzly AB Tests — Scenario Bundles
   ------------------------------------------------------------ */

.getkidzly-ab-bundle {
  clear: both;
  width: 100%;
  background: #fffefc;
  display: none;
}

.getkidzly-ab-bundle__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.getkidzly-ab-bundle__heading {
  font-family: inherit;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  color: var(--color-black, #000);
  margin: 0 0 32px;
}

.getkidzly-ab-bundle__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.getkidzly-ab-bundle__card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.getkidzly-ab-bundle__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.getkidzly-ab-bundle__card a {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.getkidzly-ab-bundle__card-img {
  position: relative;
  aspect-ratio: 1 / 1;
  background: #fafafa;
  border-radius: 16px;
  overflow: hidden;
}

.getkidzly-ab-bundle__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.getkidzly-ab-bundle__card-info {
  padding: 14px 8px 16px;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.getkidzly-ab-bundle__card-title {
  font-family: 'Rubik';
    font-size: 14px;
    font-weight: 500;
    line-height: 1.3;
    color: #402D1B;
    margin: 0;
}

.getkidzly-ab-bundle__card-price {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-primary, #C75F54);
}

.getkidzly-ab-bundle__card-price del {
  font-size: 13px;
  color: #999;
  font-weight: 400;
  margin-right: 6px;
  text-decoration: line-through;
}

.getkidzly-ab-bundle__card-price ins {
  text-decoration: none;
  color: var(--color-primary, #C75F54);
}

/* Tablet */
@media (min-width: 560px) {
  .getkidzly-ab-bundle__grid {
    gap: 20px;
  }
}

/* Desktop */
@media (min-width: 880px) {
  .getkidzly-ab-bundle {
    padding: 60px 0;
  }

  .getkidzly-ab-bundle__heading {
    font-size: 32px;
    margin-bottom: 40px;
  }

  .getkidzly-ab-bundle__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }

  .getkidzly-ab-bundle__card-title {
    font-size: 16px;
    line-height: 1.4;
  }

  .getkidzly-ab-bundle__card-price {
    font-size: 18px;
  }
}
