/* tech01 product listing */
.t1-products {
  padding: 2.5rem 0 4rem;
}

.t1-products__header {
  margin-bottom: 2rem;
}

.t1-products__header h1 {
  margin: 0.35rem 0 0;
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  letter-spacing: -0.02em;
}

.t1-products__grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .t1-products__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 992px) {
  .t1-products__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
  }
}

.t1-product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
  background: var(--bs-body-bg, #fff);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 1rem;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.t1-product-card:hover,
.t1-product-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(15, 23, 42, 0.16);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  color: inherit;
}

.t1-product-card__media {
  aspect-ratio: 4 / 3;
  background: #f3f4f6;
  overflow: hidden;
}

.t1-product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.t1-product-card:hover .t1-product-card__media img {
  transform: scale(1.04);
}

.t1-product-card__placeholder {
  width: 100%;
  height: 100%;
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.06), rgba(15, 23, 42, 0.02));
}

.t1-product-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding: 1rem 1.1rem 1.2rem;
  flex: 1;
}

.t1-product-card__brand {
  margin: 0;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(15, 23, 42, 0.55);
}

.t1-product-card__title {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.t1-product-card__excerpt {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.45;
  color: rgba(15, 23, 42, 0.65);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.t1-product-card__price {
  margin: auto 0 0;
  padding-top: 0.55rem;
  font-size: 0.98rem;
  font-weight: 600;
}

.t1-product-card__price-label {
  font-weight: 500;
  color: rgba(15, 23, 42, 0.55);
}

.t1-product-detail {
  padding: 2rem 0 4rem;
}

.t1-product-detail__crumb {
  margin: 0 0 1.5rem;
}

.t1-product-detail__layout {
  display: grid;
  gap: 1.75rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 900px) {
  .t1-product-detail__layout {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    gap: 2.5rem;
    align-items: start;
  }
}

.t1-product-detail__media {
  min-width: 0;
}

.t1-product-gallery__main {
  border-radius: 1rem;
  overflow: hidden;
  background: #f3f4f6;
  aspect-ratio: 4 / 3;
}

.t1-product-gallery__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.t1-product-gallery__thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.75rem;
}

.t1-product-gallery__thumb {
  width: 4.25rem;
  height: 4.25rem;
  padding: 0;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 0.65rem;
  overflow: hidden;
  background: #f3f4f6;
  cursor: pointer;
}

.t1-product-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.t1-product-gallery__thumb.is-active,
.t1-product-gallery__thumb:hover,
.t1-product-gallery__thumb:focus-visible {
  border-color: rgba(15, 23, 42, 0.45);
  outline: none;
}

.t1-product-detail__copy h1 {
  margin: 0.2rem 0 0.55rem;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: -0.02em;
}

.t1-product-detail__type {
  margin: 0 0 0.85rem;
  font-size: 0.92rem;
  color: rgba(15, 23, 42, 0.55);
}

.t1-product-detail__price {
  margin: 0 0 1rem;
  font-size: 1.15rem;
  font-weight: 600;
}

.t1-product-detail__price span {
  font-weight: 500;
  color: rgba(15, 23, 42, 0.55);
}

.t1-product-detail__meta {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.35rem 1rem;
  margin: 0 0 1.1rem;
  font-size: 0.9rem;
}

.t1-product-detail__meta dt {
  margin: 0;
  color: rgba(15, 23, 42, 0.55);
}

.t1-product-detail__meta dd {
  margin: 0;
}

.t1-product-detail__excerpt {
  margin: 0;
  color: rgba(15, 23, 42, 0.7);
  line-height: 1.55;
}

.t1-product-detail__description {
  margin: 0 0 2.25rem;
  line-height: 1.65;
  color: rgba(15, 23, 42, 0.82);
  max-width: 48rem;
}

.t1-product-variants,
.t1-product-specs,
.t1-product-offers {
  margin: 0 0 2.25rem;
}

.t1-product-variants h2,
.t1-product-specs h2,
.t1-product-offers h2 {
  margin: 0 0 1rem;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}

.t1-product-offers__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.t1-product-offer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 0.85rem 1rem;
  align-items: center;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 0.9rem;
  background: rgba(15, 23, 42, 0.015);
}

.t1-product-offer.is-featured {
  border-color: rgba(15, 23, 42, 0.18);
  background: rgba(15, 23, 42, 0.03);
}

.t1-product-offer__seller {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.t1-product-offer__logo,
.t1-product-offer__logo-fallback {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.55rem;
  object-fit: contain;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  flex-shrink: 0;
}

.t1-product-offer__logo-fallback {
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.08), rgba(15, 23, 42, 0.02));
}

.t1-product-offer__name {
  margin: 0;
  font-weight: 600;
  line-height: 1.3;
}

.t1-product-offer__rating {
  margin: 0.15rem 0 0;
  font-size: 0.82rem;
  color: rgba(15, 23, 42, 0.55);
}

.t1-product-offer__price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.15rem;
  font-size: 1rem;
}

.t1-product-offer__compare {
  font-size: 0.82rem;
  color: rgba(15, 23, 42, 0.45);
  text-decoration: line-through;
}

.t1-product-offer__buy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 5.5rem;
  padding: 0.55rem 0.9rem;
  border-radius: 0.65rem;
  background: var(--bs-primary, #0d6efd);
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
}

.t1-product-offer__buy:hover,
.t1-product-offer__buy:focus-visible {
  filter: brightness(0.95);
  color: #fff;
}

.t1-product-offer__buy.is-disabled {
  opacity: 0.45;
  pointer-events: none;
}

