.plm-product-template {
    --plm-template-heading-size: 34px;
    --plm-template-heading-color: #050505;
    --plm-template-intro-size: 18px;
    --plm-template-intro-color: #717780;
    --plm-template-body-size: 15px;
    --plm-template-body-color: #111111;
    --plm-template-section-title-size: 26px;
    --plm-template-section-title-color: #050505;
    --plm-template-section-text-size: 15px;
    --plm-template-section-text-color: #747b84;
    --plm-template-button-bg: #48ad4f;
    --plm-template-button-text: #ffffff;
    --plm-template-accent: #000000;
    background: #fff;
    color: var(--plm-template-body-color);
    font-size: var(--plm-template-body-size);
}

.plm-product-template .plm-edit-loading-overlay {
    position: fixed;
    inset: 0;
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(251, 251, 250, .94);
    padding: 24px;
    opacity: 1;
    visibility: visible;
    transition: opacity .22s ease, visibility .22s ease;
}

.plm-product-template .plm-edit-loading-overlay.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.plm-product-template .plm-edit-loading-card {
    display: grid;
    justify-items: center;
    gap: 12px;
    width: min(420px, 100%);
    border: 1px solid #e1e1e1;
    background: #fff;
    padding: 34px 28px;
    text-align: center;
    box-shadow: 0 24px 70px rgba(0, 0, 0, .12);
}

.plm-product-template .plm-edit-loading-spinner {
    width: 42px;
    height: 42px;
    border: 4px solid #e8e8e8;
    border-top-color: #111;
    border-radius: 50%;
    animation: plm-edit-loading-spin .8s linear infinite;
}

.plm-product-template .plm-edit-loading-card strong {
    color: #080808;
    font-size: 20px;
    line-height: 1.2;
}

.plm-product-template .plm-edit-loading-card p {
    margin: 0;
    color: #70757d;
    font-size: 14px;
    line-height: 1.45;
}

@keyframes plm-edit-loading-spin {
    to {
        transform: rotate(360deg);
    }
}

.plm-product-template .plm-template-shell {
    width: min(1520px, calc(100vw - 48px));
    margin: 0 auto;
    padding: 48px 0 80px;
}

.plm-product-template .plm-template-breadcrumb {
    margin: 0 0 42px;
    color: #9aa0a6;
    font-size: 14px;
    font-weight: 700;
}

.plm-product-template .plm-template-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 48px;
    align-items: end;
    padding-bottom: 32px;
    border-bottom: 1px solid #e8e8e8;
}

.plm-product-template .plm-template-title-block h1 {
    margin: 0 0 12px;
    color: var(--plm-template-heading-color);
    font-size: var(--plm-template-heading-size);
    line-height: 1.08;
    letter-spacing: 0;
}

.plm-product-template .plm-template-title-block p {
    max-width: 860px;
    margin: 0;
    color: var(--plm-template-intro-color);
    font-size: var(--plm-template-intro-size);
    line-height: 1.65;
}

.plm-product-template .plm-template-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    width: 380px;
}

.plm-product-template .plm-template-gallery-thumb {
    min-width: 0;
    height: 74px;
    border: 1px solid #e0e0e0;
    border-radius: 0;
    background: #fff;
    cursor: pointer;
    padding: 10px;
}

.plm-product-template .plm-template-gallery-thumb img,
.plm-product-template .plm-template-pleat-placeholder {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.plm-product-template .plm-template-pleat-placeholder {
    background:
        repeating-linear-gradient(0deg, #f5f6f6 0 9px, #d9dddf 9px 13px),
        #f7f7f7;
    clip-path: polygon(18% 28%, 82% 28%, 90% 72%, 26% 72%);
    border: 3px solid #222;
}

.plm-product-template .plm-template-form {
    margin: 34px 0 0;
}

.plm-product-template .plm-template-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 48px;
    align-items: start;
}

.plm-product-template .plm-template-sections {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.plm-product-template .plm-template-section {
    border: 1px solid #e2e2e2;
    background: #fff;
}

.plm-product-template .plm-template-section-head {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 22px;
    align-items: center;
    min-height: 96px;
    padding: 24px 28px;
    border-bottom: 1px solid #e8e8e8;
}

.plm-product-template .plm-template-step {
    display: inline-grid;
    place-items: center;
    width: 58px;
    height: 58px;
    background: var(--plm-template-accent);
    color: #fff;
    font-size: 24px;
    font-weight: 800;
    line-height: 1;
}

.plm-product-template .plm-template-section h2 {
    margin: 0 0 5px;
    color: var(--plm-template-section-title-color);
    font-size: var(--plm-template-section-title-size);
    line-height: 1.15;
    letter-spacing: 0;
}

.plm-product-template .plm-template-section-head p {
    margin: 0;
    color: var(--plm-template-section-text-color);
    font-size: var(--plm-template-section-text-size);
    line-height: 1.45;
}

.plm-product-template .plm-template-section-body {
    padding: 28px;
}

.plm-product-template .plm-template-field-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.plm-product-template .plm-template-field {
    margin: 0;
    display: grid;
    grid-template-rows: auto auto auto;
    padding: 0;
    border: 1px solid #e5e5e5;
    background: #fff;
}

.plm-product-template .plm-template-field label {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 54px;
    margin: 0;
    padding: 0 18px;
    border-bottom: 1px solid #e5e5e5;
    background: #f8f8f8;
    color: #080808;
    font-size: 15px;
    font-weight: 900;
}

.plm-product-template .plm-template-field label span {
    display: grid;
    place-items: center;
    width: 26px;
    height: 26px;
    background: #111;
    color: #fff;
    font-size: 15px;
    line-height: 1;
}

.plm-product-template .plm-template-field input {
    width: 100%;
    height: 64px;
    border: 0;
    border-radius: 0;
    background: #fff;
    color: #111;
    font-size: 24px;
    font-weight: 800;
    padding: 0 20px;
}

.plm-product-template .plm-template-field input[readonly] {
    background: #f2f3f4;
    border-color: #d5d8dc;
    color: #5f6670;
    cursor: not-allowed;
}

.plm-product-template .plm-template-field small {
    display: block;
    margin: 0;
    padding: 12px 18px;
    border-top: 1px solid #ececec;
    color: #7b8189;
    font-size: 13px;
    line-height: 1.45;
}

.plm-product-template .plm-template-field input:focus + small {
    display: block;
}

.plm-product-template #plm_update_price {
    display: none !important;
}

.plm-product-template .plm-template-mobile-mode {
    display: none;
}

.plm-product-template .plm-template-blind-slot {
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    column-gap: 28px;
    row-gap: 18px;
    align-items: start;
}

.plm-product-template .plm-filter-search-stack {
    grid-column: 1;
    grid-row: 1 / span 3;
    display: grid;
    gap: 14px;
    align-self: start;
    position: sticky;
    top: 28px;
    z-index: 5;
}

.plm-product-template .blind-group-filter-wrap,
.plm-product-template .blind-search-container {
    grid-column: 1;
}

.plm-product-template .blind-group-filter-wrap {
    grid-row: 1;
}

.plm-product-template .blind-search-container {
    grid-row: 2;
}

.plm-product-template .blind-group-grid,
.plm-product-template .blind-group-footer {
    grid-column: 2;
}

.plm-product-template .plm-template-selected-blind-slot {
    grid-column: 2;
    grid-row: 1;
    margin: 0;
    width: 100%;
}

.plm-product-template .blind-group-grid {
    grid-row: 2;
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    max-height: none !important;
    overflow: visible !important;
    padding: 0 !important;
    align-items: start;
    justify-items: stretch;
}

.plm-product-template .blind-group-footer {
    grid-row: 3;
}

.plm-product-template .blind-item {
    display: grid !important;
    grid-template-rows: 170px auto auto;
    gap: 12px;
    width: 100% !important;
    max-width: none !important;
    flex-basis: auto !important;
    justify-self: stretch !important;
    box-sizing: border-box;
    min-width: 0;
    min-height: 0 !important;
    max-height: none;
    border: 1px solid #e3e3e3;
    border-radius: 0 !important;
    background: #fff;
    padding: 12px;
    overflow: hidden;
}

.plm-product-template .blind-item.blind-selected {
    border-color: rgba(37, 99, 235, .95) !important;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, .14), inset 0 0 0 2px rgba(37, 99, 235, .95) !important;
}

