/* B2B Apparel Export Theme - Custom Styles */

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

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

.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Prose styles for content */
.prose h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

.prose h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  color: #1a1a1a;
}

.prose p {
  margin-bottom: 1rem;
  line-height: 1.7;
  color: #6b7280;
}

.prose ul {
  list-style-type: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.prose ol {
  list-style-type: decimal;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.prose li {
  margin-bottom: 0.5rem;
  color: #6b7280;
}

.prose img {
  border-radius: 0.5rem;
  margin: 1.5rem 0;
}

/* Table styles */
table {
  width: 100%;
  border-collapse: collapse;
}

th, td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid #e5e7eb;
}

th {
  font-weight: 600;
  color: #1a1a1a;
  background-color: #f9fafb;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #c17c53;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #a96b47;
}

/* Focus styles */
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: #c17c53;
  box-shadow: 0 0 0 3px rgba(193, 124, 83, 0.1);
}

/* Button transitions */
button, a {
  transition: all 0.2s ease;
}

/* Pagination */
.pagination a,
.pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  height: 2.5rem;
  padding: 0 0.75rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  color: #1a1a1a;
  background: #ffffff;
  transition: all 0.2s;
  text-decoration: none;
  margin: 0 2px;
}
.pagination a:hover {
  border-color: #c17c53;
  color: #c17c53;
}
.pagination span,
.pagination .current,
.pagination .active {
  background: #c17c53;
  color: #ffffff;
  border-color: #c17c53;
}

/* Image hover zoom container */
.img-zoom-container {
  overflow: hidden;
}

.img-zoom-container img {
  transition: transform 0.5s ease;
}

.img-zoom-container:hover img {
  transform: scale(1.05);
}
