.ptmw-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    max-width: 760px;
    margin-top: 18px;
}

.ptmw-trust span {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 6px 10px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 6px;
    background: rgba(255,255,255,.06);
    color: #dbeafe;
    font-size: 12px;
    font-weight: 800;
}

.ptmw-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 14px;
}

.ptmw-category-card {
    display: block;
    min-height: 112px;
    padding: 18px;
    border: 1px solid #dbe3ef;
    border-radius: 8px;
    background: #fff;
    color: #0f172a;
    text-decoration: none;
    box-shadow: 0 10px 22px rgba(15,23,42,.04);
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.ptmw-category-card:hover {
    border-color: #f59e0b;
    box-shadow: 0 16px 30px rgba(15,23,42,.09);
    transform: translateY(-3px);
}

.ptmw-category-card strong,
.ptmw-category-card span {
    display: block;
}

.ptmw-category-card strong {
    font-size: 18px;
}

.ptmw-category-card span {
    margin-top: 8px;
    color: #64748b;
    font-size: 13px;
    font-weight: 800;
}

.ptmw-products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 18px;
    margin: 24px 0;
}

.ptmw-product-filters {
    display: grid;
    grid-template-columns: minmax(180px, 1.2fr) repeat(4, minmax(130px, 1fr)) auto;
    gap: 14px;
    align-items: end;
    position: relative;
    overflow: hidden;
    border: 1px solid #d8e2ee;
    border-radius: 8px;
    background:
        linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
    padding: 18px;
    box-shadow: 0 16px 34px rgba(15,23,42,.07);
}

.ptmw-product-filters:before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 3px;
    background: linear-gradient(90deg, #f59e0b, #0f766e);
}

.ptmw-product-filters-head {
    grid-column: 1 / -1;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 4px;
}

.ptmw-product-filters-head strong {
    color: #0f172a;
    font-size: 18px;
    line-height: 1.2;
}

.ptmw-product-filters-head span {
    color: #64748b;
    font-size: 13px;
    font-weight: 700;
}

.ptmw-product-filters label {
    display: grid;
    gap: 7px;
    color: #64748b;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.ptmw-product-filters input,
.ptmw-product-filters select {
    width: 100%;
    min-height: 44px;
    border: 1px solid #dbe3ef;
    border-radius: 6px;
    background: #f8fafc;
    color: #0f172a;
    padding: 10px 11px;
    text-transform: none;
    font-weight: 700;
    outline: 0;
}

.ptmw-product-filters input:focus,
.ptmw-product-filters select:focus {
    border-color: #f59e0b;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(245,158,11,.16);
}

.ptmw-filter-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: flex-end;
}

.ptmw-filter-reset {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    border: 1px solid #dbe3ef;
    border-radius: 6px;
    background: #fff;
    color: #64748b;
    padding: 10px 12px;
    font-weight: 800;
    text-decoration: none;
}

.ptmw-filter-reset:hover {
    border-color: #cbd5e1;
    color: #0f172a;
}

.ptmw-product-card {
    min-height: 100%;
    border: 1px solid #dbe3ef;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 22px rgba(15,23,42,.04);
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.ptmw-product-card:hover {
    border-color: rgba(245,158,11,.65);
    box-shadow: 0 18px 34px rgba(15,23,42,.1);
    transform: translateY(-3px);
}

.ptmw-product-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
    background: #f1f5f9;
}

.ptmw-product-card-body {
    padding: 16px;
}

.ptmw-product-card h3 {
    min-height: 46px;
    margin: 10px 0 8px;
    font-size: 18px;
    line-height: 1.25;
}

.ptmw-product-card h3 a {
    color: #0f172a;
    text-decoration: none;
}

.ptmw-product-card h3 a:hover {
    color: #0f766e;
}

.ptmw-product-card p {
    min-height: 50px;
    margin: 0;
    color: #475569;
}

.ptmw-badge {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    border-radius: 999px;
    background: #fef3c7;
    color: #92400e;
    font-size: 12px;
    font-weight: 800;
    padding: 4px 8px;
    text-transform: uppercase;
}

.ptmw-product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 11px;
}

.ptmw-product-tags a {
    display: inline-flex;
    align-items: center;
    min-height: 25px;
    border: 1px solid #dbe3ef;
    border-radius: 999px;
    background: #f8fafc;
    color: #334155;
    padding: 4px 8px;
    font-size: 11px;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .02em;
    transition: background .18s ease, border-color .18s ease, color .18s ease;
}

.ptmw-product-tags a:hover {
    border-color: #f59e0b;
    background: #fffbeb;
    color: #92400e;
}

.ptmw-card-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 14px;
}

.ptmw-card-row strong {
    color: #0f766e;
    font-size: 18px;
}

.ptmw-compact-list {
    padding: 20px;
    border: 1px solid #dbe3ef;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 10px 22px rgba(15,23,42,.04);
}

.ptmw-list-row {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    padding: 12px 0;
    border-top: 1px solid #e5edf6;
    color: #0f172a;
    text-decoration: none;
    transition: transform .18s ease, background .18s ease;
}

.ptmw-list-row:hover {
    background: #f8fafc;
    transform: translateX(3px);
}

.ptmw-list-row:first-child {
    border-top: 0;
}

.ptmw-list-row img {
    width: 58px;
    height: 58px;
    border-radius: 6px;
    object-fit: cover;
    background: #f1f5f9;
}

.ptmw-list-row strong,
.ptmw-list-row small {
    display: block;
}

.ptmw-list-row small {
    margin-top: 3px;
    color: #64748b;
    text-transform: capitalize;
}

.ptmw-list-row em {
    color: #0f766e;
    font-style: normal;
    font-weight: 800;
    white-space: nowrap;
}

