#provid-shop-archive {
  --prov-bg-card: rgba(255, 255, 255, 0.92);
  --prov-bg-card-hover: rgba(255, 255, 255, 0.98);
  --prov-border-soft: rgba(255, 255, 255, 0.9);
  --prov-shadow-soft: 0 16px 45px rgba(15, 23, 42, 0.12);
  --prov-shadow-strong: 0 22px 60px rgba(15, 23, 42, 0.20);
  --prov-accent: #ff285c;
  --prov-accent-soft: #ffe3ef;
  --prov-accent-2: #ff8a4a;
  --prov-text-main: #111827;
  --prov-text-muted: #6b7280;
}

#provid-shop-archive .products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.8rem;
  padding: 0.5rem 0;
}

.provid-product-card {
  list-style: none;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.12);
  transform-origin: center;
  transition:
    transform 0.18s ease-out,
    box-shadow 0.18s ease-out,
    border-color 0.18s ease-out,
    background 0.18s ease-out;
}

.provid-product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.20);
  border-color: rgba(248, 113, 165, 0.65);
}

.provid-product-card__thumb {
  position: relative;
  display: block;
  padding: 10px 10px 0;
}

.provid-product-card__thumb img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: #f9fafb;
  transition:
    transform 0.22s ease-out,
    box-shadow 0.22s ease-out,
    filter 0.22s ease-out;
}

#provid-shop-archive ul.products li.product .button {
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 999px;
  font-size: 59px;
  padding: 0;
  background: linear-gradient(135deg, var(--ps-brand), var(--ps-brand-soft));
  color: #f9fafb;
  border: none;
  box-shadow: 0 14px 30px rgba(225, 29, 72, .45);
  transition:
    transform .12s ease,
    box-shadow .16s ease,
    filter .12s ease;
  width: 64px;
  height: 64px;
  border-radius: 5px;
}

.provid-product-card:hover .provid-product-card__thumb img {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.20);
  filter: saturate(1.05);
}

.provid-product-card .onsale {
  position: absolute;
  top: 16px;
  inset-inline-start: 18px;
  z-index: 2;
  border-radius: 999px;
  padding: 3px 10px;
  font-size: 11px;
  font-weight: 700;
  background: rgba(15, 23, 42, 0.92);
  color: #f9fafb;
}

.provid-product-card__body {
  flex: 1;
  padding: 12px 14px 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: right;
}

.provid-product-card__title {
  margin: 2px 0 0;
  font-size: 15px;
  line-height: 19px;
  color: #0f172a;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-weight: 600 !important;
}

.provid-product-card__title a {
  text-decoration: none;
  color: inherit;
}

.provid-product-card__title a:hover {
  color: #e11d48;
}

.provid-product-card__excerpt {
  font-size: 12px;
  line-height: 1.7;
  color: #6b7280;
  min-height: 2.9em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.provid-product-card__meta {
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid rgba(226, 232, 240, 0.9);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.provid-product-card__price-wrap {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: center;
}

.provid-product-card__price .price {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  margin: 0;
  padding: 5px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #fef2f2, #fee2e2);
  border: 1px solid rgba(248, 113, 113, 0.5);
  box-shadow: 0 10px 25px rgba(248, 113, 113, 0.35);
  font-size: 14px;
  font-weight: 900;
  color: #b91c1c;
  white-space: nowrap;
}

.provid-product-card__price .price .woocommerce-Price-amount {
  font-size: 14px;
  font-weight: 900;
}

.provid-product-card__price .price del {
  font-size: 11px;
  opacity: 0.7;
}

.provid-product-card__badges {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 4px;
  font-size: 10px;
  color: #6b7280;
}

.provid-product-card__badges span {
  padding: 2px 8px;
  border-radius: 999px;
  background: #f9fafb;
  border: 1px solid rgba(226, 232, 240, 0.9);
}

.provid-product-card__atc {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
}

.provid-product-card .provid-product-card__atc-btn {
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, #fb2b63, #e11d48);
  box-shadow: 0 16px 36px rgba(225, 29, 72, 0.50);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #ffffff;
  font-size: 0;
  transition:
    transform 0.14s ease-out,
    box-shadow 0.14s ease-out,
    filter 0.14s ease-out,
    opacity 0.14s ease-out;
}

.provid-product-card__atc-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.provid-product-card .provid-product-card__atc-btn:hover {
  transform: translateY(-1px) scale(1.04);
  box-shadow: 0 20px 44px rgba(225, 29, 72, 0.60);
  filter: brightness(1.08);
}

.provid-product-card .provid-product-card__atc-btn:active {
  transform: translateY(0);
  box-shadow: 0 10px 26px rgba(225, 29, 72, 0.45);
}

.provid-product-card .provid-product-card__atc-btn:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 3px rgba(255, 255, 255, 0.98),
    0 0 0 6px rgba(225, 29, 72, 0.75);
}

.provid-product-card .provid-product-card__atc-btn.is-loading {
  opacity: 0.6;
  pointer-events: none;
}

@media (max-width: 768px) {
  #provid-shop-archive .products {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.4rem;
  }

  .provid-product-card {
    border-radius: 16px;
  }

  .provid-product-card__body {
    padding: 10px 12px 12px;
  }

  .provid-product-card__title {
    font-size: 14px;
  }

  .provid-product-card__excerpt {
    font-size: 11px;
  }

  .provid-product-card__price .price {
    font-size: 13px;
    padding-inline: 10px;
  }

  .provid-product-card .provid-product-card__atc-btn {
    width: 36px;
    height: 36px;
  }
}

