:root {
  --pfp-white: #ffffff;
  --pfp-brown: #251e13;
  --pfp-gold: #fbc457;
  --pfp-gold-deep: #ca8900;
  --pfp-text: #2b251f;
  --pfp-muted: #756e68;
  --pfp-border: #eadfcd;
  --pfp-soft: #fbf8f3;
  --pfp-danger: #9c3f32;
}

html.pfp-lock-scroll {
  overflow: hidden;
}

.pfp-root,
.pfp-root * {
  box-sizing: border-box;
}

.pfp-root {
  width: 100%;
  max-width: 1480px;
  margin: 0 auto;
  padding: 24px 12px 56px;
  color: var(--pfp-text);
  font-family: "Montserrat", Arial, sans-serif;
}

.pfp-page-title {
  margin: 0 0 28px;
  color: var(--pfp-brown);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 40px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
}

.pfp-layout {
  position: relative;
  display: grid;
  grid-template-columns: 228px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.pfp-mobile-trigger {
  display: none;
}

.pfp-sidebar {
  position: sticky;
  top: 24px;
  z-index: 20;
  max-height: calc(100vh - 48px);
  overflow: auto;
  padding: 16px;
  background: var(--pfp-white);
  border: 1px solid var(--pfp-border);
  border-radius: 14px;
  box-shadow: 0 12px 36px rgba(37, 30, 19, 0.06);
  scrollbar-width: thin;
}

.pfp-sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--pfp-border);
}

.pfp-sidebar-header h2,
.pfp-filter-section h3 {
  margin: 0;
  color: var(--pfp-brown);
  font-family: "Montserrat", Arial, sans-serif;
}

.pfp-sidebar-header h2 {
  font-size: 18px;
  font-weight: 600;
}

.pfp-close {
  display: none;
  width: 36px;
  height: 36px;
  padding: 0;
  color: var(--pfp-brown);
  background: transparent;
  border: 0;
  border-radius: 50%;
  font: 300 30px/1 Arial, sans-serif;
  cursor: pointer;
}

.pfp-filter-section + .pfp-filter-section {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--pfp-border);
}

.pfp-filter-section h3 {
  margin-bottom: 14px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.pfp-filter-list,
.pfp-filter-list ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.pfp-filter-list li + li {
  margin-top: 5px;
}

.pfp-category-row {
  display: flex;
  align-items: center;
  gap: 6px;
}

.pfp-filter-list label {
  position: relative;
  display: inline-flex;
  flex: 1;
  align-items: center;
  gap: 10px;
  min-width: 0;
  padding: 7px 4px;
  color: var(--pfp-text);
  font-size: 13px;
  line-height: 1.4;
  cursor: pointer;
}

.pfp-filter-input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.pfp-checkbox-ui {
  position: relative;
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  background: var(--pfp-white);
  border: 1px solid #cdbfa8;
  border-radius: 4px;
  transition: 0.18s ease;
}

.pfp-filter-input:checked + .pfp-checkbox-ui {
  background: var(--pfp-brown);
  border-color: var(--pfp-brown);
}

.pfp-filter-input:checked + .pfp-checkbox-ui::after {
  position: absolute;
  top: 2px;
  left: 5px;
  width: 5px;
  height: 9px;
  border: solid var(--pfp-gold);
  border-width: 0 2px 2px 0;
  content: "";
  transform: rotate(45deg);
}

.pfp-filter-input:focus-visible + .pfp-checkbox-ui {
  outline: 3px solid rgba(251, 196, 87, 0.42);
  outline-offset: 2px;
}

.pfp-filter-name {
  min-width: 0;
  overflow-wrap: anywhere;
}

.pfp-category-toggle {
  display: inline-grid;
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  padding: 0;
  place-items: center;
  color: var(--pfp-brown);
  background: transparent;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
}

.pfp-category-toggle:hover,
.pfp-category-toggle:focus-visible {
  background: var(--pfp-soft);
}

.pfp-category-toggle span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  border: 0;
  font-size: 13px;
  line-height: 1;
  transform: rotate(-90deg);
  transform-origin: center;
  transition: transform 0.18s ease;
}

