/* TryyCart Core 1.13.68 — global processing for page-level operations only. */
.tcp-processing-indicator,
.tcp-processing-indicator * { box-sizing: border-box; }

.tcp-processing-indicator[hidden] { display: none !important; }

.tcp-processing-indicator {
  position: fixed;
  z-index: 1000005;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 160ms ease;
}

.tcp-processing-indicator::before {
  position: absolute;
  inset: 0;
  background: rgba(5, 24, 56, .13);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  content: "";
}

.tcp-processing-indicator.is-visible { opacity: 1; }

.tcp-processing-card {
  position: relative;
  min-width: min(270px, calc(100vw - 32px));
  max-width: min(360px, calc(100vw - 32px));
  min-height: 92px;
  padding: 15px 18px;
  display: grid;
  grid-template-columns: 60px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .88);
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255,255,255,.96), rgba(235,243,255,.94));
  box-shadow: 0 24px 70px rgba(4, 24, 57, .28), inset 0 1px 0 #fff;
  color: #10284c;
  font-family: "DM Sans", Inter, system-ui, sans-serif;
}

.tcp-processing-mark {
  position: relative;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(51, 103, 190, .22);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(18, 57, 111, .14);
}

.tcp-processing-mark::before {
  position: absolute;
  inset: -5px;
  border: 3px solid rgba(27, 93, 197, .15);
  border-top-color: #f45a14;
  border-right-color: #3276df;
  border-radius: 22px;
  content: "";
  animation: tcp-processing-spin 760ms linear infinite;
}

.tcp-processing-mark::after {
  position: absolute;
  left: 7px;
  top: 28px;
  width: 10px;
  height: 3px;
  border-radius: 999px;
  background: #f45a14;
  box-shadow: 3px -8px 0 -1px #ff8a22, 3px 8px 0 -1px #ff8a22;
  content: "";
}

.tcp-processing-letter {
  width: 23px;
  height: 50px;
  margin-left: 7px;
  display: block;
  overflow: hidden;
  color: transparent;
  background: url("../images/tryycart-t-mark.png") 50% 50% / contain no-repeat;
  font-size: 0;
  line-height: 1;
}

.tcp-processing-copy { min-width: 0; display: grid; gap: 4px; }
.tcp-processing-copy strong { color: #10284c; font-size: 16px; font-weight: 850; line-height: 1.15; }
.tcp-processing-copy small { color: #4f6380; font-size: 12px; font-weight: 650; line-height: 1.35; }

@keyframes tcp-processing-spin { to { transform: rotate(360deg); } }

@media (max-width: 480px) {
  .tcp-processing-card { min-height: 82px; padding: 12px 14px; grid-template-columns: 52px minmax(0, 1fr); gap: 12px; border-radius: 17px; }
  .tcp-processing-mark { width: 50px; height: 50px; border-radius: 15px; }
  .tcp-processing-mark::before { border-radius: 19px; }
  .tcp-processing-letter { width: 21px; height: 44px; }
}

@media (prefers-reduced-motion: reduce) {
  .tcp-processing-indicator { transition: none; }
  .tcp-processing-mark::before { animation: none; border-color: #3276df #3276df #f45a14 #f45a14; }
}

@media (forced-colors: active) {
  .tcp-processing-indicator::before { background: transparent; backdrop-filter: none; }
  .tcp-processing-card, .tcp-processing-mark { border: 2px solid CanvasText; background: Canvas; color: CanvasText; }
  .tcp-processing-letter {
    width: auto;
    height: auto;
    color: CanvasText;
    background: none;
    font-family: sans-serif;
    font-size: 34px;
    font-weight: 900;
    -webkit-text-fill-color: currentColor;
  }
}
