/* ============================================================
   ContractorCalcs — Global Stylesheet
   Dark navy / slate header, orange accent (#F97316)
   ============================================================ */

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:    #0F172A;
  --slate:   #1E293B;
  --slate2:  #2D3F55;
  --orange:  #F97316;
  --orange2: #EA6A05;
  --white:   #FFFFFF;
  --gray50:  #F8FAFC;
  --gray100: #F1F5F9;
  --gray200: #E2E8F0;
  --gray400: #94A3B8;
  --gray600: #475569;
  --gray700: #334155;
  --gray900: #0F172A;
  --green:   #22C55E;
  --red:     #EF4444;
  --yellow:  #EAB308;
  --radius:  10px;
  --shadow:  0 4px 24px rgba(0,0,0,.12);
  --trans:   .2s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray700);
  background: var(--white);
}

h1,h2,h3,h4,h5 {
  font-family: 'Barlow', 'Inter', Arial, sans-serif;
  font-weight: 700;
  line-height: 1.25;
  color: var(--navy);
}

a { color: var(--orange); text-decoration: none; }
a:hover { text-decoration: underline; }

img { max-width: 100%; display: block; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- Header / Nav ---------- */
.site-header {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 16px rgba(0,0,0,.35);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  text-decoration: none;
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: var(--orange);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon svg { width: 20px; height: 20px; fill: white; }

.logo-text {
  font-family: 'Barlow', Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.5px;
}

.logo-text span { color: var(--orange); }

/* Main nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-link {
  color: #CBD5E1;
  font-size: .82rem;
  font-weight: 500;
  padding: 6px 10px;
  border-radius: 6px;
  white-space: nowrap;
  transition: var(--trans);
  text-decoration: none;
}

.nav-link:hover {
  background: rgba(255,255,255,.08);
  color: var(--white);
  text-decoration: none;
}

.nav-link.active {
  color: var(--orange);
}

/* Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  margin: 5px 0;
  border-radius: 2px;
  transition: var(--trans);
}

.mobile-nav {
  display: none;
  background: var(--slate);
  padding: 12px 20px 16px;
  border-top: 1px solid rgba(255,255,255,.07);
}

.mobile-nav.open { display: block; }

.mobile-nav a {
  display: block;
  color: #CBD5E1;
  font-size: .9rem;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  text-decoration: none;
}

.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--orange); }

/* ---------- Search Bar ---------- */
.search-wrap {
  position: relative;
  max-width: 340px;
  flex: 1;
}

.search-wrap input {
  width: 100%;
  padding: 8px 14px 8px 38px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 8px;
  background: rgba(255,255,255,.09);
  color: var(--white);
  font-size: .85rem;
  outline: none;
  transition: var(--trans);
}

.search-wrap input::placeholder { color: rgba(255,255,255,.45); }
.search-wrap input:focus { border-color: var(--orange); background: rgba(255,255,255,.13); }

.search-icon {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  color: rgba(255,255,255,.45);
}

#search-results-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: var(--white);
  border: 1px solid var(--gray200);
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,.18);
  z-index: 9999;
  max-height: 320px;
  overflow-y: auto;
  display: none;
}

#search-results-dropdown.open { display: block; }

.search-result-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  cursor: pointer;
  border-bottom: 1px solid var(--gray100);
  transition: var(--trans);
}

.search-result-item:last-child { border-bottom: none; }
.search-result-item:hover { background: var(--gray50); }

.search-result-item .sri-name {
  font-weight: 600;
  font-size: .9rem;
  color: var(--navy);
}

.search-result-item .sri-cat {
  font-size: .78rem;
  color: var(--gray400);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  min-height: 380px;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/hero-contractor.jpg');
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,20,40,.72);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 64px 20px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.hero-badge {
  display: inline-block;
  background: var(--orange);
  color: white;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 16px;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--white);
  margin-bottom: 14px;
  font-family: 'Barlow', Arial, sans-serif;
}

.hero h1 span { color: var(--orange); }

.hero p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: #CBD5E1;
  max-width: 560px;
  margin-bottom: 28px;
}

.hero-search {
  display: flex;
  gap: 10px;
  max-width: 520px;
}

.hero-search input {
  flex: 1;
  padding: 14px 18px;
  border: 2px solid rgba(255,255,255,.15);
  border-radius: 10px;
  background: rgba(255,255,255,.1);
  color: var(--white);
  font-size: 1rem;
  outline: none;
  transition: var(--trans);
}

