/*
 * of2go-hub.css
 * Self-contained stylesheet for the OfficeFurniture2go.com Resource Hub
 * Replaces: fonts.css + font-awesome.min.css + of2go.all.min.css + header.css
 * No external dependencies except CDN fonts/icons — all styles inline.
 * Source: of2go.all.min.1.05.css + header-5.css (uploaded by site owner)
 */

/* ================================================================
   GOOGLE FONTS — Open Sans (body) + Oswald (phone number/headings)
   Replacing relative-path @font-face in fonts-4.css with CDN
   ================================================================ */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&family=Oswald:wght@300;400;700&display=swap');

/* ================================================================
   FONT AWESOME 4.7 — via CDN
   ================================================================ */
@font-face {
  font-family: 'FontAwesome';
  src: url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/fonts/fontawesome-webfont.woff2') format('woff2'),
       url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/fonts/fontawesome-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.fa-book:before           { content: "\f02d"; }
.fa-question-circle:before{ content: "\f059"; }
.fa-question-circle-o:before { content: "\f29c"; }
.fa-exchange:before       { content: "\f0ec"; }
.fa-lightbulb-o:before    { content: "\f0eb"; }
.fa-building:before       { content: "\f1ad"; }
.fa-th-large:before       { content: "\f009"; }
.fa-star:before           { content: "\f005"; }
.fa-phone:before          { content: "\f095"; }
.fa-search:before         { content: "\f002"; }
.fa-shopping-cart:before  { content: "\f07a"; }
.fa-file-pdf-o:before     { content: "\f1c1"; }
.fa-facebook:before       { content: "\f09a"; }
.fa-instagram:before      { content: "\f16d"; }
.fa-twitter:before        { content: "\f099"; }
.fa-pinterest:before      { content: "\f0d2"; }
.fa-table:before          { content: "\f0ce"; }
.fa-times-circle:before   { content: "\f057"; }
.fa-check:before          { content: "\f00c"; }
.fa-arrow-right:before    { content: "\f061"; }
.fa-home:before           { content: "\f015"; }
.fa-chevron-right:before  { content: "\f054"; }
.fa-bars:before           { content: "\f0c9"; }
.fa-caret-down:before     { content: "\f0d7"; }

/* ================================================================
   RESET & BASE
   Source: of2go.all.min.1.05.css
   ================================================================ */
*, *::before, *::after { box-sizing: border-box; }

html { font-size: 14px; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: #333;
  background: #fff;
}

a { color: #0088cc; text-decoration: none; }
a:hover { color: #64c2cf; }

img { max-width: 100%; height: auto; border: 0; }

ul, ol { margin: 0; padding: 0; list-style: none; }

p { margin: 0 0 10px; }

h1, h2, h3, h4, h5, h6 {
  margin: 0 0 10px;
  font-weight: 700;
  line-height: 1.2;
}

/* ================================================================
   BOOTSTRAP GRID SUBSET
   Extracted from of2go.all.min.1.05.css — exact widths
   ================================================================ */
.container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}
@media (min-width: 768px)  { .container { max-width: 750px; } }
@media (min-width: 992px)  { .container { max-width: 970px; } }
@media (min-width: 1200px) { .container { max-width: 1170px; } }

.row {
  margin-left: -15px;
  margin-right: -15px;
}
.row::after,
.row:after {
  content: "";
  display: table;
  clear: both;
}

[class*="col-"] {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  float: left;
}

/* xs — always */
.col-xs-2  { width: 16.66666667%; }
.col-xs-4  { width: 33.33333333%; }
.col-xs-5  { width: 41.66666667%; }
.col-xs-7  { width: 58.33333333%; }
.col-xs-8  { width: 66.66666667%; }
.col-xs-10 { width: 83.33333333%; }
.col-xs-12 { width: 100%; }

/* sm ≥768px */
@media (min-width: 768px) {
  .col-sm-3  { width: 25%; }
  .col-sm-4  { width: 33.33333333%; }
  .col-sm-5  { width: 41.66666667%; }
  .col-sm-7  { width: 58.33333333%; }
  .col-sm-8  { width: 66.66666667%; }
  .col-sm-9  { width: 75%; }
  .col-sm-12 { width: 100%; }
}

/* md ≥992px */
@media (min-width: 992px) {
  .col-md-3  { width: 25%; }
  .col-md-4  { width: 33.33333333%; }
  .col-md-5  { width: 41.66666667%; }
  .col-md-8  { width: 66.66666667%; }
  .col-md-9  { width: 75%; }
  .col-md-12 { width: 100%; }
}

/* lg ≥1200px */
@media (min-width: 1200px) {
  .col-lg-3  { width: 25%; }
  .col-lg-4  { width: 33.33333333%; }
  .col-lg-8  { width: 66.66666667%; }
  .col-lg-9  { width: 75%; }
  .col-lg-12 { width: 100%; }
}

/* Responsive grid collapse — mobile only */
@media (max-width: 767px) {
  [class*="col-"] { float: none; width: 100%; }
}

/* Utilities */
.pull-right  { float: right !important; }
.pull-left   { float: left !important; }
.clearfix::after, .clearfix:after { content: ""; display: table; clear: both; }
.hidden      { display: none !important; }
.text-right  { text-align: right; }
.text-center { text-align: center; }

/* hide-sm / hide-lg — from of2go.all.min.1.05.css */
@media (max-width: 767px)  { .hide-sm { display: none !important; } }
@media (min-width: 768px)  { .hide-lg { display: none !important; } }

/* ================================================================
   HEADER — WRAPPER
   ================================================================ */
.header-wrap-all {
  position: relative;
  z-index: 1000;
}

/* ================================================================
   HEADER-MID: logo + phone + value-props
   Source: of2go.all.min.1.05.css base + header-5.css overrides
   ================================================================ */
.header-mid {
  background: #f9f9f9;
}

/* Logo — header-5.css verbatim */
.header-logo {
  max-width: 255px;
  padding: 10px 0;
}
.header-logo img {
  padding: 0;
  aspect-ratio: 510 / 178;
  object-fit: contain;
  object-position: left;
  width: 100%;
}
.header-logo > a {
  display: block;
}

/* Talk-to-us block — from of2go.all.min.1.05.css */
/* .pull-right class on the div handles the outer float */
.header-mid .talk-to-us {
  padding: 15px 0 20px;
  overflow: hidden; /* clearfix for inner floats */
}

/* Talk number — floats right; message floats right to its left (side-by-side) */
/* Source: of2go.all.min.1.05.css (exact) */
.header-mid .talk-to-us .talk-number {
  color: #64c2cf;
  font-size: 2.1em;
  letter-spacing: .1em;
  font-family: Oswald, sans-serif;
  font-weight: 300;
  display: block;
  float: right;
  line-height: 40px;
}
.header-mid .talk-to-us .talk-number a {
  color: #64c2cf;
  text-decoration: none;
}
.header-mid .talk-to-us .talk-number a:hover {
  color: #4EAAB7;
}

/* Talk message — also floats right, sits LEFT of the number (no clear!) */
/* Source: of2go.all.min.1.05.css (exact) */
.header-mid .talk-to-us .talk-message {
  color: #a7aaab;
  text-transform: uppercase;
  font-size: 13px;
  display: block;
  float: right;
  text-align: right;
  letter-spacing: .05em;
  line-height: 20px;
  padding: 2px 12px 0 0;
}
.header-mid .talk-to-us .talk-message > strong {
  color: #eb685e;
  font-weight: 700;
  font-size: 1.1em;
}

/* Value-prop bar — header-5.css verbatim */
.header-mid .value-prop-bar {
  list-style: none;
  float: right;
  clear: both;
  margin: 0;
  padding: 0;
  text-align: right;
  line-height: 1;
  padding-bottom: 10px;
}
.header-mid .value-prop-bar > li {
  display: inline-block;
}
.header-mid .value-prop-bar > li a {
  color: #565c5d;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  margin-right: 5px;
  text-decoration: none;
}
.header-mid .value-prop-bar > li:last-child a {
  margin-right: 0;
}
.header-mid .value-prop-bar > li a:hover {
  color: #64c2cf;
}

/* ================================================================
   HEADER-BOTTOM: dark nav bar (#565c5d), 51px tall
   Source: of2go.all.min.1.05.css base + header-5.css overrides
   ================================================================ */
.header-bottom {
  background: #565c5d;
  position: relative;
  z-index: 999;
}

/* ——— Main menu wrap ——— */
.main-menu-wrap {
  position: relative;
  cursor: pointer;
  float: left;
  min-height: 150px; /* mobile accordion height from base CSS */
}

.main-menu-button {
  display: none;
  cursor: pointer;
  padding: 0 15px;
  color: #e8e9e9;
  font-size: 1.15em;
  font-weight: 600;
  line-height: 61px;
  background: none;
  border: none;
}

/* menu-level-1 */
.menu-level-1 {
  display: block;
  list-style: none;
  margin: 0;
  padding: 0;
  overflow: visible;
}
.menu-level-1::after, .menu-level-1:after {
  content: '';
  display: table;
  clear: both;
}
.menu-level-1 > li {
  float: left;
  position: relative;
  height: 51px;
  width: auto;
  border-left: 0 solid #65696a;
  border-right: 0 solid #65696a;
}
.menu-level-1 li.mobile-menu-header {
  display: none;
}

/* TopCategory links — header-5.css verbatim */
.header-bottom#navMod .main-menu-wrap .menu-level-1 > li.TopCategory > a {
  line-height: 51px;
  height: 51px;
  font-weight: 600;
  font-size: 14px;
  color: #e8e9e9;
  text-transform: none;
  padding: 0 5px;
  display: block;
  text-decoration: none;
  white-space: nowrap;
}
.header-bottom#navMod .main-menu-wrap .menu-level-1 > li.TopCategory > a:hover,
.header-bottom#navMod .main-menu-wrap .menu-level-1 > li.TopCategory > a:focus {
  color: #fff;
  text-decoration: none;
}
.header-bottom#navMod .main-menu-wrap .menu-level-1 > li.TopCategory:hover > a {
  color: #fff;
}
.header-bottom#navMod .main-menu-wrap .menu-level-1 > li.menu-open.TopCategory {
  background: transparent;
}
.header-bottom#navMod .main-menu-wrap .menu-level-1 > li.menu-open.TopCategory:hover {
  color: #fff;
  background: #373b3c;
}

