/* Get Code popup modal — referans offerFront */
.vc-modal-overlay {
    position: fixed; inset: 0; z-index: 9999; background: rgba(36,28,23,.7);
    display: flex; align-items: flex-start; justify-content: center; padding: 20px; overflow-y: auto;
}
.vc-modal {
    position: relative; background: #fff; border-radius: 16px; padding: 32px 28px 20px;
    width: 100%; max-width: 560px; text-align: center; box-shadow: 0 20px 50px rgba(0,0,0,.3);
    margin-top: 60px; animation: vcPop .25s ease;
}
@keyframes vcPop { from { transform: scale(.9); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.vc-modal-close {
    position: absolute; top: 12px; right: 12px; background: #fff; border: none;
    font-size: 22px; color: #757575; cursor: pointer; line-height: 1; width: 32px; height: 32px;
    border-radius: 999px; box-shadow: 0 1px 4px rgba(0,0,0,.15);
}
.vc-modal-title { font-size: 18px; color: #241C17; margin: 0 auto 20px; max-width: 90%; line-height: 1.4; }
.vc-code-box {
    display: flex; align-items: center; justify-content: space-between; gap: 12px;
    border: 1px dashed #241C17; border-radius: 10px; padding: 14px 18px; margin: 0 auto 20px;
    background: #fafafa; max-width: 90%;
}
.vc-code-text { font-size: 26px; font-weight: 900; letter-spacing: 2px; color: #241C17; margin: 0; word-break: break-all; }
.vc-copy-btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 10px 18px; border-radius: 8px; font-weight: 700; font-size: 14px; cursor: pointer;
    border: none; background: #FFE019; color: #241C17; white-space: nowrap;
}
.vc-copy-btn:hover { background: #f0d000; }
.vc-modal-actions { margin-bottom: 8px; }
.vc-go-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 6px;
    font-weight: 700; font-size: 16px; color: #241C17; text-decoration: underline; padding: 10px 16px;
}
.vc-go-btn:hover { text-decoration: none; }
.vc-modal-note { font-size: 12px; color: #757575; margin: 0 0 8px; }
.vc-modal-terms { background: none; border: none; color: #757575; font-size: 12px; cursor: pointer; margin: 10px auto 0; display: block; }

/* Kart vurgulama + kod görünümü */
.vc-offer article.vc-highlighted { border: 1px solid #241C17; }
.vc-revealed { width: 100%; }
.vc-offer-notice { margin-top: 0; }
.vc-offer-notice a { text-decoration: underline; }