.hero-search input::placeholder { color: rgba(255,255,255,.5); }
.hero-search input:focus { border-color: var(--orange); background: rgba(255,255,255,.14); }

.hero-search button {
  padding: 14px 24px;
  background: var(--orange);
  color: white;
  border: none;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--trans);
  white-space: nowrap;
}

.hero-search button:hover { background: var(--orange2); }

/* ---------- Section Layout ---------- */
.section { padding: 56px 0; }
.section-alt { background: var(--gray50); }

.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.section-title {
  font-size: 1.5rem;
  color: var(--navy);
}

.section-title span { color: var(--orange); }

.see-all {
  font-size: .85rem;
  font-weight: 600;
  color: var(--orange);
  white-space: nowrap;
}

/* ---------- Category Pills ---------- */
.category-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  border-radius: 999px;
  border: 1.5px solid var(--gray200);
  background: var(--white);
  font-size: .83rem;
  font-weight: 600;
  color: var(--gray600);
  cursor: pointer;
  transition: var(--trans);
  text-decoration: none;
}

.pill:hover, .pill.active {
  background: var(--orange);
  border-color: var(--orange);
  color: white;
  text-decoration: none;
}

/* ---------- Tool Cards (grid) ---------- */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 18px;
}

.tool-card {
  background: var(--white);
  border: 1.5px solid var(--gray200);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: var(--trans);
  text-decoration: none;
  cursor: pointer;
}

.tool-card:hover {
  border-color: var(--orange);
  box-shadow: 0 4px 20px rgba(249,115,22,.12);
  transform: translateY(-2px);
  text-decoration: none;
}