#provid-shop-archive {
  direction: rtl;
  text-align: right;
  background: #fbf5f7;
  padding: 32px 0 64px;
}

.provid-shop-shell {
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: 16px;
}

.provid-shop-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 2.4fr);
  gap: 24px;
  align-items: flex-start;
}

.provid-shop-sidebar {
  position: sticky;
  top: 110px;
  align-self: flex-start;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.provid-shop-sidebar .widget {
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid rgba(148,163,184,0.18);
  box-shadow: 0 10px 30px rgba(15,23,42,0.08);
  padding: 14px 14px 12px;
}

.provid-shop-sidebar-title {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
}

.provid-shop-sidebar-placeholder {
  background: #ffffff;
  border-radius: 18px;
  border: 1px dashed rgba(148,163,184,0.5);
  padding: 14px 14px 12px;
  font-size: 13px;
  color: #6b7280;
}

.provid-shop-main {
  min-width: 0;
}

/* header */

.provid-shop-header {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 22px;
}

.provid-shop-header-main {
  flex: 1 1 260px;
  min-width: 0;
}

.provid-shop-kicker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ec4899;
  margin-bottom: 6px;
}

.provid-shop-title {
  margin: 0 0 6px;
  font-size: clamp(22px, 3.3vw, 30px);
  line-height: 1.3;
  color: #0b1220;
  font-weight: 800;
}

.provid-shop-description {
  font-size: 13px;
  line-height: 1.8;
  color: #6b7280;
  max-width: 40rem;
}

.provid-shop-header-tools {
  flex: 0 0 auto;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: flex-start;
}

.provid-shop-result-count,
.provid-shop-ordering {
  font-size: 12px;
  color: #4b5563;
}

.provid-shop-ordering .woocommerce-ordering select {
  border-radius: 999px;
  border: 1px solid rgba(148,163,184,0.7);
  font-size: 12px;
  padding: 6px 12px;
  background: #ffffff;
}

/* breakpoints */

@media (max-width: 992px) {
  .provid-shop-layout {
    grid-template-columns: minmax(0,1fr);
  }

  .provid-shop-main {
    order: 1;
  }

  .provid-shop-sidebar {
    order: 2;
    position: static;
  }
}

@media (max-width: 768px) {
  #provid-shop-archive {
    padding: 22px 0 40px;
  }

  .provid-shop-header {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .provid-shop-header-main {
    order: 1;
  }

  .provid-shop-header-tools {
    order: 2;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .provid-shop-sidebar .widget {
    border-radius: 14px;
    padding-inline: 12px;
  }
}

@media (max-width: 480px) {
  .provid-shop-shell {
    padding-inline: 12px;
  }

  .provid-shop-title {
    font-size: 20px;
  }

  .provid-shop-header-tools {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .provid-shop-ordering .woocommerce-ordering select {
    width: 100%;
  }
}

.provid-shop-filter-toggle {
  display: none;
  align-items: center;
  gap: 6px;
  border: 0;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  background: #ffffff;
  color: #0b1220;
  box-shadow: 0 10px 26px rgba(15,23,42,0.16);
  transition:
    transform 0.14s ease,
    box-shadow 0.14s ease,
    opacity 0.14s ease;
}

.provid-shop-filter-toggle__icon {
  font-size: 14px;
  line-height: 1;
}

.provid-shop-filter-toggle:hover {
  transform: translateY(-1px);
  opacity: 0.96;
  box-shadow: 0 16px 34px rgba(15,23,42,0.22);
}

.provid-shop-filter-toggle:active {
  transform: translateY(0);
  box-shadow: 0 8px 18px rgba(15,23,42,0.16);
}

@media (max-width: 992px) {
  .provid-shop-filter-toggle {
    display: inline-flex;
  }

  .provid-shop-sidebar {
    display: none;
    margin-top: 10px;
  }

  .provid-shop-sidebar.is-open {
    display: block;
  }
}

@media (max-width: 480px) {
  .provid-shop-filter-toggle {
    width: 100%;
    justify-content: center;
  }
}

/* Extra selectors imported from provid-woocommerce (1).css */

#provid-shop-archive .provid-shop-title {
  margin: 0 0 6px;
  font-size: clamp(20px, 3.1vw, 28px);
  line-height: 1.3;
  color: #0b1220;
  font-weight: 800;
}

#provid-shop-archive .provid-shop-main {
  min-width: 0;
}