.plm-product-template .blind-item img.blind-image,
.plm-product-template .blind-item > img:first-of-type {
    width: 100%;
    height: 170px !important;
    max-height: 170px !important;
    object-fit: cover;
    background: #f2f2f2;
    border-radius: 0 !important;
}

.plm-product-template .blind-label {
    margin: 0 !important;
    color: #111;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.2;
    min-height: 16px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-align: center;
}

.plm-product-template .taxonomy-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
    min-height: 30px;
    max-height: 66px;
    overflow: hidden;
    margin: 0 !important;
}

.plm-product-template .taxonomy-icon,
.plm-product-template .taxonomy-icons img,
.plm-product-template .taxonomy-icons svg {
    width: 30px !important;
    height: 30px !important;
    margin: 0 !important;
    border-radius: 0 !important;
}

.plm-product-template .blind-item.plm-template-load-hidden {
    display: none !important;
}

.plm-product-template .blind-magnifier {
    top: 8px !important;
    right: 8px !important;
    width: 28px !important;
    height: 28px !important;
    display: grid;
    place-items: center;
    padding: 0 !important;
    border-radius: 50%;
    border: 0 !important;
    background: #fff !important;
    color: #111 !important;
    box-shadow: 0 8px 18px rgba(0, 0, 0, .16);
    font-size: 0 !important;
    font-weight: 900;
}

.plm-product-template .blind-magnifier::before {
    content: "i";
    color: #111;
    font-size: 15px;
    font-weight: 900;
    line-height: 1;
}

.plm-product-template .blind-group-filter-heading {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
}

.plm-product-template .blind-group-filter,
.plm-product-template .blind-search-container,
.plm-product-template .blind-group-filter *,
.plm-product-template .blind-search-container * {
    font-family: inherit;
}

.plm-product-template .blind-group-filter,
.plm-product-template .blind-search-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.plm-product-template .blind-group-filter-wrap {
    padding: 16px;
    border: 1px solid #e4e4e4;
    background: #fff;
}

.plm-product-template .blind-search-container {
    padding: 0;
    border: 1px solid #e4e4e4;
    background: #fff;
}

.plm-product-template .blind-group-filter-heading-icon {
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    color: #111;
}

.plm-product-template .blind-group-filter-heading-text {
    color: #111;
    font-size: 18px;
    font-weight: 900;
}

.plm-product-template .blind-group-filter-reset {
    margin-left: auto;
    min-height: 34px;
    border: 1px solid #e0e0e0;
    border-radius: 0;
    background: #fff;
    color: #8a8f96;
    padding: 0 10px;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.plm-product-template .filter-dropdown-container {
    margin: 0 !important;
}

.plm-product-template .filter-dropdown-container > label,
.plm-product-template .blind-search-label {
    display: none !important;
}

.plm-product-template .plm-template-filter-label {
    position: relative;
    display: flex;
    align-items: center;
    gap: 7px;
    margin: 0 0 8px;
    color: #111;
    font-size: 14px;
    font-weight: 800;
}

.plm-product-template .plm-template-filter-help {
    position: relative;
    display: inline-grid;
    place-items: center;
    width: 18px;
    height: 18px;
    border: 1px solid #111;
    border-radius: 50%;
    background: #fff;
    color: #111;
    padding: 0;
    font-size: 12px;
    font-weight: 900;
    line-height: 1;
    cursor: help;
}

.plm-product-template .plm-template-filter-help::after {
    content: attr(data-tooltip);
    position: absolute;
    left: 50%;
    bottom: calc(100% + 8px);
    z-index: 20;
    display: none;
    width: 220px;
    transform: translateX(-50%);
    border: 1px solid #d7d7d7;
    background: #fff;
    color: #111;
    padding: 9px 10px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.35;
    text-align: left;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .14);
}

