.cart-page {
  padding: 40px 0;
  background: #e7e7e7;
  font-size: clamp(14px, calc(15 / 1300 * 100vw), 15px)
}

.cart-page__layout {
  display: grid;
  grid-template-columns: 1fr 30%;
  gap: 30px
}

.cart-section {
  margin-top: 20px
}

.cart-section.group-items {
  margin-top: 0;
  display: flex;
  flex-direction: column;
  gap: 15px
}

.cart-section__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px
}

.cart-section__infos {
  display: flex;
  align-items: stretch;
  border-radius: clamp(5px, calc(10 / 1300 * 100vw), 10px);
  overflow: hidden;
  background: #fff
}

.cart-section__order-info {
  text-align: center;
  padding: 6px;
  color: #657384;
  flex: 1 1 0%;
  font-weight: 500
}

.cart-section__order-info.active {
  background: var(--color-main);
  color: #fff
}

.cart-section__title {
  font-weight: 500;
  font-size: clamp(15px, calc(17 / 1300 * 100vw), 17px);
  margin-bottom: 0
}

.cart-section__body {
  background: #fff;
  border-radius: 6px;
  padding: clamp(10px, calc(20 / 1300 * 100vw), 20px);
  display: flex;
  flex-direction: column;
  gap: 20px
}

.cart-item {
  background: #fff;
  border-radius: 6px;
  border-left: solid 3px var(--color-main);
  position: relative
}

.cart-item__top {
  display: flex;
  align-items: flex-start;
  gap: clamp(10px, calc(15 / 1300 * 100vw), 15px);
  padding: 10px 10px 8px
}

.cart-item__cb {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 3px;
  cursor: pointer
}

.cart-item__img {
  flex-shrink: 0;
  display: block;
  max-width: clamp(80px, calc(100 / 1300 * 100vw), 100px);
  border-radius: 6px;
  border: 1px solid #d7d7d7;
  background: #f5f5f5;
  overflow: hidden
}

.cart-item__img img {
  width: 100%;
  height: 100%;
  object-fit: contain
}

.cart-item__info {
  flex: 1;
  min-width: 0
}

.cart-item__name {
  font-size: clamp(14px, calc(17 / 1300 * 100vw), 17px);
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 5px
}

.cart-item__name a {
  color: inherit;
  text-decoration: none
}

.cart-item__meta {
  color: #898686;
  line-height: 1.5;
  margin-bottom: 5px;
}

.cart-item__meta b {
  color: #1a1a1a;
  font-weight: 500
}

.cart-item__del {
  flex-shrink: 0;
  cursor: pointer;
  color: #657384;
  padding: 2px;
  line-height: 0
}

.cart-item__del svg {
  width: clamp(20px, calc(25 / 1300 * 100vw), 25px)
}

.cart-item__del:hover {
  color: red
}

.cart-item__bottom {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(10px, calc(20 / 1300 * 100vw), 20px);
  padding: 7px 10px 10px;
  border-top: 1px solid #f0f0f0
}

.cart-item .qty-counter__btn {
  width: clamp(32px, calc(35 / 1300 * 100vw), 35px);
  height: clamp(32px, calc(35 / 1300 * 100vw), 35px);
  font-size: 18px
}

.cart-item .qty-counter__input {
  width: clamp(45px, calc(80 / 1300 * 100vw), 80px);
  height: clamp(32px, calc(35 / 1300 * 100vw), 35px);
  font-size: clamp(14px, calc(17 / 1300 * 100vw), 17px)
}

.cart-item__price-wrap {
  text-align: right;
  min-width: 64px
}

.cart-item__price-current {
  font-size: clamp(15px, calc(17 / 1300 * 100vw), 17px);
  font-weight: 700;
  color: #ff0019;
  margin: 0
}

.cart-item__price-original {
  font-size: clamp(12px, calc(14 / 1300 * 100vw), 14px);
  color: #999;
  text-decoration: line-through;
  margin: 0
}

.qty-counter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ccc;
  line-height: normal;
  text-align: center;
  border-radius: 5px;
  overflow: hidden
}

.qty-counter__btn {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 20px;
  background: #f0f0f0
}

