.t1-product-list[data-renderer="store-product-list"] {
  background: var(--theme-bg, #f8f4ee);
  color: var(--theme-text, #2a2118);
  padding-bottom: clamp(48px, 8vw, 96px);
}

/* ── Category banner ── */
.t1-product-list .category-page-banner {
  padding: clamp(40px, 6vw, 72px) 0 clamp(24px, 4vw, 40px);
  border-bottom: 1px solid color-mix(in srgb, var(--theme-border, #c4b8a0) 55%, transparent);
}

.t1-product-list .container {
  max-width: var(--theme-container, 1340px);
  margin: 0 auto;
  padding-inline: var(--theme-gutter, 48px);
}

.t1-product-list .category-banner-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: end;
}

.t1-product-list .category-banner-title {
  font-family: var(--theme-font-display, Georgia, serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}

.t1-product-list .category-banner-sub {
  margin: 0;
  max-width: 42rem;
  color: var(--theme-text-secondary, #6b5f54);
  line-height: 1.65;
}

.t1-product-list .category-banner-visual {
  width: min(280px, 40vw);
}

.t1-product-list .category-banner-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 4 / 5;
}

/* ── Filter bar ── */
.t1-product-list .t1-pl-filters-top {
  max-width: var(--theme-container, 1340px);
  margin: 0 auto;
  padding: 20px var(--theme-gutter, 48px);
  display: flex;
  justify-content: flex-end;
}

.t1-product-list .t1-pl-filters-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.t1-product-list .t1-pl-filter-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 1px solid var(--theme-border, #c4b8a0);
  background: transparent;
  font-family: var(--theme-font-family, sans-serif);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  color: var(--theme-text, #2a2118);
}

.t1-product-list .t1-pl-filter-toggle:hover {
  background: color-mix(in srgb, var(--theme-text, #2a2118) 5%, transparent);
}

.t1-product-list .t1-pl-filter-dropdown-wrap {
  position: relative;
}

.t1-product-list .t1-pl-filter-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 30;
  min-width: 240px;
  padding: 20px;
  background: var(--theme-bg, #f8f4ee);
  border: 1px solid var(--theme-border, #c4b8a0);
  box-shadow: 0 12px 40px rgba(42, 33, 24, 0.1);
}

.t1-product-list .t1-pl-filter-dropdown[hidden] {
  display: none !important;
}

.t1-product-list .t1-pl-filter-block {
  margin-bottom: 16px;
}

.t1-product-list .t1-pl-filter-block label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--theme-muted, #9b8e7a);
  font-family: var(--theme-font-family, sans-serif);
}

.t1-product-list .t1-pl-sort-btns {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.t1-product-list .t1-pl-sort-btn,
.t1-product-list .t1-pl-filter-btn-toggle,
.t1-product-list .t1-pl-filter-submit {
  font-family: var(--theme-font-family, sans-serif);
  font-size: 12px;
  cursor: pointer;
}

.t1-product-list .t1-pl-sort-btn {
  text-align: left;
  padding: 8px 0;
  border: 0;
  background: transparent;
  color: var(--theme-text, #2a2118);
}

.t1-product-list .t1-pl-sort-btn.is-selected {
  font-weight: 600;
  color: var(--theme-primary, #4a5c47);
}

.t1-product-list .t1-pl-filter-btn-toggle {
  padding: 8px 12px;
  border: 1px solid var(--theme-border, #c4b8a0);
  background: transparent;
  color: var(--theme-text, #2a2118);
  font-size: 11px;
  letter-spacing: 0.08em;
}

.t1-product-list .t1-pl-filter-btn-toggle.is-selected {
  background: var(--theme-text, #2a2118);
  color: var(--theme-bg, #f8f4ee);
  border-color: var(--theme-text, #2a2118);
}

.t1-product-list .t1-pl-filter-submit {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--theme-text, #2a2118);
  background: var(--theme-text, #2a2118);
  color: var(--theme-bg, #f8f4ee);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 10px;
}

/* ── View toggle ── */
.t1-product-list .t1-pl-view-toggle {
  display: flex;
  gap: 4px;
}

.t1-product-list .t1-pl-view-btn {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--theme-border, #c4b8a0);
  background: transparent;
  cursor: pointer;
  color: var(--theme-text, #2a2118);
}

.t1-product-list .t1-pl-view-btn.is-active {
  background: var(--theme-text, #2a2118);
  color: var(--theme-bg, #f8f4ee);
  border-color: var(--theme-text, #2a2118);
}

/* ── Product grid ── */
.t1-product-list .t1-pl-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 36px);
  max-width: var(--theme-container, 1340px);
  margin: 0 auto;
  padding: 8px var(--theme-gutter, 48px) 0;
}

/* ── Product card ── */
.t1-product-list .t1-pl-item {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition:
    transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    box-shadow 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.t1-product-list .t1-pl-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 56px rgba(42, 33, 24, 0.1);
}

.t1-product-list .t1-pl-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* ── Product image ── */
.t1-product-list .t1-pl-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: linear-gradient(160deg, #ece6dc 0%, #e3d9cc 55%, #cfc3b2 100%);
  margin-bottom: clamp(14px, 1.6vw, 20px);
  flex-shrink: 0;
}

.t1-product-list .t1-pl-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 1;
}

.t1-product-list .t1-pl-item:hover .t1-pl-img img {
  transform: scale(1.03);
}

/* Small "+" indicator bottom-right */
.t1-product-list .t1-pl-img::after {
  content: '+';
  position: absolute;
  bottom: 11px;
  right: 11px;
  width: 30px;
  height: 30px;
  background: rgba(252, 250, 247, 0.95);
  color: color-mix(in srgb, var(--theme-muted, #9b8e7a) 88%, var(--theme-text, #2a2118));
  font-family: var(--theme-font-family, sans-serif);
  font-size: 17px;
  font-weight: 200;
  line-height: 30px;
  text-align: center;
  border-radius: 50%;
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--theme-border, #c4b8a0) 35%, transparent);
  opacity: 0.88;
  transition: opacity 0.4s ease;
  z-index: 3;
  pointer-events: none;
}

.t1-product-list .t1-pl-item:hover .t1-pl-img::after {
  opacity: 0.6;
}

/* ── Product info ── */
.t1-product-list .t1-pl-info {
  padding: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.t1-product-list .t1-pl-name {
  font-family: var(--theme-font-display, Georgia, serif);
  font-size: 1.1rem;
  font-weight: 500;
  margin: 0 0 10px;
  line-height: 1.22;
  letter-spacing: -0.012em;
  color: var(--theme-text, #2a2118);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ── Product footer: price row ── */
.t1-product-list .product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding-top: 12px;
  margin-top: auto;
  border-top: 1px solid color-mix(in srgb, var(--theme-accent, #b8945a) 28%, var(--theme-border, #c4b8a0));
  transition: border-color 0.5s ease;
}

.t1-product-list .t1-pl-item:hover .product-footer {
  border-top-color: color-mix(in srgb, var(--theme-accent, #b8945a) 55%, var(--theme-border, #c4b8a0));
}

.t1-product-list .t1-pgb-price-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-family: var(--theme-font-display, Georgia, serif);
  font-size: 1.32rem;
  font-weight: 500;
  color: var(--theme-text, #2a2118);
  letter-spacing: -0.02em;
}

.t1-product-list .t1-pgb-price-row small {
  font-size: 0.75rem;
  color: var(--theme-muted, #9b8e7a);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 400;
}

/* ── Actions: Add to Bag / View Details ── */
.t1-product-list .t1-pl-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 16px;
}

.t1-product-list .t1-pl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 14px 20px;
  font-family: var(--theme-font-family, system-ui, sans-serif);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.25;
  cursor: pointer;
  text-decoration: none;
  box-sizing: border-box;
  transition:
    background-color 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease;
}

/* Add to Bag: filled dark */
.t1-product-list .t1-pl-btn-add {
  background: var(--theme-text, #2a2118);
  color: var(--theme-bg, #f8f4ee);
  border: 1px solid var(--theme-text, #2a2118);
}

.t1-product-list .t1-pl-btn-add:hover {
  background: rgba(42, 33, 24, 0.82);
  border-color: rgba(42, 33, 24, 0.82);
}

/* View Details: ghost/outlined */
.t1-product-list .t1-pl-btn-view {
  background: #f4f0e8;
  color: var(--theme-text, #2a2118);
  border: 1px solid color-mix(in srgb, var(--theme-text, #2a2118) 12%, transparent);
  box-shadow: 0 10px 28px rgba(42, 33, 24, 0.06);
}

.t1-product-list .t1-pl-btn-view:hover {
  background: #ede8de;
  border-color: color-mix(in srgb, var(--theme-text, #2a2118) 22%, transparent);
}

/* ── Pagination ── */
.t1-product-list .t1-pl-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: clamp(40px, 6vw, 64px);
  padding-inline: var(--theme-gutter, 48px);
}

.t1-product-list .t1-pl-pagination button {
  padding: 10px 20px;
  border: 1px solid var(--theme-border, #c4b8a0);
  background: transparent;
  font-family: var(--theme-font-family, sans-serif);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  color: var(--theme-text, #2a2118);
}

.t1-product-list .t1-pl-pagination button:hover {
  background: color-mix(in srgb, var(--theme-text, #2a2118) 6%, transparent);
}

.t1-product-list .t1-pl-page-nmbr {
  font-size: 13px;
  color: var(--theme-text-secondary, #6b5f54);
}

/* ── List view ── */
.t1-product-list .t1-pl-grid.t1-pl-view-list {
  grid-template-columns: 1fr;
  gap: 0;
}

.t1-product-list .t1-pl-grid.t1-pl-view-list .t1-pl-item {
  flex-direction: row;
  align-items: stretch;
  border-bottom: 1px solid color-mix(in srgb, var(--theme-border, #c4b8a0) 55%, transparent);
  transform: none !important;
}

.t1-product-list .t1-pl-grid.t1-pl-view-list .t1-pl-item:hover {
  box-shadow: none;
  background: color-mix(in srgb, var(--theme-text, #2a2118) 3%, var(--theme-bg, #f8f4ee));
}

.t1-product-list .t1-pl-grid.t1-pl-view-list .t1-pl-link {
  flex-direction: row;
  align-items: stretch;
  flex: 1;
}

.t1-product-list .t1-pl-grid.t1-pl-view-list .t1-pl-img {
  flex-shrink: 0;
  width: clamp(140px, 16vw, 220px);
  aspect-ratio: unset;
  margin-bottom: 0;
  min-height: 180px;
}

.t1-product-list .t1-pl-grid.t1-pl-view-list .t1-pl-info {
  flex: 1;
  padding: clamp(16px, 2vw, 24px);
  justify-content: center;
}

.t1-product-list .t1-pl-grid.t1-pl-view-list .t1-pl-name {
  -webkit-line-clamp: 2;
  line-clamp: 2;
}

.t1-product-list .t1-pl-grid.t1-pl-view-list .product-footer {
  margin-top: 12px;
  padding-top: 12px;
}

.t1-product-list .t1-pl-grid.t1-pl-view-list .t1-pl-actions {
  flex-direction: column;
  justify-content: center;
  align-self: center;
  padding: clamp(16px, 2vw, 24px);
  flex-shrink: 0;
  gap: 10px;
}

.t1-product-list .t1-pl-grid.t1-pl-view-list .t1-pl-btn {
  width: auto;
  min-width: 148px;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .t1-product-list .t1-pl-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .t1-product-list .container,
  .t1-product-list .t1-pl-filters-top,
  .t1-product-list .t1-pl-grid,
  .t1-product-list .t1-pl-pagination {
    padding-inline: 24px;
  }

  .t1-product-list .category-banner-inner {
    grid-template-columns: 1fr;
  }

  .t1-product-list .t1-pl-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .t1-product-list .t1-pl-grid.t1-pl-view-list .t1-pl-item {
    flex-direction: column;
    border-bottom: 1px solid color-mix(in srgb, var(--theme-border, #c4b8a0) 55%, transparent);
  }

  .t1-product-list .t1-pl-grid.t1-pl-view-list .t1-pl-link {
    flex-direction: column;
  }

  .t1-product-list .t1-pl-grid.t1-pl-view-list .t1-pl-img {
    width: 100%;
    min-height: 0;
    aspect-ratio: 4 / 5;
  }

  .t1-product-list .t1-pl-grid.t1-pl-view-list .t1-pl-actions {
    flex-direction: column;
    align-self: stretch;
    padding: 0 16px 20px;
  }

  .t1-product-list .t1-pl-grid.t1-pl-view-list .t1-pl-btn {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 480px) {
  .t1-product-list .container,
  .t1-product-list .t1-pl-filters-top,
  .t1-product-list .t1-pl-grid,
  .t1-product-list .t1-pl-pagination {
    padding-inline: 16px;
  }

  .t1-product-list .t1-pl-grid {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════════
   Category page: sidebar shop layout
   ═══════════════════════════════════════════════ */

/* Hero banner inner container */
.t1-product-list .t1-pl-shop-hero-inner {
  max-width: var(--theme-container, 1340px);
  margin: 0 auto;
  padding-inline: var(--theme-gutter, 48px);
}

/* Two-column: sidebar + main */
.t1-product-list .t1-pl-shop-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 48px;
  max-width: var(--theme-container, 1340px);
  margin: 0 auto;
  padding: 32px var(--theme-gutter, 48px) 0;
  align-items: start;
}

.t1-product-list .t1-pl-sidebar {
  position: sticky;
  top: 24px;
}

.t1-product-list .t1-pl-sidebar-heading {
  font-family: var(--theme-font-family, sans-serif);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin: 0 0 20px;
  color: var(--theme-muted, #9b8e7a);
}

/* Filter accordion */
.t1-product-list .t1-pl-filter-acc {
  border-top: 1px solid color-mix(in srgb, var(--theme-border, #c4b8a0) 55%, transparent);
}

.t1-product-list .t1-pl-filter-acc:last-child {
  border-bottom: 1px solid color-mix(in srgb, var(--theme-border, #c4b8a0) 55%, transparent);
}

.t1-product-list .t1-pl-filter-acc-summary {
  font-family: var(--theme-font-family, sans-serif);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 0;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--theme-text, #2a2118);
  user-select: none;
}

.t1-product-list .t1-pl-filter-acc-summary::-webkit-details-marker {
  display: none;
}

.t1-product-list .t1-pl-filter-acc-summary::after {
  content: '+';
  font-size: 18px;
  font-weight: 200;
  color: var(--theme-muted, #9b8e7a);
  line-height: 1;
}

.t1-product-list .t1-pl-filter-acc[open] > .t1-pl-filter-acc-summary::after {
  content: '−';
}

.t1-product-list .t1-pl-filter-acc-body {
  padding-bottom: 18px;
}

/* Category pills */
.t1-product-list .t1-pill {
  display: inline-block;
  padding: 5px 13px;
  margin: 0 5px 7px 0;
  border: 1px solid var(--theme-border, #c4b8a0);
  background: transparent;
  font-family: var(--theme-font-family, sans-serif);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-decoration: none;
  color: var(--theme-text, #2a2118);
  cursor: pointer;
  transition: background-color 0.18s ease, color 0.18s ease;
}

.t1-product-list .t1-pill:hover {
  background: color-mix(in srgb, var(--theme-text, #2a2118) 8%, transparent);
}

.t1-product-list .t1-pill--active {
  background: var(--theme-text, #2a2118);
  color: var(--theme-bg, #f8f4ee);
  border-color: var(--theme-text, #2a2118);
}

/* Price filter */
.t1-product-list .t1-pl-price-filter {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.t1-product-list .t1-pl-price-label {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-family: var(--theme-font-family, sans-serif);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--theme-muted, #9b8e7a);
}

.t1-product-list .t1-pl-price-label input {
  padding: 8px 10px;
  border: 1px solid var(--theme-border, #c4b8a0);
  background: transparent;
  font-family: var(--theme-font-family, sans-serif);
  font-size: 13px;
  color: var(--theme-text, #2a2118);
  width: 100%;
  box-sizing: border-box;
  transition: border-color 0.15s ease;
}

.t1-product-list .t1-pl-price-label input:focus {
  outline: none;
  border-color: var(--theme-text, #2a2118);
}

.t1-product-list .t1-pl-price-label input.is-invalid {
  border-color: var(--theme-danger, #b91c1c);
}

.t1-product-list .t1-pl-price-apply {
  padding: 10px;
  border: 1px solid var(--theme-text, #2a2118);
  background: var(--theme-text, #2a2118);
  color: var(--theme-bg, #f8f4ee);
  font-family: var(--theme-font-family, sans-serif);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  cursor: pointer;
  transition: opacity 0.15s ease;
}

.t1-product-list .t1-pl-price-apply:hover {
  opacity: 0.85;
}

/* Toolbar inside .t1-pl-main */
.t1-product-list .t1-pl-toolbar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 14px;
  border-bottom: 1px solid color-mix(in srgb, var(--theme-border, #c4b8a0) 55%, transparent);
  margin-bottom: 24px;
}

.t1-product-list .t1-pl-toolbar-spacer {
  flex: 1;
}

.t1-product-list .t1-pl-sort-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.t1-product-list .t1-pl-sort-label {
  font-family: var(--theme-font-family, sans-serif);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--theme-muted, #9b8e7a);
}

.t1-product-list .t1-pl-sort-select {
  padding: 8px 28px 8px 10px;
  border: 1px solid var(--theme-border, #c4b8a0);
  background: transparent;
  font-family: var(--theme-font-family, sans-serif);
  font-size: 12px;
  color: var(--theme-text, #2a2118);
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239B8E7A' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 9px center;
  background-size: 11px;
}

/* Override grid for sidebar layout main area */
.t1-product-list .t1-pl-main > .t1-pl-grid {
  max-width: none;
  padding-inline: 0;
  margin: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.t1-product-list .t1-pl-main .t1-pl-pagination {
  padding-inline: 0;
}

/* ── JPRO product card (product-list-item partial) ── */
.t1-product-list .t1-pl-item--jpro {
  display: flex;
  flex-direction: column;
}

.t1-product-list .t1-pl-item--jpro .t1-pl-link {
  display: block;
  text-decoration: none;
  color: inherit;
  flex: unset;
}

.t1-product-list .t1-pl-item--jpro .t1-pl-info {
  padding: 14px 0 8px;
  flex: unset;
}

.t1-product-list .t1-pl-item--jpro .t1-pl-name {
  display: block;
  text-decoration: none;
  color: var(--theme-text, #2a2118);
  font-family: var(--theme-font-display, Georgia, serif);
  font-size: 1rem;
  font-weight: 500;
  margin: 0 0 8px;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

/* JPRO price row */
.t1-product-list .t1-pl-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 0 0 6px;
}

.t1-product-list .t1-pl-price {
  font-family: var(--theme-font-display, Georgia, serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--theme-text, #2a2118);
  letter-spacing: -0.01em;
}

.t1-product-list .t1-pl-price--sale {
  color: var(--theme-danger, #b91c1c);
}

.t1-product-list .t1-pl-price-original {
  font-family: var(--theme-font-family, sans-serif);
  font-size: 0.82rem;
  color: var(--theme-muted, #9b8e7a);
  text-decoration: line-through;
}

/* Shipping link under price */
.t1-product-list .t1-pl-shipping {
  display: inline-block;
  font-family: var(--theme-font-family, sans-serif);
  font-size: 10px;
  color: var(--theme-muted, #9b8e7a);
  text-decoration: none;
  letter-spacing: 0.04em;
}

.t1-product-list .t1-pl-shipping:hover {
  color: var(--theme-text, #2a2118);
  text-decoration: underline;
}

/* JPRO button wrapper */
.t1-product-list .t1-pdng-both {
  padding: 0;
  margin-top: auto;
}

/* Sale / badge */
.t1-product-list .t1-pl-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 4px 9px;
  font-family: var(--theme-font-family, sans-serif);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  z-index: 4;
}

.t1-product-list .t1-pl-badge--sale {
  background: var(--theme-danger, #b91c1c);
  color: #fff;
}

/* Pagination links (category page uses <a> not <button>) */
.t1-product-list .t1-pl-pagination a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border: 1px solid var(--theme-border, #c4b8a0);
  font-family: var(--theme-font-family, sans-serif);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--theme-text, #2a2118);
}

.t1-product-list .t1-pl-pagination a:hover {
  background: color-mix(in srgb, var(--theme-text, #2a2118) 6%, transparent);
}

/* Empty state */
.t1-product-list .t1-pl-empty {
  text-align: center;
  padding: clamp(40px, 8vw, 80px) var(--theme-gutter, 48px);
  font-family: var(--theme-font-family, sans-serif);
  font-size: 14px;
  color: var(--theme-muted, #9b8e7a);
}

/* ── Hover (second) image ── */
.t1-product-list .product-img-hover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.t1-product-list .t1-pl-item:hover .product-img-hover {
  opacity: 1;
}

/* ── Price error messages ── */
.t1-product-list .t1-pl-price-error {
  display: block;
  font-family: var(--theme-font-family, sans-serif);
  font-size: 10px;
  color: var(--theme-danger, #b91c1c);
  margin-top: 4px;
  line-height: 1.3;
}

.t1-product-list .t1-pl-price-error[hidden] {
  display: none;
}

/* ── Responsive: sidebar collapses ── */
@media (max-width: 900px) {
  .t1-product-list .t1-pl-shop-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .t1-product-list .t1-pl-sidebar {
    position: static;
  }

  .t1-product-list .t1-pl-main > .t1-pl-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .t1-product-list .t1-pl-shop-hero-inner,
  .t1-product-list .t1-pl-shop-layout {
    padding-inline: 16px;
  }

  .t1-product-list .t1-pl-main > .t1-pl-grid {
    grid-template-columns: 1fr;
  }
}