.tire-link {
  text-decoration: none;
  color: #222;
}

.header-image-wrapper {
  width: 100%;
  aspect-ratio: 16 / 6;
  overflow: hidden;
  margin-bottom: 16px;
  background: #eee;
}
.header-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.main-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: -1px;
}

.intro {
  font-size: 1.08rem;
  margin-bottom: 32px;
}

.tire-cards-section {
  margin-bottom: 36px;
}

.tire-cards {
  display: flex;
  gap: 24px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.tire-card {
  background: #fafbfc;
  border-radius: 12px;
  padding: 18px 20px 20px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 220px;
  min-width: 180px;
  transition: box-shadow 0.2s;
}
.tire-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
.tire-img {
  width: 110px;
  height: auto;
  margin-bottom: 12px;
  border-radius: 8px;
  background: #fff;
}
.tire-card-content {
  text-align: center;
}
.tire-price {
  display: block;
  font-size: 1.1rem;
  font-weight: 600;
  color: #e67e22;
}

.tire-detail-section {
  margin-bottom: 36px;
}
.tire-detail-flex {
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-end;
  gap: 32px;
  overflow: hidden;
}
.tire-detail-content {
  order: 1;
  flex: 1 1 0;
}
.tire-detail-img-large {
  order: 0;
}
.tire-detail-text {
  flex: 1 1 300px;
}

.tire-detail-text p {
  margin-bottom: 0px;
}

.tire-detail-img.tire-detail-img-large {
  width: auto;
  background: #fff;
}

.closing {
  font-size: 1.05rem;
  padding-bottom: 32px;
  color: #444;
  font-weight: 500;
}

.tire-highlight-section {
  width: 100%;
  display: flex;
  justify-content: space-between;
  border-radius: 6px;
  margin-bottom: 36px;
  gap: 24px;
  background: #fff;
  flex-wrap: nowrap;
}
.tire-highlight-left {
  flex: 1;
  max-width: 45%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.tire-highlight-left h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 8px;
}
.tire-highlight-left p {
  font-size: 0.98rem;
  margin-bottom: 0;
}
.tire-highlight-right {
  display: flex;
  gap: 24px;
  align-items: stretch;
  justify-content: flex-end;
  flex: 1;
  max-width: 55%;
}
.tire-card.tire-card-highlight {
  margin: 0;
  flex: 1;
  width: 100%;
  height: 250px;
  box-shadow: none;
  border-radius: 14px;
  padding: 22px 20px 20px 20px;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid #e0e0e0;
  transition: box-shadow 0.2s;
  position: relative;
  text-decoration: none;
  color: inherit;
}
.tire-card.tire-card-highlight:hover {
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
}
.tire-icon {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 28px;
  height: 28px;
  z-index: 2;
  background: transparent;
  display: block;
}
.tire-card.tire-card-highlight .tire-img.tire-img-highlight {
  width: 200px;
  margin-bottom: 10px;
  display: block;
}
.tire-card.tire-card-highlight .tire-card-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  text-align: center;
  flex: 1 1 auto;
  width: 100%;
  height: 100%;
  margin-top: 0;
}
.tire-card.tire-card-highlight .tire-card-content p {
  margin-bottom: 10px;
  width: 100%;
  text-align: end;
}
.tire-card.tire-card-highlight .tire-price {
  margin-right: 5px;
}
.tire-price-prefix,
.tire-price-suffix {
  font-size: 1.1rem;
  font-weight: 400;
  color: #222;
}
.tire-price-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: #181818;
  margin: 0 2px;
}

.tire-img.tire-img-highlight {
  width: auto;
  height: 140px;
  display: block;
  border-radius: 8px;
  background: #fff;
  margin: 0 auto;
}

@media (max-width: 1100px) {
  .tire-highlight-section {
    flex-direction: column;
    gap: 18px;
    padding: 14px 6px 14px 6px;
  }
  .tire-highlight-left {
    max-width: 100%;
    flex: auto;
    padding-right: 0;
    margin-bottom: 10px;
  }
  .tire-highlight-right {
    justify-content: center;
    gap: 14px;
    width: 100%;
    max-width: 100%;
    flex: auto;
  }
  .tire-card.tire-card-highlight {
    width: 48%;
    min-width: 0;
    max-width: 280px;
    height: 270px;
    flex: 0 0 auto;
  }
  .tire-card.tire-card-highlight .tire-img.tire-img-highlight {
    width: 220px;
  }
}
@media (max-width: 700px) {
  .header-image-wrapper {
    aspect-ratio: 16 / 10;
  }

  .tire-highlight-section {
    flex-direction: column;
    gap: 18px;
    padding: 10px 2px 10px 2px;
  }
  .tire-highlight-left {
    padding-right: 0;
    margin-bottom: 10px;
    max-width: 100%;
  }
  .tire-highlight-right {
    flex-direction: column;
    gap: 16px;
    align-items: center;
    width: 100%;
  }
  .tire-card.tire-card-highlight {
    width: 100%;
    max-width: 340px;
    height: auto;
    min-height: 200px;
    margin-bottom: 10px;
  }
  .tire-card.tire-card-highlight a {
    height: 100%;
  }
  .tire-card.tire-card-highlight .tire-img.tire-img-highlight {
    width: 200px;
    margin-top: 25px;
  }
  .tire-detail-flex {
    flex-direction: column;
    align-items: center;
    gap: 18px;
  }
  .tire-detail-img-large {
    order: 0;
  }
  .tire-detail-content {
    order: 1;
    width: 100%;
  }
  .tire-icon {
    width: 24px;
    height: 24px;
    top: 10px;
    left: 10px;
    z-index: 3;
  }
}
@media (max-width: 1024px) {
  .tire-detail-flex {
    flex-direction: column;
    align-items: center;
    gap: 18px;
  }
  .tire-card.tire-card-highlight {
    height: auto;
    min-height: 240px;
  }
  .tire-card.tire-card-highlight .tire-card-content {
    margin-top: 10px;
  }
}
