﻿.order-page__section-label {
  font-size: 24px;
}

.order-page__section-label--spaced {
  margin-top: 48px;
}

.order-page__field-label {
  font-size: 16px;
}

.order-page__field-label--spaced {
  margin-top: 24px;
}

.order-page__field-note {
  color: #9b9b9b;
  font-size: 14px;
}

.order-page__required-note {
  font-size: 16px;
  color: #9b9b9b;
}

.order-page__field-input {
  height: 64px;
  width: 100%;
  padding-left: 16px;
  font-size: 16px;
  border-radius: 12px;
}

.order-page__two-cols {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 24px;
}

.order-page__col {
  width: 100%;
}

.order-page__delivery-methods-hidden {
  display: none;
}

.order-page__small-label {
  font-size: 20px;
  font-weight: 600;
  margin-top: 24px;
}

.order-page__hidden-col {
  display: none;
}

.order-page__visually-hidden-address {
  position: absolute;
  left: -99999px;
  top: auto;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.order-page__consent-link {
  color: #ff6e25;
}

@media (max-width: 767.98px) {
  .order-page__two-cols {
    flex-direction: column;
    gap: 16px;
  }
}

.order {
    margin: 0 auto;
    width: 100%;
    max-width: 1000px;
}
    
    
    /* override — убрать фон-картинку у карточки заказа */
.order-hero__bg,
.order-hero__card,
.order__header,
.order__header-bg,
.order-hero,
.order__header-cart {
  background-image: none !important;
  background: #231E1B !important; /* нужный ровный цвет */
}

/* если фон задан через псевдоэлемент */
.order-hero__card::before,
.order-hero__card::after,
.order__header::before,
.order__header::after {
  background-image: none !important;
  background: transparent !important;
  content: none !important;
}
.inner-page{
    background-image: none;
    padding: 40px 0;
}
.order__header-total {
  display: flex;
  justify-content: space-between; /* разнести по краям */
  align-items: center;
  width: 100%;
  box-sizing: border-box;
  padding-top: 12px;
  font-weight: 600;
}

/* стили метки и суммы */
.order__header-total__label {
  color: #FF6E24;       /* твой оранжевый */
  font-size: 22px;
  font-weight: 600;
}

.order__header-total__value {
  color: #FF6E24;
  font-size: 22px;
  font-weight: 600;
}

.order__header-total__value-wrap {
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
}

.order__header-total__old {
  color: #9b9b9b;
  font-size: 18px;
  font-weight: 500;
  text-decoration: line-through;
}




.order__header-quantity-btn {
    margin: 0;
    padding: 0;
    width: 24px;
    height: 24px;
    font: inherit;
    font-size: 14px;
    line-height: 24px;
    text-align: center;
    color: #fff;
    background: #FF6E24;
    border: none;
    border-radius: 18%;
    cursor: pointer;
    position: relative;
    z-index: 3;
    transition: all 0.3s;
    box-shadow: none;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}
.order__header-title-count {
    margin: 2px 10px 0;
    color: #fff;
    cursor: default;
}

.order__header-cart {
    margin-bottom: 14px;
    padding-bottom: 14px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    border-bottom: 1px solid #9B9B9B;
}
.order__header-col2 {
    display: flex;
    justify-content: space-between;
    width: 100%;
}
.order__header-sect{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 80px;

}
.order__header-img {
    border: none;
    border-radius: 16px;
}

.order__header {
    margin-bottom: 12px;
    padding: 40px;
    background-size: cover;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

#cart-panel {
    position: relative;
    z-index: 2;
}

/* кнопка удаления: текст + крестик справа */
.cart-remove {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.9); /* подгони под ваш цвет */
  position: relative;
  z-index: 3;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  cursor: pointer;
  font-size: 14px;
  padding: 0 8px;
  transition: opacity .15s ease;
}

.cart-remove:hover { opacity: 0.9; }