@media (max-width: 640px) {
  .t1-product-offer {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .t1-product-offer__buy {
    grid-column: 1 / -1;
  }
}

.t1-product-variants ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.t1-product-variants li {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.85rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 0.85rem;
  background: rgba(15, 23, 42, 0.02);
}

.t1-product-variants li span {
  color: rgba(15, 23, 42, 0.65);
}

.t1-product-specs__group {
  margin: 0 0 1.35rem;
}

.t1-product-specs__group h3 {
  margin: 0 0 0.55rem;
  font-size: 1rem;
}

.t1-product-specs table {
  width: 100%;
  border-collapse: collapse;
}

.t1-product-specs th,
.t1-product-specs td {
  padding: 0.55rem 0.35rem;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  text-align: start;
  vertical-align: top;
  font-size: 0.92rem;
}

.t1-product-specs th {
  width: 38%;
  font-weight: 500;
  color: rgba(15, 23, 42, 0.6);
}

/* sellers */
.t1-sellers {
  padding: 2.5rem 0 4rem;
}

.t1-sellers__header {
  margin-bottom: 2rem;
}

.t1-sellers__header h1 {
  margin: 0.35rem 0 0;
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  letter-spacing: -0.02em;
}

.t1-sellers__grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .t1-sellers__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 992px) {
  .t1-sellers__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.t1-seller-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 1rem;
  overflow: hidden;
  background: var(--bs-body-bg, #fff);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.t1-seller-card:hover,
.t1-seller-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(15, 23, 42, 0.16);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  color: inherit;
}

.t1-seller-card__media {
  aspect-ratio: 16 / 9;
  background: #f3f4f6;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.t1-seller-card__media img {
  max-width: 70%;
  max-height: 4.5rem;
  object-fit: contain;
}

.t1-seller-card__placeholder {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.08), rgba(15, 23, 42, 0.02));
}

.t1-seller-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1rem 1.1rem 1.2rem;
  flex: 1;
}

.t1-seller-card__title {
  margin: 0;
  font-size: 1.05rem;
}

.t1-seller-card__meta,
.t1-seller-card__rating {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(15, 23, 42, 0.55);
}

.t1-seller-card__excerpt {
  margin: 0.25rem 0 0;
  font-size: 0.9rem;
  color: rgba(15, 23, 42, 0.65);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.t1-seller-detail {
  padding: 2rem 0 4rem;
}

.t1-seller-detail__crumb {
  margin: 0 0 1.5rem;
}

.t1-seller-detail__header {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

@media (min-width: 768px) {
  .t1-seller-detail__header {
    grid-template-columns: 8.5rem minmax(0, 1fr);
    gap: 1.75rem;
    align-items: start;
  }
}

.t1-seller-detail__logo {
  width: 8.5rem;
  height: 8.5rem;
  border-radius: 1rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #f8fafc;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.t1-seller-detail__logo img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
}

.t1-seller-detail__intro h1 {
  margin: 0.2rem 0 0.7rem;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: -0.02em;
}

.t1-seller-detail__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 0.85rem;
}

.t1-seller-detail__badge {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.65rem;
  border-radius: 0.55rem;
  background: rgba(15, 23, 42, 0.05);
  font-size: 0.82rem;
  color: rgba(15, 23, 42, 0.7);
}

.t1-seller-detail__lead {
  margin: 0 0 0.85rem;
  max-width: 42rem;
  color: rgba(15, 23, 42, 0.72);
  line-height: 1.55;
}

.t1-seller-detail__cta {
  margin: 0;
}

.t1-seller-detail__website {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.95rem;
  border-radius: 0.65rem;
  background: var(--bs-primary, #0d6efd);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
}

.t1-seller-detail__website:hover,
.t1-seller-detail__website:focus-visible {
  color: #fff;
  filter: brightness(0.96);
}

.t1-seller-profile {
  display: grid;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .t1-seller-profile {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1100px) {
  .t1-seller-profile {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .t1-seller-profile__about {
    grid-column: 1 / -1;
  }
}

.t1-seller-profile__card {
  padding: 1.1rem 1.15rem 1.2rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 1rem;
  background: rgba(15, 23, 42, 0.015);
}

.t1-seller-profile__card h2 {
  margin: 0 0 0.85rem;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}

.t1-seller-profile__text {
  margin: 0 0 1rem;
  line-height: 1.6;
  color: rgba(15, 23, 42, 0.8);
  white-space: pre-wrap;
}

.t1-seller-profile__muted {
  margin: 0;
  color: rgba(15, 23, 42, 0.5);
  font-size: 0.92rem;
}

.t1-seller-profile__list,
.t1-seller-profile__meta {
  display: grid;
  gap: 0.55rem 0;
  margin: 0;
}

.t1-seller-profile__row {
  display: grid;
  grid-template-columns: minmax(6.5rem, 34%) minmax(0, 1fr);
  gap: 0.35rem 0.85rem;
  align-items: start;
}

.t1-seller-profile__row dt {
  margin: 0;
  color: rgba(15, 23, 42, 0.55);
  font-size: 0.9rem;
}

.t1-seller-profile__row dd {
  margin: 0;
  word-break: break-word;
}

.t1-seller-profile__hours,
.t1-seller-profile__social {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.t1-seller-profile__hours li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.92rem;
  padding-bottom: 0.35rem;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.t1-seller-profile__hours li.is-empty strong {
  font-weight: 500;
  color: rgba(15, 23, 42, 0.4);
}

.t1-seller-profile__social a {
  text-decoration: none;
  font-weight: 500;
}

.t1-seller-detail__products {
  margin-top: 0.5rem;
}

.t1-seller-detail__products h2 {
  margin: 0 0 1rem;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}