.plm-product-template .plm-template-filter-help:hover::after,
.plm-product-template .plm-template-filter-help:focus::after {
    display: none;
}

.plm-product-template .filter-dropdown-container select,
.plm-product-template #blind-search {
    font-family: inherit;
    width: 100%;
    min-height: 48px;
    border: 1px solid #e3e3e3;
    border-radius: 0;
    background: #fff;
    color: #111;
    padding: 0 14px;
    font-size: 14px;
    font-weight: 700;
}

.plm-product-template #blind-search {
    overflow: hidden;
    text-overflow: ellipsis;
}

.plm-product-template .blind-search-container::before {
    content: "ODER";
    display: block;
    margin: 0;
    border-top: 0;
    border-bottom: 1px solid #e5e5e5;
    color: #8a8f96;
    font-size: 10px;
    font-weight: 900;
    line-height: 30px;
    text-align: center;
}

.plm-product-template .blind-group-search {
    padding: 12px;
}

.plm-product-template .blind-group-footer {
    margin-top: 18px;
}

.plm-product-template #load-more-blinds {
    width: 100%;
    min-height: 54px;
    border: 0;
    border-radius: 0;
    background: #000;
    color: #fff;
    font-weight: 900;
    text-transform: uppercase;
}

.plm-product-template #plm-next-step,
.plm-product-template #plm-previous-step,
.plm-product-template #plm-add-to-cart,
.plm-product-template .plm-apo-options > h3 {
    display: none !important;
}

.plm-product-template #plm-apo-container {
    display: block !important;
}

.plm-product-template .plm-apo-options {
    display: flex;
    flex-direction: column;
    gap: 26px;
    margin: 0;
}

.plm-product-template .plm-apo-group {
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
}

.plm-product-template .plm-apo-group h4 {
    display: flex;
    align-items: center;
    min-height: 44px;
    margin: 0 0 12px;
    padding: 0 14px;
    border-left: 5px solid #111;
    background: #f6f6f6;
    color: #111;
    font-size: 17px;
    font-weight: 900;
}

.plm-product-template .plm-apo-options-container {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    align-items: stretch;
}

.plm-product-template .plm-apo-option {
    position: relative;
    box-sizing: border-box;
    width: 100% !important;
    max-width: 100%;
    min-width: 0;
    min-height: 0;
    margin: 0 !important;
    border: 1px solid #e3e3e3 !important;
    border-radius: 0 !important;
    background: #fff !important;
    padding: 0 !important;
    overflow: hidden;
}

.plm-product-template .plm-apo-option.selected {
    border-color: rgba(37, 99, 235, .95) !important;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, .14), inset 0 0 0 2px rgba(37, 99, 235, .95);
}

.plm-product-template .plm-apo-option.selected::after {
    content: none !important;
    display: none !important;
}

.plm-product-template .plm-apo-option label {
    display: grid !important;
    grid-template-rows: 112px minmax(40px, auto) auto;
    gap: 10px;
    height: 100%;
    min-height: 208px;
    min-width: 0;
    padding: 11px !important;
    cursor: pointer;
    box-sizing: border-box;
    overflow: hidden;
}

.plm-product-template .plm-apo-image {
    width: 100% !important;
    height: 112px !important;
    object-fit: cover;
    background: #f3f3f3;
    min-width: 0;
    overflow: hidden;
}

