/* Ссылка под ценой */
.wc-want-cheaper-link {
    margin: 10px 0;
    text-align: left;
}

.wc-want-cheaper-trigger {
    display: inline-flex;
    align-items: center;
    color: inherit;
    text-decoration: none;
    transition: opacity 0.3s;
}

.wc-want-cheaper-trigger:hover {
    opacity: 0.8;
}

.wc-want-cheaper-trigger [class^="icon-"],
.wc-want-cheaper-trigger [class*=" icon-"] {
    margin-right: 8px;
    font-size: 16px;
}

/* Модальное окно */
.wc-want-cheaper-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999; /* Увеличили z-index */
    display: none;
}

.wc-want-cheaper-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.wc-want-cheaper-modal-content {
    position: relative;
    max-width: 500px;
    margin: 50px auto;
    padding: 30px;
    background-color: #fff;
    border-radius: 3px;
    z-index: 999999; /* Увеличили z-index */
}

.wc-want-cheaper-modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    color: #999;
    z-index: 999999; /* Увеличили z-index */
}

.wc-want-cheaper-modal-close:hover {
    color: #333;
}