:root {
    --bg: #f7f9fc;
    --surface: #ffffff;
    --surface-2: #f1f5f9;
    --ink: #0f172a;
    --muted: #64748b;
    --line: #dbe3ef;
    --brand: #f59e0b;
    --brand-dark: #92400e;
    --accent: #0f766e;
    --danger: #b91c1c;
    --header: #101827;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: linear-gradient(180deg, #f8fafc 0, #eef4fb 420px, var(--bg) 760px);
    color: var(--ink);
    font-family: Inter, Arial, sans-serif;
    line-height: 1.55;
}

body.woocommerce-account:not(.logged-in) {
    background: #f8fafc;
}

body.woocommerce-account.logged-in {
    background: #f4f6f9;
}

.ptmw-woocommerce-account-wrap {
    width: min(1680px, calc(100% - 56px));
    margin: 34px auto 72px;
    border: 1px solid #dbe3ef;
    border-radius: 10px;
    background: #f4f6f9;
    padding: 42px;
    box-shadow: 0 12px 40px rgba(15, 23, 42, .05);
}

.ptmw-auth-woocommerce-wrap {
    background: #f8fafc;
}

.ptmw-auth-page {
    min-height: calc(100vh - 104px);
    padding: 54px 20px;
    background:
        radial-gradient(circle at 18% 16%, rgba(245, 158, 11, .12), transparent 28%),
        radial-gradient(circle at 84% 72%, rgba(14, 165, 233, .11), transparent 30%),
        #f8fafc;
}

.ptmw-auth-shell {
    display: grid;
    grid-template-columns: minmax(360px, 520px) minmax(320px, 500px);
    gap: 26px;
    align-items: stretch;
    max-width: 1060px;
    margin: 0 auto;
}

.ptmw-auth-panel,
.ptmw-register-panel {
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    background: #fff;
    padding: 34px;
    box-shadow: 0 24px 60px rgba(15, 23, 42, .08);
}

.ptmw-auth-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #111827;
    text-decoration: none;
    font-size: 20px;
}

.ptmw-auth-brand span {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: #f59e0b;
    color: #111827;
    font-weight: 900;
}

.ptmw-auth-heading {
    margin: 30px 0 22px;
}

.ptmw-auth-heading p {
    margin: 0 0 8px;
    color: #f59e0b;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.ptmw-auth-heading h1 {
    margin: 0;
    color: #111827;
    font-size: 34px;
    line-height: 1.08;
    letter-spacing: 0;
}

.ptmw-auth-heading span {
    display: block;
    margin-top: 10px;
    color: #64748b;
}

.ptmw-auth-panel .ptmw-google-login-wrap {
    margin: 0;
}

.ptmw-auth-panel .ptmw-google-login-button {
    width: 100%;
    min-height: 46px;
    border-radius: 10px;
    border-color: #e5e7eb;
    background: #fff;
    color: #111827;
    box-shadow: none;
}

.ptmw-auth-panel .ptmw-google-login-button.is-disabled {
    display: inline-flex;
    opacity: 1;
    cursor: default;
}

.ptmw-auth-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 22px 0;
    color: #94a3b8;
    font-size: 13px;
    font-weight: 800;
}

.ptmw-auth-divider:before,
.ptmw-auth-divider:after {
    content: "";
    height: 1px;
    flex: 1;
    background: #e5e7eb;
}

