/* Pifa.Web - Clothing Stock Wholesale */

/* Line clamp utility */
.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Image hover effect */
.product-image {
  transition: transform 0.3s ease;
}
.product-image:hover {
  transform: scale(1.05);
}

/* Responsive table */
@media (max-width: 640px) {
  .table-responsive-card table thead {
    display: none;
  }
  .table-responsive-card table tbody tr {
    display: block;
    padding: 1rem;
    border-bottom: 1px solid #e5e7eb;
  }
  .table-responsive-card table tbody td {
    display: flex;
    justify-content: space-between;
    padding: 0.25rem 0;
    border: none;
  }
}

/* Detail HTML content styles */
.detail-html-content {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #374151;
}
.detail-html-content h1,
.detail-html-content h2,
.detail-html-content h3 {
  margin-top: 1.5em;
  margin-bottom: 0.5em;
  color: #111827;
  font-weight: 700;
}
.detail-html-content h1 { font-size: 1.5rem; }
.detail-html-content h2 { font-size: 1.25rem; }
.detail-html-content h3 { font-size: 1.1rem; }
.detail-html-content p {
  margin-bottom: 1em;
}
.detail-html-content img {
  max-width: 100%;
  height: auto;
  border-radius: 0.5rem;
  margin: 1rem 0;
}
.detail-html-content ul,
.detail-html-content ol {
  margin: 0.5em 0;
  padding-left: 1.5em;
}
.detail-html-content li {
  margin-bottom: 0.25em;
}
.detail-html-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
}
.detail-html-content th,
.detail-html-content td {
  border: 1px solid #d1d5db;
  padding: 0.5rem 0.75rem;
  text-align: left;
}
.detail-html-content th {
  background-color: #f9fafb;
  font-weight: 600;
}
}