/*! Product */
.main__heading{
  display:flex;
  flex-wrap:wrap;
  justify-content:space-between;
  align-items:center;
  gap:1.6rem;
}
.main__heading .h1{
  margin-bottom:0;
  line-height:1;
}
.main__heading:has(.button){
  flex-wrap:nowrap;
  margin-bottom:0;
}
.main__heading:has(.button) .h1{
  position:relative;
  top:-0.3rem;
  flex-shrink:0;
}
.main__heading .link{
  flex-shrink:0;
}

.panel__header{
  padding:1.2rem;
  border-radius:1.4rem 1.4rem 0 0;
  background-color:var(--color-secondary);
}
.panel__header .h2{
  margin-bottom:0;
  font-size:1.6rem;
  line-height:1.5rem;
  color:var(--color-white);
}
.panel__header .h2 .link{
  --color:var(--color-primary-subtler);
}

.panel__content{
  padding:1.2rem;
  border-radius:0 0 1.4rem 1.4rem;
  background-color:var(--color-grey-1);
}

.table{
  width:100%;
}
.table th{
  padding:1.2rem 0;
  font-size:1.3rem;
  line-height:1;
  font-weight:400;
  text-align-last:left;
  background-color:var(--color-grey-1);
}
.table th:first-child{
  padding-left:1rem;
  border-left:2px solid var(--color-grey-1);
}
.table th:last-child{
  border-right:2px solid var(--color-grey-1);
}
.table > tbody > tr:nth-child(even) td{
  background-color:var(--color-grey-1);
}
.table > tbody > tr:last-child > td{
  padding-bottom:1rem !important;
  border-bottom:2px solid var(--color-grey-1);
}
.table > tbody > tr:last-child > td:first-child{
  border-bottom-left-radius:1.4rem;
}
.table > tbody > tr:last-child > td:last-child{
  border-bottom-right-radius:1.4rem;
}
.table > tbody > tr > td:first-child{
  border-left:2px solid var(--color-grey-1);
}
.table > tbody > tr > td:last-child{
  border-right:2px solid var(--color-grey-1);
}

.product-table th:nth-child(1){
  width:36.1%;
}
.product-table th:nth-child(2){
  width:18.1%;
}
.product-table th:nth-child(3){
  width:29.2%;
}
.product-table th:nth-child(4){
  width:16.7%;
}
.product-table td{
  padding:1.2rem 0.6rem 1.2rem 0;
}

.product{
  font-size:1.4rem;
  line-height:1;
}

.product__info{
  display:flex;
  flex-direction:column;
  justify-content: center;
  gap:0.2rem;
  padding-left:1rem;
}
.product__info--sale{
  padding-top:2.9rem;
  background-image:url(../svg/icons/sale.svg);
  background-position:top left 1rem;
  background-repeat:no-repeat;
  background-size:2.4rem;
}

.product__quantity{
  font-weight:700;
}

.product__delivery{
  font-size:1.2rem;
  color:rgba(38, 45, 56, 0.75);
}

.product__price-wrapper{
  padding-right:1rem;
  text-align:center;
}

.product__discount{
  margin-bottom:0.2rem;
  font-size:1.2rem;
}
.product__discount s{
  color:red;
}
.product__discount span{
  display:inline-flex;
  align-items:center;
  min-height:1.8rem;
  padding:0.2rem 0.5rem 0;
  border-radius:0.5rem;
  font-size:1rem;
  line-height:1;
  font-weight:700;
  background-color:var(--color-red);
  color:var(--color-white);
}

.product__price{
  line-height:1.8rem;
}

