/*
 * HotAnuncios 2026
 * Modern, responsive presentation layer for the OxyClassifieds Smarty contracts.
 * Legacy CSS is loaded first so third-party plugins retain their required rules;
 * this file owns layout, typography, colour and responsive behaviour.
 */

:root {
  --hot-ink: #172033;
  --hot-ink-soft: #4e596c;
  --hot-muted: #748094;
  --hot-line: #e5e8ee;
  --hot-line-strong: #d4d9e2;
  --hot-paper: #ffffff;
  --hot-canvas: #f6f4f1;
  --hot-cream: #fff5e8;
  --hot-red: #a92b20;
  --hot-red-dark: #7f1d17;
  --hot-coral: #e95b3f;
  --hot-amber: #f6aa3c;
  --hot-green: #18794e;
  --hot-blue: #246b9a;
  --hot-shadow-sm: 0 4px 18px rgba(30, 35, 48, .07);
  --hot-shadow: 0 18px 48px rgba(30, 35, 48, .11);
  --hot-radius-sm: 10px;
  --hot-radius: 18px;
  --hot-radius-lg: 28px;
  --hot-max: 1240px;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  min-width: 0;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body.hot2026 {
  min-width: 0;
  margin: 0;
  background: var(--hot-canvas);
  color: var(--hot-ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  text-align: left;
  overflow-x: hidden;
}

.hot2026 a { color: var(--hot-red); text-decoration: none; }
.hot2026 a:hover { color: var(--hot-red-dark); }
.hot2026 img { max-width: 100%; height: auto; }
.hot2026 h1, .hot2026 h2, .hot2026 h3, .hot2026 h4 {
  color: var(--hot-ink);
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: -.025em;
  line-height: 1.13;
}
.hot2026 h1 { font-size: clamp(2rem, 4vw, 3.5rem); }
.hot2026 h2 { font-size: clamp(1.55rem, 2.6vw, 2.35rem); }
.hot2026 h3 { font-size: 1.18rem; }
.hot2026 p { margin: 0 0 1rem; }
.hot2026 :focus-visible { outline: 3px solid rgba(246, 170, 60, .68); outline-offset: 3px; }
.hot2026 ::selection { background: #ffd9ad; color: #4f160f; }

.hot-sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.hot-skip-link {
  position: fixed;
  z-index: 9999;
  top: 10px;
  left: 10px;
  padding: .75rem 1rem;
  border-radius: 8px;
  background: var(--hot-ink);
  color: #fff !important;
  transform: translateY(-160%);
  transition: transform .18s ease;
}
.hot-skip-link:focus { transform: none; }

.hot-shell { min-height: 100vh; }

.hot-dialog {
  min-height: 100vh;
  padding: 12px;
  background: #fff !important;
}
.hot-dialog #form_container {
  width: min(600px, 100%) !important;
  margin: 0 auto !important;
  padding: clamp(18px, 4vw, 30px);
  border-radius: 16px;
}
.hot-dialog #form_container input[type="text"],
.hot-dialog #form_container input[type="email"],
.hot-dialog #form_container textarea,
.hot-dialog #form_container select { width: 100%; }
.hot-dialog #location_page { width: min(100%, 960px); margin: 0 auto; }

/* Header */
.hot-header {
  position: relative;
  z-index: 100;
  background: var(--hot-paper);
  border-bottom: 1px solid var(--hot-line);
}

.hot-utility {
  min-height: 38px;
  background: var(--hot-ink);
  color: #fff;
  font-size: .77rem;
}

.hot-utility-inner,
.hot-header-main,
.hot-account-nav,
.hot-main,
.hot-footer-main,
.hot-footer-bottom,
.hot-footer-categories,
.hot-banner-zone {
  width: min(calc(100% - 40px), var(--hot-max));
  margin-inline: auto;
}

.hot-utility-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 38px;
}

.hot-trust-message { color: #dce1ea; letter-spacing: .01em; }
.hot-utility-actions { display: flex; align-items: center; gap: 14px; }
.hot-utility-actions > a,
.hot-utility-actions #choose_location a,
.hot-language summary { color: #fff !important; font-weight: 650; cursor: pointer; }
.hot-utility-actions > a:hover,
.hot-utility-actions #choose_location a:hover { color: #ffd9ad !important; }
.hot-signed-in { color: #dce1ea; }
.hot-signed-in strong { color: #fff; }

.hot-utility #choose_location {
  position: static;
  float: none;
  width: auto;
  margin: 0;
  padding: 0;
  color: #fff;
}
.hot-utility #choose_location img { filter: brightness(0) invert(1); }
.hot-utility #location_div {
  z-index: 500;
  min-width: 240px;
  padding: 12px;
  border: 1px solid var(--hot-line);
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--hot-shadow);
}

.hot-language { position: relative; }
.hot-language summary { list-style: none; }
.hot-language summary::-webkit-details-marker { display: none; }
.hot-language summary::after { content: "▾"; margin-left: 5px; }
.hot-language-menu {
  position: absolute;
  z-index: 400;
  top: calc(100% + 10px);
  right: 0;
  min-width: 150px;
  padding: 6px;
  border: 1px solid var(--hot-line);
  border-radius: 10px;
  background: #fff;
  box-shadow: var(--hot-shadow);
}
.hot-language-menu button {
  width: 100%;
  padding: 8px 10px;
  border: 0;
  border-radius: 7px;
  background: transparent;
  color: var(--hot-ink);
  text-align: left;
  cursor: pointer;
}
.hot-language-menu button:hover { background: var(--hot-cream); }

.hot-header-main {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
  min-height: 84px;
}

.hot-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--hot-ink) !important;
  flex: none;
}
.hot-brand-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  overflow: hidden;
  border-radius: 13px 13px 13px 4px;
  background: linear-gradient(145deg, var(--hot-coral), var(--hot-red-dark));
  box-shadow: 0 7px 18px rgba(169, 43, 32, .24);
  color: #fff;
  font: 800 1.35rem/1 ui-sans-serif, system-ui, sans-serif;
}
.hot-brand-mark::after {
  content: "";
  position: absolute;
  width: 28px;
  height: 28px;
  right: -15px;
  bottom: -13px;
  border: 4px solid rgba(255,255,255,.28);
  border-radius: 50%;
}
.hot-brand-copy { display: flex; flex-direction: column; line-height: 1; }
.hot-brand-copy strong {
  color: var(--hot-ink);
  font-size: 1.35rem;
  font-weight: 850;
  letter-spacing: -.045em;
}
.hot-brand-copy strong span { color: var(--hot-red); }
.hot-brand-copy small {
  margin-top: 6px;
  color: var(--hot-muted);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.hot-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.hot-nav > a,
.hot-nav-group > summary {
  position: relative;
  padding: 11px 12px;
  border-radius: 9px;
  color: #384257;
  font-size: .86rem;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
}
.hot-nav > a:hover,
.hot-nav-group > summary:hover { background: #f4f1ed; color: var(--hot-red); }
.hot-nav > a.is-active { color: var(--hot-red); }
.hot-nav > a.is-active::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 4px;
  height: 2px;
  border-radius: 99px;
  background: var(--hot-red);
}
.hot-nav-group { position: relative; }
.hot-nav-group > summary { list-style: none; }
.hot-nav-group > summary::-webkit-details-marker { display: none; }
.hot-nav-group > summary::after { content: "▾"; margin-left: 6px; color: var(--hot-muted); font-size: .68rem; }
.hot-nav-submenu {
  position: absolute;
  z-index: 350;
  top: calc(100% + 7px);
  left: 0;
  display: grid;
  min-width: 210px;
  padding: 7px;
  border: 1px solid var(--hot-line);
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--hot-shadow);
}
.hot-nav-submenu a { padding: 9px 10px; border-radius: 7px; color: var(--hot-ink-soft); font-size: .8rem; font-weight: 700; }
.hot-nav-submenu a:hover { background: var(--hot-cream); color: var(--hot-red); }