/* menu-title (More/Brands) — header-5.css verbatim */
.header-bottom#navMod .main-menu-wrap .menu-level-1 > li .menu-title {
  line-height: 51px;
  height: 51px;
  font-size: 14px;
  padding: 0 5px;
  color: #e8e9e9;
  display: block;
  white-space: nowrap;
  cursor: pointer;
}
.header-bottom#navMod .main-menu-wrap .menu-level-1 > li .menu-title:before {
  line-height: 51px;
  height: 51px;
  margin-right: 4px;
  margin-left: -2px;
}
.header-bottom#navMod .main-menu-wrap .menu-level-1 > li:hover {
  background: #373b3c;
}
.header-bottom#navMod .main-menu-wrap .menu-level-1 > li:hover > .menu-title {
  color: #fff;
}

/* dropdown caret */
.ShopCategory > .menu-title::after,
.ShopBrand    > .menu-title::after {
  content: ' \25be';
  font-size: 10px;
  opacity: .75;
}

/* Level-2 dropdown panel */
.menu-level-2 {
  display: none;
  position: absolute;
  top: 51px;
  left: 0;
  min-width: 200px;
  background: #fff;
  border: 1px solid #ddd;
  border-top: 3px solid #64c2cf;
  box-shadow: 0 4px 16px rgba(0,0,0,.12);
  z-index: 1100;
  list-style: none;
  padding: 6px 0;
  margin: 0;
}
.header-bottom#navMod .main-menu-wrap .menu-level-2 {
  left: 0;
  top: 51px;
}
.menu-level-1 > li:hover > .menu-level-2 {
  display: block;
}
.menu-level-2 li a {
  display: block;
  padding: 8px 14px;
  font-size: 13px;
  color: #333;
  text-decoration: none;
  white-space: nowrap;
  font-weight: 400;
  text-transform: none;
}
.menu-level-2 li a:hover {
  background: #EAF7F8;
  color: #64c2cf;
}

