/* ============================================================
   SaleMyMachine.com — Master Stylesheet v2
   Path: /assets/css/salemymachine.css
   Used by: header_v2.php (loads on all redesigned pages)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,400;12..96,600;12..96,700;12..96,800&family=Public+Sans:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  --ink: #0F1419;
  --ink-2: #1C2128;
  --steel: #3A4047;
  --steel-2: #5A6470;
  --concrete: #F4F1EB;
  --concrete-2: #E8E4DB;
  --paper: #FCFAF6;
  --yellow: #FFC10E;
  --yellow-deep: #E5A800;
  --green: #1F7A3A;
  --red: #C5341F;
  --line: rgba(15, 20, 25, 0.10);
  --line-dark: rgba(255, 255, 255, 0.10);
}

/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Public Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
img, svg { display: block; max-width: 100%; }
input, select, textarea { font: inherit; }
ul { list-style: none; }
.mono { font-family: 'JetBrains Mono', monospace; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

/* ===== TOP UTILITY BAR ===== */
.topbar { background: var(--ink); color: rgba(255,255,255,0.75); font-size: 13px; padding: 8px 0; border-bottom: 1px solid var(--line-dark); }
.topbar .container { display: flex; justify-content: space-between; align-items: center; }
.topbar-left { display: flex; gap: 24px; align-items: center; }
.topbar-item { display: flex; gap: 6px; align-items: center; }
.topbar-item svg { width: 14px; height: 14px; }
.topbar a:hover { color: var(--yellow); }
.topbar-right { display: flex; gap: 16px; align-items: center; }

/* ===== MAIN HEADER (yellow themed) ===== */
header.smm-header { background: var(--yellow); color: var(--ink); padding: 18px 0; position: sticky; top: 0; z-index: 100; border-bottom: 1px solid rgba(15,20,25,0.12); box-shadow: 0 2px 12px -4px rgba(15,20,25,0.15); }
header.smm-header .container { display: flex; align-items: center; gap: 40px; }
.smm-logo { display: flex; align-items: center; flex-shrink: 0; }
.smm-logo img { height: 48px; width: auto; display: block; transition: transform 0.2s; }
.smm-logo:hover img { transform: scale(1.04); }
.smm-logo-footer img { height: 56px; filter: brightness(0) invert(1); /* forces logo white on dark footer bg — remove if your logo already looks good on dark */ }
.smm-nav { display: flex; gap: 28px; flex: 1; font-weight: 500; font-size: 15px; }
.smm-nav > li { position: relative; }
.smm-nav > li > a { display: block; padding: 6px 0; color: var(--ink); font-weight: 600; transition: all 0.2s; border-bottom: 2px solid transparent; }
.smm-nav > li > a:hover, .smm-nav > li.active > a { color: var(--ink); border-bottom-color: var(--ink); }
.smm-nav .has-drop > a::after { content: ''; display: inline-block; width: 6px; height: 6px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: rotate(45deg) translateY(-2px); margin-left: 6px; }
.smm-nav .drop-menu { position: absolute; top: 100%; left: 0; min-width: 200px; background: var(--ink); border: 1px solid var(--ink); border-radius: 6px; padding: 8px; opacity: 0; visibility: hidden; transform: translateY(6px); transition: all 0.2s; margin-top: 8px; box-shadow: 0 12px 32px -8px rgba(0,0,0,0.35); }
.smm-nav > li:hover .drop-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.smm-nav .drop-menu a { display: block; padding: 8px 12px; border-radius: 4px; font-size: 14px; color: rgba(255,255,255,0.85); transition: all 0.15s; border-bottom: none; }
.smm-nav .drop-menu a:hover { background: rgba(255,193,14,0.15); color: var(--yellow); border-bottom: none; }
.smm-header-cta { display: flex; gap: 12px; align-items: center; }
.smm-mobile-toggle { display: none; width: 40px; height: 40px; border: 1.5px solid rgba(15,20,25,0.3); border-radius: 4px; color: var(--ink); flex-direction: column; justify-content: center; align-items: center; gap: 5px; background: transparent; }
.smm-mobile-toggle span { display: block; width: 20px; height: 2px; background: var(--ink); transition: all 0.2s; }

