/* TESLASHOP.GE — Homepage concept one
   Bright, compact and product-first. Loaded after the global visual layers. */

body[data-module="home"] {
  --tsh1-red: #e82127;
  --tsh1-red-dark: #c71920;
  --tsh1-ink: #111318;
  --tsh1-muted: #6d737d;
  --tsh1-line: #e2e5e9;
  --tsh1-canvas: #f6f7f8;
  --tsh1-max: 1390px;
  background: #fff !important;
}

body[data-module="home"] .site-header.tsn-header,
body[data-module="home"] .site-header.tsn-header.is-scrolled {
  height: 70px !important;
  border-bottom-color: var(--tsh1-line) !important;
  background: rgba(255, 255, 255, .96) !important;
  box-shadow: none !important;
}

body[data-module="home"] .tsn-header__inner {
  width: min(calc(100% - 40px), var(--tsh1-max));
}

body[data-module="home"] .tsn-brand img {
  width: 37px;
  height: 37px;
  filter: none;
}

body[data-module="home"] .tsn-brand__copy small {
  display: none;
}

body[data-module="home"] .tsn-nav a {
  padding-inline: 10px;
  font-size: 11px;
}

body[data-module="home"] .tsn-route-button {
  min-height: 42px;
}

.tsh1-home {
  width: 100%;
  min-width: 0;
  overflow: hidden;
  background: #fff;
  color: var(--tsh1-ink);
  font-family: "Noto Sans Georgian", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

.tsh1-home :where(h1, h2, h3, p) {
  margin: 0;
}

.tsh1-home a {
  color: inherit;
  text-decoration: none;
}

.tsh1-hero,
.tsh1-categories,
.tsh1-listings,
.tsh1-navigation,
.tsh1-utilities,
.tsh1-cta {
  width: min(calc(100% - 40px), var(--tsh1-max));
  margin-inline: auto;
}

.tsh1-hero.tsn-home-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 1.08fr);
  min-height: 430px;
  overflow: hidden;
  border-bottom: 1px solid var(--tsh1-line);
  background: #fff;
  color: var(--tsh1-ink);
}

.tsh1-hero__copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 54px clamp(28px, 4.2vw, 68px) 54px 0;
}

.tsh1-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--tsh1-red);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: .09em;
  line-height: 1.4;
  text-transform: uppercase;
}

.tsh1-eyebrow::before {
  width: 24px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
  content: "";
}

.tsh1-hero h1 {
  max-width: 700px;
  margin: 16px 0 14px;
  color: var(--tsh1-ink) !important;
  font-size: clamp(42px, 4.2vw, 65px);
  font-weight: 700;
  letter-spacing: -.058em;
  line-height: 1.04;
  text-wrap: balance;
}

.tsh1-hero h1 span {
  color: var(--tsh1-ink);
  font-weight: 430;
}

.tsh1-hero__copy > p {
  max-width: 590px;
  color: var(--tsh1-muted);
  font-size: 14px;
  line-height: 1.65;
}

.tsh1-search.tsn-hero-search {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  width: min(100%, 610px);
  min-height: 58px;
  margin-top: 24px;
  padding: 5px 6px 5px 16px;
  border: 1px solid #ccd1d8;
  border-radius: 13px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(17, 19, 24, .04);
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.tsh1-search svg {
  width: 20px;
  color: #858b94;
}

.tsh1-search input {
  height: 46px;
  min-width: 0;
  padding: 0 12px;
  border: 0 !important;
  outline: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: var(--tsh1-ink) !important;
  font-size: 12px;
}

.tsh1-search input::placeholder {
  color: #9297a0;
}

.tsh1-search button {
  min-width: 96px;
  min-height: 46px;
  padding-inline: 18px;
  border: 0;
  border-radius: 9px;
  background: var(--tsh1-ink);
  color: #fff;
  cursor: pointer;
  font-size: 11px;
  font-weight: 750;
  transition: background .2s ease, transform .2s ease;
}

.tsh1-search button:hover {
  background: #282b31;
  transform: translateY(-1px);
}

.tsh1-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 13px;
}

