/* Универсальные стили для всех чекбоксов */
input[type="checkbox"] {
    opacity: 0;
    position: absolute;
    width: 20px;
    height: 20px;
    cursor: pointer;
    z-index: 1;
    margin: 0;
}

/* Стили для всех чекбоксов с лейблами */
input[type="checkbox"] + span,
input[type="checkbox"] + label {
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    display: inline-block;
    line-height: 20px;
    min-height: 20px;
}

/* Кастомный чекбокс */
input[type="checkbox"] + span::before,
input[type="checkbox"] + label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    border: 1px solid #000;
    border-radius: 5px !important;
    background: #fff;
    transition: all 0.2s ease;
    box-sizing: border-box;
    padding: 0 !important;
}

/* Checked состояние - белый фон, черная галочка */
input[type="checkbox"]:checked + span::before,
input[type="checkbox"]:checked + label::before {
    background: #fff; /* Белый фон */
    border-color: #000; /* Черная рамка */
}

/* Галочка черного цвета (скорректирована позиция) */
input[type="checkbox"]:checked + span::after,
input[type="checkbox"]:checked + label::after {
    content: '';
    position: absolute;
    left: 7px;
    top: 3px;
    width: 6px;
    height: 10px;
    border: solid #000; /* Черная галочка */
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* Фокус состояние - минимальные изменения */
input[type="checkbox"]:focus + span::before,
input[type="checkbox"]:focus + label::before {
    outline: 2px solid rgba(0, 0, 0, 0.2);
    outline-offset: 2px;
}

/* Убираем изменения при наведении (оставляем только курсор) */
input[type="checkbox"]:hover + span::before,
input[type="checkbox"]:hover + label::before {
    cursor: pointer;
}

/* Disabled состояние */
input[type="checkbox"]:disabled + span,
input[type="checkbox"]:disabled + label {
    cursor: not-allowed;
    opacity: 0.6;
}

input[type="checkbox"]:disabled + span::before,
input[type="checkbox"]:disabled + label::before {
    background: #f0f0f0;
    border-color: #ccc;
}

input[type="checkbox"]:disabled:checked + span::after,
input[type="checkbox"]:disabled:checked + label::after {
    border-color: #666; /* Темно-серая галочка для disabled */
}

/* Для чекбоксов без лейблов */
input[type="checkbox"]:not(:has(+ span)):not(:has(+ label)) {
    opacity: 1;
    position: relative;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 20px;
    height: 20px;
    border: 1px solid #000 !important;
    border-radius: 5px !important;
    cursor: pointer;
    margin: 0;
    vertical-align: middle;
    background: #fff;
    padding: 0 !important;
}

input[type="checkbox"]:not(:has(+ span)):not(:has(+ label)):checked {
    background: #fff; /* Белый фон */
}

input[type="checkbox"]:not(:has(+ span)):not(:has(+ label)):checked::before {
    content: '';
    position: absolute;
    left: 7px;
    top: 3px;
    width: 6px;
    height: 10px;
    border: solid #000; /* Черная галочка */
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* Альтернатива для браузеров, которые не поддерживают :has() */
input[type="checkbox"].standalone {
    opacity: 1;
    position: relative;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 20px;
    height: 20px;
    border: 1px solid #000 !important;
    border-radius: 5px !important;
    cursor: pointer;
    margin: 0;
    vertical-align: middle;
    background: #fff;
    padding: 0 !important;
}

input[type="checkbox"].standalone:checked {
    background: #fff; /* Белый фон */
}

input[type="checkbox"].standalone:checked::before {
    content: '';
    position: absolute;
    left: 7px;
    top: 3px;
    width: 6px;
    height: 10px;
    border: solid #000; /* Черная галочка */
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* Для WooCommerce конкретно */
.woocommerce-form__input-checkbox.input-checkbox + span {
    padding-left: 30px;
}
.woocommerce-form__input-checkbox {
    margin-right: 10px !important;
}