.plm-product-template .plm-apo-option.plm-media-missing label {
    grid-template-rows: auto auto;
    min-height: 174px;
    align-content: end;
    background:
        linear-gradient(#f2f2f2, #f2f2f2) 11px 11px / calc(100% - 22px) 96px no-repeat,
        #fff;
}

.plm-product-template .plm-apo-option.plm-media-missing .plm-apo-image {
    display: none !important;
}

.plm-product-template .plm-apo-more-info-icon {
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #fff;
    color: #111;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .12);
    font-size: 0;
}

.plm-product-template .plm-apo-more-info-icon::before {
    content: "i";
    font-size: 15px;
    font-weight: 900;
}

.plm-product-template .plm-apo-name,
.plm-product-template .plm-apo-price-wrapper {
    display: block;
    min-width: 0;
    max-width: 100%;
    color: #111;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.25;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: normal;
    hyphens: auto;
    box-sizing: border-box;
}

.plm-product-template .plm-apo-name {
    align-self: end;
}

.plm-product-template .plm-apo-price-wrapper {
    align-self: end;
    font-size: 13px;
    font-weight: 900;
}

.plm-product-template .plm-apo-currency {
    display: inline-block;
    margin-right: 2px;
    color: #087a2c;
    font-weight: 1000;
}

.plm-product-template .plm-apo-price {
    display: inline-block;
    max-width: 100%;
    color: #087a2c;
    font-weight: 1000;
    overflow-wrap: anywhere;
}

.plm-product-template .plm-apo-price-inclusive {
    color: #087a2c;
    text-transform: lowercase;
}

.plm-product-template .plm-apo-price-wrapper br {
    display: none;
}

.plm-product-template .plm-apo-original-price,
.plm-product-template .plm-apo-discount-info {
    display: inline-block;
    max-width: 100%;
    overflow-wrap: anywhere;
}

.plm-product-template .plm-template-cart-row {
    display: flex;
    gap: 18px;
    align-items: stretch;
}

.plm-product-template .plm-template-quantity {
    display: grid;
    grid-template-columns: 54px 72px 54px;
    width: auto;
    border: 1px solid #000;
    background: #fff;
    margin: 0;
    padding: 0;
    float: none;
    clear: none;
    overflow: hidden;
}

.plm-product-template .plm-template-quantity .plm-template-qty-input {
    appearance: textfield;
    -moz-appearance: textfield;
    width: 72px;
    height: 56px;
    min-height: 56px;
    margin: 0;
    padding: 0 8px;
    border: 0;
    border-left: 1px solid #000;
    border-right: 1px solid #000;
    border-radius: 0;
    background: #fff;
    color: #000;
    text-align: center;
    font-size: 20px;
    font-weight: 900;
    line-height: 56px;
    box-shadow: none;
}

.plm-product-template .plm-template-quantity .plm-template-qty-input::-webkit-outer-spin-button,
.plm-product-template .plm-template-quantity .plm-template-qty-input::-webkit-inner-spin-button {
    margin: 0;
    appearance: none;
    -webkit-appearance: none;
}

.plm-product-template .plm-template-summary-quantity-row {
    align-items: center;
}

.plm-product-template .plm-template-summary-list .plm-template-summary-quantity-row {
    align-items: center;
}

.plm-product-template .plm-template-summary-list .plm-template-summary-quantity-row dd {
    flex: 0 0 auto;
    display: flex;
    justify-content: flex-end;
    margin: 0;
}

.plm-product-template .plm-summary-qty-control {
    display: inline-flex;
    align-items: center;
    width: 126px;
    height: 40px;
    border: 1px solid #4a4a4a;
    background: var(--plm-template-accent);
}

.plm-product-template .plm-summary-qty-btn,
.plm-product-template .plm-summary-qty-value {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 38px;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: var(--plm-template-accent);
    color: #fff;
    font: inherit;
    font-size: 17px;
    font-weight: 900;
    line-height: 1;
    box-shadow: none;
    box-sizing: border-box;
}

.plm-product-template .plm-summary-qty-value {
    border-left: 1px solid #4a4a4a;
    border-right: 1px solid #4a4a4a;
    cursor: default;
}

.plm-product-template .plm-summary-qty-btn {
    cursor: pointer;
}

.plm-product-template .plm-qty-btn {
    border: 0;
    border-radius: 0;
    background: #fff;
    color: #000;
    width: 100%;
    height: 56px;
    margin: 0;
    padding: 0;
    font-size: 22px;
    font-weight: 900;
    line-height: 1;
    cursor: pointer;
    box-shadow: none;
}

.plm-product-template .plm-summary-qty-control .plm-summary-qty-btn,
.plm-product-template .plm-summary-qty-control .plm-summary-qty-value {
    background: var(--plm-template-accent);
    color: #fff;
}

.plm-product-template .plm-template-cart-button {
    flex: 1;
    min-height: 58px;
    border: 0 !important;
    border-radius: 0 !important;
    background: var(--plm-template-button-bg) !important;
    color: var(--plm-template-button-text) !important;
    font-weight: 900 !important;
    text-transform: uppercase;
}

.plm-product-template .plm-template-summary {
    position: sticky;
    top: 28px;
}

.plm-product-template .plm-template-summary-panel {
    background: #111;
    color: #fff;
    box-shadow: 0 18px 42px rgba(0, 0, 0, .12);
}

.plm-product-template .plm-template-summary-panel h2 {
    margin: 0;
    padding: 34px 34px 12px;
    color: #fff;
    font-size: 30px;
    line-height: 1.1;
}

.plm-product-template .plm-template-summary-panel > p {
    margin: 0;
    padding: 0 34px 30px;
    color: #b7b7b7;
    font-size: 15px;
    line-height: 1.45;
}

.plm-product-template .plm-template-summary-list {
    margin: 0;
    padding: 0 34px;
    border-top: 1px solid #343434;
    border-bottom: 1px solid #343434;
}

.plm-product-template .plm-template-summary-list div {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    margin: 0;
    padding: 15px 0;
    border-bottom: 1px solid #343434;
}

.plm-product-template .plm-template-summary-list div:last-child {
    border-bottom: 0;
}

.plm-product-template .plm-template-summary-list .plm-template-summary-apos {
    display: block;
    padding: 0;
}

.plm-product-template .plm-template-summary-list .plm-template-summary-apos:empty {
    display: none;
}

.plm-product-template .plm-template-summary-list .plm-template-summary-apos > div {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 15px 0;
    border-bottom: 1px solid #343434;
}

.plm-product-template .plm-template-summary-list .plm-template-summary-apos > div:last-child {
    border-bottom: 0;
}

.plm-product-template .plm-template-summary-list dt {
    color: #c7c7c7;
    font-weight: 500;
}

.plm-product-template .plm-template-summary-list dd {
    margin: 0;
    color: #fff;
    font-weight: 900;
    text-align: right;
}

.plm-product-template .plm-template-summary-price {
    padding: 32px 34px 30px;
    border-bottom: 1px solid #343434;
}

.plm-product-template .plm-template-summary-price .price {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 10px 13px;
    color: #fff;
    font-size: 33px;
    font-weight: 900;
    line-height: 1.15;
}

.plm-product-template .plm-template-summary-price .price span[style*="background"] {
    border-radius: 0 !important;
}

.plm-product-template .plm-template-summary-price .price .plm-extra-discount-badge {
    display: none !important;
}

.plm-product-template .plm-template-summary-price .plm-from-label,
.plm-product-template .plm-template-summary-price .plm-from-price,
.plm-product-template .plm-template-summary-price .plm-from-current {
    color: #fff !important;
}

.plm-product-template .plm-template-summary-price .plm-from-regular,
.plm-product-template .plm-template-summary-price .plm-from-regular *,
.plm-product-template .plm-template-summary-price .plm-strike {
    color: #a8adb4 !important;
}

.plm-product-template .plm-template-summary-price .plm-from-badge {
    margin-top: 4px;
    padding: 7px 11px;
    border-radius: 0 !important;
    font-size: 21px;
    line-height: 1.05;
}

.plm-product-template .plm-template-summary-price del {
    color: #8f8f8f;
    font-size: 18px;
}

.plm-product-template .plm-template-summary-action {
    padding: 0 34px 26px;
    border-bottom: 1px solid #343434;
}

.plm-product-template .plm-template-summary-cart-button {
    width: 100%;
    min-height: 56px;
    border: 0 !important;
    border-radius: 0 !important;
    background: var(--plm-template-button-bg) !important;
    color: var(--plm-template-button-text) !important;
    font-weight: 900 !important;
    text-transform: uppercase;
}

.plm-product-template .plm-template-discount-badge {
    display: inline-flex;
    margin-top: 10px;
    padding: 7px 10px;
    background: #ed1c24;
    color: #fff;
    font-size: 14px;
    font-weight: 900;
    border-radius: 0;
}

.plm-product-template .plm-template-summary-badges {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    padding: 0 34px 24px;
    border-top: 0;
}

.plm-product-template .plm-template-summary-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-width: 0;
    padding: 16px 6px;
    border-right: 1px solid #343434;
    text-align: center;
}

