.tl-product-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid #dfe7f2;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(23, 43, 77, 0.06);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.tl-product-card:hover {
  border-color: #1c75bc;
  box-shadow: 0 16px 34px rgba(23, 43, 77, 0.12);
  transform: translateY(-2px);
}

.tl-tyre-finder-wrap {
  margin: -34px 0 28px;
  position: relative;
  z-index: 3;
}

.tl-tyre-finder {
  display: grid;
  grid-template-columns: minmax(190px, 1.1fr) repeat(4, minmax(120px, 0.8fr)) minmax(150px, 0.7fr);
  gap: 10px;
  align-items: end;
  padding: 16px;
  border: 1px solid #d7e2ee;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 36px rgba(15, 35, 60, 0.14);
}

.tl-tyre-finder__title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 58px;
}

.tl-tyre-finder__title span {
  color: #1c75bc;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.tl-tyre-finder__title strong {
  color: #152238;
  font-size: 19px;
  line-height: 1.2;
}

.tl-tyre-finder label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 0;
}

.tl-tyre-finder label span {
  color: #536173;
  font-size: 12px;
  font-weight: 700;
}

.tl-tyre-finder select {
  width: 100%;
  min-height: 42px;
  padding: 0 10px;
  border: 1px solid #cfd9e7;
  border-radius: 8px;
  background: #f8fafc;
  color: #162033;
  font-weight: 700;
}

.tl-tyre-finder button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  gap: 8px;
  border: 0;
  border-radius: 8px;
  background: #162033;
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}

.tl-tyre-finder button:hover {
  background: #1c75bc;
}

.tl-assurance-strip {
  margin: 0 0 26px;
}

.tl-assurance-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid #dfe7f2;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(23, 43, 77, 0.06);
}

.tl-assurance-strip__grid div {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  column-gap: 10px;
  align-items: center;
  min-height: 74px;
  padding: 14px;
  border-right: 1px solid #edf1f7;
}

.tl-assurance-strip__grid div:last-child {
  border-right: 0;
}

.tl-assurance-strip__grid i {
  grid-row: span 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: #162033;
  color: #fff;
  font-size: 15px;
}

.tl-assurance-strip__grid strong {
  min-width: 0;
  color: #152238;
  font-size: 14px;
  line-height: 1.15;
}

.tl-assurance-strip__grid span {
  min-width: 0;
  color: #667085;
  font-size: 12px;
  line-height: 1.25;
}

.tl-product-card__media {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 0.82;
  padding: 18px;
  background: #f7f9fc;
}

.tl-product-card__media img {
  max-width: 100%;
  max-height: 180px;
  object-fit: contain;
}

.tl-product-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 10px;
  padding: 14px 14px 10px;
}

.tl-product-card__badges,
.tl-detail-summary__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tl-product-card__badges span,
.tl-detail-summary__badges span {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 3px 8px;
  border-radius: 6px;
  background: #e9f3ff;
  color: #0f5799;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
}

.tl-product-card__badges span:nth-child(2),
.tl-detail-summary__badges span:nth-child(2) {
  background: #eaf8f0;
  color: #18764b;
}

.tl-product-card__badges span:nth-child(3),
.tl-detail-summary__badges span:nth-child(3) {
  background: #fff4df;
  color: #955f00;
}

.tl-product-card__title {
  min-height: 46px;
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
}

.tl-product-card__title a {
  color: #152238;
}

.tl-product-card__title a:hover {
  color: #1c75bc;
}

.tl-product-card__specs {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px;
  border-radius: 8px;
  background: #f4f7fb;
}

.tl-product-card__specs strong {
  color: #1c2635;
  font-size: 18px;
  line-height: 1.1;
}

.tl-product-card__specs span {
  color: #667085;
  font-size: 12px;
}

.tl-product-card__campaign {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 10px;
  border: 1px solid #c7ead6;
  border-radius: 8px;
  background: #effbf4;
  color: #146c43;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.25;
}

.tl-product-card__campaign i {
  font-size: 11px;
}

.tl-product-card__meta {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
  color: #49566a;
  font-size: 12px;
}

.tl-product-card__meta span {
  display: flex;
  align-items: center;
  min-height: 20px;
  gap: 7px;
}

