/* Marketing Tools — extends OmniTools style.css */

/* Hide all ad slots — using Google Auto Ads */
.ad-slot,
.ad-leaderboard,
.ad-in-article,
.ad-anchor,
.ad-placeholder {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}

.marketing-tool-header { margin-bottom: 1.5rem; }
.marketing-tool-header h1 { font-size: clamp(1.5rem,3vw,2rem); font-weight: 800; }
.marketing-tool-header p  { color: #64748b; margin-top: 0.25rem; }

.marketing-panel {
    background: #fff; border: 1px solid #e2e8f0;
    border-radius: 14px; padding: 1.5rem; margin-bottom: 1rem;
}

.marketing-label {
    display: block; font-size: 0.8rem; font-weight: 700;
    color: #64748b; text-transform: uppercase; letter-spacing: 0.05em;
    margin-bottom: 0.4rem;
}

.marketing-textarea {
    width: 100%; min-height: 100px; padding: 0.75rem 1rem;
    border: 1.5px solid #e2e8f0; border-radius: 10px;
    font-family: 'Fira Code', 'Cascadia Code', 'Consolas', monospace;
    font-size: 0.875rem; line-height: 1.6; resize: vertical;
    background: #f8fafc; color: #1e293b;
    transition: border-color 0.2s;
}

.marketing-textarea:focus { border-color: #7c3aed; outline: none; background: #fff; }

.marketing-btn-row { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-top: 0.75rem; }

.marketing-btn {
    padding: 0.45rem 1rem; border-radius: 8px; font-size: 0.875rem;
    font-weight: 600; cursor: pointer; border: none; transition: opacity 0.15s, transform 0.15s;
}
.marketing-btn:hover { opacity: 0.88; transform: translateY(-1px); }
.marketing-btn.primary { background: linear-gradient(135deg,#2b5ce6,#7c3aed); color: #fff; }
.marketing-btn.secondary { background: #f1f5f9; color: #475569; border: 1px solid #e2e8f0; }
.marketing-btn.success { background: #16a34a; color: #fff; }

.char-count {
    font-size: 0.75rem; color: #64748b;
    text-align: right; margin-top: 0.25rem;
}
.char-count.warning { color: #d97706; }
.char-count.error { color: #dc2626; }

/* SERP Preview */
.serp-preview {
    background: #fff; border: 1px solid #e2e8f0;
    border-radius: 14px; padding: 1.5rem; margin-top: 1rem;
}
.serp-title {
    color: #1a0dab; font-size: 1.125rem; font-weight: 400;
    margin-bottom: 0.25rem; line-height: 1.3;
    cursor: pointer; text-decoration: none;
}
.serp-title:hover { text-decoration: underline; }
.serp-url {
    color: #006621; font-size: 0.8rem; margin-bottom: 0.25rem;
}
.serp-description {
    color: #545454; font-size: 0.875rem; line-height: 1.4;
}

/* Mobile preview */
.mobile-preview {
    max-width: 375px; margin: 1rem auto;
    border: 1px solid #e2e8f0; border-radius: 24px;
    overflow: hidden; background: #fff;
}
.mobile-header {
    background: #1a0dab; padding: 0.5rem 1rem;
    display: flex; align-items: center; gap: 0.5rem;
}
.mobile-url-bar {
    background: #fff; border-radius: 12px; padding: 0.25rem 0.75rem;
    font-size: 0.7rem; flex: 1; color: #666;
}
.mobile-content { padding: 1rem; }
.mobile-title {
    color: #1a0dab; font-size: 0.875rem; font-weight: 400;
    margin-bottom: 0.25rem; line-height: 1.3;
}
.mobile-url {
    color: #006621; font-size: 0.65rem; margin-bottom: 0.5rem;
}
.mobile-description {
    color: #545454; font-size: 0.75rem; line-height: 1.4;
}

/* Dark mode */
html[data-theme="dark"] .marketing-panel { background: #1e293b !important; border-color: #334155 !important; }
html[data-theme="dark"] .marketing-textarea { background: #0f172a !important; border-color: #334155 !important; color: #e2e8f0 !important; }
html[data-theme="dark"] .marketing-textarea:focus { border-color: #7c3aed !important; background: #1e293b !important; }
html[data-theme="dark"] .marketing-label { color: #94a3b8 !important; }
html[data-theme="dark"] .marketing-btn.secondary { background: #334155 !important; color: #cbd5e1 !important; border-color: #475569 !important; }
html[data-theme="dark"] .serp-preview { background: #1e293b !important; border-color: #334155 !important; }
html[data-theme="dark"] .serp-title { color: #60a5fa !important; }
html[data-theme="dark"] .serp-url { color: #4ade80 !important; }
html[data-theme="dark"] .serp-description { color: #cbd5e1 !important; }
html[data-theme="dark"] .mobile-preview { background: #1e293b !important; border-color: #334155 !important; }
html[data-theme="dark"] .mobile-header { background: #1e3a8a !important; }
html[data-theme="dark"] .mobile-url-bar { background: #1e293b !important; }
html[data-theme="dark"] .mobile-title { color: #60a5fa !important; }
html[data-theme="dark"] .mobile-url { color: #4ade80 !important; }
html[data-theme="dark"] .mobile-description { color: #cbd5e1 !important; }

@media (max-width: 768px) {
    .marketing-btn-row { flex-direction: column; }
    .marketing-btn { width: 100%; text-align: center; }
}