/* ——— Search wrap — header-5.css verbatim ——— */
.header-bottom#navMod .search-wrap {
  padding: 10px 0;
  height: 51px;
  position: relative;
}
.search-wrap .search-box,
.header-bottom#navMod .search-box {
  line-height: 31px;
  height: 31px;
  font-size: 16px;
  width: calc(100% - 42px);
  padding: 0 8px;
  border: 1px solid #ccc;
  border-right: none;
  border-radius: 3px 0 0 3px;
  color: #333;
  outline: none;
  vertical-align: top;
  background: #fff;
}
.header-bottom .search-button {
  height: 27px;
  line-height: 27px;
  width: 40px;
  background: #64c2cf;
  border: none;
  border-radius: 0 3px 3px 0;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  position: absolute;
  right: 1px;
  top: 11px;
  vertical-align: top;
}
.header-bottom .search-button:hover { background: #4EAAB7; }
/* hide shopping-cart borders — header-5.css */
.header-bottom .shopping-cart-button {
  border-left: none;
  border-right: none;
}

/* ——— Info links — header-5.css verbatim ——— */
.header-bottom .header-info-links {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.header-bottom .header-info-links > ul {
  line-height: 1;
  list-style: none;
  margin: 0;
  padding: 0;
}
.header-bottom .header-info-links > ul > li {
  display: inline-block;
}
.header-bottom .header-info-links > ul > li > a {
  font-size: 11px;
  color: #e8e9e9;
  padding: 0;
  display: block;
  height: 51px;
  line-height: 51px;
  padding-right: 10px;
  text-decoration: none;
  white-space: nowrap;
}
.header-bottom .header-info-links > ul > li:last-child > a {
  padding-right: 0;
}
.header-bottom .header-info-links > ul > li > a:hover {
  color: #fff;
}

/* ================================================================
   RESPONSIVE — header-5.css verbatim (all breakpoints)
   ================================================================ */

/* 768px+ desktop */
@media (min-width: 768px) {
  .header-bottom .search-button {
    height: 27px;
    line-height: 27px;
    width: 40px;
    right: 1px;
    top: 11px;
  }
  .header-bottom#navMod .main-menu-wrap .menu-level-1 > li.TopCategory > a {
    line-height: 51px;
    height: 51px;
    font-weight: 600;
    font-size: 14px;
    color: #e8e9e9;
    text-transform: none;
    padding: 0 5px;
    display: block;
  }
  .header-bottom#navMod .main-menu-wrap .menu-level-1 > li .menu-title:before {
    margin-right: 4px;
    margin-left: -2px;
  }
  .header-bottom#navMod .main-menu-wrap .menu-level-1 > li.TopCategory:hover > a {
    color: #fff;
  }
  .header-bottom#navMod .main-menu-wrap .menu-level-1 > li .menu-title {
    line-height: 51px;
    height: 51px;
    font-size: 14px;
    padding: 0 5px;
  }
  .header-bottom#navMod .main-menu-wrap .menu-level-1 > li {
    border-left: 0px solid #65696a;
    border-right: 0px solid #65696a;
    height: 51px;
    text-transform: none;
    width: auto;
    position: static;
  }
  .header-bottom#navMod .main-menu-wrap .menu-level-1 > li .menu-title:before {
    line-height: 51px;
    height: 51px;
  }
  .header-bottom#navMod .search-wrap {
    padding: 10px 0;
    height: 51px;
    position: relative;
  }
  .header-bottom#navMod .search-box {
    line-height: 31px;
    height: 31px;
    font-size: 16px;
  }
  .header-bottom#navMod .main-menu-wrap {
    height: 51px;
    min-height: unset;
  }
  .header-bottom#navMod .main-menu-wrap .menu-level-2 {
    left: 0;
    top: 51px;
  }
  /* menu-level-1: horizontal float — from base CSS @media(min-width:768px) */
  .header-bottom#navMod .main-menu-wrap .menu-level-1 {
    position: static;
    display: block;
  }
  .header-bottom#navMod .main-menu-wrap .menu-level-1 > li {
    float: left;
  }
  /* talk-to-us — header-5.css */
  .header-mid .talk-to-us .talk-number {
    font-size: 2.1rem;
    letter-spacing: .1rem;
  }
  .header-mid .talk-to-us {
    margin-right: 100px;
    padding-top: 20px;
    height: 71px;
    padding-bottom: 0;
  }
  /* col padding fixes — header-5.css */
  .header-bottom .row .col-xs-2:nth-child(1) {
    padding-right: 0 !important;
  }
  .header-bottom .row .col-xs-2:nth-child(3) {
    padding-left: 0 !important;
  }
  /* open-TopCategory hover state */
  .header-bottom#navMod .main-menu-wrap .menu-level-1 > li.menu-open.TopCategory {
    background: transparent;
  }
  .header-bottom#navMod .main-menu-wrap .menu-level-1 > li.menu-open.TopCategory:hover {
    color: #fff;
    background: #373b3c;
  }
}