.plm-product-template .plm-template-summary-badge:last-child {
    border-right: 0;
}

.plm-product-template .plm-template-summary-badge .plm-product-info-icon {
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    background: #2d2d2d;
}

.plm-product-template .plm-template-summary-badge svg {
    width: 18px;
    height: 18px;
    fill: #fff;
}

.plm-product-template .plm-template-summary-badge .dashicons {
    color: #fff !important;
}

.plm-product-template .plm-template-summary-badge > span:not(.plm-product-info-icon) {
    display: grid;
    gap: 2px;
    min-width: 0;
    justify-items: center;
}

.plm-product-template .plm-template-summary-badge strong,
.plm-product-template .plm-template-summary-badge em {
    display: block;
    color: #fff;
    font-size: 11px;
    line-height: 1.25;
    font-style: normal;
    text-transform: uppercase;
}

.plm-product-template .plm-template-summary-badge em {
    color: #d0d0d0;
    font-size: 11px;
    text-transform: none;
}

.plm-product-template .plm-template-details {
    margin-top: 64px;
}

.plm-product-template #plm-selected-blind-card,
.plm-product-template .plm-selected-blind-card {
    display: none;
    margin: 0;
    border: 1px solid #dfe4ea;
    border-radius: 0 !important;
    background: #fff;
    padding: 12px;
    box-shadow: 0 12px 28px rgba(15, 23, 42, .08);
}

.plm-product-template #plm-selected-blind-card.is-visible,
.plm-product-template .plm-selected-blind-card.is-visible {
    display: grid !important;
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
}

.plm-product-template .plm-selected-blind-media-wrap,
.plm-product-template .plm-selected-blind-media {
    min-width: 0;
}

.plm-product-template .plm-selected-blind-media {
    width: 88px;
    height: 88px;
    border-radius: 0 !important;
    overflow: hidden;
    background: #eef0f2;
}

.plm-product-template .plm-selected-blind-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.plm-product-template .plm-selected-blind-name-under-image {
    margin-top: 7px;
    color: #111;
    font-size: 13px;
    font-weight: 900;
    line-height: 1.2;
    text-align: center;
}

.plm-product-template .plm-selected-blind-kicker {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 8px;
    background: #eaf3ff;
    color: #16477f;
    padding: 4px 10px;
    border-radius: 0 !important;
    font-size: 12px;
    font-weight: 900;
    line-height: 1.2;
}

.plm-product-template #plm-selected-blind-card *,
.plm-product-template .plm-selected-blind-card * {
    border-radius: 0 !important;
}

.plm-product-template .plm-template-selected-blind-slot #plm-selected-blind-card,
.plm-product-template .plm-template-selected-blind-slot .plm-selected-blind-card,
.plm-product-template .plm-template-selected-blind-slot .plm-selected-blind-card *,
.plm-product-template .plm-template-selected-blind-slot .plm-selected-blind-card::before,
.plm-product-template .plm-template-selected-blind-slot .plm-selected-blind-card::after {
    border-radius: 0 !important;
}

.plm-product-template .plm-template-selected-blind-slot .plm-selected-blind-media,
.plm-product-template .plm-template-selected-blind-slot .plm-selected-blind-media img,
.plm-product-template .plm-template-selected-blind-slot .plm-selected-blind-kicker,
.plm-product-template .plm-template-selected-blind-slot .plm-selected-blind-meta {
    border-radius: 0 !important;
}

.plm-product-template .plm-selected-blind-title {
    display: none;
}

.plm-product-template .plm-selected-blind-meta {
    display: grid;
    gap: 4px;
    border: 1px solid #dfe4ea;
    border-radius: 0 !important;
    padding: 10px;
}

.plm-product-template .plm-selected-blind-row {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 8px;
    color: #111827;
    font-size: 13px;
    line-height: 1.35;
}

.plm-product-template .plm-selected-blind-row-label {
    color: #6b7280;
    font-weight: 800;
}

.plm-product-template .plm-selected-blind-row-value {
    min-width: 0;
    font-weight: 900;
    overflow-wrap: anywhere;
}

.plm-product-template .plm-mobile-tab-toggle {
    display: none;
}

.plm-product-template .plm-template-tabs {
    border: 1px solid #e5e5e5;
    background: #fff;
}

.plm-product-template .plm-template-tab-list {
    display: flex;
    gap: 0;
    margin: 0 !important;
    padding: 6px !important;
    border-bottom: 1px solid #e5e5e5;
    background: #f5f5f5;
}

.plm-product-template .plm-template-tab-button {
    min-height: 48px;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #777b82;
    padding: 0 24px;
    font-size: 14px;
    font-weight: 900;
    text-align: center;
    cursor: pointer;
}

.plm-product-template .plm-template-tab-button.is-active {
    background: var(--plm-template-accent);
    color: #fff;
}

.plm-product-template .plm-template-tab-panels {
    background: #fff;
}

.plm-product-template .plm-template-tab-panel {
    display: none;
    padding: 32px !important;
    color: #25282d;
    font-size: 16px;
    line-height: 1.7;
}