.hot-post-button,
.hot-light-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 11px;
  background: var(--hot-red);
  box-shadow: 0 7px 18px rgba(169, 43, 32, .18);
  color: #fff !important;
  font-size: .88rem;
  font-weight: 800;
  white-space: nowrap;
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}
.hot-post-button span { font-size: 1.25rem; line-height: 1; }
.hot-post-button:hover { background: var(--hot-red-dark); box-shadow: 0 10px 24px rgba(127, 29, 23, .25); transform: translateY(-1px); }

.hot-menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--hot-line);
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
}
.hot-menu-button > span:not(.hot-sr-only) {
  display: block;
  width: 21px;
  height: 2px;
  margin: 4px auto;
  border-radius: 99px;
  background: var(--hot-ink);
  transition: transform .18s ease, opacity .18s ease;
}
.hot-menu-button[aria-expanded="true"] > span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hot-menu-button[aria-expanded="true"] > span:nth-child(2) { opacity: 0; }
.hot-menu-button[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.hot-account-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  padding-block: 8px;
  border-top: 1px solid var(--hot-line);
  overflow-x: auto;
  scrollbar-width: thin;
}
.hot-account-nav a {
  padding: 7px 11px;
  border-radius: 8px;
  color: var(--hot-ink-soft);
  font-size: .8rem;
  font-weight: 700;
  white-space: nowrap;
}
.hot-account-nav a:hover { background: var(--hot-cream); color: var(--hot-red); }
.hot-store-banner { width: min(calc(100% - 40px), var(--hot-max)); margin: 0 auto 12px; text-align: center; }
.hot-store-banner img { max-height: 120px; object-fit: contain; }

/* Main and global components */
.hot-main { min-height: 48vh; padding-block: 34px 64px; }
.section-firstpage .hot-main { padding-top: 24px; }

.hot-banner-zone {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  padding-block: 16px;
  overflow: hidden;
}
.hot-banner-zone img,
.hot-banner-zone iframe,
.hot-banner-zone object { max-width: 100%; }
.hot-banner-zone--header { padding-top: 22px; }
.hot-banner-zone--side { margin-top: 18px; }

.hot-system-error,
#db_error {
  width: min(calc(100% - 40px), var(--hot-max));
  margin: 20px auto;
  padding: 14px 16px;
  border: 1px solid #f4b9b3;
  border-radius: 12px;
  background: #fff0ef;
  color: #8d2018;
}

