.nexframes-tryon-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
    margin: 10px 0;
}

.nexframes-btn-minimal {
    background: transparent;
    border: 1px solid #000;
    color: #000;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
}

.nexframes-btn-minimal:hover {
    background: #f0f0f0;
}

.nexframes-btn-bold {
    background: #000;
    border: none;
    color: #fff;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.nexframes-btn-bold:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.nf-icon {
    width: 18px;
    height: 18px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M2 12s3-7 10-7 10 7 10 7-3 7-10 7-10-7-10-7Z"></path><circle cx="12" cy="12" r="3"></circle></svg>');
    background-size: contain;
    background-repeat: no-repeat;
}

.nexframes-btn-bold .nf-icon {
    filter: invert(1);
}

/* Modal Styles */
.nexframes-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(5px);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.nexframes-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.nexframes-modal-content {
    width: 90%;
    max-width: 1000px;
    height: 80vh;
    background: #000;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    transform: scale(0.9);
    transition: all 0.3s ease;
}

.nexframes-modal-overlay.active .nexframes-modal-content {
    transform: scale(1);
}

.nexframes-modal-iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.nexframes-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 32px;
    height: 32px;
    background: rgba(255,255,255,0.2);
    border: none;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: background 0.2s;
    z-index: 10;
}

.nexframes-modal-close:hover {
    background: rgba(255,255,255,0.3);
}