.qty-counter__input {
  width: 65px;
  height: 35px;
  padding: 3px;
  text-align: center;
  border: solid 1px #c1c8d1;
  border-top: none;
  border-bottom: none;
  font-size: 17px
}

.price__text {
  font-size: 13px;
  margin-bottom: 0;
  text-align: center;
  color: #898686;
  line-height: 16px
}

.price__current {
  color: #ff0019;
  margin-bottom: 0;
  font-weight: 700;
  font-size: clamp(14px, calc(17 / 1300 * 100vw), 17px)
}

.price__original {
  color: #999;
  text-decoration: line-through;
  font-size: 12px;
  margin: 0
}

.cart-form__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px
}

.cart-form__col--full {
  grid-column: 1/-1
}

.payment-list {
  display: flex;
  flex-direction: column;
  gap: 10px
}

.payment-option {
  position: relative;
  isolation: isolate
}

.payment-option+.payment-option {
  padding-top: 10px;
  border-top: 1px solid #e4e8ed
}

.payment-option__row {
  display: flex;
  gap: 15px;
  align-items: center
}

.payment-option__radio {
  cursor: pointer;
  width: 20px;
  height: 20px;
  margin: 0 !important
}

.payment-option__label {
  cursor: pointer;
  display: flex;
  margin-bottom: 0;
  color: #313131 !important;
  flex: 1;
  align-items: center;
  gap: 10px;
  padding: 5px 0
}

.payment-option__label p {
  flex: 1;
  margin-bottom: 0;
  color: #313131
}

.payment-option__logo {
  width: 40px;
  display: block
}

.payment-option__detail {
  opacity: 0;
  visibility: hidden;
  height: 0;
  overflow: hidden;
  background: #f5efef;
  border-radius: 5px;
  width: 100%;
  padding: 0 10px;
  box-sizing: border-box;
  transition: all .2s ease
}

.payment-option__detail p {
  margin-bottom: 1em
}

.payment-option__detail.active {
  padding: 10px;
  margin-top: 5px;
  opacity: 1;
  visibility: visible;
  height: auto
}

.cart-summary {
  position: sticky;
  top: 15px
}

.cart-summary__inner {
  background: #fff;
  padding: 12px 16px;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px
}

.cart-summary__divider {
  display: block;
  width: 100%;
  height: 1px;
  margin: 10px 0;
  background: #e4e8ed
}

.cart-summary__total {
  display: flex;
  align-items: center;
  justify-content: space-between
}

.cart-summary__total>span {
  font-size: clamp(15px, calc(18 / 1300 * 100vw), 18px);
  font-weight: 600
}

.cart-summary__total-price {
  margin-bottom: 0;
  font-size: clamp(17px, calc(22 / 1300 * 100vw), 22px);
  color: var(--color-main);
  font-weight: 700
}

.cart-summary__stamp {
  height: 24px;
  background: #fff;
  mask: radial-gradient(11.52px at 50% calc(100% - 15.45px), #000 99%, transparent 101%) calc(50% - 20.6px) 0/41.2px 100%, radial-gradient(11.52px at 50% calc(100% + 5.15px), transparent 99%, #000 101%) 50% calc(100% - 10.3px)/41.2px 100% repeat-x
}

.cart-totals {
  display: flex;
  flex-direction: column;
  gap: 10px
}

.cart-totals__row {
  display: flex;
  justify-content: space-between;
  align-items: center
}

.cart-totals__row>span {
  font-size: clamp(14px, calc(16 / 1300 * 100vw), 16px);
  color: #4a4f63;
  font-weight: 500
}

.cart-totals__value {
  margin-bottom: 0;
  font-size: clamp(14px, calc(16 / 1300 * 100vw), 16px);
  font-weight: 500
}

.cart-totals__value--discount {
  color: #f79009
}

.voucher {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border-radius: var(6px);
  overflow: hidden;
  border: solid 1px #e0e4e8;
  margin-bottom: 15px
}

.voucher__input {
  width: calc(100% - 95px);
  height: 40px;
  font-size: 14px;
  border-radius: 0;
  border: none;
  background: 0 0
}

.voucher__btn {
  width: 95px;
  line-height: 40px;
  padding: 0 10px;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  color: #657384;
  background: #edf0f3;
  border: none;
  cursor: pointer
}

.cart-submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: clamp(35px, calc(45 / 1300 * 100vw), 45px);
  border-radius: clamp(35px, calc(45 / 1300 * 100vw), 45px);
  background: var(--color-main);
  font-size: clamp(14px, calc(16 / 1300 * 100vw), 16px);
  color: #fff;
  font-weight: 600;
  border: none;
  margin-top: 15px;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity .2s
}

