.pp-cover-shop {
    --pp-cover-green: #405600;
    --pp-cover-highlight: #97C905;
    --pp-cover-ink: #15191f;
    --pp-cover-muted: #697386;
    --pp-cover-line: rgba(21, 25, 31, .10);
    --pp-cover-soft: #f8fafc;
    --pp-cover-soft-green: #f5f9ea;
    --pp-cover-card: #ffffff;
    direction: ltr;
    color: var(--pp-cover-ink);
    font-family: inherit;
    width: 100%;
    max-width: none;
    margin: 0 auto;
    padding: 26px clamp(14px, 3vw, 42px) 118px;
}

.pp-cover-shop *,
.pp-cover-shop *::before,
.pp-cover-shop *::after {
    box-sizing: border-box;
    font-family: inherit;
    letter-spacing: normal !important;
    text-transform: none !important;
}

.pp-cover-shop__topline {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
    margin: 0 auto 28px;
    width: 100%;
}

.pp-cover-shop__eyebrow {
    display: inline-flex;
    margin-bottom: 8px;
    color: var(--pp-cover-green);
    font-size: 13px;
    font-weight: 600;
}

.pp-cover-shop__topline h2 {
    margin: 0 0 8px;
    color: var(--pp-cover-ink);
    font-size: clamp(26px, 3vw, 42px);
    line-height: 1.12;
    font-weight: 700;
}

.pp-cover-shop__topline p,
.pp-cover-catalog-head p,
.pp-cover-band-panel__head p {
    margin: 0;
    color: var(--pp-cover-muted);
    font-size: 15px;
    line-height: 1.55;
}

.pp-cover-shop__notice,
.pp-cover-empty {
    padding: 16px;
    border-radius: 16px;
    border: 1px solid #fde68a;
    background: #fffbeb;
    color: #92400e;
    font-weight: 600;
}

.pp-cover-catalog-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin: 0 0 18px;
}

.pp-cover-catalog-head h3,
.pp-cover-band-panel__head h3 {
    margin: 0 0 5px;
    font-size: 22px;
    line-height: 1.25;
    font-weight: 700;
}

.pp-cover-product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(18px, 2vw, 30px);
    width: 100%;
}

.pp-cover-product-card {
    position: relative;
    width: 100%;
    text-align: left;
    border: 1px solid rgba(16, 20, 24, .08);
    background: var(--pp-cover-card);
    border-radius: 24px;
    padding: 0;
    cursor: pointer;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(15, 23, 42, .055);
    transition: border-color .22s ease, transform .22s ease, box-shadow .22s ease;
}

.pp-cover-product-card:hover,
.pp-cover-product-card.is-active {
    border-color: rgba(151, 201, 5, .95);
    transform: translateY(-3px);
    box-shadow: 0 18px 42px rgba(15, 23, 42, .095);
}

.pp-cover-product-card.is-active::after {
    content: 'Selected';
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 3;
    padding: 7px 12px;
    border-radius: 999px;
    background: #ffffff;
    color: var(--pp-cover-green);
    border: 1px solid rgba(151, 201, 5, .75);
    font-size: 12px;
    font-weight: 600;
}

.pp-cover-product-card.is-disabled {
    opacity: .55;
    cursor: not-allowed;
}

.pp-cover-product-card__image {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 330px;
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff 0%, #f7f8fa 100%);
}

.pp-cover-product-card__image img {
    width: 100%;
    height: 330px;
    object-fit: contain;
    padding: 18px;
    transition: transform .25s ease;
}

.pp-cover-product-card:hover img {
    transform: scale(1.035);
}

.pp-cover-product-card__placeholder {
    display: grid;
    place-items: center;
    min-height: 300px;
    padding: 18px;
}

.pp-cover-swatch,
.pp-cover-band-swatch {
    width: 18px;
    height: 18px;
    border-radius: 999px;
    border: 1px solid rgba(16, 20, 24, .18);
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, .70);
    display: inline-block;
}

.pp-cover-product-card__placeholder .pp-cover-swatch {
    width: 76px;
    height: 76px;
}