.pfp-category-toggle span::before {
  content: "▾";
}

.pfp-category-toggle[aria-expanded="true"] span {
  transform: rotate(0deg);
}

.pfp-category-children {
  margin: 4px 0 4px 18px !important;
  padding-left: 14px !important;
  border-left: 0;
}


.pfp-category-item.pfp-depth-0 > .pfp-category-row > label .pfp-filter-name,
.pfp-category-item.pfp-depth-0 > .pfp-category-row > .pfp-category-group-name {
  font-size: 13.5px;
  font-weight: 600;
}

.pfp-category-item.pfp-depth-1 > .pfp-category-row > label .pfp-filter-name,
.pfp-category-item.pfp-depth-1 > .pfp-category-row > .pfp-category-group-name,
.pfp-category-item.pfp-depth-2 > .pfp-category-row > label .pfp-filter-name,
.pfp-category-item.pfp-depth-2 > .pfp-category-row > .pfp-category-group-name {
  font-size: 12.5px;
  font-weight: 500;
}

.pfp-sidebar-actions {
  display: grid;
  gap: 10px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--pfp-border);
}

.pfp-apply,
.pfp-clear,
.pfp-empty-clear,
.pfp-retry {
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 8px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.18s ease;
}

.pfp-apply {
  display: none;
  color: var(--pfp-brown);
  background: var(--pfp-gold);
  border: 1px solid var(--pfp-gold);
}

.pfp-clear,
.pfp-empty-clear,
.pfp-retry {
  color: var(--pfp-brown);
  background: transparent;
  border: 1px solid var(--pfp-brown);
}

.pfp-clear:hover,
.pfp-empty-clear:hover,
.pfp-retry:hover {
  color: var(--pfp-white);
  background: var(--pfp-brown);
}

.pfp-clear:disabled {
  opacity: 0.42;
  cursor: not-allowed;
}

.pfp-main {
  position: relative;
  min-width: 0;
}

.pfp-results-summary {
  margin-bottom: 18px;
  color: var(--pfp-muted);
  font-size: 12px;
}

.pfp-products-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.pfp-product-card {
  min-width: 0;
  text-align: center;
}

.pfp-product-image {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: transparent;
}

.pfp-product-image img {
  display: block;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  object-fit: cover !important;
  object-position: center !important;
  transition: transform 0.32s ease;
}

.pfp-product-card:hover .pfp-product-image img {
  transform: scale(1.025);
}

.pfp-sale-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 5px 9px;
  color: var(--pfp-brown);
  background: var(--pfp-gold);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.pfp-product-content {
  padding-top: 11px;
}

.pfp-product-title {
  min-height: 40px;
  margin: 0 0 5px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.35;
}

.pfp-product-title a {
  color: var(--pfp-text);
  text-decoration: none;
}

.pfp-product-title a:hover {
  color: var(--pfp-gold-deep);
}

.pfp-product-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-height: 16px;
  margin-bottom: 7px;
}

.pfp-stars {
  position: relative;
  display: inline-block;
  color: #ded5c8;
  font-family: Arial, sans-serif;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0;
}

.pfp-stars::before {
  content: "★★★★★";
}

.pfp-stars-fill {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  color: var(--pfp-gold-deep);
  white-space: nowrap;
}

.pfp-rating-count {
  color: #aaa198;
  font-size: 10px;
}

.pfp-product-price {
  color: #15110d;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.pfp-product-price del {
  margin-left: 4px;
  color: #8f8881;
  font-size: 11px;
  font-weight: 400;
  opacity: 1;
}

.pfp-product-price ins {
  color: inherit;
  text-decoration: none;
}

.pfp-pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 42px;
}