/* 992px+ */
@media (min-width: 992px) {
  .header-mid .value-prop-bar > li a {
    font-size: 12px;
    margin-right: 10px;
  }
  .header-mid .talk-to-us {
    height: 79px;
  }
}

/* 1200px+ */
@media (min-width: 1200px) {
  .header-mid .value-prop-bar > li a {
    font-size: 14px;
    margin-right: 12px;
  }
  .header-bottom#navMod .main-menu-wrap .menu-level-1 > li.TopCategory > a {
    font-size: 13px;
    padding: 0 7px;
  }
  .header-bottom#navMod .main-menu-wrap .menu-level-1 > li .menu-title {
    font-size: 13px;
    padding: 0 7px;
  }
  .header-bottom .header-info-links > ul > li > a {
    font-size: 14px;
    color: #e8e9e9;
    padding: 0;
    display: block;
    height: 51px;
    line-height: 51px;
    padding-right: 12px;
  }
}

/* 1285px+ */
@media (min-width: 1285px) {
  .header-bottom#navMod .main-menu-wrap .menu-level-1 > li.TopCategory > a {
    font-size: 14px;
    padding: 0 8px;
  }
  .header-bottom#navMod .main-menu-wrap .menu-level-1 > li .menu-title {
    font-size: 14px;
    padding: 0 8px;
  }
}

/* 1350px+ */
@media (min-width: 1350px) {
  .header-bottom#navMod .main-menu-wrap .menu-level-1 > li.TopCategory > a {
    font-size: 15px;
    padding: 0 8px;
  }
  .header-bottom#navMod .main-menu-wrap .menu-level-1 > li .menu-title {
    font-size: 15px;
    padding: 0 8px;
  }
}

/* Hidden search placeholder <1200px */
@media (max-width: 1199px) {
  .header-bottom .search-box::-webkit-input-placeholder,
  .newsletter-wrap .newsletter-box::-webkit-input-placeholder { color: transparent; }
  .header-bottom .search-box:-moz-placeholder,
  .header-bottom .search-box::-moz-placeholder,
  .newsletter-wrap .newsletter-box:-moz-placeholder,
  .newsletter-wrap .newsletter-box::-moz-placeholder { color: transparent; }
  .header-bottom .search-box:-ms-input-placeholder,
  .newsletter-wrap .newsletter-box:-ms-input-placeholder { color: transparent; }
}

/* Tablet 768–991 */
@media (min-width: 768px) and (max-width: 991px) {
  .header-bottom#navMod .main-menu-wrap .menu-level-1 > li.TopCategory > a {
    padding: 0 10px;
  }
  .header-bottom .header-info-links {
    position: absolute;
    right: 15px;
    top: 1px;
    height: 30px;
    padding-right: 15px;
    background-color: #eee;
    padding-left: 15px;
    border-radius: 0 0 6px 6px;
  }
  .header-bottom .header-info-links > ul > li > a {
    color: #565c5d;
    font-size: 12px;
    line-height: 30px;
    height: 30px;
  }
  .header-bottom#navMod .main-menu-wrap .menu-level-1 > li .menu-title,
  .header-bottom#navMod .shopping-cart-button {
    font-size: 14px;
    font-weight: 600;
  }
  .header-mid .talk-to-us {
    margin-right: 76px;
  }
  header .header-wrap-all {
    padding-bottom: 40px;
  }
}

