#customdelivery {
    margin-top: 0;
    .t-name{
    display:none;
}
}
[data-input-lid="1781510914747"] + .t-input-group {
  margin-top:0;
  .t-input-title{
    display:none;
}
}
/* Переменные окружения (подставьте свои цвета, если нужно) */
:root {
    --border: #e0e5e8;
    --muted: #7e8892;
    --text: #1f2a3e;
    --active-border: #b8d9d6;
    --active-bg: #fbfefe;
    --active-shadow: #d5ece9;
}

/* Обёртка способов оплаты — грид-сетка */
.t-radio__wrapper-payment {
    display: grid;
    gap: 14px;
}

/* Каждый label — карточка */
.t-radio__wrapper-payment .t-radio__control {
    display: flex;
    align-items: center;
    gap: 14px;
    cursor: pointer;
box-sizing: border-box;
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 14px 15px;
    font-size: 15px;
    background: #fff;
    transition: all 0.2s ease;

    /* Убираем стандартную стилизацию label от Тильды */
    font-weight: normal;
    text-align: left;
}

/* Прячем стандартный радио-индикатор (кружок) */
.t-radio__wrapper-payment .t-radio__indicator {
    display: none;
}

/* Прячем сам инпут, но оставляем его функциональность */
.t-radio__wrapper-payment input.t-radio {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    margin: 0;
    padding: 0;
    pointer-events: none;
}

/* Активное состояние выбранной опции */
.t-radio__wrapper-payment .t-radio__control:has(input:checked) {
    border-color: var(--active-border);
    background: var(--active-bg);
    box-shadow: inset 0 0 0 1px var(--active-shadow);
}

/* Дополнительно: убираем лишние отступы у текста внутри label */
.t-radio__wrapper-payment .t-radio__control {
    line-height: 1.4;
}


/* Превращаем обёртку в грид-сетку */
#delivery-services-wrapper {
    display: grid;
    gap: 14px;
}

/* Каждый label — карточка-опция */
#delivery-services-wrapper label {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 14px;
    align-items: start;
    cursor: pointer;
    box-sizing: border-box;

    /* Базовые стили карточки */
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 14px 15px;
    font-size: 15px;
    background: #fff;
    transition: all 0.2s ease;

    /* Убираем стандартные стили label */
    font-weight: normal;
    text-align: left;
}

/* Прячем стандартный радио-индикатор и сам инпут (но оставляем кликабельным) */
#delivery-services-wrapper .t-radio__indicator,
#delivery-services-wrapper input.t-radio {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    margin: 0;
    padding: 0;
    pointer-events: none; /* клик всё равно сработает на label */
}

/* Левая колонка: название и время (вертикальный блок) */
#delivery-services-wrapper .delivery-checkbox-label {
    font-weight: 700;
    font-size: 15px;
    color: var(--text);
    margin-bottom: 3px;
    display: block;
}

#delivery-services-wrapper .delivery-minimum-time {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.45;
    display: block;
    grid-column: 1;
}

/* Правая колонка: цена (если есть) */
#delivery-services-wrapper .delivery-minimum-price {
    font-weight: 700;
    font-size: 15px;
    color: var(--text);
    white-space: nowrap;
    display: block;
}

#delivery-services-wrapper .delivery-minimum-price::before {
    content:'';
}

/* Если цены нет — добавляем "Бесплатно" через псевдоэлемент */
#delivery-services-wrapper label:not(:has(.delivery-minimum-price))::after {
    content: "Бесплатно";
    font-weight: 700;
    font-size: 15px;
    color: var(--text);
    white-space: nowrap;
    grid-column: 2;
    grid-row: 1;
}

/* Активное состояние выбранной опции */
#delivery-services-wrapper label:has(input:checked) {
    border-color: var(--active-border);
    background: var(--active-bg);
    box-shadow: inset 0 0 0 1px var(--active-shadow);
}

