.hidden {
  display: none !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-6 {
  margin-bottom: 6px !important;
}

.mb-8 {
  margin-bottom: 8px !important;
}

.mb-12 {
  margin-bottom: 12px !important;
}

.mb-14 {
  margin-bottom: 14px !important;
}

.mb-16 {
  margin-bottom: 16px !important;
}

.mb-18 {
  margin-bottom: 18px !important;
}

.mb-24 {
  margin-bottom: 24px !important;
}

.mt-8 {
  margin-top: 8px !important;
}

.mt-10 {
  margin-top: 10px !important;
}

.mt-12 {
  margin-top: 12px !important;
}

.mt-14 {
  margin-top: 14px !important;
}

.mt-16 {
  margin-top: 16px !important;
}

.mt-18 {
  margin-top: 18px !important;
}

.mt-20 {
  margin-top: 20px !important;
}

.mt-24 {
  margin-top: 24px !important;
}

.mt-28 {
  margin-top: 28px !important;
}

.p-8 {
  padding: 8px !important;
}

.p-16 {
  padding: 16px !important;
}

.w-full {
  width: 100%;
}

.text-accent {
  color: var(--accent) !important;
}

.text-success {
  color: var(--success, #16a34a) !important;
}

.text-danger {
  color: var(--danger, #dc2626) !important;
}

.text-12 {
  font-size: 12px !important;
}

.text-22 {
  font-size: 22px !important;
}

.text-24 {
  font-size: 24px !important;
}

.strong-text {
  font-weight: 700;
}

.break-word {
  word-break: break-word;
}

.radius-18 {
  border-radius: 18px !important;
}

.flex-gap-10 {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.preview-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.preview-grid-auto {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 12px;
}

.max-w-760 {
  max-width: 760px;
}

.row-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.row-actions-top {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.row-between-wrap {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.row-left-card {
  display: flex;
  gap: 14px;
  flex: 1;
  min-width: 260px;
}

.thumb-100 {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid var(--line);
}

.thumb-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
  padding: 8px;
}

.grid-two {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.list-row {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.gallery-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.gallery-thumb-btn {
  width: 88px;
  height: 88px;
  padding: 0;
  border: none;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  background: transparent;
}

.gallery-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 16px;
}

@media (max-width: 560px) {
  .preview-grid-3,
  .grid-two {
    grid-template-columns: 1fr;
  }

  .row-left-card {
    min-width: 100%;
  }
}
.catalog-pagination-wrap {
  margin-top: 22px;
}

.catalog-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.catalog-pagination-info {
  font-size: 14px;
  color: var(--muted);
}
