.order-process {
  max-width: 620px;
  margin: 40px auto;
  padding: 0;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.step-card {
  display: flex;
  align-items: flex-start;
  background: linear-gradient(145deg, #f2f3f7 0%, #e6e8ef 80%);
  border-radius: 6px;
  padding: 20px 25px;
  position: relative;
  transition: box-shadow 0.3s ease;
}

.step-card:hover {
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

.step-number {
  font-weight: 700;
  font-size: 18px;
  color: #2F70AF;
  margin-right: 15px;
  flex-shrink: 0;
}

.step-icon {
  width: 40px;
  height: 40px;
  margin-right: 15px;
  flex-shrink: 0;
}

.step-icon img {
  width: 100%;
  height: 100%;
}

.step-content h4 {
  margin: 0 0 6px 0;
  font-size: 16px;
  color: #333;
  font-weight: 600;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.15);
}

.step-content p {
  margin: 0;
  font-size: 14px;
  color: #444;
  line-height: 1.5em;
}

/* ===== Адаптив ===== */
@media (max-width: 620px) {
  .step-card {
    flex-direction: column;
    align-items: center; /* центрируем все элементы по горизонтали */
    text-align: center;
  }

  .step-number {
    margin: 0 0 8px 0; /* только нижний отступ */
    width: 40px;        /* фиксируем размер, чтобы центрирование было точным */
    height: 40px;
    display: flex;
    align-items: center;   /* вертикальное центрирование цифры */
    justify-content: center; /* горизонтальное центрирование цифры */
    border-radius: 50%;     /* если нужно, можно сделать кружком */
    background: #e6e8ef;    /* необязательно, для наглядности */
  }

  .step-icon {
    margin: 0 0 10px 0;
  }
}



/* ===== Обертка концептуса ===== */
.conceptus-config {
  max-width: 620px;
  margin: 0 auto;
  padding-bottom:38px;
}

/* ===== Контейнер карточек ===== */
.conceptus-row {
  display: flex;
  gap: 16px;
  align-items: stretch;
}
/* ===== Карточки ===== */
.conceptus-card {
  flex: 1 1 50%;
  padding: 12px;
  border-radius: 6px;
  background: linear-gradient(145deg,#f2f3f7 15%,#e6e8ef 80%);
  box-shadow:
    6px 6px 12px rgba(0,0,0,0.15),
    -6px -6px 12px rgba(255,255,255,0.9);
  display: flex;
  flex-direction: column;
  position: relative;
  min-height: 220px;
}
.conceptus-card-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.conceptus-card h4 {
  margin-bottom: 14px;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.15);
}
/* ===== Range ===== */
.conceptus-range-head {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  margin-bottom: 6px;
}
.conceptus-range-value {
  font-size: 18px;
  font-weight: 600;
  color: #0E2749;
}
.conceptus-range {
  width: 100%;
  appearance: none;
  -moz-appearance: none; 
  border: none;
  height: 10px;
  border-radius: 6px;
  background: transparent; /* важно для Firefox */
/*  background: #cfd3dd;*/
  box-shadow:
    inset 2px 2px 4px rgba(0,0,0,0.25),
    inset -2px -2px 4px rgba(255,255,255,0.9);
}
.conceptus-range::-moz-range-track {
  height: 10px;
  border-radius: 6px;
  background: #cfd3dd;
  box-shadow:
    inset 2px 2px 4px rgba(0,0,0,0.25),
    inset -2px -2px 4px rgba(255,255,255,0.9);
  border: none;
}
.conceptus-range::-moz-range-progress {
  height: 10px;
  border-radius: 6px;
  background: #494f63;
}
.conceptus-range::-moz-range-thumb {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(145deg, #f2f3f7, #cfd3dd);
  box-shadow:
    inset 1px 1px 2px rgba(0,0,0,0.25),
    inset -1px -1px 2px rgba(255,255,255,0.7),
    0 3px 6px rgba(0,0,0,0.35);
  border: none;
  cursor: pointer;
}
.conceptus-range::-moz-range-thumb {
  margin-top: -8px;
}
.conceptus-range::-moz-focus-outer {
  border: 0;
}

.conceptus-range::-webkit-slider-runnable-track {
  height: 10px;
  border-radius: 6px;
  background: linear-gradient(
    to right,
    #494f63 0%,
    #494f63 var(--fill,0%),
    #cfd3dd var(--fill,0%)
  );
}
.conceptus-range::-webkit-slider-thumb {
  appearance: none;
  width: 26px;
  height: 26px;
 border-radius: 50%;
  background: linear-gradient(145deg, #f2f3f7, #cfd3dd);
  box-shadow: inset 1px 1px 2px rgba(0,0,0,0.25),
              inset -1px -1px 2px rgba(255,255,255,0.7),
              0 3px 6px rgba(0,0,0,0.35);
  margin-top: -9px;
  cursor: pointer;
}
/* ===== Labels ===== */
.conceptus-range-labels {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  margin-top: 4px; 
}
.conceptus-range-text {
  font-size: 12px;
  margin: 8px 0 15px 0;
}
/* ===== Опции ===== */
.conceptus-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 6px 0 6px 0;
  font-size: 13px;
}
/* ===== Switch ===== */
.conceptus-switch {
  position: relative;
  width: 46px;
  height: 26px;
}
.conceptus-switch input {
  display: none;
}
.conceptus-slider {
  position: absolute;
  inset: 0;
  background: #bfc3cf;
  border-radius: 26px;
  box-shadow: inset 1px 1px 3px rgba(0,0,0,0.35),
              inset -1px -1px 3px rgba(255,255,255,0.6);
  transition: 0.3s;
}
.conceptus-slider::before {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  left: 2px;
  top: 2px;
  background: linear-gradient(145deg, #ffffff, #dcdfe8);
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0,0,0,0.35);
  transition: 0.3s;
}
.conceptus-switch input:checked + .conceptus-slider {
  background: #494f63;
}
.conceptus-switch input:checked + .conceptus-slider::before {
  transform: translateX(20px);
}
/* ===== Правая карточка ===== */
.conceptus-options-list {
  padding-left: 8px;
  font-size: 13px;
  margin-bottom: auto;
  line-height: 1.6em;
}

.conceptus-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
}

.conceptus-price {
  font-family: Arial, sans-serif;
  font-size: 22px;
  color: #0E2749;
  font-weight: 600;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.15);
}

/* ===== Кнопка ===== */
.conceptus-btn {
  background-color: #2F70AF;
    color: #fff;	
	font-size:14px;	
	font-weight: 500;
	padding: 12px 22px;
	text-align:left;
	margin: 0 12px 0 0;			
-moz-transition: 0.6s ease;
-o-transition: 0.6s ease;
-webkit-transition: 0.6s ease;
transition: 0.6s ease;
line-height:1.3;  
  text-decoration: none;
  border-radius: 2px;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.15);
  box-shadow:
    2px 2px 4px rgba(0,0,0,0.15),   
    -2px -2px 4px rgba(255,255,255,0.5); 
}

