/* Product characteristics — tcmo product page override */

.product-specs {
  margin: 1.15rem 0 1rem;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-left: 3px solid #3b6fd9;
  border-radius: 10px;
  box-shadow: none;
  overflow: hidden;
}

.product-specs .specs-header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  padding: 11px 14px;
  margin: 0;
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  cursor: default;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #0f172a;
  letter-spacing: -0.01em;
}

.product-specs .specs-header::before {
  content: "";
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  background: center / contain no-repeat
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233b6fd9' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M8.25 6.75h12M8.25 12h12m-12 5.25h12M3.75 6.75h.007v.008H3.75V6.75zm0 5.25h.007v.008H3.75V12zm0 5.25h.007v.008H3.75V17.25z'/%3E%3C/svg%3E");
}

.product-specs .specs-header svg {
  display: none;
}

.product-specs .specs-content {
  display: block !important;
  padding: 4px 14px 10px;
  background: #fff;
}

.product-specs .spec-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 9px 0;
  border-bottom: 1px solid #edf2f7;
  font-size: 0.8125rem;
  line-height: 1.45;
}

.product-specs .spec-row:last-child {
  border-bottom: 0;
  padding-bottom: 2px;
}

.product-specs .spec-name {
  display: inline-flex;
  align-items: baseline;
  flex: 1 1 45%;
  min-width: 0;
  color: #64748b;
  font-weight: 500;
}

.product-specs .spec-name::after {
  content: "";
  display: none;
}

.product-specs .spec-value {
  flex: 0 1 auto;
  max-width: 50%;
  color: #1e293b;
  font-weight: 600;
  text-align: right;
}

@media (max-width: 560px) {
  .product-specs .spec-row {
    flex-direction: column;
    align-items: stretch;
    gap: 3px;
    padding: 10px 0;
  }

  .product-specs .spec-name {
    display: block;
    flex: none;
  }

  .product-specs .spec-name::after {
    display: none;
  }

  .product-specs .spec-name,
  .product-specs .spec-value {
    max-width: none;
    text-align: left;
  }

  .product-specs .spec-value {
    padding-left: 0;
    color: #0f172a;
  }
}