.cart-remove__text { display:inline-block; }

.cart-remove__icon {
  width: 18px;
  height: 18px;
  color: rgba(255,255,255,0.8); /* цвет крестика */
  display:block;
}

/* растянуть кнопку на всю ширину контейнера */
.order__cta-wrap {
  display: block;
  margin: 0; /* отступы по вкусу */
}

.order__cta {
  display: block;            /* anchor → behave like кнопка */
  width: 100%;               /* занимает всю ширину родителя */
  box-sizing: border-box;    /* учитываем padding в ширине */
  padding: 18px 22px;        /* высота кнопки */
  text-align: center;
  text-decoration: none;
  color: #fff;
  background: #FF6E24;
  border-radius: 12px;
  font-weight: 600;
  font-size: 18px;
  box-shadow: 0 6px 0 rgba(0,0,0,0.2);
  transition: transform .08s ease, box-shadow .08s ease;
}

/* эффект при нажатии */
.order__cta:active{
  transform: translateY(2px);
  box-shadow: 0 3px 0 rgba(0,0,0,0.18);
}

.order__cta:hover  { opacity: .95; }


.order__header-title {
    text-align: left;
}
.order__header-quantity {
    justify-content: flex-start;
}
.inner-page__title.inner-page__title--order {
  text-transform: none;
  margin-bottom: 38px;
 
}

/* ---------- Feature row (4 карточки) ---------- */
.feature-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;                   /* расстояние между карточками */
  justify-content: space-between;
  align-items: stretch;
  margin: 32px 0;
  /* если хотите ограничить ширину внутри контейнера:
     max-width: 1180px; margin-left/right: auto; */
}

/* Одна карточка */
.feature {
  display: flex;
  align-items: center;
  gap: 18px;
  background: #ffffff;
  border-radius: 12px;
  padding: 18px 20px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
  min-width: 0;                /* чтобы text-overflow работал внутри flex */
  flex: 1 1 calc(25% - 15px);  /* 4 карточки в ряд с учётом gap */
  box-sizing: border-box;
  transition: transform .12s ease, box-shadow .12s ease, opacity .12s;
  text-decoration: none;       /* если карточки будут ссылками */
  color: inherit;
}

/* небольшой эффект при наведении */
.feature:hover,
.feature:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.16);
}

/* иконка svg/png */
.feature__icon {
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  object-fit: contain;
  display: block;
  /* при необходимости центрирование фона */
  background-repeat: no-repeat;
  background-position: center;
}

/* текст в карточке */
.feature__text {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 15px;
  line-height: 1.25;
  color: #1f1f1f; /* тёмный цвет */
  font-weight: 600;
  white-space: normal;
  word-break: break-word;
}

/* адаптив: 2 колонки на планшетах */
@media (max-width: 960px) {
  .feature {
    flex: 1 1 calc(50% - 10px);
  }
}

/* адаптив: 1 колонка на телефоне */
@media (max-width: 560px) {
  .feature-row {
    gap: 12px;
  }
  .feature {
    flex: 1 1 100%;
    padding: 14px;
    border-radius: 10px;
  }
  .feature__icon {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
  }
  .feature__text { font-size: 14px; font-weight:600; }
}
.order__upsales-more {
    margin-bottom: 10px;
    padding: 28px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    border-radius: 10px;
    font-size: 20px;
    color: #FF6E24;
    font-weight: 600;
}
   
.order__upsales-more:hover {
    color: #FF6E24;
}

.order__upsales-link {
    padding: 15px;
    display: flex;
    align-items: center;
    background: #231E1B;
    border-radius: 10px;
    color: rgba(255, 255, 255, 1);
    transition: all 0.3s 
    ease-out;
}
.order__upsales-img {
   
    background: none;
}

.order__form {
    padding: 0;
    background: none;
    border-radius: 0;
    color: #fff;
}
.order__form:after {
    background: none;
    position: relative;
}

