/* ══════════════════════════════════════════════════════════════
   Cart page redesign (Your cart style — 2 col: items + sticky sidebar)
   ══════════════════════════════════════════════════════════════ */
.ot-cart {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 40px;
  align-items: start;
  margin-top: 20px;
}
.ot-cart__title {
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 20px;
}
.ot-cart__weight { font-size: 14px; font-weight: 400; color: #666; }
.ot-cart__form { margin: 0; padding: 0; }
.ot-cart__items { display: flex; flex-direction: column; }

.ot-cart__item {
  display: flex;
  gap: 14px;
  align-items: stretch;
  padding: 16px 0;
  border-bottom: 1px solid #ececec;
  min-height: 110px;
}
.ot-cart__item:first-child { padding-top: 0; }
.ot-cart__item:last-child { border-bottom: none; }
.ot-cart__item-img {
  flex: 0 0 110px;
  width: 110px;
  height: 110px;
  border-radius: 10px;
  overflow: hidden;
  background: #f5f5f5;
  display: block;
  position: relative;
}
.ot-cart__item-labels {
  position: absolute !important;
  top: 6px;
  left: 6px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 4px;
  pointer-events: none;
}
.ot-cart__item-labels .product-labels--item {
  display: inline-block;
  padding: 3px 8px;
  border-radius: var(--otc-sticker-radius, 8px);
  font-size: 10px;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
  box-shadow: 0 1px 3px rgba(0,0,0,.1);
}
.ot-cart__item-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ot-cart__item-body {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ot-cart__item-top {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: flex-start;
}
.ot-cart__item-name {
  flex: 1 1 auto;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #1a1a1a;
  line-height: 1.35;
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ot-cart__item-name:hover { color: #000; text-decoration: none; }
.ot-cart__item-prices {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.ot-cart__item-discount {
  background: #0FA379;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 20px;
  line-height: 1;
  order: 2;
}
.ot-cart__item-price {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1;
  order: 1;
}
.ot-cart__item-oldprice {
  flex-basis: 100%;
  font-size: 13px;
  color: #999;
  text-decoration: line-through;
  text-align: right;
  order: 3;
}
.ot-cart__item-options { display: flex; flex-wrap: wrap; gap: 6px; }
.ot-cart__item-option {
  display: inline-block;
  background: #f3f3f3;
  color: #555;
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 20px;
  line-height: 1.3;
}
.ot-cart__item-option--more { background: transparent; color: #888; padding-left: 2px; }
.ot-cart__item-recurring,
.ot-cart__item-reward { font-size: 12px; color: #666; }

.ot-cart__item-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
}
.ot-cart__item-actions .ot-cart__qty-select { margin-right: auto; }

.ot-cart__voucher {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 0;
  border-bottom: 1px solid #ececec;
  font-size: 14px;
}
.ot-cart__voucher-desc { flex: 1 1 auto; }
.ot-cart__voucher-amount { font-weight: 700; }

/* Sticky sidebar */
.ot-cart__sidebar {
  position: sticky;
  top: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ot-cart__summary {
  display: flex;
  flex-direction: column;
}
.ot-cart__sum-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.3;
  padding: 18px 0;
  border-bottom: 1px solid #ececec;
}
.ot-cart__sum-row:last-child { border-bottom: none; }
.ot-cart__sum-value { color: #1a1a1a; font-weight: 600; }
.ot-cart__sum-row--discount .ot-cart__sum-value { color: #1a1a1a; }
.ot-cart__sum-row--shipping { flex-wrap: wrap; }
.ot-cart__sum-row--shipping .ot-cart__country-trigger {
  color: #555;
  text-decoration: none;
  font-size: 13px;
  font-weight: 400;
  flex-basis: 100%;
  margin-top: 4px;
}
.ot-cart__sum-row--shipping .ot-cart__country-trigger u { text-underline-offset: 2px; }
.ot-cart__sum-row--total { align-items: flex-start; }
.ot-cart__sum-total { font-size: 16px; font-weight: 700; color: #1a1a1a; line-height: 1.3; }
.ot-cart__sum-vat { font-size: 12px; font-weight: 400; color: #999; margin-top: 2px; }
.ot-cart__sum-total-value { font-size: 18px; font-weight: 700; color: #1a1a1a; }

/* Coupon block */
.ot-cart__coupon { display: flex; flex-direction: column; gap: 6px; }
.ot-cart__label { font-size: 14px; font-weight: 400; color: #555; margin: 0; }
.ot-cart__coupon-row { display: flex; align-items: stretch; gap: 0; }
.ot-cart__input {
  flex: 1 1 auto;
  padding: 12px 14px;
  border: 1px solid #e0e0e0;
  border-right: none;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  font-size: 13px;
  outline: none;
  color: #1a1a1a;
}
.ot-cart__input:focus { border-color: #222; }
.ot-cart__btn-apply {
  flex: 0 0 auto;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  padding: 0 18px;
  font-size: 13px;
  font-weight: 600;
  color: #1a1a1a;
  cursor: pointer;
}
.ot-cart__btn-apply:hover { background: #f5f5f5; }
.ot-cart__coupon-msg,
.ot-cart__credits-msg { font-size: 12px; min-height: 16px; }

/* Credits (reward points) block */
.ot-cart__credits {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 0;
}
.ot-cart__credits-label { font-size: 14px; color: #555; }
.ot-cart__credits-label strong { color: #1a1a1a; }
.ot-cart__btn-apply-dark {
  background: var(--otc-btn-primary, #1f1a17);
  color: var(--otc-btn-primary-text, #fff);
  border: none;
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background .15s;
}
.ot-cart__btn-apply-dark:hover { background: var(--otc-btn-primary-hover, #000); }
.ot-cart__btn-apply-dark:disabled,
.ot-cart__btn-apply-dark[disabled] {
  background: #cccccc;
  color: #999;
  cursor: not-allowed;
}
.ot-cart__btn-apply-dark:disabled:hover,
.ot-cart__btn-apply-dark[disabled]:hover { background: #cccccc; }

/* Geo dropdown — selected city highlight */
.onetap-geo-item.is-selected {
  font-weight: 700 !important;
  color: var(--otc-btn-primary, #222) !important;
}
.onetap-geo-item.onetap-geo-more {
  border-top: 1px solid #ececec;
  margin-top: 6px;
  padding-top: 8px;
  color: #888;
  font-size: 13px;
}

.ot-cart__checkout-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: var(--otc-btn-primary, #1f1a17) !important;
  color: var(--otc-btn-primary-text, #fff) !important;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 16px 20px;
  border-radius: 10px;
  border: none;
  text-decoration: none;
  transition: background .15s;
}
.ot-cart__checkout-btn:hover {
  background: var(--otc-btn-primary-hover, #000) !important;
  color: var(--otc-btn-primary-text, #fff) !important;
  text-decoration: none;
}

.ot-cart__reward-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  color: #555;
  text-align: center;
  padding: 4px 0;
}
.ot-cart__reward-hint strong { color: #1a1a1a; }

.ot-cart__related { margin-top: 40px; }
.ot-cart__related-title {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 20px;
}

@media (max-width: 991px) {
  .ot-cart { grid-template-columns: 1fr; gap: 24px; }
  .ot-cart__sidebar { position: static; }
}
@media (max-width: 640px) {
  .ot-cart__item-img { flex-basis: 88px; width: 88px; height: 88px; }
  .ot-cart__item-top { flex-direction: column; gap: 6px; }
  .ot-cart__item-prices { justify-content: flex-start; }
  .ot-cart__item-oldprice { text-align: left; }
}

a {
  color: black;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type='number'] {
  -moz-appearance: textfield;
}

a:hover,
a:focus {
  color: var(--color-main);
}

.cart-confirm-btn:hover,
.cart-checkout-btn:hover {
  color: white;
}

.form-control {
  background-color: white !important;
}

.rounded {
  border-radius: 14px;
}

.border {
  border: 1px solid hsla(228, 14%, 93%, 1);
}

.delete-all_container {
  padding: 20px 25px;
  border-radius: 14px;
  margin-bottom: 25px;
}

.cart-product_link {
  display: flex;
  align-items: center;
  cursor: pointer;
  white-space: nowrap;
}
.cart-product_link-red:hover {
  color: red;
  transition: var(--transition);
}

.cart-product_link:hover svg path {
  stroke: red;
  transition: var(--transition);
}

.favorite_icon,
.delete-all_icon {
  margin-right: 25px;
}

.product-cart_container {
  display: flex;
  justify-content: space-between;
  padding: 40px 40px 40px 20px;
  border-radius: 14px;
  align-items: center;
  gap: 30px;
}

.product-cart_product {
  display: flex;
  align-items: center;
  gap: 30px;
}

.product-cart_desc {
  display: flex;
  flex-direction: column;
}

.product-cart_name,
.proudct-cart_price {
  margin-bottom: 15px;
  font-size: 26px;
  line-height: 1.25;
  font-weight: 700;
}

.proudct-cart_price {
  white-space: nowrap;
  display: block;
  margin-bottom: 33px;
}

.product-cart_code {
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  color: rgba(99, 99, 99, 1);
  margin-bottom: 15px;
}

.product-cart_btn {
  display: flex;
  gap: 55px;
}

@media (max-width: 991px) {
  .product-cart_btn {
    gap: 40px;
  }
}

.product-cart_btn-quantity {
  display: flex;
  justify-content: flex-end;
}
.popup-cart__quantity {
  padding: 0px;
}
.cart-product_quantity,
.form-control-quantity,
.product-quantity {
  border: none;
  background-color: transparent;
}
.product-quantity {
  border-radius: 5px;
  background: #ffffff;
  width: 100%;
  /* height: 30px; */
  color: #000000;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  text-align: left;
}
.cart-product_gift {
  position: relative;
  /* top: 75px; - ломает в checkout */
  padding: 40px 20px;
  margin-top: 70px;
  min-width: 370px;
  display: flex;
  flex-direction: column;
}
@media (min-width: 1200px) {
  .cart-product_gift {
    position: sticky;
    top: 100px;
  }
}
.cart-product_gift-conteiner {
  padding: 14px 20px;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 20px;
  background-color: var(--color-panel-cart);
}

.cart-confirm-btn {
  padding: 20px;
  background: var(--color-main);
  color: white;
  margin-bottom: 30px;
  width: 100%;
  border: none;
  display: block;
}

.cart-product_label {
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
}

.cart-product_label:nth-child(1) {
  margin-bottom: 5px;
}

.cart-gift-certificate_conteiner {
  display: flex;
  justify-content: space-between;
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
  margin-bottom: 20px;
}

.cart-order_totals {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  padding: 20px 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
}
.cart-order_products {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-bottom: 10px;
}
.cart-order_total {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  padding: 20px 0;
  font-size: 18px;
  font-weight: 600;
  line-height: 20px;
}
.cart-order_product {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-bottom: 10px;
}
.panel-heading {
  padding: 24px 45px 30px 45px;
}

.cart-checkout_link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cart-checkout_link > a {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-checkout_link > .text-h3.collapsed:hover,
.cart-checkout_link > .text-h3.collapsed:focus {
  color: var(--color-main);
}

.panel-heading,
.panel-group .panel-heading + .panel-collapse > .panel-body {
  background-color: unset !important;
  border: unset !important;
}

.panel-body {
  padding: 25px;
}

.contant-payment_container {
  margin-bottom: 40px;
}

.cart-checkout-btn {
  background-color: var(--color-main);
  border: 1px solid var(--color-main);
  color: white;
  max-width: 340px;
  padding: 18px;
  display: block;
  text-wrap: nowrap;
  margin: 0 auto;
}

.panel-group .panel {
  border-radius: 20px;
  margin-bottom: 15px;
}

.cart-delivery_container {
  margin-bottom: 30px;
}

.cart-checkout_select {
  -webkit-appearance: none;
  -moz-appearance: none;
  text-indent: 1px;
  text-overflow: '';
  border: 1px solid #ece9e9;
  width: 100%;
  padding: 12px 12px 12px 74px;
  position: relative;
  margin-bottom: 30px;
  background-image: url(../../../../../image/cart/caret-down.png);
  background-repeat: no-repeat;
  background-position: right;
  background-position-x: 95%;
}

.cart-delivery_radio {
  direction: rtl;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 19px 39px;
}

.cart-delivery_radio-label {
  display: flex;
  flex-direction: column;
  text-align: end;
}

.radio-not-checked {
  border: 1px solid rgba(222, 224, 229, 1);
}

.radio-checked {
  border: 1px solid var(--color-main);
}

.review-header {
  border-bottom: 1px solid #e9e7e7;
  display: flex;
  justify-content: space-between;
  padding-bottom: 20px;
}
.review-header-title {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.5;
  text-align: left;
}
.review-header-btn {
  height: 100%;
  padding: 15px 20px;
  background-color: var(--color-main);
  color: #fff;
  border-radius: 15px;
  border: none;
  cursor: pointer;
}
.review-header-btn:hover {
  background-color: var(--hover-add);
}
input[type='radio'] {
  display: none;
}

input[type='radio'].visible-radio {
  display: block;
}

.review-row {
  display: flex;
  flex-direction: column;
  gap: 25px;
  align-items: start;
}

.review-star-row {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding-inline: 20px;
}
@media (max-width: 510px) {
  .review-star-row {
    padding-inline: 0 !important;
  }
}

.review-label {
  margin-left: 20px;
  margin-bottom: 15px !important;
}

input[type='radio'] + label {
  display: flex;
  cursor: pointer;
}

input[type='radio'] + label:before {
  content: '';
  display: flex;
  position: relative;
  border-radius: 50%;
  border: 1.5px solid rgba(222, 224, 229, 1);
  width: 20px;
  height: 20px;
  margin: 0;
}

input[type='radio']:checked + label:before {
  background-image: url('../../../../../image/cart/radio-check.png');
  background-repeat: no-repeat;
  background-position: center;
  background-color: var(--color-main);
}

.google-map_container {
  padding: 10px;
}

#google_map {
  min-height: 324px;
  background-image: url(../../../../../image/cart/google-map.png);
  background-repeat: no-repeat;
  background-size: cover;
  margin-bottom: 30px;
}

.cart-together {
  position: relative;
}

.cart-together_input-btn {
  position: relative;
}

input#cart-together {
  padding: 12px 163px 12px 12px;
}

.cart-together_btn {
  position: absolute;
  height: 37px;
  width: 155px;
  right: 20px;
  top: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-together_container {
  margin-bottom: 30px;
}

.input-container {
  margin-bottom: 10px;
}

.input-container input[type='checkbox']:not(old) {
  opacity: 1;
  width: 20px;
  height: 20px;
  padding: 0;
  margin: 0;
}

.input-container label {
  position: relative;
}

.input-container label::after {
  /* content: ""; */
  width: 20px;
  height: 20px;
  position: absolute;
  border-radius: 3px;
  border: 1px solid black;
  transform: rotate(0);
  pointer-events: none;
  text-align: center;
  color: #fff;
}

.input-container input[type='checkbox']:checked + label:after {
  /* content: "\2713"; */
  color: var(--color-main);
}

.cart-use-gift_container .input-container label::after {
  bottom: -2px;
  right: 3px;
}

.cart-use-gift_container {
  display: flex;
  gap: 5px;
  margin-bottom: 25px;
}

label[for='use-gift'],
label[for='use-gift'] + span {
  flex: 1 0 auto;
}

.cart-together_title {
  display: block;
  margin-bottom: 30px;
  font-family: Inter;
  font-size: 18px;
  font-weight: 500;
  line-height: 20px;
}

.cart-payment_radio {
  padding: 20px 36px 20px 36px;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.cart-delivery-addres_radio {
  padding: 20px 36px 20px 36px;
  display: flex;
  align-items: center;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 20px;
}

.text-main-color {
  color: var(--color-main);
}

.slider {
  -webkit-appearance: none;
  width: 100%;
  height: 2px;
  border-radius: 5px;
  background: var(--color-main);
  outline: none;
  opacity: 0.7;
  -webkit-transition: 0.2s;
  transition: opacity 0.2s;
}

.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: rgba(246, 246, 246, 1);
  border: 1px solid rgba(232, 232, 232, 1);
  cursor: pointer;
}

.slider::-moz-range-thumb {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: rgba(246, 246, 246, 1);
  border: 1px solid rgba(232, 232, 232, 1);
  cursor: pointer;
}

.slidecontainer {
  display: none;
  gap: 10px;
  align-items: center;
  margin-bottom: 30px;
}
.slidecontainer.active {
  display: flex;
}

.range-value {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(229, 229, 229, 1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.panel-saved {
  background-color: var(--color-panel-cart);
  border: none;
}

.cart-info-saved {
  margin: unset;
  width: 123px !important;
  position: relative;
  top: 15px;
  display: block !important;
}

.cart-info-saved:hover,
.cart-info-saved:focus {
  color: white !important;
}

.proudct-cart_price_container_mob {
  display: none;
}

.cart-info-saved-mob {
  display: none;
}

.contant-payment_container .col-md:nth-last-child(1) {
  margin-bottom: 40px;
}

.cart-payment_radio img,
.cart-delivery-addres_radio img {
  height: 24px;
  object-fit: contain;
}

.cart-delivery-radio_conteiner {
  display: flex;
  gap: 20px;
}

.ukrposhta_conteiner label,
.ukrposhta_conteiner select,
.ukrposhta_conteiner .row {
  margin-bottom: 20px;
}

.input-container label[for='remember-addres']::after {
  content: '';
  position: absolute;
  top: 0px;
  left: -25px;
  width: 20px;
  height: 20px;
  border-radius: 3px;
  border: 1px solid black;
  transform: rotate(0);
  pointer-events: none;
  text-align: center;
  color: #fff;
}

.customCheckbox {
  display: flex;
}

/* responsive */
@media (max-width: 767px) {
  .favorite_icon,
  .delete-all_icon {
    margin-right: 20px;
  }

  .product-cart_btn {
    justify-content: space-between;
  }

  .favorite_text {
    flex: 1 0 auto;
  }

  .panel-heading {
    padding: 24px 20px;
  }

  .panel-body {
    padding: 10px;
  }

  .contant-payment_container .col-md {
    margin-bottom: 16px;
  }

  .panel-title {
    display: flex;
    flex-direction: column;
  }

  /* .cart-checkout_link  {
        margin-bottom: 20px;
    } */

  /* .cart-info-saved {
        display: none !important;

    } */

  /* .cart-info-saved-mob {
        display: block;
        width: 120px;
    } */

  .cart-checkout_saved {
    margin-bottom: 24px;
  }

  /* .cart-info-saved-mob {
        margin: 0 auto;
    } */

  /* .cart-delivery_radio {
        margin-bottom: 24px;
    } */

  .cart-payment_radio,
  .cart-delivery-addres_radio {
    padding: 20px;
    gap: 10px;
  }

  .cart-payment_radio label,
  .cart-delivery-addres_radio label {
    text-wrap: nowrap;
  }
}
@media (max-width: 650px) {
  .proudct-cart_price_container {
    display: none;
  }
  .proudct-cart_price_container_mob {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
  }
  .product-cart_container,
  .product-cart_product {
    flex-wrap: wrap;
    justify-content: center;
  }
  .cart-info-saved {
    display: none;
  }
  .cart-info-saved-mob {
    width: 123px;
    margin: 0px auto;
    padding: 13px;
    transition: var(--transition);
    cursor: pointer;
  }
  .cart-info-saved-mob:hover {
    background: var(--hover-add);
    transition: var(--transition);
  }
}

.test-star {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.btn-review {
  display: flex;
  justify-content: space-between;
  align-items: start;
}

.btn-review-back {
  max-height: 56px;
  padding: 15px 30px;
  background-color: transparent;
  color: #000;
  border: 1px solid #e9e7e7;
}

.btn-review-send {
  max-height: 56px;
  padding: 15px 30px;
  background-color: var(--color-main);
  color: #fff;
  border: 1px solid var(--color-main);
  transition: var(--transition);
}
.btn-review-send:hover {
  background-color: var(--hover-add);
}
@media (max-width: 510px) {
  .btn-review-send,
  .btn-review-back {
    padding: 11px 22px;
    border-radius: 20px;
  }
}
.empty-review {
  margin-top: 60px;
  margin-bottom: 20px;
}

.empty-review-title {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.5;
  margin-top: 40px;
  margin-bottom: 0px;
}

.empty-review-description {
  max-width: 455px;
  text-align: center;
  margin-bottom: 25px;
  margin-top: 15px;
}

.radio-wrapper {
  display: inline-block;
  position: relative;
  cursor: pointer;
  text-align: center;
  margin-bottom: 0px;
  /* Збільшує розмір іконки */
}

.radio-wrapper input[type='radio'] {
  display: none; /* Приховує стандартний радіо інпут */
}

.radio-wrapper .custom-radio {
  position: relative;
  display: inline-block;
}

.radio-wrapper input[type='radio']:checked + .custom-radio::before {
  content: '\f005'; /* Unicode символ для зірочки */
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  color: gold;
  /* font-size: 60px; */
}

.radio-wrapper .custom-radio::before {
  content: '\f006'; /* Unicode символ для порожньої зірочки */
  font-family: 'Font Awesome 5 Free';
  font-weight: 400;
  color: grey;
  /* font-size: 30px; */
}
@media (min-width: 320px) {
  .radio-wrapper .custom-radio::before {
    font-size: 25px;
  }
}
@media (min-width: 440px) {
  .radio-wrapper .custom-radio::before {
    font-size: 30px;
  }
}
@media (min-width: 510px) {
  .radio-wrapper .custom-radio::before {
    font-size: 40px;
  }
}
@media (min-width: 610px) {
  .radio-wrapper .custom-radio::before {
    font-size: 40px;
  }
}
@media (min-width: 768px) {
  .radio-wrapper .custom-radio::before {
    font-size: 50px;
  }
}
@media (min-width: 900px) {
  .radio-wrapper .custom-radio::before {
    font-size: 60px;
  }
}

.rate-text {
  white-space: nowrap;
}
@media (max-width: 480px) {
  .rate-text {
    font-size: 12px !important;
  }
}
.review-text-area {
  height: 180px !important;
}

.cart {
  padding: 0 15px;
}

.count-p {
  left: 20px !important;
  top: 5px !important;
}

@media (max-width: 576px) {
  .count-p {
    left: 5px !important;
    top: 5px !important;
  }
}

.cart-container {
  display: flex;
  gap: 50px;
}
.cart-container > #content {
  width: 100%;
}
.cart-product_gift-mobile-btn {
  display: none;
}
@media (max-width: 1199px) {
  .cart-container {
    flex-direction: column;
  }
  .cart-product_gift {
    margin-top: 0px;
  }
}
@media (max-width: 576px) {
  .cart-product_gift-sticky {
    position: sticky;
    /* bottom: -20px; */
    bottom: -190px;
    background-color: white;
    box-shadow: 0 0 24px 0 rgba(99, 99, 99, 0.26);
    transition: all 0.5s ease-in-out;
  }
  .cart-product_gift-sticky.active {
    bottom: -20px;
  }
  .cart-product_gift {
    padding: 24px 20px;
  }
  .cart-product_gift-conteiner {
    order: 2;
  }
  .cart-confirm-btn {
    order: 1;
  }
  .cart-order_total {
    order: 3;
  }
  .cart-product_gift-mobile-btn {
    background-color: var(--color-main);
    padding: 8px 48px;
    border-radius: 20px;
    width: fit-content;
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
    margin-inline: auto;
  }
  .mobile-arrow {
    transition: all 0.3s ease-in;
    line-height: 1;
    font-size: 11px;
  }
}

.related-products__title {
  color: #2d2d32;
  font-size: 26px;
  font-weight: 700;
  line-height: normal;
  margin: 40px 0 20px;
}
.related-products__block {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.related-products__card {
  position: relative;
  padding: 15px;
  background: #fff;
  transition: 0.2s ease-in-out;
  border-radius: 16px;
  border: 1px solid #ededed;
  /* height: 100%; */
  display: flex;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  flex-direction: column;
  flex: 1 1 25%;
  max-width: calc(25% - 15px);
  justify-content: space-between;
}
.related-products__card:hover {
  border-color: #fff;
  box-shadow: 0 0 12px rgb(152 162 179 / 15%), 0 0 4px rgb(152 162 179 / 15%),
    0 0 2px rgb(152 162 179 / 15%);
}
.related-products__card a {
  display: block;
  text-decoration: none;
}
.related-products__card-button {
  padding: 10px 20px;
  background: var(--color-main);
  color: white;
  margin-top: 20px;
  width: 100%;
  border: none;
  display: block;
  border-radius: 14px;
  text-align: center;
  transition: var(--transition);
}
.related-products__card-button:hover {
  background: var(--hover-add);
  color: white;
}
@media (max-width: 992px) {
  .related-products__card {
    flex: 1 1 33%;
    max-width: calc(33% - 12px);
  }
}
@media (max-width: 576px) {
  .related-products__card {
    flex: 1 1 50%;
    max-width: calc(50% - 10px);
  }
}

/* Wishlist/compare active state — fill icon with Buy button color (btn_primary_color) */
.active-like svg path {
  stroke: var(--otc-btn-primary, #222) !important;
  fill: var(--otc-btn-primary, #222) !important;
}

/* ══════════════════════════════════════════════════════════════
   Review Modal — "Написати відгук"
   ══════════════════════════════════════════════════════════════ */
.ot-review-modal {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  width: 100%;
  max-width: 600px;
  max-height: 595px;
  margin: 60px auto;
  position: relative;
  box-shadow: 0 10px 40px rgba(0,0,0,.12);
}

/* Header: title + close */
.ot-review-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid #e8e8e8;
}
.ot-review-modal__title {
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0;
  line-height: 1.2;
}
.ot-review-modal__close {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  color: #222;
  line-height: 0;
  flex-shrink: 0;
}
.ot-review-modal__close:hover { opacity: .6; }

/* Star rating row */
.ot-review-modal__stars {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 30px;
}
.ot-review-star {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  flex: 1;
  margin: 0;
}
.ot-review-star input[type="radio"] { display: none; }
.ot-review-star__icon::before {
  content: '\f005';
  font-family: 'FontAwesome';
  font-size: 36px;
  color: #ddd;
  transition: color .15s;
}
.ot-review-star input[type="radio"]:checked ~ .ot-review-star__icon::before,
.ot-review-star--active .ot-review-star__icon::before {
  color: #f5a623 !important;
}
.ot-review-star__label {
  font-size: 12px;
  color: #888;
  white-space: nowrap;
}

/* Form fields */
.ot-review-modal__field {
  margin-bottom: 30px;
}
.ot-review-modal__label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #1a1a1a;
  margin-bottom: 10px;
}
.ot-review-modal__input,
.ot-review-modal__textarea {
  display: block;
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  font-size: 14px;
  font-family: inherit;
  color: #222;
  background: #fff;
  outline: none;
  transition: border-color .15s;
  box-sizing: border-box;
}
.ot-review-modal__input:focus,
.ot-review-modal__textarea:focus {
  border-color: #222;
}
.ot-review-modal__textarea {
  resize: none;
  min-height: 120px;
}

/* Buttons */
.ot-review-modal__buttons {
  display: flex;
  gap: 12px;
}
.ot-review-modal__btn {
  flex: 1;
  height: 52px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  border: 1px solid #e0e0e0;
  transition: all .15s;
  font-family: inherit;
}
.ot-review-modal__btn--submit {
  background: #222;
  color: #fff;
  border-color: #222;
  order: 2;
}
.ot-review-modal__btn--submit:hover { background: #444; border-color: #444; }
.ot-review-modal__btn--cancel {
  background: #fff;
  color: #222;
  order: 1;
}
.ot-review-modal__btn--cancel:hover { background: #f7f7f7; }

/* ── Mobile (≤500px): full-screen bottom sheet ── */
@media (max-width: 500px) {
  .ot-review-modal {
    margin: 0;
    max-width: 100%;
    min-height: 100vh;
    border-radius: 0;
    padding: 20px;
    display: flex;
    flex-direction: column;
  }
  .ot-review-modal__header {
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  .ot-review-modal__title { font-size: 16px; }
  .ot-review-star__icon::before { font-size: 28px; }
  .ot-review-modal__stars { margin-bottom: 24px; }
  .ot-review-modal__field { margin-bottom: 24px; }
  .ot-review-modal__buttons {
    flex-direction: column;
    gap: 10px;
    margin-top: auto;
  }
  .ot-review-modal__btn { width: 100%; }
  .ot-review-modal__btn--submit { order: 1; }
  .ot-review-modal__btn--cancel { order: 2; }
}

/* ═══════════════════════════════════════════════════════════════
   Popup cart — redesign (Your cart style)
   Higher specificity via .popup-cart prefix on all selectors
   to override any legacy rules in stylesheet.css
   ═══════════════════════════════════════════════════════════════ */

.popup-cart .popup-cart-container {
  max-width: 720px;
  background: #fff;
  border-radius: 0;
  padding: 0 !important;
  gap: 0 !important;
}

.popup-cart .popup-cart__header {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px 18px !important;
  margin: 0 !important;
  border-bottom: none !important;
}
.popup-cart .popup-cart__header-title {
  font-family: 'Inter', sans-serif;
  font-size: 22px !important;
  font-weight: 700 !important;
  color: #1a1a1a !important;
  margin: 0 !important;
  line-height: 1.2;
}
.popup-cart .popup-cart__header-close {
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
  color: #222;
  line-height: 0;
  transition: opacity .15s;
}
.popup-cart .popup-cart__header-close:hover { opacity: .65; color: #222; }
.popup-cart .popup-cart__header-close svg { width: 20px; height: 20px; }

.popup-cart .popup-cart__goods {
  padding: 0 28px !important;
  max-height: none !important;
  overflow: visible !important;
}

.popup-cart .popup-cart__list {
  display: flex !important;
  flex-direction: column !important;
  gap: 18px !important;
  padding-bottom: 8px;
}

.popup-cart .popup-cart__item {
  display: flex !important;
  flex-direction: row !important;
  gap: 14px !important;
  align-items: stretch !important;
  padding: 0 0 18px !important;
  border: none !important;
  border-bottom: 1px solid #ececec !important;
  border-radius: 0 !important;
  background: transparent !important;
  justify-content: flex-start !important;
  min-height: 110px !important;
}
.popup-cart .popup-cart__item:last-child { border-bottom: none !important; }

.popup-cart .popup-cart__item-img {
  flex: 0 0 110px !important;
  width: 110px !important;
  height: 110px !important;
  border-radius: 10px !important;
  overflow: hidden !important;
  background: #f5f5f5 !important;
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
  position: relative !important;
}
.popup-cart .popup-cart__item-labels {
  position: absolute !important;
  top: 6px !important;
  left: 6px !important;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 4px;
  pointer-events: none;
}
.popup-cart .popup-cart__item-labels .product-labels--item {
  display: inline-block;
  padding: 3px 8px;
  border-radius: var(--otc-sticker-radius, 8px);
  font-size: 10px;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
  box-shadow: 0 1px 3px rgba(0,0,0,.1);
}
/* Square shape — respects onetap_stickers setting (shape: square) */
.popup-cart .popup-cart__item-labels .product-labels--item.product-labels--square {
  border-radius: 0 !important;
}
.popup-cart .popup-cart__item-img img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
  max-width: none !important;
  max-height: none !important;
  margin: 0 !important;
}

.popup-cart .popup-cart__item-body {
  flex: 1 1 auto !important;
  min-width: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
}

.popup-cart__item-top {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: flex-start;
}
.popup-cart__item-name {
  flex: 1 1 auto;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #1a1a1a;
  line-height: 1.35;
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.popup-cart__item-name:hover { color: #000; text-decoration: none; }

.popup-cart__item-prices {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.popup-cart__item-discount {
  background: #0FA379;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 20px;
  line-height: 1;
  order: -1;
}
.popup-cart__item-price {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1;
}
.popup-cart__item-oldprice {
  flex-basis: 100%;
  font-size: 13px;
  color: #999;
  text-decoration: line-through;
  text-align: right;
}

.popup-cart__item-options {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.popup-cart__item-option {
  display: inline-block;
  background: #f3f3f3;
  color: #555;
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 20px;
  line-height: 1.3;
}
.popup-cart__item-option--more {
  background: transparent;
  color: #888;
  padding-left: 2px;
}

.popup-cart__item-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
}
.popup-cart__item-actions .popup-cart__qty-select { margin-right: auto; }

.popup-cart__qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}
.popup-cart__qty .popup-cart__quantity {
  background: transparent;
  border: none;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #333;
  cursor: pointer;
  transition: background .15s;
}
.popup-cart__qty .popup-cart__quantity:hover { background: #f5f5f5; }
.popup-cart__input-quantity {
  width: 30px;
  height: 28px;
  border: none;
  border-left: 1px solid #e0e0e0;
  border-right: 1px solid #e0e0e0;
  background: #fff;
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #1a1a1a;
  padding: 0;
  outline: none;
}

/* Quantity select dropdown (Your cart style) */
.popup-cart__qty-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 6px 26px 6px 12px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #1a1a1a;
  cursor: pointer;
  outline: none;
  min-width: 62px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6' fill='none'><path d='M1 1l4 4 4-4' stroke='%23555' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 10px center;
  transition: border-color .15s;
}
.popup-cart__qty-select:hover,
.popup-cart__qty-select:focus { border-color: #222; }

.popup-cart__icon-btn {
  background: #fff;
  border: 1px solid #e0e0e0;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #555;
  cursor: pointer;
  border-radius: 50%;
  padding: 0;
  transition: background .15s, color .15s, border-color .15s;
}
.popup-cart__icon-btn svg { width: 16px; height: 16px; }
.popup-cart__icon-btn:hover { background: #f5f5f5; color: #1a1a1a; }
.popup-cart__icon-btn.active-like,
.popup-cart__icon-btn.is-active {
  color: var(--otc-btn-primary, #222);
  border-color: var(--otc-btn-primary, #222);
}
.popup-cart__icon-btn.active-like svg path,
.popup-cart__icon-btn.is-active svg path {
  stroke: var(--otc-btn-primary, #222) !important;
  fill: var(--otc-btn-primary, #222) !important;
}

/* Summary block */
.popup-cart__summary {
  padding: 0 28px;
  border-top: 1px solid #ececec;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.popup-cart__sum-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.3;
  padding: 18px 0;
  border-bottom: 1px solid #ececec;
}
.popup-cart__sum-row:last-child { border-bottom: none; }
.popup-cart__sum-row--discount { font-weight: 600; color: #1a1a1a; }
.popup-cart__sum-row--discount .popup-cart__sum-value { color: #1a1a1a; }
.popup-cart__sum-row--shipping { flex-wrap: wrap; }
.popup-cart__sum-row--shipping .popup-cart__country-trigger {
  color: #555;
  text-decoration: none;
  font-size: 13px;
  font-weight: 400;
  flex-basis: 100%;
  margin-top: 2px;
  display: inline-block;
}
.popup-cart__sum-row--shipping .popup-cart__country-trigger u {
  text-underline-offset: 2px;
}
.popup-cart__sum-value { color: #1a1a1a; font-weight: 600; }
.popup-cart__sum-row--total {
  align-items: flex-start;
}
.popup-cart__sum-total {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.3;
}
.popup-cart__sum-vat {
  font-size: 12px;
  color: #999;
  margin-top: 2px;
}
.popup-cart__sum-total-value {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
}

/* Checkout button */
.popup-cart__button-block {
  padding: 4px 28px 20px;
  display: flex;
  flex-direction: row;
  gap: 10px;
}
.popup-cart__checkout-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  box-sizing: border-box;
  background: var(--otc-btn-primary, #1f1a17) !important;
  color: var(--otc-btn-primary-text, #fff) !important;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 16px 20px;
  border: none;
  border-radius: 10px;
  text-decoration: none;
  transition: background .15s;
}
.popup-cart__checkout-btn:hover {
  background: var(--otc-btn-primary-hover, #000) !important;
  color: var(--otc-btn-primary-text, #fff) !important;
  text-decoration: none;
}
/* Share cart — secondary outlined button */
.popup-cart__share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 0 1 auto;
  min-width: 0;
  padding: 14px 18px;
  background: #fff;
  color: #1a1a1a;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid #dadada;
  border-radius: 10px;
  cursor: pointer;
  transition: background .15s, border-color .15s;
  white-space: nowrap;
  position: relative;
}
.popup-cart__share-btn:hover { background: #f7f7f7; border-color: #999; }
.popup-cart__share-btn svg { flex-shrink: 0; color: #6b6b6b; }
.popup-cart__share-btn.is-copied {
  background: #e7f7ed;
  border-color: #0fa379;
  color: #0fa379;
}
.popup-cart__share-btn.is-copied svg { color: #0fa379; }

@media (max-width: 540px) {
  .popup-cart__button-block { flex-direction: column; }
  .popup-cart__share-btn { flex: 1 1 auto; }
}

/* Recommendations */
.popup-cart__recommendations { padding: 6px 28px 24px; }
.popup-cart__rec-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.popup-cart__rec-title {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
}
.popup-cart__rec-nav { display: inline-flex; gap: 6px; }
.popup-cart__rec-arrow {
  width: 32px;
  height: 32px;
  border: 1px solid #e0e0e0;
  background: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #333;
  transition: background .15s, border-color .15s;
  padding: 0;
}
.popup-cart__rec-arrow:hover { background: #f5f5f5; border-color: #222; }

/* Recommendations slider — card sizing & polish */
.popup-cart .popup-cart__swiper-container { position: relative; }
.popup-cart .popup-cart__swiper {
  max-width: 100% !important;
  overflow: hidden !important;
  margin: 0 !important;
}
.popup-cart .popup-cart__swiper-slide {
  max-width: none !important;
  height: auto !important;
  display: flex !important;
  align-items: stretch !important;
}
.popup-cart .popup-cart__rec-card {
  width: 100%;
  height: 100%;
  display: flex;
}
.popup-cart .popup-cart__rec-card .product-card-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.popup-cart .popup-cart__rec-card .product-card-rating {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid #ececec;
}
/* Image area — fixed height (no flex-grow) so extra card height goes to descr area below */
.popup-cart .popup-cart__rec-card .product-card-rating__image-area {
  width: 100%;
  flex: 0 0 auto !important;
  height: auto !important;
  position: relative;
}
.popup-cart .popup-cart__rec-card .product-card-rating__product-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 160px;
  overflow: hidden;
  background: #f7f7f7;
}
/* Descr area grows to fill remaining card height; items stack with footer pushed to bottom */
.popup-cart .popup-cart__rec-card .product-card-rating__descr {
  flex: 1 1 auto !important;
  display: flex !important;
  flex-direction: column !important;
  padding: 10px 12px;
  gap: 4px;
  min-height: 0;
}
.popup-cart .popup-cart__rec-card .product-card-rating__price {
  margin-top: auto !important;  /* push price + below (footer) to the bottom of card */
}
.popup-cart .popup-cart__rec-card .product-card-rating__product-img img {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain;
  display: block;
}
/* descr styles moved above — intentionally empty to avoid duplicate block */
.popup-cart .popup-cart__rec-card .product-card-rating__title,
.popup-cart .popup-cart__rec-card .product-card-rating__text {
  font-size: 13px !important;
  line-height: 1.3;
  min-height: 34px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.popup-cart .popup-cart__rec-card .product-card-rating__price { font-size: 16px !important; }
.popup-cart .popup-cart__rec-card .product-card-rating__old-price,
.popup-cart .popup-cart__rec-card .product-card-rating__price-old,
.popup-cart .popup-cart__rec-card .product-card-rating .price-old {
  font-size: 11px !important;
  margin-left: 6px;
}
.popup-cart .popup-cart__rec-card .product-card-rating__sku,
.popup-cart .popup-cart__rec-card .product-card-rating__stock { font-size: 11px; }
.popup-cart .popup-cart__rec-card .product-card-rating__icons-btns .icon-btn {
  width: 32px;
  height: 32px;
}
.popup-cart .popup-cart__rec-card .product-card-rating__icons-btns .icon-btn svg {
  width: 14px;
  height: 14px;
}
.popup-cart .popup-cart__rec-card .product-card-rating .product-labels--item {
  font-size: 10px;
  padding: 3px 8px;
  border-radius: var(--otc-sticker-radius, 8px);
}
.popup-cart .popup-cart__rec-card .product-card-rating .product-labels--item.product-labels--square {
  border-radius: 0 !important;
}
.popup-cart .popup-cart__rec-card .product-card-rating__reviews-row {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: #555;
  line-height: 1;
}
.popup-cart .popup-cart__rec-card .product-card-rating__rating-value { font-weight: 600; color: #1a1a1a; }
.popup-cart .popup-cart__rec-card .product-card-rating__star { color: #f5a623; font-size: 11px; margin-right: 4px; }
.popup-cart .popup-cart__rec-card .product-card-rating__review-icon { color: #999; font-size: 11px; margin-left: 2px; }
.popup-cart .popup-cart__rec-card .product-card-rating__review-count { color: #666; }
.popup-cart .popup-cart__rec-card .product-card-rating__footer { padding: 0 12px 12px; }
.popup-cart .popup-cart__rec-card .product-card-rating .btn-custom {
  padding: 10px !important;
  font-size: 12px !important;
}

/* Country modal — highlight selected */
.city__form-list a.is-selected {
  font-weight: 700;
  color: #000;
}

@media (max-width: 640px) {
  .popup-cart__header { padding: 18px 18px 14px; }
  .popup-cart__goods,
  .popup-cart__summary,
  .popup-cart__button-block,
  .popup-cart__recommendations { padding-left: 18px; padding-right: 18px; }
  .popup-cart__item-img { flex-basis: 80px; width: 80px; height: 80px; }
  .popup-cart__item-top { flex-direction: column; gap: 6px; }
  .popup-cart__item-prices { justify-content: flex-start; }
  .popup-cart__item-oldprice { text-align: left; }
}