.ptmw-product-meta {
    border: 1px solid #dbe3ef;
    border-radius: 8px;
    padding: 14px;
    margin: 18px 0;
    background: #f8fafc;
}

.ptmw-product-meta dl {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
    margin: 0;
}

.ptmw-product-meta dt {
    font-size: 12px;
    color: #64748b;
    text-transform: uppercase;
    font-weight: 800;
}

.ptmw-product-meta dd {
    margin: 2px 0 0;
    color: #0f172a;
    font-weight: 800;
}

.ptmw-product-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.ptmw-download-panel {
    clear: both;
    border-top: 1px solid #dbe3ef;
    margin-top: 32px;
    padding-top: 24px;
}

.ptmw-download-panel h2 {
    margin-top: 0;
}

.ptmw-credit-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin: 12px 0 18px;
    padding: 14px;
    border: 1px solid #dbe3ef;
    border-radius: 8px;
    background: #f8fafc;
}

.ptmw-credit-summary strong {
    color: #0f172a;
    font-size: 20px;
}

.ptmw-credit-summary span {
    color: #475569;
    font-weight: 700;
}

.ptmw-download-button {
    font-weight: 800;
}

.ptmw-changelog {
    overflow: auto;
    max-height: 360px;
    background: #0f172a;
    color: #e2e8f0;
    border-radius: 8px;
    padding: 16px;
    white-space: pre-wrap;
}

.ptmw-membership-status {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    border: 1px solid #dbe3ef;
    border-radius: 8px;
    padding: 14px;
    margin: 16px 0;
    background: #fff;
}

.ptmw-membership-status strong,
.ptmw-membership-status span {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
}

.ptmw-membership-status span {
    padding: 5px 9px;
    border-radius: 6px;
    background: #f1f5f9;
    color: #475569;
    font-weight: 800;
}

.ptmw-membership-dashboard {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, .85fr);
    gap: 18px;
    margin: 0 0 28px;
}

.ptmw-member-card,
.ptmw-member-rules {
    border: 1px solid #dbe3ef;
    border-radius: 8px;
    background: #fff;
    padding: 22px;
    box-shadow: 0 10px 22px rgba(15,23,42,.04);
}

.ptmw-member-card h2,
.ptmw-member-rules h2 {
    margin: 10px 0 10px;
    color: #0f172a;
}

.ptmw-member-card p,
.ptmw-member-rules li {
    color: #475569;
}

.ptmw-member-rules ol {
    margin: 0;
    padding-left: 20px;
}

.ptmw-member-rules li + li {
    margin-top: 8px;
}

.ptmw-member-actions {
    margin: 18px 0 0;
}

.ptmw-member-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 10px;
    margin-top: 16px;
}

.ptmw-member-stats span {
    display: grid;
    gap: 2px;
    min-height: 76px;
    border-radius: 8px;
    background: #f8fafc;
    padding: 12px;
    color: #64748b;
    font-size: 13px;
    font-weight: 800;
}

.ptmw-member-stats strong {
    color: #0f172a;
    font-size: 24px;
}

.ptmw-credit-account {
    border: 1px solid #dbe3ef;
    border-radius: 8px;
    background: #fff;
    padding: 22px;
    margin: 0 0 22px;
    box-shadow: 0 10px 22px rgba(15,23,42,.04);
}

.ptmw-credit-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 14px;
}

.ptmw-credit-head h2 {
    margin: 8px 0 0;
    color: #0f172a;
}

.ptmw-credit-head > strong {
    font-size: 30px;
    color: #0f172a;
    white-space: nowrap;
}

.ptmw-credit-meter {
    height: 10px;
    overflow: hidden;
    border-radius: 999px;
    background: #e2e8f0;
    margin: 0 0 16px;
}

.ptmw-credit-meter span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: #f59e0b;
}

.ptmw-table {
    width: 100%;
    border-collapse: collapse;
    overflow: hidden;
    border: 1px solid #dbe3ef;
    border-radius: 8px;
    background: #fff;
}

.ptmw-table th,
.ptmw-table td {
    border-bottom: 1px solid #e5edf6;
    padding: 12px;
    text-align: left;
}

.ptmw-table th {
    background: #f8fafc;
    color: #475569;
    font-size: 12px;
    text-transform: uppercase;
}

.ptmw-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin: 30px 0 0;
    padding: 14px;
    border: 1px solid #dbe3ef;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 10px 22px rgba(15,23,42,.04);
}

.ptmw-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    min-height: 42px;
    border: 1px solid #dbe3ef;
    border-radius: 6px;
    background: #f8fafc;
    color: #0f172a;
    padding: 8px 10px;
    font-weight: 800;
    text-decoration: none;
    transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

.ptmw-pagination .current,
.ptmw-pagination .page-numbers:hover {
    border-color: #f59e0b;
    background: #f59e0b;
    color: #111827;
    transform: translateY(-1px);
}

.ptmw-pagination .prev,
.ptmw-pagination .next {
    min-width: 92px;
    background: #0f172a;
    border-color: #0f172a;
    color: #fff;
}

.ptmw-pagination .prev:hover,
.ptmw-pagination .next:hover {
    background: #1e293b;
    border-color: #1e293b;
    color: #fff;
}

.ptmw-plans {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
}