.tsh1-button {
  display: inline-flex;
  min-height: 43px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 10px 17px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: 10px;
  font-weight: 750;
  line-height: 1.2;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.tsh1-button:hover {
  transform: translateY(-1px);
}

.tsh1-button--primary {
  background: var(--tsh1-red);
  color: #fff !important;
}

.tsh1-button--primary:hover {
  background: var(--tsh1-red-dark);
}

.tsh1-button--secondary {
  border-color: #cfd3d9;
  background: #fff;
  color: var(--tsh1-ink) !important;
}

.tsh1-hero__facts {
  display: flex;
  gap: clamp(24px, 4vw, 54px);
  margin-top: 23px;
}

.tsh1-hero__facts span {
  display: grid;
  gap: 2px;
}

.tsh1-hero__facts strong {
  color: var(--tsh1-ink);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -.035em;
  line-height: 1;
}

.tsh1-hero__facts small {
  color: #858b94;
  font-size: 8px;
  font-weight: 600;
}

.tsh1-hero__media {
  position: relative;
  display: grid;
  min-width: 0;
  place-items: center;
  overflow: hidden;
  background: #fff;
}

.tsh1-hero__media::before {
  display: none;
}

.tsh1-hero__media img {
  position: relative;
  z-index: 1;
  width: min(142%, 920px);
  max-width: none;
  height: auto;
  max-height: 430px;
  object-fit: contain;
  filter: none;
  transform: translateX(-2%);
}

.tsh1-home-slider {
  isolation: isolate;
}

.tsh1-home-slide {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity .5s ease;
}

.tsh1-home-slide.is-active {
  z-index: 2;
  opacity: 1;
  pointer-events: auto;
}

.tsh1-hero__media .tsh1-home-slide__image {
  position: absolute;
  inset: 0;
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  object-fit: cover;
  object-position: center;
  transform: none;
}

.tsh1-hero__media .tsh1-home-slide.is-fallback .tsh1-home-slide__image {
  inset: 50% auto auto 50%;
  width: min(142%, 920px);
  height: auto;
  max-height: 430px;
  object-fit: contain;
  transform: translate(-52%, -50%);
}

.tsh1-home-slide__content {
  position: absolute;
  z-index: 3;
  right: clamp(18px, 3vw, 34px);
  bottom: clamp(20px, 3vw, 34px);
  left: clamp(18px, 3vw, 34px);
  max-width: 520px;
  padding: 20px 22px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(10, 13, 18, .88), rgba(10, 13, 18, .63));
  box-shadow: 0 16px 44px rgba(0, 0, 0, .23);
  color: #fff;
  -webkit-backdrop-filter: blur(9px);
  backdrop-filter: blur(9px);
}

.tsh1-home-slide__content h2 {
  color: #fff;
  font-size: clamp(20px, 2vw, 31px);
  font-weight: 760;
  letter-spacing: -.035em;
  line-height: 1.12;
}

.tsh1-home-slide__content p {
  margin-top: 7px;
  color: rgba(255, 255, 255, .82);
  font-size: 12px;
  line-height: 1.55;
}

.tsh1-home-slide__content a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  gap: 8px;
  margin-top: 13px;
  padding: 8px 13px;
  border-radius: 9px;
  background: var(--tsh1-red);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
}

.tsh1-home-slider__arrow {
  position: absolute;
  z-index: 5;
  top: 50%;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, .38);
  border-radius: 50%;
  background: rgba(12, 15, 20, .56);
  color: #fff;
  cursor: pointer;
  font-size: 25px;
  line-height: 1;
  transform: translateY(-50%);
  -webkit-backdrop-filter: blur(7px);
  backdrop-filter: blur(7px);
}

.tsh1-home-slider__arrow.is-prev { left: 13px; }
.tsh1-home-slider__arrow.is-next { right: 13px; }

.tsh1-home-slider__dots {
  position: absolute;
  z-index: 5;
  right: 18px;
  top: 16px;
  display: flex;
  gap: 6px;
}

.tsh1-home-slider__dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, .58);
  box-shadow: 0 1px 5px rgba(0, 0, 0, .24);
  cursor: pointer;
  transition: width .2s ease, background .2s ease;
}