.pfp-page-button {
  display: inline-grid;
  min-width: 38px;
  height: 38px;
  padding: 0 10px;
  place-items: center;
  color: var(--pfp-brown);
  background: var(--pfp-white);
  border: 1px solid var(--pfp-border);
  border-radius: 50%;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 12px;
  cursor: pointer;
}

.pfp-page-button:hover,
.pfp-page-button.is-current {
  color: var(--pfp-white);
  background: var(--pfp-brown);
  border-color: var(--pfp-brown);
}

.pfp-page-button:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.pfp-page-ellipsis {
  color: var(--pfp-muted);
}

.pfp-loading {
  position: absolute;
  top: 42px;
  left: 50%;
  z-index: 8;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  color: var(--pfp-brown);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--pfp-border);
  border-radius: 999px;
  box-shadow: 0 8px 28px rgba(37, 30, 19, 0.12);
  font-size: 12px;
  transform: translateX(-50%);
}

.pfp-spinner {
  width: 16px;
  height: 16px;
  border: 2px solid #e3d7c5;
  border-top-color: var(--pfp-gold-deep);
  border-radius: 50%;
  animation: pfp-spin 0.75s linear infinite;
}

@keyframes pfp-spin {
  to { transform: rotate(360deg); }
}

.pfp-root.is-loading .pfp-results {
  opacity: 0.48;
  pointer-events: none;
}

.pfp-empty-state,
.pfp-request-error {
  display: grid;
  justify-items: center;
  gap: 10px;
  padding: 70px 20px;
  text-align: center;
  background: var(--pfp-soft);
  border: 1px solid var(--pfp-border);
  border-radius: 14px;
}

.pfp-empty-state > span {
  color: var(--pfp-gold-deep);
  font-size: 42px;
  line-height: 1;
}

.pfp-empty-state h3,
.pfp-request-error strong {
  margin: 0;
  color: var(--pfp-brown);
  font-size: 18px;
}

.pfp-empty-state p,
.pfp-request-error span {
  margin: 0 0 8px;
  color: var(--pfp-muted);
  font-size: 13px;
}

.pfp-admin-only-note {
  padding: 10px;
  color: #6c4b00;
  background: #fff8df;
  border: 1px solid #f4d270;
  border-radius: 8px;
  font-size: 12px;
}

.pfp-overlay {
  display: none;
}

@media (max-width: 900px) {
  .pfp-root {
    padding-top: 18px;
  }

  .pfp-layout {
    display: block;
  }

  .pfp-mobile-trigger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    width: 100%;
    min-height: 46px;
    margin: 0 0 22px;
    color: var(--pfp-brown);
    background: var(--pfp-white);
    border: 1px solid var(--pfp-brown);
    border-radius: 8px;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
  }

  .pfp-filter-icon {
    position: relative;
    width: 17px;
    height: 14px;
    border-top: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
  }

  .pfp-filter-icon::before {
    position: absolute;
    top: 5px;
    left: 0;
    width: 17px;
    border-top: 1.5px solid currentColor;
    content: "";
  }

  .pfp-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 100002;
    width: min(390px, 90vw);
    height: 100dvh;
    max-height: none;
    padding: 22px;
    border: 0;
    border-radius: 0;
    box-shadow: -18px 0 55px rgba(23, 17, 10, 0.2);
    transform: translateX(105%);
    visibility: hidden;
    transition: transform 0.25s ease, visibility 0.25s ease;
  }

  .pfp-root.filters-open .pfp-sidebar {
    transform: translateX(0);
    visibility: visible;
  }

  .pfp-close {
    display: inline-grid;
    place-items: center;
  }

  .pfp-overlay {
    position: fixed;
    inset: 0;
    z-index: 100001;
    display: block;
    background: rgba(20, 15, 9, 0.5);
    backdrop-filter: blur(1px);
  }

  .pfp-overlay[hidden] {
    display: none;
  }

  .pfp-apply {
    display: block;
  }

  .pfp-products-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .pfp-root {
    padding: 16px 10px 42px;
  }

  .pfp-page-title {
    margin-bottom: 20px;
    font-size: 34px;
  }

  .pfp-mobile-trigger {
    margin-bottom: 16px;
  }

  .pfp-results-summary {
    margin-bottom: 14px;
    font-size: 11px;
  }

  .pfp-products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px 10px;
  }

  .pfp-product-title {
    min-height: 38px;
    font-size: 10.5px;
    line-height: 1.3;
  }

  .pfp-product-content {
    padding-top: 8px;
  }

  .pfp-product-price {
    font-size: 12px;
  }

  .pfp-product-price del {
    font-size: 9px;
  }

  .pfp-stars {
    font-size: 10px;
  }

  .pfp-rating-count {
    font-size: 8.5px;
  }

  .pfp-sale-badge {
    top: 7px;
    left: 7px;
    padding: 4px 7px;
    font-size: 8px;
  }

  .pfp-pagination {
    margin-top: 32px;
  }

  .pfp-page-button {
    min-width: 34px;
    height: 34px;
    font-size: 11px;
  }
}