.product__button{
  width:4.8rem;
  padding:0;
}
.product__button .button__text{
  text-transform:uppercase;
}
.gift-wrapper{
  display:flex;
  align-items:center;
  gap:1rem;
}
.gift-wrapper .button{
  flex-shrink:0;
  gap:0.5rem;
  width:100%;
  max-width:16.7rem;
  padding:0;
}
.info-panel{
  position:relative;
  display:flex;
  flex-direction:column;
  border:2px solid var(--color-grey-3);
  border-radius:1.4rem;
}
.info-panel__header{
  overflow:hidden;
  display:flex;
  align-items:center;
  gap:1rem;
  border-radius:1.4rem;
}
.info-panel__heading{
  display:flex;
  flex-direction:column;
  gap:1rem;
}
.info-panel__heading .h1{
  margin-bottom:0;
}
.info-panel__image{
  margin-top:-0.2rem;
  margin-left:-0.2rem;
}
.info-panel__image img{
  width:17.5rem;
  height:15rem;
  object-fit:contain;
}
.info-panel__content{
  display:flex;
  flex-direction:column;
  gap:1rem;
  padding:1.9rem 1.8rem;
  font-size:1.4rem;
  line-height:1.8rem;
  background-color:var(--color-grey-3);
}

.info-panel--gift .info-panel__image{
  margin-top:0;
}
.info-panel--gift .info-panel__image img{
  height:14.6rem;
}

/*! Cart page */

.cart-form{
  gap:1rem;
}
.cart-form .grey-panel{
  border-radius:1.4rem;
}

.cart-table thead{
  display:none;
}
.cart-table th:nth-child(1){
  width:40.3%;
}
.cart-table th:nth-child(2){
  width:15.4%;
}
.cart-table th:nth-child(3){
  width:19.4%;
}
.cart-table th:nth-child(4){
  width:19.4%;
}
.cart-table th:nth-child(5){
  width:5.6%;
}
.cart-table > tbody > tr:nth-child(even) .cart-item-content td{
  border-color:var(--color-white);
}
.cart-table > tbody > tr:last-child > td{
  padding-bottom:1.1rem !important;
}
.cart-table > tbody > tr > td{
  padding:1.1rem 1rem 1.3rem;
}

.cart-item{
  width:100%;
  font-size:1.4rem;
}
.cart-item-content td{
  padding-bottom:0.9rem;
  border-bottom:1px solid var(--color-grey-1);
}

.cart-item__brand{
  padding-right:0.6rem;
}

.cart-item__brand-name{
  font-weight:700;
}

.cart-item__price-wrapper{
  display:flex;
  flex-direction:column;
  gap:0.2rem;
  padding-left:0.4rem;
}
.cart-item__price-wrapper .price{
  position:relative;
  left:0.3rem;
}

.discount-price{
  display:flex;
  align-items:center;
  gap:0.2rem;
  font-size:1.2rem;
  line-height:1;
  color:var(--color-red);
}

.discount-label{
  padding:0 0.5rem;
  border-radius:0.5rem;
  font-size:1rem;
  line-height:1.7rem;
  background-color:var(--color-red);
  color:var(--color-white);
  text-align: center;
}

.cart-remove{
  display:inline-flex;
  justify-content:center;
  align-items:center;
  aspect-ratio:1;
  width:2.4rem;
  border:none;
  border-radius:50%;
  background-color:var(--color-red);
  transition:opacity var(--transition-medium-cubic);
}
.cart-remove:hover, .cart-remove:focus-visible{
  opacity:0.8;
}
.cart-remove:active{
  opacity:1;
}
.cart-remove .icon{
  font-size:1.5rem;
}

.cart-item__caption{
  padding-top:0.9rem;
  font-size:1.2rem;
  line-height:1;
}
.cart-item__caption a{
  text-decoration-color:currentColor;
}
.cart-item__caption a:hover, .cart-item__caption a:focus-visible{
  text-decoration-color:transparent;
}

.pack-radios{
  display:flex;
  flex-wrap:wrap;
  column-gap:3rem;
  row-gap:2rem;
}
.pack-radios .form-radio-wrapper:first-child{
  width:100%;
}

.delivery-radios{
  display:flex;
  column-gap:3rem;
  row-gap:2rem;
}
.delivery-radios .form-radio-wrapper{
  width:100%;
}

.cart-form-gift{
  display:flex;
  flex-direction:column;
  gap:1rem;
}

.add-gift-card{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:1rem;
}
.add-gift-card:has(#gift-card-checkbox:checked){
  padding-bottom:0.9rem;
  border-bottom:1px solid var(--color-white);
}
.add-gift-card:has(#gift-card-checkbox:checked) + .gift-card-balance{
  display:flex;
}
.add-gift-card .h3{
  position:relative;
  top:-0.2rem;
}

