/*
Theme Name: TechPulse
Theme URI: https://techpulse.com
Author: TechPulse
Author URI: https://techpulse.com
Description: A fast, SEO-optimized editorial tech blog theme with beautiful article formatting, auto geo-language detection, and Google AdSense ready ad placements.
Version: 1.0
Requires at least: 5.8
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: techpulse
Tags: blog, technology, news, two-columns, right-sidebar, custom-colors, custom-menu, featured-images, post-formats, sticky-post, theme-options, translation-ready
*/

/* ── Reset ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Georgia', serif;
    background: #f8f7f4;
    color: #1a1a2e;
    font-size: 16px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: #ff6200; text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── Layout ─────────────────────────────────────────── */
.site-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.content-area {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
    padding: 40px 0;
    align-items: start;
}

@media (max-width: 900px) {
    .content-area { grid-template-columns: 1fr; }
}

/* ── Header ─────────────────────────────────────────── */
#site-header {
    background: #fafaf7;
    border-bottom: 3px solid #1a1a2e;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    gap: 20px;
}

.site-branding .site-title {
    font-family: 'Impact', sans-serif;
    font-size: 42px;
    letter-spacing: 2px;
    line-height: 1;
    color: #1a1a2e;
}

.site-branding .site-title span { color: #ff6200; }

.site-branding .site-description {
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #6b7280;
    margin-top: 3px;
    font-family: sans-serif;
}

/* ── Navigation ─────────────────────────────────────── */
#site-navigation {
    border-top: 1px solid #e5e3dc;
}

#site-navigation ul {
    display: flex;
    list-style: none;
    overflow-x: auto;
    scrollbar-width: none;
    gap: 0;
}

#site-navigation ul::-webkit-scrollbar { display: none; }

#site-navigation ul li a {
    display: block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 11px 18px;
    color: #6b7280;
    white-space: nowrap;
    border-bottom: 3px solid transparent;
    margin-bottom: -3px;
    transition: color 0.2s, border-color 0.2s;
    font-family: sans-serif;
}

#site-navigation ul li a:hover,
#site-navigation ul li.current-menu-item a {
    color: #1a1a2e;
    border-color: #ff6200;
    text-decoration: none;
}

/* ── Hero / Featured Post ───────────────────────────── */
.featured-post {
    position: relative;
    height: 480px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 48px;
    background: #1a1a2e;
}

.featured-post .featured-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.75;
}

.featured-post .featured-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 32px;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
    color: white;
}

.featured-post .post-category {
    display: inline-block;
    background: #ff6200;
    color: #000;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 2px;
    margin-bottom: 12px;
    font-family: sans-serif;
}

.featured-post h2 {
    font-family: 'Impact', sans-serif;
    font-size: 38px;
    letter-spacing: 1px;
    line-height: 1.1;
    color: white;
    margin-bottom: 10px;
}

.featured-post .post-meta {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    font-family: sans-serif;
}

/* ── Post Cards ─────────────────────────────────────── */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

@media (max-width: 600px) {
    .posts-grid { grid-template-columns: 1fr; }
}

.post-card {
    background: #fff;
    border: 1px solid #e5e3dc;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.25s, box-shadow 0.25s;
}

.post-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}

.post-card .card-img {
    height: 200px;
    overflow: hidden;
}

.post-card .card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.post-card:hover .card-img img { transform: scale(1.04); }

.post-card .card-body { padding: 20px; }

.post-card .card-category {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ff6200;
    margin-bottom: 8px;
    font-family: sans-serif;
}

.post-card h2 {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.35;
    color: #1a1a2e;
    margin-bottom: 10px;
    font-family: Georgia, serif;
}

