/* Стили для кнопки ACF */
.acf-custom-btn {
    display: inline-block;
    background-color: #00b894;
    color: #ffffff;
    padding: 6px 14px;
    border: 1px solid #00b894;
    border-radius: 10px;
    text-decoration: none;
    font-family: inherit;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    white-space: normal;
    word-break: break-word;
}

.acf-custom-btn:hover {
    background-color: #2a8459;
    border-color: #2a8459;
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(0, 184, 148, 0.25);
}

.acf-custom-btn:active {
    transform: translateY(0px);
    box-shadow: 0 2px 8px rgba(0, 184, 148, 0.2);
    transition: all 0.05s ease;
}