.gift-card-balance{
  display:none;
  justify-content:space-between;
  align-items:center;
  gap:1rem;
}
.gift-card-balance .h3{
  position:relative;
  top:-0.2rem;
  flex-shrink:0;
}
.gift-card-balance .select-wrapper{
  max-width:30rem;
  margin-left:auto;
}

.gift-card-wrapper{
  display:flex;
  align-items:center;
  gap:1rem;
  width:100%;
}

.cart-total-panel{
  display:flex;
  flex-direction:column;
  gap:2rem;
  padding:2rem;
  border-radius:1.4rem;
  background-color:var(--color-secondary);
  color:var(--color-white);
}

.cart-total{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:1rem;
  padding-bottom:1.9rem;
  border-bottom:1px solid #323b49;
}
.cart-total .h3{
  position:relative;
  top:-0.2rem;
}

.cart-total__wrapper{
  display:flex;
  align-items:center;
  gap:2rem;
}

.cart-total__title,
.cart-total__savings,
.cart-total__price{
  font-size:1.6rem;
  line-height:1.5rem;
  font-weight:700;
}

.cart-total__price{
  white-space:nowrap;
}

.cart-form__controls{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:1rem;
}
.cart-form__controls .button{
  width:100%;
  max-width:30rem;
}
.cart-panel{
  display:flex;
  flex-direction:column;
  gap:2rem;
  padding:1.9rem 2rem 2.1rem;
  border-radius:1.4rem;
  background-color:var(--color-secondary);
  color:var(--color-white);
}

.cart-panel-item{
  display:flex;
  flex-basis:100%;
  flex-direction:column;
  justify-content:center;
  gap:0.6rem;
}
.cart-panel-item--2 .cart-panel-item__title{
  background-image:url(../svg/icons/fi_2900294.svg);
}
.cart-panel-item--3 .cart-panel-item__title{
  background-image:url(../svg/icons/fi_9356319.svg);
}
.cart-panel-item--4 .cart-panel-item__title{
  background-image:url(../svg/icons/fi_10389840.svg);
}
.cart-panel-item--5 .cart-panel-item__title{
  background-image:url(../svg/icons/fi_4544406.svg);
}

.cart-panel-item__title{
  padding-left:3.5rem;
  font-size:1.4rem;
  line-height:2.5rem;
  font-weight:700;
  background-image:url(../svg/icons/discount.svg);
  background-position:center left;
  background-repeat:no-repeat;
  background-size:2.5rem;
}

.cart-panel-item__text{
  font-size:1.4rem;
  line-height:1.8rem;
}

/*! Order pages */
.grey-panel{
  padding:2rem;
  border-radius:2rem;
  background-color:var(--color-grey-1);
}

.button--return{
  gap:0.8rem;
  padding-left:1.9rem;
  text-align:left;
}
.button--return .icon{
  position:relative;
  top:0.1rem;
  transform:scaleX(-1);
}
.order-confirmation-panel p{
  margin-bottom:0.6rem;
}
.order-confirmation-panel .dense-text{
  margin-top:-0.3rem;
}
.order-confirmation-panel .dense-text:last-child{
  margin-bottom:0.2rem;
}

.order-confirmation-title{
  display:flex;
  align-items:center;
  min-height:3.4rem;
  padding-left:4.4rem;
  margin-bottom:0.9rem;
  font-size:2.2rem;
  line-height:2.1rem;
  font-weight:700;
  background-image:url(../svg/icons/check-circle.svg);
  background-position:top left;
  background-repeat:no-repeat;
  background-size:3.4rem;
}
.order-confirmation-title span{
  margin-top:-0.4rem;
}

.security-panel{
  display:flex;
  flex-direction:column;
  gap:2rem;
  padding:2rem;
  border-radius:1.4rem;
  background-color:var(--color-grey-1);
}

.order-form .submit-button{
  width:100%;
}
.order-form .submit-button .icon{
  order:1;
}

