
.products-grid {
	margin-top: 0px;
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 15px;
}

.product-item img {
	max-width: 100%;
	object-fit: cover;
}

.product-price {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.product-price .price-regular {
  font-weight: 600;
  color: #111;
     font-size: 18px;
}

.product-price .price-new {
  font-weight: 600;
  color: #111;
   font-size: 18px;
}

.product-price .price-old {
  font-size: 14px;
  color: #888;
  text-decoration: line-through;
}
.product-price .price-regular span,
.product-price .price-new span, .product-price .price-old span {
 font-size: 14px;
}

.product-price .discount-badge {
  position: absolute;
  top: 10px;
  right: 16px;
  padding: 4px 8px;
  border-radius: 8px;
  background: #333;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
}

/* =========================
   PAGINATION
========================= */

.pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.pagination a,
.pagination span {
  min-width: 38px;
  height: 38px;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  font-size: 14px;
  line-height: 1;
  text-decoration: none;

  border: 1px solid #e5e7eb; /* slate-200 */
  border-radius: 6px;
  background: #fff;
  color: #334155; /* slate-700 */

  transition: all 0.15s ease;
}

/* HOVER */
.pagination a:hover {
  background: #f8fafc; /* slate-50 */
  border-color: #cbd5e1; /* slate-300 */
}

.pagination .current-page {
  background: #0f172a; /* slate-900 */
  color: #fff;
  border-color: #0f172a;
  font-weight: 600;
  cursor: default;
}

.pagination .disabled {
  opacity: 0.5;
  pointer-events: none;
}

@media (max-width: 640px) {
  .pagination {
    justify-content: center;
  }
}

/* Rich text blocks from the builder */
.htmlcode,
.paragraph {
  line-height: 1.7;
}

.htmlcode p,
.paragraph p {
  margin: 0 0 1em;
}

.htmlcode h1,
.htmlcode h2,
.htmlcode h3,
.htmlcode h4,
.htmlcode h5,
.htmlcode h6,
.paragraph h1,
.paragraph h2,
.paragraph h3,
.paragraph h4,
.paragraph h5,
.paragraph h6 {
  margin: 1.2em 0 0.55em;
  color: inherit;
  font-weight: 900;
  line-height: 1.18;
}

.htmlcode h1,
.htmlcode .shop-inline-heading-h1,
.paragraph h1,
.paragraph .shop-inline-heading-h1 {
  font-size: 2.25em;
}

.htmlcode h2,
.htmlcode .shop-inline-heading-h2,
.paragraph h2,
.paragraph .shop-inline-heading-h2 {
  font-size: 1.85em;
}

.htmlcode h3,
.htmlcode .shop-inline-heading-h3,
.paragraph h3,
.paragraph .shop-inline-heading-h3 {
  font-size: 1.5em;
}

.htmlcode h4,
.htmlcode .shop-inline-heading-h4,
.paragraph h4,
.paragraph .shop-inline-heading-h4 {
  font-size: 1.25em;
}

.htmlcode h5,
.htmlcode .shop-inline-heading-h5,
.paragraph h5,
.paragraph .shop-inline-heading-h5 {
  font-size: 1.08em;
}

.htmlcode h6,
.htmlcode .shop-inline-heading-h6,
.paragraph h6,
.paragraph .shop-inline-heading-h6 {
  font-size: 0.95em;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.htmlcode .shop-inline-heading,
.paragraph .shop-inline-heading {
  display: inline;
  color: inherit;
  font-weight: 900;
  line-height: 1.18;
}

.htmlcode h1:first-child,
.htmlcode h2:first-child,
.htmlcode h3:first-child,
.htmlcode h4:first-child,
.htmlcode h5:first-child,
.htmlcode h6:first-child,
.paragraph h1:first-child,
.paragraph h2:first-child,
.paragraph h3:first-child,
.paragraph h4:first-child,
.paragraph h5:first-child,
.paragraph h6:first-child {
  margin-top: 0;
}

.htmlcode ul,
.paragraph ul {
  margin: 0 0 1em 1.25em;
  list-style: disc;
}

.htmlcode ol,
.paragraph ol {
  margin: 0 0 1em 1.25em;
  list-style: decimal;
}

.htmlcode a:not([class]),
.paragraph a:not([class]) {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
