.octa-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.octa-popup-overlay.is-visible {
    display: flex;
}

.octa-popup-modal {
    background: #ffffff;
    border-radius: 12px;
    padding: 24px 22px 20px;
    max-width: 420px;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
    position: relative;
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", system-ui, sans-serif;
}

.octa-popup-close {
    position: absolute;
    top: 10px;
    right: 12px;
    border: none;
    background: transparent;
    font-size: 20px;
    cursor: pointer;
    line-height: 1;
    color: #666666;
}

.octa-popup-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 10px;
    color: #111111;
}

.octa-popup-price {
    font-size: 15px;
    font-weight: 600;
    color: #111111;
    margin-bottom: 18px;
}

.octa-popup-actions {
    display: flex;
    justify-content: flex-start;
    gap: 10px;
}

.octa-popup-btn {
    border-radius: 6px;
    border: none;
    padding: 6px 12px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    line-height: 1.2;
}

.octa-popup-btn-copy {
    background: #111827;
    color: #ffffff;
}

.octa-popup-btn-link {
    background: #e5e7eb;
    color: #111827;
}

.octa-popup-copy-result {
    margin-top: 10px;
    font-size: 13px;
    color: #059669;
    display: none;
}

.octa-popup-copy-result.is-visible {
    display: block;
}

.octa-popup-image-wrap {
    margin-bottom: 14px;
    text-align: center;
}

.octa-popup-image-wrap img {
    max-width: 100%;
    max-height: 70vh;
    border-radius: 8px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    height: auto;
    width: 100%;
}

.octa-popup-desc {
    font-size: 13px;
    line-height: 1.4;
    color: #4b5563;
    margin-bottom: 14px;
}

@media (max-width: 768px) {
    .octa-popup-modal {
        margin: 0 12px;
    }
}