.pp-cover-product-card__badge {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,.94);
    color: var(--pp-cover-green);
    font-size: 12px;
    font-weight: 600;
}

.pp-cover-product-card__body {
    padding: 18px 18px 20px;
}

.pp-cover-product-card__body h4 {
    margin: 0 0 10px;
    font-size: 18px;
    line-height: 1.35;
    font-weight: 700;
    color: var(--pp-cover-ink);
}

.pp-cover-product-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 14px;
}

.pp-cover-product-card__meta span {
    padding: 6px 10px;
    border-radius: 999px;
    background: #f3f5f7;
    color: #5d6675;
    font-size: 12px;
    font-weight: 500;
}

.pp-cover-product-card__foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.pp-cover-product-card__price {
    color: var(--pp-cover-green);
    font-size: 18px;
    font-weight: 700;
}

.pp-cover-reset,
.pp-cover-band-clear {
    appearance: none;
    border: 1px solid rgba(64, 86, 0, .25);
    background: #fff;
    color: var(--pp-cover-green);
    border-radius: 999px;
    min-height: 42px;
    padding: 9px 17px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
}

.pp-cover-reset:hover,
.pp-cover-band-clear:hover {
    background: #ffffff;
    color: var(--pp-cover-green);
    border: 1px solid rgba(151, 201, 5, .75);
    border-color: var(--pp-cover-green);
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(64, 86, 0, .16);
}

.pp-cover-band-panel {
    margin: 34px 0 22px;
    padding: clamp(18px, 2.3vw, 30px);
    border: 1px solid rgba(64, 86, 0, .13);
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 22px 54px rgba(16, 20, 24, .08);
}

.pp-cover-band-panel[hidden] {
    display: none;
}

.pp-cover-band-panel__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 20px;
}

.pp-cover-band-panel__head span {
    display: inline-flex;
    color: var(--pp-cover-green);
    font-size: 13px;
    font-weight: 600;
}


.pp-cover-band-filter {
    margin: -6px 0 18px;
    max-width: 320px;
}

.pp-cover-band-filter label {
    display: grid;
    gap: 7px;
    color: #51605f;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.pp-cover-band-filter select {
    width: 100%;
    min-height: 44px;
    border: 1px solid rgba(64, 86, 0, .18);
    border-radius: 14px;
    background: #fff;
    color: var(--pp-cover-ink);
    padding: 0 12px;
    font-size: 14px;
    font-weight: 600;
    outline: none;
}

.pp-cover-band-filter select:focus {
    border-color: rgba(151, 201, 5, .9);
    box-shadow: 0 0 0 3px rgba(151, 201, 5, .16);
}

.pp-cover-band-layout {
    display: grid;
    grid-template-columns: minmax(240px, 320px) minmax(0, 1fr);
    gap: 22px;
    align-items: stretch;
}

.pp-cover-band-list {
    max-height: 430px;
    overflow-y: auto;
    padding: 4px 8px 4px 4px;
    display: grid;
    gap: 10px;
    scrollbar-width: thin;
    scrollbar-color: rgba(64,86,0,.35) transparent;
}

.pp-cover-band-list::-webkit-scrollbar {
    width: 8px;
}
.pp-cover-band-list::-webkit-scrollbar-thumb {
    background: rgba(64,86,0,.28);
    border-radius: 999px;
}

