/*!
Theme Name: starter-theme
Theme URI: https://github.com/Jeyzik
Author: Jeyzik
Author URI: https://github.com/Jeyzik
Description: starter-theme
Version: 1.0.0
Requires PHP: 8.1
Requires MySQL: 8.0
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: starter-theme
Tags: custom-logo, carbon-fields, e-commerce, multi language

This theme, like WordPress, is licensed under the GPL.

*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------

Here is where you can add your own CSS to the starter theme.

--------------------------------------------------------------*/

.single-product .holder .product-detail .head .detail .tag {
  background: #019221;
}
.single-product .holder .product-detail .head .detail .hit {
  background: #e84e0f;
}

.catalog-find {
  margin-top: 20px;
}

.single-product-price-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}
.single-product-price-info .product-price .price-old {
  font-weight: 600;
  font-size: 1em;
  line-height: 125%;
  text-decoration: line-through;
  color: #999;
  margin-bottom: 4px;
}
.single-product-price-info .product-price .price-new {
  font-weight: 600;
  font-size: 1.5em;
  line-height: 117%;
  color: #17171c;
}
header .holder .right-menu .language .lang-menu .current {
  display: none;
}

.blog-grid .card .image-wrapper img {
  min-height: 300px;
}

@media (max-width: 767px) {
  .blog-grid .card .image-wrapper img {
    min-height: unset;
  }

  .catalog-grid .card .product-price {
    font-size: 14px;
  }

  @media (max-width: 500px) {
    .blog-grid .card .image-wrapper img {
      height: 220px !important;
    }

    .catalog-grid .card .image-wrapper img {
      height: 150px !important;
      /* object-fit: cover !important; */
    }
  }

  .product-price {
    font-size: 18px;
  }
}

.catalog-grid .card .product-price {
  font-size: 18px;
}

.catalog-grid .card .name {
  min-height: auto !important;
  height: 56px;
}

.return-policy {
  max-width: 605px !important;
}

.return-conditions-btn {
  display: flex;

  outline: none;
  border: none;
  background: unset;
  color: #010101;
  text-decoration: underline;
  font-size: 14px;
  transition: all 0.3s ease-in-out;
}
.return-conditions-btn svg {
  margin-left: 8px;
  width: 16px;
  height: 16px;
  stroke: #010101;
  transition: all 0.3s ease-in-out;
}
.return-conditions-btn:hover {
  color: #007cc5;
  cursor: pointer;
}
.payment-delivery-policy ul {
  padding-left: 25px;
}

.single-product-info-btn {
  margin-top: 15px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

@media (max-width: 500px) {
  .single-product-info-btn {
    gap: 10px;
  }
}

header .holder .right-menu .cart {
  display: inline-flex;
  margin-left: 1.5rem;
}
header .holder .right-menu .cart .icon {
  position: relative;
  display: inline-flex;
  cursor: pointer;
}
header .holder .right-menu .cart .cart-badge {
  position: absolute;
  top: -4px;
  right: -6px;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: #e84e0f;
  color: #fff;
  font-size: 8px;
  line-height: 14px;
  font-weight: 700;
  text-align: center;
  z-index: 2;
  display: none;
}
header .holder .right-menu .cart.has-items .cart-badge {
  display: inline-block;
}
.order-now.is-disabled,
.order-now:disabled {
  background: #747474;
  border-color: #747474;
  cursor: not-allowed;
  pointer-events: none;
}

.aside-cart {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 548px;
  background-color: #fff;
  z-index: 999;
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  visibility: hidden;
  transition:
    transform 0.3s ease,
    visibility 0.3s ease;
}
.aside-cart.is-open {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  visibility: visible;
}

.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(23, 23, 28, 0.5);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
  z-index: 998;
}
.cart-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