@media (max-width: 390px) {
  .pfp-root {
    padding-right: 8px;
    padding-left: 8px;
  }

  .pfp-products-grid {
    column-gap: 8px;
  }
}


/* Compatibilidade com estilos globais do Elementor, Hello e addons. */
.pfp-root .pfp-category-children[hidden],
.pfp-root .pfp-overlay[hidden],
.pfp-root .pfp-loading[hidden] {
  display: none !important;
}

.pfp-root .pfp-category-group-name {
  display: inline-flex;
  flex: 1;
  align-items: center;
  min-width: 0;
  padding: 7px 4px;
  color: var(--pfp-brown);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
}

.pfp-root button.pfp-mobile-trigger,
.pfp-root button.pfp-close,
.pfp-root button.pfp-category-toggle,
.pfp-root button.pfp-apply,
.pfp-root button.pfp-clear,
.pfp-root button.pfp-empty-clear,
.pfp-root button.pfp-retry,
.pfp-root button.pfp-page-button {
  -webkit-appearance: none !important;
  appearance: none !important;
  box-shadow: none !important;
  text-decoration: none !important;
  text-shadow: none !important;
  outline-offset: 3px;
}

.pfp-root button.pfp-mobile-trigger {
  display: none !important;
  color: var(--pfp-brown) !important;
  background: var(--pfp-white) !important;
  border: 1px solid var(--pfp-brown) !important;
  border-radius: 8px !important;
  fill: var(--pfp-brown) !important;
}

.pfp-root button.pfp-mobile-trigger:hover,
.pfp-root button.pfp-mobile-trigger:focus-visible {
  color: var(--pfp-white) !important;
  background: var(--pfp-brown) !important;
  border-color: var(--pfp-brown) !important;
  fill: var(--pfp-white) !important;
}

.pfp-root button.pfp-close {
  display: none !important;
  color: var(--pfp-brown) !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 50% !important;
  font-size: 30px !important;
  line-height: 1 !important;
}

.pfp-root button.pfp-close:hover,
.pfp-root button.pfp-close:focus-visible {
  color: var(--pfp-brown) !important;
  background: var(--pfp-soft) !important;
}

.pfp-root button.pfp-category-toggle {
  color: var(--pfp-brown) !important;
  background: transparent !important;
  border: 0 !important;
}

.pfp-root button.pfp-apply {
  color: var(--pfp-brown) !important;
  background: var(--pfp-gold) !important;
  border: 1px solid var(--pfp-gold) !important;
  border-radius: 8px !important;
}

.pfp-root button.pfp-apply:hover,
.pfp-root button.pfp-apply:focus-visible {
  color: var(--pfp-white) !important;
  background: var(--pfp-brown) !important;
  border-color: var(--pfp-brown) !important;
}

.pfp-root button.pfp-clear,
.pfp-root button.pfp-empty-clear,
.pfp-root button.pfp-retry {
  color: var(--pfp-brown) !important;
  background: transparent !important;
  border: 1px solid var(--pfp-brown) !important;
  border-radius: 8px !important;
}