.woocommerce .ptmw-auth-form {
    max-width: none;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.ptmw-auth-form label,
.ptmw-register-panel label {
    color: #334155;
    font-size: 14px;
    font-weight: 800;
}

.ptmw-auth-label-line {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    align-items: center;
}

.ptmw-auth-label-line a {
    color: #f59e0b;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
}

.ptmw-auth-form input.input-text,
.ptmw-register-panel input.input-text {
    width: 100%;
    min-height: 46px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    background: #fff;
    color: #111827;
    padding: 10px 13px;
}

.ptmw-auth-form input.input-text:focus,
.ptmw-register-panel input.input-text:focus {
    outline: 0;
    border-color: #f59e0b;
    box-shadow: 0 0 0 3px rgba(245, 158, 11, .14);
}

.ptmw-auth-submit-row {
    display: grid;
    gap: 14px;
    margin: 18px 0 0;
}

.ptmw-auth-submit {
    width: 100%;
    min-height: 48px;
    border: 0;
    border-radius: 10px;
    background: linear-gradient(135deg, #f59e0b, #f97316);
    color: #111827;
    font-weight: 900;
}

.ptmw-auth-register {
    margin: 22px 0 0;
    color: #64748b;
    text-align: center;
}

.ptmw-auth-register a {
    color: #f59e0b;
    font-weight: 900;
    text-decoration: none;
}

.ptmw-auth-side {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    background:
        radial-gradient(circle at 70% 18%, rgba(245, 158, 11, .24), transparent 32%),
        #0f172a;
    color: #fff;
    padding: 42px;
}

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

.ptmw-auth-side h2 {
    margin: 70px 0 14px;
    color: #fff;
    font-size: 42px;
    line-height: 1.05;
}

.ptmw-auth-side p {
    color: #cbd5e1;
    font-size: 17px;
}

.ptmw-auth-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 38px;
}

.ptmw-auth-stats span {
    display: grid;
    gap: 4px;
    border: 1px solid rgba(148, 163, 184, .24);
    border-radius: 12px;
    background: rgba(30, 41, 59, .72);
    color: #94a3b8;
    padding: 14px;
    font-size: 12px;
    font-weight: 800;
}

.ptmw-auth-stats strong {
    color: #fff;
    font-size: 22px;
}

.ptmw-register-panel {
    max-width: 720px;
    margin: 0 auto 54px;
}

.ptmw-register-panel h2 {
    margin: 0 0 18px;
}

@media (max-width: 900px) {
    .ptmw-auth-shell {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .ptmw-auth-page {
        padding: 28px 14px;
    }

    .ptmw-auth-panel,
    .ptmw-auth-side,
    .ptmw-register-panel {
        padding: 24px;
    }

    .ptmw-auth-heading h1,
    .ptmw-auth-side h2 {
        font-size: 30px;
    }

    .ptmw-auth-stats {
        grid-template-columns: 1fr;
    }
}

/* Target-site inspired multicolor palette pass. */
:root {
    --brand: #f59e0b;
    --brand-dark: #b45309;
    --accent: #7c3aed;
    --cyan: #0891b2;
    --green: #16a34a;
    --rose: #e11d48;
    --header: #0f172a;
}

body {
    background:
        radial-gradient(circle at 16% 12%, rgba(245, 158, 11, .09), transparent 26%),
        radial-gradient(circle at 88% 18%, rgba(124, 58, 237, .08), transparent 26%),
        radial-gradient(circle at 52% 44%, rgba(8, 145, 178, .07), transparent 28%),
        linear-gradient(180deg, #f8fafc 0, #eef4fb 420px, #f7f9fc 760px);
}

a {
    color: #7c3aed;
}

.site-brand span {
    background: linear-gradient(135deg, #f59e0b, #f97316);
}

.site-nav a:nth-child(2n):hover {
    color: #a78bfa;
}

.site-nav a:nth-child(3n):hover {
    color: #67e8f9;
}

.ptmw-cart-count {
    background: linear-gradient(135deg, #22c55e, #06b6d4);
    color: #052e16;
}

.language-switcher .is-active,
.language-switcher a:hover {
    background: linear-gradient(135deg, #f59e0b, #f97316);
}

.site-strip span:nth-child(2n):before {
    background: #8b5cf6;
}

.site-strip span:nth-child(3n):before {
    background: #06b6d4;
}

.site-hero,
.shop-hero,
.page-hero {
    background:
        radial-gradient(circle at 72% 18%, rgba(245, 158, 11, .24), transparent 30%),
        radial-gradient(circle at 18% 72%, rgba(124, 58, 237, .20), transparent 28%),
        radial-gradient(circle at 90% 80%, rgba(6, 182, 212, .14), transparent 26%),
        linear-gradient(135deg, #0f172a 0%, #111827 52%, #1e1b4b 100%);
}

.hero-search button,
.shop-search button,
.ptmw-auth-submit {
    background: linear-gradient(135deg, #f59e0b, #f97316);
}

.hero-metrics span:nth-child(1) {
    border-color: rgba(245, 158, 11, .28);
}

.hero-metrics span:nth-child(2) {
    border-color: rgba(124, 58, 237, .34);
}

.hero-metrics span:nth-child(3) {
    border-color: rgba(6, 182, 212, .34);
}

.hero-product:nth-child(3n + 1) {
    border-color: rgba(245, 158, 11, .28);
}

.hero-product:nth-child(3n + 2) {
    border-color: rgba(124, 58, 237, .28);
}

.hero-product:nth-child(3n) {
    border-color: rgba(6, 182, 212, .28);
}

.section-heading a,
.ptmw-auth-heading p,
.ptmw-auth-label-line a,
.ptmw-auth-register a {
    color: #7c3aed;
}

.ptmw-auth-page {
    background:
        radial-gradient(circle at 16% 16%, rgba(245, 158, 11, .12), transparent 26%),
        radial-gradient(circle at 86% 14%, rgba(124, 58, 237, .11), transparent 28%),
        radial-gradient(circle at 84% 72%, rgba(14, 165, 233, .11), transparent 30%),
        #f8fafc;
}

.ptmw-auth-brand span {
    background: linear-gradient(135deg, #f59e0b, #f97316);
}

.ptmw-auth-form input.input-text:focus,
.ptmw-register-panel input.input-text:focus {
    border-color: #7c3aed;
    box-shadow: 0 0 0 3px rgba(124, 58, 237, .14);
}

.ptmw-auth-side {
    background:
        radial-gradient(circle at 20% 16%, rgba(245, 158, 11, .22), transparent 30%),
        radial-gradient(circle at 76% 26%, rgba(124, 58, 237, .26), transparent 32%),
        radial-gradient(circle at 72% 84%, rgba(6, 182, 212, .16), transparent 28%),
        #0f172a;
}

.ptmw-auth-badge {
    border-color: rgba(124, 58, 237, .38);
    background: rgba(124, 58, 237, .14);
    color: #c4b5fd;
}

.ptmw-auth-stats span:nth-child(1) {
    border-color: rgba(245, 158, 11, .28);
}

.ptmw-auth-stats span:nth-child(2) {
    border-color: rgba(124, 58, 237, .32);
}

.ptmw-auth-stats span:nth-child(3) {
    border-color: rgba(6, 182, 212, .32);
}

.pt-home-hero {
    padding: 0;
}

.pt-home-hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(340px, .92fr);
    gap: 44px;
    align-items: center;
    min-height: 660px;
    padding-top: 72px;
    padding-bottom: 72px;
}

.pt-home-hero-copy h1 {
    max-width: 760px;
    margin: 0;
    color: #fff;
    font-size: clamp(46px, 6.1vw, 82px);
    line-height: .96;
    letter-spacing: 0;
}

.pt-home-hero-copy h1 span {
    display: block;
    color: #fbbf24;
}

.pt-home-hero-copy > p {
    max-width: 680px;
    margin: 22px 0 0;
    color: #cbd5e1;
    font-size: 20px;
}

.pt-home-hero .hero-search {
    max-width: 680px;
    margin-top: 30px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 14px;
    background: rgba(255,255,255,.08);
    padding: 8px;
}

.pt-home-hero .hero-search input {
    border: 0;
    background: transparent;
    color: #fff;
}

.pt-home-hero .hero-search input::placeholder {
    color: #94a3b8;
}

.pt-home-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 18px;
}

.pt-home-cta,
.pt-home-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    border-radius: 10px;
    padding: 12px 18px;
    font-weight: 900;
    text-decoration: none;
}

.pt-home-cta {
    background: linear-gradient(135deg, #f59e0b, #f97316);
    color: #111827;
    box-shadow: 0 18px 34px rgba(245, 158, 11, .22);
}

.pt-home-secondary {
    border: 1px solid rgba(255,255,255,.18);
    background: rgba(255,255,255,.08);
    color: #fff;
}

.tax-product_cat .shop-hero,
.post-type-archive-product .shop-hero {
    padding: 52px 0;
    background:
        radial-gradient(circle at 76% 22%, rgba(245, 158, 11, .24), transparent 30%),
        radial-gradient(circle at 18% 76%, rgba(139, 92, 246, .18), transparent 28%),
        linear-gradient(135deg, #0f172a 0%, #111827 54%, #1e1b4b 100%);
}

.tax-product_cat .content-layout,
.post-type-archive-product .content-layout {
    max-width: 1280px;
    padding-top: 28px;
}

.pt-home-hero .hero-metrics {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    max-width: 760px;
}

.pt-home-showcase {
    display: grid;
    gap: 16px;
}

.pt-home-slider {
    position: relative;
    min-height: 560px;
}

.pt-home-slides {
    position: relative;
    min-height: 506px;
}

.pt-home-slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-rows: minmax(300px, 1fr) auto;
    gap: 18px;
    opacity: 0;
    transform: translateX(28px) scale(.98);
    pointer-events: none;
    transition: opacity .45s ease, transform .45s ease;
}

.pt-home-slide.is-active {
    opacity: 1;
    transform: translateX(0) scale(1);
    pointer-events: auto;
}

.pt-slide-media {
    position: relative;
    overflow: hidden;
    display: grid;
    align-content: end;
    min-height: 338px;
    border: 1px solid rgba(148, 163, 184, .28);
    border-radius: 26px;
    padding: 30px;
    color: #fff;
    box-shadow: 0 28px 64px rgba(0, 0, 0, .24);
}

.pt-slide-media:before,
.pt-slide-media:after {
    content: "";
    position: absolute;
    border-radius: 50%;
}

.pt-slide-media:before {
    inset: -90px -72px auto auto;
    width: 260px;
    height: 260px;
    background: rgba(255, 255, 255, .18);
}

.pt-slide-media:after {
    left: 34px;
    top: 34px;
    width: 94px;
    height: 94px;
    background: rgba(255, 255, 255, .10);
}

.pt-slide-premium {
    background: linear-gradient(135deg, rgba(245, 158, 11, .94), rgba(249, 115, 22, .76)), #0f172a;
}

.pt-slide-license {
    background: linear-gradient(135deg, rgba(139, 92, 246, .94), rgba(79, 70, 229, .74)), #0f172a;
}

.pt-slide-codecanyon {
    background: linear-gradient(135deg, rgba(6, 182, 212, .90), rgba(34, 197, 94, .74)), #0f172a;
}

.pt-slide-theme-amber {
    background: linear-gradient(135deg, rgba(245, 158, 11, .82), rgba(249, 115, 22, .58)), var(--pt-slide-image, none), #0f172a;
    background-size: cover;
    background-position: center;
}

.pt-slide-theme-purple {
    background: linear-gradient(135deg, rgba(139, 92, 246, .82), rgba(79, 70, 229, .58)), var(--pt-slide-image, none), #0f172a;
    background-size: cover;
    background-position: center;
}

.pt-slide-theme-cyan {
    background: linear-gradient(135deg, rgba(6, 182, 212, .76), rgba(34, 197, 94, .56)), var(--pt-slide-image, none), #0f172a;
    background-size: cover;
    background-position: center;
}

.pt-slide-theme-green {
    background: linear-gradient(135deg, rgba(34, 197, 94, .80), rgba(20, 184, 166, .56)), var(--pt-slide-image, none), #0f172a;
    background-size: cover;
    background-position: center;
}

.pt-slide-theme-rose {
    background: linear-gradient(135deg, rgba(244, 63, 94, .80), rgba(249, 115, 22, .56)), var(--pt-slide-image, none), #0f172a;
    background-size: cover;
    background-position: center;
}

.pt-home-slide-no-image .pt-slide-theme-amber {
    background: linear-gradient(135deg, rgba(245, 158, 11, .94), rgba(249, 115, 22, .76)), #0f172a;
}

.pt-home-slide-no-image .pt-slide-theme-purple {
    background: linear-gradient(135deg, rgba(139, 92, 246, .94), rgba(79, 70, 229, .74)), #0f172a;
}

.pt-home-slide-no-image .pt-slide-theme-cyan {
    background: linear-gradient(135deg, rgba(6, 182, 212, .90), rgba(34, 197, 94, .74)), #0f172a;
}

.pt-home-slide-no-image .pt-slide-theme-green {
    background: linear-gradient(135deg, rgba(34, 197, 94, .92), rgba(20, 184, 166, .72)), #0f172a;
}

.pt-home-slide-no-image .pt-slide-theme-rose {
    background: linear-gradient(135deg, rgba(244, 63, 94, .92), rgba(249, 115, 22, .72)), #0f172a;
}

.pt-slide-pill,
.pt-slide-media strong,
.pt-slide-media em {
    position: relative;
    z-index: 1;
}

.pt-slide-pill {
    display: inline-flex;
    width: fit-content;
    min-height: 30px;
    align-items: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, .18);
    color: #fff;
    padding: 5px 12px;
    font-size: 13px;
    font-weight: 900;
}

.pt-slide-media strong {
    display: block;
    margin-top: 24px;
    font-size: 86px;
    line-height: .9;
    letter-spacing: 0;
}

.pt-slide-media em {
    display: block;
    margin-top: 12px;
    color: rgba(255,255,255,.86);
    font-style: normal;
    font-size: 22px;
    font-weight: 900;
}

.pt-slide-copy {
    border: 1px solid rgba(148, 163, 184, .25);
    border-radius: 18px;
    background: rgba(30, 41, 59, .72);
    color: #fff;
    padding: 22px;
    box-shadow: 0 20px 42px rgba(0, 0, 0, .16);
}

.pt-slide-copy span {
    color: #cbd5e1;
    font-size: 13px;
    font-weight: 900;
}

.pt-slide-copy h2 {
    margin: 7px 0 8px;
    color: #fff;
    font-size: 28px;
    line-height: 1.08;
}

.pt-slide-copy p {
    margin: 0;
    color: #cbd5e1;
}

.pt-slide-copy a {
    display: inline-flex;
    min-height: 40px;
    align-items: center;
    margin-top: 16px;
    border-radius: 10px;
    background: #fff;
    color: #111827;
    padding: 9px 13px;
    font-weight: 900;
    text-decoration: none;
}

.pt-slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 18px;
}

.pt-slider-prev,
.pt-slider-next {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 999px;
    background: rgba(255,255,255,.08);
    color: #fff;
    cursor: pointer;
    font-size: 28px;
    line-height: 1;
}

.pt-slider-dots {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pt-slider-dots button {
    width: 10px;
    height: 10px;
    border: 0;
    border-radius: 999px;
    background: rgba(255,255,255,.28);
    padding: 0;
    cursor: pointer;
}

.pt-slider-dots button.is-active {
    width: 30px;
    background: #f59e0b;
}

.pt-home-hero[data-slide-theme="amber"] {
    background:
        radial-gradient(circle at 74% 22%, rgba(245, 158, 11, .30), transparent 32%),
        radial-gradient(circle at 22% 70%, rgba(124, 58, 237, .14), transparent 28%),
        radial-gradient(circle at 88% 82%, rgba(6, 182, 212, .12), transparent 26%),
        linear-gradient(135deg, #0f172a 0%, #111827 54%, #3b1d0b 100%);
}

.pt-home-hero[data-slide-theme="purple"] {
    background:
        radial-gradient(circle at 76% 26%, rgba(139, 92, 246, .32), transparent 34%),
        radial-gradient(circle at 18% 72%, rgba(245, 158, 11, .14), transparent 28%),
        radial-gradient(circle at 88% 82%, rgba(6, 182, 212, .12), transparent 26%),
        linear-gradient(135deg, #0f172a 0%, #111827 50%, #1e1b4b 100%);
}

.pt-home-hero[data-slide-theme="cyan"] {
    background:
        radial-gradient(circle at 76% 26%, rgba(6, 182, 212, .28), transparent 34%),
        radial-gradient(circle at 22% 70%, rgba(34, 197, 94, .18), transparent 30%),
        radial-gradient(circle at 88% 82%, rgba(139, 92, 246, .12), transparent 26%),
        linear-gradient(135deg, #0f172a 0%, #111827 52%, #064e3b 100%);
}

.pt-home-hero[data-slide-theme="green"] {
    background:
        radial-gradient(circle at 76% 26%, rgba(34, 197, 94, .28), transparent 34%),
        radial-gradient(circle at 22% 70%, rgba(20, 184, 166, .18), transparent 30%),
        radial-gradient(circle at 88% 82%, rgba(245, 158, 11, .12), transparent 26%),
        linear-gradient(135deg, #0f172a 0%, #111827 52%, #052e16 100%);
}

.pt-home-hero[data-slide-theme="rose"] {
    background:
        radial-gradient(circle at 76% 26%, rgba(244, 63, 94, .28), transparent 34%),
        radial-gradient(circle at 22% 70%, rgba(249, 115, 22, .18), transparent 30%),
        radial-gradient(circle at 88% 82%, rgba(6, 182, 212, .12), transparent 26%),
        linear-gradient(135deg, #0f172a 0%, #111827 52%, #4c0519 100%);
}

.pt-showcase-card {
    position: relative;
    overflow: hidden;
    min-height: 154px;
    border: 1px solid rgba(148, 163, 184, .25);
    border-radius: 20px;
    background: rgba(30, 41, 59, .72);
    color: #fff;
    padding: 24px;
    box-shadow: 0 22px 48px rgba(0, 0, 0, .18);
}

.pt-showcase-card:before {
    content: "";
    position: absolute;
    inset: -40% -20% auto auto;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(245, 158, 11, .18);
}

.pt-showcase-card:nth-child(2):before {
    background: rgba(139, 92, 246, .20);
}

.pt-showcase-card:nth-child(3):before {
    background: rgba(6, 182, 212, .20);
}

.pt-showcase-card span,
.pt-showcase-card strong,
.pt-showcase-card em,
.pt-showcase-card a {
    position: relative;
    z-index: 1;
}

.pt-showcase-card span {
    display: block;
    color: #cbd5e1;
    font-weight: 800;
}

.pt-showcase-card strong {
    display: block;
    margin-top: 12px;
    font-size: 42px;
    line-height: 1;
}

.pt-showcase-card em {
    display: block;
    margin-top: 6px;
    color: #94a3b8;
    font-style: normal;
    font-weight: 800;
}

.pt-showcase-card a {
    display: inline-flex;
    margin-top: 18px;
    border-radius: 10px;
    background: #f59e0b;
    color: #111827;
    padding: 10px 14px;
    text-decoration: none;
    font-weight: 900;
}

.pt-showcase-primary {
    min-height: 210px;
    background: linear-gradient(135deg, rgba(245, 158, 11, .18), rgba(30, 41, 59, .86));
}

.pt-home-promo {
    background: #f8fafc;
    padding: 34px 0 18px;
}

.pt-home-promo-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.pt-promo-card {
    display: grid;
    gap: 8px;
    min-height: 156px;
    align-content: end;
    overflow: hidden;
    position: relative;
    border-radius: 18px;
    padding: 22px;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 18px 38px rgba(15, 23, 42, .12);
}

.pt-promo-card:before {
    content: "";
    position: absolute;
    inset: auto -28px -34px auto;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(255,255,255,.18);
}

.pt-promo-card span,
.pt-promo-card strong,
.pt-promo-card em {
    position: relative;
}

.pt-promo-card span {
    color: rgba(255,255,255,.78);
    font-size: 13px;
    font-weight: 900;
}

.pt-promo-card strong {
    font-size: 26px;
    line-height: 1.08;
}

.pt-promo-card em {
    color: rgba(255,255,255,.82);
    font-style: normal;
    font-weight: 700;
}

.pt-promo-orange {
    background: linear-gradient(135deg, #f59e0b, #f97316);
}

.pt-promo-purple {
    background: linear-gradient(135deg, #8b5cf6, #4f46e5);
}

.pt-promo-cyan {
    background: linear-gradient(135deg, #06b6d4, #22c55e);
}

.pt-license-band {
    padding: 18px 0;
    background: #0f172a;
    color: #cbd5e1;
}

.pt-license-band .site-shell {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.pt-license-band strong {
    color: #fff;
}

.pt-license-band span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
}

.pt-license-band span:before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
}

.pt-home-categories {
    padding-top: 54px;
    padding-bottom: 54px;
}

.pt-brand-band {
    padding: 54px 0;
    background: #fff;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

.pt-brand-band p {
    margin: 0 0 20px;
    color: #64748b;
    text-align: center;
    font-weight: 900;
}

.pt-brand-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 14px;
}

.pt-brand-grid span {
    display: grid;
    min-height: 76px;
    place-items: center;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    background: #f8fafc;
    color: #334155;
    font-weight: 900;
}

.pt-brand-grid span:nth-child(3n + 1) {
    color: #b45309;
}

.pt-brand-grid span:nth-child(3n + 2) {
    color: #6d28d9;
}

.pt-brand-grid span:nth-child(3n) {
    color: #0e7490;
}

.pt-home-brand-carousel {
    position: relative;
    overflow: hidden;
    padding: 70px 0 64px;
    border-top: 5px solid rgba(6, 182, 212, .36);
    background:
        radial-gradient(circle at 28% 22%, rgba(245, 158, 11, .12), transparent 26%),
        radial-gradient(circle at 72% 30%, rgba(139, 92, 246, .10), transparent 28%),
        linear-gradient(180deg, #fff, #f8fafc);
}

.pt-brand-carousel-head {
    max-width: 720px;
    margin: 0 auto 34px;
    text-align: center;
}

.pt-brand-carousel-head > span {
    display: inline-flex;
    margin-bottom: 8px;
    color: #f59e0b;
    font-size: 34px;
    line-height: 1;
}

.pt-brand-carousel-head h2 {
    margin: 0;
    color: #0f172a;
    font-size: 38px;
    line-height: 1.05;
}

.pt-brand-carousel-head p {
    margin: 12px 0 0;
    color: #64748b;
    font-size: 16px;
}

.pt-brand-marquee {
    position: relative;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    overflow: hidden;
    padding: 8px 0 22px;
}

.pt-brand-marquee:before,
.pt-brand-marquee:after {
    content: "";
    position: absolute;
    z-index: 2;
    top: 0;
    bottom: 0;
    width: 140px;
    pointer-events: none;
}

.pt-brand-marquee:before {
    left: 0;
    background: linear-gradient(90deg, #fff, rgba(255,255,255,0));
}

.pt-brand-marquee:after {
    right: 0;
    background: linear-gradient(270deg, #fff, rgba(255,255,255,0));
}

.pt-brand-track {
    display: flex;
    width: max-content;
    gap: 24px;
    padding-left: 24px;
    animation: pt-brand-marquee 38s linear infinite;
}

.pt-brand-marquee:hover .pt-brand-track {
    animation-play-state: paused;
}

.pt-brand-logo-card {
    display: grid;
    place-items: center;
    gap: 9px;
    width: 112px;
    height: 112px;
    flex: 0 0 auto;
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 14px;
    background: #fff;
    color: #475569;
    box-shadow: 0 14px 28px rgba(15, 23, 42, .12);
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease;
}

.pt-brand-logo-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 38px rgba(15, 23, 42, .18);
}

.pt-brand-logo-card img {
    width: 46px;
    height: 46px;
    object-fit: contain;
}

.pt-brand-logo-card span {
    max-width: 92px;
    overflow: hidden;
    color: currentColor;
    font-size: 12px;
    font-weight: 900;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.pt-brand-dark {
    background: #141027;
    color: #fff;
}

.pt-brand-blue {
    background: #e0f2fe;
    color: #075985;
}

.pt-brand-rose {
    background: #fce7f3;
    color: #9d174d;
}

.pt-brand-purple {
    background: #f3e8ff;
    color: #6d28d9;
}

.pt-brand-cyan {
    background: #ccfbf1;
    color: #0f766e;
}

.pt-brand-sky {
    background: #dbeafe;
    color: #1d4ed8;
}

.pt-brand-indigo {
    background: #ede9fe;
    color: #4f46e5;
}

.pt-brand-orange {
    background: #ffedd5;
    color: #c2410c;
}

.pt-brand-white {
    background: #fff;
    color: #334155;
}

.pt-brand-yellow {
    background: #fef3c7;
    color: #92400e;
}

.pt-brand-black {
    background: #111827;
    color: #fff;
}

.pt-brand-green {
    background: #dcfce7;
    color: #166534;
}

@keyframes pt-brand-marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

.pt-popular-products {
    padding-top: 66px;
}

.pt-popular-products-section {
    padding: 72px 0 80px;
    background:
        radial-gradient(circle at 22% 18%, rgba(245, 158, 11, .08), transparent 28%),
        radial-gradient(circle at 82% 26%, rgba(139, 92, 246, .08), transparent 30%),
        #f8fafc;
}

.pt-popular-heading {
    margin-bottom: 28px;
}

.pt-heading-icon {
    display: inline-flex;
    margin-bottom: 8px;
    color: #f97316;
    font-size: 34px;
    line-height: 1;
}

.pt-popular-heading h2 {
    font-size: 42px;
}

.pt-home-products-board {
    display: grid;
    grid-template-columns: 290px minmax(0, 1fr);
    gap: 30px;
    align-items: start;
}

.pt-home-products-board .ptmw-product-filters {
    position: sticky;
    top: 116px;
    float: none;
    grid-row: 1 / span 3;
    width: auto;
    min-height: 420px;
    margin: 0;
    border-radius: 16px;
    background:
        radial-gradient(circle at 16% 12%, rgba(245, 158, 11, .20), transparent 30%),
        #172235;
    padding: 22px;
}

.pt-home-products-board .ptmw-product-filters-head {
    grid-template-columns: 44px minmax(0, 1fr);
}

.pt-home-products-board .ptmw-filter-icon {
    border-radius: 12px;
}

.pt-home-products-board .ptmw-product-filters-head strong {
    font-size: 18px;
}

.pt-home-products-board .ptmw-product-filters label:nth-of-type(1) {
    display: none;
}

.pt-home-products-board .ptmw-product-filters label {
    border-top: 1px solid rgba(148, 163, 184, .12);
    padding-top: 10px;
}

.pt-home-products-board .ptmw-product-filters label span {
    color: #cbd5e1;
    font-weight: 900;
}

.pt-home-products-board .ptmw-product-filters select {
    border: 0;
    background: rgba(255, 255, 255, .08);
}

.pt-home-products-board .ptmw-filter-actions {
    display: none;
}

.pt-home-products-board .ptmw-products-head {
    grid-column: 2;
    margin: 0;
    min-height: 86px;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    background: #fff;
    padding: 18px;
    box-shadow: 0 12px 28px rgba(15, 23, 42, .07);
}

.pt-home-products-board .ptmw-products-head strong {
    display: inline-flex;
    min-height: 36px;
    align-items: center;
    border-radius: 10px;
    background: linear-gradient(135deg, #f59e0b, #f97316);
    color: #fff;
    padding: 8px 12px;
    font-size: 14px;
}

.pt-home-products-board .ptmw-products-head span {
    color: #64748b;
}

.pt-home-products-carousel {
    position: relative;
}

.pt-home-products-carousel .ptmw-products-head {
    display: none;
}

.pt-home-products-carousel .ptmw-products {
    display: grid;
    grid-auto-columns: minmax(252px, 280px);
    grid-auto-flow: column;
    grid-template-columns: none;
    gap: 18px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    margin: 26px calc(50% - 50vw) 0;
    padding: 4px max(20px, calc((100vw - 1180px) / 2)) 28px;
    scroll-snap-type: x proximity;
    scrollbar-width: thin;
}

.pt-home-products-carousel .ptmw-product-card {
    scroll-snap-align: start;
}

.pt-home-products-board .ptmw-products {
    grid-column: 2;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin: 0;
}

.pt-home-products-board .ptmw-product-card {
    border-radius: 16px;
    min-width: 0;
}

.pt-home-products-board .ptmw-product-card img {
    aspect-ratio: 1 / 1;
    padding: 16px;
}

.pt-home-products-board .ptmw-product-card-body {
    min-height: 244px;
}

.pt-home-products-board .ptmw-product-card p,
.pt-home-products-board .ptmw-product-tags,
.pt-home-products-board .ptmw-badge {
    display: none;
}

.pt-home-products-board .ptmw-product-card h3 {
    min-height: 48px;
    margin-top: 0;
}

.pt-home-products-board .ptmw-card-price {
    margin-top: 18px;
}

.pt-home-products-board .ptmw-card-price strong {
    font-size: 22px;
}

.pt-home-products-board .ptmw-card-row {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.pt-home-products-board .ptmw-details-button,
.pt-home-products-board .ptmw-card-row .button {
    min-height: 32px;
    border-radius: 8px;
    font-size: 12px;
}

.pt-home-products-board .ptmw-sale-badge {
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, #f43f5e, #ec4899);
}

.pt-centered-heading {
    justify-content: center;
    text-align: center;
}

.pt-centered-heading > div,
.pt-centered-heading p {
    margin-left: auto;
    margin-right: auto;
}

.pt-category-products {
    padding: 76px 0;
    background:
        radial-gradient(circle at 18% 18%, rgba(245, 158, 11, .10), transparent 28%),
        radial-gradient(circle at 84% 22%, rgba(139, 92, 246, .10), transparent 30%),
        #f8fafc;
}

.pt-category-product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-top: 28px;
}

.pt-category-product-card {
    position: relative;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    border-radius: 22px;
    background: #fff;
    padding: 20px;
    box-shadow: 0 22px 50px rgba(15, 23, 42, .08);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.pt-category-product-card:before {
    content: "";
    position: absolute;
    top: -90px;
    right: -90px;
    width: 190px;
    height: 190px;
    border-radius: 50%;
    opacity: .52;
    filter: blur(4px);
    transition: opacity .2s ease, transform .2s ease;
}

.pt-card-plugins:before {
    background: rgba(245, 158, 11, .22);
}

.pt-card-themes:before {
    background: rgba(139, 92, 246, .20);
}

.pt-card-advanced:before {
    background: rgba(6, 182, 212, .20);
}

.pt-category-product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 70px rgba(15, 23, 42, .14);
}

.pt-category-product-card:hover:before {
    opacity: .88;
    transform: scale(1.08);
}

.pt-category-card-head {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.pt-category-card-head span {
    display: inline-flex;
    min-height: 32px;
    align-items: center;
    border-radius: 999px;
    background: #f8fafc;
    color: #0f172a;
    padding: 6px 12px;
    font-weight: 900;
}

.pt-category-card-head a {
    color: #7c3aed;
    font-size: 13px;
    font-weight: 900;
}

.pt-category-product-card .ptmw-compact-list {
    position: relative;
    z-index: 1;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.pt-category-product-card .ptmw-compact-list h2 {
    display: none;
}

.pt-category-product-card .ptmw-list-row {
    grid-template-columns: 54px minmax(0, 1fr);
    border-top-color: #eef2f7;
}

.pt-category-product-card .ptmw-list-row em {
    display: none;
}

.pt-premium-access {
    overflow: hidden;
    padding: 78px 0;
    background:
        radial-gradient(circle at 18% 32%, rgba(245, 158, 11, .20), transparent 28%),
        radial-gradient(circle at 76% 26%, rgba(139, 92, 246, .24), transparent 30%),
        radial-gradient(circle at 82% 78%, rgba(6, 182, 212, .16), transparent 28%),
        #0f172a;
    color: #fff;
}

.pt-premium-access-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, .9fr);
    gap: 34px;
    align-items: center;
}

.pt-premium-badge {
    display: inline-flex;
    min-height: 32px;
    align-items: center;
    border: 1px solid rgba(245, 158, 11, .35);
    border-radius: 999px;
    background: rgba(245, 158, 11, .12);
    color: #fbbf24;
    padding: 6px 12px;
    font-size: 13px;
    font-weight: 900;
}

.pt-premium-access h2 {
    max-width: 760px;
    margin: 18px 0 16px;
    color: #fff;
    font-size: clamp(34px, 4.5vw, 62px);
    line-height: 1;
}

.pt-premium-access p {
    max-width: 680px;
    color: #cbd5e1;
    font-size: 18px;
}

.pt-premium-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 26px;
}

.pt-premium-stats span {
    display: grid;
    min-height: 88px;
    align-content: center;
    border: 1px solid rgba(148, 163, 184, .24);
    border-radius: 16px;
    background: rgba(30, 41, 59, .66);
    color: #94a3b8;
    padding: 16px;
    font-weight: 800;
}

.pt-premium-stats strong {
    color: #fff;
    font-size: 22px;
}

.pt-premium-card {
    position: relative;
    overflow: hidden;
    display: grid;
    min-height: 390px;
    align-content: end;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 28px;
    background:
        radial-gradient(circle at 82% 18%, rgba(255,255,255,.24), transparent 28%),
        linear-gradient(135deg, #f59e0b, #f97316);
    color: #111827;
    padding: 34px;
    box-shadow: 0 34px 80px rgba(245, 158, 11, .24);
    animation: ptmw-float 4.8s ease-in-out infinite;
}

.pt-premium-card span {
    font-weight: 900;
}

.pt-premium-card strong {
    margin-top: 14px;
    font-size: 86px;
    line-height: .9;
}

.pt-premium-card em {
    color: rgba(17, 24, 39, .72);
    font-style: normal;
    font-size: 22px;
    font-weight: 900;
}

.pt-premium-card a {
    display: inline-flex;
    justify-content: center;
    min-height: 48px;
    align-items: center;
    margin-top: 26px;
    border-radius: 12px;
    background: #111827;
    color: #fff;
    padding: 12px 18px;
    text-decoration: none;
    font-weight: 900;
}

.pt-why-plugin-theme {
    padding: 78px 0;
    background: #fff;
}

.pt-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 32px;
}

.pt-feature-grid article {
    position: relative;
    overflow: hidden;
    min-height: 230px;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    background: linear-gradient(145deg, #fff, #f8fafc);
    padding: 24px;
    box-shadow: 0 18px 42px rgba(15, 23, 42, .06);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.pt-feature-grid article:after {
    content: "";
    position: absolute;
    top: -62px;
    right: -62px;
    width: 148px;
    height: 148px;
    border-radius: 50%;
    background: rgba(139, 92, 246, .10);
    transition: opacity .2s ease, transform .2s ease;
}

.pt-feature-grid article:nth-child(3n + 1):after {
    background: rgba(245, 158, 11, .13);
}

.pt-feature-grid article:nth-child(3n):after {
    background: rgba(6, 182, 212, .12);
}

.pt-feature-grid article:hover {
    border-color: rgba(139, 92, 246, .28);
    box-shadow: 0 28px 62px rgba(15, 23, 42, .12);
    transform: translateY(-6px);
}

.pt-feature-grid article:hover:after {
    transform: scale(1.12);
}

.pt-feature-grid span {
    display: inline-flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: #eef2ff;
    color: #6d28d9;
    font-weight: 900;
}

.pt-feature-grid h3 {
    margin: 18px 0 10px;
    color: #0f172a;
    font-size: 17px;
}

.pt-feature-grid p {
    margin: 0;
    color: #64748b;
}

@media (max-width: 980px) {
    .pt-category-product-grid,
    .pt-premium-access-grid,
    .pt-feature-grid {
        grid-template-columns: 1fr;
    }

    .pt-premium-stats {
        grid-template-columns: 1fr;
    }

    .pt-home-products-board {
        grid-template-columns: 1fr;
    }

    .pt-home-products-board .ptmw-product-filters,
    .pt-home-products-board .ptmw-products-head,
    .pt-home-products-board .ptmw-products {
        grid-column: auto;
    }

    .pt-home-products-board .ptmw-products {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .pt-home-products-board .ptmw-products {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 980px) {
    .pt-home-hero-inner,
    .pt-home-promo-grid {
        grid-template-columns: 1fr;
    }

    .pt-home-hero .hero-metrics,
    .pt-brand-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .pt-home-slider,
    .pt-home-slides {
        min-height: 600px;
    }
}

@media (max-width: 640px) {
    .pt-home-hero-inner {
        min-height: auto;
        padding-top: 44px;
        padding-bottom: 44px;
    }

    .pt-home-hero .hero-metrics,
    .pt-brand-grid {
        grid-template-columns: 1fr;
    }

    .pt-home-slider,
    .pt-home-slides {
        min-height: 560px;
    }

    .pt-slide-media {
        min-height: 280px;
        padding: 22px;
    }

    .pt-slide-media strong {
        font-size: 62px;
    }

    .pt-brand-logo-card {
        width: 96px;
        height: 96px;
    }

    .pt-brand-logo-card img {
        width: 38px;
        height: 38px;
    }
}

a {
    color: #0f766e;
}

img {
    max-width: 100%;
    height: auto;
}

.site-shell {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
}

.site-header {
    background: rgba(16, 24, 39, .94);
    color: #fff;
    position: sticky;
    top: 0;
    z-index: 20;
    box-shadow: 0 1px 0 rgba(255,255,255,.08);
    backdrop-filter: blur(14px);
}

.site-header-inner {
    min-height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.site-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    white-space: nowrap;
}

.site-brand span {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border-radius: 6px;
    background: var(--brand);
    color: #111827;
    font-size: 14px;
}

.site-brand-wordmark {
    position: relative;
    gap: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 25px;
    font-style: italic;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0;
    color: transparent;
    background: linear-gradient(135deg, #fff 0%, #fff3d4 38%, #ffae00 64%, #f97316 100%);
    -webkit-background-clip: text;
    background-clip: text;
    text-shadow: 0 12px 28px rgba(245, 158, 11, .2);
}

.site-brand-wordmark:after {
    content: "";
    position: absolute;
    left: 2px;
    right: 0;
    bottom: -5px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(255, 174, 0, .9), rgba(249, 115, 22, 0));
    opacity: .9;
}

.site-brand-wordmark span {
    display: none;
}

.header-search {
    flex: 1;
    max-width: 320px;
    min-width: 180px;
}

.header-search input[type="text"],
.header-search input[name="s"] {
    width: 100%;
    min-height: 38px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 6px;
    background: rgba(255,255,255,.08);
    color: #fff;
    padding: 8px 11px;
    outline: 0;
}

.header-search input::placeholder {
    color: #94a3b8;
}

.site-nav,
.site-nav ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
    flex-wrap: wrap;
}

.site-nav a {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 7px 10px;
    border-radius: 6px;
    color: #cbd5e1;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
}

.site-nav a:hover {
    background: rgba(255,255,255,.08);
    color: #fff;
}

.site-cart-link {
    gap: 7px;
}

.ptmw-cart-count {
    min-width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #f59e0b;
    color: #111827;
    padding: 0 6px;
    font-size: 12px;
    font-weight: 900;
    line-height: 1;
}

.ptmw-cart-count[data-cart-count="0"] {
    background: rgba(255,255,255,.12);
    color: #cbd5e1;
}

.language-switcher {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 6px;
    background: rgba(255,255,255,.06);
}

.language-switcher a,
.language-switcher span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    min-height: 28px;
    padding: 4px 8px;
    border-radius: 4px;
    color: #cbd5e1;
    text-decoration: none;
    font-size: 12px;
    font-weight: 800;
}

.language-switcher .is-active,
.language-switcher a:hover {
    background: #f59e0b;
    color: #111827;
}

.site-strip {
    border-top: 1px solid rgba(255,255,255,.08);
    background: #0b1220;
    color: #bac7d8;
    font-size: 12px;
}

.site-strip .site-shell {
    min-height: 34px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.site-strip span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.site-strip span:before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
}

.site-hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 18%, rgba(245,158,11,.22), transparent 28%),
        radial-gradient(circle at 84% 12%, rgba(15,118,110,.24), transparent 30%),
        linear-gradient(135deg, #101827 0%, #0b1220 55%, #132031 100%);
    color: #fff;
    padding: 72px 0 76px;
}

.site-hero:before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: linear-gradient(180deg, rgba(0,0,0,.7), transparent 78%);
}

.site-hero > .site-shell {
    position: relative;
    z-index: 1;
}

.site-hero-grid,
.shop-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
    gap: 36px;
    align-items: center;
}

.site-hero h1,
.shop-hero h1,
.page-hero h1 {
    max-width: 820px;
    margin: 10px 0 18px;
    font-size: 58px;
    line-height: 1.04;
}

.site-hero h1 {
    max-width: 780px;
    text-wrap: balance;
}

.site-hero p,
.shop-hero p {
    max-width: 690px;
    color: #cbd5e1;
    font-size: 18px;
}

.eyebrow {
    color: #fbbf24 !important;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: 13px;
    font-weight: 800;
}

.hero-search {
    display: flex;
    max-width: 690px;
    margin: 28px 0 18px;
    padding: 6px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 18px 36px rgba(0,0,0,.18);
    animation: ptmw-rise .55s ease both .08s;
}

.hero-search input {
    flex: 1;
    min-width: 0;
    border: 0;
    padding: 13px 14px;
    color: var(--ink);
    font-size: 15px;
    outline: 0;
}

.hero-search button,
.button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
    border: 0;
    border-radius: 6px !important;
    background: var(--brand) !important;
    color: #111827 !important;
    padding: 12px 16px !important;
    font-weight: 800 !important;
    text-decoration: none;
    cursor: pointer;
}

.hero-search button:hover,
.button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
    background: #fbbf24 !important;
    color: #111827 !important;
    transform: translateY(-1px);
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    max-width: 690px;
    margin: 18px 0 0;
}

.hero-metrics span {
    display: grid;
    gap: 2px;
    min-height: 74px;
    padding: 13px 14px;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 8px;
    background: rgba(255,255,255,.07);
    color: #cbd5e1;
    font-size: 13px;
    font-weight: 800;
    backdrop-filter: blur(10px);
    animation: ptmw-rise .55s ease both;
}

.hero-metrics span:nth-child(2) {
    animation-delay: .08s;
}

.hero-metrics span:nth-child(3) {
    animation-delay: .16s;
}

.hero-metrics strong {
    color: #fff;
    font-size: 26px;
    line-height: 1;
}

.hero-product-stack {
    position: relative;
    display: grid;
    gap: 12px;
    animation: ptmw-float 6s ease-in-out infinite;
}

.hero-stack-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 14px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 8px;
    background: rgba(255,255,255,.09);
    box-shadow: 0 18px 42px rgba(0,0,0,.18);
}

.hero-stack-heading span {
    color: #cbd5e1;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.hero-stack-heading strong {
    color: #fff;
}

.hero-product {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    min-height: 92px;
    padding: 10px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 8px;
    background: rgba(255,255,255,.08);
    color: #fff;
    text-decoration: none;
    box-shadow: 0 18px 38px rgba(0,0,0,.12);
    transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.hero-product:nth-child(odd) {
    transform: translateX(12px);
}

.hero-product:hover {
    border-color: rgba(245,158,11,.7);
    background: rgba(255,255,255,.12);
    transform: translateX(0) translateY(-2px);
}

.hero-product img {
    width: 72px;
    height: 72px;
    border-radius: 6px;
    object-fit: cover;
    background: #e2e8f0;
}

.hero-product strong,
.hero-product small {
    display: block;
}

.hero-product small {
    margin-top: 4px;
    color: #cbd5e1;
    text-transform: capitalize;
}

.category-band,
.split-band {
    padding: 34px 0;
    background: rgba(255,255,255,.84);
    border-bottom: 1px solid var(--line);
}

.site-section {
    padding-top: 48px;
    padding-bottom: 48px;
}

.home .site-section,
.home .category-band,
.home .split-band {
    animation: ptmw-rise .55s ease both;
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 22px;
}

.section-heading h2,
.ptmw-compact-list h2,
.woocommerce div.product .product_title {
    margin: 0 0 8px;
    font-size: 30px;
    line-height: 1.2;
}

.section-heading p {
    margin: 0;
    max-width: 680px;
    color: var(--muted);
}

.section-heading a {
    font-weight: 800;
    white-space: nowrap;
}

.split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.shop-hero,
.page-hero {
    padding: 42px 0;
    background: #111827;
    color: #fff;
}

.shop-hero h1,
.page-hero h1 {
    font-size: 42px;
}

.shop-search {
    margin: 0;
}

.content-layout {
    padding-top: 36px;
    padding-bottom: 56px;
}

.page-content {
    max-width: 980px;
}

.page-content article {
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
}

.site-footer {
    border-top: 1px solid var(--line);
    padding: 38px 0;
    color: var(--muted);
    background: #fff;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr .7fr .7fr .9fr;
    gap: 24px;
}

.footer-brand {
    color: var(--ink);
}

.site-footer h2 {
    margin: 0 0 12px;
    color: var(--ink);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.site-footer a {
    display: block;
    margin: 7px 0;
    color: var(--muted);
    text-decoration: none;
    font-weight: 700;
}

.site-footer a:hover {
    color: var(--ink);
}

.footer-copy {
    margin-top: 16px;
    font-size: 13px;
}

.woocommerce .woocommerce-result-count,
.woocommerce .woocommerce-ordering {
    margin-bottom: 18px;
}

.woocommerce .woocommerce-ordering select,
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce .quantity .qty,
.woocommerce-Input,
.input-text {
    min-height: 42px;
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 9px 11px;
    background: #fff;
}

.ptmw-qty-control {
    display: inline-grid;
    grid-template-columns: 42px minmax(58px, 76px) 42px;
    align-items: stretch;
    min-height: 46px;
    border: 1px solid var(--line);
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
}

.ptmw-qty-control .ptmw-qty-btn {
    border: 0;
    background: var(--surface-2);
    color: var(--ink);
    font-size: 20px;
    font-weight: 900;
    cursor: pointer;
}

.ptmw-qty-control .ptmw-qty-btn:hover {
    background: #e5edf6;
}

.ptmw-qty-control .qty {
    width: 100% !important;
    min-height: 44px;
    border: 0 !important;
    border-left: 1px solid var(--line) !important;
    border-right: 1px solid var(--line) !important;
    border-radius: 0 !important;
    padding: 8px 4px !important;
    text-align: center;
}

.woocommerce ul.products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 18px;
}

.woocommerce ul.products:before,
.woocommerce ul.products:after {
    content: none;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
    float: none;
    width: auto;
    margin: 0;
    min-height: 100%;
    border: 1px solid var(--line);
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 22px rgba(15,23,42,.04);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

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

.woocommerce ul.products li.product a img {
    width: 100%;
    aspect-ratio: 4 / 3;
    margin: 0;
    object-fit: cover;
    background: var(--surface-2);
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
    padding: 14px 14px 4px;
    color: var(--ink);
    font-size: 17px;
    line-height: 1.25;
}

.woocommerce ul.products li.product .price {
    display: block;
    padding: 0 14px 12px;
    color: var(--accent);
    font-weight: 800;
}

.woocommerce ul.products li.product .button {
    margin: 0 14px 16px;
}

.woocommerce span.onsale {
    min-height: 0;
    min-width: 0;
    border-radius: 6px;
    padding: 5px 8px;
    background: var(--accent);
    line-height: 1;
    font-weight: 800;
}

.woocommerce div.product {
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
}

.woocommerce div.product div.images img {
    border-radius: 8px;
    background: var(--surface-2);
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
    color: var(--accent);
    font-size: 28px;
    font-weight: 800;
}

.woocommerce div.product .summary {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.woocommerce div.product form.cart {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin: 4px 0 14px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: linear-gradient(180deg, #fff, var(--surface-2));
}

.woocommerce div.product form.cart .quantity {
    display: flex;
    align-items: center;
}

.woocommerce div.product form.cart .qty {
    width: 76px;
    min-height: 46px;
    border: 1px solid var(--line);
    border-radius: 6px;
    color: var(--ink);
    font-weight: 800;
    text-align: center;
}

.woocommerce-cart table.cart .product-quantity {
    min-width: 170px;
}

.woocommerce-cart table.cart .ptmw-qty-control {
    max-width: 168px;
}

.ptmw-cart-page {
    width: min(1180px, calc(100% - 40px));
    margin: 44px auto 72px;
}

.ptmw-cart-empty-page {
    display: grid;
    gap: 24px;
    min-height: 540px;
    align-content: center;
}

.ptmw-cart-empty-card {
    display: grid;
    justify-items: center;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    background: #fff;
    padding: 64px 24px;
    text-align: center;
    box-shadow: 0 18px 48px rgba(15, 23, 42, .08);
}

.ptmw-cart-empty-icon {
    display: grid;
    place-items: center;
    width: 92px;
    height: 92px;
    margin-bottom: 22px;
    border-radius: 999px;
    background: #fff4e3;
    color: #ff8500;
}

.ptmw-cart-empty-icon svg {
    width: 44px;
    height: 44px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.ptmw-cart-empty-card h1,
.ptmw-cart-heading h1 {
    margin: 0;
    color: #111827;
    font-size: 36px;
    line-height: 1.1;
    letter-spacing: 0;
}

.ptmw-cart-empty-card p,
.ptmw-cart-heading p {
    margin: 10px 0 0;
    color: #667085;
    font-size: 17px;
}

.ptmw-cart-primary,
.ptmw-cart-heading a,
.ptmw-cart-update,
.ptmw-cart-coupon button,
.ptmw-cart-summary .checkout-button {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    border: 0 !important;
    border-radius: 11px !important;
    background: #ff8500 !important;
    color: #fff !important;
    font-weight: 800 !important;
    text-decoration: none !important;
    box-shadow: 0 14px 28px rgba(255, 133, 0, .24);
}

.ptmw-cart-primary {
    min-height: 50px;
    margin-top: 28px;
    padding: 0 26px;
}

.ptmw-cart-shortcuts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.ptmw-cart-shortcuts a {
    display: grid;
    gap: 4px;
    min-height: 104px;
    align-content: center;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    background: linear-gradient(135deg, #fff 0%, #f8fafc 100%);
    padding: 22px;
    color: #111827;
    text-decoration: none;
    box-shadow: 0 10px 28px rgba(15, 23, 42, .06);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.ptmw-cart-shortcuts a:hover {
    transform: translateY(-3px);
    border-color: #fed7aa;
    box-shadow: 0 18px 38px rgba(15, 23, 42, .1);
}

.ptmw-cart-shortcuts span {
    color: #667085;
    font-size: 14px;
}

.ptmw-cart-shortcuts strong {
    color: #111827;
    font-size: 18px;
}

.ptmw-cart-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 24px;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    background: linear-gradient(90deg, #fff 0%, #fff 76%, #fff6ea 100%);
    padding: 28px;
    box-shadow: 0 10px 32px rgba(15, 23, 42, .06);
}

.ptmw-cart-heading a {
    min-height: 44px;
    padding: 0 18px;
    flex: 0 0 auto;
}

.ptmw-cart-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 24px;
    align-items: start;
}

.ptmw-cart-panel,
.ptmw-cart-summary .cart_totals {
    border: 1px solid #e5e7eb !important;
    border-radius: 16px !important;
    background: #fff !important;
    padding: 0 !important;
    box-shadow: 0 12px 34px rgba(15, 23, 42, .07);
}

.ptmw-cart-list {
    display: grid;
}

.ptmw-cart-list-head,
.ptmw-cart-row {
    display: grid;
    grid-template-columns: minmax(280px, 1fr) 120px 180px 120px;
    gap: 18px;
    align-items: center;
}

.ptmw-cart-list-head {
    min-height: 54px;
    border-bottom: 1px solid #edf0f4;
    padding: 0 24px;
    color: #667085;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.ptmw-cart-row {
    padding: 22px 24px;
    border-bottom: 1px solid #edf0f4;
}

.ptmw-cart-row:last-child {
    border-bottom: 0;
}

.ptmw-cart-product {
    display: grid;
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 16px;
    align-items: center;
    min-width: 0;
}

.ptmw-cart-thumb,
.ptmw-cart-thumb a {
    display: block;
}

.ptmw-cart-thumb img {
    width: 82px;
    height: 82px;
    border: 1px solid #edf0f4;
    border-radius: 14px;
    background: #f8fafc;
    object-fit: cover;
}

.ptmw-cart-product-copy {
    min-width: 0;
}

.ptmw-cart-product-copy h2 {
    margin: 0 0 6px;
    font-size: 17px;
    line-height: 1.35;
    letter-spacing: 0;
}

.ptmw-cart-product-copy h2 a {
    color: #111827;
    text-decoration: none;
}

.ptmw-cart-product-copy h2 a:hover {
    color: #ff8500;
}

.ptmw-cart-product-copy dl,
.ptmw-cart-product-copy p {
    margin: 0;
    color: #667085;
    font-size: 14px;
}

.ptmw-cart-price,
.ptmw-cart-subtotal {
    color: #111827;
    font-weight: 800;
}

.ptmw-cart-mobile-price {
    display: none;
}

.ptmw-cart-quantity .quantity {
    display: flex;
}

.ptmw-cart-quantity .ptmw-qty-control {
    width: 150px;
    max-width: 100%;
    border-color: #d9dee8;
    background: #fff;
}

.ptmw-cart-remove {
    display: inline-flex;
    margin-top: 8px;
    color: #ef4444 !important;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.ptmw-cart-actions {
    display: flex;
    gap: 16px;
    align-items: end;
    justify-content: space-between;
    border-top: 1px solid #edf0f4;
    padding: 22px 24px 24px;
}

.ptmw-cart-coupon {
    display: grid;
    gap: 8px;
    min-width: min(100%, 420px);
}

.ptmw-cart-coupon label {
    color: #475467;
    font-size: 14px;
    font-weight: 800;
}

.ptmw-cart-coupon div {
    display: flex;
    gap: 10px;
}

.ptmw-cart-coupon input {
    width: 100%;
    height: 44px;
    border: 1px solid #d9dee8;
    border-radius: 10px;
    background: #fbfcfe;
    padding: 0 14px;
    color: #111827;
}

.ptmw-cart-coupon button,
.ptmw-cart-update {
    min-height: 44px;
    padding: 0 18px !important;
}

.ptmw-cart-update {
    background: #111827 !important;
    box-shadow: none;
}

.ptmw-cart-summary {
    position: sticky;
    top: 24px;
}

.ptmw-cart-summary .cart_totals {
    width: 100% !important;
    float: none !important;
    padding: 26px !important;
}

.ptmw-cart-summary .cart_totals h2 {
    margin: 0 0 20px;
    color: #111827;
    font-size: 24px;
    line-height: 1.15;
    letter-spacing: 0;
}

.ptmw-cart-total-lines {
    display: grid;
    gap: 14px;
}

body.woocommerce-cart {
    background: #f4f6f9;
}

body.woocommerce-cart .ptmw-cart-page {
    width: min(1420px, calc(100% - 48px));
    margin-top: 28px;
}

body.woocommerce-cart .ptmw-cart-heading {
    display: grid;
    justify-items: center;
    gap: 8px;
    margin: 0 0 34px;
    border: 0;
    background: transparent;
    padding: 0;
    text-align: center;
    box-shadow: none;
}

body.woocommerce-cart .ptmw-cart-heading h1 {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 42px;
}

body.woocommerce-cart .ptmw-cart-heading h1 span {
    color: #ff8a00;
    font-size: 34px;
    line-height: 1;
}

body.woocommerce-cart .ptmw-cart-heading p {
    margin: 0;
    color: #334155;
    font-size: 18px;
}

body.woocommerce-cart .ptmw-cart-layout {
    grid-template-columns: minmax(0, 1fr) 436px;
    gap: 32px;
    align-items: start;
}

body.woocommerce-cart .ptmw-cart-panel {
    display: block;
    min-width: 0;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none;
}

body.woocommerce-cart .ptmw-cart-summary {
    width: 436px;
    max-width: 100%;
    justify-self: end;
    z-index: 0;
}

body.woocommerce-cart .ptmw-cart-list {
    gap: 16px;
}

body.woocommerce-cart .ptmw-cart-list-head,
body.woocommerce-cart .ptmw-cart-row {
    grid-template-columns: minmax(0, 1fr) 136px 112px;
    gap: 20px;
}

body.woocommerce-cart .ptmw-cart-list-head {
    display: none;
}

body.woocommerce-cart .ptmw-cart-row {
    position: relative;
    min-height: 146px;
    border: 1px solid #dfe4ec;
    border-radius: 16px;
    background: #fff;
    padding: 16px 22px 16px 32px;
    box-shadow: 0 2px 8px rgba(15, 23, 42, .08);
}

body.woocommerce-cart .ptmw-cart-product {
    grid-template-columns: 80px minmax(0, 1fr);
    gap: 16px;
    min-width: 0;
}

body.woocommerce-cart .ptmw-cart-thumb img {
    width: 80px;
    height: 80px;
    border-radius: 8px;
}

body.woocommerce-cart .ptmw-cart-product-copy h2 {
    max-width: 360px;
    margin-bottom: 8px;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.35;
    overflow-wrap: anywhere;
}

body.woocommerce-cart .ptmw-cart-quantity,
body.woocommerce-cart .ptmw-cart-subtotal {
    align-self: center;
    line-height: 1.3;
}

body.woocommerce-cart .ptmw-cart-mobile-price {
    display: block;
    color: #667085;
    font-weight: 600;
}

body.woocommerce-cart .ptmw-cart-quantity .ptmw-qty-control {
    width: 136px;
    min-width: 136px;
}

body.woocommerce-cart .ptmw-cart-subtotal {
    display: grid;
    justify-items: end;
    gap: 10px;
    color: #020617;
    font-size: 17px;
}

body.woocommerce-cart .ptmw-cart-remove {
    margin: 0;
    color: #94a3b8 !important;
    font-size: 0;
}

body.woocommerce-cart .ptmw-cart-remove:before {
    content: "⌧";
    font-size: 22px;
    line-height: 1;
}

body.woocommerce-cart .ptmw-cart-form-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 10px;
    margin-top: 16px;
}

body.woocommerce-cart .ptmw-cart-panel .wc-proceed-to-checkout,
body.woocommerce-cart .ptmw-cart-panel .ppc-button-wrapper,
body.woocommerce-cart .ptmw-cart-panel .paypal-button-container,
body.woocommerce-cart .ptmw-cart-panel [id*="paypal"],
body.woocommerce-cart .ptmw-cart-panel [class*="paypal"],
body.woocommerce-cart .ptmw-cart-panel [class*="ppc"] {
    display: none !important;
}

body.woocommerce-cart .ptmw-cart-form-actions input {
    min-height: 42px;
    border: 1px solid #d9dee8;
    border-radius: 10px;
    padding: 0 14px;
}

body.woocommerce-cart .ptmw-cart-apply-coupon,
body.woocommerce-cart .ptmw-cart-form-actions .ptmw-cart-update {
    min-height: 42px;
    border-radius: 10px !important;
    padding: 0 16px !important;
    white-space: nowrap;
}

body.woocommerce-cart .ptmw-cart-form-actions .ptmw-cart-update {
    margin: 0;
}

body.woocommerce-cart .ptmw-cart-summary .cart_totals {
    border-radius: 16px !important;
    padding: 26px 24px !important;
    box-shadow: 0 2px 10px rgba(15, 23, 42, .08);
}

body.woocommerce-cart .ptmw-cart-summary .cart_totals h2 {
    margin-bottom: 20px;
    font-size: 21px;
}

body.woocommerce-cart .ptmw-cart-total-lines {
    gap: 18px;
}

body.woocommerce-cart .ptmw-cart-total-lines .order-total {
    margin-top: 2px;
}

body.woocommerce-cart .ptmw-cart-coupon {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
    margin-top: 24px;
}

body.woocommerce-cart .ptmw-cart-coupon input {
    height: 42px;
}

body.woocommerce-cart .ptmw-cart-coupon button {
    min-height: 42px;
    border-radius: 10px !important;
    background: #f1f5f9 !important;
    color: #334155 !important;
    box-shadow: none;
    white-space: nowrap;
}

body.woocommerce-cart .ptmw-cart-coupon-proxy input,
body.woocommerce-cart .ptmw-cart-coupon-proxy button {
    pointer-events: none;
}

body.woocommerce-cart .ptmw-cart-summary .wc-proceed-to-checkout {
    padding-top: 24px !important;
}

body.woocommerce-cart .ptmw-cart-summary .checkout-button {
    background: linear-gradient(135deg, #ff9f0a, #ff5f05) !important;
    color: #fff !important;
}

body.woocommerce-cart .ptmw-cart-continue {
    display: flex;
    justify-content: center;
    margin-top: 12px;
    color: #f97316;
    font-weight: 600;
    text-decoration: none;
}

@media (max-width: 1180px) {
    body.woocommerce-cart .ptmw-cart-page {
        width: min(100% - 40px, 920px);
    }

    body.woocommerce-cart .ptmw-cart-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    body.woocommerce-cart .ptmw-cart-summary {
        position: static;
        width: min(100%, 430px);
        justify-self: stretch;
        margin-left: auto;
    }

    body.woocommerce-cart .ptmw-cart-list-head,
    body.woocommerce-cart .ptmw-cart-row {
        grid-template-columns: minmax(0, 1fr) 136px 96px;
    }
}

.ptmw-cart-total-lines > div:not(.ptmw-cart-shipping),
.ptmw-cart-total-lines tr {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    color: #667085;
}

.ptmw-cart-total-lines strong,
.ptmw-cart-total-lines td {
    color: #111827;
    font-weight: 800;
    text-align: right;
}

.ptmw-cart-total-lines .order-total {
    margin-top: 8px;
    border-top: 1px solid #edf0f4;
    padding-top: 18px;
    color: #111827;
    font-size: 18px;
}

.ptmw-cart-total-lines .order-total strong {
    font-size: 22px;
}

.ptmw-cart-summary .wc-proceed-to-checkout {
    padding: 22px 0 0 !important;
}

.ptmw-cart-summary .checkout-button {
    width: 100%;
    min-height: 50px;
    margin: 0 !important;
    padding: 0 18px !important;
    font-size: 16px !important;
}

.ptmw-cart-summary-note {
    margin-top: 14px;
    border-radius: 12px;
    background: #f8fafc;
    padding: 12px 14px;
    color: #667085;
    font-size: 13px;
    line-height: 1.5;
}

.woocommerce div.product form.cart .single_add_to_cart_button,
.woocommerce div.product form.cart .ptmw-buy-now {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.woocommerce div.product form.cart .ptmw-buy-now {
    background: var(--ink) !important;
    color: #fff !important;
}

.woocommerce div.product form.cart .ptmw-buy-now:hover {
    background: #243244 !important;
    color: #fff !important;
}

.woocommerce-message {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    border-top-color: var(--brand);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 12px 28px rgba(15,23,42,.08);
}

.woocommerce-message .button {
    order: 2;
    flex: 0 0 auto;
}

.single-product .woocommerce-notices-wrapper {
    display: none;
}

.ptmw-cart-toast {
    position: fixed;
    top: 18px;
    right: 18px;
    z-index: 9999;
    width: min(360px, calc(100vw - 36px));
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin: 0;
    padding: 14px 16px;
    border: 1px solid #bbf7d0;
    border-radius: 8px;
    background: #f0fdf4;
    color: #166534;
    box-shadow: 0 12px 28px rgba(15,23,42,.08);
    transition: opacity .25s ease, transform .25s ease;
}

.ptmw-cart-toast.is-error {
    border-color: #fecaca;
    background: #fef2f2;
    color: #991b1b;
}

.ptmw-cart-toast.is-hiding {
    opacity: 0;
    transform: translateY(-4px);
}

.ptmw-cart-toast a {
    flex: 0 0 auto;
    color: inherit;
    font-weight: 900;
}

.woocommerce-tabs {
    border-top: 1px solid var(--line);
    margin-top: 28px;
    padding-top: 20px;
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
    padding: 0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
    border-radius: 6px;
    background: var(--surface-2);
}

.woocommerce table.shop_table {
    border-collapse: collapse;
    border: 1px solid var(--line);
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}

.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
    border-top: 1px solid var(--line);
    padding: 14px;
}

.woocommerce .cart-collaterals .cart_totals,
.woocommerce .woocommerce-customer-details,
.woocommerce .woocommerce-order-details,
.woocommerce-account .woocommerce-MyAccount-navigation,
.woocommerce-account .woocommerce-MyAccount-content {
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.woocommerce-account .woocommerce-MyAccount-navigation a {
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid var(--line);
    color: var(--ink);
    font-weight: 800;
    text-decoration: none;
}

.ptmw-account-shell {
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 32px;
    width: 100%;
    margin: 0 auto;
    align-items: start;
}

.ptmw-account-shell .woocommerce-MyAccount-navigation,
.ptmw-account-shell .woocommerce-MyAccount-content {
    float: none;
    width: auto;
}

.ptmw-account-shell .woocommerce-MyAccount-navigation {
    padding: 0;
    border: 0;
    border-radius: 14px;
    background: transparent;
}

.ptmw-account-shell .woocommerce-MyAccount-content {
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
}

.ptmw-account-sidebar {
    position: sticky;
    top: 24px;
    display: flex;
    min-height: 525px;
    flex-direction: column;
    overflow: hidden;
    border-radius: 14px;
    background: linear-gradient(180deg, #1b2638 0%, #0d1729 100%) !important;
    box-shadow: 0 18px 42px rgba(15, 23, 42, .16);
}

.ptmw-account-user {
    display: grid;
    grid-template-columns: 70px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    padding: 24px 20px 20px;
    color: #fff;
}

.ptmw-account-user img {
    width: 66px;
    height: 66px;
    border: 2px solid rgba(255, 255, 255, .28);
    border-radius: 999px;
    object-fit: cover;
}

.ptmw-account-user strong,
.ptmw-account-user span {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ptmw-account-user strong {
    font-size: 17px;
    line-height: 1.25;
}

.ptmw-account-user span {
    color: #aab5c7;
    font-size: 14px;
}

.ptmw-account-menu {
    display: grid;
    gap: 6px;
    margin: 0 !important;
    padding: 0 12px 18px !important;
    list-style: none;
}

.ptmw-account-menu-item a,
.ptmw-account-logout {
    display: flex !important;
    align-items: center;
    gap: 14px;
    min-height: 46px;
    padding: 0 18px !important;
    border: 0 !important;
    border-radius: 12px;
    color: #aab5c7 !important;
    font-size: 15px;
    font-weight: 600 !important;
    text-decoration: none;
    transition: background .18s ease, color .18s ease, transform .18s ease;
}

.ptmw-account-menu-item a:hover,
.ptmw-account-logout:hover {
    background: rgba(255, 255, 255, .06);
    color: #fff !important;
    transform: translateX(2px);
}

.ptmw-account-menu-item.is-active a {
    background: #ff8500;
    color: #fff !important;
    box-shadow: 0 12px 24px rgba(255, 133, 0, .28);
}

.ptmw-account-menu-item.is-muted a {
    cursor: default;
}

.ptmw-account-menu svg,
.ptmw-account-logout svg,
.ptmw-stat-icon svg,
.ptmw-profile-hero-icon svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex: 0 0 auto;
}

.ptmw-account-logout {
    margin-top: auto;
    padding: 22px 28px !important;
    border-top: 1px solid rgba(255, 255, 255, .08) !important;
    border-radius: 0;
    color: #ff5b66 !important;
}

.ptmw-account-main {
    min-width: 0;
}

.ptmw-account-dashboard,
.ptmw-profile-form {
    display: grid;
    gap: 24px;
}

.ptmw-account-hero-card,
.ptmw-account-card,
.ptmw-security-card,
.ptmw-account-stat-card {
    border: 1px solid #dfe4ec;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(15, 23, 42, .09);
}

.ptmw-account-hero-card {
    min-height: 110px;
    padding: 28px 26px;
    background: linear-gradient(90deg, #fff 0%, #fff 76%, #fff8ef 100%);
}

.ptmw-account-hero-card h1,
.ptmw-account-card h2,
.ptmw-security-card h2 {
    margin: 0;
    color: #111827;
    letter-spacing: 0;
}

.ptmw-account-hero-card h1 {
    font-size: 28px;
    line-height: 1.1;
}

.ptmw-account-hero-card p,
.ptmw-account-card p,
.ptmw-security-card p {
    margin: 6px 0 0;
    color: #667085;
}

.ptmw-account-stat-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.ptmw-account-stat-card {
    display: flex;
    align-items: center;
    gap: 16px;
    min-height: 106px;
    padding: 24px;
    color: #101827;
    text-decoration: none;
}

.ptmw-account-stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(15, 23, 42, .12);
}

.ptmw-stat-icon,
.ptmw-profile-hero-icon {
    display: grid;
    place-items: center;
    width: 56px;
    height: 56px;
    border-radius: 12px;
}

.ptmw-stat-orders .ptmw-stat-icon,
.ptmw-profile-hero-icon {
    background: #eaf2ff;
    color: #3b82f6;
}

.ptmw-stat-licenses .ptmw-stat-icon {
    background: #dcfce7;
    color: #00c875;
}

.ptmw-stat-tickets .ptmw-stat-icon {
    background: #f3e8ff;
    color: #b95cff;
}

.ptmw-account-stat-card small,
.ptmw-account-stat-card strong {
    display: block;
}

.ptmw-account-stat-card small {
    color: #667085;
    font-size: 15px;
}

.ptmw-account-stat-card strong {
    color: #111827;
    font-size: 36px;
    line-height: 1;
}

.ptmw-language-card {
    width: min(450px, 100%);
    padding: 26px;
}

.ptmw-card-title-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.ptmw-card-icon {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: #fff3dd;
    color: #ffae00;
    font-size: 25px;
    font-weight: 800;
}

.ptmw-language-card h2,
.ptmw-personal-card h2,
.ptmw-profile-picture-card h2,
.ptmw-security-card h2 {
    font-size: 21px;
    line-height: 1.2;
}

.ptmw-language-card select {
    width: 100%;
    height: 38px;
    border: 1px solid #d9dee8;
    border-radius: 7px;
    background: #fff;
    color: #111827;
    padding: 0 12px;
    font-size: 15px;
}

.ptmw-profile-hero {
    display: flex;
    align-items: center;
    gap: 14px;
}

.ptmw-profile-grid {
    display: grid;
    grid-template-columns: minmax(260px, 336px) minmax(0, 1fr);
    gap: 24px;
    align-items: start;
}

.ptmw-profile-picture-card,
.ptmw-personal-card {
    padding: 26px;
}

.ptmw-profile-avatar-wrap {
    display: grid;
    justify-items: center;
    padding-top: 16px;
    text-align: center;
}

.ptmw-profile-avatar-wrap img {
    width: 104px;
    height: 104px;
    border: 4px solid #fed7aa;
    border-radius: 999px;
    object-fit: cover;
}

.ptmw-profile-avatar-wrap strong {
    margin-top: 12px;
    color: #111827;
}

.ptmw-profile-avatar-wrap span {
    color: #667085;
}

.ptmw-form-grid,
.ptmw-password-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.ptmw-profile-form .form-row {
    margin: 0 0 16px !important;
    padding: 0 !important;
    float: none !important;
    width: auto !important;
}

.ptmw-profile-form label {
    display: flex;
    align-items: center;
    gap: 7px;
    margin: 0 0 8px;
    color: #475467;
    font-size: 15px;
    font-weight: 500;
}

.ptmw-profile-form input.input-text {
    width: 100%;
    min-height: 50px;
    border: 1px solid #d9dee8;
    border-radius: 11px;
    background: #fbfcfe;
    color: #111827;
    padding: 0 16px;
    font-size: 16px;
}

.ptmw-profile-form input[readonly] {
    color: #98a2b3;
}

.ptmw-form-help {
    display: block;
    margin-top: 8px;
    color: #667085;
    font-size: 14px;
}

.ptmw-profile-actions {
    margin: 22px 0 0 !important;
}

.ptmw-save-profile {
    display: inline-flex !important;
    align-items: center;
    gap: 10px;
    min-height: 48px;
    border: 0 !important;
    border-radius: 11px !important;
    background: #ff8500 !important;
    color: #fff !important;
    padding: 0 26px !important;
    font-weight: 800 !important;
    box-shadow: 0 12px 24px rgba(255, 133, 0, .24);
}

.ptmw-security-card {
    border-color: #fecaca;
    padding: 28px 26px 24px;
}

.ptmw-password-details {
    margin-top: 16px;
}

.ptmw-password-details summary {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    border: 1px solid #d9dee8;
    border-radius: 10px;
    background: #fff;
    color: #111827;
    padding: 0 18px;
    cursor: pointer;
    font-weight: 600;
}

.ptmw-password-grid {
    margin-top: 18px;
}

body.woocommerce-account.logged-in .woocommerce-message,
body.woocommerce-account.logged-in .woocommerce-info,
body.woocommerce-account.logged-in .woocommerce-error,
body.woocommerce-account.logged-in .woocommerce-orders-table,
body.woocommerce-account.logged-in .woocommerce-Addresses .woocommerce-Address,
body.woocommerce-account.logged-in .woocommerce-table {
    border: 1px solid #dfe4ec;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(15, 23, 42, .08);
}

body.woocommerce-account.logged-in .woocommerce-orders-table,
body.woocommerce-account.logged-in .woocommerce-table {
    overflow: hidden;
}

body.woocommerce-account.logged-in .woocommerce-orders-table th,
body.woocommerce-account.logged-in .woocommerce-orders-table td,
body.woocommerce-account.logged-in .woocommerce-table th,
body.woocommerce-account.logged-in .woocommerce-table td {
    padding: 14px 16px;
}

@media (max-width: 1180px) {
    .ptmw-woocommerce-account-wrap {
        width: min(100% - 32px, 1280px);
        padding: 28px;
    }

    .ptmw-account-shell {
        grid-template-columns: 264px minmax(0, 1fr);
        gap: 22px;
        width: 100%;
    }

    .ptmw-account-stat-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .ptmw-profile-picture-card {
        display: grid;
        grid-template-columns: minmax(180px, 240px) minmax(0, 1fr);
        gap: 20px;
        align-items: center;
    }

    .ptmw-profile-picture-card h2 {
        grid-column: 1 / -1;
    }
}

@media (max-width: 1040px) {
    .ptmw-woocommerce-account-wrap {
        padding: 22px;
    }

    .ptmw-account-shell {
        grid-template-columns: 1fr;
    }

    .ptmw-account-sidebar {
        position: static;
        min-height: auto;
    }

    .ptmw-account-menu {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
    border-radius: 8px;
    background: #fff;
}

@keyframes ptmw-rise {
    from {
        opacity: 0;
        transform: translateY(14px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes ptmw-float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

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

@media (max-width: 900px) {
    .ptmw-cart-page {
        width: min(100% - 28px, 720px);
        margin-top: 26px;
    }

    .ptmw-cart-empty-card {
        padding: 44px 18px;
    }

    .ptmw-cart-shortcuts,
    .ptmw-cart-layout {
        grid-template-columns: 1fr;
    }

    .ptmw-cart-heading {
        align-items: flex-start;
        flex-direction: column;
        padding: 22px;
    }

    .ptmw-cart-heading a {
        width: 100%;
    }

    .ptmw-cart-list-head {
        display: none;
    }

    .ptmw-cart-row {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .ptmw-cart-product {
        grid-template-columns: 74px minmax(0, 1fr);
    }

    .ptmw-cart-thumb img {
        width: 74px;
        height: 74px;
    }

    .ptmw-cart-price {
        display: none;
    }

    .ptmw-cart-mobile-price {
        display: block;
        color: #111827;
        font-weight: 800;
    }

    .ptmw-cart-subtotal {
        display: flex;
        justify-content: space-between;
        gap: 14px;
    }

    .ptmw-cart-subtotal:before {
        content: attr(data-title);
        color: #667085;
        font-weight: 600;
    }

    .ptmw-cart-actions,
    .ptmw-cart-coupon div {
        align-items: stretch;
        flex-direction: column;
    }

    .ptmw-cart-summary {
        position: static;
    }

    body.woocommerce-cart .ptmw-cart-page {
        width: min(100% - 28px, 720px);
        margin-top: 26px;
    }

    body.woocommerce-cart .ptmw-cart-layout,
    body.woocommerce-cart .ptmw-cart-list-head,
    body.woocommerce-cart .ptmw-cart-row {
        grid-template-columns: 1fr;
    }

    body.woocommerce-cart .ptmw-cart-list-head {
        display: none;
    }

    body.woocommerce-cart .ptmw-cart-product {
        grid-template-columns: 74px minmax(0, 1fr);
    }

    body.woocommerce-cart .ptmw-cart-thumb img {
        width: 74px;
        height: 74px;
    }

    .ptmw-account-shell {
        grid-template-columns: 1fr;
        width: 100%;
        gap: 18px;
    }

    .ptmw-account-sidebar {
        position: static;
        min-height: auto;
    }

    .ptmw-account-menu {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ptmw-account-user {
        grid-template-columns: 56px minmax(0, 1fr);
    }

    .ptmw-account-user img {
        width: 54px;
        height: 54px;
    }

    .ptmw-account-stat-grid,
    .ptmw-profile-grid,
    .ptmw-form-grid,
    .ptmw-password-grid {
        grid-template-columns: 1fr;
    }

    .ptmw-account-hero-card {
        min-height: auto;
    }

    .site-hero-grid,
    .shop-hero-grid,
    .split-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .site-hero h1 {
        font-size: 44px;
    }

    .hero-product-stack {
        animation: none;
    }
}

@media (max-width: 760px) {
    .site-header-inner {
        align-items: flex-start;
        padding-top: 14px;
        padding-bottom: 14px;
        flex-direction: column;
    }

    .site-nav,
    .site-nav ul {
        justify-content: flex-start;
    }

    .header-search {
        width: 100%;
        max-width: none;
    }

    .language-switcher {
        align-self: flex-start;
    }

    .site-hero {
        padding: 44px 0;
    }

    .site-hero h1,
    .shop-hero h1,
    .page-hero h1 {
        font-size: 34px;
    }

    .hero-search {
        flex-direction: column;
    }

    .hero-search button {
        width: 100%;
    }

    .hero-metrics {
        grid-template-columns: 1fr;
    }

    .hero-product:nth-child(odd) {
        transform: none;
    }

    .section-heading {
        display: block;
    }

    .section-heading a {
        display: inline-block;
        margin-top: 12px;
    }

    .woocommerce div.product {
        padding: 16px;
    }

    .woocommerce div.product form.cart {
        align-items: stretch;
    }

    .woocommerce div.product form.cart .quantity,
    .woocommerce div.product form.cart .single_add_to_cart_button,
    .woocommerce div.product form.cart .ptmw-buy-now {
        width: 100%;
    }

    .woocommerce div.product form.cart .qty {
        width: 100%;
    }

    .woocommerce-message {
        display: block;
    }

    .woocommerce-message .button {
        width: 100%;
        margin: 8px 0 0;
        text-align: center;
    }

    .ptmw-cart-toast {
        align-items: stretch;
        flex-direction: column;
        top: 12px;
        right: 12px;
        width: calc(100vw - 24px);
    }
}

/* Final cart rebuild: card flow, no table-like columns. */
body.woocommerce-cart {
    background: #f5f7fb;
}

body.woocommerce-cart .ptmw-cart-page {
    width: min(1360px, calc(100% - 48px)) !important;
    margin: 32px auto 76px !important;
}

body.woocommerce-cart .ptmw-cart-heading {
    display: grid !important;
    justify-items: center !important;
    gap: 8px !important;
    margin: 0 0 32px !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    text-align: center !important;
}

body.woocommerce-cart .ptmw-cart-heading h1 {
    margin: 0 !important;
    font-size: 42px !important;
    line-height: 1.1 !important;
}

body.woocommerce-cart .ptmw-cart-heading p {
    margin: 0 !important;
    color: #475569 !important;
    font-size: 18px !important;
}

body.woocommerce-cart .ptmw-cart-layout {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 420px !important;
    gap: 32px !important;
    align-items: start !important;
}

body.woocommerce-cart .ptmw-cart-panel {
    display: block !important;
    min-width: 0 !important;
    width: 100% !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    padding: 0 !important;
}

body.woocommerce-cart .ptmw-cart-list {
    display: grid !important;
    gap: 18px !important;
}

body.woocommerce-cart .ptmw-cart-card,
body.woocommerce-cart .ptmw-cart-row {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 18px !important;
    min-height: 0 !important;
    border: 1px solid #dfe4ec !important;
    border-radius: 16px !important;
    background: #fff !important;
    padding: 20px !important;
    box-shadow: 0 10px 30px rgba(15, 23, 42, .06) !important;
}

body.woocommerce-cart .ptmw-cart-card-main {
    display: grid !important;
    grid-template-columns: 96px minmax(0, 1fr) !important;
    gap: 18px !important;
    align-items: start !important;
    min-width: 0 !important;
}

body.woocommerce-cart .ptmw-cart-product,
body.woocommerce-cart .ptmw-cart-product-copy {
    display: block !important;
    min-width: 0 !important;
}

body.woocommerce-cart .ptmw-cart-thumb,
body.woocommerce-cart .ptmw-cart-thumb a {
    display: block !important;
    width: 96px !important;
    height: 96px !important;
}

body.woocommerce-cart .ptmw-cart-thumb img {
    display: block !important;
    width: 96px !important;
    height: 96px !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 12px !important;
    object-fit: cover !important;
}

body.woocommerce-cart .ptmw-cart-product-copy h2 {
    max-width: none !important;
    margin: 0 0 8px !important;
    color: #0f172a !important;
    font-size: 18px !important;
    line-height: 1.35 !important;
    font-weight: 850 !important;
    overflow-wrap: anywhere !important;
}

body.woocommerce-cart .ptmw-cart-product-copy h2 a {
    color: inherit !important;
    text-decoration: none !important;
}

body.woocommerce-cart .ptmw-cart-product-copy dl,
body.woocommerce-cart .ptmw-cart-product-copy p {
    margin: 0 !important;
    color: #64748b !important;
    font-size: 14px !important;
}

body.woocommerce-cart .ptmw-cart-mobile-price {
    display: inline-flex !important;
    margin-top: 10px !important;
    color: #64748b !important;
    font-weight: 700 !important;
}

body.woocommerce-cart .ptmw-cart-card-footer {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 16px !important;
    border-top: 1px solid #eef2f7 !important;
    padding-top: 16px !important;
}

body.woocommerce-cart .ptmw-cart-quantity,
body.woocommerce-cart .ptmw-cart-subtotal {
    display: flex !important;
    align-items: center !important;
    width: auto !important;
    min-width: 0 !important;
    align-self: auto !important;
}

body.woocommerce-cart .ptmw-cart-quantity .quantity,
body.woocommerce-cart .ptmw-cart-quantity .ptmw-qty-control {
    width: 138px !important;
    min-width: 138px !important;
    max-width: 138px !important;
}

body.woocommerce-cart .ptmw-cart-subtotal {
    margin-left: auto !important;
    color: #020617 !important;
    font-size: 18px !important;
    font-weight: 850 !important;
}

body.woocommerce-cart .ptmw-cart-remove {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 34px !important;
    height: 34px !important;
    margin: 0 !important;
    border: 1px solid #fecaca !important;
    border-radius: 10px !important;
    background: #fff !important;
    color: #dc2626 !important;
    font-size: 0 !important;
    text-decoration: none !important;
}

body.woocommerce-cart .ptmw-cart-remove:before {
    content: "×" !important;
    font-size: 24px !important;
    line-height: 1 !important;
}

body.woocommerce-cart .ptmw-cart-form-actions {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto auto !important;
    gap: 10px !important;
    margin-top: 18px !important;
}

body.woocommerce-cart .ptmw-cart-form-actions input {
    min-height: 44px !important;
    border: 1px solid #d9dee8 !important;
    border-radius: 10px !important;
    background: #fff !important;
    padding: 0 14px !important;
}

body.woocommerce-cart .ptmw-cart-apply-coupon,
body.woocommerce-cart .ptmw-cart-form-actions .ptmw-cart-update {
    min-height: 44px !important;
    border-radius: 10px !important;
    padding: 0 16px !important;
    white-space: nowrap !important;
}

body.woocommerce-cart .ptmw-cart-summary {
    position: sticky !important;
    top: 24px !important;
    width: 420px !important;
    max-width: 100% !important;
    justify-self: end !important;
}

body.woocommerce-cart .ptmw-cart-summary .cart_totals {
    float: none !important;
    width: 100% !important;
    border: 1px solid #dfe4ec !important;
    border-radius: 16px !important;
    background: #fff !important;
    padding: 26px !important;
    box-shadow: 0 16px 42px rgba(15, 23, 42, .08) !important;
}

body.woocommerce-cart .ptmw-cart-summary .cart_totals h2 {
    margin: 0 0 22px !important;
    color: #111827 !important;
    font-size: 22px !important;
    line-height: 1.2 !important;
}

body.woocommerce-cart .ptmw-cart-total-lines {
    display: grid !important;
    gap: 16px !important;
}

body.woocommerce-cart .ptmw-cart-total-lines > div,
body.woocommerce-cart .ptmw-cart-total-lines tr {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 16px !important;
    color: #64748b !important;
}

body.woocommerce-cart .ptmw-cart-total-lines strong,
body.woocommerce-cart .ptmw-cart-total-lines td {
    color: #0f172a !important;
    font-weight: 850 !important;
    text-align: right !important;
}

body.woocommerce-cart .ptmw-cart-total-lines .order-total {
    border-top: 1px solid #e5e7eb !important;
    padding-top: 18px !important;
    color: #0f172a !important;
    font-size: 18px !important;
}

body.woocommerce-cart .ptmw-cart-coupon-proxy {
    display: none !important;
}

body.woocommerce-cart .ptmw-cart-summary .wc-proceed-to-checkout {
    padding: 24px 0 0 !important;
}

body.woocommerce-cart .ptmw-cart-summary .checkout-button {
    display: inline-flex !important;
    width: 100% !important;
    min-height: 52px !important;
    align-items: center !important;
    justify-content: center !important;
    border: 0 !important;
    border-radius: 11px !important;
    background: linear-gradient(135deg, #ff9f0a, #ff5f05) !important;
    color: #fff !important;
    font-size: 16px !important;
    font-weight: 850 !important;
    text-decoration: none !important;
}

body.woocommerce-cart .ptmw-cart-continue {
    display: flex !important;
    justify-content: center !important;
    margin-top: 14px !important;
    color: #f97316 !important;
    font-weight: 700 !important;
    text-decoration: none !important;
}

body.woocommerce-cart .ptmw-cart-panel .wc-proceed-to-checkout,
body.woocommerce-cart .ptmw-cart-panel .ppc-button-wrapper,
body.woocommerce-cart .ptmw-cart-panel .paypal-button-container,
body.woocommerce-cart .ptmw-cart-panel [id*="paypal"],
body.woocommerce-cart .ptmw-cart-panel [class*="paypal"],
body.woocommerce-cart .ptmw-cart-panel [class*="ppc"] {
    display: none !important;
}

@media (max-width: 1120px) {
    body.woocommerce-cart .ptmw-cart-layout {
        grid-template-columns: 1fr !important;
    }

    body.woocommerce-cart .ptmw-cart-summary {
        position: static !important;
        width: min(100%, 460px) !important;
        justify-self: stretch !important;
        margin-left: auto !important;
    }
}

.ptmw-pmpro-account-page {
    background:
        radial-gradient(circle at 12% 10%, rgba(245, 158, 11, .10), transparent 24%),
        radial-gradient(circle at 88% 24%, rgba(14, 165, 233, .10), transparent 28%),
        #f5f7fb;
    padding: 38px 0 72px;
}

.ptmw-pmpro-account-content {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
}

.ptmw-pmpro-account-content article {
    margin: 0;
}

.ptmw-pmpro-account-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 24px;
    border: 1px solid #dfe4ec;
    border-radius: 18px;
    background: linear-gradient(120deg, #111827, #182235 58%, #ff8a00);
    padding: 34px;
    color: #fff;
    box-shadow: 0 18px 48px rgba(15, 23, 42, .14);
}

.ptmw-pmpro-account-hero span {
    display: inline-flex;
    margin-bottom: 10px;
    color: #fbbf24;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.ptmw-pmpro-account-hero h1 {
    margin: 0;
    color: #fff;
    font-size: 42px;
    line-height: 1.05;
    letter-spacing: 0;
}

.ptmw-pmpro-account-hero p {
    max-width: 620px;
    margin: 12px 0 0;
    color: #cbd5e1;
    font-size: 16px;
}

.ptmw-pmpro-account-hero a {
    display: inline-flex;
    min-height: 46px;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    background: #ff8a00;
    color: #111827;
    padding: 0 22px;
    font-weight: 900;
    text-decoration: none;
}

.ptmw-pmpro-account-content .pmpro {
    display: grid;
    gap: 18px;
}

.ptmw-pmpro-account-content .pmpro_card,
.ptmw-pmpro-account-content .pmpro_box,
.ptmw-pmpro-account-content .pmpro_section,
.ptmw-pmpro-account-content #pmpro_account .pmpro_box,
.ptmw-pmpro-account-content #pmpro_account-membership,
.ptmw-pmpro-account-content #pmpro_account-profile,
.ptmw-pmpro-account-content #pmpro_account-invoices,
.ptmw-pmpro-account-content #pmpro_account-links {
    overflow: hidden;
    border: 1px solid #dfe4ec !important;
    border-radius: 16px !important;
    background: #fff !important;
    padding: 24px !important;
    box-shadow: 0 10px 30px rgba(15, 23, 42, .06) !important;
}

.ptmw-pmpro-account-content #pmpro_account {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr);
    gap: 18px;
}

.ptmw-pmpro-account-content #pmpro_account-membership,
.ptmw-pmpro-account-content #pmpro_account-invoices {
    grid-column: 1;
}

.ptmw-pmpro-account-content #pmpro_account-profile,
.ptmw-pmpro-account-content #pmpro_account-links {
    grid-column: 2;
}

.ptmw-pmpro-account-content h2,
.ptmw-pmpro-account-content h3 {
    margin: 0 0 16px;
    color: #111827;
    font-size: 22px;
    line-height: 1.2;
    letter-spacing: 0;
}

.ptmw-pmpro-account-content p {
    color: #64748b;
}

.ptmw-pmpro-account-content table {
    width: 100%;
    overflow: hidden;
    border: 1px solid #edf0f4;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 12px;
    background: #fff;
}

.ptmw-pmpro-account-content th,
.ptmw-pmpro-account-content td {
    border: 0 !important;
    border-bottom: 1px solid #edf0f4 !important;
    padding: 14px 16px !important;
    text-align: left;
}

.ptmw-pmpro-account-content tr:last-child th,
.ptmw-pmpro-account-content tr:last-child td {
    border-bottom: 0 !important;
}

.ptmw-pmpro-account-content th {
    color: #475569;
    background: #f8fafc;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.ptmw-pmpro-account-content .pmpro_actions_nav,
.ptmw-pmpro-account-content .pmpro_actionlinks,
.ptmw-pmpro-account-content ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 16px 0 0;
    padding: 0;
    list-style: none;
}

.ptmw-pmpro-account-content .pmpro_actions_nav a,
.ptmw-pmpro-account-content .pmpro_actionlinks a,
.ptmw-pmpro-account-content .pmpro_btn,
.ptmw-pmpro-account-content .pmpro_btn-select,
.ptmw-pmpro-account-content input[type="submit"],
.ptmw-pmpro-account-content .button {
    display: inline-flex !important;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    border: 0 !important;
    border-radius: 10px !important;
    background: #ff8a00 !important;
    color: #fff !important;
    padding: 0 16px !important;
    font-weight: 850 !important;
    text-decoration: none !important;
    box-shadow: 0 12px 24px rgba(255, 138, 0, .22);
}

.ptmw-pmpro-account-content .pmpro_alert,
.ptmw-pmpro-account-content .pmpro_message,
.ptmw-pmpro-account-content .pmpro_error {
    border: 1px solid #fed7aa;
    border-radius: 14px;
    background: #fff7ed;
    color: #9a3412;
    padding: 14px 16px;
}

/* Final PMPro account rebuild: keep account modules in one wide themed surface. */
body.pmpro-account,
body.pmpro-login {
    background:
        radial-gradient(circle at 10% 8%, rgba(255, 138, 0, .10), transparent 28%),
        radial-gradient(circle at 90% 16%, rgba(14, 165, 233, .12), transparent 30%),
        linear-gradient(180deg, #f6f8fb 0%, #eef3f8 100%) !important;
}

body.pmpro-account .page-hero,
body.pmpro-login .page-hero {
    display: none !important;
}

body.pmpro-account .site-main,
body.pmpro-login .site-main {
    padding: 38px 0 76px !important;
}

body.pmpro-account .site-main > .site-shell.content-layout.page-content,
body.pmpro-login .site-main > .site-shell.content-layout.page-content,
.ptmw-pmpro-account-content {
    width: min(1680px, calc(100% - 56px)) !important;
    max-width: none !important;
    margin: 0 auto !important;
    border: 1px solid #dbe3ef !important;
    border-radius: 12px !important;
    background: rgba(244, 246, 249, .94) !important;
    padding: 42px !important;
    box-shadow: 0 24px 60px rgba(15, 23, 42, .08) !important;
}

body.pmpro-account .site-main > .site-shell.content-layout.page-content > div,
body.pmpro-login .site-main > .site-shell.content-layout.page-content > div,
.ptmw-pmpro-account-content > div {
    width: 100% !important;
}

body.pmpro-account article,
body.pmpro-login article,
.ptmw-pmpro-account-content article {
    width: 100% !important;
    max-width: none !important;
}

body.pmpro-account .pmpro,
body.pmpro-login .pmpro,
.ptmw-pmpro-account-content .pmpro {
    width: 100% !important;
    max-width: none !important;
}

body.pmpro-account #pmpro_account,
.ptmw-pmpro-account-content #pmpro_account {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 430px) !important;
    grid-auto-flow: dense !important;
    align-items: start !important;
    gap: 24px !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
}

body.pmpro-account #pmpro_account-profile,
.ptmw-pmpro-account-content #pmpro_account-profile {
    grid-column: 2 !important;
    grid-row: 1 !important;
}

body.pmpro-account #pmpro_account-membership,
body.pmpro-account #pmpro_account-orders,
body.pmpro-account #pmpro_account-invoices,
.ptmw-pmpro-account-content #pmpro_account-membership,
.ptmw-pmpro-account-content #pmpro_account-orders,
.ptmw-pmpro-account-content #pmpro_account-invoices {
    grid-column: 1 !important;
}

body.pmpro-account #pmpro_account-links,
.ptmw-pmpro-account-content #pmpro_account-links {
    grid-column: 2 !important;
}

body.pmpro-account .pmpro_section,
body.pmpro-account .pmpro_card,
body.pmpro-account .pmpro_box,
body.pmpro-login .pmpro_section,
body.pmpro-login .pmpro_card,
body.pmpro-login .pmpro_box,
.ptmw-pmpro-account-content .pmpro_section,
.ptmw-pmpro-account-content .pmpro_card,
.ptmw-pmpro-account-content .pmpro_box {
    overflow: hidden !important;
    border: 1px solid #dce5ef !important;
    border-radius: 10px !important;
    background: #fff !important;
    box-shadow: 0 16px 38px rgba(15, 23, 42, .07) !important;
}

body.pmpro-account .pmpro_section,
body.pmpro-login .pmpro_section,
.ptmw-pmpro-account-content .pmpro_section {
    padding: 24px !important;
}

body.pmpro-account .pmpro_card,
body.pmpro-login .pmpro_card,
.ptmw-pmpro-account-content .pmpro_card {
    padding: 0 !important;
}

body.pmpro-account .pmpro_card_content,
body.pmpro-account .pmpro_section_content,
body.pmpro-login .pmpro_card_content,
body.pmpro-login .pmpro_section_content,
.ptmw-pmpro-account-content .pmpro_card_content,
.ptmw-pmpro-account-content .pmpro_section_content {
    padding: 28px !important;
}

body.pmpro-account .pmpro_section_title,
body.pmpro-account h2,
body.pmpro-login .pmpro_section_title,
body.pmpro-login h2,
.ptmw-pmpro-account-content .pmpro_section_title,
.ptmw-pmpro-account-content h2 {
    margin: 0 0 18px !important;
    color: #061225 !important;
    font-size: 28px !important;
    line-height: 1.15 !important;
    letter-spacing: 0 !important;
}

body.pmpro-account #pmpro_account-profile .pmpro_card,
.ptmw-pmpro-account-content #pmpro_account-profile .pmpro_card {
    background:
        linear-gradient(180deg, #ffffff 0%, #f9fbff 100%) !important;
}

body.pmpro-account #pmpro_account-profile .pmpro_card_content,
.ptmw-pmpro-account-content #pmpro_account-profile .pmpro_card_content {
    display: grid !important;
    gap: 14px !important;
    text-align: left !important;
}

body.pmpro-account #pmpro_account-profile .pmpro_card_content h3,
.ptmw-pmpro-account-content #pmpro_account-profile .pmpro_card_content h3 {
    margin: 0 0 8px !important;
    color: #071426 !important;
    font-size: 22px !important;
    line-height: 1.2 !important;
}

body.pmpro-account #pmpro_account-profile .pmpro_card_content ul,
body.pmpro-account #pmpro_account-profile .pmpro_card_content p,
.ptmw-pmpro-account-content #pmpro_account-profile .pmpro_card_content ul,
.ptmw-pmpro-account-content #pmpro_account-profile .pmpro_card_content p {
    margin: 0 !important;
    color: #475569 !important;
}

body.pmpro-account .pmpro_card_actions,
body.pmpro-login .pmpro_card_actions,
.ptmw-pmpro-account-content .pmpro_card_actions {
    border-top: 1px solid #edf1f6 !important;
    background: #f8fafc !important;
    padding: 16px 20px !important;
}

body.pmpro-account .pmpro_actions_nav,
body.pmpro-account .pmpro_actionlinks,
body.pmpro-login .pmpro_actions_nav,
body.pmpro-login .pmpro_actionlinks,
.ptmw-pmpro-account-content .pmpro_actions_nav,
.ptmw-pmpro-account-content .pmpro_actionlinks {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
    align-items: center !important;
    justify-content: flex-start !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

body.pmpro-account .pmpro_actions_nav a,
body.pmpro-account .pmpro_actionlinks a,
body.pmpro-account .pmpro_btn,
body.pmpro-login .pmpro_actions_nav a,
body.pmpro-login .pmpro_actionlinks a,
body.pmpro-login .pmpro_btn,
.ptmw-pmpro-account-content .pmpro_actions_nav a,
.ptmw-pmpro-account-content .pmpro_actionlinks a,
.ptmw-pmpro-account-content .pmpro_btn {
    display: inline-flex !important;
    min-height: 38px !important;
    align-items: center !important;
    justify-content: center !important;
    border: 1px solid #dbe3ef !important;
    border-radius: 9px !important;
    background: #fff !important;
    color: #0f766e !important;
    padding: 0 14px !important;
    font-weight: 850 !important;
    text-decoration: none !important;
    box-shadow: none !important;
}

body.pmpro-account .pmpro_actions_nav a:hover,
body.pmpro-account .pmpro_actionlinks a:hover,
body.pmpro-login .pmpro_actions_nav a:hover,
body.pmpro-login .pmpro_actionlinks a:hover,
.ptmw-pmpro-account-content .pmpro_actions_nav a:hover,
.ptmw-pmpro-account-content .pmpro_actionlinks a:hover {
    border-color: #ff8a00 !important;
    color: #111827 !important;
}

body.pmpro-account #pmpro_account-membership-none .pmpro_card_content,
.ptmw-pmpro-account-content #pmpro_account-membership-none .pmpro_card_content {
    min-height: 132px !important;
    display: flex !important;
    align-items: center !important;
    color: #475569 !important;
    font-size: 16px !important;
}

body.pmpro-account #pmpro_account-membership-none a,
.ptmw-pmpro-account-content #pmpro_account-membership-none a {
    color: #0f766e !important;
    font-weight: 850 !important;
    text-underline-offset: 3px !important;
}

body.pmpro-login #pmpro_login {
    width: min(680px, 100%) !important;
    margin: 0 auto !important;
}

body.pmpro-login .pmpro_login_wrap input[type="text"],
body.pmpro-login .pmpro_login_wrap input[type="password"] {
    width: 100% !important;
    min-height: 46px !important;
    border: 1px solid #dbe3ef !important;
    border-radius: 10px !important;
    padding: 0 14px !important;
}

body.pmpro-login .pmpro_login_wrap input[type="submit"] {
    width: 100% !important;
    min-height: 46px !important;
    border: 0 !important;
    border-radius: 10px !important;
    background: #ff8a00 !important;
    color: #111827 !important;
    font-weight: 900 !important;
}

@media (max-width: 1040px) {
    body.pmpro-account #pmpro_account,
    .ptmw-pmpro-account-content #pmpro_account {
        grid-template-columns: 1fr !important;
    }

    body.pmpro-account #pmpro_account-profile,
    body.pmpro-account #pmpro_account-membership,
    body.pmpro-account #pmpro_account-orders,
    body.pmpro-account #pmpro_account-invoices,
    body.pmpro-account #pmpro_account-links,
    .ptmw-pmpro-account-content #pmpro_account-profile,
    .ptmw-pmpro-account-content #pmpro_account-membership,
    .ptmw-pmpro-account-content #pmpro_account-orders,
    .ptmw-pmpro-account-content #pmpro_account-invoices,
    .ptmw-pmpro-account-content #pmpro_account-links {
        grid-column: 1 !important;
        grid-row: auto !important;
    }
}

@media (max-width: 760px) {
    body.pmpro-account .site-main > .site-shell.content-layout.page-content,
    body.pmpro-login .site-main > .site-shell.content-layout.page-content,
    .ptmw-pmpro-account-content {
        width: min(100% - 28px, 720px) !important;
        padding: 20px !important;
    }

    body.pmpro-account .pmpro_section,
    body.pmpro-login .pmpro_section,
    .ptmw-pmpro-account-content .pmpro_section {
        padding: 18px !important;
    }

    body.pmpro-account .pmpro_section_title,
    body.pmpro-account h2,
    body.pmpro-login .pmpro_section_title,
    body.pmpro-login h2,
    .ptmw-pmpro-account-content .pmpro_section_title,
    .ptmw-pmpro-account-content h2 {
        font-size: 24px !important;
    }
}

@media (max-width: 900px) {
    .ptmw-pmpro-account-content {
        width: min(100% - 28px, 720px);
    }

    .ptmw-pmpro-account-hero,
    .ptmw-pmpro-account-content #pmpro_account {
        grid-template-columns: 1fr;
    }

    .ptmw-pmpro-account-hero {
        display: grid;
        padding: 26px;
    }

    .ptmw-pmpro-account-hero a,
    .ptmw-pmpro-account-content #pmpro_account-membership,
    .ptmw-pmpro-account-content #pmpro_account-invoices,
    .ptmw-pmpro-account-content #pmpro_account-profile,
    .ptmw-pmpro-account-content #pmpro_account-links {
        grid-column: 1;
    }

    .ptmw-pmpro-account-hero h1 {
        font-size: 34px;
    }
}

@media (max-width: 680px) {
    body.woocommerce-cart .ptmw-cart-page {
        width: min(100% - 28px, 720px) !important;
        margin-top: 24px !important;
    }

    body.woocommerce-cart .ptmw-cart-heading h1 {
        font-size: 34px !important;
    }

    body.woocommerce-cart .ptmw-cart-card-main {
        grid-template-columns: 76px minmax(0, 1fr) !important;
        gap: 14px !important;
    }

    body.woocommerce-cart .ptmw-cart-thumb,
    body.woocommerce-cart .ptmw-cart-thumb a,
    body.woocommerce-cart .ptmw-cart-thumb img {
        width: 76px !important;
        height: 76px !important;
    }

    body.woocommerce-cart .ptmw-cart-card-footer,
    body.woocommerce-cart .ptmw-cart-form-actions {
        align-items: stretch !important;
        grid-template-columns: 1fr !important;
        flex-direction: column !important;
    }

    body.woocommerce-cart .ptmw-cart-subtotal {
        margin-left: 0 !important;
    }
}

/* Cart visual polish: refined product cards, summary panel, and buttons. */
body.woocommerce-cart {
    background:
        radial-gradient(circle at 10% 4%, rgba(255, 138, 0, .10), transparent 26%),
        radial-gradient(circle at 92% 10%, rgba(6, 182, 212, .10), transparent 26%),
        linear-gradient(180deg, #f8fafc 0%, #eef3f8 100%) !important;
}

body.woocommerce-cart .ptmw-cart-heading h1 {
    color: #071426 !important;
}

body.woocommerce-cart .ptmw-cart-card,
body.woocommerce-cart .ptmw-cart-row {
    position: relative !important;
    overflow: hidden !important;
    border-color: #dce5ef !important;
    border-radius: 12px !important;
    background:
        linear-gradient(145deg, #ffffff 0%, #f8fafc 52%, #eef2f7 100%) !important;
    box-shadow: 0 14px 34px rgba(15, 23, 42, .07) !important;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease !important;
}

body.woocommerce-cart .ptmw-cart-card::before,
body.woocommerce-cart .ptmw-cart-row::before {
    content: "" !important;
    position: absolute !important;
    inset: 0 0 auto 0 !important;
    height: 4px !important;
    background: linear-gradient(90deg, #ff8a00, #06b6d4, #8b5cf6) !important;
}

body.woocommerce-cart .ptmw-cart-card:hover,
body.woocommerce-cart .ptmw-cart-row:hover {
    border-color: #cbd8e7 !important;
    box-shadow: 0 18px 42px rgba(15, 23, 42, .10) !important;
    transform: translateY(-2px) !important;
}

body.woocommerce-cart .ptmw-cart-thumb,
body.woocommerce-cart .ptmw-cart-thumb a {
    border-radius: 12px !important;
    background:
        linear-gradient(135deg, #fff7ed, #ecfeff) !important;
}

body.woocommerce-cart .ptmw-cart-thumb img {
    border-color: rgba(15, 23, 42, .08) !important;
    border-radius: 12px !important;
    box-shadow: 0 10px 24px rgba(15, 23, 42, .10) !important;
}

body.woocommerce-cart .ptmw-cart-product-copy h2 a:hover {
    color: #ff8a00 !important;
}

body.woocommerce-cart .ptmw-cart-mobile-price,
body.woocommerce-cart .ptmw-cart-subtotal {
    color: #0f172a !important;
}

body.woocommerce-cart .ptmw-cart-quantity .quantity,
body.woocommerce-cart .ptmw-cart-quantity .ptmw-qty-control {
    border: 1px solid #dbe5ef !important;
    border-radius: 999px !important;
    background: #f8fafc !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .9) !important;
}

body.woocommerce-cart .ptmw-cart-quantity input.qty {
    border: 0 !important;
    background: transparent !important;
    color: #111827 !important;
    font-weight: 900 !important;
}

body.woocommerce-cart .ptmw-cart-remove {
    border-color: #fecdd3 !important;
    background: #fff1f2 !important;
    color: #e11d48 !important;
    transition: transform .16s ease, background .16s ease, color .16s ease !important;
}

body.woocommerce-cart .ptmw-cart-remove:hover {
    background: #e11d48 !important;
    color: #fff !important;
    transform: rotate(6deg) scale(1.04) !important;
}

body.woocommerce-cart .ptmw-cart-form-actions {
    border: 1px solid #dce5ef !important;
    border-radius: 12px !important;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .94) 0%, rgba(248, 250, 252, .90) 58%, rgba(226, 232, 240, .78) 100%) !important;
    padding: 12px !important;
    box-shadow: 0 12px 28px rgba(15, 23, 42, .05) !important;
}

body.woocommerce-cart .ptmw-cart-form-actions input {
    border-color: #dbe5ef !important;
    background: #fff !important;
}

body.woocommerce-cart .ptmw-cart-apply-coupon,
body.woocommerce-cart .ptmw-cart-form-actions .ptmw-cart-update,
body.woocommerce-cart .ptmw-cart-coupon button {
    border: 0 !important;
    border-radius: 10px !important;
    background: linear-gradient(135deg, #ffffff 0%, #e5e7eb 42%, #111827 100%) !important;
    color: #ffffff !important;
    font-weight: 900 !important;
    box-shadow: 0 10px 22px rgba(17, 24, 39, .14) !important;
    transition: transform .16s ease, box-shadow .16s ease, background .16s ease !important;
}

body.woocommerce-cart .ptmw-cart-apply-coupon:hover,
body.woocommerce-cart .ptmw-cart-form-actions .ptmw-cart-update:hover,
body.woocommerce-cart .ptmw-cart-coupon button:hover {
    background: linear-gradient(135deg, #ffffff 0%, #d1d5db 38%, #0f172a 100%) !important;
    color: #fff !important;
    box-shadow: 0 14px 28px rgba(15, 23, 42, .18) !important;
    transform: translateY(-1px) !important;
}

body.woocommerce-cart .ptmw-cart-summary .cart_totals {
    position: relative !important;
    overflow: hidden !important;
    border-color: #dce5ef !important;
    border-radius: 12px !important;
    background:
        radial-gradient(circle at 88% 0%, rgba(148, 163, 184, .18), transparent 30%),
        linear-gradient(145deg, #ffffff 0%, #f8fafc 54%, #e5e7eb 100%) !important;
    box-shadow: 0 20px 48px rgba(15, 23, 42, .10) !important;
}

body.woocommerce-cart .ptmw-cart-summary .cart_totals::before {
    content: "" !important;
    position: absolute !important;
    inset: 0 0 auto 0 !important;
    height: 5px !important;
    background: linear-gradient(90deg, #ff8a00, #22c55e, #06b6d4) !important;
}

body.woocommerce-cart .ptmw-cart-summary .cart_totals h2 {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
}

body.woocommerce-cart .ptmw-cart-summary .cart_totals h2::before {
    content: "" !important;
    display: inline-flex !important;
    width: 12px !important;
    height: 12px !important;
    border-radius: 4px !important;
    background: #ff8a00 !important;
    box-shadow: 10px 0 0 #06b6d4, 20px 0 0 #22c55e !important;
}

body.woocommerce-cart .ptmw-cart-total-lines > div,
body.woocommerce-cart .ptmw-cart-total-lines tr {
    min-height: 44px !important;
    border-bottom: 1px solid #edf2f7 !important;
}

body.woocommerce-cart .ptmw-cart-total-lines > div:last-child,
body.woocommerce-cart .ptmw-cart-total-lines tr:last-child {
    border-bottom: 0 !important;
}

body.woocommerce-cart .ptmw-cart-total-lines .order-total {
    margin-top: 4px !important;
    border: 1px solid #d1d5db !important;
    border-radius: 10px !important;
    background: linear-gradient(135deg, #ffffff 0%, #f3f4f6 56%, #e5e7eb 100%) !important;
    padding: 14px !important;
}

body.woocommerce-cart .ptmw-cart-total-lines .order-total strong {
    color: #111827 !important;
    font-size: 22px !important;
}

body.woocommerce-cart .ptmw-cart-summary .checkout-button {
    min-height: 56px !important;
    border-radius: 12px !important;
    background: linear-gradient(135deg, #ffffff 0%, #d1d5db 28%, #111827 100%) !important;
    box-shadow: 0 16px 34px rgba(15, 23, 42, .22) !important;
    letter-spacing: 0 !important;
    transition: transform .16s ease, box-shadow .16s ease, filter .16s ease !important;
}

body.woocommerce-cart .ptmw-cart-summary .checkout-button:hover {
    color: #fff !important;
    filter: saturate(1.06) brightness(1.02) !important;
    box-shadow: 0 20px 40px rgba(15, 23, 42, .28) !important;
    transform: translateY(-2px) !important;
}

/* Cart hero artwork: theme-matched background image treatment. */
body.woocommerce-cart .ptmw-cart-heading {
    position: relative !important;
    justify-items: start !important;
    overflow: hidden !important;
    min-height: 224px !important;
    margin: 0 0 34px !important;
    border: 1px solid rgba(148, 163, 184, .18) !important;
    border-radius: 0 !important;
    background:
        radial-gradient(circle at 77% 20%, rgba(6, 182, 212, .20), transparent 24%),
        radial-gradient(circle at 95% 90%, rgba(255, 138, 0, .13), transparent 28%),
        linear-gradient(135deg, rgba(17, 24, 39, .98) 0%, rgba(17, 24, 39, .96) 48%, rgba(31, 41, 55, .94) 100%),
        url("data:image/svg+xml,%3Csvg width='1200' height='320' viewBox='0 0 1200 320' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cpattern id='grid' width='64' height='64' patternUnits='userSpaceOnUse'%3E%3Cpath d='M64 0H0v64' fill='none' stroke='%23ffffff' stroke-opacity='.08'/%3E%3C/pattern%3E%3ClinearGradient id='g' x1='0' y1='0' x2='1' y2='1'%3E%3Cstop stop-color='%23ffffff' stop-opacity='.16'/%3E%3Cstop offset='1' stop-color='%23ffffff' stop-opacity='.02'/%3E%3C/linearGradient%3E%3C/defs%3E%3Crect width='1200' height='320' fill='%23111827'/%3E%3Crect width='1200' height='320' fill='url(%23grid)'/%3E%3Cg transform='translate(735 54)' opacity='.55'%3E%3Crect x='0' y='0' width='210' height='138' rx='18' fill='url(%23g)' stroke='%23ffffff' stroke-opacity='.16'/%3E%3Crect x='24' y='28' width='86' height='12' rx='6' fill='%23ff8a00' fill-opacity='.78'/%3E%3Crect x='24' y='58' width='154' height='10' rx='5' fill='%23ffffff' fill-opacity='.22'/%3E%3Crect x='24' y='82' width='118' height='10' rx='5' fill='%2306b6d4' fill-opacity='.48'/%3E%3C/g%3E%3Cg transform='translate(925 118)' opacity='.42'%3E%3Crect x='0' y='0' width='180' height='116' rx='16' fill='url(%23g)' stroke='%23ffffff' stroke-opacity='.14'/%3E%3Ccircle cx='42' cy='42' r='18' fill='%2322c55e' fill-opacity='.58'/%3E%3Crect x='72' y='34' width='74' height='10' rx='5' fill='%23ffffff' fill-opacity='.28'/%3E%3Crect x='26' y='78' width='120' height='10' rx='5' fill='%23ffffff' fill-opacity='.18'/%3E%3C/g%3E%3Cpath d='M790 320c34-104 102-158 202-158s164 54 194 158' fill='none' stroke='%23ffffff' stroke-opacity='.10'/%3E%3C/svg%3E") !important;
    background-size: cover !important;
    background-position: center !important;
    padding: 58px min(10vw, 118px) !important;
    text-align: left !important;
    box-shadow: 0 22px 56px rgba(15, 23, 42, .16) !important;
}

body.woocommerce-cart .ptmw-cart-heading h1 {
    position: relative !important;
    z-index: 1 !important;
    margin: 0 !important;
    color: #fff !important;
    font-size: clamp(46px, 5vw, 70px) !important;
    line-height: .98 !important;
    font-weight: 950 !important;
    letter-spacing: 0 !important;
    text-shadow: 0 12px 34px rgba(0, 0, 0, .32) !important;
}

body.woocommerce-cart .ptmw-cart-heading h1 span {
    width: auto !important;
    height: auto !important;
    margin-right: 10px !important;
    border-radius: 0 !important;
    background: transparent !important;
    color: #ff8a00 !important;
    box-shadow: none !important;
    font-size: 22px !important;
    vertical-align: .12em !important;
}

body.woocommerce-cart .ptmw-cart-heading p {
    position: relative !important;
    z-index: 1 !important;
    margin: 14px 0 0 !important;
    color: #dbe4ef !important;
    font-size: 18px !important;
    font-weight: 750 !important;
}

@media (max-width: 760px) {
    body.woocommerce-cart .ptmw-cart-heading {
        min-height: 168px !important;
        padding: 38px 26px !important;
    }

    body.woocommerce-cart .ptmw-cart-heading h1 {
        font-size: 44px !important;
    }
}

body.woocommerce-cart .ptmw-cart-continue {
    display: inline-flex !important;
    min-height: 42px !important;
    align-items: center !important;
    justify-content: center !important;
    border: 1px solid #fed7aa !important;
    border-radius: 10px !important;
    background: #fff7ed !important;
    color: #ea580c !important;
    padding: 0 14px !important;
}

body.woocommerce-cart .ptmw-cart-continue:hover {
    background: #ff8a00 !important;
    color: #111827 !important;
}


@media (max-width: 760px) {
    .ptmw-woocommerce-account-wrap {
        width: min(100% - 20px, 720px);
        margin: 18px auto 44px;
        border-radius: 8px;
        padding: 14px;
    }
}