body.cart-open {
  overflow: hidden;
}
.aside-cart .container {
  padding: 0 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.aside-cart .container .header {
  padding: 24px 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.aside-cart .container .header .cart-title {
  font-size: 2rem;
  font-weight: 600;
  line-height: 120%;
  color: #17171c;
}
.aside-cart .container .header .close-cart {
  display: inline-flex;
  cursor: pointer;
}
.aside-cart .container .header .cart-title span {
  color: #999999;
  font-size: 1rem;
  line-height: 20px;
  font-weight: 600;
  margin-left: 0.75rem;
}

.aside-cart .container .buy-info {
  background: #f6f7f8;
  margin: 0 -24px;
  padding: 11px 0;
  border-top: 1px solid #e5e5e5;
}

.aside-cart .container .buy-info .info {
  padding: 0 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.875rem;
}
.aside-cart .container .buy-info .info span {
  display: inline-flex;
}
#orders {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
#orders .cart-empty {
  text-align: center;
  color: #888;
  font-size: 1rem;
  line-height: 140%;
  padding: 24px 0;
}
#orders .product {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}
#orders .product .cart-image {
  width: 7.5rem;
  height: 6.75rem;
  object-fit: contain;
}
#orders .product .product-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
#orders .product .product-info .in-stock {
  font-weight: 400;
  font-size: 0.75rem;
  line-height: 140%;
  color: #17171c;
}
#orders .product .product-info .head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}
#orders .product .product-info .head h4.product-title {
  font-weight: 600;
  font-size: 1rem;
  line-height: 125%;
  color: #17171c;
}
#orders .product .product-info .details {
  display: flex;
  justify-content: space-between;
  gap: 8px;
}
#orders .product .product-info .details .price-info {
  display: flex;
  gap: 2rem;
}
#orders .product .product-info .details .count-info {
  display: flex;
  align-items: center;
  gap: 4px;
  user-select: none;
}
#orders .product .product-info .details .count-info .plus,
#orders .product .product-info .details .count-info .minus {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  width: 28px;
  height: 28px;
}
#orders .product .product-info .details .count-info .input-count {
  width: 40px;
  height: 26px;
  border: 1px solid #e5e5e5;

  display: flex;
  align-items: center;
  justify-content: center;

  font-weight: 600;
  font-size: 14px;
  line-height: 129%;
  text-align: center;
  color: #010101;
}
#orders .product .product-info .details .price-info .main-price .current-price {
  margin-bottom: 2px;
}
#orders
  .product
  .product-info
  .details
  .price-info
  .main-price
  .discount-price {
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 114%;
  text-decoration: line-through;
  color: #a2a2a4;
}
#orders .product .product-info .details .price-info .main-price .current-price,
#orders .product .product-info .details .price-info .count-price {
  font-weight: 600;
  font-size: 1rem;
  line-height: 125%;
  color: #17171c;
}
#orders .product .product-info .head #remove-from-cart {
  cursor: pointer;
  display: inline-flex;
  user-select: none;
}
.aside-cart .container .buy-info .info p {
  font-weight: 400;
  font-size: 1rem;
  line-height: 140%;
  color: #010101;
}
.aside-cart .container .total-order {
  border-top: 1px solid #e5e5e5;
  background: #f6f7f8;
  margin: 0 -24px;
  padding: 24px 0;
  margin-top: auto;
}
.aside-cart .container .total-order .order-holder {
  padding: 0 24px;
}
.aside-cart .container .total-order .btn {
  width: 100%;
}

.aside-cart .container .total-order .order-holder .total-price {
  display: flex;
  justify-content: space-between;
  margin-bottom: 24px;
}
.aside-cart .container .total-order .order-holder .total-price .price {
  display: flex;
  align-items: flex-end;
  gap: 12px;
}
.aside-cart
  .container
  .total-order
  .order-holder
  .total-price
  .price
  .discount-full {
  font-weight: 600;
  font-size: 1rem;
  line-height: 125%;
  text-decoration: line-through;
  text-align: right;
  color: #888;
}
.aside-cart
  .container
  .total-order
  .order-holder
  .total-price
  .price
  .price-full {
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 117%;
  color: #010101;
}

.aside-cart .container .total-order .order-holder .total-price .price-name {
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 117%;
  color: #17171c;
}

.catalog-grid .card .btns {
  justify-content: space-between;
}
.catalog-grid .card .btns .order-now {
  font-weight: 600;
  font-size: 1em;
  line-height: 125%;
  color: #fff;
  align-items: center;
  gap: 12px;
  max-height: 48px;
}
.catalog-grid .card .btns .order-now .icon {
  display: inline-flex;
}
.catalog-grid .card .btns .price {
  display: flex;
  align-items: center;
}
.catalog-grid .card .btns .price .old {
  font-weight: 600;
  font-size: 1em;
  line-height: 125%;
  text-decoration: line-through;
  color: #999;
  margin-bottom: 2px;
}
.catalog-grid .card .btns .price .new {
  font-weight: 600;
  font-size: 1.375em;
  line-height: 118%;
  color: #17171c;
}