.post-card h2 a { color: inherit; }
.post-card h2 a:hover { color: #ff6200; text-decoration: none; }

.post-card .card-excerpt {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.post-card .card-meta {
    font-size: 12px;
    color: #9ca3af;
    font-family: sans-serif;
    display: flex;
    justify-content: space-between;
    padding-top: 12px;
    border-top: 1px solid #f3f4f6;
}

/* ── Sidebar ─────────────────────────────────────────── */
.widget-area .widget {
    background: #fff;
    border: 1px solid #e5e3dc;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 24px;
}

.widget-area .widget-title {
    background: #1a1a2e;
    color: #fff;
    font-family: 'Impact', sans-serif;
    font-size: 18px;
    letter-spacing: 1.5px;
    padding: 12px 18px;
    margin: 0;
}

.widget-area .widget-content { padding: 18px; }

.widget-area ul {
    list-style: none;
    padding: 0;
}

.widget-area ul li {
    padding: 8px 0;
    border-bottom: 1px solid #f3f4f6;
    font-size: 14px;
}

.widget-area ul li:last-child { border-bottom: none; }
.widget-area ul li a { color: #1a1a2e; }
.widget-area ul li a:hover { color: #ff6200; text-decoration: none; }

/* ── Single Post ────────────────────────────────────── */
.single .post-header { margin-bottom: 32px; }

.single .post-category-badge {
    display: inline-block;
    background: #ff6200;
    color: #000;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 2px;
    margin-bottom: 14px;
    font-family: sans-serif;
}

.single .post-title {
    font-family: 'Impact', sans-serif;
    font-size: clamp(32px, 5vw, 52px);
    letter-spacing: 1px;
    line-height: 1.1;
    color: #1a1a2e;
    margin-bottom: 16px;
}

.single .post-meta-bar {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 0;
    border-top: 1px solid #e5e3dc;
    border-bottom: 1px solid #e5e3dc;
    margin-bottom: 28px;
    font-size: 13px;
    color: #6b7280;
    font-family: sans-serif;
    flex-wrap: wrap;
}

/* ── Ad Zones ───────────────────────────────────────── */
.ad-zone {
    background: #f2f0ea;
    border: 1px dashed #c5c2b8;
    border-radius: 6px;
    text-align: center;
    padding: 12px;
    margin: 28px 0;
    font-size: 11px;
    color: #9ca3af;
    font-family: sans-serif;
}

/* ── Footer ─────────────────────────────────────────── */
#site-footer {
    background: #1a1a2e;
    color: rgba(255,255,255,0.5);
    padding: 48px 0 0;
    margin-top: 64px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr; }
}

.footer-brand .footer-logo {
    font-family: 'Impact', sans-serif;
    font-size: 36px;
    letter-spacing: 2px;
    color: #fff;
    margin-bottom: 12px;
}

.footer-brand .footer-logo span { color: #ff6200; }

.footer-col h4 {
    font-family: 'Impact', sans-serif;
    font-size: 18px;
    letter-spacing: 1px;
    color: #fff;
    margin-bottom: 16px;
}

.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { color: rgba(255,255,255,0.4); font-size: 13px; font-family: sans-serif; }
.footer-col ul li a:hover { color: #ff6200; text-decoration: none; }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding: 18px 0;
    font-size: 12px;
    font-family: sans-serif;
    flex-wrap: wrap;
    gap: 10px;
}

/* ── Pagination ─────────────────────────────────────── */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 32px 0;
}

.pagination .page-numbers {
    padding: 8px 16px;
    border: 1px solid #e5e3dc;
    border-radius: 4px;
    font-size: 14px;
    font-family: sans-serif;
    color: #1a1a2e;
    transition: all 0.2s;
}

.pagination .page-numbers.current,
.pagination .page-numbers:hover {
    background: #ff6200;
    border-color: #ff6200;
    color: #fff;
    text-decoration: none;
}

/* ── Reading Progress Bar ───────────────────────────── */
#reading-progress {
    position: fixed;
    top: 0; left: 0;
    height: 3px;
    background: #ff6200;
    z-index: 9999;
    width: 0%;
    transition: width 0.1s linear;
}

/* ── Geo Language Banner ────────────────────────────── */
#geo-banner {
    background: #1a1a2e;
    color: white;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    font-family: sans-serif;
    font-size: 14px;
}

#geo-banner.visible {
    max-height: 60px;
    padding: 10px 0;
}

.geo-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.geo-message { display: flex; align-items: center; gap: 10px; }
.geo-flag { font-size: 22px; }
.geo-text { font-size: 13px; color: rgba(255,255,255,0.85); }
.geo-text strong { color: white; }

.geo-actions { display: flex; gap: 8px; }

.btn-geo-yes {
    background: #ff6200; color: #000;
    font-weight: 700; font-size: 12px;
    padding: 7px 16px; border-radius: 4px;
    border: none; cursor: pointer;
}

.btn-geo-no {
    background: transparent;
    color: rgba(255,255,255,0.5);
    font-size: 12px; padding: 7px 12px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 4px; cursor: pointer;
}

