:root {
  --swc-black: #000000;
  --swc-gold: #E5A934;
  --swc-gold-hover: #D49A2A;
  --swc-gray: #F4F4F4;
  --swc-gray-2: #E8E8E8;
  --swc-text: #000000;
  --swc-muted: #666666;
  --swc-white: #FFFFFF;
  --swc-cream: #FAF6EE;
  --swc-border: #E0E0E0;
  --swc-green: #1F8A4C;
  --swc-wrap: 1200px;
  --swc-radius: 12px;
  --swc-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}

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

html { scroll-behavior: smooth; }

body.swc,
body {
  margin: 0;
  color: var(--swc-text);
  background: var(--swc-white);
  font-family: Inter, system-ui, -apple-system, Segoe UI, sans-serif;
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
button { cursor: pointer; }

.swc-wrap {
  width: min(calc(100% - 40px), var(--swc-wrap));
  margin-inline: auto;
}

.screen-reader-text {
  position: absolute !important;
  width: 1px; height: 1px;
  overflow: hidden; clip: rect(0,0,0,0);
}

/* Buttons */
.swc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 700;
  letter-spacing: 0.04em;
  font-size: 13px;
  text-transform: uppercase;
  transition: 0.18s ease;
  white-space: nowrap;
}
.swc-btn--gold { background: var(--swc-gold); color: var(--swc-black); }
.swc-btn--gold:hover { background: var(--swc-gold-hover); transform: translateY(-1px); }
.swc-btn--black { background: var(--swc-black); color: #fff; }
.swc-btn--black:hover { background: #000; transform: translateY(-1px); }
.swc-btn--ghost { background: transparent; color: #fff; border-color: #fff; }
.swc-btn--ghost:hover { background: #fff; color: var(--swc-black); }
.swc-btn--block { width: 100%; }
.swc-link { font-weight: 600; color: var(--swc-black); }
.swc-link:hover { color: var(--swc-gold); }

/* Header */
.swc-topbar {
  background: #000;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.swc-topbar__row {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.swc-topbar a { color: #fff; }
.swc-topbar a:hover { color: var(--swc-gold); }
.swc-topbar__left, .swc-topbar__right {
  display: flex; align-items: center; gap: 22px;
}
.swc-topbar .swc-util-menu {
  display: flex; align-items: center; gap: 22px; list-style: none; margin: 0; padding: 0;
}
.swc-logo .custom-logo { height: 58px; width: auto; max-width: 220px; object-fit: contain; display: block; }
.swc-footer .swc-logo .custom-logo { height: 54px; max-width: 210px; }

.swc-header {
  background: #fff;
  border-bottom: 1px solid var(--swc-border);
  position: sticky; top: 0; z-index: 50;
}
.swc-header__main {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 92px;
}
.swc-logo {
  display: inline-flex; align-items: center; color: var(--swc-gold); white-space: nowrap;
}
.swc-logo__word {
  display: flex; flex-direction: column; line-height: 0.92; font-weight: 800;
  letter-spacing: -0.04em; text-transform: lowercase;
}
.swc-logo__top { font-size: 22px; }
.swc-logo__bot {
  display: inline-flex; align-items: center; gap: 1px; font-size: 26px; margin-top: 1px;
}
.swc-logo__tire { width: 26px; height: 26px; display: block; flex: 0 0 26px; margin-right: 1px; }
.swc-footer .swc-logo { color: var(--swc-gold); margin-bottom: 14px; }
.swc-search {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 640px;
  height: 54px;
  justify-self: center;
  background: #fff;
  border: 1px solid #E5E5E5;
  border-radius: 999px;
  padding: 4px 4px 4px 4px;
  box-shadow: 0 2px 10px rgba(0,0,0,.04);
}
.swc-search__cat { position: relative; flex: 0 0 auto; height: 100%; }
.swc-search__cat-btn {
  display: flex; align-items: center; gap: 8px; height: 100%;
  padding: 0 16px 0 20px; border: 0; background: transparent;
  font-size: 12px; font-weight: 800; letter-spacing: 0.06em;
  text-transform: uppercase; color: #2A2A2A; white-space: nowrap;
}
.swc-search__cat-btn svg { color: #9A9A9A; flex: 0 0 auto; }
.swc-search__cat::after {
  content: ""; position: absolute; right: 0; top: 14px; bottom: 14px; width: 1px; background: #E4E4E4;
}
.swc-search__menu {
  position: absolute; left: 0; top: calc(100% + 8px); z-index: 80;
  min-width: 280px; margin: 0; padding: 8px 0; list-style: none;
  background: #fff; border: 1px solid #EDEDED; border-radius: 14px;
  box-shadow: 0 16px 40px rgba(0,0,0,.12);
}
.swc-search__menu[hidden] { display: none; }
.swc-search__menu button {
  display: block; width: 100%; text-align: left; border: 0; background: none;
  padding: 10px 18px; font-size: 14px; font-weight: 700; color: #1A1A1A;
}
.swc-search__menu button:hover,
.swc-search__menu button.is-active { background: #FAFAFA; color: var(--swc-gold); }
.swc-search input[type="search"] {
  flex: 1; min-width: 0; height: 100%; border: 0; outline: none; background: transparent;
  padding: 0 12px 0 16px; font-size: 13px; font-weight: 700; letter-spacing: 0.04em;
  text-transform: uppercase; color: #111;
}
.swc-search input[type="search"]::placeholder { color: #B5B5B5; font-weight: 700; }
.swc-search__go {
  width: 44px; height: 44px; border: 0; border-radius: 50%;
  background: #111; color: #fff; display: grid; place-items: center; flex: 0 0 44px;
}
.swc-search__go:hover { background: #000; }
.swc-utils { display: flex; align-items: center; gap: 22px; }
.swc-util {
  display: inline-flex; flex-direction: row; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 600; color: #000; min-width: 0; line-height: 1;
}
.swc-util--icon { gap: 0; }
.swc-util__icon {
  position: relative; display: grid; place-items: center;
  width: 24px; height: 24px; color: #000; flex: 0 0 24px;
}
.swc-util__icon svg { width: 22px; height: 22px; display: block; }
.swc-util__label { font-size: 14px; font-weight: 500; color: #000; letter-spacing: -0.01em; }
.swc-util__badge,
.swc-cart-count {
  position: absolute; top: -6px; right: -8px; min-width: 16px; height: 16px; padding: 0 4px;
  background: #FBB03B; color: #000; border-radius: 99px;
  font-size: 10px; font-weight: 700; display: grid; place-items: center; line-height: 1;
}
header.swc-header nav.swc-nav {
  display: block;
  width: 100%;
  height: auto;
  border: 0;
  border-top: 1px solid var(--swc-border);
  border-radius: 0;
  background: #fff;
  font-size: 13px;
}
header.swc-header .swc-nav__row {
  display: flex; align-items: center; min-height: 50px;
  font-weight: 800; letter-spacing: 0.06em;
}
header.swc-header nav.swc-nav ul.swc-menu {
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  float: none;
}
header.swc-header nav.swc-nav ul.swc-menu > li {
  display: block !important;
  float: none !important;
  width: auto !important;
  margin: 0;
  padding: 0;
}
header.swc-header nav.swc-nav a {
  padding: 14px 0 12px;
  border-bottom: 3px solid transparent;
  margin-bottom: -1px;
  display: inline-block;
  text-transform: uppercase;
  color: #111;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.06em;
}
header.swc-header nav.swc-nav a:hover,
header.swc-header nav.swc-nav .current-menu-item > a,
header.swc-header nav.swc-nav .current-product_cat-ancestor > a,
.home header.swc-header nav.swc-nav ul.swc-menu > li:first-child > a {
  color: var(--swc-gold);
  border-color: var(--swc-gold);
}
.swc-menu-btn {
  display: none; width: 42px; height: 42px; border: 1px solid var(--swc-gray-2);
  border-radius: 8px; background: #fff;
}
.swc-menu-btn span { display: block; width: 18px; height: 2px; background: #111; margin: 4px auto; }

/* Hero */
.swc-hero { padding: 52px 0 40px; background: var(--swc-gray); width: 100%; }
.elementor-widget-shortcode,
.elementor-shortcode { margin: 0 !important; }
.swc-hero__grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center;
}
.swc-pill {
  display: inline-flex; align-items: center; height: 28px; padding: 0 12px;
  background: var(--swc-gold); color: #000; border-radius: 6px;
  font-size: 11px; font-weight: 800; letter-spacing: 0.06em;
}
.swc-hero h1 {
  margin: 16px 0 12px; font-size: clamp(34px, 4vw, 52px); line-height: 1.08;
  letter-spacing: -0.04em; font-weight: 800;
}
.swc-hero p { margin: 0 0 24px; color: var(--swc-muted); max-width: 540px; font-size: 16px; }
.swc-finder {
  display: grid; grid-template-columns: 1.35fr 0.85fr 0.85fr 0.75fr auto; gap: 8px; align-items: center;
  background: #fff; border-radius: 14px; padding: 10px; box-shadow: var(--swc-shadow);
}
.swc-finder__search, .swc-finder__field { min-width: 0; display: block; }
.swc-finder input[type="search"],
.swc-finder select {
  width: 100%; height: 48px; border: 1px solid var(--swc-border); border-radius: 8px;
  background: #fff; padding: 0 12px; color: var(--swc-black);
}
.swc-finder input[type="search"] { background: var(--swc-gray); }
.swc-finder__submit { min-width: 112px; height: 48px; border-radius: 8px; }
.swc-hero__visual { position: relative; }
.swc-hero__visual img {
  width: 100%; border-radius: 16px; object-fit: cover; aspect-ratio: 4/3;
  background: #ddd;
}
.swc-price-tag {
  position: absolute; left: 16px; bottom: 16px; background: #fff;
  border-radius: 8px; padding: 10px 14px; box-shadow: 0 8px 24px rgba(0,0,0,.12);
}
.swc-price-tag span { display: block; font-size: 11px; font-weight: 700; letter-spacing: 0.08em; color: var(--swc-muted); }
.swc-price-tag strong { font-size: 22px; letter-spacing: -0.03em; }

/* Trust */
.swc-trust {
  background: #fff;
  border-top: 1px solid #E8E8E8;
  border-bottom: 1px solid #E8E8E8;
}
.swc-trust__row {
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  min-height: 100px; padding: 18px 0; flex-wrap: nowrap;
}
.swc-trust__item { display: flex; align-items: center; gap: 12px; min-width: 0; }
.swc-trust__icon {
  width: 46px; height: 46px; border-radius: 50%; flex: 0 0 46px;
  background: #EDEDED; color: #E7AE33; display: grid; place-items: center;
}
.swc-trust__icon svg { width: 22px; height: 22px; display: block; }
.swc-trust__copy strong {
  display: block; font-size: 13.5px; font-weight: 700; color: #1A1A1A; line-height: 1.25;
}
.swc-trust__copy span {
  display: block; margin-top: 2px; font-size: 12.5px; font-weight: 400;
  color: #858585; line-height: 1.35;
}
.swc-trust__item--rating {
  flex-direction: column; align-items: flex-start; gap: 5px;
}
.swc-trust__item--rating .swc-stars { gap: 2px; }
.swc-trust__item--rating .swc-stars svg { width: 15px; height: 15px; }
.swc-stars { display: inline-flex; gap: 2px; vertical-align: middle; }

/* Sections */
.swc-section { padding: 64px 0; }
.swc-section--tight { padding-top: 12px; }
.swc-section__head {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; margin-bottom: 22px;
}
.swc-section__head h2 {
  margin: 0; font-size: clamp(26px, 3vw, 34px); letter-spacing: -0.03em; font-weight: 800;
}

.swc-kits { background: #F8F8F8; }
.swc-kits__head {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  margin-bottom: 28px;
}
.swc-kits__titles h2 {
  margin: 0; font-size: clamp(28px, 3.2vw, 36px); letter-spacing: -0.03em; font-weight: 800; color: #000;
}
.swc-kits__titles p {
  margin: 8px 0 0; font-size: 15px; font-weight: 400; color: #757575; line-height: 1.4;
}
.swc-kits__all {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; color: #000;
  white-space: nowrap; flex: 0 0 auto;
}
.swc-kits__all:hover { color: var(--swc-gold); }
.swc-kits__all svg { display: block; }

.swc-tabs { display: flex; gap: 32px; border-bottom: 1px solid #E0E0E0; margin-bottom: 24px; overflow-x: auto; }
.swc-tabs button {
  background: none; border: 0; padding: 0 0 14px; font-weight: 800; font-size: 13px;
  letter-spacing: 0.06em; color: #757575; border-bottom: 2px solid transparent; margin-bottom: -1px;
  white-space: nowrap;
}
.swc-tabs button.is-active { color: #000; border-color: var(--swc-gold); }
.swc-tab-panel { display: none; }
.swc-tab-panel.is-active { display: block; }

.swc-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.swc-card {
  border-radius: 12px; background: #fff; overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: 0 1px 4px rgba(0,0,0,.06), 0 8px 24px rgba(0,0,0,.04);
  transition: 0.2s ease;
}
.swc-card:hover { box-shadow: 0 6px 22px rgba(0,0,0,.10); }
.swc-card__media {
  position: relative; background: #F3F4F6; aspect-ratio: 1.05;
  display: grid; place-items: center; padding: 18px 16px 8px; overflow: hidden;
}
.swc-card__media img { width: 100%; height: 100%; object-fit: contain; display: block; }
.swc-badge {
  position: absolute; left: 12px; top: 12px; background: #000; color: #fff;
  font-size: 10px; font-weight: 800; letter-spacing: 0.06em; padding: 5px 9px; border-radius: 6px;
}
.swc-card__body { padding: 10px 16px 16px; display: flex; flex-direction: column; flex: 1; }
.swc-card__vehicle {
  font-size: 11px; font-weight: 700; letter-spacing: 0.06em; color: #9A9A9A;
  text-transform: uppercase; margin-bottom: 6px;
}
.swc-card__title { margin: 0 0 4px; font-size: 16px; font-weight: 800; line-height: 1.3; color: #111; }
.swc-card__title a { color: inherit; }
.swc-card__specs { font-size: 12.5px; color: #8A8A8A; line-height: 1.35; margin-bottom: 8px; }
.swc-card__rating { display: flex; align-items: center; gap: 6px; color: #9A9A9A; font-size: 12px; margin-bottom: 10px; }
.swc-card__rating .swc-stars svg { width: 13px; height: 13px; }
.swc-card__fits {
  display: inline-flex; align-items: center; gap: 8px; align-self: flex-start;
  background: #F8EFD9; color: #111; font-size: 12.5px; font-weight: 700;
  padding: 7px 12px 7px 8px; border-radius: 999px; margin-bottom: 10px; line-height: 1.2;
}
.swc-card__fits-icon {
  width: 18px; height: 18px; border-radius: 50%; background: #E7AE33;
  display: grid; place-items: center; flex: 0 0 18px;
}
.swc-card__ship {
  display: flex; align-items: flex-start; gap: 8px; color: #8A8A8A;
  font-size: 12.5px; line-height: 1.35; margin-bottom: 8px;
}
.swc-card__ship svg { flex: 0 0 16px; margin-top: 1px; }
.swc-card__stock {
  display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; color: #111;
  margin-bottom: 12px;
}
.swc-card__dot { width: 8px; height: 8px; border-radius: 50%; background: #22A45A; flex: 0 0 8px; }
.swc-card__stock--low .swc-card__dot { background: #E7AE33; }
.swc-card__stock--out .swc-card__dot { background: #D14343; }
.swc-card__divider { height: 1px; background: #EDEDED; margin: 0 0 12px; }
.swc-card__price-row {
  display: flex; align-items: baseline; gap: 8px; margin-bottom: 12px; margin-top: auto;
}
.swc-card__price { font-size: 22px; font-weight: 800; letter-spacing: -0.03em; color: #111; line-height: 1; }
.swc-card__price-row del { color: #9A9A9A; font-size: 13px; font-weight: 600; }
.swc-card__monthly { margin-left: auto; font-size: 12px; font-weight: 500; color: #9A9A9A; }
.swc-card .swc-btn { border-radius: 6px; min-height: 44px; }

/* Categories */
.swc-cats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.swc-cat {
  display: flex; flex-direction: column; background: #fff; border: 1px solid #EDEDED;
  border-radius: 14px; overflow: hidden; box-shadow: 0 1px 3px rgba(0,0,0,.04); transition: 0.2s ease;
}
.swc-cat:hover { box-shadow: 0 8px 24px rgba(0,0,0,.08); }
.swc-cat__media {
  position: relative; background: #F0F0F0; aspect-ratio: 16 / 11;
  display: grid; place-items: center; padding: 28px 20px 12px;
}
.swc-cat__media img { width: 100%; height: 100%; object-fit: contain; display: block; }
.swc-cat__count {
  position: absolute; left: 14px; top: 14px; background: #fff; color: #000;
  font-size: 10px; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 6px 10px; border-radius: 8px; box-shadow: 0 1px 3px rgba(0,0,0,.06);
}
.swc-cat__body {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 18px 20px 20px;
}
.swc-cat h3 { margin: 0 0 4px; font-size: 18px; font-weight: 800; letter-spacing: -0.02em; color: #000; }
.swc-cat p { margin: 0; font-size: 14px; font-weight: 400; color: #666; }
.swc-cat__arrow {
  width: 36px; height: 36px; border-radius: 50%; background: #F0F0F0; color: #E7AE33;
  display: grid; place-items: center; flex: 0 0 36px;
}

/* Vehicles / brands */
.swc-vehicles-section { background: #F8F8F8; }
.swc-vehicles__head { display: block; margin-bottom: 24px; }
.swc-vehicles__head h2 { margin: 0; }
.swc-vehicles__head p {
  margin: 8px 0 0; font-size: 15px; font-weight: 400; color: #666;
}
.swc-vehicles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.swc-vehicle {
  display: flex; align-items: center; gap: 14px;
  background: #fff; border: 1px solid #EFEFEF; border-radius: 12px;
  min-height: 88px; padding: 18px 20px;
  box-shadow: 0 1px 3px rgba(0,0,0,.04); transition: 0.18s ease;
}
.swc-vehicle:hover { box-shadow: 0 8px 22px rgba(0,0,0,.08); }
.swc-vehicle__icon {
  width: 44px; height: 44px; border-radius: 50%; background: #F0F0F0; color: #E7AE33;
  display: grid; place-items: center; flex: 0 0 44px;
}
.swc-vehicle__copy { flex: 1; min-width: 0; }
.swc-vehicle__name { display: block; font-size: 16px; font-weight: 800; color: #000; line-height: 1.25; }
.swc-vehicle__meta { display: block; margin-top: 3px; font-size: 13px; font-weight: 400; color: #777; }
.swc-vehicle__go { color: #888; display: grid; place-items: center; flex: 0 0 auto; }
.swc-brands { background: #fff; }
.swc-brands__row {
  display: grid; grid-template-columns: repeat(8, minmax(0, 1fr)); gap: 12px;
}
.swc-brand {
  display: flex; align-items: center; justify-content: center;
  min-height: 56px; padding: 12px 10px;
  background: #fff; border: 1px solid #E6E6E6; border-radius: 999px;
  color: #000; font-size: 12.5px; font-weight: 800; letter-spacing: 0.05em;
  text-transform: uppercase; text-align: center; line-height: 1.15; transition: 0.18s ease;
}
.swc-brand:hover { border-color: #D0D0D0; box-shadow: 0 4px 14px rgba(0,0,0,.06); color: #000; }

/* Why */
.swc-why { background: var(--swc-cream); }
.swc-why__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.swc-why__card {
  background: #fff; border-radius: 14px; padding: 22px; border: 1px solid #F0E8D8;
}
.swc-why__icon { margin-bottom: 12px; }
.swc-why__card h3 { margin: 0 0 8px; font-size: 18px; letter-spacing: -0.02em; }
.swc-why__card p { margin: 0; color: var(--swc-muted); }

/* Need */
.swc-need { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 40px; align-items: center; }
.swc-need__copy h2 { margin: 0 0 12px; font-size: clamp(28px, 3vw, 40px); letter-spacing: -0.03em; }
.swc-need__copy p { color: var(--swc-muted); margin: 0 0 22px; max-width: 420px; }
.swc-need__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.swc-need__grid article { background: var(--swc-gray); border-radius: 12px; padding: 18px 20px; }
.swc-need__grid h3 { margin: 0 0 6px; font-size: 16px; }
.swc-need__grid p { margin: 0; color: var(--swc-muted); font-size: 13px; }

/* Reviews */
.swc-reviews__track {
  display: grid; grid-auto-flow: column; grid-auto-columns: calc((100% - 36px) / 3);
  gap: 18px; overflow: hidden;
}
.swc-review {
  border: 1px solid var(--swc-gray-2); border-radius: 14px; padding: 20px; background: #fff; min-width: 0;
}
.swc-review__top { display: flex; gap: 12px; align-items: center; margin-bottom: 10px; }
.swc-review__avatar {
  width: 42px; height: 42px; border-radius: 50%; background: var(--swc-gold); color: var(--swc-black);
  display: grid; place-items: center; font-weight: 800;
}
.swc-review__top span { display: block; color: var(--swc-muted); font-size: 12px; }
.swc-review p { color: #333; margin: 10px 0 14px; }
.swc-verified { display: flex; align-items: center; gap: 6px; color: var(--swc-green); font-weight: 700; font-size: 12px; }
.swc-slider-nav { display: flex; gap: 8px; }
.swc-slider-btn {
  width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--swc-gray-2); background: #fff;
  font-size: 22px; line-height: 1;
}
.swc-slider-btn:hover { border-color: #ccc; }
.swc-dots { display: flex; justify-content: center; gap: 8px; margin-top: 18px; }
.swc-dots button { width: 8px; height: 8px; border-radius: 50%; border: 0; background: #D8D8D8; padding: 0; }
.swc-dots button.is-active { background: var(--swc-gold); width: 22px; border-radius: 99px; }

/* CTA + newsletter */
.swc-cta { background: #121212; color: #fff; padding: 48px 0; }
.swc-cta__row { display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.swc-cta__copy { max-width: 560px; }
.swc-cta h2 { margin: 0; font-size: clamp(22px, 3vw, 30px); font-weight: 800; letter-spacing: -0.03em; color: #fff; }
.swc-cta p { margin: 10px 0 0; font-size: 15px; font-weight: 400; color: #A0A0A0; line-height: 1.5; }
.swc-cta__actions { display: flex; gap: 10px; flex-wrap: wrap; flex: 0 0 auto; }
.swc-cta .swc-btn { border-radius: 8px; min-height: 48px; padding: 0 18px; font-size: 12.5px; }
.swc-cta .swc-btn--gold { background: #F3AD2A; color: #111; }
.swc-cta .swc-btn--gold:hover { background: #E09B1C; color: #111; }
.swc-cta .swc-btn--ghost { border-color: #4A4A4A; color: #fff; }
.swc-cta .swc-btn--ghost:hover { background: #fff; color: #111; border-color: #fff; }
.swc-cta .swc-btn svg { flex: 0 0 auto; }
.swc-news { background: #111113; color: #fff; padding: 18px 0; border-top: 1px solid #2A2A2C; }
.swc-news__row { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.swc-news p { margin: 0; font-weight: 600; }
.swc-news__form { display: flex; gap: 8px; width: min(100%, 420px); }
.swc-news__form input {
  flex: 1; height: 46px; border-radius: 8px; border: 1px solid #333; background: #1A1A1B; color: #fff; padding: 0 14px;
}

/* Footer */
.swc-footer { background: #121212; color: #B0B0B0; padding: 56px 0 0; }
.swc-footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; }
.swc-footer .swc-logo { color: var(--swc-gold); margin-bottom: 16px; }
.swc-footer__brand p { color: #C8C8C8; max-width: 340px; margin: 0; font-size: 14px; line-height: 1.55; }
.swc-footer h4 { color: #fff; margin: 4px 0 16px; font-size: 13px; font-weight: 800; letter-spacing: 0.08em; }
.swc-footer ul,
.swc-footer .swc-menu { margin: 0; padding: 0; list-style: none; display: grid; gap: 10px; }
.swc-footer .swc-menu a { color: #B0B0B0; font-size: 14px; }
.swc-footer a:hover { color: var(--swc-gold); }
.swc-footer__trust { margin: 18px 0 0; padding: 0; list-style: none; display: grid; gap: 12px; }
.swc-footer__trust li { display: flex; align-items: flex-start; gap: 10px; color: #B0B0B0; font-size: 13.5px; line-height: 1.4; }
.swc-footer__icon { color: var(--swc-gold); display: grid; place-items: center; flex: 0 0 18px; margin-top: 1px; }
.swc-legal {
  border-top: 1px solid #2A2A2C; padding: 16px 0; color: #8A8A8E; font-size: 12.5px;
}
.swc-legal__row { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.swc-legal__pay { display: inline-flex; align-items: center; gap: 8px; color: #A0A0A0; }
.swc-legal__pay svg { flex: 0 0 18px; }

/* Inner pages */
.swc-page { padding: 48px 0 72px; }
.swc-page h1 { margin: 0 0 18px; font-size: 36px; letter-spacing: -0.03em; }
.swc-page .entry-content { max-width: 760px; color: #333; }
.swc-page--commerce .entry-content { max-width: none; width: 100%; }
.swc-page .entry-content p { margin: 0 0 14px; }

/* Mobile nav */
.swc-mobile-nav {
  display: none !important; background: #fff; border-bottom: 1px solid var(--swc-gray-2); padding: 8px 20px 18px;
}
.swc-mobile-nav.is-open { display: grid !important; gap: 10px; }
.swc-mobile-nav .swc-menu { list-style: none; margin: 0; padding: 0; display: grid; }
.swc-mobile-nav a { font-weight: 800; letter-spacing: 0.06em; padding: 8px 0; border-bottom: 1px solid var(--swc-gray); display: block; text-transform: uppercase; }
.swc-mobile-nav a.is-active,
.swc-mobile-nav .current-menu-item > a { color: var(--swc-gold); }
.elementor-page .swc-page { padding: 0; }
.elementor-page .swc-page .swc-wrap,
.elementor-page .swc-page .entry-content { width: 100%; max-width: none; margin: 0; }

@media (max-width: 1100px) {
  .swc-finder { grid-template-columns: 1fr 1fr; }
  .swc-finder__submit { grid-column: 1 / -1; }
  .swc-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .swc-reviews__track { grid-auto-columns: calc((100% - 18px) / 2); }
  .swc-header__main { gap: 16px; }
  .swc-util__label { display: none; }
  .swc-utils { gap: 16px; }
  .swc-trust__row {
    display: grid; grid-template-columns: 1fr 1fr; justify-content: stretch;
    min-height: 0; gap: 18px 24px;
  }
  .swc-brands__row { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  .swc-hero__grid, .swc-need, .swc-footer__grid, .swc-why__grid, .swc-cats { grid-template-columns: 1fr; }
  .swc-legal__row { flex-direction: column; align-items: flex-start; }
  .swc-vehicles { grid-template-columns: 1fr 1fr; }
  .swc-cta__row, .swc-news__row { flex-direction: column; align-items: flex-start; }
  .swc-cta__actions { width: 100%; }
  .swc-cta .swc-btn { flex: 1 1 auto; }
  header.swc-header nav.swc-nav { display: none; }
  .swc-menu-btn { display: inline-block; }
  .swc-header__main { grid-template-columns: auto 1fr auto; min-height: 76px; }
  .swc-search { max-width: none; }
}

@media (max-width: 640px) {
  .swc-wrap { width: min(calc(100% - 28px), var(--swc-wrap)); }
  .swc-topbar__left { display: none; }
  .swc-grid-4, .swc-need__grid { grid-template-columns: 1fr; }
  .swc-reviews__track { grid-auto-columns: 100%; }
  .swc-logo__top { font-size: 16px; }
  .swc-logo__bot { font-size: 18px; }
  .swc-logo__tire { width: 18px; height: 18px; flex-basis: 18px; }
  .swc-section { padding: 40px 0; }
  .swc-utils { gap: 10px; }
  .swc-search__cat-btn span { max-width: 72px; overflow: hidden; text-overflow: ellipsis; }
  .swc-header__main { grid-template-columns: auto 1fr; }
  .swc-utils { grid-column: 1 / -1; justify-content: flex-end; }
  .swc-trust__row { grid-template-columns: 1fr; }
  .swc-kits__head { align-items: flex-start; }
  .swc-tabs { gap: 18px; }
  .swc-vehicles { grid-template-columns: 1fr; }
  .swc-brands__row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