.catalog-grid .card .btns a,
.catalog-grid .card .btns button {
  max-width: 151px;
}
@media (max-width: 768px) {
  .aside-cart {
    width: 100%;
    height: 100dvh;
    max-height: 100dvh;
  }

  .aside-cart .container {
    padding: 0 16px;
    min-height: 0;
  }

  .aside-cart .container #orders {
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .aside-cart .container .header {
    padding: 16px 0 16px;
  }
  .aside-cart .container .buy-info .info {
    gap: 14px;
  }

  .aside-cart .container .buy-info .info p {
    font-size: 14px;
    line-height: 150%;
  }
  .aside-cart .container .total-order {
    padding: 16px 0;
    padding-bottom: calc(16px + env(safe-area-inset-bottom));
  }
  .aside-cart .container .total-order .order-holder {
    padding: 0 24px;
  }
  .aside-cart .container .total-order .order-holder .total-price {
    margin-bottom: 12px;
  }

  .aside-cart .container .total-order .order-holder .total-price .price-name {
    font-size: 18px;
    line-height: 120%;
    color: #17171c;
  }
}

@media (max-width: 500px) {
  .aside-cart .container .header .cart-title {
    font-size: 22px;
  }
  .aside-cart .container .total-order .order-holder .total-price .price {
    gap: 8px;
  }
  .aside-cart
    .container
    .total-order
    .order-holder
    .total-price
    .price
    .discount-full {
    font-size: 14px;
  }
  .aside-cart
    .container
    .total-order
    .order-holder
    .total-price
    .price
    .price-full {
    font-size: 18px;
  }
  .aside-cart .container .header .cart-title span {
    font-size: 14px;
  }
  .aside-cart .container .buy-info .info p {
    font-size: 12px;
  }

  #orders .product .cart-image {
    width: 100px;
    height: 90px;
  }

  #orders .product .product-info .head h4.product-title {
    font-size: 14px;
  }
  #orders .product .product-info .in-stock {
    font-size: 12px;
  }
  #orders
    .product
    .product-info
    .details
    .price-info
    .main-price
    .current-price,
  #orders .product .product-info .details .price-info .count-price {
    font-size: 14px;
  }

  #orders
    .product
    .product-info
    .details
    .price-info
    .main-price
    .discount-price {
    font-size: 12px;
  }

  #orders .product .product-info .details {
    flex-direction: column;
    gap: 12px;
  }

  .catalog-grid .card .name {
    height: 44px;
  }
  .catalog-grid .card .btns .order-now {
    font-size: 14px;
    min-width: 100%;
  }

  .catalog-grid .card .btns .price .old {
    font-size: 14px;
  }

  .catalog-grid .card .btns .price .new {
    font-size: 18px;
  }

  .single-product-price-info .product-price .price-old {
    font-size: 16px;
  }
  .single-product-price-info .product-price .price-new {
    font-size: 20px;
  }
}

form label .field-required {
  color: #e84e0f;
  margin-left: 5px;
}

/* Cart Page */

.cart-page {
  padding: 1.5em 0 7.5em 0;
}

.cart-page .holder .cart-title {
  font-weight: 600;
  font-size: 1.5em;
  line-height: 117%;
  color: #17171c;
  margin-bottom: 24px;
}

.cart-page .order-content {
  border-top: 1px solid #d4dce1;
}

.cart-page .order-content {
  display: flex;
  gap: 2.5em;
}

.cart-page .order-content .order-form {
  flex: 1;
}

.cart-page .order-content .orders-info {
  flex: 0.94;
  background: #f6f7f8;
  height: 100%;
  padding: 2.5em;
}

.order-contact h3.order-title,
.order-shipping h3.order-title,
.order-payment-method h3.order-title,
.orders-info h2.order-title {
  font-weight: 600;
  font-size: 1.5em;
  line-height: 117%;
  color: #17171c;
  margin-top: 40px;
  margin-bottom: 32px;
}

.orders-info h2.order-title {
  margin: 0;
}

.order-form .order-shipping {
  margin-top: 40px;
  border-top: 1px solid #d4dce1;
}

.order-step-number {
  color: #e84e0f;
  margin-right: 12px;
}

.order-shipping .row {
  margin-top: 32px;
}
.order-shipping .row.is-hidden {
  display: none;
}

