/* ZenithQR Public Styles */
.zenithqr-product-qr,
.zenithqr-shortcode-wrap {
    margin: 24px 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.zenithqr-qr-box {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 20px 24px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.zenithqr-qr-box:hover {
    box-shadow: 0 6px 24px rgba(108, 99, 255, 0.12);
    transform: translateY(-2px);
}

.zenithqr-qr-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: #374151;
    text-align: center;
    margin: 0;
    letter-spacing: 0.3px;
}

.zenithqr-qr-img-wrap {
    line-height: 0;
}

.zenithqr-qr-img {
    display: block;
    max-width: 220px;
    height: auto;
    border-radius: 6px;
}

.zenithqr-download-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    border-radius: 8px;
    background: linear-gradient(135deg, #6c63ff, #a78bfa);
    color: #fff !important;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none !important;
    transition: all 0.2s ease;
    letter-spacing: 0.3px;
}

.zenithqr-download-link:hover {
    background: linear-gradient(135deg, #5a52d5, #9166ec);
    box-shadow: 0 4px 14px rgba(108, 99, 255, 0.4);
    transform: translateY(-1px);
}

/* Restricted message */
.zenithqr-restricted {
    padding: 12px 16px;
    border-radius: 8px;
    background: #fef3c7;
    border: 1px solid #fcd34d;
    color: #92400e;
    font-size: 0.875rem;
    margin: 16px 0;
}

.zenithqr-restricted a {
    color: #6c63ff;
}

/* NobleLink addon display */
.zenithqr-noblelink-qr {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin: 8px 0;
}

/* Error */
.zenithqr-error {
    color: #dc2626;
    font-size: 0.875rem;
    padding: 10px;
    background: #fef2f2;
    border-radius: 6px;
    border: 1px solid #fecaca;
}