.order-table thead{
  display:table-header-group;
}
.order-table th:nth-child(1){
  width:50.3%;
}
.order-table th:nth-child(2){
  width:16.2%;
}
.order-table th:nth-child(3){
  width:16.2%;
}
.order-table th:nth-child(4){
  width:17.3%;
  padding-right:1.8rem;
  text-align-last:right;
}
.order-table > tbody > tr > td{
  padding:0.9rem 1rem 1rem;
}
.order-table > tbody > tr:last-child > td:first-child, .order-table > tbody > tr:last-child > td:last-child{
  border-radius:0;
}
.order-table .cart-item td{
  border-bottom:none;
  padding-bottom:0;
}
.order-table .cart-item td:nth-child(1){
  width:50.3%;
}
.order-table .cart-item td:nth-child(2){
  width:16.2%;
}
.order-table .cart-item td:nth-child(3){
  width:16.2%;
}
.order-table .cart-item td:nth-child(4){
  width:17.3%;
  padding-right:1.8rem;
  text-align-last:right;
}
.order-table .cart-item__total-price{
  font-weight:700;
}

.order-option{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:1rem;
  width:100%;
  padding-bottom:0.1rem;
}

.order-option__price{
  font-size:1.6rem;
  line-height:1.5rem;
  font-weight:700;
}

.order-total-wrapper{
  display:flex;
  flex-direction:column;
  padding:1rem 2rem 1.2rem;
  border-radius:0 0 1.4rem 1.4rem;
  background-color:var(--color-grey-1);
}

.discount-code{
  display:flex;
  align-items:center;
  gap:2rem;
  padding-bottom:0.9rem;
  border-bottom:1px solid var(--color-white);
}
.discount-code label{
  width:100%;
}

.discount-code__title{
  font-size:1.6rem;
  line-height:1.5rem;
  font-weight:700;
}

.order-total{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding-top:1rem;
}

.order-total__price{
  display:flex;
  align-items:center;
  gap:1rem;
  font-size:1.2rem;
  line-height:1.4rem;
}
.order-total__price .price{
  font-size:1.6rem;
  line-height:1.5rem;
  font-weight:700;
}
.payment-information .hidden-field{
  display:none;
}

.payment-information__crypto-field{
  gap:2rem;
}

.crypto-methods{
  display:flex;
  flex-wrap:wrap;
  gap:1rem;
}

.crypto-method{
  display:flex;
  width:10.5rem;
  height:10.5rem;
}
.crypto-method input[type=radio]{
  -webkit-appearance:none;
}

.crypto-radio{
  display:flex;
  flex-shrink:0;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  gap:0.2rem;
  width:10.5rem;
  height:10.5rem;
  border:2px solid var(--color-white);
  border-radius:1rem;
  background-color:var(--color-white);
  transition:border-color var(--transition-medium-cubic);
  cursor:pointer;
}
.crypto-radio:hover, .crypto-radio:focus-visible{
  border-color:var(--color-primary);
}
.crypto-radio .icon{
  font-size:4rem;
}

.crypto-radio__text{
  font-size:1.3rem;
  line-height:1;
  font-weight:700;
}

.crypto-radio-input:checked + .crypto-radio{
  border-color:var(--color-primary);
}

.warning-field{
  display:flex;
  align-items:center;
  gap:1rem;
  min-height:4.8rem;
  padding:0.5rem 2rem;
  border-radius:1rem;
  font-size:1.5rem;
  line-height:1.4rem;
  background-color:var(--color-white);
}

.warning-field__icon .icon{
  position:relative;
  top:0.1rem;
  font-size:2rem;
}

.warning-field__timer{
  font-weight:700;
}

.crypto-transaction-info{
  display:grid;
  grid-template-columns:14rem auto;
  gap:1.6rem;
}
.crypto-transaction-info__qr{
  grid-row:1/span 2;
  margin-top:0.4rem;
}
.crypto-transaction-info__row--payment-id{
  grid-column:span 2;
}

.crypto-transaction-info__label{
  margin-bottom:0.5rem;
  font-size:1.3rem;
  line-height:1;
}