/* Header-scoped button overrides (main .btn styles still apply everywhere else) */
header.smm-header .btn-ghost { border-color: rgba(15,20,25,0.35); color: var(--ink); }
header.smm-header .btn-ghost:hover { border-color: var(--ink); background: var(--ink); color: var(--yellow); }
header.smm-header .btn-yellow { background: var(--ink); color: var(--yellow); }
header.smm-header .btn-yellow:hover { background: var(--ink-2); color: var(--yellow); }

/* ===== BUTTONS ===== */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 11px 20px; border-radius: 4px; font-weight: 600; font-size: 14px; transition: all 0.2s; border: 1.5px solid transparent; white-space: nowrap; cursor: pointer; font-family: inherit; }
.btn-yellow { background: var(--yellow); color: var(--ink); }
.btn-yellow:hover { background: var(--yellow-deep); transform: translateY(-1px); }
.btn-ghost { border-color: rgba(255,255,255,0.25); color: white; background: transparent; }
.btn-ghost:hover { border-color: var(--yellow); color: var(--yellow); }
.btn-ink { background: var(--ink); color: white; }
.btn-ink:hover { background: var(--ink-2); }
.btn-outline { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn-outline:hover { background: var(--ink); color: white; }
.btn-lg { padding: 15px 28px; font-size: 15px; }
.btn-sm { padding: 7px 14px; font-size: 13px; }

/* ===== HERO ===== */
.hero { background: var(--ink); color: white; padding: 40px 0 0; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle at 20% 80%, rgba(255,193,14,0.06) 0%, transparent 40%), radial-gradient(circle at 80% 20%, rgba(255,193,14,0.04) 0%, transparent 40%); pointer-events: none; }
.hero .container { position: relative; z-index: 1; display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: center; }
.hero-tag { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,193,14,0.10); color: var(--yellow); padding: 6px 12px; border-radius: 100px; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 24px; border: 1px solid rgba(255,193,14,0.25); }
.hero-tag::before { content: ''; width: 6px; height: 6px; background: var(--yellow); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
.hero h1 { font-family: 'Bricolage Grotesque'; font-weight: 800; font-size: clamp(40px, 5.5vw, 68px); line-height: 1.0; letter-spacing: -0.03em; margin-bottom: 24px; }
.hero h1 .accent { color: var(--yellow); font-style: italic; }
.hero .subline { font-size: 18px; color: rgba(255,255,255,0.7); margin-bottom: 36px; max-width: 540px; }

/* ===== HERO SEARCH CARD ===== */
.search-card { background: white; color: var(--ink); padding: 8px; border-radius: 8px; display: grid; grid-template-columns: 1.5fr 1fr 1fr auto; gap: 1px; align-items: stretch; box-shadow: 0 20px 50px -10px rgba(0,0,0,0.3); margin-bottom: 16px; }
.search-field { padding: 10px 14px; background: var(--paper); border-radius: 5px; display: flex; flex-direction: column; text-align: left; }
.search-field label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; color: var(--steel-2); margin-bottom: 2px; }
.search-field select, .search-field input { border: none; background: transparent; font: inherit; font-weight: 600; font-size: 15px; color: var(--ink); outline: none; padding: 0; width: 100%; }
.search-btn { background: var(--yellow); color: var(--ink); border-radius: 5px; padding: 0 24px; font-weight: 700; display: flex; align-items: center; gap: 8px; transition: background 0.2s; border: none; cursor: pointer; }
.search-btn:hover { background: var(--yellow-deep); }
.quick-search { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; font-size: 13px; color: rgba(255,255,255,0.6); }
.quick-pill { padding: 4px 10px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: 100px; color: rgba(255,255,255,0.85); cursor: pointer; transition: all 0.2s; }
.quick-pill:hover { border-color: var(--yellow); color: var(--yellow); }