.cart-submit-btn:disabled {
  opacity: .6;
  cursor: not-allowed
}

.cart-submit-btn:not(:disabled):hover {
  opacity: .85
}

.cart-submit-btn.is-loading {
  opacity: .75;
  cursor: not-allowed;
  pointer-events: none
}

.cart-spinner {
  display: inline-block;
  width: clamp(15px, calc(18 / 1300 * 100vw), 18px);
  height: clamp(15px, calc(18 / 1300 * 100vw), 18px);
  vertical-align: middle;
  margin-right: clamp(4px, calc(6 / 1300 * 100vw), 6px);
  animation: cart-spin .75s linear infinite
}

@keyframes cart-spin {
  from {
    transform: rotate(0)
  }

  to {
    transform: rotate(360deg)
  }
}

.cart-tos {
  margin-top: 20px;
  font-size: 13px;
  line-height: 23px;
  letter-spacing: .5px;
  color: #020b07;
  text-align: center
}

.cart-tos a {
  text-decoration: underline !important;
  color: #020b07;
  transition: .2s
}

.cart-tos a:hover {
  color: var(--color-main)
}

.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  text-align: center;
  width: 100%
}

.cart-empty__icon-wrap {
  position: relative;
  width: 120px;
  height: 120px;
  margin-bottom: 28px
}

.cart-empty__icon-bg {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center
}

.cart-empty__icon-bg svg {
  width: 52px;
  height: 52px;
  color: #bbb
}

.cart-empty__badge {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fee2e2;
  display: flex;
  align-items: center;
  justify-content: center
}

.cart-empty__badge svg {
  width: 14px;
  height: 14px;
  color: #dc2626
}

.cart-empty__title {
  font-size: clamp(22px, calc(30 / 1300 * 100vw), 30px);
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 10px
}

.cart-empty__desc {
  font-size: clamp(14px, calc(15 / 1300 * 100vw), 15px);
  color: #898686;
  margin-bottom: 20px;
  line-height: 1.6
}

.cart-empty__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px
}

.cart-empty__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: clamp(35px, calc(45 / 1300 * 100vw), 45px);
  padding-inline: clamp(20px, calc(30 / 1300 * 100vw), 30px);
  background: var(--color-main);
  color: #fff !important;
  border-radius: 5px;
  font-size: clamp(14px, calc(15 / 1300 * 100vw), 15px);
  font-weight: 600;
  text-decoration: none;
  transition: opacity .2s
}

.cart-empty__cta:hover {
  opacity: .8
}

.cart-empty__cta svg {
  width: 16px;
  height: 16px
}

.cart-empty__link {
  font-size: 14px;
  color: #898686;
  text-decoration: underline
}

.cart-empty__link:hover {
  color: #333
}

.cart-empty__suggest {
  margin-top: 44px;
  width: 100%;
  max-width: 480px
}

.cart-empty__suggest-title {
  font-size: 12px;
  font-weight: 600;
  color: #bbb;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 14px
}

.cart-empty__tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px
}

.cart-empty__tag {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid #e5e5e5;
  font-size: 13px;
  color: #666;
  text-decoration: none;
  transition: border-color .15s, color .15s
}

.cart-empty__tag:hover {
  border-color: #aaa;
  color: #333
}

.cart-form-group,
.cart-form-group-select {
  position: relative;
  margin-bottom: 0
}

.cart-form-group input,
.cart-form-group textarea {
  width: 100%;
  font-size: 14px;
  transition: border-color .1s ease;
  resize: vertical;
  background: #fff !important;
  box-shadow: none !important;
  border-radius: 5px;
  border: 1px solid #cacaca
}

.cart-form-group input {
  height: 45px
}

.cart-form-group input:hover,
.cart-form-group textarea:hover {
  border-color: #7799d0 !important
}