.btn-geo-dismiss {
    background: none; border: none;
    color: rgba(255,255,255,0.3);
    font-size: 18px; cursor: pointer; padding: 4px 8px;
}

/* ── TechPulse Article Styles ─────────────────────────────── */
.tp-article{font-family:Georgia,serif;max-width:860px;margin:0 auto;color:#1a1a2e;line-height:1.8}
.tp-hero{width:100%;height:420px;object-fit:cover;border-radius:12px;margin-bottom:32px;box-shadow:0 8px 32px rgba(0,0,0,.15)}
.tp-meta{display:flex;gap:18px;font-family:sans-serif;font-size:13px;color:#64748b;padding:12px 0;border-top:1px solid #e2e8f0;border-bottom:1px solid #e2e8f0;margin-bottom:28px;flex-wrap:wrap}
.tp-toc{background:#f8fafc;border:1px solid #e2e8f0;border-radius:10px;padding:20px 24px;margin-bottom:32px}
.tp-toc-title{font-weight:700;font-size:13px;text-transform:uppercase;letter-spacing:1.5px;color:#64748b;margin-bottom:12px;font-family:sans-serif}
.tp-toc ol{margin:0;padding-left:20px}
.tp-toc li{font-size:15px;margin-bottom:5px}
.tp-toc a{color:#0ea5e9;text-decoration:none}
.tp-article h2{font-size:26px;font-weight:700;color:#1a1a2e;margin:44px 0 14px;padding-bottom:8px;border-bottom:3px solid #ff6200;display:inline-block}
.tp-article h3{font-size:20px;font-weight:600;color:#2d3748;margin:24px 0 10px}
.tp-article p{font-size:17px;line-height:1.85;margin-bottom:20px;color:#2d3748}
.tp-article ul,.tp-article ol{padding-left:24px;margin-bottom:22px}
.tp-article li{font-size:16px;line-height:1.75;margin-bottom:8px;color:#2d3748}
.tp-article li::marker{color:#ff6200}
.tp-section-img{width:100%;height:320px;object-fit:cover;border-radius:10px;margin:20px 0 8px;box-shadow:0 4px 20px rgba(0,0,0,.1)}
.tp-caption{text-align:center;font-size:13px;color:#94a3b8;margin-bottom:24px;font-style:italic;font-family:sans-serif}
.tp-keybox{background:#f0f7ff;border-left:5px solid #0ea5e9;padding:18px 22px;border-radius:0 10px 10px 0;margin:24px 0}
.tp-keybox-title{font-weight:700;color:#0ea5e9;font-size:12px;text-transform:uppercase;letter-spacing:1.5px;margin-bottom:8px;font-family:sans-serif}
.tp-keybox p{margin:0;font-size:16px;color:#1e40af;font-style:italic}
.tp-protip{background:#f0fdf4;border-left:5px solid #22c55e;padding:16px 20px;border-radius:0 10px 10px 0;margin:22px 0;display:flex;gap:12px;align-items:flex-start}
.tp-protip-icon{font-size:20px;flex-shrink:0}
.tp-protip p{margin:0!important;font-size:15px!important;color:#15803d!important}
.tp-faq{background:#f8fafc;border-radius:12px;padding:26px 30px;margin:36px 0}
.tp-faq-title{font-size:21px;font-weight:700;color:#1a1a2e;margin-bottom:20px;font-family:sans-serif}
.tp-faq-item{border-bottom:1px solid #e2e8f0;padding:14px 0}
.tp-faq-item:last-child{border-bottom:none}
.tp-faq-q{font-weight:700;color:#1a1a2e;font-size:16px;margin-bottom:6px;font-family:sans-serif}
.tp-faq-a{color:#4a5568;font-size:15px;line-height:1.7;padding-left:16px}
.tp-cta{background:linear-gradient(135deg,#1a1a2e,#16213e);color:#fff;padding:32px 36px;border-radius:14px;margin-top:44px;text-align:center}
.tp-cta h3{color:#fff!important;font-size:22px!important;margin-bottom:10px!important}
.tp-cta p{color:rgba(255,255,255,.75)!important;font-size:16px!important;margin-bottom:18px!important}
.tp-cta-btn{display:inline-block;background:#ff6200;color:#fff!important;padding:12px 28px;border-radius:8px;font-weight:700;font-size:14px;text-decoration:none!important;font-family:sans-serif}
.tp-author{display:flex;align-items:center;gap:14px;padding:18px 22px;background:#f8fafc;border-radius:10px;margin:28px 0;border:1px solid #e2e8f0}
.tp-author-avatar{width:48px;height:48px;background:linear-gradient(135deg,#ff6200,#ff8c40);border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:20px;flex-shrink:0}
.tp-author-name{font-weight:700;font-size:15px;color:#1a1a2e;font-family:sans-serif}
.tp-author-role{font-size:13px;color:#64748b;font-family:sans-serif}
/* Code blocks */
.tp-code-wrap{position:relative;margin:28px 0;border-radius:10px;overflow:hidden;box-shadow:0 4px 20px rgba(0,0,0,.15)}
.tp-code-header{display:flex;align-items:center;justify-content:space-between;background:#1e2836;padding:10px 16px}
.tp-code-lang{font-family:monospace;font-size:11px;color:#64748b;text-transform:uppercase;letter-spacing:1.5px}
.tp-code-dots{display:flex;gap:6px}
.tp-code-dot{width:12px;height:12px;border-radius:50%}
.tp-copy-btn{display:flex;align-items:center;gap:6px;background:rgba(255,255,255,.08);color:#94a3b8;border:1px solid rgba(255,255,255,.12);padding:5px 12px;border-radius:6px;font-size:12px;font-family:sans-serif;cursor:pointer;transition:all .2s}
.tp-copy-btn:hover{background:rgba(255,98,0,.15);color:#ff6200;border-color:#ff6200}
.tp-copy-btn.copied{background:rgba(34,211,160,.15);color:#22d3a0;border-color:#22d3a0}
.tp-article pre{background:#0d1117;margin:0;padding:22px 20px;overflow-x:auto}
.tp-article pre code{font-family:'Fira Code','Courier New',monospace;font-size:14px;line-height:1.7;color:#e2e8f0;background:none;padding:0;border:none}
.tp-article code{font-family:'Fira Code','Courier New',monospace;font-size:14px;background:#f1f5f9;color:#e11d48;padding:2px 7px;border-radius:4px;border:1px solid #e2e8f0}
.tp-article pre code{color:#e2e8f0;background:none;padding:0;border:none}

/* ── Language Switcher ─────────────────────────────────── */
.lang-switcher{position:relative;font-family:sans-serif}
.lang-current{display:flex;align-items:center;gap:6px;padding:6px 12px;background:#f2f0ea;border:1px solid #e5e3dc;border-radius:6px;cursor:pointer;font-size:13px;font-weight:600;color:#1a1a2e}
.lang-current:hover{background:#e5e3dc}
.lang-dropdown{display:none;position:absolute;top:100%;right:0;background:#fff;border:1px solid #e5e3dc;border-radius:8px;box-shadow:0 8px 24px rgba(0,0,0,.12);min-width:160px;z-index:999;overflow:hidden;margin-top:4px}
.lang-switcher:hover .lang-dropdown{display:block}
.lang-dropdown a{display:flex;align-items:center;gap:10px;padding:10px 14px;font-size:13px;color:#1a1a2e;text-decoration:none;transition:background .15s}
.lang-dropdown a:hover{background:#f8fafc;color:#ff6200}
.lang-dropdown a.active{background:#fff8f0;color:#ff6200;font-weight:700}
.lang-flag{font-size:18px}

/* Polylang language list in dropdown */
.lang-dropdown .lang-item{display:block}
.lang-dropdown .lang-item a{display:flex;align-items:center;gap:10px;padding:10px 14px;font-size:13px;color:#1a1a2e;text-decoration:none}
.lang-dropdown .lang-item a:hover{background:#f8fafc;color:#ff6200}
.lang-dropdown .lang-item.current-lang a{background:#fff8f0;color:#ff6200;font-weight:700}

/* ── Comments ──────────────────────────────────────────── */
.tp-comments{margin-top:48px;padding-top:40px;border-top:2px solid #1a1a2e}
.tp-comments-title{font-family:sans-serif;font-size:22px;font-weight:700;color:#1a1a2e;margin-bottom:28px}
.tp-comment-list{list-style:none;padding:0;margin:0}
.tp-comment-list .comment{padding:20px 0;border-bottom:1px solid #f3f4f6}
.tp-comment-list .comment:last-child{border-bottom:none}
.tp-comment-body{display:flex;gap:14px;align-items:flex-start}
.tp-comment-avatar img{width:48px;height:48px;border-radius:50%;border:2px solid #e5e3dc}
.tp-comment-content{flex:1}
.tp-comment-meta{display:flex;align-items:center;gap:10px;margin-bottom:8px;flex-wrap:wrap}
.tp-comment-author{font-weight:700;font-size:14px;color:#1a1a2e;font-family:sans-serif}
.tp-comment-date{font-size:12px;color:#9ca3af;font-family:sans-serif}
.tp-comment-text{font-size:15px;color:#4a5568;line-height:1.7}
.tp-comment-text p{margin:0 0 8px}
.tp-comment-reply a{font-size:12px;font-weight:600;color:#ff6200;text-decoration:none;font-family:sans-serif}
.tp-comment-reply a:hover{text-decoration:underline}

/* Comment Form */
.tp-comment-form-wrap{margin-top:40px;background:#f8fafc;border-radius:12px;padding:28px 32px;border:1px solid #e2e8f0}
.tp-comment-form-title{font-family:sans-serif;font-size:20px;font-weight:700;color:#1a1a2e;margin:0 0 24px}
.tp-form-row{display:grid;grid-template-columns:1fr 1fr;gap:16px}
@media(max-width:600px){.tp-form-row{grid-template-columns:1fr}}
.tp-form-group{display:flex;flex-direction:column;gap:6px;margin-bottom:16px}
.tp-form-group label{font-size:13px;font-weight:600;color:#374151;font-family:sans-serif}
.tp-form-group label span{color:#ff6200}
.tp-form-group input,.tp-form-group textarea{padding:10px 14px;border:1px solid #e2e8f0;border-radius:8px;font-size:14px;font-family:sans-serif;color:#1a1a2e;background:#fff;transition:border-color .2s;outline:none}
.tp-form-group input:focus,.tp-form-group textarea:focus{border-color:#ff6200;box-shadow:0 0 0 3px rgba(255,98,0,.08)}
.tp-form-group textarea{resize:vertical;min-height:120px}
.tp-form-check{flex-direction:row;align-items:center}
.tp-form-check label{font-size:13px;color:#6b7280;display:flex;align-items:center;gap:8px;cursor:pointer}
.tp-comment-submit{background:#ff6200;color:#fff;border:none;padding:12px 28px;border-radius:8px;font-size:14px;font-weight:700;font-family:sans-serif;cursor:pointer;transition:background .2s;margin-top:8px}
.tp-comment-submit:hover{background:#e55a00}
.tp-comments-closed{font-size:14px;color:#9ca3af;font-style:italic;font-family:sans-serif}

/* Nested comments */
.tp-comment-list .children{list-style:none;padding-left:32px;margin:16px 0 0}

/* ── Search Bar ────────────────────────────────────────── */
.header-search{flex:1;max-width:320px}
.header-search .search-form{display:flex;align-items:center;gap:0}
.header-search .search-field{width:100%;padding:9px 16px;border:2px solid #e5e3dc;border-right:none;border-radius:8px 0 0 8px;font-size:14px;font-family:sans-serif;color:#1a1a2e;background:#f8f7f4;outline:none;transition:border-color .2s}
.header-search .search-field:focus{border-color:#ff6200;background:#fff}
.header-search .search-field::placeholder{color:#9ca3af}
.header-search .search-submit{padding:9px 16px;background:#ff6200;color:#fff;border:2px solid #ff6200;border-radius:0 8px 8px 0;font-size:13px;font-weight:700;font-family:sans-serif;cursor:pointer;transition:background .2s;white-space:nowrap}
.header-search .search-submit:hover{background:#e55a00;border-color:#e55a00}

/* Search Results Page */
.search-results-header{padding:24px 0;border-bottom:2px solid #1a1a2e;margin-bottom:32px}
.search-results-header h1{font-family:'Impact',sans-serif;font-size:32px;color:#1a1a2e;letter-spacing:1px}
.search-results-header span{color:#ff6200}
.search-no-results{text-align:center;padding:60px 20px}
.search-no-results h2{font-size:24px;color:#1a1a2e;margin-bottom:12px;font-family:sans-serif}
.search-no-results p{color:#6b7280;font-size:16px;margin-bottom:24px}

/* Mobile search */
@media(max-width:768px){
    .header-search{max-width:100%;order:3;width:100%}
    .header-inner{flex-wrap:wrap}
}