.ptmw-plan {
    position: relative;
    border: 1px solid #dbe3ef;
    border-radius: 8px;
    padding: 22px;
    background: #fff;
    box-shadow: 0 10px 22px rgba(15,23,42,.04);
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.ptmw-plan:hover {
    border-color: rgba(245,158,11,.72);
    box-shadow: 0 18px 34px rgba(15,23,42,.1);
    transform: translateY(-3px);
}

.ptmw-plan:nth-child(2) {
    border-color: #f59e0b;
}

.ptmw-plan-featured {
    box-shadow: 0 16px 32px rgba(245,158,11,.14);
}

.ptmw-plan-tag {
    display: inline-flex;
    min-height: 24px;
    align-items: center;
    padding: 3px 8px;
    border-radius: 999px;
    background: #0f766e;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
}

.ptmw-plan h3 {
    margin: 0 0 14px;
    font-size: 22px;
}

.ptmw-plan p {
    color: #475569;
}

.ptmw-plan p strong {
    color: #0f172a;
    font-size: 28px;
}

.ptmw-plan-features {
    margin: 16px 0;
    padding: 0;
    list-style: none;
}

.ptmw-plan-features li {
    position: relative;
    margin: 9px 0;
    padding-left: 20px;
    color: #475569;
}

.ptmw-plan-features li:before {
    content: "";
    position: absolute;
    left: 0;
    top: .68em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #0f766e;
}

.ptmw-plan-note {
    display: block;
    margin-top: 14px;
    color: #64748b;
    font-size: 13px;
    font-weight: 800;
}

.ptmw-faq {
    display: grid;
    gap: 12px;
}

.ptmw-faq details {
    border: 1px solid #dbe3ef;
    border-radius: 8px;
    background: #fff;
}

.ptmw-faq summary {
    cursor: pointer;
    padding: 16px 18px;
    color: #0f172a;
    font-weight: 800;
}

.ptmw-faq p {
    margin: 0;
    padding: 0 18px 18px;
    color: #475569;
}

@media (max-width: 640px) {
    .ptmw-product-filters {
        grid-template-columns: 1fr;
    }

    .ptmw-product-filters-head {
        display: grid;
        gap: 4px;
    }

    .ptmw-filter-actions {
        justify-content: stretch;
    }

    .ptmw-filter-actions .button,
    .ptmw-filter-reset {
        flex: 1;
    }

    .ptmw-pagination {
        justify-content: flex-start;
    }

    .ptmw-membership-dashboard {
        grid-template-columns: 1fr;
    }

    .ptmw-list-row {
        grid-template-columns: 50px minmax(0, 1fr);
    }

    .ptmw-list-row em {
        grid-column: 2;
    }

    .ptmw-card-row {
        align-items: flex-start;
        flex-direction: column;
    }
}

.ptmw-google-login-wrap {
    margin: 0 0 16px;
}

.ptmw-google-login-button {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 100%;
    border: 1px solid #dbe3ef !important;
    background: #fff !important;
    color: #0f172a !important;
}

.ptmw-google-login-button.is-disabled {
    cursor: not-allowed;
    opacity: .68;
}

.ptmw-google-login-button:before {
    content: "G";
    display: inline-grid;
    place-items: center;
    width: 22px;
    height: 22px;
    margin-right: 8px;
    border-radius: 50%;
    background: #f1f5f9;
    color: #2563eb;
    font-weight: 900;
}

.ptmw-site-changelog {
    display: grid;
    gap: 14px;
}

.ptmw-site-changelog-entry {
    border: 1px solid #dbe3ef;
    border-radius: 8px;
    background: #fff;
    padding: 18px;
    box-shadow: 0 10px 22px rgba(15,23,42,.04);
}

.ptmw-site-changelog-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.ptmw-site-changelog-meta time {
    color: #64748b;
    font-size: 13px;
    font-weight: 800;
}

.ptmw-site-changelog-entry h3 {
    margin: 0 0 8px;
    color: #0f172a;
}

.ptmw-site-changelog-notes p {
    margin: 0 0 8px;
    color: #475569;
}

/* PTMW production layout hardening */
.ptmw-membership-intro {
    max-width: 860px;
    margin: 0 0 24px;
    padding: 24px;
    border: 1px solid #dbe3ef;
    border-radius: 8px;
    background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
    box-shadow: 0 10px 22px rgba(15,23,42,.04);
}

.ptmw-membership-intro h2 {
    margin: 6px 0 10px;
    color: #0f172a;
    font-size: 32px;
    line-height: 1.15;
}

.ptmw-membership-intro p:last-child {
    max-width: 720px;
    margin-bottom: 0;
    color: #475569;
    font-size: 16px;
}

.pmpro_card,
.pmpro_section_content,
.pmpro_login_wrap,
.pmpro_account .pmpro_box,
.pmpro_actions_nav,
.pmpro_checkout_box {
    border: 1px solid #dbe3ef !important;
    border-radius: 8px !important;
    background: #fff !important;
    box-shadow: 0 10px 22px rgba(15,23,42,.04);
}

.pmpro_card_content,
.pmpro_section_content,
.pmpro_checkout_box,
.pmpro_login_wrap {
    padding: 22px !important;
}

.pmpro_table,
.pmpro_levels_table {
    width: 100%;
    border-collapse: separate !important;
    border-spacing: 0;
    overflow: hidden;
    border: 1px solid #dbe3ef !important;
    border-radius: 8px;
    background: #fff;
}

.pmpro_table th,
.pmpro_table td,
.pmpro_levels_table th,
.pmpro_levels_table td {
    padding: 14px !important;
    border-bottom: 1px solid #e5edf6 !important;
    vertical-align: middle;
}

.pmpro_table th,
.pmpro_levels_table th {
    background: #f8fafc;
    color: #475569;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.pmpro_level,
.pmpro_level_group {
    border: 1px solid #dbe3ef !important;
    border-radius: 8px !important;
    background: #fff !important;
    box-shadow: 0 10px 22px rgba(15,23,42,.04);
}

.pmpro_level-price,
.pmpro_level .pmpro_level-price {
    color: #0f766e;
    font-size: 22px;
    font-weight: 900;
}

.ptmw-pmpro-synced-card {
    overflow: hidden !important;
    border-color: #dce5ef !important;
    background:
        linear-gradient(180deg, #ffffff 0%, #fbfdff 100%) !important;
}

.ptmw-pmpro-synced-card .pmpro_card_title {
    margin: 0 !important;
    padding: 0 !important;
    color: #111827 !important;
    font-size: 30px !important;
    line-height: 1.1 !important;
    font-weight: 900 !important;
}

.ptmw-pmpro-compact-head {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(220px, 300px) !important;
    align-items: stretch !important;
    justify-content: space-between !important;
    gap: 18px !important;
    margin-bottom: 18px !important;
    border: 1px solid #e5edf6 !important;
    border-radius: 10px !important;
    background:
        linear-gradient(90deg, #ffffff 0%, #f8fafc 100%) !important;
    padding: 20px !important;
    color: #111827 !important;
}

.ptmw-pmpro-kicker {
    display: inline-flex !important;
    margin-bottom: 8px !important;
    color: #ff8a00 !important;
    font-size: 12px !important;
    font-weight: 900 !important;
    letter-spacing: .04em !important;
    text-transform: uppercase !important;
}

.ptmw-pmpro-synced-note {
    max-width: 760px !important;
    margin: 8px 0 0 !important;
    color: #475569 !important;
    font-size: 15px !important;
}

.ptmw-pmpro-usage {
    display: grid !important;
    align-content: center !important;
    gap: 7px !important;
    border-left: 1px solid #e5edf6 !important;
    padding-left: 18px !important;
}

.ptmw-pmpro-status-pill {
    display: inline-flex !important;
    min-height: 34px !important;
    width: fit-content !important;
    align-items: center !important;
    border: 1px solid #bbf7d0 !important;
    border-radius: 999px !important;
    background: #f0fdf4 !important;
    color: #15803d !important;
    padding: 0 13px !important;
    font-size: 12px !important;
    font-weight: 900 !important;
}

.ptmw-pmpro-usage span:not(.ptmw-pmpro-status-pill) {
    color: #64748b !important;
    font-size: 13px !important;
    font-weight: 850 !important;
}

.ptmw-pmpro-usage strong {
    color: #111827 !important;
    font-size: 22px !important;
    font-weight: 950 !important;
}

.ptmw-pmpro-credit-meter {
    height: 8px !important;
    overflow: hidden !important;
    border-radius: 999px !important;
    background: #e8eef6 !important;
}

.ptmw-pmpro-credit-meter span {
    display: block !important;
    height: 100% !important;
    border-radius: inherit !important;
    background: linear-gradient(90deg, #ff8a00, #22c55e) !important;
}

.ptmw-pmpro-detail-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
    margin: 0 !important;
}

.ptmw-pmpro-detail-item {
    position: relative !important;
    display: grid !important;
    grid-template-columns: 38px minmax(90px, .45fr) minmax(0, 1fr) !important;
    gap: 11px !important;
    align-items: center !important;
    min-height: 66px !important;
    overflow: hidden !important;
    border: 1px solid #e5edf6 !important;
    border-radius: 10px !important;
    background: #fff !important;
    padding: 12px 14px !important;
}

.ptmw-pmpro-detail-item::before {
    content: "" !important;
    position: absolute !important;
    inset: 0 auto 0 0 !important;
    width: 4px !important;
    background: var(--ptmw-detail-accent, #ff8a00) !important;
}

.ptmw-pmpro-detail-icon {
    display: inline-flex !important;
    width: 34px !important;
    height: 34px !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 9px !important;
    background: var(--ptmw-detail-soft, #fff7ed) !important;
    color: var(--ptmw-detail-accent, #ff8a00) !important;
}

.ptmw-pmpro-detail-icon svg {
    width: 18px !important;
    height: 18px !important;
    fill: none !important;
    stroke: currentColor !important;
    stroke-width: 2 !important;
    stroke-linecap: round !important;
    stroke-linejoin: round !important;
}

.ptmw-pmpro-detail-label {
    color: #64748b !important;
    font-size: 12px !important;
    font-weight: 850 !important;
}

.ptmw-pmpro-detail-item strong {
    color: #111827 !important;
    font-size: 15px !important;
    line-height: 1.2 !important;
    font-weight: 900 !important;
    text-align: right !important;
}

.ptmw-pmpro-detail-orange {
    --ptmw-detail-accent: #ff8a00;
    --ptmw-detail-soft: #fff7ed;
}

.ptmw-pmpro-detail-cyan {
    --ptmw-detail-accent: #06b6d4;
    --ptmw-detail-soft: #ecfeff;
}

.ptmw-pmpro-detail-green {
    --ptmw-detail-accent: #22c55e;
    --ptmw-detail-soft: #f0fdf4;
}

.ptmw-pmpro-detail-purple {
    --ptmw-detail-accent: #8b5cf6;
    --ptmw-detail-soft: #f5f3ff;
}

.ptmw-pmpro-detail-blue {
    --ptmw-detail-accent: #2563eb;
    --ptmw-detail-soft: #eff6ff;
}

.ptmw-pmpro-detail-slate {
    --ptmw-detail-accent: #64748b;
    --ptmw-detail-soft: #f1f5f9;
}

@media (max-width: 760px) {
    .ptmw-pmpro-compact-head {
        display: grid !important;
        grid-template-columns: 1fr !important;
    }

    .ptmw-pmpro-synced-card .pmpro_card_title {
        font-size: 26px !important;
    }

    .ptmw-pmpro-usage {
        border-left: 0 !important;
        border-top: 1px solid #e5edf6 !important;
        padding: 14px 0 0 !important;
    }

    .ptmw-pmpro-detail-grid {
        grid-template-columns: 1fr !important;
    }

    .ptmw-pmpro-detail-item {
        border-right: 0 !important;
        grid-template-columns: 34px 1fr !important;
        gap: 8px 10px !important;
    }

    .ptmw-pmpro-detail-item strong {
        grid-column: 2 !important;
        text-align: left !important;
    }

    .ptmw-pmpro-detail-label {
        align-self: end !important;
    }
}

.pmpro_btn,
.pmpro_btn:link,
.pmpro_btn:visited,
.pmpro_btn-submit,
.pmpro_btn-select,
.pmpro_btn-submit-checkout,
.pmpro_btn-submit-checkout-paypal,
.pmpro_actions_nav a,
.pmpro_login_wrap input[type="submit"] {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    border: 0 !important;
    border-radius: 6px !important;
    background: #f59e0b !important;
    color: #111827 !important;
    padding: 11px 16px !important;
    font-weight: 900 !important;
    text-decoration: none !important;
    line-height: 1.1;
}

.pmpro_btn:hover,
.pmpro_actions_nav a:hover,
.pmpro_login_wrap input[type="submit"]:hover {
    background: #fbbf24 !important;
    color: #111827 !important;
}

.pmpro_btn-plain,
.pmpro_btn-plain:link,
.pmpro_btn-plain:visited {
    border: 1px solid #dbe3ef !important;
    background: #fff !important;
    color: #0f172a !important;
}

.pmpro_form,
.pmpro_form_fields {
    display: grid;
    gap: 14px;
}

.pmpro_cols-2,
.pmpro_form_fields.pmpro_cols-2 {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 18px;
}

.pmpro_form_field,
.pmpro_form_fieldset {
    min-width: 0;
}

.pmpro_form label,
.pmpro_form_field label,
.pmpro_login_wrap label {
    display: block;
    margin-bottom: 6px;
    color: #475569;
    font-size: 13px;
    font-weight: 800;
}

.pmpro_form_input,
.pmpro_form input[type="text"],
.pmpro_form input[type="email"],
.pmpro_form input[type="password"],
.pmpro_form input[type="tel"],
.pmpro_form select,
.pmpro_login_wrap input[type="text"],
.pmpro_login_wrap input[type="password"] {
    width: 100% !important;
    min-height: 44px;
    border: 1px solid #dbe3ef !important;
    border-radius: 6px !important;
    background: #f8fafc !important;
    color: #0f172a;
    padding: 10px 11px !important;
    outline: 0;
}

.pmpro_form_input:focus,
.pmpro_form input:focus,
.pmpro_form select:focus,
.pmpro_login_wrap input:focus {
    border-color: #f59e0b !important;
    background: #fff !important;
    box-shadow: 0 0 0 3px rgba(245,158,11,.16);
}

.pmpro_checkout h2,
.pmpro_form_heading,
.pmpro_card_title {
    margin: 0 0 14px !important;
    color: #0f172a;
    font-size: 22px !important;
    line-height: 1.2;
}

.pmpro_actions_nav {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    padding: 16px !important;
    margin-top: 16px;
}

.pmpro_login_wrap form,
.pmpro_login_wrap #loginform {
    display: grid;
    gap: 12px;
}

.pmpro_checkout form {
    max-width: 980px;
}

.woocommerce-cart .wc-empty-cart-message,
.woocommerce-cart .return-to-shop,
.woocommerce-checkout .woocommerce,
.woocommerce-account .woocommerce,
.woocommerce .woocommerce-form-login,
.woocommerce .woocommerce-form-register {
    max-width: 980px;
}

.woocommerce .woocommerce-form-login,
.woocommerce .woocommerce-form-register {
    padding: 22px;
    border: 1px solid #dbe3ef;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 10px 22px rgba(15,23,42,.04);
}

@media (max-width: 760px) {
    .ptmw-membership-intro {
        padding: 18px;
    }

    .ptmw-membership-intro h2 {
        font-size: 26px;
    }

    .pmpro_cols-2,
    .pmpro_form_fields.pmpro_cols-2 {
        grid-template-columns: 1fr !important;
    }

    .pmpro_table,
    .pmpro_levels_table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }

    .pmpro_card_content,
    .pmpro_section_content,
    .pmpro_checkout_box,
    .pmpro_login_wrap {
        padding: 16px !important;
    }

    .pmpro_btn,
    .pmpro_actions_nav a,
    .pmpro_login_wrap input[type="submit"] {
        width: 100%;
    }
}

.ptmw-premium-page {
    background: #f8fafc;
}

.ptmw-premium-content > article {
    margin: 0;
}

.ptmw-premium-content > article > * {
    max-width: 1180px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

.ptmw-premium-content > article > .ptmw-membership-dashboard {
    max-width: none;
    padding: 0;
    margin: 0;
}

.ptmw-membership-dashboard {
    display: block;
}

.ptmw-premium-hero {
    display: block;
    margin: 0;
    padding: 92px max(20px, calc((100vw - 1180px) / 2)) 74px;
    border: 0;
    border-radius: 0;
    background:
        radial-gradient(circle at 50% 0%, rgba(245, 158, 11, .24), transparent 34%),
        radial-gradient(circle at 82% 42%, rgba(124, 58, 237, .14), transparent 28%),
        radial-gradient(circle at 18% 68%, rgba(14, 165, 233, .14), transparent 28%),
        #0f172a;
    color: #fff;
    text-align: center;
    box-shadow: none;
}

.ptmw-premium-hero .ptmw-badge {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    margin-bottom: 18px;
    border: 1px solid rgba(245, 158, 11, .36);
    border-radius: 999px;
    background: rgba(245, 158, 11, .12);
    color: #fbbf24;
    padding: 5px 12px;
    font-size: 13px;
    font-weight: 900;
}

.ptmw-premium-hero h2 {
    max-width: 820px;
    margin: 0 auto;
    color: #fff;
    font-size: clamp(44px, 6vw, 78px);
    line-height: 1;
    letter-spacing: 0;
}

.ptmw-premium-hero p {
    max-width: 720px;
    margin: 20px auto 0;
    color: #cbd5e1;
    font-size: 20px;
}

.ptmw-premium-hero .button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    margin-top: 28px;
    border: 0;
    border-radius: 10px;
    background: linear-gradient(135deg, #f59e0b, #f97316);
    color: #111827;
    padding: 13px 20px;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 18px 34px rgba(245, 158, 11, .22);
}

.ptmw-premium-hero .ptmw-member-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    max-width: 980px;
    margin: 54px auto 0;
}

.ptmw-premium-hero .ptmw-member-stats span {
    min-height: 116px;
    border: 1px solid rgba(148, 163, 184, .24);
    border-radius: 18px;
    background: rgba(30, 41, 59, .62);
    padding: 20px;
    color: #94a3b8;
    box-shadow: none;
    backdrop-filter: blur(10px);
}

.ptmw-premium-hero .ptmw-member-stats strong {
    color: #fff;
    font-size: 34px;
}

.ptmw-member-rules {
    max-width: none;
    margin: 0;
    padding: 14px max(20px, calc((100vw - 1180px) / 2)) 72px;
    border: 0;
    border-radius: 0;
    background: #0f172a;
    box-shadow: none;
}

.ptmw-member-rules h2 {
    display: none;
    margin: 0 0 22px;
    color: #fff;
    text-align: center;
    font-size: 30px;
}

.ptmw-premium-benefits {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.ptmw-premium-benefits span {
    display: grid;
    gap: 8px;
    min-height: 132px;
    align-content: center;
    border: 1px solid rgba(148, 163, 184, .24);
    border-radius: 16px;
    background: rgba(30, 41, 59, .72);
    color: #94a3b8;
    padding: 20px;
    text-align: center;
}

.ptmw-premium-benefits strong {
    color: #fff;
    font-size: 28px;
}

.ptmw-premium-content .ptmw-plans {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    padding-top: 82px;
    padding-bottom: 82px;
}

.ptmw-premium-content .ptmw-plan {
    display: flex;
    flex-direction: column;
    min-height: 520px;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    background: #fff;
    padding: 32px;
    box-shadow: 0 20px 42px rgba(15, 23, 42, .08);
    text-align: left;
}

.ptmw-premium-content .ptmw-plan:hover {
    border-color: rgba(245, 158, 11, .62);
    box-shadow: 0 28px 58px rgba(15, 23, 42, .14);
}

.ptmw-premium-content .ptmw-plan-featured {
    border: 2px solid #f59e0b;
    transform: translateY(-18px);
    box-shadow: 0 34px 70px rgba(245, 158, 11, .18);
}

.ptmw-premium-content .ptmw-plan-tag {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #f59e0b, #f97316);
    color: #111827;
    padding: 7px 14px;
    font-size: 12px;
}

.ptmw-plan-icon {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
    border-radius: 14px;
    background: rgba(245, 158, 11, .12);
    color: #d97706;
    font-size: 24px;
    font-weight: 900;
}

.ptmw-plan-purple .ptmw-plan-icon {
    background: rgba(124, 58, 237, .1);
    color: #7c3aed;
}

.ptmw-plan-cyan .ptmw-plan-icon {
    background: rgba(8, 145, 178, .1);
    color: #0891b2;
}

.ptmw-premium-content .ptmw-plan h3 {
    margin: 0;
    color: #111827;
    font-size: 28px;
}

.ptmw-plan-summary {
    min-height: 44px;
    margin: 10px 0 22px;
    color: #64748b;
}

.ptmw-premium-content .ptmw-plan-price {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    margin: 0 0 16px;
    color: #64748b;
}

.ptmw-premium-content .ptmw-plan-price strong {
    color: #111827;
    font-size: 50px;
    line-height: 1;
}

.ptmw-premium-content .ptmw-plan-price span {
    padding-bottom: 6px;
}

.ptmw-premium-content .ptmw-plan-features {
    display: grid;
    gap: 14px;
    margin: 10px 0 26px;
}

.ptmw-premium-content .ptmw-plan-features li {
    margin: 0;
    color: #475569;
}

.ptmw-premium-content .ptmw-plan-features li:before {
    top: .55em;
    background: #22c55e;
}

.ptmw-plan-button,
.ptmw-premium-content .ptmw-plan .button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    width: 100%;
    margin-top: auto;
    border: 0;
    border-radius: 10px;
    background: linear-gradient(135deg, #f59e0b, #f97316);
    color: #111827;
    padding: 12px 16px;
    font-weight: 900;
    text-decoration: none;
}

.ptmw-premium-content .ptmw-plan-featured .button {
    background: linear-gradient(135deg, #f59e0b, #f97316);
    color: #111827;
}

.ptmw-premium-content .ptmw-plan-note.ptmw-plan-button {
    opacity: .72;
}

.ptmw-premium-content .ptmw-faq {
    padding-top: 24px;
    padding-bottom: 72px;
}

.ptmw-premium-content .ptmw-faq details {
    overflow: hidden;
    border-color: #e5e7eb;
    border-radius: 14px;
    box-shadow: 0 10px 24px rgba(15, 23, 42, .04);
}

.ptmw-premium-content .ptmw-faq summary {
    padding: 18px 20px;
    color: #111827;
}

.ptmw-premium-content .ptmw-faq p {
    padding: 0 20px 18px;
}

@media (max-width: 980px) {
    .ptmw-premium-content .ptmw-plans {
        grid-template-columns: 1fr;
    }

    .ptmw-premium-hero .ptmw-member-stats,
    .ptmw-premium-benefits {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ptmw-premium-content .ptmw-plan-featured {
        transform: none;
    }

}

@media (max-width: 640px) {
    .ptmw-premium-hero {
        padding-top: 42px;
        padding-bottom: 42px;
    }

    .ptmw-premium-hero .ptmw-member-stats {
        grid-template-columns: 1fr;
    }

    .ptmw-premium-benefits {
        grid-template-columns: 1fr;
    }

    .ptmw-premium-content .ptmw-plans {
        padding-top: 42px;
        padding-bottom: 42px;
    }

    .ptmw-premium-content .ptmw-plan {
        min-height: auto;
        padding: 22px;
    }
}

/* Target-site inspired multicolor palette pass. */
.ptmw-category-card:nth-child(4n + 1):hover,
.ptmw-product-card:nth-child(4n + 1):hover {
    border-color: rgba(245, 158, 11, .72);
}

.ptmw-category-card:nth-child(4n + 2):hover,
.ptmw-product-card:nth-child(4n + 2):hover {
    border-color: rgba(124, 58, 237, .62);
}

.ptmw-category-card:nth-child(4n + 3):hover,
.ptmw-product-card:nth-child(4n + 3):hover {
    border-color: rgba(6, 182, 212, .62);
}

.ptmw-category-card:nth-child(4n):hover,
.ptmw-product-card:nth-child(4n):hover {
    border-color: rgba(34, 197, 94, .62);
}

.ptmw-product-filters:before {
    background: linear-gradient(90deg, #f59e0b, #8b5cf6, #06b6d4, #22c55e);
}

.ptmw-product-filters input:focus,
.ptmw-product-filters select:focus {
    border-color: #8b5cf6;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, .14);
}

.ptmw-product-card h3 a:hover {
    color: #7c3aed;
}

.ptmw-badge {
    background: #eef2ff;
    color: #5b21b6;
}

.ptmw-plan-amber {
    border-top: 5px solid #f59e0b !important;
}

.ptmw-plan-purple {
    border-top: 5px solid #8b5cf6 !important;
}

.ptmw-plan-cyan {
    border-top: 5px solid #06b6d4 !important;
}

.ptmw-premium-hero {
    background:
        radial-gradient(circle at 50% 0%, rgba(245, 158, 11, .22), transparent 34%),
        radial-gradient(circle at 20% 34%, rgba(124, 58, 237, .18), transparent 30%),
        radial-gradient(circle at 82% 42%, rgba(6, 182, 212, .15), transparent 28%),
        radial-gradient(circle at 56% 88%, rgba(34, 197, 94, .10), transparent 28%),
        #0f172a;
}

.ptmw-premium-hero .ptmw-badge {
    border-color: rgba(245, 158, 11, .36);
    background: rgba(245, 158, 11, .12);
    color: #fbbf24;
}

.ptmw-premium-hero .ptmw-member-stats span:nth-child(1),
.ptmw-premium-benefits span:nth-child(1) {
    border-color: rgba(245, 158, 11, .30);
}

.ptmw-premium-hero .ptmw-member-stats span:nth-child(2),
.ptmw-premium-benefits span:nth-child(2) {
    border-color: rgba(139, 92, 246, .36);
}

.ptmw-premium-hero .ptmw-member-stats span:nth-child(3),
.ptmw-premium-benefits span:nth-child(3) {
    border-color: rgba(6, 182, 212, .36);
}

.ptmw-premium-hero .ptmw-member-stats span:nth-child(4),
.ptmw-premium-benefits span:nth-child(4) {
    border-color: rgba(34, 197, 94, .34);
}

.ptmw-premium-content .ptmw-plan-featured {
    border-color: #8b5cf6;
    box-shadow: 0 34px 70px rgba(139, 92, 246, .18);
}

.ptmw-premium-content .ptmw-plan-tag {
    background: linear-gradient(135deg, #8b5cf6, #06b6d4);
    color: #fff;
}

.ptmw-plan-button,
.ptmw-premium-content .ptmw-plan .button {
    background: linear-gradient(135deg, #f59e0b, #f97316);
}

.ptmw-plan-purple .ptmw-plan-button,
.ptmw-premium-content .ptmw-plan-purple .button {
    background: linear-gradient(135deg, #8b5cf6, #06b6d4);
    color: #fff;
}

.ptmw-plan-cyan .ptmw-plan-button,
.ptmw-premium-content .ptmw-plan-cyan .button {
    background: linear-gradient(135deg, #06b6d4, #22c55e);
    color: #052e16;
}

.ptmw-premium-content .ptmw-plan-featured .button {
    background: linear-gradient(135deg, #8b5cf6, #06b6d4);
    color: #fff;
}

.ptmw-faq details:nth-child(4n + 1) {
    border-left: 4px solid #f59e0b;
}

.ptmw-faq details:nth-child(4n + 2) {
    border-left: 4px solid #8b5cf6;
}

.ptmw-faq details:nth-child(4n + 3) {
    border-left: 4px solid #06b6d4;
}

.ptmw-faq details:nth-child(4n) {
    border-left: 4px solid #22c55e;
}

/* Product category page parity with PluginTheme listing UI. */
.ptmw-products-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin: 18px 0 14px;
    color: #64748b;
}

.ptmw-products-head strong {
    color: #0f172a;
    font-size: 22px;
}

.ptmw-products-head span {
    font-weight: 800;
}

.ptmw-product-filters {
    grid-template-columns: 1fr;
    align-content: start;
    position: sticky;
    top: 116px;
    float: left;
    width: 276px;
    min-height: 520px;
    margin: 0 24px 28px 0;
    border: 1px solid rgba(148, 163, 184, .22);
    border-radius: 20px;
    background:
        radial-gradient(circle at 80% 8%, rgba(245, 158, 11, .18), transparent 30%),
        linear-gradient(145deg, #1e293b, #0f172a);
    padding: 18px;
    box-shadow: 0 22px 46px rgba(15, 23, 42, .16);
}

.ptmw-product-filters:before {
    display: none;
}

.ptmw-product-filters-head {
    display: grid;
    grid-column: auto;
    grid-template-columns: 42px minmax(0, 1fr);
    align-items: center;
    justify-content: start;
    gap: 10px;
    margin: 0 -2px 6px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(148, 163, 184, .18);
}

.ptmw-filter-icon {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 13px;
    background: linear-gradient(135deg, #f59e0b, #f97316);
    color: #fff;
    font-size: 24px;
    font-weight: 900;
}

.ptmw-product-filters-head strong {
    color: #fff;
    font-size: 18px;
}

.ptmw-product-filters-head > span:not(.ptmw-filter-icon) {
    grid-column: 2;
    color: #94a3b8;
    font-size: 12px;
}

.ptmw-product-filters label {
    color: #cbd5e1;
    text-transform: none;
}

.ptmw-product-filters label span {
    font-size: 13px;
}

.ptmw-product-filters input,
.ptmw-product-filters select {
    min-height: 44px;
    border-color: rgba(255,255,255,.12);
    border-radius: 11px;
    background: rgba(255,255,255,.08);
    color: #fff;
}

.ptmw-product-filters select option {
    color: #0f172a;
}

.ptmw-product-filters input::placeholder {
    color: #94a3b8;
}

.ptmw-filter-actions {
    justify-content: stretch;
}

.ptmw-filter-actions .button,
.ptmw-filter-reset {
    flex: 1;
    min-height: 42px;
    border-radius: 11px;
}

.ptmw-filter-actions .button {
    border: 0;
    background: linear-gradient(135deg, #f59e0b, #f97316);
    color: #111827;
    font-weight: 900;
}

.ptmw-filter-reset {
    border-color: rgba(255,255,255,.14);
    background: rgba(255,255,255,.08);
    color: #e2e8f0;
}

.ptmw-products {
    grid-template-columns: repeat(auto-fill, minmax(252px, 1fr));
    gap: 20px;
    margin-top: 14px;
}

.ptmw-product-card {
    position: relative;
    border-color: #e5e7eb;
    border-radius: 20px;
    background: linear-gradient(145deg, #fff, #f8fafc);
    box-shadow: 0 16px 34px rgba(15, 23, 42, .07);
}

.ptmw-product-card:before {
    content: "";
    position: absolute;
    top: -64px;
    right: -64px;
    z-index: 0;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(245, 158, 11, .10);
    opacity: 0;
    transition: opacity .2s ease;
}

.ptmw-product-card:hover:before {
    opacity: 1;
}

.ptmw-product-card > * {
    position: relative;
    z-index: 1;
}

.ptmw-sale-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    border-radius: 999px;
    background: linear-gradient(135deg, #f43f5e, #dc2626);
    color: #fff;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: 900;
    box-shadow: 0 10px 20px rgba(225, 29, 72, .24);
}

.ptmw-product-card > a:first-of-type {
    display: block;
    overflow: hidden;
    background: linear-gradient(145deg, #f8fafc, #f1f5f9);
}

.ptmw-product-card img {
    aspect-ratio: 1 / 1;
    object-fit: contain;
    padding: 14px;
    transition: transform .22s ease, filter .22s ease;
}

.ptmw-product-card:hover img {
    transform: scale(1.03);
    filter: brightness(1.03) contrast(1.03);
}

.ptmw-product-card-body {
    display: flex;
    min-height: 280px;
    flex-direction: column;
    padding: 16px;
}

.ptmw-product-card h3 {
    min-height: 48px;
    margin: 12px 0 8px;
    font-size: 17px;
}

.ptmw-product-card p {
    min-height: 46px;
    font-size: 13px;
}

.ptmw-card-price {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 10px;
    margin-top: 12px;
}

.ptmw-card-price strong {
    color: #0f172a;
    font-size: 20px;
}

.ptmw-card-price span {
    color: #64748b;
    font-size: 12px;
    font-weight: 900;
}

.ptmw-card-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
    margin-top: auto;
    padding-top: 14px;
}

.ptmw-details-button,
.ptmw-card-row .button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    border-radius: 11px;
    padding: 9px 10px;
    font-size: 13px;
    font-weight: 900;
    text-decoration: none;
}

.ptmw-details-button {
    border: 1px solid #e5e7eb;
    background: #fff;
    color: #334155;
}

.ptmw-card-row .button {
    border: 0;
    background: linear-gradient(135deg, #f59e0b, #f97316);
    color: #fff;
    box-shadow: 0 10px 20px rgba(245, 158, 11, .20);
}

.ptmw-pagination {
    clear: both;
}

@media (max-width: 980px) {
    .ptmw-product-filters {
        position: relative;
        top: auto;
        float: none;
        width: auto;
        min-height: 0;
        margin-right: 0;
    }
}

@media (max-width: 640px) {
    .ptmw-card-row {
        grid-template-columns: 1fr;
    }
}