.plm-product-template .plm-template-tab-panel.is-active {
    display: block;
}

.plm-product-template .plm-template-tab-panel h2,
.plm-product-template .plm-template-tab-panel h3,
.plm-product-template .plm-template-tab-panel .woocommerce-Reviews-title {
    margin: 0 0 18px;
    color: #111;
    font-size: 24px;
    line-height: 1.25;
    letter-spacing: 0;
}

.plm-product-template .plm-template-tab-panel p,
.plm-product-template .plm-template-tab-panel li {
    color: #25282d;
    font-size: 16px;
    line-height: 1.75;
}

.plm-product-template .plm-template-tab-panel table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.plm-product-template .plm-template-tab-panel th,
.plm-product-template .plm-template-tab-panel td {
    border: 1px solid #e5e5e5;
    padding: 12px 14px;
    text-align: left;
}

.plm-product-template .plm-template-tab-panel input,
.plm-product-template .plm-template-tab-panel textarea,
.plm-product-template .plm-template-tab-panel select {
    border: 1px solid #dedede;
    border-radius: 0;
}

.plm-product-template .plm-template-tab-panel button,
.plm-product-template .plm-template-tab-panel .button,
.plm-product-template .plm-template-tab-panel input[type="submit"] {
    border-radius: 0;
    background: #111;
    color: #fff;
    font-weight: 900;
}

.plm-product-template .plm-template-details .woocommerce-tabs {
    border: 0;
    background: transparent;
}

.plm-product-template .plm-template-details .woocommerce-tabs ul.tabs::before,
.plm-product-template .plm-template-details .woocommerce-tabs ul.tabs::after,
.plm-product-template .plm-template-details .woocommerce-tabs ul.wc-tabs::before,
.plm-product-template .plm-template-details .woocommerce-tabs ul.wc-tabs::after {
    display: none !important;
}

.plm-product-template .plm-template-details .woocommerce-tabs ul.tabs li,
.plm-product-template .plm-template-details .woocommerce-tabs ul.wc-tabs li,
.plm-product-template .plm-template-details ul.tabs.wc-tabs li {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
}

.plm-product-template .plm-template-details .woocommerce-tabs ul.tabs li::before,
.plm-product-template .plm-template-details .woocommerce-tabs ul.tabs li::after,
.plm-product-template .plm-template-details .woocommerce-tabs ul.wc-tabs li::before,
.plm-product-template .plm-template-details .woocommerce-tabs ul.wc-tabs li::after {
    display: none !important;
}

.plm-product-template .plm-template-details .woocommerce-tabs ul.tabs,
.plm-product-template .plm-template-details .woocommerce-tabs ul.wc-tabs,
.plm-product-template .plm-template-details ul.tabs.wc-tabs {
    display: none !important;
}

.plm-product-template .plm-template-lightbox[hidden] {
    display: none;
}

.plm-product-template .plm-template-lightbox {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: grid;
    place-items: center;
    background: rgba(0, 0, 0, .82);
    padding: 32px;
}

.plm-product-template .plm-template-lightbox-frame {
    display: grid;
    gap: 14px;
    justify-items: center;
    margin: 0;
}

.plm-product-template .plm-template-lightbox-frame > img {
    max-width: min(980px, 92vw);
    max-height: 72vh;
    object-fit: contain;
    background: #fff;
    border-radius: 0 !important;
}

.plm-product-template .plm-template-lightbox figcaption {
    color: #fff;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0;
}

.plm-product-template .plm-template-lightbox-thumbs {
    display: flex;
    justify-content: center;
    gap: 10px;
    max-width: min(980px, 92vw);
    overflow-x: auto;
    padding: 2px 0;
}

.plm-product-template .plm-template-lightbox-thumb {
    width: 78px;
    height: 54px;
    border: 2px solid rgba(255, 255, 255, .35);
    border-radius: 0;
    background: #fff;
    padding: 3px;
    cursor: pointer;
}

.plm-product-template .plm-template-lightbox-thumb.is-active {
    border-color: #43ad4d;
}

.plm-product-template .plm-template-lightbox-thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.plm-product-template .plm-template-lightbox-close {
    position: absolute;
    top: 20px;
    right: 24px;
    z-index: 100000;
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border: 0;
    background: #000;
    color: #fff;
    font-size: 42px;
    line-height: 1;
    cursor: pointer;
}

.plm-product-template .plm-template-lightbox-nav {
    position: absolute;
    top: 50%;
    z-index: 100000;
    display: grid;
    place-items: center;
    width: 54px;
    height: 70px;
    transform: translateY(-50%);
    border: 1px solid rgba(255, 255, 255, .3);
    border-radius: 0;
    background: #000;
    color: #fff;
    font-size: 54px;
    font-weight: 300;
    line-height: 1;
    cursor: pointer;
}

.plm-product-template .plm-template-lightbox-prev {
    left: 26px;
}

.plm-product-template .plm-template-lightbox-next {
    right: 26px;
}

.plm-product-template .plm-apo-popup-content {
    border-radius: 0 !important;
}

.plm-product-template .plm-apo-popup-close {
    position: absolute !important;
    top: 12px !important;
    right: 12px !important;
    z-index: 100000 !important;
    display: grid !important;
    place-items: center !important;
    width: 42px !important;
    height: 42px !important;
    float: none !important;
    border: 0 !important;
    background: #000 !important;
    color: #fff !important;
    font-size: 34px !important;
    line-height: 1 !important;
}

body .plm-product-template ~ .blind-popup,
body .plm-product-template ~ .blind-lightbox,
body .plm-product-template ~ .fabric-popup,
body .plm-product-template ~ .fabric-lightbox,
body .blind-modal .modal-content,
body #filter-help-modal .kiso24-help-modal-content,
.plm-product-template .blind-popup,
.plm-product-template .blind-lightbox,
.plm-product-template .fabric-popup,
.plm-product-template .fabric-lightbox {
    border-radius: 0 !important;
}