.hot-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 11px;
  color: var(--hot-red);
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.hot-eyebrow > span { width: 22px; height: 2px; background: currentColor; }
.hot-eyebrow--light { color: #ffd8c3; }

/* Homepage */
.hot-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(360px, .86fr);
  min-height: 480px;
  overflow: hidden;
  border-radius: var(--hot-radius-lg);
  background:
    radial-gradient(circle at 79% 28%, rgba(255, 218, 163, .44), transparent 25%),
    linear-gradient(125deg, #fffaf2 0%, #fff5e8 49%, #f6d7c3 100%);
  box-shadow: inset 0 0 0 1px rgba(169, 43, 32, .08), var(--hot-shadow-sm);
}
.hot-hero::before {
  content: "";
  position: absolute;
  inset: auto auto -140px -100px;
  width: 360px;
  height: 360px;
  border: 60px solid rgba(233, 91, 63, .055);
  border-radius: 50%;
}
.hot-hero-content {
  position: relative;
  z-index: 2;
  min-width: 0;
  align-self: center;
  padding: clamp(36px, 5vw, 70px);
  padding-right: 20px;
}
.hot-hero h1 { max-width: 720px; margin: 0 0 20px; font-size: clamp(2.65rem, 5.7vw, 5.1rem); letter-spacing: -.055em; }
.hot-hero h1 em { color: var(--hot-red); font-style: normal; }
.hot-hero-copy { max-width: 650px; color: var(--hot-ink-soft); font-size: clamp(1rem, 1.7vw, 1.18rem); }

.hot-hero-search {
  display: grid;
  grid-template-columns: minmax(210px, 1fr) minmax(190px, .62fr) auto;
  gap: 0;
  max-width: 780px;
  margin-top: 28px;
  padding: 7px;
  border: 1px solid rgba(127, 29, 23, .12);
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 14px 35px rgba(90, 45, 27, .13);
}
.hot-search-field { position: relative; display: flex !important; align-items: center; min-width: 0; }
.hot-search-field--keyword::after { content: ""; position: absolute; top: 9px; bottom: 9px; right: 0; width: 1px; background: var(--hot-line); }
.hot-search-field i {
  position: relative;
  flex: 0 0 15px;
  width: 15px;
  height: 15px;
  margin-left: 13px;
  border: 2px solid var(--hot-muted);
  border-radius: 50%;
}
.hot-search-field i::after { content: ""; position: absolute; width: 6px; height: 2px; right: -5px; bottom: -2px; background: var(--hot-muted); transform: rotate(45deg); }
.hot-hero-search input,
.hot-hero-search select {
  flex: 1 1 auto;
  min-width: 0;
  width: 100%;
  height: 48px;
  margin: 0;
  padding: 0 15px;
  border: 0 !important;
  outline: 0;
  background: #fff;
  color: var(--hot-ink);
  font: 650 .91rem/1.2 ui-sans-serif, system-ui, sans-serif;
}
.hot-hero-search select { cursor: pointer; }
.hot-hero-search button {
  min-width: 112px;
  height: 48px;
  padding: 0 20px;
  border: 0;
  border-radius: 10px;
  background: var(--hot-red);
  color: #fff;
  font-weight: 850;
  cursor: pointer;
}
.hot-hero-search button:hover { background: var(--hot-red-dark); }
.hot-hero-links { display: flex; flex-wrap: wrap; gap: 7px 12px; margin-top: 16px; color: var(--hot-muted); font-size: .76rem; }
.hot-hero-links a { border-bottom: 1px solid rgba(169,43,32,.28); color: var(--hot-red); font-weight: 700; }

.hot-hero-visual { position: relative; min-height: 450px; }
.hot-visual-orbit { position: absolute; border: 1px dashed rgba(169,43,32,.2); border-radius: 50%; }
.hot-visual-orbit--one { width: 430px; height: 430px; top: 25px; right: -60px; }
.hot-visual-orbit--two { width: 270px; height: 270px; top: 110px; right: 35px; }
.hot-visual-card {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 190px;
  height: 150px;
  padding: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.65);
  border-radius: 24px;
  background: rgba(255,255,255,.78);
  box-shadow: 0 20px 48px rgba(105, 46, 28, .15);
  backdrop-filter: blur(10px);
}
.hot-visual-card::before { content: ""; position: absolute; inset: 0 0 auto; height: 7px; background: linear-gradient(90deg, var(--hot-coral), var(--hot-amber)); }
.hot-visual-card--car { top: 50px; right: 140px; transform: rotate(-5deg); }
.hot-visual-card--home { top: 205px; right: 20px; width: 210px; transform: rotate(4deg); }
.hot-visual-card--service { top: 275px; right: 245px; width: 175px; height: 135px; transform: rotate(-2deg); }
.hot-visual-icon { position: absolute; top: 24px; left: 20px; display: grid; place-items: center; width: 43px; height: 43px; border-radius: 12px; background: var(--hot-cream); color: var(--hot-red); font: 800 1.4rem/1 sans-serif; }
.hot-visual-card small { color: var(--hot-red); font-size: .67rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.hot-visual-card strong { margin-top: 3px; font-size: 1rem; }
.hot-visual-badge {
  position: absolute;
  top: 144px;
  right: 205px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 13px;
  border-radius: 12px;
  background: var(--hot-ink);
  box-shadow: var(--hot-shadow-sm);
  color: #fff;
  transform: rotate(3deg);
}
.hot-visual-badge strong { color: var(--hot-amber); font-size: 1.4rem; }
.hot-visual-badge span { font-size: .61rem; font-weight: 700; line-height: 1.25; text-transform: uppercase; }

.hot-section { padding-block: 64px 20px; }
.hot-section-heading { display: flex; align-items: end; justify-content: space-between; gap: 28px; margin-bottom: 28px; }
.hot-section-heading h2 { margin: 0 0 7px; }
.hot-section-heading p:not(.hot-eyebrow) { margin: 0; color: var(--hot-muted); }
.hot-link-arrow { display: inline-flex; align-items: center; gap: 9px; padding-bottom: 5px; border-bottom: 1px solid rgba(169,43,32,.25); font-size: .82rem; font-weight: 800; white-space: nowrap; }
.hot-link-arrow span { font-size: 1.1rem; }

.hot-category-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
.hot-category-card {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) auto;
  align-items: center;
  gap: 13px;
  min-height: 82px;
  padding: 14px;
  border: 1px solid var(--hot-line);
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 2px 4px rgba(30,35,48,.02);
  color: var(--hot-ink) !important;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
.hot-category-card:hover { border-color: rgba(169,43,32,.32); box-shadow: var(--hot-shadow-sm); transform: translateY(-2px); }
.hot-category-symbol { display: grid; place-items: center; width: 52px; height: 52px; overflow: hidden; border-radius: 13px; background: var(--hot-cream); color: var(--hot-red); }
.hot-category-symbol img { width: 100%; height: 100%; object-fit: cover; }
.hot-category-symbol b { font: 800 1rem/1 ui-sans-serif, system-ui, sans-serif; }
.hot-category-copy { display: flex; flex-direction: column; min-width: 0; }
.hot-category-copy strong { overflow: hidden; color: var(--hot-ink); font-size: .88rem; text-overflow: ellipsis; white-space: nowrap; }
.hot-category-copy small { margin-top: 3px; color: var(--hot-muted); font-size: .67rem; }
.hot-category-arrow { color: #a6adba; font-size: 1.3rem; }

.hot-listing-section--featured { margin-top: 45px; padding-inline: clamp(20px, 4vw, 50px); padding-bottom: 50px; border-radius: var(--hot-radius-lg); background: var(--hot-ink); }
.hot-listing-section--featured h2,
.hot-listing-section--featured .hot-section-heading p:not(.hot-eyebrow) { color: #fff; }
.hot-listing-section--featured .hot-section-heading p:not(.hot-eyebrow) { color: #b9c1cf; }
.hot-listing-section--featured .hot-link-arrow { border-color: rgba(255,255,255,.25); color: #fff; }
.hot-listing-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 17px; }
.hot-listing-card { min-width: 0; overflow: hidden; border: 1px solid var(--hot-line); border-radius: var(--hot-radius); background: #fff; box-shadow: var(--hot-shadow-sm); transition: transform .2s ease, box-shadow .2s ease; }
.hot-listing-card:hover { box-shadow: var(--hot-shadow); transform: translateY(-4px); }
.hot-listing-photo { position: relative; display: block; aspect-ratio: 4 / 3; overflow: hidden; background: #ece9e5; }
.hot-listing-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.hot-listing-card:hover .hot-listing-photo img { transform: scale(1.035); }
.hot-photo-placeholder { display: grid; place-items: center; width: 100%; height: 100%; background: linear-gradient(145deg, #f8e6d3, #e8c8ae); color: rgba(127,29,23,.45); font-size: 2rem; font-weight: 900; }
.hot-listing-badge { position: absolute; top: 12px; left: 12px; padding: 6px 9px; border-radius: 7px; background: var(--hot-red); color: #fff; font-size: .62rem; font-weight: 850; letter-spacing: .06em; text-transform: uppercase; }
.hot-listing-badge--new { background: var(--hot-green); }
.hot-listing-body { padding: 16px; }
.hot-listing-body > small { display: block; overflow: hidden; color: var(--hot-red); font-size: .65rem; font-weight: 850; letter-spacing: .06em; text-overflow: ellipsis; text-transform: uppercase; white-space: nowrap; }
.hot-listing-body h3 { min-height: 2.5em; margin: 6px 0 8px; font: 750 1rem/1.25 ui-sans-serif, system-ui, sans-serif; letter-spacing: -.015em; }
.hot-listing-body h3 a { color: var(--hot-ink); }
.hot-card-location { overflow: hidden; min-height: 1.4em; margin: 0; color: var(--hot-muted); font-size: .74rem; text-overflow: ellipsis; white-space: nowrap; }
.hot-card-footer { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: 14px; padding-top: 12px; border-top: 1px solid var(--hot-line); }
.hot-card-footer strong { overflow: hidden; color: var(--hot-ink); font-size: .93rem; text-overflow: ellipsis; white-space: nowrap; }
.hot-card-footer a { display: grid; place-items: center; width: 32px; height: 32px; border-radius: 9px; background: var(--hot-cream); font-weight: 900; }

.hot-sell-callout {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  margin-top: 74px;
  padding: clamp(28px, 5vw, 48px);
  overflow: hidden;
  border-radius: var(--hot-radius-lg);
  background:
    radial-gradient(circle at 12% 160%, rgba(246,170,60,.28), transparent 32%),
    linear-gradient(120deg, #8c2119, #b52e22 60%, #7d1d18);
  box-shadow: var(--hot-shadow);
  color: #fff;
}
.hot-sell-callout h2 { max-width: 720px; margin: 0 0 8px; color: #fff; }
.hot-sell-callout p:not(.hot-eyebrow) { max-width: 720px; margin: 0; color: #f4d7d2; }
.hot-sell-icon { display: grid; place-items: center; width: 80px; height: 80px; border: 1px solid rgba(255,255,255,.25); border-radius: 23px; background: rgba(255,255,255,.11); color: #fff; font-size: 2rem; font-weight: 900; transform: rotate(-4deg); }
.hot-light-button { background: #fff; box-shadow: none; color: var(--hot-red) !important; }
.hot-light-button:hover { background: var(--hot-cream); color: var(--hot-red-dark) !important; transform: translateY(-1px); }

.hot-home-extras { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; padding-top: 54px; }
.hot-extra-panel { min-width: 0; padding: 24px; border: 1px solid var(--hot-line); border-radius: var(--hot-radius); background: #fff; box-shadow: var(--hot-shadow-sm); }
.hot-extra-panel .box-heading,
.hot-extra-panel .box_heading,
.hot-extra-panel .right_box_heading { margin: 0 0 15px !important; padding: 0 !important; border: 0 !important; background: transparent !important; color: var(--hot-ink) !important; font: 700 1.25rem/1.2 ui-serif, Georgia, serif !important; }
.hot-editorial-content { margin-top: 50px; padding: clamp(25px, 4vw, 42px); border: 1px solid var(--hot-line); border-radius: var(--hot-radius); background: #fff; }

/* Legacy page shell */
.hot-main > h1:first-child,
.hot-main > #page_content > h1:first-child,
.hot-main .title:first-child {
  margin-top: 0;
}

.hot2026 .clearfix::after { content: ""; display: table; clear: both; }
.hot2026 .ie_clearing { clear: both; height: 0 !important; overflow: hidden; }
.hot2026 .dcenter { text-align: center; }
.hot2026 .small { color: var(--hot-muted); font-size: .78rem; }
.hot2026 .mandatory { color: var(--hot-red); }
.hot2026 .info_message { color: var(--hot-muted); font-size: .78rem; }

.hot2026 .info,
.hot2026 .error,
.hot2026 .warning,
.hot2026 .success,
.hot2026 #mailto_error,
.hot2026 #mailto_info {
  margin: 0 0 18px;
  padding: 14px 16px;
  border: 1px solid #b9d7ec;
  border-radius: 12px;
  background: #eef8ff;
  color: #1d5376;
}
.hot2026 .error,
.hot2026 #mailto_error { border-color: #f0b5af; background: #fff0ef; color: #8d2018; }
.hot2026 .warning { border-color: #edd092; background: #fff8e7; color: #76510b; }
.hot2026 .success,
.hot2026 #mailto_info { border-color: #a7d8bf; background: #eefaf4; color: #176440; }
.hot2026 .info p,
.hot2026 .error p,
.hot2026 .warning p,
.hot2026 .success p { margin: 0; }

/* Forms */
.hot2026 #form_container,
.hot2026 #page_content,
.hot2026 .box3,
.hot2026 .box3-login,
.hot2026 .content,
.hot2026 .form_content {
  max-width: 100%;
}
.hot2026 #form_container,
.hot2026 #page_content {
  width: 100%;
  margin-inline: auto;
  padding: clamp(20px, 4vw, 38px);
  border: 1px solid var(--hot-line);
  border-radius: var(--hot-radius);
  background: #fff;
  box-shadow: var(--hot-shadow-sm);
}
.hot2026 #form_container > .title,
.hot2026 .box3-head,
.hot2026 .box-heading,
.hot2026 .box_heading,
.hot2026 .right_box_heading {
  min-height: 0;
  margin: 0 0 18px;
  padding: 0 0 12px;
  border: 0;
  border-bottom: 1px solid var(--hot-line);
  background: none;
  color: var(--hot-ink);
  font: 700 1.3rem/1.25 ui-serif, Georgia, serif;
}
.hot2026 #form_container > .title h1,
.hot2026 #form_container > .title h2 {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--hot-ink);
}
.hot2026 #form_container h1 {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--hot-ink);
}
.hot2026 #form_container h2 {
  padding-bottom: 8px;
  border-bottom: 1px solid var(--hot-line);
  background: transparent;
  color: var(--hot-ink);
}
.hot2026 #form_container label { color: #303a4d; }
.hot2026 .form_content {
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
}
.hot2026 .form_content form > ul,
.hot2026 .form_content > ul,
.hot2026 #quick_search ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.hot2026 .form_content li,
.hot2026 #register > div,
.hot2026 #login > div,
.hot2026 #contact > div {
  margin-bottom: 15px;
}
.hot2026 label,
.hot2026 legend {
  display: block;
  margin-bottom: 6px;
  color: #303a4d;
  font-size: .82rem;
  font-weight: 750;
}
.hot2026 fieldset { min-width: 0; margin: 16px 0; padding: 18px; border: 1px solid var(--hot-line); border-radius: 12px; }
.hot2026 input[type="text"],
.hot2026 input[type="email"],
.hot2026 input[type="password"],
.hot2026 input[type="search"],
.hot2026 input[type="tel"],
.hot2026 input[type="number"],
.hot2026 input[type="url"],
.hot2026 input[type="date"],
.hot2026 textarea,
.hot2026 select {
  max-width: 100%;
  min-height: 44px;
  margin: 0;
  padding: 10px 12px;
  border: 1px solid var(--hot-line-strong);
  border-radius: 9px;
  background: #fff;
  color: var(--hot-ink);
  font: 500 .9rem/1.35 ui-sans-serif, system-ui, sans-serif;
  transition: border-color .16s ease, box-shadow .16s ease;
}
.hot2026 textarea { width: min(100%, 720px); min-height: 120px; resize: vertical; }
.hot2026 #form_container select { float: none; display: inline-block; }
.hot2026 input[type="text"]:focus,
.hot2026 input[type="email"]:focus,
.hot2026 input[type="password"]:focus,
.hot2026 input[type="search"]:focus,
.hot2026 input[type="tel"]:focus,
.hot2026 textarea:focus,
.hot2026 select:focus { border-color: var(--hot-red); box-shadow: 0 0 0 3px rgba(169,43,32,.11); outline: 0; }
.hot2026 input[type="checkbox"],
.hot2026 input[type="radio"] { width: 18px; height: 18px; accent-color: var(--hot-red); vertical-align: middle; }
.hot2026 input[type="file"] { max-width: 100%; padding: 9px; border: 1px dashed var(--hot-line-strong); border-radius: 9px; background: #fafafa; }
.hot2026 input[type="submit"],
.hot2026 input[type="button"],
.hot2026 button:not(.hot-menu-button):not(.hot-back-to-top),
.hot2026 .form_button a,
.hot2026 .buttonwrapper a {
  min-height: 42px;
  padding: 10px 17px;
  border: 0;
  border-radius: 9px;
  background: var(--hot-red);
  color: #fff;
  font: 750 .86rem/1.2 ui-sans-serif, system-ui, sans-serif;
  cursor: pointer;
}
.hot2026 input[type="submit"]:hover,
.hot2026 input[type="button"]:hover,
.hot2026 button:not(.hot-menu-button):not(.hot-back-to-top):hover { background: var(--hot-red-dark); }
.hot2026 .buttons { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; padding: 0; text-align: left; }
.hot2026 .buttons strong { padding: 0; font-weight: inherit; }
.hot2026 .form_button { display: inline-block; margin-top: 18px; }
.hot2026 .form_button a { display: inline-flex; align-items: center; }
.hot2026 .g-recaptcha { max-width: 100%; overflow: hidden; }
.hot2026 .map,
.hot2026 .bordered_map { width: 100% !important; max-width: 100%; border-radius: 12px; overflow: hidden; }

/* Wizard and plans */
.hot2026 #crumbs {
  display: flex;
  gap: 4px;
  margin: 0 0 26px;
  padding: 0;
  overflow-x: auto;
  list-style: none;
}
.hot2026 #crumbs li { min-width: max-content; padding: 9px 12px; border-radius: 8px; background: #f0f1f4; color: var(--hot-muted); font-size: .72rem; font-weight: 750; }
.hot2026 #crumbs li.current { background: var(--hot-red); color: #fff; }
.hot2026 .post_category { margin-bottom: 20px; padding: 12px 14px; border-radius: 10px; background: var(--hot-cream); }
.hot2026 .post_category span { color: var(--hot-red); font-weight: 800; }
.hot2026 #plans-equal { border-collapse: separate; border-spacing: 10px; }
.hot2026 .plan { height: 100%; padding: 20px; border: 1px solid var(--hot-line); border-radius: 14px; background: #fff; box-shadow: var(--hot-shadow-sm); }
.hot2026 .plan ul { padding-left: 18px; }
.hot2026 .plan .choose { margin-top: 15px; }

/* Listings and search */
.page-listings .hot-main {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  align-items: start;
  gap: 24px;
}

.hot2026 #listings_gm {
  width: 100% !important;
  max-width: 700px;
}
.hot2026 #refine_col,
.hot2026 #ads_col { float: none; width: auto; margin: 0; }
.hot2026 #refine_col {
  position: sticky;
  top: 18px;
  padding: 20px;
  border: 1px solid var(--hot-line);
  border-radius: var(--hot-radius);
  background: #fff;
  box-shadow: var(--hot-shadow-sm);
}
.hot2026 #ads_col,
.hot2026 #right_content,
.hot2026 #first_left_content,
.hot2026 #left_content { min-width: 0; }
.hot2026 #ads_col > #right_content { padding: 0; background: transparent; }
.hot2026 #refine_col .box-heading,
.hot2026 #refine_col .box_heading { font-size: 1.05rem; }
.hot2026 #refine_col ul { margin: 0; padding: 0; list-style: none; }
.hot2026 #refine_col li { margin-bottom: 12px; }
.hot2026 #refine_col input[type="text"],
.hot2026 #refine_col select { width: 100%; }

.hot2026 .classified {
  position: relative;
  float: none;
  width: 100%;
  min-height: 0;
  margin: 0 0 14px !important;
  padding: 16px !important;
  overflow: hidden;
  border: 1px solid var(--hot-line) !important;
  border-radius: 15px;
  background: #fff !important;
  box-shadow: var(--hot-shadow-sm);
}
.hot2026 .classified:hover { border-color: rgba(169,43,32,.25) !important; box-shadow: var(--hot-shadow); }
.hot2026 .classified > div[style] { display: grid; grid-template-columns: 190px minmax(0, 1fr); gap: 18px; margin-left: 0 !important; }
.hot2026 .classified > div[style] > div { display: contents; }
.hot2026 .classified_photo {
  position: relative;
  float: none;
  grid-column: 1;
  width: 190px !important;
  height: 145px;
  margin-left: 0 !important;
  overflow: hidden;
  border-radius: 11px;
  background: #ece9e5;
}
.hot2026 .classified_photo > a { display: block; width: 100%; height: 100%; }
.hot2026 .classified_photo img,
.hot2026 .classified_photo .pic,
.hot2026 .classified_photo .pic_over,
.hot2026 .classified_photo .sprite-noimage { width: 100% !important; height: 100% !important; border: 0 !important; object-fit: cover; }
.hot2026 .classified_content { grid-column: 2; min-width: 0; padding: 2px 0; }
.hot2026 .classified_content h3 { margin: 0 0 7px; font: 750 1.12rem/1.25 ui-sans-serif, system-ui, sans-serif; }
.hot2026 .classified_content h3 a { color: var(--hot-ink); }
.hot2026 .classified_content .price { color: var(--hot-red); font-size: 1.05rem; font-weight: 850; }
.hot2026 .classified_content .location { color: var(--hot-muted); }
.hot2026 .classified_content p { margin: 8px 0; color: var(--hot-ink-soft); font-size: .86rem; }
.hot2026 .classified_links { display: flex; flex-wrap: wrap; gap: 6px 12px; margin-top: 10px; font-size: .75rem; }
.hot2026 .featured-icon { position: absolute; z-index: 2; top: 11px; right: 11px; width: auto; height: auto; padding: 5px 8px; border-radius: 7px; background: var(--hot-amber); }
.hot2026 .featured-icon::after { content: "Destaque"; color: #4f3200; font-size: .61rem; font-weight: 900; text-transform: uppercase; }

.hot2026 #table_gallery { display: block; width: 100%; overflow-x: auto; border-spacing: 10px; }
.hot2026 #table_gallery td { min-width: 210px; padding: 14px !important; border: 1px solid var(--hot-line); border-radius: 13px; background: #fff; vertical-align: top; }
.hot2026 .gallery-image img { border-radius: 9px; object-fit: cover; }

.hot2026 .paginator,
.hot2026 #paginator,
.hot2026 .pagination { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 6px; margin: 20px 0; }
.hot2026 .paginator a,
.hot2026 .paginator span,
.hot2026 #paginator a,
.hot2026 #paginator span,
.hot2026 .pagination a,
.hot2026 .pagination span { display: inline-grid; place-items: center; min-width: 36px; min-height: 36px; padding: 6px 10px; border: 1px solid var(--hot-line); border-radius: 8px; background: #fff; font-size: .78rem; font-weight: 700; }
.hot2026 .paginator .selected,
.hot2026 .paginator .current,
.hot2026 #paginator .selected { border-color: var(--hot-red); background: var(--hot-red); color: #fff; }
.hot2026 #order_listings,
.hot2026 .order_listings { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px; margin: 0 0 16px; }

/* Details */
.page-details .hot-main > div[itemscope] { display: block; }
.page-details #details_left { float: left; width: calc(100% - 380px); margin: 0; }
.page-details #details_right { float: right; width: 350px; margin: 0; }
.page-details #left_content,
.page-details #right_content {
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid var(--hot-line);
  border-radius: var(--hot-radius);
  background: #fff;
  box-shadow: var(--hot-shadow-sm);
}
.page-details #left_content h1 { margin: 10px 0 14px; }
.page-details #details_left h2 {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--hot-ink);
}
.page-details #details_left p { text-align: left; }
.hot2026 .category_path ul { display: flex; flex-wrap: wrap; gap: 6px; margin: 0; padding: 0; list-style: none; }
.hot2026 .category_path li { color: var(--hot-muted); font-size: .74rem; }
.hot2026 .details_icons { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 12px; margin: 16px 0; padding: 12px; border-radius: 10px; background: #f7f5f2; font-size: .76rem; }
.hot2026 .details_icons .img_href { display: none; }
.hot2026 #details { margin: 20px 0; overflow: hidden; border: 1px solid var(--hot-line); border-radius: 12px; }
.hot2026 #details > div { display: grid; grid-template-columns: minmax(120px, .42fr) minmax(0, 1fr); gap: 14px; padding: 11px 14px; border-bottom: 1px solid var(--hot-line); }
.hot2026 #details > div:last-child { border-bottom: 0; }
.hot2026 #details > div > span:first-child { color: var(--hot-muted); font-weight: 700; }
.hot2026 #description { margin: 24px 0; padding: 20px; border-radius: 13px; background: #f8f7f5; color: var(--hot-ink-soft); }
.hot2026 #description h2,
.hot2026 #description h3 { margin-top: 0; }
.hot2026 #gallery { margin-bottom: 20px; }
.hot2026 #bigImg,
.hot2026 #galleryVideo { display: grid; place-items: center; min-height: 230px; overflow: hidden; border-radius: 14px; background: #efede9; }
.hot2026 #bigImg img,
.hot2026 #bigImage,
.hot2026 #galleryVideo img { width: 100% !important; max-height: 520px; border: 0 !important; object-fit: contain; }
.hot2026 #gallery ul,
.hot2026 #gallery .thumbs { display: flex; flex-wrap: wrap; gap: 8px; margin: 10px 0 0; padding: 0; list-style: none; }
.hot2026 #gallery li { margin: 0; }
.hot2026 #gallery li img { width: 72px; height: 58px; border: 2px solid transparent; border-radius: 8px; object-fit: cover; }
.hot2026 #gallery li img:hover { border-color: var(--hot-red); }
.hot2026 #details_right .right_box,
.hot2026 #details_right > div > div { max-width: 100%; }
.hot2026 #contact input[type="text"],
.hot2026 #contact input[type="email"],
.hot2026 #contact textarea { width: 100%; }
.hot2026 .seta { position: fixed; z-index: 40; top: 50%; padding: 10px 12px; border-radius: 9px; background: var(--hot-ink); box-shadow: var(--hot-shadow-sm); color: #fff; font-size: .72rem; }
.hot2026 .seta-direita { left: 8px; }
.hot2026 .seta-esquerda { right: 8px; }
.hot2026 .pdf { display: inline-flex; align-items: center; gap: 8px; }
.hot2026 .pdf img { width: 24px; }

/* Account, login, messages and tabular data */
.page-login .hot-main > table { width: min(100%, 900px); margin: 0 auto; border-collapse: separate; border-spacing: 18px 0; }
.page-login .box3-login { padding: 26px !important; border: 1px solid var(--hot-line); border-radius: var(--hot-radius); background: #fff; box-shadow: var(--hot-shadow-sm); vertical-align: top; }
.page-login .box3-bottom,
.page-login .box3-left,
.page-login .box3-right,
.page-login .box3-bottom-left,
.page-login .box3-bottom-right,
.page-login .box3-footer { padding: 0 !important; background: none !important; }
.page-login #login input[type="text"],
.page-login #login input[type="password"] { width: 100%; }

.hot2026 #mynav,
.hot2026 #useraccountmenu { display: none; }
.hot2026 .useraccount,
.hot2026 #useraccount { max-width: 100%; }
.hot2026 .stats,
.hot2026 .statistics { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }

.hot2026 table { max-width: 100%; }
.hot-table-scroll {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  border-radius: 12px;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}
.hot-table-scroll:focus { box-shadow: 0 0 0 3px rgba(169,43,32,.11); outline: 0; }
.hot2026 .is-submitting { opacity: .72; cursor: wait !important; }
.hot2026 table.list,
.hot2026 table.messages,
.hot2026 table.orders,
.hot2026 #messages,
.hot2026 #order_history {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border: 1px solid var(--hot-line);
  border-radius: 12px;
  background: #fff;
}
.hot2026 table.list th,
.hot2026 table.messages th,
.hot2026 table.orders th,
.hot2026 #messages th,
.hot2026 #order_history th { padding: 11px 12px; background: #f1efec; color: var(--hot-ink-soft); font-size: .7rem; letter-spacing: .04em; text-align: left; text-transform: uppercase; }
.hot2026 table.list td,
.hot2026 table.messages td,
.hot2026 table.orders td,
.hot2026 #messages td,
.hot2026 #order_history td { padding: 12px; border-top: 1px solid var(--hot-line); vertical-align: middle; }
.hot2026 tr:hover td { background: #fffaf5; }

/* Legacy decorated boxes and modules */
.hot2026 .box-top-white,
.hot2026 .box-top,
.hot2026 .box-bottom,
.hot2026 .box-left,
.hot2026 .box-right,
.hot2026 .box-bottom-left,
.hot2026 .box-bottom-right,
.hot2026 .box-top-left,
.hot2026 .box-top-right,
.hot2026 .box3-bottom,
.hot2026 .box3-left,
.hot2026 .box3-right,
.hot2026 .box3-bottom-left,
.hot2026 .box3-bottom-right,
.hot2026 .box3-footer,
.hot2026 .box-main,
.hot2026 .box-main-gray {
  min-height: 0;
  padding: 0;
  border: 0;
  background: none;
}
.hot2026 .right_box,
.hot2026 .box,
.hot2026 .box3 {
  margin-bottom: 18px;
  padding: 18px;
  border: 1px solid var(--hot-line);
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--hot-shadow-sm);
}
.hot2026 .vert_banners,
.hot2026 .hor_banners { max-width: 100%; overflow: hidden; text-align: center; }
.hot2026 .vert_banners + .vert_banners,
.hot2026 .hor_banners + .hor_banners { margin-top: 10px; }
.hot2026 #footer_categories ul,
.hot2026 .tag_cloud ul { display: flex; flex-wrap: wrap; gap: 8px 15px; margin: 0; padding: 0; list-style: none; }

/* Footer */
.hot-footer { margin-top: 20px; background: #121927; color: #cbd1dc; }
.hot-footer-main { display: grid; grid-template-columns: 1.35fr .8fr 1fr; gap: clamp(28px, 6vw, 80px); padding-block: 54px 42px; }
.hot-brand--footer { margin-bottom: 18px; }
.hot-brand--footer .hot-brand-copy strong { color: #fff; }
.hot-brand--footer .hot-brand-copy small { color: #9ea8b9; }
.hot-footer-brand-block p { max-width: 450px; color: #9ea8b9; font-size: .85rem; }
.hot-footer-links { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.hot-footer-links > strong,
.hot-footer-cta > strong { margin-bottom: 5px; color: #fff; font-size: .84rem; text-transform: uppercase; letter-spacing: .06em; }
.hot-footer-links a { color: #b8c0ce; font-size: .82rem; }
.hot-footer-links a:hover { color: #fff; }
.hot-footer-cta p { color: #9ea8b9; font-size: .82rem; }
.hot-footer-cta .hot-post-button { margin-top: 7px; }
.hot-footer-categories { padding-block: 22px; border-top: 1px solid rgba(255,255,255,.08); color: #9ea8b9; font-size: .75rem; }
.hot-footer-categories a { color: #b8c0ce; }
.hot-footer-image { padding: 15px; text-align: center; }
.hot-footer-social { width: min(calc(100% - 40px), var(--hot-max)); margin: 0 auto; padding: 15px 0; }
.hot-footer-bottom { display: flex; justify-content: space-between; gap: 25px; padding-block: 19px; border-top: 1px solid rgba(255,255,255,.09); color: #7f899a; font-size: .72rem; }
.hot-version-link { padding: 15px; text-align: center; }
.hot-back-to-top { position: fixed; z-index: 90; right: 18px; bottom: 18px; display: grid; place-items: center; width: 42px; height: 42px; padding: 0 !important; border: 1px solid rgba(255,255,255,.25) !important; border-radius: 50% !important; background: var(--hot-ink) !important; box-shadow: var(--hot-shadow-sm); color: #fff; opacity: 0; pointer-events: none; transform: translateY(10px); transition: opacity .18s ease, transform .18s ease; }
.hot-back-to-top.is-visible { opacity: 1; pointer-events: auto; transform: none; }

/* Breakpoints */
@media (max-width: 1120px) {
  .hot-header-main { gap: 16px; }
  .hot-nav > a { padding-inline: 8px; font-size: .78rem; }
  .hot-listing-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .hot-category-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .hot-hero { grid-template-columns: minmax(0, 1fr) 360px; }
  .hot-visual-card--car { right: 95px; }
  .hot-visual-card--service { right: 170px; }
}

@media (max-width: 960px) {
  .hot-header-main { grid-template-columns: auto 1fr auto auto; min-height: 72px; }
  .hot-menu-button { display: block; justify-self: end; }
  .hot-nav {
    position: absolute;
    z-index: 300;
    top: 100%;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 10px;
    border: 1px solid var(--hot-line);
    border-radius: 14px;
    background: #fff;
    box-shadow: var(--hot-shadow);
  }
  .hot-nav.is-open { display: flex; }
  .hot-nav > a { padding: 12px; font-size: .9rem; }
  .hot-nav-group > summary { padding: 12px; font-size: .9rem; }
  .hot-nav-submenu { position: static; margin: 2px 8px 8px; border: 0; background: #f7f5f2; box-shadow: none; }
  .hot-nav > a.is-active::after { display: none; }
  .hot-hero { grid-template-columns: 1fr; }
  .hot-hero-content { padding-right: clamp(36px, 5vw, 70px); }
  .hot-hero-visual { display: none; }
  .hot-category-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hot-listing-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .page-listings .hot-main { grid-template-columns: 230px minmax(0, 1fr); gap: 16px; }
  .page-details #details_left,
  .page-details #details_right { float: none; width: 100%; }
  .page-details #details_right { margin-top: 18px; }
  .hot-footer-main { grid-template-columns: 1fr 1fr; }
  .hot-footer-brand-block { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  .hot-utility-inner,
  .hot-header-main,
  .hot-account-nav,
  .hot-main,
  .hot-footer-main,
  .hot-footer-bottom,
  .hot-footer-categories,
  .hot-banner-zone { width: min(calc(100% - 24px), var(--hot-max)); }
  .hot-trust-message { display: none; }
  .hot-utility-inner { justify-content: flex-end; }
  .hot-utility-actions { width: 100%; justify-content: flex-end; gap: 10px; }
  .hot-signed-in { display: none; }
  .hot-header-main { grid-template-columns: auto 1fr auto; }
  .hot-header-main > .hot-post-button { display: none; }
  .hot-brand-mark { width: 39px; height: 39px; }
  .hot-brand-copy strong { font-size: 1.15rem; }
  .hot-brand-copy small { font-size: .56rem; }
  .hot-main { padding-top: 20px; padding-bottom: 44px; }
  .hot-hero { min-height: 0; border-radius: 20px; }
  .hot-hero-content { padding: 34px 22px; }
  .hot-hero h1 { font-size: clamp(2.35rem, 12vw, 3.7rem); }
  .hot-hero-search { grid-template-columns: 1fr; gap: 5px; padding: 7px; }
  .hot-search-field--keyword::after { display: none; }
  .hot-hero-search input,
  .hot-hero-search select { border-bottom: 1px solid var(--hot-line) !important; }
  .hot-hero-search button { width: 100%; }
  .hot-section { padding-top: 48px; }
  .hot-section-heading { align-items: flex-start; flex-direction: column; gap: 12px; }
  .hot-category-grid { grid-template-columns: 1fr; }
  .hot-listing-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .hot-listing-section--featured { margin-top: 35px; padding-inline: 14px; border-radius: 20px; }
  .hot-listing-body { padding: 13px; }
  .hot-listing-body h3 { font-size: .9rem; }
  .hot-sell-callout { grid-template-columns: 1fr; gap: 18px; margin-top: 50px; border-radius: 20px; }
  .hot-sell-icon { width: 60px; height: 60px; }
  .hot-light-button { justify-self: start; }
  .hot-home-extras { grid-template-columns: 1fr; }
  .page-listings .hot-main { display: block; }
  .hot2026 #refine_col { position: static; margin-bottom: 18px; }
  .hot2026 .classified > div[style] { grid-template-columns: 130px minmax(0, 1fr); gap: 13px; }
  .hot2026 .classified_photo { width: 130px !important; height: 115px; }
  .hot2026 .classified_content p { display: none; }
  .hot2026 .classified_links { gap: 5px 9px; }
  .hot2026 #form_container,
  .hot2026 #page_content { padding: 18px; border-radius: 14px; }
  .page-login .hot-main > table,
  .page-login .hot-main > table > tbody,
  .page-login .hot-main > table > tbody > tr,
  .page-login .hot-main > div > table,
  .page-login .hot-main > div > table > tbody,
  .page-login .hot-main > div > table > tbody > tr { display: block; width: 100% !important; }
  .page-login .hot-main > div { width: 100% !important; margin-inline: auto !important; }
  .page-login .hot-main > table > tbody > tr > td,
  .page-login .hot-main > div > table > tbody > tr > td { display: block; width: 100% !important; margin-bottom: 14px; }
  .hot-footer-main { grid-template-columns: 1fr; gap: 30px; }
  .hot-footer-brand-block { grid-column: auto; }
  .hot-footer-bottom { flex-direction: column; gap: 4px; }
}

@media (max-width: 480px) {
  .hot-utility-actions #choose_location { display: none; }
  .hot-utility-actions { font-size: .7rem; }
  .hot-brand-copy small { display: none; }
  .hot-listing-grid { grid-template-columns: 1fr; }
  .hot-listing-photo { aspect-ratio: 16 / 10; }
  .hot2026 .classified { padding: 12px !important; }
  .hot2026 .classified > div[style] { display: block; }
  .hot2026 .classified_photo { width: 100% !important; height: 185px; margin-bottom: 13px; }
  .hot2026 #details > div { grid-template-columns: 1fr; gap: 3px; }
  .hot2026 #crumbs li { padding: 7px 9px; font-size: .65rem; }
  .hot2026 .seta { display: none; }
  .hot2026 table:not(#table_gallery) { font-size: .74rem; }
  .hot2026 table:not(#table_gallery) th,
  .hot2026 table:not(#table_gallery) td { padding: 8px !important; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}

@media print {
  .hot-utility,
  .hot-nav,
  .hot-menu-button,
  .hot-post-button,
  .hot-account-nav,
  .hot-banner-zone,
  .hot-footer,
  .hot-back-to-top,
  .details_icons { display: none !important; }
  body.hot2026 { background: #fff; color: #000; }
  .hot-main { width: 100%; padding: 0; }
  .page-details #details_left { float: none; width: 100%; }
  .page-details #details_right { float: none; width: 100%; }
}
