/* ============================================================
   BikeRideM - Main Stylesheet  v2.0
   ============================================================ */
:root{
  --orange:#e94b00;
  --orange2:#ff6b00;
  --orange-dark:#c83a00;
  --text:#111;
  --muted:#555;
  --border:#f2c7a7;
  --soft:#fff7f0;
  --dark:#12100f;
  --container:1200px;
  --radius:10px;
  --shadow:0 10px 30px rgba(0,0,0,.06);
  --shadow-hover:0 18px 45px rgba(0,0,0,.12);
}
*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{background:#fff;color:var(--text);font-family:Inter,Arial,sans-serif;line-height:1.6;font-size:16px}
img{max-width:100%;height:auto;display:block}
a{color:inherit;text-decoration:none}
button{cursor:pointer;font-family:inherit}
.container{max-width:var(--container);margin:auto;padding:0 20px}

/* SKIP LINK */
.skip-link{position:absolute;left:-999px;top:10px;background:#000;color:#fff;padding:8px 14px;z-index:999;border-radius:4px}
.skip-link:focus{left:10px}

/* ============================================================
   HEADER
   ============================================================ */
.site-header{background:#fff;border-bottom:1px solid #eee;position:sticky;top:0;z-index:100;box-shadow:0 2px 20px rgba(0,0,0,.05)}
.nav-wrap{display:flex;align-items:center;gap:16px;min-height:80px;padding:0 20px;max-width:var(--container);margin:auto}
.brand{display:flex;flex-direction:column;line-height:.9;min-width:175px;gap:2px}
.brand-icon{width:36px;height:28px;flex-shrink:0}
.brand-text{font:800 32px/1 'Barlow Condensed',Arial;color:#111;display:block}
.brand-text span{color:var(--orange)}
.brand small{font-weight:900;font-size:10px;letter-spacing:.1em;color:#777;display:block}

/* PRIMARY NAV */
.primary-nav{flex:1}
.primary-nav ul{display:flex;align-items:center;flex-wrap:wrap;gap:2px;list-style:none}
.primary-nav a{font-size:12.5px;font-weight:700;padding:6px 8px;border-radius:4px;transition:color .2s,background .2s;white-space:nowrap;display:block}
.primary-nav a:hover,.primary-nav .active a{color:var(--orange)}
.primary-nav .active>a{border-bottom:2px solid var(--orange)}
.has-dd{position:relative}
.has-dd>a{display:flex;align-items:center;gap:4px}
.has-dd>ul{display:none;position:absolute;top:calc(100% + 8px);left:0;background:#fff;box-shadow:0 20px 60px rgba(0,0,0,.14);border:1px solid #eee;border-radius:14px;padding:10px;min-width:210px;z-index:200}
.has-dd:hover>ul,.has-dd:focus-within>ul{display:block}
.has-dd>ul li{display:block}
.has-dd>ul li a{font-size:13px;padding:9px 14px;display:block;border-radius:6px}
.has-dd>ul li a:hover{background:var(--soft);color:var(--orange)}

/* HEADER SOCIAL */
.header-social{display:flex;align-items:center;gap:8px;flex-shrink:0}
.header-social a,.search-toggle{width:36px;height:36px;display:grid;place-items:center;border:1.5px solid #e0e0e0;border-radius:50%;background:#fff;transition:border-color .2s,color .2s}
.header-social a:hover,.search-toggle:hover{border-color:var(--orange);color:var(--orange)}
.header-social a:nth-child(1){color:#1877f2}
.header-social a:nth-child(2){color:#e1306c}
.header-social a:nth-child(3){color:#bd081c}
.header-social a:nth-child(4){color:#ff0000}
.search-toggle{border:1.5px solid #e0e0e0;background:none;color:#555}

/* HAMBURGER */
.menu-toggle{display:none;border:none;background:var(--orange);color:#fff;border-radius:8px;padding:9px 11px;flex-direction:column;gap:4px;width:40px;height:40px;align-items:center;justify-content:center}
.menu-toggle span{display:block;width:18px;height:2px;background:#fff;border-radius:2px;transition:transform .3s,opacity .3s}
.menu-toggle.open span:nth-child(1){transform:translateY(6px) rotate(45deg)}
.menu-toggle.open span:nth-child(2){opacity:0}
.menu-toggle.open span:nth-child(3){transform:translateY(-6px) rotate(-45deg)}

/* SEARCH PANEL */
.search-panel{display:none;padding:12px 20px;border-top:1px solid #eee;background:#fafafa}
.search-panel.open{display:block}
.search-panel input{width:100%;border:1.5px solid #ddd;border-radius:6px;padding:10px 16px;font-size:15px}

/* ============================================================
   HERO
   ============================================================ */
.hero{
  position:relative;
  overflow:hidden;
  background:radial-gradient(ellipse at center,#ffffff 0%,#ffffff 40%,#f5f5f5 100%);
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
}
/* TOP PART: text + buttons */
.hero-top{
  position:relative;
  z-index:10;
  width:100%;
  padding:48px 20px 28px;
  background:linear-gradient(to bottom,#fff 70%,rgba(255,255,255,0) 100%);
}
/* BOTTOM PART: bikes */
.hero-bikes{
  position:relative;
  width:100%;
  height:300px;
  overflow:hidden;
  flex-shrink:0;
}
.hero-motion{position:absolute;top:0;width:42%;height:140px;background:repeating-linear-gradient(170deg,rgba(233,75,0,.55) 0 4px,transparent 4px 22px);filter:blur(8px);opacity:.32;z-index:1}
.hero-motion-left{left:-6%;transform:skewY(-10deg)}
.hero-motion-right{right:-6%;transform:skewY(10deg)}
.hero-copy{position:relative;z-index:4;max-width:680px;margin:0 auto}
.hero-tagline{font:800 22px/1 'Barlow Condensed',Arial;letter-spacing:.06em;margin-bottom:8px;color:#444}
.hero h1{font:900 clamp(52px,7vw,94px)/.82 'Barlow Condensed',Arial;text-transform:uppercase}
.hero h1 span{display:block;color:var(--orange)}
.hero-sub{font-size:16px;max-width:520px;margin:12px auto 0;color:#444;line-height:1.55}

/* BUTTONS */
.btn{display:inline-flex;align-items:center;justify-content:center;gap:6px;border-radius:6px;background:linear-gradient(135deg,var(--orange),var(--orange-dark));color:#fff;font-weight:900;font-size:15px;padding:12px 28px;border:2px solid var(--orange);text-decoration:none;transition:opacity .2s,transform .15s;cursor:pointer;font-family:inherit}
.btn:hover{opacity:.9;transform:translateY(-1px)}
.btn-outline{background:#fff!important;color:#111!important;border-color:#ddd!important}
.btn-outline:hover{border-color:var(--orange)!important;color:var(--orange)!important}
.btn-sm{padding:8px 18px;font-size:13px;border-radius:5px;font-weight:900;display:inline-flex;align-items:center;gap:5px;background:linear-gradient(135deg,var(--orange),var(--orange-dark));color:#fff;border:2px solid var(--orange);cursor:pointer;font-family:inherit;transition:opacity .2s}
.btn-sm:hover{opacity:.88}
.btn-amazon{background:linear-gradient(135deg,#e94b00,#c83a00);color:#fff;padding:7px 14px;border-radius:5px;font-weight:900;font-size:12.5px;display:inline-flex;align-items:center;border:none;cursor:pointer;font-family:inherit}
.btn-amazon:hover{opacity:.9}
.btn-center{display:table;margin:18px auto 0}
.small-btn{display:inline-flex;align-items:center;gap:5px;border-radius:6px;background:linear-gradient(135deg,var(--orange),var(--orange-dark));color:#fff;font-weight:900;padding:10px 22px;border:2px solid var(--orange)}
.small-btn.center{display:table;margin:16px auto 0}

/* HERO ACTIONS */
.hero-actions{display:flex;flex-direction:row;gap:14px;justify-content:center;align-items:center;margin-top:20px;flex-wrap:nowrap}
.hero-actions .btn{padding:12px 26px;font-size:15px;white-space:nowrap;flex-shrink:0}

/* BIKE IMAGES */
.bike{position:absolute;object-fit:contain;bottom:0}
.bike-left{left:0;width:48%;animation:slideLeft .8s ease both;z-index:2}
.bike-right{right:0;width:48%;animation:slideRight .8s ease both;z-index:2}
@keyframes slideLeft{from{transform:translateX(-160px);opacity:0}to{transform:translateX(0);opacity:1}}
@keyframes slideRight{from{transform:translateX(160px);opacity:0}to{transform:translateX(0);opacity:1}}

/* ============================================================
   FEATURE STRIP
   ============================================================ */
.feature-strip{display:grid;grid-template-columns:repeat(5,1fr);border:1px solid var(--border);border-radius:12px;background:#fff;margin-top:28px;box-shadow:var(--shadow);overflow:hidden}
.fstrip-item{display:flex;align-items:center;gap:12px;padding:16px 18px;border-right:1px solid #f5e0d2;transition:background .2s}
.fstrip-item:last-child{border-right:none}
.fstrip-item:hover{background:var(--soft)}
.fstrip-icon{flex-shrink:0;width:42px;height:42px;display:grid;place-items:center;background:var(--soft);border-radius:8px}
.fstrip-item strong{display:block;font-size:13.5px;font-weight:800;line-height:1.2}
.fstrip-item span{display:block;color:#666;font-size:12px;margin-top:2px}

/* ============================================================
   SECTION TITLE
   ============================================================ */
.section{padding:36px 0}
.section-title{font:800 28px/1 'Barlow Condensed',Arial;text-align:center;margin:0 0 24px;text-transform:uppercase;display:flex;align-items:center;justify-content:center;gap:18px}
.section-title::before,.section-title::after{content:"";width:44px;height:2.5px;background:var(--orange);display:block}

/* ============================================================
   CATEGORY GRID
   ============================================================ */
.cat-grid{display:grid;grid-template-columns:repeat(10,1fr);gap:12px}
.cat-card{display:flex;flex-direction:column;align-items:center;gap:8px;border:1.5px solid #eee;border-radius:10px;background:#fff;padding:10px 8px;box-shadow:0 4px 16px rgba(0,0,0,.04);font-weight:800;font-size:12px;text-align:center;transition:transform .2s,border-color .2s,box-shadow .2s}
.cat-card:hover{transform:translateY(-4px);border-color:var(--orange);box-shadow:0 12px 30px rgba(233,75,0,.12)}
.cat-card img{height:62px;width:100%;object-fit:cover;border-radius:6px}

/* ============================================================
   MAIN GRID (HISTORY + SIDEBAR)
   ============================================================ */
.main-grid{display:grid;grid-template-columns:1fr 330px;gap:28px;align-items:start}
.content-col{}

/* HISTORY GRID */
.history-grid{display:grid;grid-template-columns:1fr 1fr;gap:16px;margin-bottom:32px}

/* HISTORY MAIN CARD */
.history-main{grid-column:span 2;display:grid;grid-template-columns:1fr 1fr;gap:0;border-radius:12px;overflow:hidden;border:1px solid #eee;box-shadow:var(--shadow);background:#fff}
.history-main img{height:240px;width:100%;object-fit:cover;border-radius:0}
.history-main-text{padding:20px 22px;display:flex;flex-direction:column;justify-content:center;gap:10px}
.history-label{color:var(--orange);font-weight:900;font-size:11.5px;letter-spacing:.06em;text-transform:uppercase}
.history-main h3{font-size:20px;font-weight:800;line-height:1.2}
.history-main p{color:#555;font-size:14px;line-height:1.55}

/* SMALL HISTORY */
.small-history{overflow:hidden;border-radius:10px}
.small-history img{height:150px;width:100%;object-fit:cover}
.small-history-text{padding:14px}
.small-history h3{font-size:17px;font-weight:800;margin-bottom:6px;line-height:1.25}
.small-history p{font-size:13px;color:#555;margin-bottom:10px}

/* EXPLORE LINK */
.explore-link{color:var(--orange);font-weight:800;font-size:13.5px;display:inline-flex;align-items:center;gap:4px;transition:gap .2s}
.explore-link:hover{gap:8px}

/* MINI LIST */
.mini-list{display:grid;gap:12px;padding:16px}
.mini-list article{display:grid;grid-template-columns:90px 1fr;gap:12px;align-items:center}
.mini-list img{width:90px;height:68px;object-fit:cover;border-radius:7px;flex-shrink:0}
.mini-list h3{font-size:15px;font-weight:800;margin-bottom:4px;line-height:1.2}
.mini-list p{font-size:12.5px;color:#666;margin-bottom:5px;line-height:1.4}

/* ============================================================
   POST GRID (LATEST POSTS)
   ============================================================ */
.post-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:16px}
.post-card{border:1.5px solid #eee;border-radius:12px;background:#fff;overflow:hidden;box-shadow:var(--shadow);transition:transform .2s,box-shadow .2s}
.post-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-hover)}
.image-wrap{position:relative;overflow:hidden}
.image-wrap img{width:100%;height:125px;object-fit:cover;transition:transform .3s}
.post-card:hover .image-wrap img{transform:scale(1.04)}
.post-label{position:absolute;top:8px;left:8px;background:var(--orange);color:#fff;font-size:10.5px;font-weight:900;border-radius:4px;padding:3px 7px;letter-spacing:.04em}
.pin-btn{position:absolute;right:8px;top:8px;border:none;background:#fff;color:var(--orange);border-radius:20px;font-weight:800;font-size:11px;padding:4px 9px;opacity:0;transition:opacity .2s;box-shadow:0 2px 8px rgba(0,0,0,.12)}
.image-wrap:hover .pin-btn{opacity:1}
.post-card-body{padding:12px}
.post-card h3{font-size:14.5px;font-weight:800;line-height:1.3;margin-bottom:8px}
.post-card h3 a{color:var(--text)}
.post-card h3 a:hover{color:var(--orange)}
.post-meta{font-size:12px;color:#888;display:flex;align-items:center;gap:4px;flex-wrap:wrap}
.post-meta svg{flex-shrink:0;opacity:.7}

/* ============================================================
   SIDEBAR
   ============================================================ */
.side-col{position:sticky;top:96px;align-self:start;display:flex;flex-direction:column;gap:18px}

/* AFFILIATE DEALS */
.deals h2,.why h2{font:800 22px/1 'Barlow Condensed',Arial;text-align:center;margin-bottom:16px;text-transform:uppercase}
.deal-item{display:grid;grid-template-columns:80px 1fr;gap:12px;margin-bottom:14px;align-items:center;padding-bottom:14px;border-bottom:1px solid #f5e0d2}
.deal-item:last-of-type{border-bottom:none;margin-bottom:0;padding-bottom:0}
.deal-item img{width:80px;height:72px;object-fit:cover;border-radius:8px}
.deal-item h3{font-size:15px;font-weight:800;margin-bottom:3px}
.deal-item p{font-size:12px;color:#666;margin-bottom:7px}
.brm-disclosure{font-size:11.5px;color:#777;margin:10px 0 8px;line-height:1.5}
.more-deals{color:var(--orange);font-weight:900;text-align:center;display:flex;align-items:center;justify-content:center;gap:4px;font-size:13.5px;margin-top:6px;transition:gap .2s}
.more-deals:hover{gap:8px}

/* WHY FOLLOW */
.why{margin-top:0}
.why-item{display:flex;align-items:flex-start;gap:14px;padding:12px 0;border-top:1px solid #f0f0f0}
.why-item:first-child{border-top:none}
.why-item svg{flex-shrink:0;margin-top:2px}
.why-item strong{display:block;font-size:14px;font-weight:800;margin-bottom:3px}
.why-item p{font-size:12.5px;color:#666;line-height:1.45}

/* ============================================================
   SOCIAL + NEWSLETTER
   ============================================================ */
.social-news{display:grid;grid-template-columns:1fr 420px;gap:28px;border:1.5px solid #eee;border-radius:14px;padding:24px;background:#fff;box-shadow:var(--shadow);margin-bottom:30px}
.social-news h2{font:800 20px/1 'Barlow Condensed',Arial;text-align:center;margin-bottom:16px;text-transform:uppercase}
.social-blocks{display:grid;grid-template-columns:repeat(2,1fr);gap:12px}
.social-blocks a{display:flex;align-items:center;gap:14px;color:#fff;border-radius:10px;padding:14px 18px;font-size:28px;font-weight:900;transition:transform .15s,opacity .2s}
.social-blocks a:hover{transform:translateY(-2px);opacity:.92}
.social-blocks span{font-size:15px;font-weight:700;line-height:1.2}
.social-blocks small{display:block;font-size:12px;font-weight:400;opacity:.85}
.social-fb{background:#1877f2}
.social-ig{background:linear-gradient(135deg,#7b2ff7,#f107a3,#f87b00)}
.social-pt{background:#e60023}
.social-yt{background:#ff0000}

/* NEWSLETTER */
.newsletter h2{font:800 20px/1 'Barlow Condensed',Arial;margin-bottom:10px;text-transform:uppercase}
.newsletter p{font-size:13.5px;color:#555;margin-bottom:14px;line-height:1.5}
.newsletter-row{display:flex;gap:8px;margin-bottom:8px}
.newsletter-row input{flex:1;border:1.5px solid #ddd;border-radius:6px;padding:11px 14px;font-size:14px;font-family:inherit}
.newsletter-row input:focus{outline:none;border-color:var(--orange)}
.newsletter-row .btn{padding:11px 18px;font-size:13.5px;white-space:nowrap}
.newsletter small{font-size:12px;color:#888;display:flex;align-items:center;gap:5px}
.form-msg{font-weight:700;color:var(--orange);font-size:13.5px;margin-top:8px;min-height:20px}

/* CARD BASE */
.card,.brm-card{background:#fff;border:1.5px solid #eee;border-radius:12px;box-shadow:var(--shadow);padding:18px}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer{background:linear-gradient(135deg,#141414 0%,#221208 100%);color:#fff;border-top:4px solid var(--orange);margin-top:10px}
.footer-grid{display:grid;grid-template-columns:1.4fr 1fr 1fr 1fr 1.3fr;gap:36px;padding:40px 20px;max-width:var(--container);margin:auto}
.footer-about .brand-text{color:#fff;font-size:28px}
.footer-about .brand-text span{color:var(--orange)}
.footer-about .brand small{color:#aaa}
.footer-about p{font-size:13px;color:#bbb;margin:12px 0;line-height:1.6}
.footer-grid h3{font:800 15px/1 'Barlow Condensed',Arial;text-transform:uppercase;letter-spacing:.06em;color:#fff;margin-bottom:14px;padding-bottom:8px;border-bottom:1px solid rgba(255,255,255,.1)}
.footer-grid a{display:block;color:#ccc;margin:8px 0;font-size:13.5px;transition:color .2s}
.footer-grid a:hover{color:var(--orange)}
.footer-icons{display:flex;gap:8px;margin-top:10px;flex-wrap:wrap}
.footer-icons a{width:30px;height:30px;background:rgba(255,255,255,.08);border-radius:50%;display:grid;place-items:center;color:#ccc;transition:background .2s,color .2s}
.footer-icons a:hover{background:var(--orange);color:#fff}
.affiliate-badge{display:inline-block;border:1.5px solid var(--orange);color:#ffb078;border-radius:5px;padding:5px 10px;font-weight:900;font-size:12px;letter-spacing:.05em;margin-top:10px}
.footer-bottom{border-top:1px solid rgba(255,255,255,.08);text-align:center;padding:14px 20px;color:#aaa;font-size:13px;display:flex;align-items:center;justify-content:center;flex-wrap:wrap;gap:6px;max-width:var(--container);margin:0 auto}
.footer-bottom a{color:#ccc;margin:0 6px;transition:color .2s}
.footer-bottom a:hover{color:var(--orange)}
.footer-bottom p{margin:0;color:#888}

/* BACK TO TOP */
.back-top{position:fixed;right:22px;bottom:22px;background:var(--orange);color:#fff;border:none;border-radius:8px;width:44px;height:44px;display:none;place-items:center;box-shadow:0 4px 16px rgba(233,75,0,.4);transition:opacity .2s,transform .2s;z-index:99}
.back-top:hover{transform:translateY(-2px)}

/* COOKIE BANNER */
.cookie{position:fixed;left:16px;bottom:16px;background:#fff;border:1.5px solid #eee;border-radius:12px;box-shadow:0 10px 40px rgba(0,0,0,.14);padding:14px 16px;display:none;z-index:200;max-width:320px;font-size:13px}
.cookie a{color:var(--orange);font-weight:700}
.cookie button{background:var(--orange);color:#fff;border:none;border-radius:6px;padding:7px 16px;font-weight:900;font-size:13px;margin-top:10px;font-family:inherit}

/* ============================================================
   ARCHIVE / BLOG
   ============================================================ */
.archive-hero{background:linear-gradient(135deg,#fff,#fff2ea);border-bottom:1px solid var(--border);padding:60px 0;text-align:center}
.archive-hero h1,.page-content h1{font:800 50px/1 'Barlow Condensed',Arial;margin:0 0 10px}
.archive-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:22px}
.layout-sidebar{display:grid;grid-template-columns:1fr 300px;gap:28px;align-items:start}
.sidebar .card{margin-bottom:16px}
.sidebar h3{font:800 18px 'Barlow Condensed';margin-bottom:12px;text-transform:uppercase}
.sidebar a{display:block;margin:8px 0;color:var(--orange);font-weight:700;font-size:13.5px}
.sidebar a:hover{text-decoration:underline}

/* ============================================================
   SINGLE POST
   ============================================================ */
.single-hero{text-align:center;padding:30px 0 0}
.single-hero h1{font:800 48px/1.1 'Barlow Condensed',Arial;margin:0 0 14px}
.single-hero img{width:100%;max-height:480px;object-fit:cover;border-radius:14px;margin-top:20px}
.single-grid{display:grid;grid-template-columns:1fr 300px;gap:30px;align-items:start}
.single-content{font-size:17px;line-height:1.75}
.single-content h2{font:800 32px 'Barlow Condensed';margin:24px 0 10px}
.single-content h3{font-size:22px;font-weight:800;margin:18px 0 8px}
.single-content p{margin-bottom:16px}
.single-content img{border-radius:10px;margin:16px 0}
.trust{display:flex;gap:8px;flex-wrap:wrap;margin:16px 0}
.trust span{background:#fff4ec;color:#c43b00;border:1px solid var(--border);border-radius:999px;padding:5px 12px;font-weight:800;font-size:13px}
.pros-cons{display:grid;grid-template-columns:1fr 1fr;gap:16px;margin:20px 0}
.pros-cons>div,.review-box,.compare-table,.author-box{border:1.5px solid #eee;border-radius:12px;padding:18px;background:#fff;box-shadow:0 4px 16px rgba(0,0,0,.04)}
.stars{color:var(--orange);font-size:22px}
.compare-table{overflow-x:auto}
.compare-table table{width:100%;border-collapse:collapse}
.compare-table th,.compare-table td{padding:10px 14px;border:1px solid #eee;font-size:14px}
.compare-table th{background:var(--soft);font-weight:800}
.author-box{display:flex;gap:16px;align-items:flex-start}
.avatar{width:64px;height:64px;border-radius:50%;background:var(--orange);color:#fff;display:grid;place-items:center;font-weight:900;font-size:22px;flex-shrink:0}
.sticky-side{position:sticky;top:96px;align-self:start}

/* ============================================================
   BIKE HISTORY PAGE
   ============================================================ */
.history-page{display:grid;grid-template-columns:270px 1fr;gap:28px}
.history-menu a{display:block;color:var(--orange);font-weight:800;margin:10px 0;font-size:14px}
.history-menu a:hover{text-decoration:underline}
.history-feature{display:grid;grid-template-columns:300px 1fr;gap:20px;margin-bottom:22px;border-radius:12px;overflow:hidden;border:1px solid #eee;box-shadow:var(--shadow)}
.history-feature img{height:220px;width:100%;object-fit:cover;border-radius:0}
.history-feature .history-main-text{padding:20px}
.map-placeholder{margin-top:20px;background:#f3f3f3;border:1px dashed #ccc;border-radius:12px;padding:60px;text-align:center;color:#888}

/* ============================================================
   404
   ============================================================ */
.error404-wrap{padding:70px 0;text-align:center;background:#fff7f0}
.error404-wrap .container{display:grid;grid-template-columns:1fr 1.2fr 1fr;gap:20px;align-items:center}
.error404-wrap h1{font:900 120px/1 'Barlow Condensed',Arial;color:var(--orange)}
.error404-wrap img{border-radius:12px}
.error404-wrap form{display:flex;gap:8px;margin:18px 0}
.error404-wrap input{flex:1;border:1.5px solid #ddd;border-radius:6px;padding:11px 14px;font-size:14px;font-family:inherit}
.error404-wrap button{background:var(--orange);color:#fff;border:none;border-radius:6px;padding:11px 20px;font-weight:900;font-family:inherit}

/* ============================================================
   MISC
   ============================================================ */
.brm-card{background:#fff;border:1.5px solid #eee;border-radius:12px;box-shadow:var(--shadow);padding:18px}

/* ============================================================
   RESPONSIVE - TABLET
   ============================================================ */
@media(max-width:1050px){
  .nav-wrap{min-height:70px;padding:0 16px}
  .menu-toggle{display:flex;margin-left:auto}
  .primary-nav{display:none;position:fixed;left:0;right:0;top:70px;bottom:0;background:#fff;overflow-y:auto;padding:16px 20px;box-shadow:0 30px 60px rgba(0,0,0,.15);z-index:99}
  .primary-nav.open{display:block}
  .primary-nav ul{display:block}
  .primary-nav li{margin:4px 0}
  .primary-nav a{font-size:14px;padding:10px 12px}
  .primary-nav .active>a{border-bottom:none;color:var(--orange)}
  .has-dd>a svg{display:none}
  .has-dd>ul{display:block;position:static;box-shadow:none;border:none;border-radius:0;background:var(--soft);padding:0 0 0 16px;margin:4px 0}
  .has-dd>ul li a{font-size:13px;padding:7px 14px}
  .footer-grid{grid-template-columns:repeat(2,1fr);gap:28px}
  .hero h1{font-size:62px}
  .hero-bikes{height:260px}
  .bike-left,.bike-right{width:46%}
  .cat-grid{grid-template-columns:repeat(5,1fr)}
  .main-grid,.layout-sidebar,.single-grid{grid-template-columns:1fr}
  .side-col,.sticky-side{position:static}
  .social-news{grid-template-columns:1fr}
  .feature-strip{grid-template-columns:repeat(3,1fr)}
  .fstrip-item:nth-child(3){border-right:none}
  .fstrip-item:nth-child(4){border-top:1px solid #f5e0d2}
  .fstrip-item:nth-child(5){border-top:1px solid #f5e0d2;border-right:none}
}

/* ============================================================
   RESPONSIVE - MOBILE
   ============================================================ */
@media(max-width:720px){
  .container{padding:0 14px}
  .brand{min-width:auto}
  .brand-text{font-size:26px}
  .header-social{gap:6px}
  .header-social a,.search-toggle{width:32px;height:32px}
  .hero-top{padding:36px 16px 22px}
  .hero h1{font-size:50px}
  .hero-sub{font-size:14.5px}
  .hero-bikes{height:200px}
  .bike-left{width:50%;left:0}
  .bike-right{width:50%;right:0}
  .feature-strip{grid-template-columns:1fr;border-radius:8px}
  .fstrip-item{border-right:none;border-top:1px solid #f5e0d2;gap:14px}
  .fstrip-item:first-child{border-top:none}
  .cat-grid{grid-template-columns:repeat(3,1fr);gap:10px}
  .cat-card img{height:70px}
  .history-grid{grid-template-columns:1fr}
  .history-main{grid-column:auto;grid-template-columns:1fr;border-radius:10px}
  .history-main img{height:180px}
  .post-grid{grid-template-columns:repeat(2,1fr)}
  .social-blocks{grid-template-columns:1fr 1fr}
  .newsletter-row{flex-direction:column}
  .footer-grid{grid-template-columns:1fr;gap:24px;padding:28px 16px}
  .archive-grid{grid-template-columns:1fr}
  .pros-cons{grid-template-columns:1fr}
  .history-page{grid-template-columns:1fr}
  .history-feature{grid-template-columns:1fr}
  .error404-wrap .container{grid-template-columns:1fr}
  .error404-wrap img{display:none}
  .error404-wrap h1{font-size:88px}
  .footer-bottom{flex-direction:column;gap:4px}
}

/* ============================================================
   RESPONSIVE - SMALL MOBILE
   ============================================================ */
@media(max-width:420px){
  .hero-top{padding:28px 14px 18px}
  .hero h1{font-size:42px}
  .hero-tagline{font-size:18px}
  .hero-bikes{height:170px}
  .bike-left{width:50%}
  .bike-right{width:50%}
  .post-grid,.social-blocks{grid-template-columns:1fr}
  .cat-grid{grid-template-columns:repeat(2,1fr);gap:8px}
  .cat-card{padding:8px;font-size:11px}
  .section-title{font-size:24px}
  .section-title::before,.section-title::after{width:26px}
  .header-social{display:none}
  .hero-actions{gap:10px}
  .hero-actions .btn{padding:10px 16px;font-size:13.5px}
}

/* ============================================================
   ACCESSIBILITY
   ============================================================ */
@media(prefers-reduced-motion:reduce){
  *,*::before,*::after{animation:none!important;transition:none!important;scroll-behavior:auto!important}
}
:focus-visible{outline:2px solid var(--orange);outline-offset:2px}

/* ── SHARE BAR ── */
.share-bar{display:flex;align-items:center;gap:8px;flex-wrap:wrap;justify-content:center;margin:12px 0 16px}
.share-bar span{font-weight:800;font-size:13px;color:#555}
.share-btn{display:inline-flex;align-items:center;gap:5px;border:none;border-radius:20px;padding:6px 14px;font-size:12.5px;font-weight:700;cursor:pointer;font-family:inherit;transition:opacity .2s}
.share-btn:hover{opacity:.85}
.share-fb{background:#1877f2;color:#fff}
.share-pt{background:#e60023;color:#fff}
.share-tw{background:#000;color:#fff}
.share-copy{background:#f0f0f0;color:#333}

/* ── SINGLE POST TRUST BADGES ── */
.trust a{color:var(--orange);font-weight:inherit}