body .blind-popup-close,
body .blind-lightbox-close,
body .fabric-popup-close,
body .fabric-lightbox-close,
body .blind-modal .close,
body #filter-help-modal .kiso24-help-modal-close,
body .mfp-close {
    z-index: 100000 !important;
    opacity: 1 !important;
    display: grid !important;
    place-items: center !important;
    width: 42px !important;
    height: 42px !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: #000 !important;
    color: #fff !important;
    font-size: 34px !important;
    font-weight: 800 !important;
    line-height: 1 !important;
    text-align: center !important;
    text-shadow: none !important;
}

body #filter-help-modal .kiso24-help-modal-header {
    display: none !important;
}

body #filter-help-modal .plm-template-help-content h3 {
    margin: 0 0 12px;
    color: #111;
    font-size: 22px;
    font-weight: 900;
    line-height: 1.2;
}

body #filter-help-modal .plm-template-help-content p {
    margin: 0;
    color: #4b5563;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.55;
}

body #filter-help-modal .plm-template-help-copy,
body #filter-help-modal .plm-template-help-copy p,
body #filter-help-modal .plm-template-help-copy li {
    color: #4b5563;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.55;
}

body #filter-help-modal .plm-template-help-copy p {
    margin: 0 0 10px;
}

body #filter-help-modal .plm-template-help-copy p:last-child {
    margin-bottom: 0;
}

body #filter-help-modal .plm-template-help-copy ul,
body #filter-help-modal .plm-template-help-copy ol {
    margin: 8px 0 0 20px;
    padding: 0;
}

body #filter-help-modal .plm-template-help-copy a {
    color: #111;
    font-weight: 800;
    text-decoration: underline;
}

body .plm-popup-title-top {
    display: block !important;
    order: -20 !important;
    width: 100% !important;
    margin: 0 52px 16px 0 !important;
    padding: 0 !important;
    color: #111 !important;
    font-family: inherit !important;
    font-size: 24px !important;
    font-weight: 900 !important;
    line-height: 1.2 !important;
    text-align: left !important;
}

.plm-product-template .plm-template-catfish {
    display: none;
}

@media (max-width: 1180px) {
    .plm-product-template .plm-template-hero,
    .plm-product-template .plm-template-layout {
        grid-template-columns: 1fr;
    }

    .plm-product-template .plm-template-gallery,
    .plm-product-template .plm-template-summary {
        width: 100%;
    }

    .plm-product-template .plm-template-summary {
        position: static;
    }

    .plm-product-template .plm-filter-search-stack {
        position: static;
        top: auto;
        z-index: auto;
    }
}