.order__form-label-payment::before {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    border: 1px solid #fff;
    border-radius: 10%;
    position: absolute;
    top: 0;
    left: 0;
}
.order__form-label-payment::after {
    content: "";
    display: block;
    width: 12px;
    height: 12px;
    border-radius: 10%;
    background: #ff6e25;
    position: absolute;
    top: -1px;
    left: -1px;
    transform: translate(5px, 5px);
    opacity: 0;
    transition: all 0.2s;
}

/* --- layout grid for form --- */
.order__form-wrapper {
    padding: 40px;
    background: #231E1B;
    border-radius: 30px;
    color: #fff;
}

/* form rows/cols */
.form-row { display:flex; gap:16px; margin-bottom:14px; }
.form-col { flex:1; min-width:0; }
.form-col--full { flex:1 1 100%; }

/* inputs */
.form-input {
  display:block;
  width:100%;
  padding:18px 28px;
  font-size: 16px;
  border-radius:8px;
  border: none;
  background: #fff;
  color:#9B9B9B;
  box-shadow: none;
  font-weight: 400;
}

/* labels */
.order__form-label { display:block; font-weight:500; color:#FF6E24; margin:18px 0 12px; font-size:18px; }

/* small section labels */
.small-label { color: rgba(255,255,255,0.9); font-size:14px; margin-bottom:8px; display:block; }

/* delivery buttons */
.delivery-methods { display:flex; gap:12px; margin:14px 0 14px 0; }
.delivery-btn {
  display:inline-flex; align-items:center; gap:10px; justify-content: center;
  background:#fff; color:#231E1B; border-radius:12px; border:none;
  cursor:pointer; font-weight:600; height: 56px;font-size:16px;width:100%;
  box-shadow: 0 6px 14px rgba(0,0,0,0.08);max-width:240px;
}
.delivery-btn--active { background:#FF6E24; color:#fff; }

/* delivery cost card */
.delivery-cost { margin-top:12px; }
.delivery-cost__card {
  display:flex; align-items:center; gap:16px;
  background:#fff; color:#231E1B; padding:12px 14px;
  border-radius:8px; width:240px; margin-top:8px;
  box-shadow: 0 6px 14px rgba(0,0,0,0.06);
}
.delivery-cost__name { font-weight:600; }
.delivery-cost__price { background:#FF6E24; color:#fff; padding:4px 8px; border-radius:6px; font-weight:700; }
.delivery-cost__time { color:rgba(0,0,0,0.6); font-size:13px; margin-left:auto; }

/* payment list */
.payment-list { display:flex; flex-wrap:wrap; gap:10px; margin-bottom:14px; }
.payment-item { display:inline-flex; align-items:center; gap:10px; background:transparent; color:#fff; padding:6px 10px; border-radius:8px; }
.payment-item input { width:16px; height:16px; }


/* ===== sticky footer ===== */
.order__sticky-footer {
  position: sticky;
  bottom: 18px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
  background: linear-gradient(90deg,#ff7b36,#ff6e24);
  padding:32px 40px;
  border-radius:18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
  z-index: 40;
  margin-top: 18px;
}

/* left text */
.order__sticky-left { color:#fff; font-size:24px; font-weight:500; display:flex; align-items:center; gap:12px; }
.order__sticky-total-wrap {
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
}
.order__sticky-total-old {
  color: rgba(255,255,255,0.68);
  font-size: 20px;
  font-weight: 500;
  text-decoration: line-through;
}
.order__sticky-total { font-size:24px; font-weight:500; }

/* submit button */
.site-btn--large {
  background:#fff; color:#ff6e24; border-radius:8px; padding:18px 28px; border:none; font-weight:600;font-size: 20px;
  text-transform: none;
}
.site-btn--large:hover {
  color:#fff;
}

.order__header-quantity-form {gap:8px;}

/* mobile adapt */
@media (max-width: 720px) {
  .form-row { flex-direction: column; }
  .delivery-methods { flex-direction:row; overflow:auto; }
  .order__sticky-footer { flex-direction:column; align-items:stretch; gap:10px; }
  .order__sticky-right { text-align:right; }
  
  .order__header {
    margin-bottom: 6px;
    padding: 12px;
    
}
.cart-remove__text {
    display: none;
}
  
}


/* контейнер нижнего блока */
.order__bottom { margin-top:18px; }


.order__agreements {
margin-top: 14px;
display: flex;
flex-direction: column;
gap: 12px;
color: rgba(255,255,255,0.95);
font-size: 18px;
line-height: 1.25;
}

.checkbox {
position: relative;
display: flex;
gap: 12px;
align-items: center;
color: rgba(255,255,255,0.9);
padding-left: 0;
}

.checkbox input {
position: absolute;
left: 0;
top: 50%;
transform: translateY(-50%);
width: 18px;
height: 18px;
opacity: 0;
margin: 0;
cursor: pointer;
}

.checkbox span {
position: relative;
padding-left: 26px;
color: rgba(255,255,255,0.95);
}

.checkbox span::before {
content: "";
position: absolute;
left: 0;
top: 50%;
transform: translateY(-50%);
width: 18px;
height: 18px;
border: 2px solid rgba(255,255,255,0.9);
border-radius: 4px;
box-sizing: border-box;
background: transparent;
}

.checkbox span::after {
content: "";
position: absolute;
left: 4px;
top: 50%;
transform: translateY(-50%);
width: 10px;
height: 10px;
border-radius: 2px;
background: #ff6e25;
opacity: 0;
transition: opacity .12s ease, transform .12s ease;
}

.checkbox input:checked + span::after {
opacity: 1;
}

.checkbox a {
color: #ff6e25;
text-decoration: none;
}

.checkbox input:focus + span::before {
box-shadow: 0 0 0 4px rgba(255,110,37,0.12);
}


.city-select-btn{
  margin-left: 10px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  background: #fff;
  color: #231E1B;
  font-weight: 600;
  font-size: 16px;
}

.city-select-btn:hover{ opacity:.95; }
.city-select-caret{ opacity:.7; }

/* ===== модалка города ===== */
.city-modal{
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.city-modal.is-open{ display:flex; }

.city-modal__backdrop{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,0.55);
}

.city-modal__panel{
  position: relative;
  width: min(980px, calc(100vw - 32px));
  max-height: min(720px, calc(100vh - 64px));
  overflow: auto;
  background: rgba(255,255,255,0.98);
  border-radius: 18px;
  box-shadow: 0 18px 60px rgba(0,0,0,.35);
  padding: 18px 18px 14px;
}

.city-modal__header{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
  position: sticky;
  top: 0;
  background: rgba(255,255,255,0.98);
  padding-bottom: 12px;
  margin-bottom: 10px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.city-modal__title{
  font-size: 18px;
  font-weight: 600;
  color: #231E1B;
}

.city-modal__close{
  border:none;
  background: transparent;
  cursor:pointer;
  font-size: 22px;
  line-height: 1;
  padding: 6px 10px;
  border-radius: 10px;
}

.city-modal__close:hover{ background: rgba(0,0,0,0.06); }

.city-modal__grid{
  display:grid;
  gap: 10px 18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 10px 2px 6px;
}

.delivery-cost { display: none !important; }

@media (max-width: 920px){
  .city-modal__grid{ grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 680px){
  .city-modal__grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

.city-item{
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 12px;
  padding: 10px 12px;
  cursor:pointer;
  color:#231E1B;
  background: #fff;
  font-weight: 600;
  text-align:left;
}

.city-item:hover{
  border-color: rgba(255,110,37,0.55);
  box-shadow: 0 10px 20px rgba(0,0,0,0.08);
  transform: translateY(-1px);
}

.city-item.is-active{
  border-color: #ff6e25;
  box-shadow: 0 0 0 4px rgba(255,110,37,0.12);
}




@media (max-width: 600px) {
.order__agreements { font-size: 16px; gap: 10px; }
.checkbox span { padding-left: 32px; }
.checkbox span::before { width: 18px; height: 18px; left: 0; }
.checkbox span::after { left: 5px; width: 8px; height: 8px; }
}


@media (max-width: 720px) {
  .order__sticky-footer{
    flex-direction: column;
    align-items: flex-start; /* левый край */
    gap: 12px;
    padding: 18px 18px;
    bottom: 12px;
  }

  .order__sticky-left{
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    font-size: 16px;
    width: 100%;
  }

  .order__sticky-total{
    font-size: 20px;
    font-weight: 700;
  }

  .order__sticky-right{
    width: 100%;
    text-align: left;
  }

  .order__sticky-right .site-btn--large{
    width: 100%;
    font-size: 18px;
    padding: 16px 18px;
  }
}



/* адаптив */
@media (max-width:720px){
  .order__sticky-footer{ flex-direction:column; align-items:stretch; gap:10px; }
  .order__sticky-right{ text-align:right; }
}


/* адаптив */
@media (max-width: 720px) {
  .order__cta { width: 100%; padding: 12px 18px; font-size: 15px; border-radius: 8px; min-width: 0; }
  .inner-page__title.inner-page__title--order + .order {
    margin-top: 14px;
  }
}

/* мобильный вариант (если нужно) */
@media (max-width: 600px){
  .order__header-total { flex-direction: row; padding-top: 10px; }
  .order__header-total__label,
  .order__header-total__value { font-size: 18px; }
}

.order__header-col2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.order__header-sect--right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
}

.order__header-price {
    font-weight: 600;
    white-space: nowrap;
}

.promo-code-card {
  margin-bottom: 18px;
  padding: 18px;
  border: 1px solid #e6dfd7;
  border-radius: 18px;
  background: #faf7f2;
  color: #231E1B;
}

.promo-code-card__title {
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 600;
  color: #231E1B;
}

.promo-code-card__row {
  display: flex;
  gap: 10px;
  align-items: center;
}

.promo-code-card__input {
  margin-bottom: 0;
  color: #231E1B;
  background: #ffffff;
  border: 1px solid #d7cec4;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.promo-code-card__input::placeholder {
  color: #7a7269;
}

.promo-code-card__input:focus {
  border-color: #ff6e24;
  box-shadow: 0 0 0 3px rgba(255, 110, 36, 0.12);
}

.promo-code-card__input:disabled,
.promo-code-card__input[readonly] {
  color: #231E1B;
  background: #f4efe8;
}

.promo-code-card__btn {
  min-width: 120px;
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 18px;
  color: #ffffff;
  background: #ff6e24;
  border: 1px solid #ff6e24;
}

.promo-code-card__btn:hover:not(:disabled) {
  background: #f05f14;
  border-color: #f05f14;
}

.promo-code-card__btn:disabled {
  color: #ffffff;
  background: #f7b38f;
  border-color: #f7b38f;
  cursor: not-allowed;
  opacity: 1;
}

.promo-code-card__btn--ghost {
  background: transparent;
  color: #231E1B;
  border: 1px solid #231E1B;
}

.promo-code-card__btn--ghost:hover:not(:disabled) {
  background: rgba(35, 30, 27, 0.06);
}

.promo-code-card__message {
  margin-top: 10px;
  font-size: 14px;
}

.promo-code-card__message.is-error {
  color: #c0392b;
}

.promo-code-card__message.is-success {
  color: #2e7d32;
}

.promo-code-card__summary {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 12px;
  font-size: 16px;
}

@media (max-width: 720px) {
  .promo-code-card__row {
    flex-direction: column;
    align-items: stretch;
  }

  .promo-code-card__btn {
    width: 100%;
  }
}