/* Max 991px — info-links absolute */
@media (max-width: 991px) {
  .header-bottom#navMod .main-menu-wrap .menu-level-1 > li.TopCategory > a {
    padding: 0 10px;
  }
  .header-bottom .header-info-links {
    position: absolute;
    right: 15px;
    top: 1px;
    height: 30px;
    padding-right: 15px;
    background-color: #eee;
    padding-left: 15px;
    border-radius: 0 0 6px 6px;
  }
  .header-bottom .header-info-links > ul > li > a {
    color: #565c5d;
    font-size: 12px;
  }
}

/* Mobile <767px */
@media (max-width: 767px) {
  .header-mid .talk-to-us {
    width: 185px;
    margin-top: 10px;
    float: right;
    padding: 10px 0 0;
  }
  .header-mid .value-prop-bar {
    width: 185px;
    display: block;
    text-align: center;
    margin-top: 5px;
  }
  .header-mid .value-prop-bar > li a {
    font-size: 14px;
  }
  .header-mid .talk-to-us .talk-number {
    font-weight: 300;
  }
  .main-menu-button {
    display: block;
  }
  .main-menu-wrap {
    min-height: unset;
  }
  .menu-level-1 {
    display: none;
    position: absolute;
    top: 51px;
    left: 0;
    right: 0;
    background: #565c5d;
    z-index: 2000;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .menu-level-1.open { display: block; }
  .menu-level-1 li.mobile-menu-header {
    display: block;
    padding: 10px 15px;
    background: #444;
  }
  .mobile-title { font-weight: 700; color: #fff; }
  .mobile-close { float: right; cursor: pointer; color: rgba(255,255,255,.7); font-size: 18px; }
  .header-bottom#navMod .main-menu-wrap .menu-level-1 > li.TopCategory > a {
    color: rgba(255,255,255,.8);
    text-transform: uppercase;
    font-weight: 600;
    font-size: 16px;
    display: block;
    padding-left: 20px;
    line-height: 50px;
    white-space: nowrap;
    position: relative;
  }
  .header-bottom#navMod .main-menu-wrap .menu-level-1 > li.menu-open.TopCategory {
    background: transparent;
  }
  .menu-level-1 > li > span.menu-title {
    border-bottom: 1px solid rgba(255,255,255,.1);
    line-height: 44px;
    color: rgba(255,255,255,.8);
    padding: 0 20px;
  }
  .menu-level-2 {
    position: static;
    border-top: none;
    box-shadow: none;
    background: rgba(0,0,0,.15);
    display: none;
    min-width: 0;
  }
  .menu-level-1 > li.open > .menu-level-2 { display: block; }
  .menu-level-2 li a { color: rgba(255,255,255,.85); padding-left: 32px; }
}

/* 480px and below */
@media (max-width: 480px) {
  .header-mid .talk-to-us {
    width: 126px;
    margin-top: 15px;
  }
  .header-mid .value-prop-bar {
    width: 126px;
    padding-bottom: 5px;
  }
}

/* ================================================================
   FOOTER
   ================================================================ */
.footer-upper {
  background: #f5f5f5;
  border-top: 1px solid #ddd;
  padding: 20px 0;
}
.catalog-button {
  display: inline-block;
  background: #64c2cf;
  color: #fff;
  padding: 10px 24px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}
