/* shop-cart.css
 * ─────────────
 * Floating cart icon, cart popup / checkout form
 */

/* ════════════════════════════════════════════
   Floating cart icon
   ════════════════════════════════════════════ */

.shop-cart-icon {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 76px;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 3px 16px rgba(216, 184, 227, 0.55);
  cursor: pointer;
  transition: box-shadow 0.2s, transform 0.35s ease, opacity 0.35s ease, top 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}
/* Иконка ниже шапки (45px) + отступ 20px, когда шапка в зоне видимости */
.shop-cart-icon--below-header {
  top: 65px;
}
.shop-cart-icon--hidden {
  opacity: 0;
  transform: scale(0.7);
  pointer-events: none;
}
.shop-cart-icon:hover {
  box-shadow: 0 5px 24px rgba(216, 184, 227, 0.75);
  transform: scale(1.04);
}
.shop-cart-icon:focus-visible {
  outline: 2px solid #9966aa;
  outline-offset: 3px;
}

.shop-cart-icon__img {
  width: 57px;
  height: 57px;
  object-fit: contain;
  pointer-events: none;
}

.shop-cart-icon__badge {
  position: absolute;
  top: -3px;
  right: -3px;
  min-width: 22px;
  height: 22px;
  padding: 0 5px;
  border-radius: 11px;
  background: #f77d73;
  color: #fff;
  font-family: "TildaSans", Arial, sans-serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 22px;
  text-align: center;
  pointer-events: none;
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.2s, transform 0.2s;
}
.shop-cart-icon__badge--visible {
  opacity: 1;
  transform: scale(1);
}

/* ════════════════════════════════════════════
   Cart popup overlay
   ════════════════════════════════════════════ */

.shop-cart-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0);
  padding: 24px;
  overflow-y: auto;
  overscroll-behavior: contain;
  transition: background-color 0.25s ease;
}
.shop-cart-overlay--visible {
  background: rgba(0, 0, 0, 0.45);
}

.shop-cart-popup {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 720px;
  max-height: 94vh;
  overflow: hidden;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.2);
  font-family: "TildaSans", Arial, sans-serif;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  will-change: opacity, transform;
}
.shop-cart-overlay--visible .shop-cart-popup {
  opacity: 1;
  transform: translateY(0);
}