.cart-form-group label,
.cart-form-group-select>label {
  color: #777;
  transition: all .1s ease;
  background-color: transparent;
  margin-bottom: 2px
}

.invalid-feedback {
  font-size: 14px
}

.cart-select-all {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px
}

.cart-select-all label {
  font-size: clamp(14px, calc(17 / 1300 * 100vw), 17px);
  font-weight: 600;
  line-height: 1;
  cursor: pointer
}

.cart-select-all input {
  width: 20px;
  height: 20px;
  margin-bottom: 2px;
  cursor: pointer
}

.voucher-input {
  display: flex;
  align-items: stretch;
  gap: 5px;
  margin-bottom: 15px !important
}

.voucher-input input {
  width: 100%;
  font-size: 14px;
  transition: border-color .1s ease;
  resize: vertical;
  background: #fff !important;
  box-shadow: none !important;
  border-radius: 5px;
  border: 1px solid #cacaca;
  height: 45px;
  padding: 6px 12px;
  outline: 0 !important
}

.voucher-apply {
  background: var(--color-main);
  color: #fff;
  border-radius: 5px;
  padding: 5px 15px;
  font-size: 15px;
  white-space: nowrap;
  font-weight: 600;
  transition: .2s
}

.voucher-apply:hover {
  background: color-mix(in srgb, var(--color-main) 80%, #000)
}

.cart-form__trigger {
  display: inline-flex;
  align-items: center;
  gap: 10px
}

.cart-form__trigger input {
  margin-bottom: 2px
}

.cart-form__trigger label {
  cursor: pointer
}

.cart-form__extra {
  display: flex;
  flex-direction: column;
  gap: 10px
}

.cart-form__box {
  background: #eee;
  padding: 10px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 15px
}

.cart-form__picker {
  padding: 12px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border-radius: 5px;
  border: solid 1px #cacaca
}

.cart-form__picker input {
  font-size: 15px
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0
}

input[type=number] {
  -moz-appearance: textfield
}

input[type=checkbox],
input[type=radio] {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid #ccc;
  background-color: #fff;
  cursor: pointer;
  position: relative;
  transition: all .2s ease
}

input[type=radio] {
  border-radius: 50%
}

input[type=checkbox] {
  border-radius: 4px
}

input[type=checkbox]:checked,
input[type=radio]:checked {
  background-color: var(--color-main);
  border-color: var(--color-main)
}

input[type=checkbox]:checked::after,
input[type=radio]:checked::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 45%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 5px;
  height: 9px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff
}

input[type=checkbox]:disabled,
input[type=radio]:disabled {
  opacity: .5;
  cursor: not-allowed
}

.was-validated input.is-required:invalid,
.was-validated textarea.is-required:invalid {
  border-color: #ef4444 !important;
  background: rgba(239, 68, 68, .1) !important
}

.was-validated select.tom-select:invalid+.ts-wrapper .ts-control {
  border-color: #ef4444 !important;
  background: rgba(239, 68, 68, .1) !important
}

.was-validated input.is-required:valid,
.was-validated textarea.is-required:valid {
  border-color: #cacaca !important;
  background: #fff !important
}

.order-success {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 800px;
  margin: auto
}

.order-success__header {
  text-align: center;
  padding: 28px 20px;
  background: #fff;
  border: 1px solid #ebebeb;
  border-radius: 10px
}

.order-success__check {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #dcfce7;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px
}

.order-success__check svg {
  width: 28px;
  height: 28px;
  color: #16a34a
}

.order-success__title {
  font-size: clamp(18px, calc(22 / 1300 * 100vw), 22px);
  font-weight: 700;
  color: #003155;
  margin-bottom: 6px
}

.order-success__code {
  color: #898686;
  margin-bottom: 4px
}

.order-success__code span {
  font-weight: 700;
  color: #003155
}

.order-success__date {
  color: #bbb;
  margin-bottom: 12px
}

.order-success__status {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: 600;
  background: #fff8e1;
  color: #f59e0b
}

.order-success__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px
}

.order-success__card {
  flex: 1 1 0%;
  background: #fff;
  border: 1px solid #ebebeb;
  border-radius: 10px;
  padding: 16px 18px
}

