/* ---------- Hero ---------- */
.hero {
  background: var(--color-dark);
  background-image: linear-gradient(120deg, var(--color-dark) 55%, #2e2e2e 100%);
  position: relative;
  overflow: hidden;
  padding: 84px 0;
}
.hero::after {
  content: '';
  position: absolute;
  top: 0;
  right: -12%;
  width: 48%;
  height: 100%;
  background: linear-gradient(160deg, var(--color-brand-gold) 0%, #e2a30f 100%);
  transform: skewX(-12deg);
  opacity: 0.16;
  z-index: 0;
}
.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: center;
  gap: 32px;
  position: relative;
  z-index: 1;
}
.hero__eyebrow {
  display: inline-block;
  color: var(--color-brand-gold);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.hero__content h1 {
  color: var(--color-white);
  font-size: 62px;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0 0 20px;
}
.hero__accent { color: var(--color-brand-gold); }
.hero__lede {
  color: #d8d8d8;
  font-size: 17px;
  max-width: 480px;
  margin: 0 0 26px;
}
.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  background: rgba(253, 184, 25, 0.12);
  border: 1px solid rgba(253, 184, 25, 0.4);
  color: var(--color-brand-gold);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 30px;
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 22px;
}
.hero .btn {
  font-size: 15px;
  padding: 16px 30px !important;
}
.hero .btn--outline {
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.5);
}
.hero .btn--outline:hover {
  border-color: var(--color-white);
  color: var(--color-white);
}
.hero__address {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #b8b8b8;
  font-size: 13px;
  margin: 0;
}
.hero__address .dashicons { color: var(--color-brand-gold); font-size: 16px; width: 16px; height: 16px; }
.hero__visual {
  display: flex;
  justify-content: center;
  position: relative;
}
.hero__visual-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 340px;
  height: 340px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(253, 184, 25, 0.35) 0%, rgba(253, 184, 25, 0) 70%);
  z-index: 0;
}
.hero__visual img {
  width: 100%;
  max-width: 340px;
  height: auto;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 25px 35px rgba(0, 0, 0, 0.5));
}
@media (max-width: 900px) {
  .hero { padding: 48px 0; }
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__lede { margin-left: auto; margin-right: auto; }
  .hero__badges { justify-content: center; }
  .hero__cta { justify-content: center; }
  .hero__address { justify-content: center; }
  .hero__visual { order: -1; }
  .hero__visual-glow { width: 220px; height: 220px; }
  .hero__visual img { max-width: 220px; }
  .hero__content h1 { font-size: 38px; }
}

/* ---------- Dedicated tyre search section ---------- */
.tyre-search-section {
  background: var(--color-menu-bg);
  text-align: center;
}
.tyre-search-section .hero-search,
.tyre-search-section .hero-search__toggle,
.tyre-search-section .tyre-finder {
  margin-left: auto;
  margin-right: auto;
}

.tyre-search-card {
  background: #fff;
  border-radius: 20px;
  padding: 44px 32px;
  max-width: 780px;
  margin: 0 auto;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.07);
  border: 1px solid #ececec;
}

.hero-search {
  position: relative;
  display: flex;
  align-items: center;
  background: var(--color-menu-bg);
  border: 1px solid #e5e5e5;
  border-radius: 60px;
  padding: 6px 6px 6px 22px;
  max-width: 560px;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.hero-search:focus-within {
  border-color: var(--color-brand-gold);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08), 0 0 0 3px rgba(253, 184, 25, 0.35);
}
.hero-search__icon {
  color: #999;
  font-size: 20px;
  flex-shrink: 0;
}
.hero-search__input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 14px 12px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-dark);
  outline: none;
  min-width: 0;
  text-align: left;
}
.hero-search__submit {
  flex-shrink: 0;
  border-radius: 50px !important;
  padding: 12px 26px !important;
}
.hero-search__suggest {
  top: calc(100% + 12px);
  left: 0;
  right: 0;
  min-width: 0;
  text-align: left;
}
.hero-search__toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--color-menu-bg);
  border: 1px solid #e5e5e5;
  border-radius: 30px;
  padding: 8px 18px;
  color: #555;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.hero-search__toggle .dashicons { font-size: 16px; width: 16px; height: 16px; }
.hero-search__toggle:hover,
.hero-search__toggle[aria-expanded="true"] {
  background: rgba(253, 184, 25, 0.12);
  border-color: var(--color-brand-gold);
  color: var(--color-dark);
}