.tsh1-home-slider__dots button.is-active {
  width: 23px;
  background: var(--tsh1-red);
}

[data-home-popup][hidden] {
  display: none !important;
}

.tsh1-home-popup {
  position: fixed;
  inset: 0;
  z-index: 10050;
  display: grid;
  place-items: center;
  padding: 20px;
}

.tsh1-home-popup__backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: rgba(8, 11, 16, .68);
  cursor: default;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}

.tsh1-home-popup__panel {
  position: relative;
  z-index: 1;
  width: min(100%, 720px);
  max-height: min(88vh, 820px);
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, .4);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 28px 90px rgba(0, 0, 0, .33);
}

.tsh1-home-popup__close {
  position: absolute;
  z-index: 3;
  top: 13px;
  right: 13px;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(17, 24, 39, .1);
  border-radius: 50%;
  background: rgba(255, 255, 255, .92);
  color: #111827;
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

.tsh1-home-popup__image {
  display: block;
  width: 100%;
  max-height: 390px;
  background: #f2f3f5;
  object-fit: cover;
}

.tsh1-home-popup__body {
  padding: clamp(23px, 4vw, 38px);
}

.tsh1-home-popup__body h2 {
  color: #111318;
  font-size: clamp(25px, 3.2vw, 38px);
  font-weight: 760;
  letter-spacing: -.045em;
  line-height: 1.12;
}

.tsh1-home-popup__body p {
  margin-top: 13px;
  color: #626873;
  font-size: 14px;
  line-height: 1.72;
}

.tsh1-home-popup__action {
  display: inline-flex;
  min-height: 45px;
  align-items: center;
  gap: 9px;
  margin-top: 20px;
  padding: 10px 17px;
  border-radius: 11px;
  background: var(--tsh1-red);
  color: #fff !important;
  font-size: 11px;
  font-weight: 800;
}

html.has-home-popup {
  overflow: hidden;
}

.tsh1-categories,
.tsh1-listings {
  padding-block: 54px;
}

.tsh1-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 20px;
}

.tsh1-section-heading h2 {
  margin-top: 7px;
  color: var(--tsh1-ink);
  font-size: clamp(26px, 2.7vw, 38px);
  font-weight: 680;
  letter-spacing: -.05em;
  line-height: 1.1;
}

.tsh1-section-heading > a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #4e535b;
  font-size: 10px;
  font-weight: 700;
}

.tsh1-section-heading > a span {
  color: var(--tsh1-red);
  font-size: 16px;
}

.tsh1-category-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 11px;
}

.tsh1-category-card {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  min-height: 86px;
  padding: 13px;
  border: 1px solid var(--tsh1-line);
  border-radius: 13px;
  background: #fff;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.tsh1-category-card:hover {
  z-index: 1;
  border-color: #c9ced5;
  box-shadow: 0 12px 28px rgba(17, 19, 24, .07);
  transform: translateY(-2px);
}

.tsh1-category-card__icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 12px;
  background: var(--tsh1-canvas);
  color: #34383f;
}

.tsh1-category-card__icon svg {
  width: 24px;
  height: 24px;
}

.tsh1-category-card__copy {
  display: grid;
  min-width: 0;
  gap: 4px;
}