#provid-shop-archive .provid-shop-header {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 18px;
}

#provid-shop-archive .provid-shop-sidebar-title {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}

#provid-shop-archive .provid-shop-kicker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ec4899;
  margin-bottom: 4px;
}

#provid-shop-archive .provid-shop-sidebar {
  align-self: flex-start;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

#provid-shop-archive .provid-shop-filter-toggle__icon {
  font-size: 14px;
  line-height: 1;
}

#provid-shop-archive .provid-shop-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 20px;
  align-items: flex-start;
}

#provid-shop-archive .provid-shop-ordering .woocommerce-ordering select {
  border-radius: 999px;
  border: 1px solid rgba(148,163,184,0.7);
  font-size: 12px;
  padding: 6px 12px;
  background: #ffffff;
}

#provid-shop-archive .provid-shop-description {
  font-size: 13px;
  line-height: 1.8;
  color: #6b7280;
  max-width: 40rem;
}

#provid-shop-archive .provid-shop-sidebar.is-open {
    display: block;
  }

#provid-shop-archive .provid-shop-header-tools {
  flex: 0 0 auto;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: flex-start;
}

#provid-shop-archive .provid-shop-shell {
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: 16px;
}

#provid-shop-archive .provid-shop-sidebar .widget {
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid rgba(148,163,184,0.18);
  box-shadow: 0 10px 30px rgba(15,23,42,0.08);
  padding: 14px 14px 12px;
}

#provid-shop-archive .provid-shop-header-main {
  flex: 1 1 260px;
  min-width: 0;
}

#provid-shop-archive .provid-shop-filter-toggle {
  display: none;
  align-items: center;
  gap: 6px;
  border: 0;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  background: #ffffff;
  color: #0b1220;
  box-shadow: 0 10px 26px rgba(15,23,42,0.16);
  transition:
    transform 0.14s ease,
    box-shadow 0.14s.ease,
    opacity 0.14s.ease;
}

#provid-shop-archive .provid-shop-ordering {
  font-size: 12px;
  color: #4b5563;
}

#provid-shop-archive .provid-shop-filter-toggle:hover {
  transform: translateY(-1px);
  opacity: 0.96;
  box-shadow: 0 16px 34px rgba(15,23,42,0.22);
}

#provid-shop-archive .provid-shop-filter-toggle:active {
  transform: translateY(0);
  box-shadow: 0 8px 18px rgba(15,23,42,0.16);
}

#provid-shop-archive .provid-shop-sidebar-placeholder {
  background: #ffffff;
  border-radius: 18px;
  border: 1px dashed rgba(148,163,184,0.5);
  padding: 14px 14px 12px;
  font-size: 13px;
  color: #6b7280;
}

.provid-shop-archive {
  padding: 2.5rem 0 3.5rem;
}

.provid-shop-shell {
  width: min(1200px, 100% - 2.5rem);
  margin-inline: auto;
}

.provid-shop-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 1.75rem;
  align-items: flex-start;
}

.provid-shop-sidebar {
  background: radial-gradient(circle at top, #020617 0, #020617 60%);
  border-radius: 1.5rem;
  padding: 1.25rem 1.35rem;
  border: 1px solid rgba(30, 64, 175, 0.5);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.75);
  max-height: calc(100vh - 7rem);
  overflow: auto;
}

