/* Убрать весь текст из футера */
footer {
    font-size: 0 !important;
    line-height: 0 !important;
    display: block !important;
    margin: 0;
}

/* Скрыть все элементы футера */
footer * {
    display: none !important;
}

/* Добавить свой футер */
footer::before {
    content: "Craft Oil © 2026. Всі права захищені.";
    display: block !important;
    text-align: center;
    padding: 25px 20px;
    color: #2c5f2d;
    font-size: 14px !important;
    line-height: normal !important;
    font-weight: 500;
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
    border-top: 2px solid #2c5f2d;
}