.tsh1-category-card__copy strong {
  overflow: hidden;
  color: var(--tsh1-ink);
  font-size: 11px;
  font-weight: 720;
  line-height: 1.3;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tsh1-category-card__copy small {
  overflow: hidden;
  color: #858b94;
  font-size: 7.5px;
  font-weight: 550;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tsh1-category-card > b {
  color: #7d828b;
  font-size: 16px;
  font-weight: 400;
}

.tsh1-category-card--chargers {
  border-color: var(--tsh1-red);
  background: var(--tsh1-red);
}

.tsh1-category-card--chargers:hover {
  border-color: var(--tsh1-red-dark);
  background: var(--tsh1-red-dark);
  box-shadow: 0 14px 30px rgba(232, 33, 39, .18);
}

.tsh1-category-card--chargers .tsh1-category-card__icon {
  background: rgba(255, 255, 255, .15);
  color: #fff;
}

.tsh1-category-card--chargers :where(strong, small, b) {
  color: #fff;
}

.tsh1-category-card--chargers small {
  opacity: .76;
}

.tsh1-listings {
  border-top: 1px solid var(--tsh1-line);
}

.tsh1-listing-grid.mp-grid.tsn-listing-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  gap: 13px !important;
}

.tsh1-listing-grid .mp-card.tsr-listing-card {
  border-radius: 14px !important;
}

.tsh1-listing-grid .mp-card-media.tsr-listing-media {
  aspect-ratio: 16 / 11 !important;
}

.tsh1-listing-grid .mp-card-body.tsr-listing-body {
  min-height: 156px !important;
  padding: 13px !important;
}

.tsh1-listing-grid .mp-card h3 {
  margin-block: 8px 7px !important;
  font-size: 12px !important;
}

.tsh1-listing-grid .tsr-listing-footer,
.tsh1-listing-grid .evm-listing-card__footer {
  padding-top: 11px !important;
}

.tsh1-listing-grid .tsr-listing-footer strong,
.tsh1-listing-grid .evm-listing-card__footer strong {
  color: var(--tsh1-red) !important;
  font-size: 14px !important;
}

.tsh1-listing-grid .evm-listing-card__shop {
  display: grid !important;
  grid-template-columns: 32px minmax(0, 1fr) auto !important;
  align-items: center !important;
  gap: 8px !important;
  min-width: 0 !important;
  margin-top: 8px !important;
  padding: 6px 7px !important;
  overflow: hidden !important;
  border: 1px solid var(--tsh1-line) !important;
  border-radius: 9px !important;
  background: #fff !important;
  color: var(--tsh1-ink) !important;
  text-decoration: none !important;
}

.tsh1-listing-grid .evm-listing-card__shop > img,
.tsh1-listing-grid .evm-listing-card__shop-fallback {
  display: grid !important;
  width: 32px !important;
  height: 32px !important;
  max-width: 32px !important;
  max-height: 32px !important;
  place-items: center !important;
  padding: 2px !important;
  overflow: hidden !important;
  border: 1px solid var(--tsh1-line) !important;
  border-radius: 8px !important;
  background: var(--tsh1-canvas) !important;
  color: var(--tsh1-red) !important;
  font-size: 11px !important;
  font-weight: 800 !important;
  object-fit: contain !important;
}

.tsh1-listing-grid .evm-listing-card__shop-copy {
  display: flex !important;
  min-width: 0 !important;
  flex-direction: column !important;
  gap: 1px !important;
}

.tsh1-listing-grid .evm-listing-card__shop-copy small {
  color: var(--tsh1-muted) !important;
  font-size: 6px !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
  text-transform: uppercase !important;
}

.tsh1-listing-grid .evm-listing-card__shop-copy strong {
  overflow: hidden !important;
  color: var(--tsh1-ink) !important;
  font-size: 8px !important;
  font-weight: 750 !important;
  line-height: 1.2 !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
}

.tsh1-listing-grid .evm-listing-card__shop-arrow {
  color: var(--tsh1-muted) !important;
  font-size: 14px !important;
}

.tsh1-navigation {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  margin-block: 0 54px;
  padding: 22px 24px;
  border-radius: 16px;
  background: var(--tsh1-red);
  color: #fff;
}

.tsh1-navigation__icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 14px;
  background: rgba(255, 255, 255, .14);
}

.tsh1-navigation__icon svg {
  width: 27px;
}

.tsh1-navigation > div:nth-child(2) {
  min-width: 0;
}

.tsh1-navigation > div > span {
  color: rgba(255, 255, 255, .7);
  font-size: 8px;
  font-weight: 750;
  letter-spacing: .12em;
}

.tsh1-navigation h2 {
  margin: 3px 0;
  color: #fff;
  font-size: clamp(19px, 2vw, 28px);
  font-weight: 680;
  letter-spacing: -.04em;
}

.tsh1-navigation p {
  max-width: 720px;
  color: rgba(255, 255, 255, .73);
  font-size: 10px;
  line-height: 1.55;
}