.pfp-root button.pfp-clear:hover,
.pfp-root button.pfp-clear:focus-visible,
.pfp-root button.pfp-empty-clear:hover,
.pfp-root button.pfp-empty-clear:focus-visible,
.pfp-root button.pfp-retry:hover,
.pfp-root button.pfp-retry:focus-visible {
  color: var(--pfp-white) !important;
  background: var(--pfp-brown) !important;
  border-color: var(--pfp-brown) !important;
}

.pfp-root button.pfp-clear:disabled {
  color: var(--pfp-muted) !important;
  background: transparent !important;
  border-color: var(--pfp-border) !important;
  opacity: 0.58 !important;
}

.pfp-root button.pfp-page-button {
  color: var(--pfp-brown) !important;
  background: var(--pfp-white) !important;
  border: 1px solid var(--pfp-border) !important;
  border-radius: 50% !important;
  line-height: 1 !important;
  fill: var(--pfp-brown) !important;
}

.pfp-root button.pfp-page-button:hover,
.pfp-root button.pfp-page-button:focus-visible,
.pfp-root button.pfp-page-button.is-current {
  color: var(--pfp-white) !important;
  background: var(--pfp-brown) !important;
  border-color: var(--pfp-brown) !important;
  fill: var(--pfp-white) !important;
}

.pfp-root button.pfp-page-button:disabled {
  color: var(--pfp-muted) !important;
  background: var(--pfp-white) !important;
  border-color: var(--pfp-border) !important;
  opacity: 0.45 !important;
}

@media (max-width: 900px) {
  .pfp-root button.pfp-mobile-trigger {
    display: inline-flex !important;
  }

  .pfp-root button.pfp-close {
    display: inline-grid !important;
  }

  .pfp-root button.pfp-apply {
    display: block !important;
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pfp-root *,
  .pfp-root *::before,
  .pfp-root *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}


/* Refinamentos visuais v1.1.2 */
.pfp-root button.pfp-apply {
  display: none !important;
}

.pfp-root .pfp-category-item.pfp-depth-0 > .pfp-category-row > label .pfp-filter-name,
.pfp-root .pfp-category-item.pfp-depth-0 > .pfp-category-row > .pfp-category-group-name,
.pfp-root .pfp-brand-list .pfp-filter-name {
  font-size: 13px;
  font-weight: 500;
}

.pfp-root .pfp-category-item.pfp-depth-1 > .pfp-category-row > label .pfp-filter-name,
.pfp-root .pfp-category-item.pfp-depth-1 > .pfp-category-row > .pfp-category-group-name,
.pfp-root .pfp-category-item.pfp-depth-2 > .pfp-category-row > label .pfp-filter-name,
.pfp-root .pfp-category-item.pfp-depth-2 > .pfp-category-row > .pfp-category-group-name {
  font-size: 12px;
  font-weight: 400;
}

.pfp-root .pfp-category-toggle {
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  margin-left: auto;
}

.pfp-root .pfp-category-toggle span {
  width: 9px;
  height: 9px;
  border-right: 1.7px solid currentColor;
  border-bottom: 1.7px solid currentColor;
  font-size: 0;
  transform: rotate(-45deg);
}

.pfp-root .pfp-category-toggle span::before {
  content: none;
}

.pfp-root .pfp-category-toggle[aria-expanded="true"] span {
  transform: rotate(45deg);
}

.pfp-root .pfp-category-children {
  margin: 4px 0 5px 16px !important;
  padding-left: 0 !important;
}

@media (max-width: 900px) {
  .pfp-root button.pfp-apply {
    display: block !important;
    width: 100%;
  }
}


/* Refinamentos visuais v1.1.3 */
.pfp-root .pfp-category-toggle {
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  margin-top: 0;
  margin-right: 2px;
  margin-left: 5px;
  align-self: center;
}

.pfp-root .pfp-category-toggle span {
  width: 6.5px;
  height: 6.5px;
  border-right-width: 1.35px;
  border-bottom-width: 1.35px;
}

.pfp-root .pfp-product-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: 100%;
  overflow: hidden;
  background: var(--pfp-white);
  border: 1px solid var(--pfp-border);
  border-radius: 10px;
  box-shadow: 0 5px 18px rgba(37, 30, 19, 0.045);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.pfp-root .pfp-product-card:hover {
  border-color: #dfcfb7;
  box-shadow: 0 9px 24px rgba(37, 30, 19, 0.08);
  transform: translateY(-2px);
}

.pfp-root .pfp-product-image {
  border-radius: 9px 9px 0 0;
}

.pfp-root .pfp-product-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 12px 11px 14px;
}

