.tires-page .tire-product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.tires-page .tire-product-card {
  display: grid;
  grid-template-columns: 156px minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid var(--accessory-line);
  border-radius: 22px;
  background: linear-gradient(145deg, var(--accessory-panel-soft), var(--accessory-panel));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.tire-product-visual,
.tire-detail-visual {
  display: grid;
  place-items: center;
  min-height: 100%;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 50%, transparent 0 21%, #313a44 22% 28%, #080a0d 29% 44%, #303944 45% 49%, #11161c 50% 100%),
    linear-gradient(145deg, #171e26, #090c10);
}

.tire-art {
  position: relative;
  width: 112px;
  aspect-ratio: 1;
  border: 13px dashed #4a5561;
  border-radius: 50%;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.45), inset 0 0 0 8px #090c0f;
}

.tire-art::before,
.tire-art::after {
  position: absolute;
  inset: 20%;
  border: 5px solid #b7c0ca;
  border-radius: 50%;
  content: "";
}

.tire-art::after {
  inset: 39%;
  border: 0;
  background: var(--accessory-accent);
  box-shadow: 0 0 26px rgba(245, 121, 42, 0.55);
}

.tire-product-copy { padding: 22px; }
.tire-product-copy h2,
.tire-product-copy h3 { margin: 8px 0 10px; line-height: 1.22; }
.tire-product-copy p { color: var(--accessory-muted); line-height: 1.58; }
.tire-size { display: inline-block; margin: 8px 0 18px; color: #8ee3ae; font-weight: 850; }
.tire-quote-label { margin: 16px 0; color: #fff; font-size: 1.2rem; font-weight: 850; }

.tire-detail-visual {
  min-height: 540px;
  border: 1px solid var(--accessory-line);
  border-radius: 22px;
}

.tire-detail-visual .tire-art { width: min(330px, 68%); border-width: 28px; }
.tire-safety-list { margin: 20px 0 0; padding-left: 20px; color: var(--accessory-muted); line-height: 1.65; }
.tire-safety-list li + li { margin-top: 7px; }
.tire-boundary { border-left: 4px solid var(--accessory-accent); }

@media (max-width: 900px) {
  .tires-page .tire-product-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .tires-page .tire-product-card { grid-template-columns: 108px minmax(0, 1fr); }
  .tire-art { width: 78px; border-width: 10px; }
  .tire-product-copy { padding: 17px; }
  .tire-detail-visual { min-height: 320px; }
}