.tl-product-card__meta i {
  width: 14px;
  color: #1c75bc;
  text-align: center;
}

.tl-stock-ok {
  color: #146c43 !important;
}

.tl-stock-out {
  color: #b42318 !important;
}

.tl-product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px 14px;
  border-top: 1px solid #edf1f7;
}

.tl-product-card__price {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.tl-product-card__price del {
  color: #98a2b3;
  font-size: 12px;
}

.tl-product-card__price strong {
  color: #0f172a;
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.tl-product-card__price span {
  color: #667085;
  font-size: 11px;
  font-weight: 700;
}

.tl-product-card__action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  gap: 7px;
  padding: 0 12px;
  border-radius: 8px;
  background: #1c75bc;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.tl-product-card__action:hover {
  background: #145b94;
  color: #fff;
}

.tl-detail-summary {
  padding: 16px;
  border: 1px solid #dfe7f2;
  border-radius: 8px;
  background: #f8fafc;
}

.tl-buy-panel {
  padding: 16px;
  border: 1px solid #dfe7f2;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(23, 43, 77, 0.08);
}

.tl-buy-panel__stock {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 13px;
  font-weight: 800;
}

.tl-buy-panel__stock i {
  font-size: 8px;
}

.tl-detail-campaign {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: 100%;
  padding: 10px 12px;
  border: 1px solid #c7ead6;
  border-radius: 8px;
  background: #effbf4;
  color: #146c43;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.25;
}

.tl-detail-campaign i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  min-width: 28px;
  height: 28px;
  border-radius: 999px;
  background: #146c43;
  color: #fff;
  font-size: 12px;
}

.tl-detail-trust,
.tl-cart-trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 12px;
}

.tl-detail-trust span,
.tl-cart-trust span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  gap: 8px;
  padding: 8px 10px;
  border: 1px solid #e6edf5;
  border-radius: 8px;
  background: #f8fafc;
  color: #354156;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
}

.tl-detail-trust i,
.tl-cart-trust i {
  color: #1c75bc;
}

.tl-product-description {
  max-width: 920px;
  color: #2f3a4a;
  font-size: 15px;
  line-height: 1.75;
}

.tl-product-description h2,
.tl-product-description h3 {
  color: #152238;
  line-height: 1.25;
}

.tl-product-description h2 {
  margin: 0 0 14px;
  font-size: 24px;
}

.tl-product-description h3 {
  margin: 22px 0 10px;
  font-size: 18px;
}

.tl-product-description p {
  margin-bottom: 14px;
}

.tl-product-description ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
}

.tl-product-description li {
  padding: 10px 12px;
  border: 1px solid #dfe7f2;
  border-radius: 8px;
  background: #f8fafc;
}

.tl-product-actions .btn {
  margin-bottom: 8px;
}

.tl-shop-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 18px;
  align-items: center;
  margin: 0 0 22px;
  padding: 18px;
  border: 1px solid #dfe7f2;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(23, 43, 77, 0.06);
}

.tl-shop-hero span {
  display: block;
  margin-bottom: 4px;
  color: #1c75bc;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.tl-shop-hero h1 {
  margin: 0;
  color: #152238;
  font-size: 28px;
  line-height: 1.15;
}

.tl-shop-hero p {
  max-width: 720px;
  margin: 8px 0 0;
  color: #667085;
  font-size: 14px;
  line-height: 1.45;
}

.tl-shop-search {
  display: flex;
  align-items: center;
  gap: 8px;
}

.tl-shop-search input,
.tl-shop-search select {
  width: 100%;
  min-height: 44px;
  padding: 0 12px;
  border: 1px solid #cfd9e7;
  border-radius: 8px;
  color: #162033;
}

.tl-shop-search select {
  max-width: 180px;
  background: #fff;
  font-weight: 700;
}

.tl-shop-search button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 92px;
  min-height: 44px;
  gap: 7px;
  border: 0;
  border-radius: 8px;
  background: #162033;
  color: #fff;
  font-weight: 800;
}

.tl-result-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
  padding: 12px 14px;
  border: 1px solid #dfe7f2;
  border-radius: 8px;
  background: #f8fafc;
}

.tl-result-bar strong {
  color: #152238;
  font-size: 16px;
}

.tl-result-bar span {
  color: #667085;
  font-size: 13px;
}