.order-success__card-title {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 12px
}

.order-success__row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  padding: 5px 0;
  border-bottom: 1px solid #f5f5f5
}

.order-success__row:last-child {
  border-bottom: none
}

.order-success__row-label {
  color: #898686;
  flex-shrink: 0
}

.order-success__row-val {
  color: #333;
  text-align: right
}

.order-success__row-val--note {
  color: #bbb;
  font-style: italic
}

.order-success__row-val--warning {
  color: #f59e0b;
  font-weight: 600
}

.order-success__products {
  background: #fff;
  border: 1px solid #ebebeb;
  border-radius: 10px
}

.order-success__products-head {
  padding: 12px 18px;
  border-bottom: 1px solid #ebebeb;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em
}

.order-success__product {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  border-bottom: 1px solid #f5f5f5
}

.order-success__product:last-child {
  border-bottom: none
}

.order-success__product-img {
  width: 100px;
  height: 100px;
  min-width: 100px;
  border-radius: 6px;
  border: 1px solid #ebebeb;
  overflow: hidden;
  background: #f5f5f5
}

.order-success__product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.order-success__product-info {
  flex: 1;
  min-width: 0
}

.order-success__product-name {
  font-weight: 600;
  color: #333;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 3px
}

.order-success__product-variant {
  font-size: 13px;
  color: #777
}

.order-success__product-right {
  text-align: right;
  flex-shrink: 0
}

.order-success__product-price {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-main)
}

.order-success__product-price--free {
  color: #16a34a
}

.order-success__product-qty {
  font-size: 13px;
  color: #777;
  margin-top: 2px
}

.order-success__summary {
  background: #fff;
  border: 1px solid #ebebeb;
  border-radius: 10px;
  padding: 16px 18px
}

.order-success__summary-row {
  display: flex;
  justify-content: space-between;
  padding: 5px 0;
  color: #555;
  border-bottom: 1px solid #f5f5f5
}

.order-success__summary-row:last-child {
  border-bottom: none;
  padding-top: 10px;
  margin-top: 4px;
  font-size: 15px;
  font-weight: 700;
  color: #003155
}

.order-success__summary-row--discount {
  color: #16a34a
}

.order-success__text--success {
  color: #16a34a
}

.order-success__actions {
  display: flex;
  gap: 10px
}

.order-success__btn {
  flex: 1;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid #ddd;
  background: #fff;
  color: #333;
  transition: .15s
}

.order-success__btn:hover {
  background: #f5f5f5
}

.order-success__btn--primary {
  background: var(--color-main);
  color: #fff;
  border-color: var(--color-main)
}

.order-success__btn--primary:hover {
  color: #fff;
  opacity: .85;
  background: var(--color-main)
}

.cart-level-progress {
  background: #fff8ed;
  border: 1px solid #fde8b4;
  border-radius: 8px;
  padding: 12px 14px;
  margin: 14px 0;
  display: flex;
  flex-direction: column;
  gap: 8px
}

.cart-level-progress__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: #92580a
}

.cart-level-progress__label {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-weight: 500
}

.cart-level-progress__label svg {
  color: #f59e0b;
  flex-shrink: 0
}

.cart-level-progress__percent {
  font-weight: 700;
  color: #d97706
}

.cart-level-progress__bar {
  width: 100%;
  height: 8px;
  background: #fde8b4;
  border-radius: 99px;
  overflow: hidden
}

.cart-level-progress__fill {
  height: 100%;
  background: linear-gradient(90deg, #f59e0b, #d97706);
  border-radius: 99px;
  transition: width .4s ease;
  min-width: 4px
}

.cart-level-progress__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: #92580a
}

.cart-level-progress__foot b {
  font-weight: 700;
  color: #b45309
}

.cart-level-progress__reached {
  font-weight: 600;
  color: #16a34a
}

.cart-fixed-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: #fff;
  border-top: 1px solid #e4e8ed;
  padding: 10px 16px;
  padding-bottom: calc(10px + env(safe-area-inset-bottom));
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  box-shadow: 0 -3px 12px rgba(0, 0, 0, .08)
}

.cart-fixed-bar__summary {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0
}

