.basket-section {
  min-height: 100vh;
  padding: 2rem 1rem 4rem 1rem;
}
.basket-item {
  padding: 1rem 0.75rem;
  border-radius: 1rem;
  background-color: var(--neutral-50);
}
html.contrast-mode .basket-item {
  background-color: var(--contrast-black);
  border: 1px solid var(--contrast-yellow);
}
.basket-section__wrapper {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
.basket-item__header-left {
  display: flex;
  flex-direction: row;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.basket-item__image-ticket {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  min-width: 60px;
  height: 60px;
  min-height: 60px;
  border-radius: 0.5rem;
  background-color: var(--neutral-200);
}
html.contrast-mode .basket-item__image-ticket {
  background-color: var(--contrast-yellow);
}
html.contrast-mode .basket-item__image-ticket path {
  fill: var(--contrast-black);
}

.basket-item__meta-row {
  display: flex;
  flex-direction: row-reverse;
  gap: 0.5rem;
  justify-content: flex-end;
}
.basket-item__header-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.basket-item__variant {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem 0;
  border-top: 1px solid var(--neutral-200);
}
.basket-item__variant--package .basket-item__variant-total {
  width: 100%;
  text-align: right;
}
.basket-item__variant-label--expanded {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
html.contrast-mode .basket-item__variant {
  border-top: 1px solid var(--contrast-yellow);
}
.basket-item__variant-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.basket-item__variant-ticket-controls {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.basket-item__variant-total {
  width: 92px;
  text-align: right;
  text-wrap: nowrap;
}
.basket-item__variant-ticket-controls__quantity {
  width: 32px;
  text-align: center;
}
.variants-btn.btn--large.btn--ghost {
  border: 1px solid var(--neutral-300);
  padding: 0.5rem 1rem;
}
html.contrast-mode .variants-btn.btn--large.btn--ghost {
  border: 1px solid var(--contrast-yellow);
}
.variants-popover.variants-popover--package {
  padding: 0.5rem;
}
.variants-btn svg {
  transition: all 0.3s ease-out;
}
.variants-btn.active svg {
  transform: rotate(180deg);
}

.variants-popover-wrapper {
  margin-bottom: 2rem;
}
.btn__text-variants {
  width: 100%;
}
.basket-item__cross-sell[data-cross_sell_quantity="0"] {
  display: none;
}
.cross-sell-header {
  margin-bottom: 1rem;
}
.cross-sell-item {
  display: flex;
  gap: 1rem;
  border-radius: 0.5rem;
  overflow: hidden;
  background-color: var(--neutral-white);
  box-shadow: 0px 0px 2px 0px rgba(0, 5, 12, 0.1),
    0px 2px 8px 0px rgba(0, 5, 12, 0.13);
}
html.contrast-mode .cross-sell-item {
  background-color: var(--contrast-black);
  border: 1px solid var(--contrast-yellow);
}
.cross-sell-item .btn {
  border-radius: 0.5rem;
}
.cross-sell-item__image {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 0.5rem;
}
.cross-sell-item__info-wrapper {
  width: 100%;
  position: relative;
}
.cross-sell-item__info-row {
  padding-top: 1rem;
  padding-right: 1rem;
  padding-bottom: 2rem;
}
.cross-sell-item__info-btns {
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
}
.cross-sell-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.basket-section__left-side {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.basket-item__info-title,
.basket-item__info-eyebrow {
  margin-bottom: 0.25rem;
}
.cross-sell-item__info-title {
  margin-bottom: 0.25rem;
}
.basket-item__icon-product {
  width: 64px;
  height: 64px;
  max-width: 64px;
  max-height: 64px;
  min-width: 64px;
  min-height: 64px;
  border-radius: 0.5rem;
  object-fit: cover;
}

#next-step-btn.btn--delivery svg {
  transform: rotate(90deg);
}
.basket-item--product .basket-item__header-left {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--neutral-200);
}
.basket-summary {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.basket-summary__section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.basket-summary__delivery-method {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.basket-summary__delivery-method[data-delivery_active="false"] {
  display: none;
}
.basket-summary__delivery-method-label {
  width: 80px;
}

.basket-summary__delivery-methods {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.basket-summary__summary-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.basket-summary__summary-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.basket-summary__summary-item-value {
  width: 100%;
  text-align: right;
}
.basket-summary__summary-item-label {
  text-wrap: nowrap;
}
.basket-summary__footer {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid var(--neutral-200);
}
html.contrast-mode .basket-summary__footer {
  border-top: 1px solid var(--contrast-yellow);
}
.variants-popover {
  width: 100%;
  padding: 1rem;
}
.variants-popover-wrapper {
  animation: fadeIn 0.3s ease-out;
}
.variants-popover-wrapper[data-disabled-variants-quantity="0"] {
  display: none;
}
.variant-item {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--neutral-50);
}
.variant-item:last-child {
  border-bottom: none;
}
.variant-item__label {
  width: 100%;
}
.variant-item__price {
  text-wrap: nowrap;
}
.popover-delivery-wrapper {
  width: 100%;
}
.popover-delivery__item-icon {
  width: 20px;
  height: 20px;
  min-width: 20px;
  min-height: 20px;
  border-radius: 2px;
  object-fit: cover;
}
.popover-delivery {
  padding: 0.25rem;
  border-radius: 8px;
  width: 100%;
}

.popover-delivery__item-label {
  width: 100%;
}
.popover-content__item-price {
  text-wrap: nowrap;
}
.basket-section__title {
  margin-bottom: 2rem;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.basket-item__variant-package-controls {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--neutral-200);
}
.basket-item__variant-package-controls-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.basket-item__variant-package-header {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.package-variants-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
@media (min-width: 768px) {
  .basket-item__info-title.label-medium-italic {
    font-size: 20px;
    line-height: 28px;
  }
  .basket-section {
    padding: 2rem 10% 8rem 10%;
  }
  .basket-item__header {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
  }
  .basket-item__header-right {
    text-align: right;
    align-items: flex-end;
  }
  .basket-item__header-left {
    width: 100%;
  }
  .basket-item__meta-row-label {
    text-wrap: nowrap;
  }

  .basket-item {
    padding: 1rem;
    max-width: 820px;
    width: 100%;
    margin: 0 auto;
  }
  .basket-summary__delivery-method {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    align-items: center;
  }
  .basket-item__variant {
    flex-direction: row;
    gap: 1rem;
    justify-content: space-between;
    align-items: center;
  }
  .basket-item__variant-label.header-micro {
    font-size: 1rem;
  }
  .basket-item__variant-controls {
    justify-content: flex-end;
    gap: 2rem;
  }
  .cross-sell-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .basket-item--product .basket-item__header-left {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
  }
  .basket-item--product .basket-item__info-right {
    padding-top: 0.75rem;
  }
  .basket-section__right-side {
    max-width: 820px;
    width: 100%;
    margin: 0 auto;
  }
  .basket-item__variant-package-header {
    width: 100%;
  }
  .basket-item__variant--package .basket-item__variant-total {
    max-width: 240px;
  }
  .basket-item__variant-package-controls {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .basket-item__variant-package-controls-wrapper {
    gap: 1.5rem;
  }
  .variants-btn.variants-btn--package {
    width: 280px;
  }
}
@media (min-width: 1280px) {
  .basket-section {
    padding: 2rem 1rem 8rem 1rem;
  }
  .basket-section__title {
    margin-bottom: 3rem;
  }
  .basket-section__wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
  }
  .basket-item {
    padding: 1.5rem;
  }
  .basket-summary {
    position: sticky;
    top: 6rem;
  }
  html[data-font-size="large"] .basket-summary__delivery-method,
  html[data-font-size="xlarge"] .basket-summary__delivery-method {
    flex-direction: column;
    gap: 0.25rem;
    align-items: flex-start;
  }
}