.provid-shop-sidebar-inner {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.provid-shop-main {
  min-width: 0;
}

.provid-shop-sidebar-title {
  font-family: "Dana DemiBold", system-ui, -apple-system, blinkmacsystemfont, "Segoe UI", sans-serif;
  font-size: 14px;
  margin: 0 0 0.6rem;
}

.provid-shop-sidebar-placeholder {
  margin: 0.4rem 0 0;
  font-size: 12px;
  opacity: 0.75;
}

.provid-shop-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.8rem;
}

.provid-shop-header-main {
  max-width: 60%;
}

.provid-shop-kicker {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 0.35rem;
}

.provid-shop-title {
  font-family: "Dana DemiBold", system-ui, -apple-system, blinkmacsystemfont, "Segoe UI", sans-serif;
  font-size: 24px;
  margin: 0 0 0.6rem;
}

.provid-shop-description {
  font-size: 13px;
  line-height: 1.7;
  opacity: 0.86;
}

.provid-shop-header-tools {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.provid-shop-filter-toggle {
  display: none;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: radial-gradient(circle at top, #020617 0, #020617 60%);
  padding: 0.55rem 0.9rem;
  font-family: "Dana Medium", system-ui, -apple-system, blinkmacsystemfont, "Segoe UI", sans-serif;
  font-size: 12px;
  display: none;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
}

.provid-shop-filter-toggle__icon {
  font-size: 14px;
  line-height: 1;
}

.provid-shop-result-count,
.provid-shop-ordering {
  font-size: 12px;
}

@media (max-width: 1024px) {
  .provid-shop-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .provid-shop-header-main {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .provid-shop-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .provid-shop-filter-toggle {
    display: inline-flex;
  }

  .provid-shop-sidebar {
    position: fixed;
    inset-inline: 0;
    top: 0;
    bottom: 0;
    width: min(320px, 86%);
    margin-inline-start: auto;
    max-height: none;
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.22s ease, opacity 0.22s ease, visibility 0.22s ease;
    z-index: 60;
  }

  .provid-shop-sidebar.is-open {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
  }

  .provid-shop-sidebar::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.65);
    backdrop-filter: blur(3px);
    z-index: -1;
  }

  body.provid-filter-open {
    overflow: hidden;
  }
}
/* Sidebar category filter: group + checkbox tree */

.provid-shop-sidebar-inner {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.provid-filter-group {
  border-radius: 18px;

  padding: 0.9rem 0.9rem 0.8rem;
}

.provid-filter-group__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.45rem;
}

.provid-filter-group__toggle {
  border: none;
  border-radius: 999px;
  padding: 0.28rem 0.7rem;
  font-size: 11px;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  cursor: pointer;
  color: #e5e7eb;
  white-space: nowrap;
  display:none;
}

.provid-filter-group__toggle-icon {
  font-size: 10px;
  line-height: 1;
  transform-origin: center;
  transition: transform 0.18s ease;
}
.provid-product-card__atc-icon {
    width:50px;
}

.provid-filter-group__toggle[aria-expanded="true"] .provid-filter-group__toggle-icon {
  transform: rotate(180deg);
}

.provid-filter-group__body {
  margin-top: 0.25rem;
}

/* Tree structure */

.provid-cat-tree {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.provid-cat-tree .children {
  list-style: none;
  margin: 0.2rem 0.7rem 0 0;
  padding: 0;
  border-right: 1px dashed rgba(148, 163, 184, 0.35);
}

.provid-cat-tree li {
  position: relative;
  padding: 0.12rem 0;
}

/* Expander button for li with children */

.provid-cat-tree__expander {
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  inset-inline-start: 0;
  top: 0.4rem;
}

.provid-cat-tree__expander span {
  display: inline-block;
  width: 11px;
  height: 11px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.8);
  position: relative;
  background: rgba(15, 23, 42, 0.96);
}

.provid-cat-tree__expander span::before,
.provid-cat-tree__expander span::after {
  content: "";
  position: absolute;
  background: rgba(148, 163, 184, 0.9);
}

.provid-cat-tree__expander span::before {
  inset-inline: 3px;
  height: 1px;
  top: 50%;
  transform: translateY(-50%);
}

.provid-cat-tree__expander span::after {
  top: 3px;
  bottom: 3px;
  width: 1px;
  inset-inline-start: 50%;
  transform: translateX(-50%);
}

/* وقتی باز است، خط عمودی (علامت +) حذف شود */

.provid-cat-tree li.is-expanded > .provid-cat-tree__expander span::after {
  display: none;
}

/* Checkbox style */

.provid-cat-check {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
  font-size: 13px;
  color: #e5e7eb;
  padding-inline-start: 1.6rem;
}

.provid-cat-check__input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.provid-cat-check__box {
  width: 16px;
  height: 16px;
  border-radius: 6px;
  border: 1px solid rgba(148, 163, 184, 0.75);
  background: rgba(15, 23, 42, 0.9);
  display: inline-block;
  position: relative;
  flex-shrink: 0;
}

.provid-cat-check__box::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 4px;
  opacity: 0;
  transform: scale(0.7);
  transition:
    opacity 0.14s ease,
    transform 0.14s ease,
    background 0.14s ease;
}