.tsh1-navigation > a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  border-radius: 10px;
  background: #fff;
  color: var(--tsh1-ink);
  font-size: 10px;
  font-weight: 750;
  white-space: nowrap;
}

.tsh1-navigation > a span {
  color: var(--tsh1-red);
  font-size: 17px;
}

.tsh1-utilities {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

.tsh1-utility {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  min-height: 154px;
  padding: 23px;
  border: 1px solid var(--tsh1-line);
  border-radius: 16px;
  background: var(--tsh1-canvas);
  transition: border-color .2s ease, transform .2s ease;
}

.tsh1-utility:hover {
  border-color: #c9ced5;
  transform: translateY(-2px);
}

.tsh1-utility__badge {
  color: var(--tsh1-red);
  font-size: 34px;
  font-weight: 720;
  letter-spacing: -.06em;
}

.tsh1-utility__icon {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border-radius: 13px;
  background: #fff;
  color: var(--tsh1-red);
}

.tsh1-utility__icon svg {
  width: 25px;
}

.tsh1-utility small,
.tsh1-cta > div > span {
  color: var(--tsh1-red);
  font-size: 8px;
  font-weight: 750;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.tsh1-utility h2 {
  margin: 5px 0 3px;
  color: var(--tsh1-ink);
  font-size: 20px;
  font-weight: 680;
  letter-spacing: -.04em;
}

.tsh1-utility p {
  color: var(--tsh1-muted);
  font-size: 9px;
}

.tsh1-utility > b {
  color: #6f747d;
  font-size: 20px;
  font-weight: 400;
}

.tsh1-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  margin-bottom: 68px;
  padding: 30px 32px;
  border-radius: 16px;
  background: #eef0f2;
}

.tsh1-cta h2 {
  margin: 7px 0 4px;
  color: var(--tsh1-ink);
  font-size: clamp(25px, 3vw, 38px);
  font-weight: 680;
  letter-spacing: -.05em;
}

.tsh1-cta p {
  color: var(--tsh1-muted);
  font-size: 10px;
}

.tsh1-button--dark {
  min-height: 47px;
  padding-inline: 21px;
  background: var(--tsh1-ink);
  color: #fff !important;
}

/* Active homepage advertisements remain intentionally small and native. */
body[data-module="home"] .ts-ad-slot-v2 {
  width: min(calc(100% - 40px), var(--tsh1-max));
  max-height: 92px;
  margin: 0 auto 54px;
  overflow: hidden;
  border-radius: 13px;
}

body[data-module="home"] .ts-ad-slot-v2[data-placement="HOME_AFTER_HERO"] {
  margin-top: -24px;
}

body[data-module="home"] .ts-ad-shell-v2 {
  height: 92px;
  border-radius: 13px;
  box-shadow: none;
}

body[data-module="home"] .ts-ad-picture-v2,
body[data-module="home"] .ts-ad-link-v2 {
  height: 100%;
}

body[data-module="home"] .ts-ad-picture-v2 img {
  width: 100%;
  height: 92px;
  max-height: 92px;
  object-fit: cover;
}

body[data-module="home"] .ts-ad-html-frame-v2 {
  height: 92px !important;
  min-height: 92px;
  max-height: 92px;
}

body[data-module="home"] .ts-ad-label-v2 {
  top: 7px;
  left: 7px;
  padding: 3px 7px;
  font-size: 7px;
}

/* The homepage footer follows the same restrained scale as the new layout. */
body[data-module="home"] .tsn-footer {
  border-top: 1px solid var(--tsh1-line);
  background: #f7f8f9 !important;
  color: var(--tsh1-ink) !important;
}

body[data-module="home"] .tsn-footer__inner {
  grid-template-columns: minmax(280px, .9fr) minmax(260px, .65fr) minmax(390px, 1fr);
  gap: clamp(28px, 4vw, 58px);
  width: min(calc(100% - 40px), var(--tsh1-max));
  padding: 48px 0 42px;
}

body[data-module="home"] .tsn-footer__brand {
  color: var(--tsh1-ink) !important;
}

body[data-module="home"] .tsn-footer__brand img {
  width: 39px;
  height: 39px;
}

body[data-module="home"] .tsn-footer__brand strong {
  color: var(--tsh1-ink);
  font-size: 13px;
}

body[data-module="home"] .tsn-footer__brand small {
  color: #8a9099;
}

body[data-module="home"] .tsn-footer__lead h2 {
  max-width: 440px;
  margin: 21px 0 10px;
  color: var(--tsh1-ink);
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 630;
  line-height: 1.08;
}

body[data-module="home"] .tsn-footer__lead > p {
  color: var(--tsh1-muted);
  font-size: 9px;
}

body[data-module="home"] .tsn-footer__contact {
  margin-top: 18px;
}

body[data-module="home"] .tsn-footer__contact a {
  color: #454a52 !important;
  font-size: 9px;
}

body[data-module="home"] .tsn-footer__route {
  min-height: 205px;
  padding: 20px;
  border-radius: 16px;
  background: var(--tsh1-red);
}

body[data-module="home"] .tsn-footer__route-icon {
  width: 43px;
  height: 43px;
  border-radius: 12px;
}

body[data-module="home"] .tsn-footer__route-icon svg {
  width: 22px;
}

body[data-module="home"] .tsn-footer__route strong {
  margin: 6px 0;
  font-size: 19px;
}

body[data-module="home"] .tsn-footer__route > b {
  margin-top: 12px;
  font-size: 19px;
}

body[data-module="home"] .tsn-footer__nav {
  gap: 20px;
}

body[data-module="home"] .tsn-footer__nav small {
  color: #9297a0;
}

body[data-module="home"] .tsn-footer__nav a {
  color: #555b64 !important;
  font-size: 9px;
}

body[data-module="home"] .tsn-footer__nav a:hover {
  color: var(--tsh1-ink) !important;
}

body[data-module="home"] .tsn-footer__bottom {
  width: min(calc(100% - 40px), var(--tsh1-max));
  padding: 18px 0;
  border-top-color: #dde1e5;
  color: #8a9099;
}

body[data-module="home"] .tsn-footer__bottom a {
  color: #60666f !important;
}

@media (max-width: 1180px) {
  body[data-module="home"] .tsn-nav a {
    padding-inline: 7px;
    font-size: 10px;
  }

  body[data-module="home"] .tsn-route-button > span:last-child {
    display: none;
  }

  body[data-module="home"] .tsn-route-button {
    padding: 4px;
    border: 0;
    background: transparent;
  }

  .tsh1-hero.tsn-home-hero {
    grid-template-columns: minmax(0, 1fr) minmax(360px, .82fr);
  }

  .tsh1-category-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .tsh1-category-card--chargers {
    grid-column: span 2;
  }

  body[data-module="home"] .tsn-footer__inner {
    grid-template-columns: 1fr 1fr;
  }

  body[data-module="home"] .tsn-footer__nav {
    grid-column: 1 / -1;
  }
}

@media (max-width: 980px) {
  body[data-module="home"] .site-header.tsn-header,
  body[data-module="home"] .site-header.tsn-header.is-scrolled {
    height: 64px !important;
  }

  .tsh1-hero,
  .tsh1-categories,
  .tsh1-listings,
  .tsh1-navigation,
  .tsh1-utilities,
  .tsh1-cta,
  body[data-module="home"] .ts-ad-slot-v2 {
    width: min(calc(100% - 28px), var(--tsh1-max));
  }

  .tsh1-hero.tsn-home-hero {
    grid-template-columns: minmax(0, 1fr) 340px;
    min-height: 410px;
  }

  .tsh1-hero__copy {
    padding-block: 44px;
    padding-right: 24px;
  }

  .tsh1-hero h1 {
    font-size: clamp(38px, 5.5vw, 50px);
  }

  .tsh1-listing-grid.mp-grid.tsn-listing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 760px) {
  .tsh1-hero.tsn-home-hero {
    display: flex;
    min-height: 0;
    flex-direction: column;
    border-bottom: 0;
  }

  .tsh1-hero__copy {
    order: 2;
    padding: 22px 0 28px;
  }

  .tsh1-hero__media {
    order: 1;
    min-height: 190px;
    height: 190px;
    margin-inline: -14px;
    border-bottom: 1px solid var(--tsh1-line);
  }

  .tsh1-hero__media img {
    width: 126%;
    max-width: none;
    max-height: 210px;
    transform: translateX(2%);
  }

  .tsh1-hero__media .tsh1-home-slide__image {
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: cover;
    transform: none;
  }

  .tsh1-hero__media .tsh1-home-slide.is-fallback .tsh1-home-slide__image {
    width: 126%;
    height: auto;
    max-height: 210px;
    object-fit: contain;
    transform: translate(-48%, -50%);
  }

  .tsh1-home-slide__content {
    right: 14px;
    bottom: 13px;
    left: 14px;
    max-width: calc(100% - 28px);
    padding: 12px 14px;
    border-radius: 12px;
  }

  .tsh1-home-slide__content h2 { font-size: 17px; }
  .tsh1-home-slide__content p { display: none; }
  .tsh1-home-slide__content a { min-height: 32px; margin-top: 8px; padding: 6px 10px; font-size: 9px; }
  .tsh1-home-slider__arrow { width: 32px; height: 32px; font-size: 21px; }
  .tsh1-home-slider__arrow.is-prev { left: 8px; }
  .tsh1-home-slider__arrow.is-next { right: 8px; }
  .tsh1-home-slider__dots { top: 10px; right: 12px; }

  .tsh1-home-popup { padding: 12px; }
  .tsh1-home-popup__panel { border-radius: 18px; }
  .tsh1-home-popup__image { max-height: 270px; }
  .tsh1-home-popup__close { top: 9px; right: 9px; width: 34px; height: 34px; }

  .tsh1-hero h1 {
    max-width: 580px;
    margin-block: 10px 8px;
    font-size: clamp(32px, 8.8vw, 42px);
    line-height: 1.02;
  }

  .tsh1-hero__copy > p {
    font-size: 12px;
  }

  .tsh1-search.tsn-hero-search {
    min-height: 50px;
    margin-top: 15px;
    padding-left: 13px;
    border-radius: 12px;
  }

  .tsh1-search input {
    height: 38px;
    font-size: 11px;
  }

  .tsh1-search button {
    min-width: 75px;
    min-height: 38px;
    padding-inline: 12px;
  }

  .tsh1-hero__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .tsh1-button {
    min-height: 40px;
    padding-inline: 10px;
    font-size: 9px;
  }

  .tsh1-hero__facts {
    justify-content: space-between;
    gap: 12px;
    margin-top: 18px;
  }

  .tsh1-hero__facts strong {
    font-size: 16px;
  }

  .tsh1-categories,
  .tsh1-listings {
    padding-block: 42px;
  }

  .tsh1-section-heading {
    align-items: center;
  }

  .tsh1-section-heading h2 {
    font-size: 27px;
  }

  .tsh1-section-heading > a {
    font-size: 9px;
  }

  .tsh1-category-grid {
    grid-template-columns: 1fr 1fr;
    gap: 9px;
  }

  .tsh1-category-card {
    grid-template-columns: 42px minmax(0, 1fr);
    min-height: 78px;
    gap: 9px;
    padding: 10px;
  }

  .tsh1-category-card__icon {
    width: 42px;
    height: 42px;
  }

  .tsh1-category-card__icon svg {
    width: 21px;
  }

  .tsh1-category-card > b {
    display: none;
  }

  .tsh1-category-card--chargers {
    grid-column: 1 / -1;
  }

  .tsh1-listing-grid.mp-grid.tsn-listing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 9px !important;
  }

  .tsh1-listing-grid .mp-card-body.tsr-listing-body {
    min-height: 144px !important;
    padding: 10px !important;
  }

  .tsh1-listing-grid .evm-listing-card__shop {
    width: fit-content !important;
    max-width: 100% !important;
    grid-template-columns: 24px minmax(0, max-content) !important;
    justify-self: start !important;
    align-self: flex-start !important;
    gap: 5px !important;
    padding: 4px 6px 4px 4px !important;
    border-radius: 8px !important;
  }

  .tsh1-listing-grid .evm-listing-card__shop > img,
  .tsh1-listing-grid .evm-listing-card__shop-fallback {
    width: 24px !important;
    height: 24px !important;
    max-width: 24px !important;
    max-height: 24px !important;
    border-radius: 6px !important;
  }

  .tsh1-listing-grid .evm-listing-card__shop-copy small {
    display: none !important;
  }

  .tsh1-listing-grid .evm-listing-card__shop-copy strong {
    max-width: clamp(58px, 22vw, 108px) !important;
    font-size: 7px !important;
  }

  .tsh1-listing-grid .evm-listing-card__shop-arrow {
    display: none !important;
  }

  .tsh1-navigation {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 13px;
    margin-bottom: 42px;
    padding: 17px;
  }

  .tsh1-navigation__icon {
    width: 46px;
    height: 46px;
  }

  .tsh1-navigation h2 {
    font-size: 19px;
  }

  .tsh1-navigation p {
    display: none;
  }

  .tsh1-navigation > a {
    grid-column: 1 / -1;
    width: 100%;
    justify-content: space-between;
  }

  .tsh1-utilities {
    grid-template-columns: 1fr;
  }

  .tsh1-utility {
    min-height: 132px;
    padding: 18px;
  }

  .tsh1-cta {
    grid-template-columns: 1fr;
    margin-bottom: 48px;
    padding: 23px;
  }

  .tsh1-cta .tsh1-button {
    width: 100%;
  }

  body[data-module="home"] .ts-ad-slot-v2 {
    max-height: 78px;
    margin-bottom: 42px;
  }

  body[data-module="home"] .ts-ad-slot-v2[data-placement="HOME_AFTER_HERO"] {
    margin-top: -12px;
  }

  body[data-module="home"] .ts-ad-shell-v2,
  body[data-module="home"] .ts-ad-picture-v2 img,
  body[data-module="home"] .ts-ad-html-frame-v2 {
    height: 78px !important;
    min-height: 78px;
    max-height: 78px;
  }

  body[data-module="home"] .tsn-footer__inner {
    grid-template-columns: 1fr;
    width: calc(100% - 28px);
    gap: 26px;
    padding: 38px 0 28px;
  }

  body[data-module="home"] .tsn-footer__lead h2 {
    margin-top: 16px;
    font-size: 24px;
  }

  body[data-module="home"] .tsn-footer__route {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 13px;
    min-height: 0;
    padding: 16px;
  }

  body[data-module="home"] .tsn-footer__route > div {
    margin-top: 0;
  }

  body[data-module="home"] .tsn-footer__route > b {
    margin-top: 0;
  }

  body[data-module="home"] .tsn-footer__nav {
    grid-column: auto;
    grid-template-columns: 1fr 1fr;
  }

  body[data-module="home"] .tsn-footer__bottom {
    width: calc(100% - 28px);
  }
}

@media (max-width: 430px) {
  .tsh1-section-heading {
    align-items: start;
    flex-direction: column;
    gap: 8px;
  }

  .tsh1-section-heading > a {
    align-self: flex-end;
    margin-top: 0;
  }

  .tsh1-listing-grid.mp-grid.tsn-listing-grid {
    grid-template-columns: 1fr !important;
  }

  .tsh1-listing-grid .mp-card.tsr-listing-card {
    display: grid !important;
    grid-template-columns: 118px minmax(0, 1fr) !important;
  }

  .tsh1-listing-grid .mp-card-media.tsr-listing-media {
    height: 100% !important;
    min-height: 138px !important;
    aspect-ratio: auto !important;
  }

  .tsh1-listing-grid .mp-card-body.tsr-listing-body {
    min-height: 138px !important;
  }

  .tsh1-listing-grid .tsr-listing-type,
  .tsh1-listing-grid .evm-listing-card__type,
  .tsh1-listing-grid .evm-listing-card__seller,
  .tsh1-listing-grid .tsr-listing-facts {
    display: none !important;
  }

  .tsh1-category-card__copy strong {
    font-size: 10px;
  }

  .tsh1-utility {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .tsh1-utility > b {
    display: none;
  }
}

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