.wise-dual-button-wrapper {
    display: flex;
    align-items: center;
    gap: var(--wise-gap);
    margin: 20px 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.wise-dual-btn {
    padding: 12px 30px;
    font-size: var(--wise-font-size);
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--wise-radius);
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    min-width: 140px;
}

.wise-btn-1 {
    background-color: var(--wise-b1-bg);
    color: var(--wise-b1-color) !important;
}

.wise-btn-1:hover {
    background-color: var(--wise-b1-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.wise-btn-2 {
    background-color: var(--wise-b2-bg);
    color: var(--wise-b2-color) !important;
}

.wise-btn-2:hover {
    background-color: var(--wise-b2-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.wise-dual-separator {
    width: 40px;
    height: 40px;
    background: var(--wise-mid-bg);
    color: var(--wise-mid-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    margin: 0 -20px;
    z-index: 2;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border: 2px solid #eee;
}

/* Styles */
.wise-dual-button-wrapper.style-2 .wise-dual-btn {
    border-radius: 50px;
}

.wise-dual-button-wrapper.style-2 .wise-dual-separator {
    border: none;
    background: #f1f1f1;
}

/* Responsive */
@media (max-width: 600px) {
    .wise-dual-button-wrapper {
        flex-direction: column;
        gap: 20px;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    .wise-dual-separator {
        margin: -10px 0;
    }
    .wise-dual-btn {
        width: 100%;
    }
}

/* Editor Specific */
.wp-block-gutenwise-dual-button-block {
    display: block;
}