.shop-cart-popup__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 10;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  color: #9966aa;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.2s;
}
.shop-cart-popup__close:hover { background: #f5f0f6; }
.shop-cart-popup__close:focus-visible {
  outline: 2px solid #9966aa;
  outline-offset: 2px;
}

/* ── Scrollable body ─────────────────────── */

.shop-cart-popup__body {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 28px 32px 40px;
  scrollbar-color: #d4c0d9 transparent;
  scrollbar-width: thin;
}
.shop-cart-popup__body::-webkit-scrollbar { width: 8px; }
.shop-cart-popup__body::-webkit-scrollbar-track { background: transparent; }
.shop-cart-popup__body::-webkit-scrollbar-thumb { background: #d4c0d9; border-radius: 4px; }
.shop-cart-popup__body::-webkit-scrollbar-thumb:hover { background: #b07eb2; }

/* ── Heading ────────────────────────────── */

.shop-cart__heading {
  margin: 0 0 8px;
  font-size: 26px;
  font-weight: 400;
  color: #744b76;
}

.shop-cart__hr {
  border: none;
  border-top: 1px solid #e8dce9;
  margin: 16px 0;
}

/* ── Empty state ────────────────────────── */

.shop-cart__empty {
  text-align: center;
  padding: 40px 0;
  color: #a08a9f;
  font-size: 20px;
}

/* ── Product line ────────────────────────── */

.shop-cart__line {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 0;
}
.shop-cart__line--shortage {
  background: #fff5f5;
  border-radius: 10px;
  padding: 10px 8px;
}

.shop-cart__line-img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border-radius: 10px;
  background: #f9f7fa;
  flex-shrink: 0;
}

.shop-cart__line-info {
  flex: 1;
  min-width: 0;
}

.shop-cart__line-title {
  font-size: 17px;
  font-weight: 400;
  color: #744b76;
  margin: 0 0 2px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.shop-cart__line-sku {
  font-size: 14px;
  color: #a08a9f;
}

.shop-cart__line-qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid #d4c0d9;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.shop-cart__qty-btn {
  width: 32px;
  height: 32px;
  border: none;
  background: #fff;
  color: #9966aa;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.15s;
}
.shop-cart__qty-btn:hover:not(:disabled) { background: #f5f0f6; }
.shop-cart__qty-btn:disabled {
  color: #d4c0d9;
  cursor: default;
}
.shop-cart__qty-btn:focus-visible {
  outline: 2px solid #9966aa;
  outline-offset: -2px;
}

.shop-cart__qty-val {
  width: 36px;
  height: 32px;
  border: none;
  border-left: 1px solid #d4c0d9;
  border-right: 1px solid #d4c0d9;
  text-align: center;
  font-family: "TildaSans", Arial, sans-serif;
  font-size: 16px;
  color: #744b76;
  -moz-appearance: textfield;
}
.shop-cart__qty-val::-webkit-outer-spin-button,
.shop-cart__qty-val::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.shop-cart__line-price {
  font-size: 17px;
  font-weight: 400;
  color: #744b76;
  white-space: nowrap;
  flex-shrink: 0;
  min-width: 70px;
  text-align: right;
}

.shop-cart__line-remove {
  width: 28px;
  height: 28px;
  border: none;
  background: transparent;
  color: #c0a0b8;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: color 0.15s, background-color 0.15s;
  flex-shrink: 0;
}
.shop-cart__line-remove:hover { color: #e05050; background: #fff0f0; }

/* ── Subtotal / total rows ──────────────── */

.shop-cart__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 4px 0;
  font-size: 18px;
  color: #744b76;
}
.shop-cart__row--total {
  font-size: 22px;
  font-weight: 600;
}

/* ── Shipping section ────────────────────── */

.shop-cart__section-title {
  font-size: 21px;
  font-weight: 400;
  color: #744b76;
  margin: 0 0 6px;
}
.shop-cart__section-hint {
  font-size: 15px;
  color: #a08a9f;
  margin: 0 0 12px;
}

.shop-cart__radio-group {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 14px;
}

.shop-cart__radio-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 17px;
  color: #744b76;
  cursor: pointer;
}

.shop-cart__radio {
  accent-color: #815583;
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.shop-cart__radio-price {
  color: #a08a9f;
  font-size: 15px;
}

.shop-cart__radio-group--loading {
  opacity: 0.45;
  pointer-events: none;
}
.shop-cart__radio-group--loading::after {
  content: "";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url("/assets/images/Loading_Animation_02.gif") center center / 60px 63px no-repeat;
  z-index: 2;
}

/* ── Form fields ─────────────────────────── */

.shop-cart__field {
  margin-bottom: 14px;
}

.shop-cart__label {
  display: block;
  font-size: 16px;
  font-weight: 400;
  color: #815583;
  margin-bottom: 4px;
}
.shop-cart__req {
  color: #e05555;
  font-weight: 600;
}

.shop-cart__input {
  width: 100%;
  height: 42px;
  padding: 0 14px;
  border: 1px solid #815583;
  border-radius: 10px;
  background: #fff;
  color: #815583;
  font-family: "TildaSans", Arial, sans-serif;
  font-size: 17px;
  box-sizing: border-box;
  transition: border-color 0.2s;
}
.shop-cart__input:focus {
  outline: none;
  border-color: #744b76;
  box-shadow: 0 0 0 2px rgba(142, 98, 144, 0.15);
}
.shop-cart__input::placeholder { color: #815583; opacity: 0.5; }

.shop-cart__textarea {
  height: auto;
  padding: 10px 14px;
  resize: vertical;
  min-height: 42px;
  line-height: 1.45;
}

.shop-cart__input--error {
  border-color: #e05050;
}

.shop-cart__field-error {
  font-size: 13px;
  color: #e05050;
  margin-top: 3px;
  min-height: 16px;
}

/* ── Notice ──────────────────────────────── */

.shop-cart__notice {
  font-size: 16px;
  color: #744b76;
  line-height: 1.45;
  margin: 10px 0;
}
.shop-cart__notice strong {
  color: #815583;
}

/* ── Warning / error banner ─────────────── */

.shop-cart__alert {
  padding: 10px 14px;
  border-radius: 10px;
  background: #fff5f5;
  color: #c05050;
  font-size: 16px;
  margin: 12px 0;
  display: none;
}
.shop-cart__alert--visible { display: block; }

/* ── Submit button ───────────────────────── */

.shop-cart__submit {
  display: block;
  width: 100%;
  height: 48px;
  border: none;
  border-radius: 15px;
  background: #815583;
  color: #fff;
  font-family: "TildaSans", Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.2s, opacity 0.2s;
  margin-top: 6px;
}
.shop-cart__submit:hover:not(:disabled) { background: #af88b1; }
.shop-cart__submit:focus-visible {
  outline: 2px solid #9966aa;
  outline-offset: 2px;
}
.shop-cart__submit:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  background: #b8a0b9;
}

/* ── Legal text ──────────────────────────── */

.shop-cart__legal {
  font-size: 13px;
  color: #a08a9f;
  line-height: 1.5;
  margin-top: 14px;
  text-align: center;
}
.shop-cart__legal a {
  color: #815583;
  text-decoration: underline;
}
.shop-cart__legal a:hover { color: #744b76; }

/* ── Pending-order banner ────────────────── */

.shop-pending-banner {
  max-width: 820px;
  margin: 18px auto 0;
  padding: 16px 20px;
  background: linear-gradient(135deg, #f5eaf7 0%, #ede0f0 100%);
  border: 1px solid #d8b8e3;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: "TildaSans", Arial, sans-serif;
  font-size: 15px;
  color: #5c3a5e;
  line-height: 1.45;
  animation: pendingSlideIn 0.35s ease-out;
}
@keyframes pendingSlideIn {
  from { opacity: 0; transform: translateY(-12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.shop-pending-banner__text {
  flex: 1;
  min-width: 0;
}
.shop-pending-banner__order {
  font-weight: 600;
  color: #744b76;
}
.shop-pending-banner__sub {
  font-size: 13px;
  color: #815583;
  margin-top: 2px;
}
.shop-pending-banner__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.shop-pending-banner__pay {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 20px;
  background: #9966aa;
  color: #fff;
  font-family: "TildaSans", Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.2s;
  white-space: nowrap;
}
.shop-pending-banner__pay:hover { background: #af88b1; }
.shop-pending-banner__close {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid #d8b8e3;
  border-radius: 50%;
  color: #9966aa;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  transition: background-color 0.15s, border-color 0.15s;
  flex-shrink: 0;
}
.shop-pending-banner__close:hover {
  background: #ede0f0;
  border-color: #c4a0cc;
}

@media (max-width: 768px) {
  .shop-pending-banner {
    margin: 12px 16px 0;
    flex-wrap: wrap;
    gap: 10px;
  }
  .shop-pending-banner__actions { width: 100%; justify-content: flex-end; }
}

/* ── Success screen ──────────────────────── */

.shop-cart__success {
  text-align: center;
  padding: 32px 0;
}
.shop-cart__success-title {
  font-size: 24px;
  font-weight: 400;
  color: #79a973;
  margin: 0 0 12px;
}
.shop-cart__success-text {
  font-size: 17px;
  color: #744b76;
  line-height: 1.5;
}
.shop-cart__success-order {
  font-size: 16px;
  color: #a08a9f;
  margin-top: 10px;
}

.shop-cart__redirecting-loader {
  margin-top: 18px;
  display: flex;
  justify-content: center;
}

/* ════════════════════════════════════════════
   Responsive
   ════════════════════════════════════════════ */

@media (max-width: 768px) {
  .shop-cart-overlay {
    padding: 0;
    align-items: flex-end;
  }
  .shop-cart-popup {
    max-width: 100%;
    max-height: 95vh;
    border-radius: 20px 20px 0 0;
    transform: translateY(100%);
  }
  .shop-cart-overlay--visible .shop-cart-popup {
    transform: translateY(0);
  }
  .shop-cart-popup__body {
    padding: 20px;
  }
  .shop-cart-icon {
    top: 14px;
    right: 14px;
    width: 64px;
    height: 64px;
    border-radius: 18px;
  }
  .shop-cart-icon--below-header { top: 65px; }
  .shop-cart-icon__img { width: 46px; height: 46px; }
}

@media (max-width: 479px) {
  .shop-cart-popup {
    max-height: 100vh;
    max-height: 100dvh;
    border-radius: 0;
  }
  .shop-cart-popup__body {
    padding: 16px;
  }
  .shop-cart__line {
    flex-wrap: wrap;
    gap: 8px;
  }
  .shop-cart__line-info { min-width: 100%; order: -1; }
  .shop-cart__line-img { width: 52px; height: 52px; }
  .shop-cart__heading { font-size: 22px; }
}

/* ════════════════════════════════════════════
   CDEK delivery flow
   ════════════════════════════════════════════ */

.cdek-flow {
  margin-top: 10px;
}

.cdek-flow__step {
  margin-bottom: 14px;
}

.cdek-flow__row {
  display: flex;
  gap: 10px;
  align-items: stretch;
}

.cdek-flow__city-input {
  flex: 1;
  min-width: 0;
}

.cdek-flow__calc-btn {
  flex-shrink: 0;
  height: 42px;
  padding: 0 20px;
  border: none;
  border-radius: 10px;
  background: #815583;
  color: #fff;
  font-family: "TildaSans", Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
  transition: background-color 0.2s, opacity 0.2s;
  white-space: nowrap;
}
.cdek-flow__calc-btn:hover:not(:disabled) {
  background: #af88b1;
}
.cdek-flow__calc-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.cdek-flow__calc-btn:focus-visible {
  outline: 2px solid #9966aa;
  outline-offset: 2px;
}

.cdek-flow__label {
  font-size: 15px;
  color: #815583;
  margin: 0 0 8px;
  font-weight: 400;
}

.cdek-flow__city-confirmed {
  font-size: 15px;
  color: #744b76;
  margin: 0 0 8px;
}
.cdek-flow__city-confirmed strong {
  color: #815583;
}
.cdek-flow__free-shipping-note {
  font-size: 15px;
  color: #3a8a3a;
  font-weight: 600;
  margin: 0 0 10px;
}

/* City disambiguation */
.cdek-flow__city-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cdek-flow__city-option {
  display: block;
  width: 100%;
  text-align: left;
  padding: 10px 14px;
  border: 1px solid #d4c0d9;
  border-radius: 10px;
  background: #fff;
  color: #744b76;
  font-family: "TildaSans", Arial, sans-serif;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.15s, border-color 0.15s;
}
.cdek-flow__city-option:hover {
  background: #f5f0f6;
  border-color: #815583;
}
.cdek-flow__city-region {
  color: #a08a9f;
  font-size: 14px;
}
.cdek-flow__city-postal {
  color: #a08a9f;
  font-size: 13px;
}

/* Tariff cards */
.cdek-flow__tariff-cards {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cdek-flow__tariff-card {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  border: 2px solid #e8dce9;
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.2s, background-color 0.2s;
}
.cdek-flow__tariff-card:hover {
  border-color: #d4c0d9;
  background: #faf7fb;
}
.cdek-flow__tariff-card:has(.cdek-flow__tariff-radio:checked) {
  border-color: #815583;
  background: #f5eaf7;
}

.cdek-flow__tariff-radio {
  accent-color: #815583;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  cursor: pointer;
}

.cdek-flow__tariff-body {
  flex: 1;
  min-width: 0;
}

.cdek-flow__tariff-tag {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin-bottom: 4px;
}
.cdek-flow__tariff-tag--cheapest {
  background: #e8f5e9;
  color: #4a8c50;
}
.cdek-flow__tariff-tag--fastest {
  background: #e3f2fd;
  color: #1976d2;
}
.cdek-flow__tariff-tag--recommended {
  background: #f3e5f5;
  color: #815583;
}

.cdek-flow__tariff-name {
  font-size: 16px;
  color: #744b76;
  margin-bottom: 4px;
}

.cdek-flow__tariff-details {
  display: flex;
  gap: 14px;
  align-items: baseline;
}

.cdek-flow__tariff-price {
  font-size: 18px;
  font-weight: 600;
  color: #815583;
}

.cdek-flow__tariff-days {
  font-size: 15px;
  color: #a08a9f;
}

/* PVZ search & list */
.cdek-flow__pvz-search {
  height: 42px;
  padding: 0 14px;
  margin-bottom: 6px;
}
.cdek-flow__pvz-count {
  font-size: 13px;
  color: #999;
  margin-bottom: 6px;
}
.cdek-flow__pvz-list {
  max-height: 260px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 6px;
  scrollbar-width: thin;
}
.cdek-flow__pvz-item {
  padding: 10px 14px;
  border: 1.5px solid #e8dfe9;
  border-radius: 10px;
  cursor: pointer;
  transition: border-color 0.2s, background-color 0.2s;
}
.cdek-flow__pvz-item:hover {
  border-color: #d4c0d9;
  background: #faf7fb;
}
.cdek-flow__pvz-item--active {
  border-color: #815583;
  background: #f5eaf7;
}
.cdek-flow__pvz-addr {
  font-size: 15px;
  color: #744b76;
  line-height: 1.35;
}
.cdek-flow__pvz-time {
  font-size: 13px;
  color: #999;
  margin-top: 2px;
}
.cdek-flow__pvz-type {
  display: inline-block;
  font-size: 11px;
  color: #888;
  background: #f2f2f2;
  border-radius: 3px;
  padding: 1px 5px;
  margin-left: 4px;
  vertical-align: middle;
}
.cdek-flow__pvz-loading,
.cdek-flow__pvz-empty {
  padding: 14px;
  text-align: center;
  color: #999;
  font-size: 14px;
}
.cdek-flow__pvz-more {
  padding: 10px 14px;
  text-align: center;
  color: #b39ab5;
  font-size: 13px;
  font-style: italic;
}

/* Selected PVZ card */
.cdek-flow__pvz-chosen {
  padding: 12px 14px;
  border: 1.5px solid #815583;
  border-radius: 10px;
  background: #f5eaf7;
}
.cdek-flow__pvz-chosen-label {
  font-size: 12px;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}
.cdek-flow__pvz-chosen-addr {
  font-size: 15px;
  color: #744b76;
  font-weight: 500;
  line-height: 1.35;
}
.cdek-flow__pvz-chosen-time {
  font-size: 13px;
  color: #999;
  margin-top: 2px;
}
.cdek-flow__pvz-change-btn {
  display: inline-block;
  margin-top: 8px;
  padding: 0;
  background: none;
  border: none;
  color: #815583;
  font-size: 14px;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cdek-flow__pvz-change-btn:hover {
  color: #5a3a5c;
}

/* Fallback message */
.cdek-flow__fallback {
  padding: 12px 14px;
  border-radius: 10px;
  background: #fff8e1;
  color: #8d6e00;
  font-size: 15px;
  line-height: 1.45;
}

@media (max-width: 479px) {
  .cdek-flow__row {
    flex-direction: column;
  }
  .cdek-flow__calc-btn {
    width: 100%;
  }
  .cdek-flow__tariff-details {
    flex-direction: column;
    gap: 2px;
  }
}

/* ════════════════════════════════════════════
   WB delivery estimate
   ════════════════════════════════════════════ */

.wb-flow__estimate {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 12px;
  padding: 10px 14px;
  border: 1px solid #e0d6dc;
  border-radius: 8px;
  background: #faf7f9;
  margin-bottom: 10px;
}
.wb-flow__estimate-price {
  font-size: 17px;
  font-weight: 700;
  color: #7b1fa2;
}
.wb-flow__estimate-days {
  font-size: 14px;
  color: #666;
}

/* ════════════════════════════════════════════
   Flying heart animation
   ════════════════════════════════════════════ */

.shop-flying-heart {
  position: fixed;
  width: 44px;
  height: 44px;
  pointer-events: none;
  z-index: 10000;
  will-change: transform, opacity;
  transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 1s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 2px 6px rgba(160, 100, 149, 0.45));
}
.shop-flying-heart img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ════════════════════════════════════════════
   reCAPTCHA Enterprise: hide floating badge,
   text attribution is shown in the form instead
   ════════════════════════════════════════════ */

.grecaptcha-badge { visibility: hidden !important; }

.shop-cart__legal--recaptcha {
  font-size: 11px;
  opacity: 0.55;
  margin-top: 4px;
}