.conceptus-btn:hover {
 background-color: #353d59;	
-moz-transition: 0.6s ease;
-o-transition: 0.6s ease;
-webkit-transition: 0.6s ease;
transition: 0.6s ease;	
}


/* ===== Свободные слоты ===== */

.conceptus-slots {
  max-width: 620px;
  margin: 26px auto 0;
  padding: 14px 16px 22px;
  border-radius: 6px;

  background: linear-gradient(
    145deg,
    rgba(245,246,250,0.9),
    rgba(235,237,244,0.9)
  );

  box-shadow:
    inset 1px 1px 2px rgba(255,255,255,0.8),
    inset -1px -1px 2px rgba(0,0,0,0.08);

  opacity: 0.7;
  filter: saturate(0.9);
}

.conceptus-slots h4 {
  margin-bottom: 20px;
  font-size: 16px;
  color: #0E2749;
}

.conceptus-slots h4 {
  margin: 0 0 16px;
  font-size: 13px;
  font-weight: 500;
  color: #6b7085;
  letter-spacing: 0.2px;
}

/* Полоска */
.slots-bar {
  display: flex;
  justify-content: center;
  padding: 0 10px;
  margin-bottom: 6px;
}

.slots-track {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;

  width: 100%;
  height: 4px; /* в 2 раза тоньше селекторов */

  background: #cfd3dd;
  border-radius: 3px;

  box-shadow:
    inset 1px 1px 2px rgba(0,0,0,0.25),
    inset -1px -1px 2px rgba(255,255,255,0.8);
}


.slots-fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;

  background: #494f63;
  border-radius: 3px;

 transition: width 1.0s cubic-bezier(0.22, 0.61, 0.36, 1);

}

.slot {
  width: 18px;
  height: 18px;
  border-radius: 50%;

  background: #cfd3dd;

  box-shadow:
    inset 1px 1px 2px rgba(0,0,0,0.35),
    inset -1px -1px 2px rgba(255,255,255,0.8);

  position: relative;
  z-index: 1;
}

.slot.active::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 50%;

  background: #494f63;

  box-shadow:
    0 1px 3px rgba(0,0,0,0.4);
}



/* ===== Mobile fixes ===== */
@media(max-width:620px){
  .conceptus-row {flex-direction: column;}
  .conceptus-card:last-child {display: flex;flex-direction: column;}
  .conceptus-card:last-child .conceptus-card-content {
    display: flex;
    flex-direction: column;
    flex: 1;               
  }
.conceptus-card:last-child .conceptus-options-list {margin-bottom: 0;}
.conceptus-card:last-child .conceptus-total {margin-top: auto;}
.conceptus-btn {font-size:16px;}
}