.pp-cover-band-card {
    appearance: none;
    width: 100%;
    border: 1px solid var(--pp-cover-line);
    background: #fff;
    border-radius: 18px;
    padding: 10px;
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    cursor: pointer;
    color: var(--pp-cover-ink);
    transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.pp-cover-band-card:hover,
.pp-cover-band-card.is-active {
    border-color: rgba(151, 201, 5, .90);
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgba(16, 20, 24, .07);
    background: #fff;
}

.pp-cover-band-card.is-active {
    box-shadow: 0 0 0 3px rgba(151, 201, 5, .17), 0 12px 24px rgba(16, 20, 24, .07);
}

.pp-cover-band-card.is-disabled {
    opacity: .55;
    cursor: not-allowed;
}

.pp-cover-band-card__image {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    overflow: hidden;
    background: #f8fafc;
}

.pp-cover-band-card__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.pp-cover-band-preview__image img {
    display: block;
    width: auto;
    height: auto;
    max-width: min(220px, 78%);
    max-height: 220px;
    object-fit: contain;
}

.pp-cover-band-card__image .pp-cover-band-swatch {
    width: 32px;
    height: 32px;
}

.pp-cover-band-card__name {
    min-width: 0;
    font-size: 14px;
    font-weight: 600;
    text-align: left;
    line-height: 1.25;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.pp-cover-band-preview {
    min-height: 430px;
    border-radius: 24px;
    background: linear-gradient(180deg, #ffffff 0%, #f7f8fa 100%);
    border: 1px solid rgba(64, 86, 0, .10);
    display: grid;
    grid-template-rows: minmax(260px, 1fr) auto;
    overflow: hidden;
}

.pp-cover-band-preview__image {
    display: grid;
    place-items: center;
    padding: 24px;
    min-height: 310px;
}

.pp-cover-band-preview__image > span:not(.pp-cover-band-swatch) {
    width: 92px;
    height: 92px;
    border-radius: 28px;
    background: rgba(16,20,24,.06);
    display: block;
}

.pp-cover-band-preview__image .pp-cover-band-swatch {
    width: 132px;
    height: 132px;
}

.pp-cover-band-preview__text {
    padding: 18px 22px;
    background: rgba(255,255,255,.76);
    border-top: 1px solid rgba(16,20,24,.07);
}

.pp-cover-band-preview__text strong,
.pp-cover-band-preview__text small {
    display: block;
}

.pp-cover-band-preview__text strong {
    font-size: 20px;
    line-height: 1.3;
    color: var(--pp-cover-ink);
}

.pp-cover-band-preview__text small {
    margin-top: 5px;
    color: var(--pp-cover-muted);
    font-size: 13px;
}

.pp-cover-stickybar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 14px;
    z-index: 9998;
    padding: 0 14px;
    pointer-events: none;
}

.pp-cover-stickybar__inner {
    pointer-events: auto;
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(135px, .78fr) minmax(125px, .72fr) minmax(135px, .78fr) minmax(320px, 1.35fr) minmax(145px, .58fr);
    gap: 10px;
    align-items: center;
    padding: 12px;
    border: 1px solid rgba(64, 86, 0, .14);
    border-radius: 22px;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 18px 46px rgba(16, 20, 24, .16);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.pp-cover-field { min-width: 0; }

.pp-cover-field label {
    display: block;
    margin: 0 0 4px;
    color: var(--pp-cover-muted);
    font-size: 12px;
    font-weight: 600;
}

.pp-cover-field select {
    width: 100%;
    min-height: 44px;
    border: 1px solid rgba(16, 20, 24, .12);
    border-radius: 14px;
    background: #fff;
    color: var(--pp-cover-ink);
    padding: 0 12px;
    font-size: 14px;
    font-weight: 500;
    outline: none;
}

.pp-cover-field select:focus {
    border-color: var(--pp-cover-green);
    box-shadow: 0 0 0 3px rgba(151, 201, 5, .16);
}

.pp-cover-stickybar__summary {
    min-width: 0;
    display: grid;
    grid-template-columns: 50px minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
    padding: 7px 9px;
    border-radius: 18px;
    background: #f7f8fa;
}

.pp-cover-mini-image {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    background: #fff;
    overflow: hidden;
}

.pp-cover-mini-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.pp-cover-mini-image .pp-cover-swatch {
    width: 28px;
    height: 28px;
}

.pp-cover-mini-text { min-width: 0; }
.pp-cover-mini-text strong {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 14px;
    font-weight: 600;
}
.pp-cover-mini-text small {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-top: 3px;
    color: var(--pp-cover-muted);
    font-size: 12px;
    font-weight: 400;
}

.pp-cover-price {
    color: var(--pp-cover-green);
    font-size: 17px;
    font-weight: 700;
    white-space: nowrap;
}

.pp-cover-actions { display: grid; gap: 6px; }

.pp-cover-add-button {
    width: 100%;
    min-height: 50px;
    border-radius: 15px;
    border: 1px solid var(--pp-cover-green);
    background: transparent;
    color: var(--pp-cover-green);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all .22s ease;
}

.pp-cover-add-button:hover:not(:disabled) {
    background: #ffffff;
    color: var(--pp-cover-green);
    border: 1px solid rgba(151, 201, 5, .75);
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgba(64,86,0,.20);
}

.pp-cover-add-button:disabled {
    opacity: .45;
    cursor: not-allowed;
}

.pp-cover-error {
    padding: 8px 10px;
    border-radius: 12px;
    border: 1px solid #fecaca;
    background: #fef2f2;
    color: #991b1b;
    font-size: 12px;
    font-weight: 500;
}

@media (max-width: 1180px) {
    .pp-cover-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .pp-cover-product-card__image,
    .pp-cover-product-card__image img { height: 285px; min-height: 285px; }
    .pp-cover-band-layout { grid-template-columns: minmax(220px, 280px) minmax(0, 1fr); }
    .pp-cover-stickybar__inner { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .pp-cover-stickybar__summary { grid-column: span 2; }
}

@media (max-width: 780px) {
    .pp-cover-shop { padding: 16px 12px 242px; }
    .pp-cover-shop__topline,
    .pp-cover-band-panel__head { align-items: flex-start; flex-direction: column; }
    .pp-cover-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
    .pp-cover-product-card { border-radius: 18px; }
    .pp-cover-product-card__image { min-height: 210px; }
    .pp-cover-product-card__image img { height: 220px; min-height: 0; padding: 12px; }
    .pp-cover-product-card__body { padding: 13px; }
    .pp-cover-product-card__body h4 { font-size: 15px; }
    .pp-cover-band-panel { padding: 16px; border-radius: 22px; }
    .pp-cover-band-layout { grid-template-columns: 1fr; }
    .pp-cover-band-list {
        max-height: none;
        overflow-x: auto;
        overflow-y: hidden;
        grid-auto-flow: column;
        grid-auto-columns: minmax(150px, 170px);
        padding: 4px 4px 12px;
    }
    .pp-cover-band-preview { min-height: 300px; grid-template-rows: minmax(210px, 1fr) auto; }
    .pp-cover-band-preview__image { min-height: 210px; }
    .pp-cover-band-preview__image .pp-cover-band-swatch { width: 104px; height: 104px; }
    .pp-cover-stickybar { bottom: 8px; padding: 0 8px; }
    .pp-cover-stickybar__inner { grid-template-columns: repeat(2, minmax(0, 1fr)); border-radius: 20px; padding: 10px; }
    .pp-cover-stickybar__summary,
    .pp-cover-actions { grid-column: 1 / -1; }
}

@media (max-width: 520px) {
    .pp-cover-shop { padding-bottom: 288px; }
    .pp-cover-product-grid { grid-template-columns: 1fr; }
    .pp-cover-product-card__image { min-height: 265px; }
    .pp-cover-product-card__image img { height: 275px; }
    .pp-cover-band-card { grid-template-columns: 46px minmax(0, 1fr); }
    .pp-cover-band-card__image { width: 46px; height: 46px; }
    .pp-cover-stickybar__inner { grid-template-columns: 1fr 1fr; gap: 8px; }
    .pp-cover-field label { font-size: 11px; }
    .pp-cover-field select { min-height: 40px; padding: 0 8px; font-size: 13px; }
    .pp-cover-price { font-size: 15px; }
}


/* v1.6.52 visual polish: quieter cards + compact mobile sticky bar */
.pp-cover-product-card.is-active {
    border-color: rgba(151, 201, 5, .95);
    box-shadow: 0 0 0 2px rgba(151, 201, 5, .18), 0 18px 42px rgba(15, 23, 42, .095);
}

.pp-cover-product-card.is-active::after {
    background: #ffffff;
    color: var(--pp-cover-green);
    border: 1px solid rgba(151, 201, 5, .75);
    box-shadow: 0 8px 20px rgba(15, 23, 42, .08);
}

.pp-cover-product-card__badge {
    background: rgba(255,255,255,.92);
    color: #405600;
    border: 1px solid rgba(64, 86, 0, .12);
}

.pp-cover-product-card__price,
.pp-cover-price {
    color: #405600;
}

.pp-cover-product-card__meta span {
    background: #f3f5f7;
    color: #5d6675;
}

.pp-cover-stickybar__summary {
    background: #f7f8fa;
}

@media (min-width: 1181px) {
    .pp-cover-stickybar__inner {
        max-width: min(1280px, calc(100vw - 40px));
    }
}

@media (max-width: 780px) {
    .pp-cover-shop {
        padding-bottom: 96px;
    }

    .pp-cover-stickybar {
        bottom: 0;
        padding: 0;
    }

    .pp-cover-stickybar__inner {
        width: 100%;
        max-width: none;
        margin: 0;
        border-left: 0;
        border-right: 0;
        border-bottom: 0;
        border-radius: 18px 18px 0 0;
        padding: 8px 10px calc(8px + env(safe-area-inset-bottom));
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 8px;
        align-items: center;
        background: rgba(255,255,255,.97);
    }

    .pp-cover-field {
        display: none;
    }

    .pp-cover-stickybar__summary {
        grid-column: auto;
        min-height: 54px;
        padding: 6px 8px;
        grid-template-columns: 42px minmax(0, 1fr) auto;
        border-radius: 14px;
        background: #f7f8fa;
    }

    .pp-cover-actions {
        grid-column: auto;
        min-width: 112px;
    }

    .pp-cover-mini-image {
        width: 42px;
        height: 42px;
        border-radius: 12px;
    }

    .pp-cover-mini-text strong {
        font-size: 13px;
        line-height: 1.15;
    }

    .pp-cover-mini-text small {
        font-size: 11px;
        margin-top: 2px;
    }

    .pp-cover-price {
        font-size: 13px;
    }

    .pp-cover-add-button {
        min-height: 46px;
        border-radius: 14px;
        font-size: 13px;
        padding: 0 10px;
        white-space: nowrap;
    }

    .pp-cover-error {
        position: fixed;
        left: 10px;
        right: 10px;
        bottom: 76px;
        z-index: 9999;
        box-shadow: 0 12px 28px rgba(15, 23, 42, .16);
    }
}

@media (max-width: 520px) {
    .pp-cover-shop {
        padding-bottom: 92px;
    }

    .pp-cover-stickybar__inner {
        grid-template-columns: minmax(0, 1fr) 104px;
        gap: 7px;
    }

    .pp-cover-stickybar__summary {
        grid-template-columns: 38px minmax(0, 1fr);
    }

    .pp-cover-mini-image {
        width: 38px;
        height: 38px;
    }

    .pp-cover-stickybar__summary .pp-cover-price {
        display: none;
    }

    .pp-cover-add-button {
        min-height: 44px;
        font-size: 12px;
    }
}

/* v1.6.54 mobile device selector button polish */
.pp-cover-shop {
    --pp-cover-accent: #405600;
    --pp-cover-accent-soft: rgba(151, 201, 5, .16);
    --pp-cover-hover-line: rgba(17, 24, 39, .18);
    --pp-cover-hover-shadow: rgba(15, 23, 42, .10);
}

.pp-cover-product-card,
.pp-cover-product-card:hover,
.pp-cover-product-card.is-active {
    background: #ffffff !important;
}

.pp-cover-product-card:hover {
    border-color: var(--pp-cover-hover-line) !important;
    box-shadow: 0 18px 44px var(--pp-cover-hover-shadow) !important;
    transform: translateY(-4px);
}

.pp-cover-product-card.is-active {
    border-color: rgba(64, 86, 0, .50) !important;
    box-shadow: 0 0 0 2px rgba(64, 86, 0, .10), 0 18px 42px rgba(15, 23, 42, .10) !important;
}

.pp-cover-product-card__image,
.pp-cover-product-card:hover .pp-cover-product-card__image,
.pp-cover-product-card.is-active .pp-cover-product-card__image {
    background: linear-gradient(180deg, #ffffff 0%, #f7f8fa 100%) !important;
}

.pp-cover-product-card__badge,
.pp-cover-product-card:hover .pp-cover-product-card__badge,
.pp-cover-product-card.is-active .pp-cover-product-card__badge {
    background: rgba(255, 255, 255, .94) !important;
    color: #405600 !important;
    border: 1px solid rgba(64, 86, 0, .14) !important;
}

.pp-cover-product-card.is-active::after {
    background: #111827 !important;
    color: #ffffff !important;
    border-color: #111827 !important;
}

.pp-cover-product-card__meta span {
    background: #f4f6f8 !important;
    color: #586174 !important;
}

.pp-cover-filter-toggle {
    display: none;
    appearance: none;
    border: 1px solid #97C905;
    background: #ffffff;
    color: #405600;
    border-radius: 14px;
    min-height: 44px;
    padding: 0 14px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
}

.pp-cover-filter-fields {
    display: contents;
}

@media (max-width: 780px) {
    .pp-cover-shop {
        padding-bottom: 96px;
    }

    .pp-cover-stickybar__inner {
        grid-template-columns: 94px minmax(0, 1fr) 112px !important;
        gap: 8px !important;
        align-items: center !important;
    }

    .pp-cover-filter-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        grid-column: 1;
        grid-row: 1;
    }

    .pp-cover-filter-toggle::before {
        content: '';
        width: 7px;
        height: 7px;
        margin-right: 7px;
        border-right: 2px solid currentColor;
        border-bottom: 2px solid currentColor;
        transform: rotate(-135deg) translateY(-1px);
        transition: transform .18s ease;
    }

    .pp-cover-stickybar.is-filter-open .pp-cover-filter-toggle::before {
        transform: rotate(45deg) translateY(-2px);
    }

    .pp-cover-stickybar.is-filter-open .pp-cover-filter-toggle {
        background: #405600;
        border-color: #405600;
        color: #ffffff;
        box-shadow: 0 10px 24px rgba(64, 86, 0, .18);
    }

    .pp-cover-filter-fields {
        position: absolute;
        left: 10px;
        right: 10px;
        bottom: calc(100% + 10px);
        z-index: 2;
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 12px;
        border-radius: 18px;
        border: 1px solid rgba(16, 20, 24, .12);
        background: rgba(255, 255, 255, .98);
        box-shadow: 0 18px 42px rgba(15, 23, 42, .18);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(8px);
        transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
    }

    .pp-cover-stickybar.is-filter-open .pp-cover-filter-fields {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }

    .pp-cover-filter-fields .pp-cover-field {
        display: block !important;
    }

    .pp-cover-filter-fields .pp-cover-field label {
        font-size: 12px;
        margin-bottom: 5px;
    }

    .pp-cover-filter-fields .pp-cover-field select {
        min-height: 44px;
        font-size: 14px;
        border-radius: 14px;
        padding: 0 12px;
    }

    .pp-cover-stickybar__summary {
        grid-column: 2 !important;
        grid-row: 1;
        min-width: 0;
        grid-template-columns: 42px minmax(0, 1fr) !important;
        min-height: 50px;
    }

    .pp-cover-stickybar__summary .pp-cover-price {
        display: none !important;
    }

    .pp-cover-actions {
        grid-column: 3 !important;
        grid-row: 1;
        min-width: 0 !important;
    }

    .pp-cover-add-button {
        width: 100%;
        min-height: 44px;
        font-size: 12px;
        border-radius: 14px;
        padding: 0 8px;
    }

    .pp-cover-error {
        bottom: 74px !important;
    }
}

@media (max-width: 520px) {
    .pp-cover-stickybar__inner {
        grid-template-columns: 86px minmax(0, 1fr) 100px !important;
    }

    .pp-cover-filter-toggle {
        min-height: 42px;
        padding: 0 10px;
        font-size: 12px;
    }

    .pp-cover-mini-text strong {
        font-size: 12px;
    }

    .pp-cover-mini-text small {
        font-size: 10px;
    }
}

/* v1.6.55 cover-page WhatsApp clearance: keep floating WhatsApp above the cover sticky bar only on cover shortcode pages. */
body.pp-cover-page .pp-b2b-floating-whatsapp {
    bottom: 118px !important;
}

@media (max-width: 780px) {
    body.pp-cover-page .pp-b2b-floating-whatsapp {
        bottom: 102px !important;
    }
}

@media (max-width: 520px) {
    body.pp-cover-page .pp-b2b-floating-whatsapp {
        bottom: 96px !important;
        width: 52px;
        height: 52px;
    }

    body.pp-cover-page .pp-b2b-floating-whatsapp-icon svg {
        width: 30px;
        height: 30px;
    }
}

/* v1.6.56 trader cover ordering + cleaner quantity modal */
.pp-cover-band-card__name small {
    display: block;
    margin-top: 4px;
    color: var(--pp-cover-green);
    font-size: 12px;
    font-weight: 600;
}

.pp-cover-trader-modal[hidden] { display: none; }
.pp-cover-trader-modal {
    position: fixed;
    inset: 0;
    z-index: 100000;
    display: grid;
    place-items: center;
    padding: 18px;
}
.pp-cover-trader-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, .42);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.pp-cover-trader-modal__box {
    position: relative;
    z-index: 1;
    width: min(760px, 100%);
    display: grid;
    grid-template-columns: minmax(220px, .82fr) minmax(0, 1fr);
    overflow: hidden;
    border-radius: 28px;
    background: #fff;
    border: 1px solid rgba(16, 20, 24, .10);
    box-shadow: 0 30px 80px rgba(15, 23, 42, .28);
    font-family: inherit;
}
.pp-cover-trader-modal__close {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    width: 38px;
    height: 38px;
    border-radius: 999px;
    border: 1px solid rgba(16,20,24,.12);
    background: #fff;
    color: #111827;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
}
.pp-cover-trader-modal__media {
    min-height: 360px;
    display: grid;
    place-items: center;
    background: linear-gradient(180deg, #ffffff 0%, #f7f8fa 100%);
    padding: 24px;
}
.pp-cover-trader-modal__media img {
    width: 100%;
    height: 320px;
    object-fit: contain;
}
.pp-cover-trader-modal__media .pp-cover-swatch,
.pp-cover-trader-modal__media .pp-cover-band-swatch {
    width: 132px;
    height: 132px;
}
.pp-cover-trader-modal__content {
    padding: 34px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
}
.pp-cover-trader-modal__eyebrow {
    color: var(--pp-cover-green);
    font-size: 13px;
    font-weight: 700;
}
.pp-cover-trader-modal__content h3 {
    margin: 0;
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.15;
    color: var(--pp-cover-ink);
}
.pp-cover-trader-modal__content p {
    margin: 0;
    color: var(--pp-cover-muted);
    line-height: 1.55;
}
.pp-cover-qty-row label {
    display: block;
    margin-bottom: 6px;
    color: var(--pp-cover-muted);
    font-size: 13px;
    font-weight: 600;
}
.pp-cover-qty-row input {
    width: 150px;
    min-height: 46px;
    border-radius: 14px;
    border: 1px solid rgba(16,20,24,.14);
    padding: 0 12px;
    font-size: 16px;
}
.pp-cover-trader-modal__price {
    color: var(--pp-cover-green);
    font-size: 22px;
    font-weight: 800;
}
.pp-cover-trader-add {
    min-height: 50px;
    border-radius: 16px;
    border: 1px solid var(--pp-cover-green);
    background: #fff;
    color: var(--pp-cover-green);
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
}
.pp-cover-trader-add:hover {
    background: var(--pp-cover-green);
    color: #fff;
}
body.pp-cover-modal-open { overflow: hidden; }

@media (max-width: 680px) {
    .pp-cover-trader-modal { align-items: end; padding: 10px; }
    .pp-cover-trader-modal__box { grid-template-columns: 1fr; border-radius: 24px; }
    .pp-cover-trader-modal__media { min-height: 210px; padding: 18px; }
    .pp-cover-trader-modal__media img { height: 190px; }
    .pp-cover-trader-modal__content { padding: 22px; }
    .pp-cover-qty-row input { width: 100%; }
}


/* v1.6.58 cover pricing defaults + product-style unavailable ribbon */
.pp-cover-product-card.is-disabled {
    cursor: not-allowed;
    opacity: 1;
    background: #ffffff;
}

.pp-cover-product-card.is-disabled:hover {
    transform: none;
    border-color: rgba(16, 20, 24, .08);
    box-shadow: 0 8px 24px rgba(15, 23, 42, .055);
}

.pp-cover-product-card.is-disabled .pp-cover-product-card__image {
    position: relative;
    filter: grayscale(.08);
}

.pp-cover-product-card.is-disabled .pp-cover-product-card__image img,
.pp-cover-product-card.is-disabled .pp-cover-product-card__placeholder {
    opacity: .22;
}

.pp-cover-product-card.is-disabled .pp-cover-product-card__body {
    opacity: .58;
}

.pp-cover-product-card__stamp {
    position: absolute;
    top: 30px;
    left: -54px;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 230px;
    height: 34px;
    background: #9b9b9b;
    color: #ffffff;
    font-family: inherit;
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase !important;
    letter-spacing: .03em !important;
    transform: rotate(-34deg);
    box-shadow: 0 12px 24px rgba(15, 23, 42, .12);
    pointer-events: none;
}

.pp-cover-product-card.is-disabled .pp-cover-product-card__badge {
    display: none;
}

.pp-cover-product-card.is-disabled .pp-cover-product-card__price {
    color: #b8bcc4;
}


/* v1.6.68: compact band images + exact admin band labels */
.pp-cover-band-preview__image img {
    display: block;
    width: auto;
    height: auto;
    max-width: min(220px, 78%);
    max-height: 220px;
    object-fit: contain;
}
.pp-cover-trader-modal__media[data-modal-kind="band"] img {
    display: block;
    width: auto;
    height: auto;
    max-width: min(210px, 76%);
    max-height: 210px;
    object-fit: contain;
}
@media (max-width: 1024px) {
    .pp-cover-band-preview__image img {
        max-width: min(180px, 74%);
        max-height: 180px;
    }
    .pp-cover-trader-modal__media[data-modal-kind="band"] img {
        max-width: min(170px, 72%);
        max-height: 170px;
    }
}
@media (max-width: 780px) {
    .pp-cover-band-preview {
        min-height: 245px;
        grid-template-rows: minmax(150px, auto) auto;
    }
    .pp-cover-band-preview__image {
        min-height: 150px;
        padding: 16px;
    }
    .pp-cover-band-preview__image img {
        max-width: min(150px, 70%);
        max-height: 150px;
    }
    .pp-cover-trader-modal__media[data-modal-kind="band"] img {
        max-width: min(145px, 70%);
        max-height: 145px;
    }
}
@media (max-width: 520px) {
    .pp-cover-band-preview {
        min-height: 220px;
        grid-template-rows: minmax(130px, auto) auto;
    }
    .pp-cover-band-preview__image {
        min-height: 130px;
        padding: 14px;
    }
    .pp-cover-band-preview__image img {
        max-width: min(125px, 68%);
        max-height: 125px;
    }
    .pp-cover-trader-modal__media[data-modal-kind="band"] img {
        max-width: min(120px, 68%);
        max-height: 120px;
    }
}

.pp-cover-error.is-success {
    border-color: rgba(151, 201, 5, .55);
    background: #f7fee7;
    color: #405600;
}

.pp-cover-error.is-error {
    border-color: #fecaca;
    background: #fef2f2;
    color: #991b1b;
}