.provid-cat-check__label {
  line-height: 1.6;
}

/* checked state */

.provid-cat-check__input:checked + .provid-cat-check__box {
  border-color: #fb2b63;
  background: radial-gradient(circle at 30% 20%, #fb7185, #fb2b63);
  box-shadow: 0 0 0 1px rgba(251, 44, 99, 0.45);
}

.provid-cat-check__input:checked + .provid-cat-check__box::after {
  opacity: 1;
  transform: scale(1);
  background: #0b1120;
}

.provid-cat-check__input:focus-visible + .provid-cat-check__box {
  outline: 2px solid #fb2b63;
  outline-offset: 2px;
}

/* Highlight current cat / ancestor */

.provid-cat-tree li.current-cat > .provid-cat-check .provid-cat-check__label,
.provid-cat-tree li.current-cat-ancestor > .provid-cat-check .provid-cat-check__label {
  color: #f97316;
}

.provid-cat-tree li.current-cat > .provid-cat-check .provid-cat-check__box,
.provid-cat-tree li.current-cat-ancestor > .provid-cat-check .provid-cat-check__box {
  border-color: #f97316;
}

/* mobile: dropdown animation for group body */

@media (max-width: 992px) {
  .provid-filter-group__body {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-4px);
    transition:
      max-height 0.24s ease,
      opacity 0.18s ease,
      transform 0.18s ease;
  }

  .provid-filter-group__body.is-open {
    max-height: 500px;
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 993px) {
  .provid-filter-group__body {
    max-height: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
.woocommerce ul.products li.product a {
    text-decoration: none;
}
/* استایل لینک "مشاهده سبد خرید" داخل کارت محصول */

#provid-shop-archive .provid-product-card__atc {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 8px;
}

/* خود لینک view cart */
#provid-shop-archive .provid-product-card__atc > a.added_to_cart.wc-forward {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 12px;
  margin: 0;
  border-radius: 999px;
  background: #ffffff !important;
  color: #0f172a !important;
  border: 1px solid rgba(148, 163, 184, 0.7) !important;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.16);
  text-decoration: none;
  white-space: nowrap;
}

/* hover / active حالت‌ها */
#provid-shop-archive .provid-product-card__atc > a.added_to_cart.wc-forward:hover {
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.22);
  transform: translateY(-1px);
}

#provid-shop-archive .provid-product-card__atc > a.added_to_cart.wc-forward:active {
  transform: translateY(0);
  box-shadow: 0 5px 14px rgba(15, 23, 42, 0.18);
}
/* چیدمان دوباره بخش قیمت + دکمه سبد در کارت محصول */

#provid-shop-archive .provid-product-card__meta {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
}

/* ستون سمت راست: دکمه + لینک سبد خرید روی هم */
#provid-shop-archive .provid-product-card__meta .provid-product-card__atc {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}

/* خود لینک "مشاهده سبد خرید" */
#provid-shop-archive .provid-product-card__meta .provid-product-card__atc > a.added_to_cart.wc-forward {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 12px;
  margin: 0;
  border-radius: 999px;
  background: #ffffff;
  color: #0f172a;
  border: 1px solid rgba(148, 163, 184, 0.7);
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.16);
  text-decoration: none;
  white-space: nowrap;
}

/* hover/active برای لینک سبد */
#provid-shop-archive .provid-product-card__meta .provid-product-card__atc > a.added_to_cart.wc-forward:hover {
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.22);
  transform: translateY(-1px);
}

#provid-shop-archive .provid-product-card__meta .provid-product-card__atc > a.added_to_cart.wc-forward:active {
  transform: translateY(0);
  box-shadow: 0 5px 14px rgba(15, 23, 42, 0.18);
}
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.added::after {
        font-family: WooCommerce;
    content: "\e017";
    margin-right: .53em;
    vertical-align: bottom;
    width: 50px;
    margin-left: 20px;
    font-size: 37px;
}