/* Дополнительно: убираем марджины у спанов, чтобы не ломали сетку */
#delivery-services-wrapper span {
    margin: 0;
}
/* Основная сетка карточки товара */
.t706__product {
  display: grid;
  grid-template-columns: 100px 1fr auto;  /* картинка, гибкий заголовок, цена */
  grid-template-rows: auto auto;
  gap: 12px 16px;
  align-items: center;
  padding: 16px;
  border: 1px solid #f0f2ef;
  border-radius: 20px;
  margin-bottom: 12px;
  transition: box-shadow 0.2s;
  height: auto;
  width: 100%;
  background: #f9fbf8;
  max-width: stretch;
}

/* Картинка – на две строки */
.t706__product-thumb {
  grid-row: span 2;
  align-self: start;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  background-color: #f5f7f9;
  height: auto;
  padding: 0;
}

.t706__product-imgdiv {
  padding-bottom: 100%; /* квадрат */
  background-size: cover;
  background-position: center;
}

/* Заголовок – объединяет 2 и 3 колонки в первой строке */
.t706__product-title {
  grid-column: 2 / span 1;
  grid-row: 1;
  margin: 0;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.4;
  color: #1f2a3e;
}

/* Ссылка внутри заголовка */
.t706__product-title a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}
.t706__product-title a:hover {
  color: #2f9b8e;
}

/* Подзаголовок (опция) */
.t706__product-title__option {
  font-size: 13px;
  font-weight: 400;
  color: #7e8892;
  margin-top: 4px;
}

/* Блок количества – вторая строка, вторая колонка */
.t706__product-plusminus {
  grid-column: 2;
  grid-row: 2;
  justify-self: start;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f5f7f9;
  border-radius: 40px;
  padding: 6px 12px;
}