/* ===== HERO ART ===== */
.hero-art { position: relative; aspect-ratio: 1/1; max-width: 480px; margin-left: auto; }
.hero-art svg { width: 100%; height: 100%; }
.floating-card { position: absolute; background: white; color: var(--ink); padding: 12px 16px; border-radius: 8px; box-shadow: 0 10px 30px -5px rgba(0,0,0,0.3); display: flex; gap: 10px; align-items: center; font-size: 13px; animation: float 4s ease-in-out infinite; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.float-1 { top: 12%; left: -8%; animation-delay: 0s; }
.float-2 { bottom: 18%; right: -4%; animation-delay: 1.5s; }
.float-3 { top: 50%; right: -10%; animation-delay: 0.7s; }
.floating-card .icon { width: 32px; height: 32px; border-radius: 50%; display: grid; place-items: center; }
.floating-card strong { display: block; font-size: 14px; }
.floating-card span { color: var(--steel-2); font-size: 12px; }

/* ===== STATS STRIP ===== */
.stats-strip { margin-top: 64px; padding: 28px 0; border-top: 1px solid var(--line-dark); background: var(--ink-2); position: relative; z-index: 1; }
.stats-strip .container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat { padding-left: 16px; border-left: 2px solid var(--yellow); }
.stat-num { font-family: 'Bricolage Grotesque'; font-weight: 800; font-size: 32px; line-height: 1; color: white; }
.stat-num .plus { color: var(--yellow); }
.stat-label { font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.5); margin-top: 6px; }

/* ===== SECTION COMMON ===== */
section.smm-section { padding: 88px 0; }
.section-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 48px; gap: 24px; }
.section-head .left { max-width: 640px; }
.eyebrow { display: inline-block; font-size: 12px; text-transform: uppercase; letter-spacing: 0.12em; font-weight: 600; color: var(--steel-2); margin-bottom: 12px; padding-left: 30px; position: relative; }
.eyebrow::before { content: ''; position: absolute; left: 0; top: 50%; width: 22px; height: 2px; background: var(--yellow); }
.section-head h2 { font-family: 'Bricolage Grotesque'; font-weight: 700; font-size: clamp(28px, 3.4vw, 44px); line-height: 1.05; letter-spacing: -0.02em; }
.section-head p { color: var(--steel-2); font-size: 17px; margin-top: 12px; }

/* ===== QUICK FILTER (tab-based homepage shortcuts) ===== */
.quick-filter { background: var(--paper); padding: 72px 0; }
.qf-head { margin-bottom: 32px; }
.qf-head h2 { font-family: 'Bricolage Grotesque'; font-weight: 700; font-size: clamp(24px, 3vw, 36px); line-height: 1.05; letter-spacing: -0.02em; margin-top: 8px; }
.qf-tabs { display: flex; gap: 4px; border-bottom: 2px solid var(--line); margin-bottom: 28px; overflow-x: auto; scrollbar-width: none; }
.qf-tabs::-webkit-scrollbar { display: none; }
.qf-tab { padding: 12px 22px; background: none; border: none; font-weight: 700; font-size: 15px; color: var(--steel-2); cursor: pointer; position: relative; white-space: nowrap; font-family: inherit; transition: color 0.15s; }
.qf-tab:hover { color: var(--ink); }
.qf-tab.active { color: var(--ink); }
.qf-tab.active::after { content: ''; position: absolute; bottom: -2px; left: 0; right: 0; height: 3px; background: var(--yellow); border-radius: 2px 2px 0 0; }
.qf-panel { display: none; }
.qf-panel.active { display: block; animation: qfFadeIn 0.25s ease-out; }
@keyframes qfFadeIn { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: translateY(0); } }
.qf-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 10px; }
.qf-grid-budget { grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); }
.qf-chip { display: flex; flex-direction: column; padding: 16px 18px; background: var(--paper); border: 1.5px solid var(--line); border-radius: 8px; text-decoration: none; color: var(--ink); transition: all 0.2s; gap: 4px; position: relative; overflow: hidden; }
.qf-chip::before { content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 100%; background: var(--yellow); transform: scaleY(0); transform-origin: top; transition: transform 0.2s; }
.qf-chip:hover { border-color: var(--ink); transform: translateY(-2px); box-shadow: 0 10px 22px -8px rgba(0,0,0,0.12); }
.qf-chip:hover::before { transform: scaleY(1); }
.qf-chip-name { font-family: 'Bricolage Grotesque'; font-weight: 700; font-size: 16px; letter-spacing: -0.01em; color: var(--ink); }
.qf-chip-count { font-size: 12px; color: var(--steel-2); font-weight: 500; }
.qf-chip-budget .qf-chip-name { font-size: 17px; }
.qf-empty { padding: 40px; text-align: center; color: var(--steel-2); border: 1px dashed var(--line); border-radius: 8px; grid-column: 1 / -1; }
.qf-viewall { display: inline-flex; align-items: center; gap: 4px; margin-top: 20px; font-size: 14px; font-weight: 600; color: var(--ink); text-decoration: none; padding-bottom: 2px; border-bottom: 2px solid transparent; transition: border-color 0.15s; }
.qf-viewall:hover { border-bottom-color: var(--yellow); }

