/**
Include icons in scss/css.
Usage: 
 @include icon(close);
*/
/*
Media query mixin.
Usage: 
@include media($bp-l, min)
*/
/*
Mixin to add loading spinner to button/element.
Usage: 
@include loading()
*/
.pdp-bundle-listing {
  display: block;
  padding: 1.5rem 0 0.5rem;
}

.pdp-bundle-listing[hidden] {
  display: none;
}

.pdp-bundle-listing-sentinel {
  width: 100%;
  height: 1px;
  pointer-events: none;
}

.pdp-bundle-listing__heading {
  color: #054040;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 140%;
  letter-spacing: -0.025rem;
  margin: 0 0 1.25rem;
}

.pdp-bundle-listing__items {
  display: flex;
  flex-direction: column;
}

.pdp-bundle-listing__item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e6e6e6;
}

.pdp-bundle-listing__collapsible {
  display: grid;
  grid-template-rows: 0fr;
  min-height: 0;
  transition: grid-template-rows 0.3s ease;
}

.pdp-bundle-listing__collapsible.is-open {
  grid-template-rows: 1fr;
}

.pdp-bundle-listing__collapsible-inner {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  min-height: 0;
  overflow: hidden;
}
.pdp-bundle-listing__collapsible-inner > .pdp-bundle-listing__item:first-child {
  margin-top: 1.25rem;
}

@media (prefers-reduced-motion: reduce) {
  .pdp-bundle-listing__collapsible {
    transition: none;
  }
}
.pdp-bundle-listing__image {
  flex: 0 0 auto;
  display: block;
  width: 7.5rem;
  height: 7.5rem;
  border-radius: 0.5rem;
  overflow: hidden;
  background-color: #f6fffc;
}
.pdp-bundle-listing__image media-loader {
  display: block;
  width: 100%;
  height: 100%;
}
.pdp-bundle-listing__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pdp-bundle-listing__content {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.375rem;
  min-width: 0;
}

.pdp-bundle-listing__price-row {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.pdp-bundle-listing__badge {
  width: fit-content;
  padding: 0.25rem 0.75rem;
  border-radius: 6.25rem;
  background: #c0eee2;
  color: #054040;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 140%;
  letter-spacing: 0.0125rem;
}

.pdp-bundle-listing__title {
  color: #054040;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 160%;
  text-decoration: none;
}
.pdp-bundle-listing__title:hover {
  text-decoration: underline;
}

.pdp-bundle-listing__short {
  color: #595959;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 160%;
}

.pdp-bundle-listing__price {
  color: #1a1a1a;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 160%;
}

.pdp-bundle-listing__price-amount {
  color: #054040;
}

.pdp-bundle-listing__cta {
  flex: 0 0 auto;
  display: inline-block;
  min-width: 5.625rem;
  box-sizing: border-box;
  margin: 0;
  padding: 0.625rem 0.9375rem;
  border: 1px solid #50fcce;
  border-radius: 3.125rem;
  background: #50fcce;
  color: #054040;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.0125rem;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  outline: none;
  box-shadow: none;
  transition: all 0.3s ease;
}
.pdp-bundle-listing__cta:hover, .pdp-bundle-listing__cta:focus-visible {
  background: #054040;
  border-color: #054040;
  color: #fff;
}

.pdp-bundle-listing__view-more-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.pdp-bundle-listing__view-more {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  border: 0;
  cursor: pointer;
  border-radius: 6.25rem;
  background: #054040;
  color: #fff;
  text-align: center;
  padding: 0.375rem 1rem 0.375rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 140%;
  letter-spacing: 0.0125rem;
  transform: translateY(-50%);
}
.pdp-bundle-listing__view-more svg {
  display: block;
  width: 1.25rem;
  height: 1.25rem;
}

.pdp-bundle-listing__view-more-icon {
  display: inline-flex;
}

.pdp-bundle-listing__view-more-icon--less,
.pdp-bundle-listing__view-more-label--less {
  display: none;
}

.pdp-bundle-listing__view-more[aria-expanded=true] .pdp-bundle-listing__view-more-icon--more,
.pdp-bundle-listing__view-more[aria-expanded=true] .pdp-bundle-listing__view-more-label--more {
  display: none;
}
.pdp-bundle-listing__view-more[aria-expanded=true] .pdp-bundle-listing__view-more-icon--less {
  display: inline-flex;
}
.pdp-bundle-listing__view-more[aria-expanded=true] .pdp-bundle-listing__view-more-label--less {
  display: inline;
}