.etiket_dis {
  margin-bottom: 28px;
}

.etiket_dis h4 {
  margin-bottom: 14px;
  color: #152238;
  font-size: 18px;
  font-weight: 800;
}

.etiket_dis ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.etiket_dis ul li {
  float: none;
  margin: 0;
}

.etiket_dis ul li a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 11px;
  border: 1px solid #dfe7f2;
  border-radius: 8px;
  background: #fff;
  color: #253143;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.etiket_dis ul li a:hover {
  border-color: #1c75bc;
  background: #1c75bc;
  color: #fff;
}

.tl-empty-state {
  padding: 34px 18px;
  border: 1px solid #dfe7f2;
  border-radius: 8px;
  background: #fff;
  text-align: center;
  box-shadow: 0 10px 24px rgba(23, 43, 77, 0.06);
}

.tl-empty-state i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: #e9f3ff;
  color: #1c75bc;
  font-size: 22px;
}

.tl-empty-state h2 {
  margin: 0 0 8px;
  color: #152238;
  font-size: 22px;
}

.tl-empty-state p {
  max-width: 520px;
  margin: 0 auto 16px;
  color: #667085;
  line-height: 1.45;
}

.tl-empty-state .btn {
  margin: 4px;
}

.tl-category-copy {
  margin-top: 16px;
  padding: 16px;
  border: 1px solid #dfe7f2;
  border-radius: 8px;
  background: #fff;
  color: #3f4a5f;
  line-height: 1.6;
}

.tl-checkout-button {
  min-height: 46px;
  font-size: 16px;
  font-weight: 800;
}

.tl-detail-summary__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  margin-top: 14px;
}

.tl-detail-summary__grid div {
  min-height: 62px;
  padding: 10px;
  border: 1px solid #e6edf5;
  border-radius: 8px;
  background: #fff;
}

.tl-detail-summary__grid span {
  display: block;
  color: #667085;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.tl-detail-summary__grid strong {
  display: block;
  margin-top: 4px;
  color: #162033;
  font-size: 14px;
  line-height: 1.2;
}

@media (max-width: 1199.98px) {
  .tl-tyre-finder-wrap {
    margin: 18px 0 24px;
  }

  .tl-tyre-finder {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .tl-tyre-finder__title {
    grid-column: 1 / -1;
    min-height: auto;
  }

  .tl-detail-summary__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .tl-shop-hero {
    grid-template-columns: 1fr;
  }

  .tl-assurance-strip__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tl-assurance-strip__grid div:nth-child(2) {
    border-right: 0;
  }

  .tl-assurance-strip__grid div:nth-child(-n+2) {
    border-bottom: 1px solid #edf1f7;
  }
}

@media (max-width: 767.98px) {
  .tl-tyre-finder {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 12px;
  }

  .tl-tyre-finder button {
    grid-column: 1 / -1;
  }

  .tl-product-card__body {
    padding: 12px;
  }

  .tl-product-card__media {
    padding: 12px;
  }

  .tl-product-card__title {
    min-height: 58px;
    font-size: 13px;
  }

  .tl-product-card__specs strong {
    font-size: 15px;
  }

  .tl-product-card__footer {
    align-items: stretch;
    flex-direction: column;
  }

  .tl-product-card__action {
    width: 100%;
  }

  .tl-detail-summary__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tl-product-description ul {
    grid-template-columns: 1fr;
  }

  .tl-detail-trust,
  .tl-cart-trust {
    grid-template-columns: 1fr;
  }

  .tl-shop-hero h1 {
    font-size: 22px;
  }

  .tl-shop-search {
    flex-direction: column;
    align-items: stretch;
  }

  .tl-shop-search select {
    max-width: none;
  }

  .tl-result-bar {
    align-items: flex-start;
    flex-direction: column;
  }

  .tl-product-actions .ml-md-3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    width: 100%;
  }

  .tl-product-actions .btn {
    width: 100%;
    margin-bottom: 0;
    white-space: normal;
  }

  .tl-assurance-strip__grid {
    grid-template-columns: 1fr;
  }

  .tl-assurance-strip__grid div,
  .tl-assurance-strip__grid div:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid #edf1f7;
  }

  .tl-assurance-strip__grid div:last-child {
    border-bottom: 0;
  }
}
