/* ─── QR Code Generator — True Premium Layout ─── */

.qr-code-generator .tool-area {
    background: #ffffff;
    border: none;
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.08);
    position: relative;
    overflow: hidden;
}

/* Subtle accent bar at top — emerald gradient */
.qr-code-generator .tool-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #10b981, #34d399, #6ee7b7);
}

.qr-code-generator .tool-header {
    margin-bottom: 32px;
}

.qr-code-generator .tool-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #0f172a;
    letter-spacing: -0.5px;
    margin-bottom: 6px;
}

.qr-code-generator .tool-header p {
    color: #64748b;
    font-size: 1.05rem;
    font-weight: 400;
}

/* Input group — clean and spacious */
.qr-code-generator .input-group {
    margin-bottom: 20px;
}

.qr-code-generator .input-group label {
    display: block;
    font-weight: 500;
    color: #0f172a;
    margin-bottom: 6px;
    font-size: 0.95rem;
}

.qr-code-generator .input-group input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Outfit', sans-serif;
    transition: all 0.25s ease;
    background: #f8fafc;
    color: #0f172a;
}

.qr-code-generator .input-group input:focus {
    outline: none;
    border-color: #10b981;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.08);
    background: #ffffff;
}

/* Primary button — full width, pill shape */
.qr-code-generator .primary-btn {
    width: 100%;
    padding: 16px 28px;
    background: #0f172a;
    color: #ffffff;
    border: none;
    border-radius: 14px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    letter-spacing: 0.3px;
    font-family: 'Outfit', sans-serif;
}

.qr-code-generator .primary-btn:hover {
    background: #1e293b;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.15);
}

.qr-code-generator .primary-btn:active {
    transform: scale(0.98);
}

/* QR result — centered card */
.qr-code-generator .qr-result {
    margin-top: 32px;
    padding: 32px;
    background: #f8fafc;
    border-radius: 18px;
    border: 1px solid #eef2f6;
    text-align: center;
}

.qr-code-generator .qr-result #qrcode {
    display: inline-block;
    background: #ffffff;
    padding: 16px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
}

.qr-code-generator .qr-result .primary-btn {
    margin-top: 16px;
    width: auto;
    padding: 12px 32px;
    display: inline-block;
    background: #10b981;
}

.qr-code-generator .qr-result .primary-btn:hover {
    background: #059669;
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.3);
}

/* SEO content — clean, airy */
.qr-code-generator .seo-content {
    margin-top: 48px;
    padding: 36px;
    background: #fafcff;
    border-radius: 20px;
    border: 1px solid #eef2f6;
}

.qr-code-generator .seo-content h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
}

.qr-code-generator .seo-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin-top: 20px;
}

.qr-code-generator .seo-content ul {
    margin-left: 20px;
    color: #475569;
    line-height: 1.8;
}

.qr-code-generator .seo-content p {
    color: #475569;
    line-height: 1.8;
}

/* Mobile adjustments */
@media (max-width: 600px) {
    .qr-code-generator .tool-area {
        padding: 24px;
    }

    .qr-code-generator .tool-header h2 {
        font-size: 1.6rem;
    }

    .qr-code-generator .qr-result {
        padding: 20px;
    }

    .qr-code-generator .seo-content {
        padding: 24px;
    }
}