.card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.card-icon.electrical  { background: #FEF3C7; }
.card-icon.materials   { background: #DCFCE7; }
.card-icon.measurement { background: #DBEAFE; }
.card-icon.cost        { background: #FCE7F3; }
.card-icon.structural  { background: #F3E8FF; }
.card-icon.lighting    { background: #FFF9C4; }
.card-icon.plumbing    { background: #CFFAFE; }
.card-icon.business    { background: #FEE2E2; }
.card-icon.insulation  { background: #D1FAE5; }
.card-icon.templates   { background: #EDE9FE; }

.card-name {
  font-weight: 700;
  font-size: .95rem;
  color: var(--navy);
}

.card-desc {
  font-size: .82rem;
  color: var(--gray600);
  line-height: 1.45;
}

.card-arrow {
  margin-top: auto;
  font-size: .78rem;
  font-weight: 600;
  color: var(--orange);
}

/* ---------- Popular badge ---------- */
.popular-badge {
  display: inline-block;
  background: var(--orange);
  color: white;
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 2px 8px;
  border-radius: 4px;
  margin-left: 6px;
  vertical-align: middle;
}

/* ---------- About Strip ---------- */
.about-strip {
  background: var(--slate);
  color: var(--white);
  padding: 48px 0;
  text-align: center;
}

.about-strip h2 { color: var(--white); margin-bottom: 12px; }
.about-strip p { color: #94A3B8; max-width: 640px; margin: 0 auto; }

/* ---------- Disclaimer ---------- */
.site-disclaimer {
  background: rgba(239, 68, 68, 0.05);
  border-top: 1px solid rgba(239, 68, 68, 0.15);
  padding: 20px 0;
  margin-top: 40px;
}
.site-disclaimer p {
  font-size: 0.78rem;
  line-height: 1.6;
  color: #94A3B8;
  margin: 0;
}
.site-disclaimer strong {
  color: #EF4444;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy);
  color: #94A3B8;
  padding: 48px 0 24px;
  font-size: .85rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 32px;
  margin-bottom: 40px;
}

.footer-col h4 {
  color: var(--white);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.footer-col a {
  display: block;
  color: #94A3B8;
  font-size: .82rem;
  margin-bottom: 7px;
  transition: var(--trans);
  text-decoration: none;
}

.footer-col a:hover { color: var(--orange); text-decoration: none; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

/* ============================================================
   CALCULATOR PAGE STYLES
   ============================================================ */

/* Breadcrumb */
.breadcrumb {
  background: var(--gray50);
  border-bottom: 1px solid var(--gray200);
  padding: 10px 0;
  font-size: .82rem;
  color: var(--gray400);
}

.breadcrumb a { color: var(--gray600); }
.breadcrumb span { margin: 0 6px; }

/* Page hero */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--slate2) 100%);
  padding: 40px 0 36px;
  color: white;
}

.page-hero .page-category {
  display: inline-block;
  background: var(--orange);
  color: white;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: 12px;
}

.page-hero h1 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  color: var(--white);
  margin-bottom: 8px;
}

.page-hero p {
  color: #94A3B8;
  font-size: 1rem;
  max-width: 560px;
}

/* Calculator card */
.calc-card {
  background: var(--white);
  border: 1.5px solid var(--gray200);
  border-radius: 14px;
  padding: 32px;
  box-shadow: var(--shadow);
  margin-bottom: 28px;
}

/* Form elements */
.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: .88rem;
  color: var(--navy);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--gray200);
  border-radius: 8px;
  font-size: 1rem;
  color: var(--gray700);
  background: var(--white);
  outline: none;
  transition: var(--trans);
  font-family: 'Inter', Arial, sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(249,115,22,.12);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-row-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}

.calc-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: white;
  border: none;
  border-radius: 10px;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--trans);
  margin-top: 4px;
  font-family: 'Inter', Arial, sans-serif;
}

.calc-btn:hover { background: var(--orange2); transform: translateY(-1px); }

.btn-secondary {
  background: var(--gray100);
  color: var(--gray700);
}

.btn-secondary:hover { background: var(--gray200); transform: none; }

.btn-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 12px;
}

/* Results box */
.results-box {
  display: none;
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
  border-radius: 12px;
  padding: 28px;
  margin-top: 24px;
  animation: fadeUp .3s ease;
}

.results-box.show { display: block; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.result-primary {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--orange);
  font-family: 'Barlow', Arial, sans-serif;
  line-height: 1;
  margin-bottom: 4px;
}

.result-label {
  font-size: .85rem;
  color: #94A3B8;
  margin-bottom: 20px;
}

.result-breakdown {
  display: grid;
  gap: 10px;
}

.result-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  background: rgba(255,255,255,.05);
  border-radius: 8px;
  border-left: 3px solid var(--orange);
}

.result-row span:first-child { color: #94A3B8; font-size: .88rem; }
.result-row span:last-child  { color: white; font-weight: 700; font-size: .95rem; }

.result-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 6px;
  font-weight: 700;
  font-size: .9rem;
  margin-top: 14px;
}

.result-status.ok { background: rgba(34,197,94,.15); color: #22C55E; }
.result-status.warn { background: rgba(234,179,8,.15); color: #EAB308; }
.result-status.bad { background: rgba(239,68,68,.15); color: #EF4444; }

.result-actions {
  display: flex;
  gap: 10px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.result-actions button, .result-actions a {
  padding: 9px 18px;
  border-radius: 8px;
  font-size: .85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--trans);
  border: 1.5px solid rgba(255,255,255,.15);
  color: white;
  background: rgba(255,255,255,.08);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.result-actions button:hover, .result-actions a:hover {
  background: rgba(255,255,255,.14);
  text-decoration: none;
}

/* Reference Tables */
.ref-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .85rem;
}

.ref-table th {
  background: var(--slate);
  color: white;
  padding: 10px 14px;
  text-align: left;
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.ref-table td {
  padding: 9px 14px;
  border-bottom: 1px solid var(--gray100);
  color: var(--gray700);
}

.ref-table tr:hover td { background: var(--gray50); }

/* SEO / Info content */
.calc-info {
  background: var(--white);
  border: 1.5px solid var(--gray200);
  border-radius: 14px;
  padding: 32px;
  margin-bottom: 28px;
}

.calc-info h2 { font-size: 1.25rem; margin-bottom: 12px; }
.calc-info h3 { font-size: 1rem; margin: 20px 0 8px; color: var(--slate); }
.calc-info p  { color: var(--gray600); margin-bottom: 12px; line-height: 1.7; }

/* Formula display */
.formula-box {
  background: var(--gray900);
  color: var(--orange);
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  font-size: .9rem;
  padding: 14px 20px;
  border-radius: 8px;
  margin: 12px 0;
  overflow-x: auto;
}

/* Feedback widget */
.feedback-widget {
  background: var(--gray50);
  border: 1.5px solid var(--gray200);
  border-radius: 10px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.feedback-widget span { font-weight: 600; font-size: .9rem; color: var(--navy); }

.feedback-btn {
  padding: 7px 18px;
  border-radius: 8px;
  border: 1.5px solid var(--gray200);
  background: white;
  font-size: .85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--trans);
}

.feedback-btn:hover { border-color: var(--orange); color: var(--orange); }
.feedback-btn.voted { background: var(--orange); color: white; border-color: var(--orange); }

/* Related calculators */
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
}

.related-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: white;
  border: 1.5px solid var(--gray200);
  border-radius: 10px;
  text-decoration: none;
  transition: var(--trans);
}

.related-card:hover {
  border-color: var(--orange);
  transform: translateY(-2px);
  text-decoration: none;
}

.related-card .rc-icon { font-size: 1.4rem; }
.related-card .rc-name { font-weight: 700; font-size: .88rem; color: var(--navy); }
.related-card .rc-desc { font-size: .77rem; color: var(--gray400); }

/* Tape measure UI for inch fraction */
.tape-measure {
  background: #F59E0B;
  border-radius: 8px;
  padding: 20px;
  font-family: monospace;
  margin-bottom: 16px;
  overflow-x: auto;
}

.tape-display {
  background: #FEF3C7;
  border: 2px solid #D97706;
  border-radius: 6px;
  padding: 14px;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  color: #78350F;
  min-height: 56px;
}

/* Mileage tracker entries table */
.entries-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .85rem;
  margin-top: 16px;
}

.entries-table th {
  background: var(--gray100);
  padding: 8px 12px;
  text-align: left;
  font-weight: 700;
  color: var(--navy);
  font-size: .8rem;
}

.entries-table td {
  padding: 9px 12px;
  border-bottom: 1px solid var(--gray100);
}

.entries-table tr:hover td { background: var(--gray50); }

.delete-btn {
  background: none;
  border: none;
  color: var(--red);
  cursor: pointer;
  font-size: 1rem;
  padding: 2px 6px;
  border-radius: 4px;
  transition: var(--trans);
}

.delete-btn:hover { background: rgba(239,68,68,.1); }

/* Light grid for recessed layout preview */
.light-grid-preview {
  background: #1E293B;
  border-radius: 8px;
  padding: 16px;
  overflow-x: auto;
  margin-top: 16px;
}

.light-grid-canvas {
  display: block;
  max-width: 100%;
}

/* Survey form */
.survey-question {
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--gray200);
}

.survey-question:last-child { border-bottom: none; }
.survey-question h3 { font-size: .95rem; margin-bottom: 10px; }

.star-rating { display: flex; gap: 6px; }

.star-rating button {
  font-size: 1.4rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--gray200);
  transition: var(--trans);
  padding: 0;
}

.star-rating button.active,
.star-rating button:hover { color: var(--orange); }

/* Checkbox group */
.checkbox-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.checkbox-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .88rem;
  cursor: pointer;
}

.checkbox-item input { width: auto; flex-shrink: 0; }

/* Tabs */
.tab-bar {
  display: flex;
  gap: 4px;
  border-bottom: 2px solid var(--gray200);
  margin-bottom: 24px;
}

.tab-btn {
  padding: 10px 20px;
  border: none;
  background: none;
  font-size: .88rem;
  font-weight: 600;
  color: var(--gray600);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: var(--trans);
  font-family: 'Inter', Arial, sans-serif;
}

.tab-btn:hover { color: var(--orange); }
.tab-btn.active { color: var(--orange); border-bottom-color: var(--orange); }

.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* Responsive */
@media (max-width: 768px) {
  .main-nav { display: none; }
  .nav-toggle { display: block; }
  .search-wrap { display: none; }

  .form-row, .form-row-3 {
    grid-template-columns: 1fr;
  }

  .calc-card, .calc-info { padding: 20px; }
  .result-primary { font-size: 2rem; }

  .tools-grid { grid-template-columns: 1fr 1fr; }

  .checkbox-group { grid-template-columns: 1fr; }

  .hero-search { flex-direction: column; }
}

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

  .header-inner { height: 56px; }

  .hero h1 { font-size: 1.7rem; }

  .tab-bar { overflow-x: auto; }
  .tab-btn { white-space: nowrap; }
}

/* Print styles */
@media print {
  .site-header, .breadcrumb, .feedback-widget, .related-grid, .site-footer { display: none !important; }
  .results-box { display: block !important; background: white !important; border: 1px solid #ccc; }
  .result-primary { color: #000 !important; }
  .result-row span { color: #000 !important; }
}