.order-shipping .row .frame .row-lines {
  position: relative;
}
.order-shipping .row .frame .row-lines .np-suggest {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 6px);
  z-index: 20;
  max-height: 220px;
  overflow-y: auto;
  background: #fff;
  border: 1px solid #d4dce1;
  border-radius: 10px;
  box-shadow: 0 10px 24px rgba(23, 23, 28, 0.08);
}
.order-shipping .row .frame .row-lines .np-suggest__item {
  display: flex;
  width: 100%;
  border: 0;
  background: transparent;
  padding: 10px 12px;
  text-align: left;
  cursor: pointer;
  flex-direction: column;
  gap: 2px;
}
.order-shipping .row .frame .row-lines .np-suggest__item + .np-suggest__item {
  border-top: 1px solid #f0f1f2;
}
.order-shipping .row .frame .row-lines .np-suggest__item:hover {
  background: #f6f7f8;
}
.order-shipping .row .frame .row-lines .np-suggest__title {
  font-size: 14px;
  line-height: 130%;
  color: #17171c;
}
.order-shipping .row .frame .row-lines .np-suggest__meta {
  font-size: 12px;
  line-height: 130%;
  color: #888;
}

.order-shipping .row .frame .row-lines .icon {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  transition: transform 0.2s ease;
  background: #fff;
}

.order-shipping .row .frame .row-lines:focus-within .icon {
  transform: translateY(-50%) rotate(180deg);
}
.order-shipping .delivery-radios,
.order-payment-method .order-payment-radios {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.order-shipping .radio-item,
.order-payment-method .radio-item {
  display: flex;
  align-items: center;
  gap: 20px;
  cursor: pointer;
  user-select: none;
  font-family: unset;
  color: unset;
  font-size: unset;
  font-weight: unset;
  line-height: unset;
  margin-bottom: unset;
}

/* прячем стандартный radio, но оставляем доступность */
.order-shipping .radio-item input,
.order-payment-method .radio-item input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
}

/* круг как на скрине */
.order-shipping .radio-ui,
.order-payment-method .radio-ui {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid #d4dce1;
  background: #fff;
  display: grid;
  place-items: center;
  box-sizing: border-box;
}

/* синяя точка внутри */
.order-shipping .radio-item input:checked + .radio-ui::after,
.order-payment-method .radio-item input:checked + .radio-ui::after {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #007cc5;
}

/* чуть синее кольцо у выбранного (по желанию; можно убрать) */
.order-shipping .radio-item input:checked + .radio-ui,
.order-payment-method .radio-item input:checked + .radio-ui {
  border-color: #007cc5;
}

/* фокус с клавиатуры */
.order-shipping .radio-item input:focus-visible + .radio-ui,
.order-payment-method .radio-item input:focus-visible + .radio-ui {
  outline: 3px solid rgba(30, 123, 255, 0.25);
  outline-offset: 2px;
}

.order-shipping .radio-text,
.order-payment-method .radio-text {
  line-height: 1.2;
  font-weight: 600;
  font-size: 16px;
  line-height: 125%;
  color: #010101;
  display: flex;
  align-items: center;
  gap: 12px;
  text-wrap: auto;
}

.order-shipping .radio-text .icon,
.order-payment-method .radio-text .icon {
  display: inline-flex;
}

.order-payment-method {
  margin-top: 40px;
  border-top: 1px solid #d4dce1;
}

.order-payment-method .radio-text {
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}
.radio-sub-text {
  font-weight: 400;
  font-size: 12px;
  line-height: 140%;
  color: #a2a2a4;
}

.edit-orders-btn {
  font-weight: 600;
  font-size: 16px;
  line-height: 125%;
  color: #007cc5;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 2px;
  cursor: pointer;
  display: inline-flex;
  background: none;
  outline: none;
  border: none;
  user-select: none;
}

.orders-info .info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.orders-for-payment {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}
.orders-for-payment .product {
  display: flex;
  gap: 32px;
}

.orders-for-payment .product .product-image {
  width: 120px;
  height: 108px;
  object-fit: contain;
}
.orders-for-payment .product .product-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.orders-for-payment .edit-controls {
  display: none;
  align-items: center;
  gap: 8px;
}
.orders-for-payment.is-editing .edit-controls {
  display: inline-flex;
}
.orders-for-payment .edit-controls .btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 1px solid #e5e5e5;
  background: #fff;
  cursor: pointer;
}
.orders-for-payment .edit-controls .remove {
  border: none;
}

.orders-for-payment .product .product-info .product-count {
  display: inline-flex;
}

