.cdw-sticky-cart {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  background: #fdfdf4;
  box-shadow: 0 -8px 25px rgba(0, 0, 0, 0.08);
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.32s ease, opacity 0.32s ease;
}

.cdw-sticky-cart.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.cdw-sticky-cart__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 70px;
  padding: 12px 87px 12px 52px;
}

.cdw-sticky-cart__left {
  display: flex;
  align-items: baseline;
  min-width: 0;
}

.cdw-sticky-cart__title {
  display: inline-block;
  color: white;
  line-height: 1.15;
}

.cdw-sticky-cart__combination {
  display: inline-block;
  margin-left: 14px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.25;
  text-transform: none;
  white-space: nowrap;
  transform: translateY(-3px);
}

.cdw-sticky-cart__combination:empty {
  display: none;
}

.cdw-sticky-cart__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 152px;
  min-height: 40px;
  padding: 12px 19px;
  border: 0;
  border-radius: 999px;
  background: var(--orange);
  color: #fdfdf4;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
}

.cdw-sticky-cart__button:hover,
.cdw-sticky-cart__button:focus {
  background: var(--ocre);
  color: #fdfdf4;
  text-decoration: none;
}

.cdw-sticky-cart__button:active {
  transform: translateY(1px);
}

.cdw-sticky-cart__button:disabled,
.cdw-sticky-cart__button.is-disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.cdw-sticky-cart__button-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.cdw-sticky-cart__button-icon svg {
  display: block;
  width: 22px;
  height: auto;
}

@media (max-width: 767px) {
  .cdw-sticky-cart__inner {
    min-height: 82px;
    padding: 16px 74px 16px 16px;
    gap: 14px;
  }

  .cdw-sticky-cart__left {
    display: block;
  }

  .cdw-sticky-cart__title {
    display: block;
    max-width: 54vw;
  }

  .cdw-sticky-cart__combination {
    display: block;
    max-width: 54vw;
    margin-top: 4px;
    margin-left: 0;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .cdw-sticky-cart__button {
    min-width: 0;
    padding: 12px 25px;
  }
}

@media (min-width: 768px) {
  .cdw-sticky-cart--desktop-disabled {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .cdw-sticky-cart--mobile-disabled {
    display: none !important;
  }
}