.crypto-transaction-info__field{
  position:relative;
  display:flex;
  align-items:center;
  gap:1rem;
  width:100%;
  min-height:4.8rem;
  padding:0.5rem 1.4rem 0.7rem 2rem;
  border-radius:1rem;
  font-size:1.5rem;
  line-height:1.4rem;
  background-color:var(--color-white);
}
.crypto-transaction-info__field .crypto-amount,
.crypto-transaction-info__field .crypto-address{
  font-weight:700;
}
.crypto-transaction-info__field .fiat-discount{
  color:var(--color-red);
}
.crypto-transaction-info__field .fiat-amount{
  margin-left:0.2rem;
}
.crypto-transaction-info__field .copy-text{
  word-break:break-all;
}
.crypto-transaction-info__field .copy-button{
  margin-left:auto;
}
@media (min-width: 600px){
  .pack-radios .form-radio-wrapper{
    width:calc(50% - 1.5rem);
  }
  .pack-radios:has(.form-radio-wrapper:nth-last-child(n+6)) .form-radio-wrapper:first-child{
    width:calc(50% - 1.5rem);
  }
  .delivery-radios .form-radio-wrapper{
    max-width:40.8rem;
  }
  .gift-card-balance{
    gap:2rem;
  }
  .cart-total__wrapper .discount-price{
    font-size:1.4rem;
  }
  .discount-code__title{
    flex-shrink:0;
  }
  .crypto-transaction-info__row--payment-id{
    margin-top:0.4rem;
  }
}
@media (min-width: 830px){
  .main__heading{
    margin-bottom:0.8rem;
  }
  .main__heading:has(.button) .h1{
    top:-0.4rem;
  }
  .main__heading .link{
    position:relative;
    top:0.3rem;
    font-size:1.5rem;
  }
  .panel__header{
    padding:1.8rem 2rem 2.1rem;
  }
  .panel__header .h2{
    font-size:2rem;
    line-height:1.9rem;
  }
  .panel__content{
    padding:2rem;
  }
  .table th{
    padding:2.2rem 0;
    font-size:1.5rem;
    line-height:1.4rem;
  }
  .table th:first-child{
    padding-left:1.8rem;
  }
  .table > tbody > tr:last-child > td{
    padding-bottom:0.3rem !important;
  }
  .product-table th:nth-child(1){
    width:40.3%;
  }
  .product-table th:nth-child(2){
    width:15.4%;
  }
  .product-table th:nth-child(3){
    width:26.7%;
  }
  .product-table th:nth-child(4){
    width:17.6%;
  }
  .product-table td{
    padding:0.5rem 0.6rem 0.5rem 0;
  }
  .product{
    font-size:1.6rem;
  }
  .product__info{
    padding-left:1.8rem;
  }
  .product__info:has(.product__delivery){
    min-height:3.4rem;
  }
  .product__info--sale{
    gap:0;
    padding-top:0;
    padding-left:6.2rem;
    background-position:center left 1.8rem;
    background-size:3.4rem;
  }
  .product__quantity{
    line-height:1.5rem;
  }
  .product__delivery{
    font-size:1.4rem;
  }
  .product__price-wrapper{
    display:flex;
    align-items:center;
    gap:1rem;
    padding-right:1.5rem;
    text-align:left;
  }
  .product__discount{
    display:flex;
    flex-direction:column;
    gap:0.4rem;
    font-size:1.4rem;
  }
  .product__discount span{
    font-size:1.2rem;
  }
  .product__price{
    width:100%;
  }
  .product__button{
    gap:1.1rem;
    width:fit-content;
    padding:0 2rem;
  }
  .gift-wrapper .button{
    gap:1rem;
    max-width:18.7rem;
    padding:0 2rem;
  }
  .info-panel__header{
    justify-content:center;
  }
  .info-panel__heading{
    display:none;
  }
  .info-panel__image{
    margin-left:0;
  }
  .info-panel__image img{
    width:17.5rem;
    height:17.5rem;
  }
  .info-panel--gift .info-panel__image img{
    width:20.8rem;
    height:20.8rem;
  }
  .cart-form{
    gap:1.6rem;
  }
  .cart-table thead{
    display:table-header-group;
  }
  .cart-table > tbody > tr:last-child > td{
    padding-bottom:1.1rem !important;
  }
  .cart-table > tbody > tr > td{
    padding:1.2rem 0 1.3rem;
  }
  .cart-item{
    font-size:1.6rem;
  }
  .cart-item td:nth-child(1){
    width:32%;
    padding-left:1.8rem;
  }
  .cart-item td:nth-child(2){
    width:16.4%;
    padding-right:0.6rem;
  }
  .cart-item td:nth-child(3){
    width:19.4%;
  }
  .cart-item td:nth-child(4){
    width:19.4%;
  }
  .cart-item td:nth-child(5){
    width:7%;
  }
  .cart-item__brand-name{
    position:relative;
    top:-0.2rem;
  }
  .cart-item__price-wrapper{
    flex-direction:row;
    align-items:center;
    gap:1rem;
    padding-left:0;
  }
  .cart-item__price-wrapper .price{
    top:-0.2rem;
    left:0;
  }
  .discount-price{
    flex-direction:column;
    align-items:initial;
    gap:0.3rem;
    padding-left:0.1rem;
    font-size:1.4rem;
  }
  .discount-label{
    font-size:1.2rem;
    line-height:1.8rem;
  }
  .cart-item__remove{
    padding-right:0.6rem;
    padding-left:0.2rem;
  }
  .cart-remove{
    width:3.4rem;
  }
  .cart-remove .icon{
    font-size:2.2rem;
  }
  .cart-item__caption{
    font-size:1.4rem;
  }
  .delivery-radios{
    justify-content:space-between;
  }
  .cart-panel-item__title{
    line-height:1.6rem;
  }
  .order-confirmation-panel .dense-text{
    margin-top:1rem;
    line-height:2.2rem;
  }
  .order-table > tbody > tr > td{
    padding-bottom:1.1rem;
  }
  .order-option{
    padding-left:1.8rem;
  }
  .order-option__price{
    padding-right:1.8rem;
  }
}
@media (min-width: 830px) and (min-width: 1100px){
  .cart-item td:nth-child(1){
    width:40.3%;
  }
  .cart-item td:nth-child(2){
    width:15.4%;
  }
  .cart-item td:nth-child(5){
    width:5.6%;
  }
}
@media (min-width: 1280px){
  .pack-radios{
    justify-content:space-between;
    column-gap:1rem;
  }
  .pack-radios .form-radio-wrapper{
    width:17.9rem;
  }
  .pack-radios .form-radio-wrapper:first-child{
    width:8.1rem;
  }
  .pack-radios:has(.form-radio-wrapper:nth-last-child(n+6)){
    column-gap:4rem;
  }
  .pack-radios:has(.form-radio-wrapper:nth-last-child(n+6)) .form-radio-wrapper{
    width:calc(50% - 2rem) !important;
  }
  .crypto-methods{
    justify-content:space-between;
  }
}
@media (max-width: 829.98px){
  .main__content:has(.cart-form) .h1{
    position:relative;
    top:-0.2rem;
    line-height:2.4rem;
  }
  .cart-item tbody{
    display:flex;
    flex-direction:column;
  }
  .cart-item-content{
    display:grid;
    grid-template-columns:34.8% 32.7% auto 2.4rem;
    row-gap:0.8rem;
    width:100%;
  }
  .cart-item-content td:nth-child(-n+2){
    border:none;
  }
  .cart-item__brand{
    grid-column:1/4;
    grid-row:1;
    display:flex;
    flex-direction:column;
  }
  .cart-item__brand::before{
    margin-bottom:0.1rem !important;
  }
  .cart-item__brand::before,
  .cart-item__qty::before,
  .cart-item__pack-price::before,
  .cart-item__total-price::before{
    content:attr(data-caption);
    display:block;
    margin-bottom:0.4rem;
    font-size:1.3rem;
    line-height:1;
    color:rgba(38, 45, 56, 0.75);
  }
  .cart-item__qty .qty-input{
    padding-top:0.5rem;
  }
  .cart-item__remove{
    grid-column:4rem;
    grid-row:1;
  }
  .order-table > tbody > tr:last-child > td{
    padding-bottom:1rem !important;
  }
  .order-table th:nth-child(1),
  .order-table .cart-item td:nth-child(1){
    width:44.4%;
  }
  .order-table th:nth-child(2),
  .order-table .cart-item td:nth-child(2){
    width:11.7%;
  }
  .order-table th:nth-child(3),
  .order-table .cart-item td:nth-child(3){
    width:25%;
  }
  .order-table th:nth-child(4),
  .order-table .cart-item td:nth-child(4){
    width:20.3%;
    padding-right:1rem;
    text-align-last:right;
  }
  .order-table .cart-item tbody{
    display:table-row-group;
  }
  .order-table .cart-item td:nth-child(4){
    padding-right:0;
  }
  .order-table .cart-item-content{
    display:table-row;
  }
  .order-table .cart-item__brand{
    display:table-cell;
  }
  .order-table .cart-item__brand-name{
    display:inline-block;
    line-height:1.4rem;
  }
}
@media (max-width: 599.98px){
  .product__button .button__text{
    display:none;
  }
  .info-panel--gift .h1{
    margin-top:-0.6rem;
  }
  .pack-radios{
    flex-direction:column;
    row-gap:1.5rem;
  }
  .delivery-radios{
    flex-direction:column;
    row-gap:1.5rem;
  }
  .add-gift-card .h3{
    top:-0.1rem;
  }
  .cart-total__wrapper{
    display:grid;
    width:fit-content;
    grid-template-columns:52% auto;
    column-gap:1rem;
    row-gap:0;
  }
  .cart-total__savings{
    margin-top:0.6rem;
    font-size:1.4rem;
    line-height:1;
  }
  .cart-total__price{
    grid-column:2;
    grid-row:1/3;
  }
  .cart-form__controls{
    flex-direction:column;
  }
  .cart-form__controls .button{
    max-width:unset;
  }
  .button--return{
    min-width:19.2rem;
    width:min-content;
    padding:0 1.8rem;
    line-height:1.4rem;
  }
  .order-confirmation-panel{
    margin-bottom:0.9rem;
  }
  .order-confirmation-panel p{
    margin-bottom:1.8rem;
    font-size:1.4rem;
    line-height:1.8rem;
  }
  .order-confirmation-title{
    min-height:3rem;
    padding-left:4rem;
    margin-bottom:1.4rem;
    font-size:1.8rem;
    background-size:3rem;
  }
  .order-form{
    margin-bottom:1rem;
  }
  .order-option{
    padding:0.3rem 0 0.2rem 0;
  }
  .order-option__price{
    font-size:1.4rem;
    line-height:1;
  }
  .order-total-wrapper{
    padding:1rem 1.2rem 1.2rem;
  }
  .discount-code{
    gap:1rem;
  }
  .discount-code__title{
    font-size:1.4rem;
    line-height:1.4rem;
  }
  .crypto-methods{
    gap:0.5rem;
  }
  .crypto-method{
    width:8rem;
    height:8rem;
  }
  .crypto-radio{
    width:8rem;
    height:8rem;
  }
  .crypto-radio .icon{
    font-size:3rem;
  }
  .crypto-radio__text{
    font-size:1rem;
  }
  .warning-field{
    font-size:1.3rem;
    line-height:1;
  }
  .crypto-transaction-info{
    display:flex;
    flex-direction:column;
    gap:2rem;
  }
  .crypto-transaction-info__qr{
    display:none;
    order:1;
    width:14rem;
    margin:0 auto;
  }
  .crypto-transaction-info__field{
    font-size:1.3rem;
    line-height:1;
  }
}
@media (max-width: 389.98px){
  .product-table th:nth-child(1){
    width:30%;
  }
  .cart-item__total-price{
    grid-column:3/5;
  }
  .button--return{
    min-width:18rem;
    text-align:center;
  }
  .button--return .icon{
    display:none;
  }
  .discount-code{
    flex-wrap:wrap;
  }
  .discount-code label{
    width:calc(100% - 9.4rem);
  }
  .discount-code__title{
    width:100%;
  }
  .crypto-methods{
    justify-content:center;
    gap:1rem;
  }
}
@media (max-width: 359.98px){
  .main__heading:has(.button) .h1{
    flex-shrink:1;
  }
  .crypto-transaction-info__field .crypto-amount{
    font-size:1.2rem;
    line-height:1.3rem;
  }
}

@media (max-width: 830px){
    .product__button .button__text{
        display:none;
    }
}