.orders-for-payment .product .product-info .product-count .name {
  font-weight: 400;
  font-size: 12px;
  line-height: 140%;
  color: #a2a2a4;
}
.orders-for-payment .product .product-info .product-count .name .count {
  color: #17171c;
}
.orders-for-payment .product .product-info .product-name {
  font-weight: 600;
  font-size: 16px;
  line-height: 125%;
  color: #17171c;
}

.orders-for-payment .product .product-info .product-price .price-info {
  display: flex;
  align-items: flex-start;
  gap: 6px;
}

.orders-for-payment .product .product-info .product-price {
  display: flex;
  gap: 32px;
}
.orders-for-payment .product .product-info .product-price .total-price {
  display: flex;
  gap: 6px;
}

.orders-for-payment .product .product-info .product-price .total-price .name {
  font-weight: 400;
  font-size: 12px;
  line-height: 140%;
  color: #a2a2a4;
  display: inline-flex;
  margin-top: 3px;
}
.orders-for-payment .product .product-info .product-price .total-price .price {
  font-weight: 600;
  font-size: 16px;
  line-height: 125%;
  color: #17171c;
}
.orders-for-payment
  .product
  .product-info
  .product-price
  .price-info
  .price-name {
  font-weight: 400;
  font-size: 12px;
  line-height: 140%;
  color: #a2a2a4;
  display: inline-flex;
  margin-top: 3px;
}
.orders-for-payment
  .product
  .product-info
  .product-price
  .price-info
  .price-details {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.orders-for-payment
  .product
  .product-info
  .product-price
  .price-info
  .main-price {
  font-weight: 600;
  font-size: 16px;
  line-height: 125%;
  color: #17171c;
}

.orders-for-payment
  .product
  .product-info
  .product-price
  .price-info
  .old-price {
  font-weight: 600;
  font-size: 14px;
  line-height: 114%;
  text-decoration: line-through;
  color: #a2a2a4;
}
.order-summary {
  padding-top: 24px;
  border-top: 1px solid #d4dce1;
}
.order-summary .frame {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}
.order-summary .frame input {
  max-width: 380px;
}
.order-summary .frame .apply-promocode-btn {
  margin-top: 0;
  width: 100%;
  max-width: 180px;
}

.order-summary .total-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.order-summary .total-info .info-m {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.order-summary .total-info .info-m span:nth-child(1) {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #17171c;
}

.order-summary .total-info .info-m span:nth-child(2) {
  font-weight: 600;
  font-size: 16px;
  line-height: 125%;
  color: #17171c;
}

.order-summary .delivety-info {
  font-weight: 600;
  font-size: 14px;
  line-height: 140%;
  color: #a2a2a4;
  margin-top: 8px;
}

.order-payment {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid #d4dce1;
}

.order-payment .btn {
  margin-top: 24px;
  width: 100%;
}

.order-payment .total-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}
.order-payment .total-price span {
  font-weight: 600;
  font-size: 24px;
  line-height: 117%;
  color: #17171c;
}
.order-payment .privacy-info {
  margin-top: 12px;
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: #17171c;
  text-wrap: auto;
}

.order-payment .privacy-info a {
  display: inline;
  text-decoration: underline;
}

.order-payment .privacy-info a:hover {
  color: #007cc5;
}

@media (max-width: 768px) {
  .cart-page .order-content {
    flex-direction: column;
  }
}

.orders-for-payment .edit-orders-btn {
  display: none;
}

.orders-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
}