.catalog-button:hover { background: #4EAAB7; color: #fff; }

.footer-connect {
  background: #565c5d;
  padding: 18px 0;
}
.social-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.social-heading {
  color: rgba(255,255,255,0.7);
  font-size: 12px;
  font-weight: 600;
  margin-right: 4px;
}
.social-wrap a {
  color: rgba(255,255,255,0.7);
  font-size: 20px;
  text-decoration: none;
  transition: color 0.15s;
}
.social-wrap a:hover { color: #64c2cf; }

.footer-lower {
  background: #3d4142;
  padding: 12px 0;
}
.copyright {
  color: rgba(255,255,255,0.5);
  font-size: 11px;
  margin: 0;
}
.copyright a { color: rgba(255,255,255,0.6); }
.copyright a:hover { color: #64c2cf; }

/* ================================================================
   GUIDES.CSS SHARED CONTENT STYLES
   ================================================================ */

/* Hero banner */
.guides-hero {
  background: linear-gradient(135deg, #565c5d 0%, #333 100%);
  color: #fff;
  padding: 44px 0 36px;
  margin-bottom: 36px;
  border-bottom: 4px solid #64c2cf;
}
.guides-hero h1 { font-size: 2rem; font-weight: 700; margin: 0 0 8px; }
.guides-hero p  { font-size: 1.05rem; margin: 0; opacity: .85; }

/* Guide hero (detail pages) */
.guide-hero {
  background: linear-gradient(135deg, #565c5d 0%, #3a3f40 100%);
  color: #fff;
  padding: 44px 0 36px;
  margin-bottom: 0;
  border-bottom: 4px solid #64c2cf;
}
.guide-hero h1 { font-size: 2rem; font-weight: 700; margin: 0 0 8px; }
.guide-hero p  { font-size: 1.05rem; margin: 0 0 12px; opacity: .85; }

/* Breadcrumbs */
.guide-breadcrumb,
.breadcrumb-row {
  margin: 16px 0;
  font-size: .82rem;
  color: #666;
}
.guide-breadcrumb { margin: 14px 0 0; }
.guide-breadcrumb a, .breadcrumb-row a { color: #64c2cf; text-decoration: none; }
.guide-breadcrumb a:hover, .breadcrumb-row a:hover { color: #4EAAB7; }
.guide-breadcrumb .sep, .breadcrumb-row .sep { margin: 0 4px; }
.guide-breadcrumb .current { color: #333; font-weight: 600; }

/* Search */
.guide-search-section, .guide-search-wrap { margin: 20px 0 28px; }
.guide-search-section .search-input,
.guide-search-wrap input {
  width: 100%; padding: 12px 16px; font-size: 1rem;
  border: 2px solid #D5E8EB; border-radius: 4px;
  outline: none; transition: border-color .2s; box-sizing: border-box;
}
.guide-search-section .search-input:focus,
.guide-search-wrap input:focus { border-color: #64c2cf; }

/* Category headings */
.guide-category-heading, .guides-category-heading {
  font-size: 1.25rem; font-weight: 700; color: #565c5d;
  border-bottom: 3px solid #64c2cf;
  padding-bottom: 8px; margin-top: 40px; margin-bottom: 20px;
  text-transform: uppercase; letter-spacing: 0.04em;
}

/* Grid */
.guide-grid, .guides-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
  margin-bottom: 16px;
}

/* Cards */
.guide-card {
  background: #fff; border: 1px solid #D5E8EB; border-radius: 6px;
  padding: 20px 20px 16px;
  transition: box-shadow .2s, border-color .2s;
  display: flex; flex-direction: column;
  text-decoration: none; color: inherit;
}
.guide-card:hover { box-shadow: 0 4px 18px rgba(0,0,0,.1); border-color: #64c2cf; }
.guide-card-title { font-size: 1.05rem; font-weight: 700; margin: 0 0 8px; color: #565c5d; }
.guide-card-title a { color: inherit; text-decoration: none; }
.guide-card-title a:hover { color: #64c2cf; }
.guide-card-desc { font-size: .875rem; color: #666; line-height: 1.5; flex: 1; margin: 0 0 14px; }
.guide-card-meta { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.guide-card-link { font-size: .8rem; font-weight: 700; color: #64c2cf; }

.btn-read {
  background: #64c2cf; color: #fff !important;
  padding: 6px 14px; border-radius: 4px; font-size: .8rem; font-weight: 700;
  text-decoration: none; white-space: nowrap; display: inline-block;
}
.btn-read:hover { background: #4EAAB7; }
.btn-pdf {
  border: 1.5px solid #565c5d; color: #565c5d !important;
  padding: 5px 10px; border-radius: 4px; font-size: .78rem; font-weight: 600;
  text-decoration: none; white-space: nowrap; display: inline-block;
}
.btn-pdf:hover { background: #565c5d; color: #fff !important; }
.badge-pages {
  font-size: .75rem; color: #666; border: 1px solid #D5E8EB;
  padding: 3px 8px; border-radius: 12px; white-space: nowrap;
}

/* Guide detail page */
.guide-page-body { background: #fff; }
.guide-content-wrap { padding: 32px 0 64px; }
.guide-content h1 {
  font-family: 'Oswald', sans-serif;
  font-size: 30px; color: #333; margin: 0 0 24px; font-weight: 700;
}
.guide-content p { line-height: 1.7; font-size: .95rem; margin-bottom: 14px; }
.guide-content ul { margin: 8px 0 14px 0; padding-left: 1.4em; }
.guide-content ul li { margin-bottom: 4px; line-height: 1.6; font-size: .95rem; }

.guide-section-heading, h2.guide-section-heading {
  font-size: 1.2rem; font-weight: 700; color: #565c5d;
  border-bottom: 2px solid #64c2cf;
  padding-bottom: 6px; margin: 28px 0 12px;
}

/* Tables */
.guide-table { width: 100%; border-collapse: collapse; margin: 16px 0 24px; font-size: 0.9rem; }
.guide-table th { background: #64c2cf; color: #fff; padding: 8px 12px; text-align: left; font-weight: 700; }
.guide-table td { padding: 8px 12px; border-bottom: 1px solid #e0e0e0; vertical-align: top; }
.guide-table tr:nth-child(even) td { background: #f5f5f5; }
.guide-table tr:hover td { background: #EAF7F8; }

/* Sidebar */
.guide-sidebar { position: sticky; top: 20px; }
.sidebar-box {
  background: #fff; border: 1px solid #D5E8EB; border-radius: 6px;
  padding: 18px 16px; margin-bottom: 16px;
}
.sidebar-box h3 {
  font-size: .9rem; font-weight: 700; color: #565c5d;
  margin: 0 0 12px; text-transform: uppercase; letter-spacing: .04em;
}
.btn-download-pdf, .btn-download-qa, .btn-pro-tips, .btn-sales-sheet, .btn-10q {
  display: block; padding: 10px 14px; border-radius: 4px;
  font-size: .875rem; font-weight: 700; text-align: center;
  text-decoration: none; margin-bottom: 8px;
}
.btn-download-pdf { background: #64c2cf; color: #fff !important; }
.btn-download-pdf:hover { background: #4EAAB7; }
.btn-download-qa { color: #64c2cf !important; border: 2px solid #64c2cf; }
.btn-download-qa:hover { background: #64c2cf; color: #fff !important; }
.btn-pro-tips { color: #565c5d !important; border: 2px solid #565c5d; }
.btn-pro-tips:hover { background: #565c5d; color: #fff !important; }
.btn-10q { color: #64c2cf !important; border: 2px solid #64c2cf; }
.btn-10q:hover { background: #64c2cf; color: #fff !important; }
.btn-sales-sheet { color: #666 !important; border: 2px solid #D5E8EB; }
.btn-sales-sheet:hover { background: #f5f5f5; }
.btn-shop {
  display: block; background: #eb685e; color: #fff !important;
  padding: 11px 14px; border-radius: 4px; font-size: .9rem;
  font-weight: 700; text-align: center; text-decoration: none;
}
.btn-shop:hover { background: #d4554b; }
.expert-phone {
  display: block; font-size: 1.25rem; font-weight: 800;
  color: #64c2cf !important; text-decoration: none; margin-bottom: 4px;
}
.expert-hours { font-size: .8rem; color: #666; }
.related-list { list-style: none; padding: 0; margin: 0; }
.related-list li { border-bottom: 1px solid #D5E8EB; }
.related-list li:last-child { border-bottom: none; }
.related-list li a { display: block; padding: 7px 0; font-size: .875rem; color: #64c2cf; text-decoration: none; }
.related-list li a:hover { color: #4EAAB7; }

/* Prev/Next */
.guide-prevnext {
  display: flex; justify-content: space-between;
  margin: 32px 0 0; padding-top: 16px; border-top: 1px solid #D5E8EB;
}
.guide-prevnext a { color: #64c2cf; font-size: .9rem; font-weight: 600; text-decoration: none; }
.guide-prevnext a:hover { color: #4EAAB7; }
.guide-prevnext .prev::before { content: '\2039\00a0'; }
.guide-prevnext .next::after  { content: '\00a0\203a'; }

/* Q&A */
.qa-series-label { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: #64c2cf; margin-bottom: 6px; }
.qa-list { display: flex; flex-direction: column; gap: 0; }
.qa-item { border-bottom: 1px solid #e5e5e5; padding: 20px 0; }
.qa-item:first-child { padding-top: 0; }
.qa-question { font-size: 1.05rem; font-weight: 700; color: #333; margin-bottom: 10px; display: flex; align-items: flex-start; gap: 12px; }
.qa-num { flex-shrink: 0; background: #64c2cf; color: #fff; font-size: .75rem; font-weight: 800; padding: 2px 7px; border-radius: 3px; margin-top: 3px; }
.qa-answer { display: flex; gap: 12px; align-items: flex-start; }
.qa-label { flex-shrink: 0; background: #565c5d; color: #fff; font-size: .75rem; font-weight: 800; padding: 2px 8px; border-radius: 3px; margin-top: 2px; }
.qa-answer-text { font-size: .95rem; line-height: 1.65; color: #444; }

/* Pro Tips */
.tips-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.tip-card { background: #EAF7F8; border: 1px solid #64c2cf; border-radius: 5px; padding: 14px; display: flex; gap: 10px; align-items: flex-start; }
.tip-num { font-size: 1.6rem; font-weight: 800; color: #A8DDE3; line-height: 1; flex-shrink: 0; min-width: 28px; }
.tip-headline { font-size: .875rem; font-weight: 700; color: #565c5d; margin-bottom: 5px; line-height: 1.3; }
.tip-body { font-size: .82rem; line-height: 1.5; color: #555; }
@media (max-width: 600px) { .tips-grid { grid-template-columns: 1fr; } }

/* Best-of */
.bestof-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 14px; }
.bestof-card { display: block; background: #fff; border: 1px solid #b2dfe5; border-top: 3px solid #64c2cf; border-radius: 5px; padding: 14px; text-decoration: none; transition: box-shadow .2s, border-color .2s; }
.bestof-card:hover { box-shadow: 0 3px 12px rgba(0,0,0,.1); border-color: #eb685e; }
.bestof-card-title { font-size: .95rem; font-weight: 700; color: #565c5d; margin-bottom: 6px; }
.bestof-card-count { font-size: .78rem; color: #666; }

/* Compare pages */
.compare-table { width: 100%; border-collapse: collapse; margin: 16px 0 24px; }
.compare-table th { background: #64c2cf; color: #fff; padding: 10px 14px; text-align: left; }
.compare-table td { padding: 9px 14px; border-bottom: 1px solid #e0e0e0; font-size: .9rem; }
.compare-table tr:nth-child(even) td { background: #f5f5f5; }
.winner-badge { display: inline-block; background: #eb685e; color: #fff; font-size: .7rem; font-weight: 700; padding: 2px 7px; border-radius: 3px; margin-left: 6px; vertical-align: middle; }

/* Hub cards (resources/index.html) */
.hub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 0 0 48px;
}
@media (max-width: 991px) { .hub-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575px) { .hub-grid { grid-template-columns: 1fr; } }

.hub-card {
  background: #fff; border: 1px solid #e0e0e0; border-radius: 6px;
  padding: 28px 24px 24px; display: flex; flex-direction: column;
  transition: border-color .2s, box-shadow .2s;
}
.hub-card:hover { border-color: #64c2cf; box-shadow: 0 4px 16px rgba(0,0,0,.08); }
.hub-card-header { display: flex; align-items: center; gap: 16px; margin-bottom: 14px; }
.hub-card-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, #64c2cf 0%, #4EAAB7 100%);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.hub-card-icon i { font-size: 24px; color: #fff; }
.hub-card-title { font-size: 1.2rem; font-weight: 700; color: #565c5d; margin: 0; line-height: 1.3; }
.hub-card-title a { color: inherit; text-decoration: none; }
.hub-card-title a:hover { color: #64c2cf; }
.hub-card-desc { font-size: .875rem; color: #666; line-height: 1.55; margin: 0 0 14px; flex: 1; }
.hub-card-stats { font-size: .8rem; color: #999; margin: 0 0 16px; font-weight: 600; }
.hub-card-cta {
  display: inline-block; background: #64c2cf; color: #fff;
  padding: 9px 20px; border-radius: 4px; font-size: .875rem;
  font-weight: 700; text-decoration: none; text-align: center; transition: background .2s;
}
.hub-card-cta:hover { background: #4EAAB7; color: #fff; }

/* Resource section heading */
.resource-section-heading {
  font-size: 1.35rem; font-weight: 700; color: #565c5d;
  margin: 0 0 20px; padding-bottom: 10px; border-bottom: 3px solid #64c2cf;
}

/* CTA Band */
.resource-cta-band {
  background: #565c5d; color: #fff; padding: 44px 0; margin: 16px 0 0;
}
.resource-cta-band h2 { font-size: 1.5rem; font-weight: 700; margin: 0 0 12px; color: #fff; }
.resource-cta-band p { font-size: .95rem; line-height: 1.6; margin: 0 0 20px; opacity: .9; }
.resource-cta-band .cta-buttons a {
  display: inline-block; padding: 11px 24px; border-radius: 4px;
  font-weight: 700; text-decoration: none; font-size: .9rem;
  margin-right: 12px; margin-bottom: 8px;
}
.resource-cta-band .cta-btn-cyan { background: #64c2cf; color: #fff; }
.resource-cta-band .cta-btn-cyan:hover { background: #4EAAB7; }
.resource-cta-band .cta-btn-white { background: #fff; color: #565c5d; }
.resource-cta-band .cta-btn-white:hover { background: #f0f0f0; }
.featured-section { padding: 0 0 12px; }
.featured-section .guides-grid { padding-bottom: 32px; }

/* Industry / Plan / Compare page hero */
.industry-hero, .plan-hero, .compare-hero {
  background: linear-gradient(135deg, #565c5d 0%, #333 100%);
  color: #fff; padding: 44px 0 36px; margin-bottom: 36px;
  border-bottom: 4px solid #64c2cf;
}
.industry-hero h1, .plan-hero h1, .compare-hero h1 { font-size: 2rem; font-weight: 700; margin: 0 0 8px; }

/* Answers index */
.answers-hero {
  background: linear-gradient(135deg, #565c5d 0%, #333 100%);
  color: #fff; padding: 44px 0 36px; margin-bottom: 36px;
  border-bottom: 4px solid #64c2cf;
}
.answers-hero h1 { font-size: 2rem; font-weight: 700; margin: 0 0 8px; }

/* Responsive content */
@media (max-width: 767px) {
  .guide-content-wrap .col-sm-8 { width: 100%; padding-right: 0; margin-bottom: 24px; }
  .guide-content-wrap .col-sm-4 { width: 100%; }
  .guide-sidebar { position: static; }
  .guides-hero h1, .guide-hero h1 { font-size: 1.5rem; }
  .guide-grid, .guides-grid { grid-template-columns: 1fr; }
  .tips-grid { grid-template-columns: 1fr; }
}

/* No-results */
.no-results { display: none; padding: 24px; color: #666; font-size: .95rem; }
#noResults { display: none; padding: 32px 0; color: #888; text-align: center; font-size: 1rem; }
.guide-card[style*="display: none"] { display: none !important; }
.hub-card[style*="display: none"]   { display: none !important; }

/* Mobile nav toggle script hook */
.mobile-menu-open .menu-level-1 { display: flex; }