@media (max-width: 760px) {
    .plm-product-template .plm-template-shell {
        width: calc(100vw - 32px);
        padding: 28px 0 118px;
    }

    .plm-product-template .plm-template-breadcrumb {
        margin-bottom: 26px;
        font-size: 12px;
    }

    .plm-product-template .plm-template-title-block h1 {
        font-size: 32px;
    }

    .plm-product-template .plm-template-title-block p {
        font-size: 16px;
        line-height: 1.6;
    }

    .plm-product-template .plm-template-gallery {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 10px;
    }

    .plm-product-template .plm-template-gallery-thumb {
        height: 62px;
    }

    .plm-product-template .plm-template-section-head {
        grid-template-columns: 48px minmax(0, 1fr);
        gap: 16px;
        min-height: 82px;
        padding: 18px;
    }

    .plm-product-template .plm-template-step {
        width: 48px;
        height: 48px;
        font-size: 21px;
    }

    .plm-product-template .plm-template-section h2 {
        font-size: 24px;
    }

    .plm-product-template .plm-template-section-body {
        padding: 18px;
    }

    .plm-product-template .plm-template-field-grid {
        gap: 12px;
    }

    .plm-product-template .plm-template-field input {
        height: 58px;
        font-size: 22px;
    }

    .plm-product-template .plm-template-field-grid,
    .plm-product-template .plm-template-blind-slot {
        grid-template-columns: 1fr;
    }

    .plm-product-template .plm-template-field {
        padding: 0;
    }

    .plm-product-template .plm-template-mobile-mode {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        margin-bottom: 14px;
        border: 1px solid #e4e4e4;
        background: #f4f4f4;
    }

    .plm-product-template .plm-template-mobile-mode button {
        min-height: 44px;
        border: 0;
        background: transparent;
        color: #60656d;
        font-weight: 900;
    }

    .plm-product-template .plm-template-mobile-mode button.is-active {
        background: #000;
        color: #fff;
    }

    .plm-product-template .blind-group-filter-wrap,
    .plm-product-template .blind-search-container,
    .plm-product-template .plm-filter-search-stack,
    .plm-product-template .plm-template-selected-blind-slot,
    .plm-product-template .blind-group-grid,
    .plm-product-template .blind-group-footer {
        grid-column: 1;
        grid-row: auto;
    }

    .plm-product-template .plm-template-mode-search .blind-group-filter-wrap,
    .plm-product-template .plm-template-mode-filter .blind-search-container {
        display: none !important;
    }

    .plm-product-template .plm-template-mode-search .blind-search-container {
        display: flex !important;
    }

    .plm-product-template .plm-template-mode-search .blind-group-grid,
    .plm-product-template .plm-template-mode-search .blind-group-footer {
        display: block !important;
    }

    .plm-product-template .plm-template-mode-search .blind-group-grid {
        display: grid !important;
    }

    .plm-product-template .blind-group-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .plm-product-template .blind-item {
        grid-template-rows: 112px auto auto;
        gap: 9px;
        padding: 10px;
    }

    .plm-product-template .blind-item img.blind-image,
    .plm-product-template .blind-item > img:first-of-type {
        height: 112px !important;
        max-height: 112px !important;
    }

    .plm-product-template .blind-label {
        font-size: 13px;
        min-height: 16px;
    }

    .plm-product-template .taxonomy-icons {
        gap: 4px;
        min-height: 24px;
        max-height: 56px;
    }

    .plm-product-template .taxonomy-icon,
    .plm-product-template .taxonomy-icons img,
    .plm-product-template .taxonomy-icons svg {
        width: 26px !important;
        height: 26px !important;
    }

    .plm-product-template .plm-template-selected-blind-slot {
        grid-column: 1;
        width: 100%;
    }

    .plm-product-template #plm-selected-blind-card.is-visible,
    .plm-product-template .plm-selected-blind-card.is-visible {
        grid-template-columns: 112px minmax(0, 1fr);
        gap: 10px;
        align-items: stretch;
    }

    .plm-product-template .plm-selected-blind-media {
        width: 112px;
        height: 112px;
    }

    .plm-product-template .plm-selected-blind-kicker {
        max-width: 100%;
        white-space: normal;
    }

    .plm-product-template .plm-selected-blind-row {
        grid-template-columns: 1fr;
        gap: 1px;
    }

    .plm-product-template .plm-apo-options-container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .plm-product-template .plm-template-cart-row {
        flex-direction: column;
    }

    .plm-product-template .plm-template-quantity {
        grid-template-columns: 1fr 1fr 1fr;
        width: 100%;
    }

    .plm-product-template .plm-template-quantity .plm-template-qty-input {
        width: 100%;
    }

    .plm-product-template .plm-template-summary-panel h2 {
        font-size: 28px;
    }

    .plm-product-template .plm-template-summary-badges {
        padding-inline: 18px;
    }

    .plm-product-template .plm-template-details {
        margin-top: 36px;
    }

    .plm-product-template .plm-template-tabs,
    .plm-product-template .plm-template-details .woocommerce-tabs {
        border: 0;
    }

    .plm-product-template .plm-template-tab-list,
    .plm-product-template .plm-template-details .woocommerce-tabs ul.tabs,
    .plm-product-template .plm-template-details .woocommerce-tabs ul.wc-tabs,
    .plm-product-template .plm-template-details ul.tabs.wc-tabs {
        display: none !important;
    }

    .plm-product-template .plm-template-tab-panel,
    .plm-product-template .plm-template-details .woocommerce-Tabs-panel {
        display: none !important;
        margin: 0 0 12px !important;
        padding: 18px !important;
        border: 1px solid #e5e5e5;
    }

    .plm-product-template .plm-template-tab-panel.is-active,
    .plm-product-template .plm-template-details .woocommerce-Tabs-panel.plm-mobile-open {
        display: block !important;
    }

    .plm-product-template .plm-mobile-tab-toggle {
        display: flex;
        width: 100%;
        min-height: 56px;
        align-items: center;
        justify-content: space-between;
        border: 1px solid #e5e5e5;
        border-left: 5px solid #111;
        background: #fff;
        color: #111;
        padding: 0 16px;
        font-size: 16px;
        font-weight: 900;
        text-align: left;
    }

    .plm-product-template .plm-mobile-tab-toggle[aria-expanded="true"] {
        background: #111;
        color: #fff;
    }

    .plm-product-template .plm-mobile-tab-toggle span {
        font-size: 22px;
        line-height: 1;
    }

    .plm-product-template .plm-template-catfish {
        position: fixed;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 9998;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        width: 100%;
        box-sizing: border-box;
        min-height: 76px;
        padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
        background: #111 !important;
        color: #fff !important;
        box-shadow: 0 -10px 24px rgba(0, 0, 0, .2);
    }

    .plm-product-template .plm-template-catfish.is-hidden {
        display: none;
    }

    .plm-product-template .plm-template-catfish span {
        display: block;
        color: #bfc2c7 !important;
        font-size: 11px;
        font-weight: 900;
        text-transform: uppercase;
    }

    .plm-product-template .plm-template-catfish > div {
        min-width: 0;
        color: #fff !important;
    }

    .plm-product-template .plm-template-catfish strong {
        display: flex;
        flex-wrap: wrap;
        gap: 3px 6px;
        align-items: baseline;
        color: #fff !important;
        font-size: 22px;
        line-height: 1.1;
    }

    .plm-product-template .plm-template-catfish strong,
    .plm-product-template .plm-template-catfish strong *,
    .plm-product-template .plm-template-catfish .amount,
    .plm-product-template .plm-template-catfish bdi,
    .plm-product-template .plm-template-catfish .plm-from-label,
    .plm-product-template .plm-template-catfish .plm-from-price,
    .plm-product-template .plm-template-catfish .plm-from-current {
        color: #fff !important;
    }

    .plm-product-template .plm-template-catfish .plm-from-price {
        display: flex;
        flex-wrap: wrap;
        gap: 2px 6px;
        align-items: baseline;
    }

    .plm-product-template .plm-template-catfish .plm-from-label {
        width: 100%;
        font-size: 13px;
        line-height: 1;
    }

    .plm-product-template .plm-template-catfish .plm-from-regular,
    .plm-product-template .plm-template-catfish .plm-from-regular *,
    .plm-product-template .plm-template-catfish .plm-strike {
        color: #bfc2c7 !important;
        font-size: 14px;
    }

    .plm-product-template .plm-template-catfish .plm-from-badge {
        border-radius: 0 !important;
        background: #ed1c24;
        color: #fff !important;
        padding: 3px 7px;
        font-size: 12px;
        line-height: 1.1;
    }

    .plm-product-template .plm-template-catfish .dashicons {
        color: #fff !important;
    }

    .plm-product-template .plm-template-catfish del,
    .plm-product-template .plm-template-catfish del * {
        color: #bfc2c7 !important;
    }

    .plm-product-template .plm-template-catfish button {
        flex: 0 0 auto;
        min-width: 142px;
        min-height: 44px;
        border: 0;
        background: var(--plm-template-button-bg) !important;
        color: var(--plm-template-button-text) !important;
        padding: 0 12px;
        font-size: 12px;
        font-weight: 900;
        text-transform: uppercase;
    }
}
