.banner-section{
    max-height: 800px;
    overflow: hidden;
}
.shop-block-one .inner-box .lower-content {
    min-height: 230px;
}
.shop-block-one .inner-box .lower-content h5 {
    min-height: 100px;
}



/* Прячем стандартный чекбокс */
.custom-check input[type="checkbox"] {
    display: none;
}

/* Общие стили для текста и выравнивания */
.custom-check .form-check-label {
    position: relative;
    padding-left: 35px; /* Отступ под квадратик */
    cursor: pointer;
    display: inline-block;
    line-height: 24px;
    font-size: 15px;
    user-select: none;
}

/* Рисуем сам квадратик */
.custom-check .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 22px;
    width: 22px;
    background-color: #f8f8f8;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    transition: all 0.3s ease;
}

/* Цвет при наведении */
.custom-check:hover input ~ .form-check-label .checkmark {
    border-color: #cda274; /* Золотистый или ваш основной цвет */
}

/* Стиль, когда чекбокс выбран */
.custom-check input:checked ~ .form-check-label .checkmark {
background-color: #c59d5f;
  border-color: #c59d5f;
}

/* Рисуем галочку (скрыта по умолчанию) */
.custom-check .checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 7px;
    top: 3px;
    width: 6px;
    height: 11px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* Показываем галочку при выборе */
.custom-check input:checked ~ .form-check-label .checkmark:after {
    display: block;
}

/* Небольшая анимация при клике */
.custom-check input:checked ~ .form-check-label .checkmark {
    transform: scale(1.05);
}
input.invalid {
    border-bottom: 1px solid red !important
}
.checkout-section .billing-form .form-group input[type="text"].error, .checkout-section .billing-form .form-group input[type="email"].error {
    border: 1px solid red;
  border-radius: 30px;
}
.error {
   border: 1px solid red !important;
}
.checkout-section .custom-control.material-checkbox .material-control-indicator.error {
    border: 1px solid red;
  border-radius: 3px;
}
.nav-logo img {
    width: 75px;
}
.footer-logo {
    width: 92px;
}
a.add-to-basket-ajax:hover {
    color: #fff !important;
}
input.checkbox{
    height: 26px !important;
}
textarea {
height: 130px;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  border: 1px solid #efefef;
}
.wpo-checkout-area .billing-adress .form-style input {
    width: auto !important;
}

/* Базовый контейнер */
.material-checkbox {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  user-select: none;
  font-family: sans-serif;
}

/* Скрываем стандартный инпут, оставляя доступным для клавиатуры */
.material-checkbox .checkbox {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

/* Стилизация кастомного индикатора (квадрата) */
.material-checkbox .material-control-indicator {
  position: relative;
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 2px solid #757575;
  border-radius: 2px;
  margin-right: 10px;
  transition: all 0.2s ease;
  box-sizing: border-box;
}

/* Эффект при наведении */
.material-checkbox:hover .material-control-indicator {
  border-color: #2196F3;
}

/* Состояние, когда чекбокс выбран */
.material-checkbox .checkbox:checked + .material-control-indicator {
  background-color: #2196F3;
  border-color: #2196F3;
}

/* Создание галочки через псевдоэлемент */
.material-checkbox .material-control-indicator::after {
  content: "";
  position: absolute;
  display: none;
  /* Параметры галочки */
  left: 5px;
  top: 1px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* Показываем галочку при активации */
.material-checkbox .checkbox:checked + .material-control-indicator::after {
  display: block;
}

/* Стили для фокуса (для доступности с клавиатуры) */
.material-checkbox .checkbox:focus-visible + .material-control-indicator {
  box-shadow: 0 0 0 3px rgba(33, 150, 243, 0.4);
}

/* Текст описания */
.material-checkbox .description {
  font-size: 14px;
  color: #333333;
}
@media (max-width: 480px) {
  div.wpo-breadcumb-wrap {
    margin-top: 50px;
}
}