@media (max-width: 640px) {
  .quick-filter { padding: 48px 0; }
  .qf-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .qf-chip { padding: 12px 14px; }
  .qf-chip-name { font-size: 14px; }
}

/* ===== AD SLIDER (sits right below header — 4:1 banner style) ===== */
.ad-slider-section { background: var(--ink); padding: 20px 0 32px; }
.ad-slider { position: relative; max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.ad-slider-inner { position: relative; aspect-ratio: 4 / 1; border-radius: 10px; overflow: hidden; background: var(--ink-2); }
.ad-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 0.6s ease-in-out; }
.ad-slide.active { opacity: 1; z-index: 1; }
.ad-slide img { width: 100%; height: 100%; object-fit: cover; }
.ad-slide a { display: block; width: 100%; height: 100%; }
.ad-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 40px; height: 40px; background: rgba(15,20,25,0.75); color: white; border-radius: 50%; display: grid; place-items: center; cursor: pointer; z-index: 2; transition: background 0.2s; border: none; }
.ad-nav:hover { background: var(--yellow); color: var(--ink); }
.ad-nav svg { width: 18px; height: 18px; }
.ad-prev { left: 12px; }
.ad-next { right: 12px; }
.ad-bullets { position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 2; }
.ad-bullet { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.5); cursor: pointer; transition: all 0.2s; border: none; padding: 0; }
.ad-bullet.active { background: var(--yellow); width: 24px; border-radius: 4px; }

/* ===== CATEGORIES ===== */
.categories { background: var(--concrete); }
.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.cat-card { background: var(--paper); border: 1px solid var(--line); border-radius: 8px; padding: 24px; display: flex; flex-direction: column; gap: 16px; transition: all 0.25s; position: relative; overflow: hidden; }
.cat-card::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 3px; background: var(--yellow); transition: width 0.3s; }
.cat-card:hover { border-color: var(--ink); transform: translateY(-2px); box-shadow: 0 12px 24px -8px rgba(0,0,0,0.12); }
.cat-card:hover::after { width: 100%; }
.cat-icon { width: 56px; height: 56px; background: var(--ink); color: var(--yellow); border-radius: 6px; display: grid; place-items: center; }
.cat-icon svg { width: 30px; height: 30px; }
.cat-name { font-family: 'Bricolage Grotesque'; font-weight: 700; font-size: 18px; letter-spacing: -0.01em; }
.cat-meta { display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: var(--steel-2); margin-top: auto; }
.cat-avail { display: inline-flex; align-items: center; gap: 6px; color: var(--green); font-weight: 600; }
.cat-avail::before { content: ''; width: 6px; height: 6px; background: var(--green); border-radius: 50%; }

