#rec1884253751 .t754__container, #rec1884253751 .t-popup__container, .t-store__prod-popup__container {
  max-width: 100vw;
  min-height: 100vh;
  padding: 16px;
}

#rec1884253751 .t754_col_left {
  width: 55% !important;
}

.t754_col_right {
  width: 40% !important;
  padding-left: 60px !important;
}

#rec1884253751 .js-store-prod-all-text {
  font-size: 16px;
  line-height: 1.4;
  margin-top: 24px;
  text-indent: 64px;
}

#rec1884253751 .t-popup .t-typography__title {
  font-size: 34px !important;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

#rec1884253751 .t-store__prod-popup__container .js-store-prod-price {
  font-size: 26px !important;
  letter-spacing: 2px;
}

#rec1884253751 .t754__price-wrapper {
    margin-top: 0;
}

#rec1884253751 .t754__price {
    letter-spacing: 2px;
}

#rec1884253751 .t754__price-value, .t754__price-currency {
    float: inherit;
}

.t-btn {
    width: 100%;
}

#rec1884253751 .t754__submit {
  width: 100%;
  background: transparent !important;
  border: 1px solid #000 !important;
  color: #000 !important;
  padding: 16px !important;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

#rec1884253751 .t754_submit:hover {
  background: #000 !important;
  color: #fff !important;
}


.t-product__option_active {
  background: #000;
  color: #fff;
}


/* cart */

.t706__carticon {
    top: 24px !important;
}

.t706__carticon-imgwrap {
  display: none !important;
}

.t706__carticon-wrapper {
  display: inline-flex !important;
  align-items: center;
  cursor: pointer;
  position: relative;
}

.t706__carticon-wrapper::before {
  content: "КОРЗИНА";
  font-size: 16px;
  font-family: "LUD";
  color: #000;
  line-height: 20px;
  display: inline-block;
  margin-right: 20px; 
}

.t706__carticon-counter {
  display: inline-flex !important;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  background-color: #FAFF00;
  -webkit-box-shadow: 0px 0px 20px 16px #FAFF00; 
  box-shadow: 0px 0px 8px 10px #FAFF00;
  color: #fff;
  border-radius: 50%;
  font-family: "LUD";
  font-size: 16px;
  position: relative;
  margin-bottom: 7px;
}

.vertical-line {
  position: fixed;      
  top: 0;               
  left: 72px;            
  transform: translateX(-50%); 
  width: 1px;          
  height: 100vh;        
  background-color: #000;
  z-index: 9999;        
  pointer-events: none; 
}

@media (max-width: 960px) {
  .t754_col_left,
  .t754_col_right {
    width: 100% !important;
    padding: 16px !important;
  }
}

@media (max-width: 960px) {
.vertical-line {
  display: none;
}
}

.t706__cartwin-prodamount-price {
    letter-spacing: 2px;
}


/* select */

.js-product .t-product__option-select {
  -webkit-appearance: none !important;
  -moz-appearance: none;
  appearance: none;
  width: auto;             
  padding: 10px 36px 10px 12px; 
  font-size: 16px;
  font-weight: 500;
  border: 1px solid #000;
  border-radius: 0;
  background-color: #fff; 
  color: #000;              
  cursor: pointer;
  outline: none;
  position: relative;
  letter-spacing: 1px;
}

.js-product .t-product__option-select:focus {
  border-color: #333;
  box-shadow: none;
}

.js-product .t-product__option-select option {
  padding: 10px;
}

#rec1884253751 .t-product__option {
  border-radius: 0;
  background: transparent;
  margin-bottom: 24px;
  display: flex;
  width: 100%;
  justify-content: space-between;
}

.t-store .t-product__option-variants {
    min-width: 0;
}

.t-store__prod-popup__price-wrapper {
    margin-bottom: 40px;
}


/* popup */ 

/* ===== ОСНОВНОЙ ПОПАП ===== */
.t-popup__container {
  width: 100vw !important;
  max-width: 100vw !important;
  height: 100vh !important;
  max-height: 100vh !important;

  margin: 0;
  padding: 0 92px;
 
  border-radius: 0 !important;
  background: #fff;
  display: flex !important;
  justify-content: center;
  align-items: center;
}

/* Внутренний контент */
.t-popup__container .t-popup__content {
  width: 100%;
  height: 100%;
  display: grid !important;
  grid-template-columns: 1fr 1fr; /* 2 равные колонки */
  position: relative;
}

/* ===== ВЕРТИКАЛЬНАЯ ЛИНИЯ ===== */
.t-popup__container .t-popup__content::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;

  width: 1px;
  background: #000;

  transform: translateX(-50%);
  z-index: 10;
  overflow: hidden;
}

/* ===== ЛЕВАЯ / ПРАВАЯ КОЛОНКА ===== */
.t-popup__content > div {
  padding: 40px;
  overflow-y: auto;
}

/* Фото */
.t-popup__content .t-store__prod-popup__imgwrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Текст */
.t-popup__content .t-store__prod-popup__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ===== МОБИЛКА ===== */
@media (max-width: 768px) {

  .t-popup__container {
    height: auto !important;
    align-items: flex-start;
    overflow: normal;
  }

  .t-popup__container .t-popup__content {
    grid-template-columns: 1fr;
    height: auto;
  }

  /* убираем линию */
  .t-popup__container .t-popup__content::before {
    display: none;
  }

  .t-popup__content > div {
    padding: 20px;
  }
}

/* Родитель делаем flex */
.t-popup__container .t-row {
  display: flex !important;
  flex-wrap: nowrap !important;
}

.t-popup__container .t-store__prod-popup__container {
  max-width: 100vw !important;
  width: 100vw !important;
  margin: 0 !important;
}

.t-container_fluid .t-col_5 {
    max-width: calc(41.66667% - 120px);
}

.t-store__prod-popup__col-left {
    border-right: 1px solid #000 !important;
}