.tyre-finder__toggles {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.tyre-finder__toggles .hero-search__toggle { margin-top: 18px; }

.tyre-finder {
  background: var(--color-menu-bg);
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  padding: 22px;
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: flex-end;
  justify-content: center;
  max-width: 560px;
  text-align: left;
}
.tyre-finder[hidden] { display: none; }
.tyre-finder__field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.tyre-finder__field label {
  font-size: 12px;
  font-weight: 600;
  color: var(--color-dark);
  text-transform: uppercase;
}
.tyre-finder__field input {
  width: 90px;
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-family: var(--font-body);
}
.vehicle-finder .tyre-finder__field select {
  width: 160px;
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-family: var(--font-body);
  background: #fff;
  color: var(--color-dark);
}
.vehicle-finder .tyre-finder__field select:disabled { color: #999; background: #f6f7f8; }
.vehicle-finder__note {
  max-width: 560px;
  margin: 10px auto 0;
  font-size: 12px;
  color: #888;
}
@media (max-width: 640px) {
  .hero__content h1 { font-size: 30px; }
  .hero-search { width: 100%; max-width: none; border-radius: 16px; padding: 5px; flex-wrap: wrap; }
  .hero-search__icon { display: none; }
  .hero-search__input { width: 100%; padding: 12px 14px; }
  .hero-search__submit { width: 100%; margin: 0 5px 5px; }
  .tyre-finder { width: 100%; max-width: none; }
  .vehicle-finder .tyre-finder__field select { width: 100%; }
  .tyre-finder__field input { width: 100%; }
}

/* ---------- Vehicle type cards ---------- */
.vehicle-types__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.vehicle-type-card {
  display: block;
  background: var(--color-menu-bg);
  border-radius: 12px;
  padding: 32px 28px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.vehicle-type-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}
.vehicle-type-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
}
.vehicle-type-card p {
  font-size: 14px;
  margin-bottom: 16px;
}
.vehicle-type-card__count {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-brand-gold);
}
@media (max-width: 700px) {
  .vehicle-types__grid { grid-template-columns: 1fr; }
}

/* ---------- Featured products ---------- */
.featured-products__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.product-card {
  border: 1px solid #eee;
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  background: #fff;
}
.product-card:hover {
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
  transform: translateY(-3px);
}
.product-card__image {
  aspect-ratio: 1 / 1;
  background: var(--color-menu-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  box-sizing: border-box;
}
.product-card__image img { width: 100%; height: 100%; object-fit: contain; object-position: center; }
.product-card__body { padding: 16px; text-align: center; }
.product-card__title {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 8px;
  min-height: 40px;
}
.product-card__price {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-dark);
}
.featured-products__footer { text-align: center; margin-top: 36px; }
@media (max-width: 900px) {
  .featured-products__grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Content block (about / trust / services / areas / facts) ---------- */
.content-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.content-block.no-image { grid-template-columns: 1fr; max-width: 780px; margin: 0 auto; text-align: center; }
.content-block.image-right { direction: rtl; }
.content-block.image-right > * { direction: ltr; }
.content-block__image img { border-radius: 12px; width: 100%; }
.content-block__body ul {
  padding-left: 20px;
  margin: 16px 0;
}
.content-block__body li { margin-bottom: 8px; }
.content-block.no-image .content-block__body ul {
  display: inline-block;
  text-align: left;
}
.content-block__body h4 {
  font-size: 18px;
  margin-top: 20px;
}
.content-block__map {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #eee;
}
.content-block__map iframe { width: 100%; height: 320px; border: 0; display: block; }

@media (max-width: 860px) {
  .content-block, .content-block.image-right { grid-template-columns: 1fr; direction: ltr; }
}

/* ---------- Local Areas We Serve ---------- */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 14px;
  max-width: 980px;
  margin: 0 auto;
}
.area-chip {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--color-menu-bg);
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 14px 16px;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}
.area-chip:hover {
  background: #fff;
  border-color: var(--color-brand-gold);
  transform: translateY(-2px);
}
.area-chip__icon {
  color: var(--color-brand-gold);
  font-size: 20px;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.area-chip__name {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  color: var(--color-dark);
}
.area-chip__tag {
  margin-left: auto;
  background: var(--color-brand-gold);
  color: var(--color-dark);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 3px 8px;
  border-radius: 20px;
  white-space: nowrap;
}
.areas-section__footnote {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 640px;
  margin: 32px auto 0;
}
.areas-section__footnote p {
  color: var(--color-body-text);
  margin-bottom: 16px;
}
@media (max-width: 640px) {
  .areas-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .area-chip { padding: 12px; }
}

/* ---------- Why Tyre Health Matters ---------- */
.tyre-health-section { background: #f5f6f7; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
.stat-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}
.stat-card__value {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 42px;
  color: var(--color-brand-gold);
  line-height: 1;
  margin-bottom: 12px;
}
.stat-card__label {
  font-size: 14px;
  color: var(--color-body-text);
  line-height: 1.5;
}
.tyre-health-section__intro {
  text-align: center;
  max-width: 640px;
  margin: 32px auto 0;
  color: var(--color-body-text);
}
.tyre-health-section__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-top: 28px;
}
.tyre-health-cta__facts {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.tyre-health-cta__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  color: var(--color-dark);
}
.tyre-health-cta__item .dashicons {
  color: var(--color-brand-gold);
  font-size: 18px;
  width: 18px;
  height: 18px;
}
@media (max-width: 700px) {
  .stats-grid { grid-template-columns: 1fr; }
}

/* ---------- Testimonials ---------- */
.testimonials {
  background: var(--color-dark);
  color: #eee;
}
.testimonials .section-heading h2 { color: #fff; }
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 28px;
}
.testimonial-card p { color: #eee; font-size: 15px; }
.testimonial-card__name {
  color: var(--color-brand-gold);
  font-family: var(--font-heading);
  font-weight: 600;
  margin-top: 16px;
}
@media (max-width: 700px) {
  .testimonials__grid { grid-template-columns: 1fr; }
}

/* ---------- Brand strip ---------- */
.brand-strip__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px;
}
.brand-strip__row a { opacity: 0.7; transition: opacity 0.2s ease; }
.brand-strip__row a:hover { opacity: 1; }
.brand-strip__row img { max-height: 42px; width: auto; }
