.pf-wrap {
 overflow: hidden;
}

.pf-heading {
 display: flex;
 align-items: center;
 gap: 8px;
 padding: 0;
 font-size: 19px;
 font-weight: 700;
 color: #132139;
 margin-bottom: 20px;
}

.pf-heading svg {
 color: #2C5194;
 flex-shrink: 0;
}

.pf-body {
 border-radius: 10px;
 border: 1px solid rgba(19, 33, 57, 0.10);
 background: #FFF;
 padding: 24px 20px;
}

/* Новинки */
.pf-novinki {
 margin-bottom: 20px;
}

.pf-novinki__link {
 display: flex;
 align-items: center;
 gap: 10px;
 text-decoration: none;
 color: #2C5194;
 font-size: 16px;
 font-weight: 800;
}

/* Группа аккордеона */
.pf-group {
 margin-bottom: 16px;
}

.pf-group:last-child {
 margin-bottom: 0;
}

.pf-group__head {
 display: flex;
 align-items: center;
 justify-content: space-between;
 width: 100%;
 background: none;
 border: none;
 cursor: pointer;
 text-align: left;
 gap: 8px;
 padding: 0 !important;
 text-transform: none !important;
 min-height: 0 !important;
 background: #fff !important;
}

.pf-group__label {
 font-size: 17px;
 font-weight: 700;
 color: #132139;
 flex: 1;
}

/* Кружок вокруг chevron */
.pf-toggle {
 width: 22px;
 height: 22px;
 border-radius: 50%;
 background: #F2F2F3;
 display: flex;
 align-items: center;
 justify-content: center;
 flex-shrink: 0;
}

.pf-toggle svg {
 width: 12px;
 height: 12px;
 color: #2C5194;
 transition: transform 0.3s;
}

.pf-chevron {
 color: #2C5194;
}

.pf-group.is-open .pf-toggle {
 background: #2C5194;
 border-color: #2C5194;
}

.pf-group.is-open .pf-chevron {
 color: #fff;
 transform: rotate(180deg);
}

.pf-group__body {
 display: none;
 max-height: 200px;
 overflow-y: auto;
 padding: 0 0 8px;
 margin-top: 15px !important;
}

.pf-group__body::-webkit-scrollbar {
 width: 4px;
}

.pf-group__body::-webkit-scrollbar-track {
 background: #f4f7fc;
 border-radius: 2px;
}

.pf-group__body::-webkit-scrollbar-thumb {
 background: #c5cfdf;
 border-radius: 2px;
}

.pf-group.is-open .pf-group__body {
 display: block;
}

/* Чекбокс-ссылка */
.pf-item {
 display: flex;
 align-items: flex-start;
 gap: 10px;
 text-decoration: none;
 color: rgba(19, 33, 57, 0.7);
 font-size: 14px;
 font-weight: 600;
 text-transform: none !important;
 margin-bottom: 12px !important;
}

.pf-item:last-child {
 margin-bottom: 0 !important;
}

/* Кастомный чекбокс */
.pf-checkbox {
 width: 22px;
 height: 22px;
 min-width: 22px;
 border-radius: 6px;
 border: 1px solid #E1E1E1;
 background: #fff;
 display: flex;
 align-items: center;
 justify-content: center;
}

.pf-checkbox.is-checked {
 background: #2C5194;
 border-color: #2C5194;
}

:is(.widget, .wd-widget, div[class^="vc_wp"]) {
 margin-bottom: 24px !important;
 padding-bottom: 0 !important;
 border: none !important;
}

@media (max-width: 1024px) {
 .pf-heading {
  font-size: 17px !important;
 }

 .pf-group__label {
  font-size: 16px !important;
 }
}