.pfp-root .pfp-product-title {
  font-weight: 600;
}

.pfp-root .pfp-product-rating {
  min-height: 18px;
}

.pfp-root .pfp-stars {
  font-size: 14px;
}

.pfp-root .pfp-rating-count {
  font-size: 10.5px;
}

.pfp-root .pfp-product-price {
  margin-top: auto;
}

@media (max-width: 767px) {
  .pfp-root .pfp-product-content {
    padding: 9px 8px 11px;
  }

  .pfp-root .pfp-product-title {
    font-weight: 600;
  }

  .pfp-root .pfp-stars {
    font-size: 12px;
  }
}


/* Refinamentos visuais v1.1.4 */
@media (min-width: 901px) {
  .pfp-root .pfp-layout {
    grid-template-columns: 228px minmax(0, 1fr);
    gap: 12px;
  }

  .pfp-root .pfp-sidebar {
    padding: 16px;
  }

  .pfp-root .pfp-products-grid {
    gap: 10px;
  }
}

.pfp-root .pfp-category-row {
  position: relative;
}

.pfp-root .pfp-category-item.has-children > .pfp-category-row > label,
.pfp-root .pfp-category-item.has-children > .pfp-category-row > .pfp-category-group-name {
  padding-right: 25px;
}

.pfp-root .pfp-category-toggle {
  position: absolute;
  top: 50%;
  right: 1px;
  display: grid;
  width: 20px;
  height: 20px;
  margin: 0;
  place-items: center;
  transform: translateY(-50%);
}

.pfp-root .pfp-category-toggle span {
  width: 5.5px;
  height: 5.5px;
  border-right-width: 1.25px;
  border-bottom-width: 1.25px;
  transform: rotate(-45deg);
  transform-origin: 50% 50%;
}

.pfp-root .pfp-category-toggle[aria-expanded="true"] span {
  transform: rotate(45deg);
}

/* Refinamentos visuais v1.1.5 */
@media (min-width: 901px) {
  .pfp-root .pfp-products-grid {
    column-gap: 5px;
    row-gap: 7px;
  }
}

.pfp-root .pfp-product-card {
  border-radius: 5px;
}

.pfp-root .pfp-product-image {
  border-radius: 4px 4px 0 0;
}

.pfp-root .pfp-product-content {
  padding: 8px 7px 9px;
}

.pfp-root .pfp-product-title {
  min-height: 34px;
  margin-bottom: 3px;
  line-height: 1.25;
}

.pfp-root .pfp-product-rating {
  min-height: 15px;
  margin-bottom: 4px;
}

.pfp-root .pfp-product-price {
  line-height: 1.25;
}

@media (max-width: 900px) {
  .pfp-root .pfp-products-grid {
    column-gap: 5px;
    row-gap: 7px;
  }
}

@media (max-width: 767px) {
  .pfp-root .pfp-product-content {
    padding: 7px 6px 8px;
  }

  .pfp-root .pfp-product-title {
    min-height: 32px;
    margin-bottom: 2px;
    line-height: 1.22;
  }

  .pfp-root .pfp-product-rating {
    min-height: 14px;
    margin-bottom: 3px;
  }
}
