/* Product lightbox */
.lightbox{display:none;position:fixed;inset:0;background:rgba(10,10,12,.94);z-index:99999;align-items:center;justify-content:center;padding:16px;touch-action:none;overscroll-behavior:contain;backdrop-filter:blur(6px);-webkit-backdrop-filter:blur(6px)}.lightbox.open{display:flex}
.lightbox-content{position:relative;display:flex;flex-direction:column;align-items:center;justify-content:center;max-width:min(1000px,92vw);max-height:92vh;gap:12px}
.lightbox-img{max-width:100%;max-height:calc(85vh - 44px);object-fit:contain;border-radius:8px;user-select:none;-webkit-user-select:none;transform-origin:center center;will-change:transform}
.lightbox-close{position:absolute;top:16px;right:16px;width:42px;height:42px;border-radius:50%;background:rgba(255,255,255,.12);color:#fff;border:none;cursor:pointer;display:flex;align-items:center;justify-content:center;font-size:20px;z-index:20;transition:background-color .15s ease,transform .15s ease}
.lightbox-close:active{transform:scale(0.92)}
.lightbox-close:focus-visible{outline:2px solid #fff;outline-offset:2px}
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(70px, 9vw, 130px);
  height: calc(100vh - 120px);
  max-height: 800px;
  background: transparent;
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}
.lightbox-prev { left: 0; }
.lightbox-next { right: 0; }
.lightbox-nav i {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}
.lightbox-nav:hover i {
  background: rgba(151, 71, 255, 0.85);
  border-color: rgba(255, 255, 255, 0.4);
  color: #FFFFFF;
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(151, 71, 255, 0.45);
}
.lightbox-nav:active {
  transform: translateY(-50%);
}
.lightbox-nav:active i {
  transform: scale(0.92);
}
.lightbox-nav:focus-visible {
  outline: none;
}
.lightbox-nav:focus-visible i {
  outline: 2px solid #FFFFFF;
  outline-offset: 3px;
}
@media (width <= 640px) {
  .lightbox-nav {
    width: 48px;
    height: 48px;
    border-radius: 50%;
  }
  .lightbox-nav i {
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    border-radius: 50%;
    font-size: 22px;
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.25);
  }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
}
.lightbox-counter{color:#fff;font-family:'Unbounded',sans-serif;font-size:12px;font-weight:400;background:rgba(31,28,34,.75);backdrop-filter:blur(8px);-webkit-backdrop-filter:blur(8px);padding:6px 16px;border-radius:20px;letter-spacing:.03em;z-index:10;pointer-events:none;flex-shrink:0}
/* Product order modal */
.order-overlay {
  display: flex;
  position: fixed;
  inset: 0;
  background: rgba(15, 18, 24, 0.55);
  z-index: 99990;
  align-items: center;
  justify-content: center;
  padding: 16px;
  touch-action: none;
  overscroll-behavior: contain;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 250ms ease-out, visibility 250ms ease-out;
}
.order-overlay.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.order-overlay.closing {
  opacity: 0;
  visibility: visible;
  pointer-events: none;
  transition: opacity 280ms cubic-bezier(0.4, 0, 1, 1);
}

.order-modal {
  background: #FFFFFF;
  border: 1px solid var(--border, #DDE6EB);
  border-radius: 24px;
  width: 520px;
  max-width: min(520px, calc(100vw - 20px));
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 20px 48px rgba(15, 18, 24, 0.18), 0 4px 12px rgba(15, 18, 24, 0.08);
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  transform: translateY(40px) scale(0.96);
  opacity: 0;
  transition: transform 320ms cubic-bezier(0.16, 1, 0.3, 1), opacity 320ms cubic-bezier(0.16, 1, 0.3, 1);
}
.order-overlay.open .order-modal {
  transform: translateY(0) scale(1);
  opacity: 1;
}
.order-overlay.closing .order-modal {
  transform: translateY(30px) scale(0.98);
  opacity: 0;
  transition: transform 280ms cubic-bezier(0.4, 0, 1, 1), opacity 280ms cubic-bezier(0.4, 0, 1, 1);
}

.order-modal-pull-bar {
  width: 36px;
  height: 4px;
  border-radius: 2px;
  background: #DDE6EB;
  margin: 10px auto 0 auto;
  flex-shrink: 0;
}
.order-modal-head {
  padding: 12px 20px 14px 20px;
  border-bottom: 1px solid #F0F3F5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}
.order-modal-brand {
  display: flex;
  align-items: center;
  gap: 9px;
}
.order-modal-brand-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: #9747FF;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(151, 71, 255, 0.3);
}
.order-modal-brand-text {
  font-family: 'Unbounded', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #1F1C22;
}
.order-modal-close {
  background: none;
  border: none;
  cursor: pointer;
  color: #888E92;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  transition: transform 180ms ease-out, color 180ms ease-out, background-color 180ms ease-out;
}
.order-modal-close:hover {
  color: #1F1C22;
  background: #F2F4F7;
  transform: rotate(90deg) scale(0.95);
}
.order-modal-close:focus-visible {
  outline: 2px solid #9747FF;
  outline-offset: 2px;
}
.order-modal-body {
  padding: 16px 20px 20px 20px;
  overflow-y: auto;
  overscroll-behavior: contain;
}

/* Product lot card in modal */
.order-lot-card {
  background: #F9FAFB;
  border: 1px solid var(--border, #DDE6EB);
  border-radius: 14px;
  padding: 12px 14px;
  margin-bottom: 18px;
}
.order-overlay.open .order-lot-card {
  animation: cardSlideFade 240ms 80ms ease-out backwards;
}
@keyframes cardSlideFade {
  from { transform: translateY(12px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.order-lot-card-body {
  display: flex;
  gap: 12px;
  align-items: center;
}
.order-lot-thumb-wrap {
  width: 76px;
  height: 64px;
  border-radius: 8px;
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}
.order-lot-thumb {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.order-lot-main {
  flex: 1;
  min-width: 0;
}
.order-lot-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 4px;
}
.order-lot-title {
  font-family: 'Manrope', sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  color: #1F1C22;
  line-height: 1.35;
  flex: 1;
}
.order-lot-art-badge {
  font-size: 10.5px;
  color: #6B7280;
  background: #EEF2F5;
  border: 1px solid var(--border, #DDE6EB);
  border-radius: 6px;
  padding: 2px 7px;
  font-weight: 500;
  white-space: nowrap;
  flex-shrink: 0;
}
.order-lot-specs {
  font-size: 11.5px;
  color: #4B5563;
  line-height: 1.4;
  margin-bottom: 2px;
  font-weight: 400;
}
.order-lot-options-list {
  font-size: 11px;
  color: #1F1C22;
  display: none;
  flex-wrap: wrap;
  gap: 4px 6px;
  margin-top: 8px;
}
.order-lot-options-list.has-items {
  display: flex;
}
.order-lot-option-tag {
  display: inline-flex;
  align-items: center;
  background: #FFFFFF;
  border: 1px solid #DDE6EB;
  border-radius: 6px;
  padding: 2px 7px;
  font-size: 11px;
  color: #4B5563;
  font-weight: 500;
}
.order-lot-option-tag strong {
  color: #9747FF;
  margin-left: 4px;
  font-weight: 600;
}
.order-lot-divider {
  height: 1px;
  background: #F0F3F5;
  margin: 10px 0;
}
.order-lot-calc {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: #6B7280;
}
.order-lot-calc-label {
  font-size: 12px;
  color: #6B7280;
  font-weight: 500;
}
.order-lot-calc .calc-part {
  color: #1F1C22;
  font-weight: 500;
}
.order-lot-calc .calc-sign {
  color: #9CA3AF;
  margin: 0 3px;
}
.order-lot-calc .calc-sum,
.order-lot-price {
  font-size: 17px;
  font-weight: 700;
  color: #70C01A;
  margin-left: auto;
}

/* Stepper indicator */
.order-steps-indicator {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  position: relative;
  margin-bottom: 20px;
  padding: 0 24px;
}
.order-step-line-track {
  position: absolute;
  top: 13px;
  left: 28%;
  right: 28%;
  height: 2.5px;
  background: #E5E7EB;
  border-radius: 2px;
  overflow: hidden;
  z-index: 1;
}
.order-step-line-progress {
  width: 0%;
  height: 100%;
  background: #9747FF;
  border-radius: 2px;
  transition: width 280ms cubic-bezier(0.25, 0.1, 0.25, 1);
}
.order-step-line-progress.active {
  width: 100%;
}
.order-step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  z-index: 2;
  position: relative;
}
.order-step-num {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11.5px;
  font-weight: 600;
  background: #FFFFFF;
  border: 1.5px solid #DDE6EB;
  color: #888E92;
  transition: all 280ms cubic-bezier(0.25, 0.1, 0.25, 1);
}
.order-step-item.active .order-step-num {
  background: #9747FF;
  border-color: #9747FF;
  color: #FFFFFF;
  transform: scale(1);
  box-shadow: 0 2px 8px rgba(151, 71, 255, 0.25);
}
.order-step-item.completed .order-step-num {
  background: #EEF2F5;
  border-color: #DDE6EB;
  color: #888E92;
  transform: scale(0.95);
}
.order-step-label {
  font-size: 11.5px;
  font-weight: 500;
  color: #888E92;
  transition: color 240ms ease;
}
.order-step-item.active .order-step-label {
  color: #9747FF;
  font-weight: 600;
}
.order-step-item.completed .order-step-label {
  color: #888E92;
}

/* Steps sliding container */
.order-steps-wrapper {
  position: relative;
  overflow: hidden;
  padding: 3px 2px;
  margin: -3px -2px;
}
.order-step-pane {
  display: none;
  width: 100%;
  opacity: 1;
  transform: translateX(0);
  transition: transform 280ms cubic-bezier(0.25, 0.1, 0.25, 1), opacity 280ms cubic-bezier(0.25, 0.1, 0.25, 1);
}
.order-step-pane.active {
  display: block;
}
.order-step-pane.sliding-out-left {
  display: block;
  transform: translateX(-24px);
  opacity: 0;
  pointer-events: none;
}
.order-step-pane.sliding-in-right {
  display: block;
  transform: translateX(24px);
  opacity: 0;
  pointer-events: none;
}
.order-step-pane.sliding-out-right {
  display: block;
  transform: translateX(24px);
  opacity: 0;
  pointer-events: none;
}
.order-step-pane.sliding-in-left {
  display: block;
  transform: translateX(-24px);
  opacity: 0;
  pointer-events: none;
}

/* Fields & Inputs */
.order-field {
  margin-bottom: 14px;
}
.order-field label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: #4B5563;
  margin-bottom: 6px;
}
.order-field label .req {
  color: #DC2626;
}
.order-inp {
  width: 100%;
  background: #FFFFFF;
  border: 1px solid var(--border, #DDE6EB);
  border-radius: 10px;
  color: #1F1C22;
  padding: 11px 14px;
  font-size: 13.5px;
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  outline: none;
  box-sizing: border-box;
  transition: border-color 180ms ease-out, box-shadow 180ms ease-out;
}
.order-inp:hover {
  border-color: #B4B9BE;
}
.order-inp:focus {
  border-color: #9747FF;
  background: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(151, 71, 255, 0.14);
}
.order-inp:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  background: #F9FAFB;
}
@keyframes inputShake {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-4px); }
  40%, 80% { transform: translateX(4px); }
}
.order-inp.error {
  border-color: #DC2626 !important;
  background: #FEF2F2 !important;
  animation: inputShake 200ms ease-in-out;
}
.order-error-msg {
  font-size: 11.5px;
  color: #DC2626;
  margin-top: 4px;
  display: none;
}
.order-error-msg.visible {
  display: block;
}

/* Contact methods pills */
.order-contact-methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.order-method-pill {
  display: block;
  cursor: pointer;
  position: relative;
  margin: 0;
}
.order-method-pill input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.order-method-pill span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 38px;
  border: 1px solid var(--border, #DDE6EB);
  border-radius: 10px;
  background: #FFFFFF;
  font-size: 12px;
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  color: #4B5563;
  cursor: pointer;
  transition: border-color 220ms ease-out, background-color 220ms ease-out, color 220ms ease-out, box-shadow 220ms ease-out, transform 120ms ease;
  user-select: none;
  -webkit-user-select: none;
}
.order-method-pill svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}
.order-method-pill:hover span {
  border-color: #9747FF;
  color: #1F1C22;
}
.order-method-pill:active span {
  transform: scale(0.97);
}
.order-method-pill input:checked + span {
  border-color: #9747FF;
  background: #F6F0FF;
  color: #9747FF;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(151, 71, 255, 0.08);
}
.order-method-pill.order-method-viber svg { color: #7360F2; }
.order-method-pill.order-method-telegram i { color: #229ED9; font-size: 15px; }
.order-method-pill input:focus-visible + span {
  outline: 2px solid #9747FF;
  outline-offset: 2px;
}

/* Choice cards (Delivery & Payment) */
.order-delivery-cards {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.order-choice-card {
  display: block;
  cursor: pointer;
  margin: 0;
  position: relative;
}
.order-choice-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.order-choice-content {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 13px;
  border: 1px solid var(--border, #DDE6EB);
  border-radius: 12px;
  background: #FFFFFF;
  transition: border-color 220ms ease-out, background-color 220ms ease-out, box-shadow 220ms ease-out, transform 120ms ease;
}
.order-choice-card:hover .order-choice-content {
  border-color: #B4B9BE;
}
.order-choice-card:active .order-choice-content {
  transform: scale(0.98);
}
.order-choice-card input:checked + .order-choice-content {
  border-color: #9747FF;
  background: #F6F0FF;
  box-shadow: 0 2px 10px rgba(151, 71, 255, 0.08);
}
.order-choice-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #F2F4F7;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #4B5563;
  flex-shrink: 0;
  transition: background-color 220ms ease-out, color 220ms ease-out;
}
.order-choice-card input:checked + .order-choice-content .order-choice-icon {
  background: #9747FF;
  color: #FFFFFF;
}
.order-choice-info {
  flex: 1;
  min-width: 0;
}
.order-choice-title {
  font-size: 13px;
  font-weight: 600;
  color: #1F1C22;
}
.order-choice-desc {
  font-size: 11px;
  color: #6B7280;
  margin-top: 2px;
  font-weight: 400;
}
.order-radio-circle {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1.5px solid #DDE6EB;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color 220ms ease-out;
}
.order-choice-card input:checked + .order-choice-content .order-radio-circle {
  border-color: #9747FF;
}
@keyframes radioPop {
  0% { transform: scale(0); }
  70% { transform: scale(1.2); }
  100% { transform: scale(1); }
}
.order-choice-card input:checked + .order-choice-content .order-radio-circle::after {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #9747FF;
  animation: radioPop 220ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Back link */
.order-step2-head {
  margin-bottom: 12px;
}
.order-back-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Manrope', sans-serif;
  font-size: 12.5px;
  font-weight: 500;
  color: #9747FF;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 0;
  position: relative;
  transition: color 150ms ease;
}
.order-back-btn::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 0%;
  height: 1.5px;
  background: #9747FF;
  transition: width 200ms ease-out;
}
.order-back-btn:hover::after {
  width: 100%;
}

/* Autocomplete field */
.order-autocomplete-field { position: relative; }
.order-autocomplete-input-wrap { position: relative; }
.order-autocomplete-spinner {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  color: #888E92;
  display: none;
  animation: spin 1s linear infinite;
}
.order-autocomplete-spinner.active { display: inline-block; }
@keyframes spin { from { transform: translateY(-50%) rotate(0deg); } to { transform: translateY(-50%) rotate(360deg); } }
.order-autocomplete-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  max-height: 220px;
  overflow-y: auto;
  background: #FFFFFF;
  border: 1px solid var(--border, #DDE6EB);
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(15, 18, 24, 0.12);
  z-index: 100;
  display: none;
}
.order-autocomplete-dropdown.open { display: block; }
.order-dropdown-item {
  padding: 9px 12px;
  font-size: 12px;
  font-weight: 500;
  color: #1F1C22;
  cursor: pointer;
  border-bottom: 1px solid #F2F4F7;
  transition: background-color 100ms ease;
}
.order-dropdown-item:last-child { border-bottom: none; }
.order-dropdown-item:hover { background: #F6F0FF; color: #9747FF; }
.order-dropdown-sub {
  font-size: 10.5px;
  color: #888E92;
  margin-top: 2px;
}
.order-dropdown-empty {
  padding: 14px;
  text-align: center;
  font-size: 11.5px;
  color: #888E92;
}

/* CTA Submit buttons */
.order-submit {
  width: 100%;
  background: #A3E635;
  color: #1F1C22;
  border: none;
  border-radius: 24px;
  padding: 13px 20px;
  font-family: 'Manrope', sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background-color 150ms ease, transform 120ms ease, box-shadow 150ms ease;
  margin-top: 16px;
  box-shadow: 0 4px 14px rgba(163, 230, 53, 0.35);
}
.order-submit:hover {
  background: #94D82D;
  box-shadow: 0 6px 18px rgba(163, 230, 53, 0.45);
}
.order-submit:active {
  transform: scale(0.97);
}
.order-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}
.order-submit:focus-visible {
  outline: 2px solid #9747FF;
  outline-offset: 2px;
}

.order-hp-input {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0 !important;
  pointer-events: none !important;
  width: 0 !important;
  height: 0 !important;
}

/* Success view */
.order-success {
  display: none;
  text-align: center;
  padding: 6px 0;
}
.order-success.show {
  display: block;
  animation: cardSlideFade 280ms ease-out;
}
.order-success-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.12);
  color: #10B981;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin: 0 auto 12px auto;
}
.order-success-title {
  font-size: 15px;
  font-weight: 700;
  color: #1F1C22;
  margin-bottom: 6px;
}
.order-success-lead {
  font-size: 12px;
  color: #6B7280;
  line-height: 1.5;
  margin-bottom: 16px;
}
.order-success-card {
  background: #F9FAFB;
  border: 1px solid var(--border, #DDE6EB);
  border-radius: 14px;
  padding: 14px;
  text-align: left;
}
.order-success-num-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px dashed var(--border, #DDE6EB);
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.order-success-num-line span {
  font-size: 12px;
  color: #6B7280;
}
.order-success-num-line strong {
  font-size: 14px;
  color: #9747FF;
  font-weight: 700;
}
.order-success-details-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 1px dashed var(--border, #DDE6EB);
  padding-top: 10px;
  margin-top: 10px;
}
.order-success-detail-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  gap: 8px;
}
.order-success-detail-label {
  color: #6B7280;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.order-success-detail-row strong {
  color: #1F1C22;
  font-weight: 600;
  text-align: right;
}

html.lightbox-open,body.lightbox-open,html.modal-open,body.modal-open{overflow:hidden !important;height:100% !important;overscroll-behavior:none !important}
@media (hover: hover) and (pointer: fine){
  .lightbox-close:hover{background:rgba(255,255,255,.22)}
  .lightbox-nav:hover{color:#fff}
}
@media (width <= 640px){
  .lightbox-content{max-width:96vw;max-height:92vh;gap:10px}
  .lightbox-img{max-height:calc(80vh - 40px)}
  .lightbox-prev{left:8px}
  .lightbox-next{right:8px}
  .order-modal{border-radius:22px;width:100%;max-height:94vh}
  .order-modal-body{padding:14px 16px 18px 16px}
  .order-contact-methods{gap:6px}
  .order-method-pill span{font-size:11px;height:36px}
  .order-choice-content{padding:10px 12px;gap:10px}
  .order-choice-icon{width:32px;height:32px;font-size:16px}
  .order-choice-title{font-size:12px}
  .order-choice-desc{font-size:10.5px}
  .order-steps-indicator{padding:0 12px}
  .order-step-line-track{left:26%;right:26%}
}

@media (prefers-reduced-motion: reduce) {
  .order-overlay,
  .order-modal,
  .order-lot-card,
  .order-step-line-progress,
  .order-step-num,
  .order-step-pane,
  .order-inp,
  .order-choice-card input:checked + .order-choice-content .order-radio-circle::after,
  .order-submit,
  .order-back-btn::after {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }
  .order-overlay.closing {
    display: none !important;
  }
}