/* Кнопки + / - */
.t706__product-minus,
.t706__product-plus {
  display: inline-flex;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.t706__product-minus:hover,
.t706__product-plus:hover {
  opacity: 1;
}
.t706__product-quantity {
  font-weight: 500;
  font-size: 15px;
  min-width: 24px;
  text-align: center;
}

/* Цена – вторая строка, третья колонка */
.t706__product-amount {
  grid-column: 3;
  grid-row: 2;
  justify-self: end;
  display: flex;
  align-items: baseline;
  gap: 2px;
  font-weight: 700;
  font-size: 18px;
  color: #1f2a3e;
}

.t706__cartwin-prodamount-currency {
  font-size: 14px;
  font-weight: 400;
  color: #7e8892;
}


.t706__product-del-wrapper {
    grid-column: 3 / span 1;
    grid-row: 1;
    align-self: start;
    margin-left: auto;
    margin-right: 20px;
}
.t706__product-title__option {
    display: none;
}
.t706__product-imgdiv {
    width: 100%;
}
/* Адаптив для мобильных – при желании можно изменить */
@media (max-width: 560px) {
  .t706__product {
    grid-template-columns: 80px 1fr auto;
    gap: 8px 12px;
    padding: 12px;
  }
  .t706__product-title {
    font-size: 14px;
  }
  .t706__product-amount {
    font-size: 16px;
  }
  .t706__product-plusminus {
    gap: 8px;
    padding: 4px 10px;
  }
}
.t706__cartwin-bottom {
    border: none;
}

.t706__cartwin-top {
    border: none;
}
.t706__cartwin-bottom{display:none;}
#rec2362880101, #rec2414350001{
 /* Переопределяем контейнер на грид */
        .t750__container {
            display: grid !important;
            grid-template-columns: 1fr 1fr;
            grid-template-rows: auto auto;
            gap: 20px 30px;
            align-items: start;
            padding: 20px 0;
            
        }
        .t750__container>div {float:none;}
        .t750__container .t750__col_left {
    grid-column: 1;
    grid-row: 1;
}

/* Правая колонка (описание) */
.t750__container .t750__col_right {
    grid-column: 2;
    grid-row: 1;
    width: 100% !important;
    max-width: 100% !important;
}

/* Блок с иконками – на всю ширину, вторая строка */
 .t750__container .custom-warranty-block {
            grid-column: 1 / -1;
            grid-row: 2;
            width: 100%;
            box-sizing: border-box;
            background: linear-gradient(135deg, #f9fbfa 0%, #f0f5f2 100%);
            padding: 28px 30px;
            border-radius: 20px;
            box-shadow: 0 8px 24px rgba(26, 92, 74, 0.10);
            border: 1px solid rgba(26, 92, 74, 0.08);
            display: flex;
            flex-wrap: wrap;
            justify-content: space-around;
            align-items: center;
            gap: 20px 30px;
            margin-top: 10px;
            backdrop-filter: blur(2px);
            font-family:'Montserrat',Arial,sans-serif;
        }

        /* Каждый пункт – карточка */
        .t750__container .custom-warranty-block .warranty-item {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 8px 16px 8px 8px;
            border-radius: 60px;
            background: rgba(255, 255, 255, 0.6);
            backdrop-filter: blur(4px);
            box-shadow: 0 2px 8px rgba(0,0,0,0.04);
            transition: all 0.25s ease;
            cursor: default;
            min-width: 170px;
            flex: 0 1 auto;
        }
        .t750__container .custom-warranty-block .warranty-item:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(26, 92, 74, 0.12);
            background: rgba(255, 255, 255, 0.9);
        }

        /* Круг с иконкой */
        .t750__container .custom-warranty-block .warranty-item .icon-circle {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: #1a5c4a;
            color: #fff;
            font-size: 24px;
            line-height: 1;
            flex-shrink: 0;
            box-shadow: 0 4px 8px rgba(26, 92, 74, 0.20);
            transition: 0.3s;
        }
        .t750__container .custom-warranty-block .warranty-item:hover .icon-circle {
            transform: scale(1.05);
            box-shadow: 0 6px 14px rgba(26, 92, 74, 0.30);
        }
        /* Разные цвета для иконок */
        .t750__container .custom-warranty-block .warranty-item:nth-child(1) .icon-circle { background: #2d6a4f; }
        .t750__container .custom-warranty-block .warranty-item:nth-child(2) .icon-circle { background: #1b7a5e; }
        .t750__container .custom-warranty-block .warranty-item:nth-child(3) .icon-circle { background: #0e5e4a; }

        /* Текст */
        .t750__container .custom-warranty-block .warranty-item .text {
            font-family: inherit;
            font-size: 14px;
            line-height: 1.4;
            color: #1f2e2a;
        }
        .t750__container .custom-warranty-block .warranty-item .text .label {
            font-weight: 400;
            opacity: 0.8;
        }
        .t750__container .custom-warranty-block .warranty-item .text .highlight {
            font-weight: 700;
            color: #1a5c4a;
            display: block;
            font-size: 15px;
            margin-top: 2px;
        }




/* Мобильная версия (≤768px) */
@media (max-width: 980px) {
    .t750__container {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        gap: 16px;
        padding: 10px 0;
    }
    .t750__container .t750__col_left {
        grid-column: 1;
        grid-row: 1;
        max-width: 640px
    }
.t750__container .custom-warranty-block {
                grid-column: 1;
                grid-row: 2;
                padding: 20px 16px;
                flex-direction: column;
                align-items: stretch;
                gap: 12px;
                border-radius: 16px;
            }
            .t750__container .custom-warranty-block .warranty-item {
                border-radius: 12px;
                padding: 12px 16px;
                background: rgba(255,255,255,0.7);
                min-width: unset;
                flex: 1;
            }
            .t750__container .custom-warranty-block .warranty-item .icon-circle {
                width: 44px;
                height: 44px;
                font-size: 22px;
            }
            .t750__container .custom-warranty-block .warranty-item .text .highlight {
                font-size: 14px;
            }
    .t750__container .t750__col_right {
        grid-column: 1;
        grid-row: 3;
    }
}
   @media (max-width: 680px) {
    .t750__container .t750__col_left {
        
        max-width: calc(100vw - 16px)
    }
       
   }     
    }
        