.cart-fixed-bar__label {
  font-size: 12px;
  color: #657384;
  white-space: nowrap
}

.cart-fixed-bar__price {
  font-size: clamp(16px, 4vw, 20px);
  font-weight: 700;
  color: var(--color-main);
  margin: 0;
  line-height: 1.2;
  white-space: nowrap
}

.cart-fixed-bar__btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 38px;
  padding: 0 24px;
  border-radius: 44px;
  background: var(--color-main);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  text-transform: uppercase;
  transition: opacity .2s
}

.cart-fixed-bar__btn:hover {
  opacity: .85
}

.cart-fixed-bar__btn:disabled {
  opacity: .6;
  cursor: not-allowed
}

.cart-quote-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  height: clamp(35px, calc(45 / 1300 * 100vw), 45px);
  border-radius: clamp(35px, calc(45 / 1300 * 100vw), 45px);
  background: #fff;
  border: 2px solid var(--color-main);
  color: var(--color-main);
  font-size: clamp(14px, calc(16 / 1300 * 100vw), 16px);
  font-weight: 600;
  margin-top: 10px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .2s
}

.cart-quote-btn:hover:not(:disabled) {
  background: color-mix(in srgb, var(--color-main) 8%, #fff)
}

.cart-quote-btn:disabled {
  opacity: .5;
  cursor: not-allowed
}

.cart-fixed-bar__actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0
}

.cart-fixed-bar__btn--quote {
  background: #fff;
  border: 2px solid var(--color-main);
  color: var(--color-main);
  padding: 0 24px
}

.cart-fixed-bar__btn--quote:hover:not(:disabled) {
  background: color-mix(in srgb, var(--color-main) 8%, #fff)
}

.cart-login-warning {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #fff8ed;
  border: 1px solid #fde8b4;
  border-radius: 8px;
  padding: 14px 16px;
  margin-bottom: 15px
}

.cart-login-warning__icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: #f59e0b;
  margin-top: 1px
}

.cart-login-warning__body {
  flex: 1;
  min-width: 0
}

.cart-login-warning__text {
  font-size: 14px;
  color: #92580a;
  margin: 0 0 8px;
  line-height: 1.5
}

.cart-login-warning__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap
}

.cart-login-warning__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  padding: 0 16px;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: .2s;
  white-space: nowrap
}

.cart-login-warning__btn--login {
  background: var(--color-main);
  color: #fff;
  border: none
}

.cart-login-warning__btn--login:hover {
  opacity: .85;
  color: #fff
}

.cart-login-warning__btn--register {
  background: #fff;
  color: #92580a;
  border: 1px solid #fde8b4
}

.cart-login-warning__btn--register:hover {
  border-color: #f59e0b;
  color: #b45309
}

.cart-item__vat {
  font-size: 13px;
  color: #898686;
  text-align: center;
}

@media (max-width:767px) {
  .cart-summary {
    position: static
  }

  .cart-summary .cart-submit-btn {
    display: none
  }

  .cart-fixed-bar {
    display: flex
  }

  .cart-page__layout {
    grid-template-columns: 1fr;
    gap: 15px
  }

  .qty-counter__btn {
    width: 30px;
    height: 30px
  }

  .qty-counter__input {
    width: 50px;
    height: 30px;
    font-size: 15px
  }

  .cart-section__header {
    flex-direction: column;
    align-items: flex-start
  }

  .cart-section__header>* {
    width: 100%
  }

  .cart-form__grid {
    grid-template-columns: 1fr
  }

  .cart-form__col--full {
    grid-column: 1
  }

  .cart-summary__stamp {
    display: none
  }

  .order-success__grid {
    flex-direction: column
  }

  .order-success__card {
    flex: unset
  }

  .order-success__product {
    gap: 10px
  }

  .order-success__product-img {
    width: 70px;
    height: 70px;
    min-width: 70px
  }

  .cart-item__bottom {
    justify-content: space-between
  }
}

@media (max-width:480px) {
  .cart-select-all label {
    font-size: 14px
  }

  .voucher-apply {
    font-size: 13px;
    padding: 5px 10px
  }

  .cart-summary__total-price,
  .cart-summary__total>span {
    font-size: 15px
  }
}