/* ===== EQUIPMENT CARDS ===== */
.equipment { background: var(--paper); }
.eq-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.eq-card { background: white; border: 1px solid var(--line); border-radius: 8px; overflow: hidden; transition: all 0.25s; display: flex; flex-direction: column; }
.eq-card:hover { border-color: var(--ink); transform: translateY(-3px); box-shadow: 0 16px 32px -10px rgba(0,0,0,0.15); }
.eq-image { aspect-ratio: 4/3; background: var(--concrete); position: relative; overflow: hidden; }
.eq-image img { width: 100%; height: 100%; object-fit: cover; }
.eq-image svg { width: 100%; height: 100%; }
.eq-badge { position: absolute; top: 12px; left: 12px; background: var(--green); color: white; font-size: 11px; font-weight: 600; padding: 4px 10px; border-radius: 100px; text-transform: uppercase; letter-spacing: 0.06em; }
.eq-badge.sold { background: var(--red); }
.eq-sku { position: absolute; bottom: 12px; right: 12px; background: rgba(15,20,25,0.85); color: rgba(255,255,255,0.85); font-family: 'JetBrains Mono'; font-size: 11px; padding: 3px 8px; border-radius: 3px; }
.eq-body { padding: 18px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.eq-title { font-family: 'Bricolage Grotesque'; font-weight: 700; font-size: 16px; line-height: 1.2; color: var(--ink); }
.eq-specs { display: flex; gap: 14px; font-size: 13px; color: var(--steel-2); flex-wrap: wrap; }
.eq-specs span { display: flex; gap: 5px; align-items: center; }
.eq-specs svg { width: 13px; height: 13px; }
.eq-price-row { display: flex; justify-content: space-between; align-items: flex-end; padding-top: 12px; border-top: 1px solid var(--line); margin-top: auto; }
.eq-price { font-family: 'Bricolage Grotesque'; font-weight: 800; font-size: 22px; color: var(--ink); letter-spacing: -0.01em; }
.eq-price-label { font-size: 11px; color: var(--steel-2); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 2px; }
.eq-view { background: var(--ink); color: white; padding: 8px 14px; border-radius: 4px; font-size: 13px; font-weight: 600; transition: background 0.2s; }
.eq-view:hover { background: var(--yellow); color: var(--ink); }

/* ===== WHY US ===== */
.why { background: var(--concrete); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.why-card { background: var(--paper); padding: 36px 32px; transition: background 0.25s; }
.why-card:hover { background: var(--ink); color: white; }
.why-card:hover .why-num { color: var(--yellow); }
.why-card:hover .why-icon { background: var(--yellow); color: var(--ink); }
.why-card:hover .why-desc { color: rgba(255,255,255,0.7); }
.why-num { font-family: 'JetBrains Mono'; font-size: 13px; color: var(--steel-2); margin-bottom: 24px; transition: color 0.25s; }
.why-icon { width: 52px; height: 52px; background: var(--ink); color: var(--yellow); border-radius: 6px; display: grid; place-items: center; margin-bottom: 20px; transition: all 0.25s; }
.why-icon svg { width: 26px; height: 26px; }
.why-title { font-family: 'Bricolage Grotesque'; font-weight: 700; font-size: 22px; margin-bottom: 10px; line-height: 1.2; }
.why-desc { color: var(--steel-2); font-size: 14.5px; line-height: 1.6; }

/* ===== SELL CTA ===== */
.sell-cta { background: var(--yellow); color: var(--ink); padding: 80px 0; position: relative; overflow: hidden; }
.sell-cta::before { content: 'SELL'; position: absolute; font-family: 'Bricolage Grotesque'; font-weight: 800; font-size: 380px; opacity: 0.06; right: -40px; top: -100px; line-height: 1; }
.sell-cta .container { position: relative; z-index: 1; display: flex; align-items: center; gap: 40px; justify-content: space-between; }
.sell-cta-text { max-width: 640px; }
.sell-cta h2 { font-family: 'Bricolage Grotesque'; font-weight: 800; font-size: clamp(32px, 4.2vw, 56px); line-height: 1; letter-spacing: -0.025em; margin-bottom: 16px; }
.sell-cta p { font-size: 17px; opacity: 0.8; margin-bottom: 0; }
.sell-cta .btns { display: flex; gap: 12px; flex-shrink: 0; }

/* ===== FOOTER ===== */
footer.smm-footer { background: var(--ink); color: rgba(255,255,255,0.7); padding: 72px 0 32px; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid var(--line-dark); }
.footer-brand .smm-logo { margin-bottom: 20px; }
.footer-brand p { font-size: 14.5px; line-height: 1.65; margin-bottom: 24px; max-width: 380px; }
.socials { display: flex; gap: 10px; }
.social-btn { width: 38px; height: 38px; border: 1px solid var(--line-dark); border-radius: 50%; display: grid; place-items: center; transition: all 0.2s; color: rgba(255,255,255,0.7); }
.social-btn:hover { background: var(--yellow); color: var(--ink); border-color: var(--yellow); }
.social-btn svg { width: 16px; height: 16px; }
.footer-col h4 { font-family: 'Bricolage Grotesque'; font-weight: 700; color: white; font-size: 16px; margin-bottom: 18px; letter-spacing: -0.01em; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 14px; transition: color 0.2s; }
.footer-col a:hover { color: var(--yellow); }
.footer-contact-item { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; margin-bottom: 10px; }
.footer-contact-item svg { flex: none; width: 16px; height: 16px; margin-top: 3px; color: var(--yellow); }
.footer-bottom { padding-top: 28px; display: flex; justify-content: space-between; align-items: center; font-size: 13px; flex-wrap: wrap; gap: 16px; }
.footer-bottom .links { display: flex; gap: 24px; }

/* ===== WHATSAPP FAB ===== */
.whatsapp-fab { position: fixed; bottom: 24px; right: 24px; width: 60px; height: 60px; background: #25D366; color: white; border-radius: 50%; display: grid; place-items: center; z-index: 50; box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4); transition: transform 0.2s; }
.whatsapp-fab:hover { transform: scale(1.08); }
.whatsapp-fab svg { width: 30px; height: 30px; }
.whatsapp-fab::after { content: ''; position: absolute; inset: 0; border-radius: 50%; background: #25D366; z-index: -1; animation: ripple 2s infinite; }
@keyframes ripple { 0% { transform: scale(1); opacity: 0.6; } 100% { transform: scale(1.6); opacity: 0; } }

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
  header.smm-header .container { gap: 20px; }
  .smm-nav, .topbar-left, .smm-header-cta .btn-ghost { display: none; }
  .smm-mobile-toggle { display: flex; }
  .smm-nav.mobile-open { display: flex; position: fixed; top: 74px; left: 0; right: 0; background: var(--yellow); flex-direction: column; padding: 20px; gap: 0; border-top: 1px solid rgba(15,20,25,0.15); box-shadow: 0 12px 24px -8px rgba(15,20,25,0.2); }
  .smm-nav.mobile-open > li { border-bottom: 1px solid rgba(15,20,25,0.15); }
  .smm-nav.mobile-open > li > a { padding: 14px 0; }
  .hero { padding-top: 48px; }
  .hero .container { grid-template-columns: 1fr; gap: 40px; }
  .hero-art { max-width: 360px; margin: 0 auto; }
  .float-3 { display: none; }
  .stats-strip .container { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .cat-grid, .eq-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .sell-cta .container { flex-direction: column; align-items: flex-start; }
  .search-card { grid-template-columns: 1fr; }
  .section-head { flex-direction: column; align-items: flex-start; }
  section.smm-section { padding: 56px 0; }
  .ad-slider-inner { aspect-ratio: 2/1; }
  .ad-nav { width: 36px; height: 36px; }
}
@media (max-width: 560px) {
  .cat-grid, .eq-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .header-cta .btn-ghost { display: none; }
  .ad-slider-inner { aspect-ratio: 4/3; }
}