.orders-for-payment.is-collapsed {
  display: none;
}
@media (max-width: 500px) {
  .cart-page .holder .cart-title {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .orders-info {
    border-top: 1px solid #e5e5e5;
  }

  .order-contact h3.order-title,
  .order-shipping h3.order-title,
  .order-payment-method h3.order-title,
  .orders-info h2.order-title {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 24px;
  }
  .cart-page input {
    padding: 11px 16px;
  }
  .cart-page .order-contact .row {
    gap: 16px;
  }
  .cart-page .order-shipping .row {
    gap: 14px;
  }
  .order-form .order-shipping {
    margin-top: 20px;
  }

  .order-shipping .radio-text,
  .order-payment-method .radio-text {
    font-size: 14px;
    gap: 8px;
  }
  .order-shipping .radio-item,
  .order-payment-method .radio-item {
    gap: 14px;
  }
  .order-shipping .row {
    margin-top: 24px;
    margin-bottom: 0;
  }
  .order-payment-method .radio-text {
    align-items: flex-start;
    gap: 2px;
  }

  .orders-info .info {
    flex-direction: row;
    align-items: flex-start;
  }
  .cart-page .order-content .orders-info {
    padding: 20px 16px;
    margin: 0 -16px;
  }
  .orders-info .info .edit-orders-btn {
    display: none;
  }
  .orders-info h2.order-title {
    margin-top: 0;
    margin-bottom: 24px;
  }
  .orders-for-payment {
    margin-top: 0;
  }

  .orders-for-payment .product .product-image {
    width: 100px;
    height: 90px;
  }
  .orders-for-payment .product {
    gap: 12px;
  }
  .orders-for-payment .product .product-info {
    gap: 8px;
  }
  .orders-for-payment .product .product-info .product-name {
    text-wrap: auto;
    font-size: 14px;
  }
  .orders-for-payment
    .product
    .product-info
    .product-price
    .price-info
    .main-price {
    font-size: 14px;
  }
  .orders-for-payment
    .product
    .product-info
    .product-price
    .price-info
    .old-price {
    font-size: 12px;
  }

  .orders-for-payment
    .product
    .product-info
    .product-price
    .total-price
    .price {
    font-size: 14px;
  }

  .orders-for-payment .edit-orders-btn {
    display: flex;
  }
  .edit-orders-btn {
    font-size: 14px;
    justify-content: center;
  }

  .orders-toggle {
    display: inline-flex;
  }

  .orders-toggle svg {
    transition: transform 0.2s ease;
  }

  .orders-toggle.is-collapsed svg {
    transform: rotate(180deg);
  }

  .order-summary .frame {
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
  }
  .order-summary .frame .btn {
    max-width: 100%;
  }

  .order-summary .total-info .info-m span {
    font-size: 14px !important;
  }
  .order-summary .delivety-info {
    font-size: 13px;
  }
  .order-summary .total-info {
    gap: 8px;
  }
  .order-payment {
    margin-top: 20px;
    padding-top: 20px;
  }

  .order-payment .total-price span {
    font-size: 16px;
  }
  .order-payment .btn {
    margin-top: 20px;
  }
}
.order-confirm {
  padding: 80px 0;
}

.order-confirm .holder .order-title {
  font-weight: 600;
  font-size: 36px;
  line-height: 120%;
  color: #010101;
  text-align: center;
  margin-bottom: 20px;
}

.order-confirm .holder .order-number {
  font-weight: 400;
  font-size: 20px;
  line-height: 130%;
  color: #747474;
  margin-bottom: 20px;
  text-align: center;
}

.order-confirm .holder .text-order {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  text-align: center;
  color: #17171c;
  text-align: center;
  text-wrap: auto;
  max-width: 398px;
  margin: 0 auto;
  margin-bottom: 25px;
}
.order-confirm .holder .text-order a {
  display: inline;
  text-decoration: underline;
}

.order-confirm .holder .text-order a:hover {
  color: #007cc5;
}

.order-confirm .holder .btn {
  padding: 0.8125em 2.5em;
}

.order-confirm .holder .btn-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 44px;
}

@media (max-width: 500px) {
  .order-confirm {
    padding: 64px 0;
  }
  .order-confirm .holder .order-title {
    font-size: 24px;
  }
  .order-confirm .holder .order-number {
    font-size: 16px;
  }
  .order-confirm .holder .btn {
    width: 100%;
  }
}
.order-shipping .row:last-child {
  flex-direction: column;
}

/* Mobile textarea resize visibility override (wins over style.min.css) */
@media (max-width: 768px) {
  textarea {
    resize: vertical !important;
    overflow: auto !important;
    padding-right: 20px !important;
    padding-bottom: 16px !important;
    background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Cpath%20d%3D%22M7.41421%2020.1421L6%2018.7279L18.7279%205.99998L20.1421%207.4142L7.41421%2020.1421Z%22%20fill%3D%22%23E5E5E5%22%20/%3E%3Cpath%20d%3D%22M19.435%2013.7782L13.7782%2019.435L12.364%2018.0208L18.0208%2012.3639L19.435%2013.7782Z%22%20fill%3D%22%23E5E5E5%22%20/%3E%3C/svg%3E") !important;
    background-size: 24px 24px !important;
    background-repeat: no-repeat !important;
    background-position: calc(100% - 3px) calc(100% - 3px) !important;
  }
}

.tab-container .tab-content .item h2,
.tab-container .tab-content .item h3 {
  font-size: 20px;
}

@media (max-width: 500px) {
  .tab-container .tab-content .item h2,
  .tab-container .tab-content .item h3 {
    font-size: 18px;
  }
}
