@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* ============================================================
   OCEAN BREEZE THEME — Teal + Coral fresh SaaS dashboard
   ============================================================ */
:root {
    --ob-teal: #0D9488;
    --ob-teal-mid: #14B8A6;
    --ob-teal-light: #5EEAD4;
    --ob-teal-soft: #CCFBF1;
    --ob-teal-bg: #F0FDFA;
    --ob-coral: #F97316;
    --ob-coral-hover: #EA580C;
    --ob-coral-soft: #FFEDD5;
    --ob-white: #FFFFFF;
    --ob-text: #134E4A;
    --ob-text-sub: #5F8A85;
    --ob-text-muted: #94B8B3;
    --ob-border: #99F6E4;
    --ob-sidebar-w: 268px;
    --ob-sidebar-collapsed-w: 76px;
    --ob-gap: 16px;
    --ob-radius: 14px;
    --ob-radius-lg: 20px;
    --ob-shadow: 0 4px 20px rgba(13,148,136,.08);
    --ob-shadow-lg: 0 12px 40px rgba(13,148,136,.15);
}

*, *::before, *::after { box-sizing: border-box; }

body.pt-body {
    margin: 0;
    font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
    background: var(--ob-teal-bg);
    color: var(--ob-text);
    -webkit-font-smoothing: antialiased;
}

.ptdash-root {
    display: flex;
    min-height: 100vh;
    background: var(--ob-teal-bg);
    padding: var(--ob-gap);
    gap: var(--ob-gap);
}

/* ── Floating teal sidebar ── */
.ptdash-sidebar {
    width: var(--ob-sidebar-w);
    background: linear-gradient(180deg, #0F766E 0%, #0D9488 45%, #14B8A6 100%);
    border-radius: var(--ob-radius-lg);
    position: fixed;
    left: var(--ob-gap);
    top: var(--ob-gap);
    height: calc(100vh - (var(--ob-gap) * 2));
    z-index: 999;
    display: flex;
    flex-direction: column;
    padding: 22px 16px;
    overflow-y: auto;
    box-shadow: var(--ob-shadow-lg);
    transition: width .25s ease, padding .25s ease;
}

.ptdash-collapsed .ptdash-sidebar {
    width: var(--ob-sidebar-collapsed-w);
    padding: 22px 10px;
}

.ptdash-collapsed .ptdash-brand {
    justify-content: center;
    padding: 0 4px 20px;
}

.ptdash-collapsed .ptdash-brand-info,
.ptdash-collapsed .ptdash-sb-upgrade,
.ptdash-collapsed .ptdash-nav-text,
.ptdash-collapsed .ptdash-sb-user-info {
    display: none;
}

.ptdash-collapsed .ptdash-nav-link {
    justify-content: center;
    padding: 11px 10px;
    gap: 0;
}

.ptdash-collapsed .ptdash-sb-user {
    justify-content: center;
    padding: 10px;
}

.ptdash-collapsed .ptdash-sb-footer .ptdash-sb-badge {
    display: none;
}

.ptdash-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 8px 20px;
    margin-bottom: 8px;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,.15);
}

.ptdash-brand-logo {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: rgba(255,255,255,.2);
    border: 2px solid rgba(255,255,255,.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ptdash-brand-logo img { width: 100%; height: 100%; object-fit: cover; }

.ptdash-brand-name {
    font-size: 15px;
    font-weight: 800;
    color: #fff;
    letter-spacing: .04em;
    text-transform: uppercase;
    line-height: 1.2;
}

.ptdash-brand-tag {
    font-size: 10px;
    color: rgba(255,255,255,.65);
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.ptdash-nav-cat {
    font-size: 10px;
    font-weight: 700;
    color: rgba(255,255,255,.45);
    text-transform: uppercase;
    letter-spacing: .1em;
    padding: 14px 12px 8px;
}

.ptdash-nav { list-style: none; padding: 0; margin: 0; }

.ptdash-nav-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 14px;
    border-radius: 12px;
    color: rgba(255,255,255,.85);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all .2s;
    margin: 2px 0;
}

.ptdash-nav-link:hover {
    background: rgba(255,255,255,.12);
    color: #fff;
}

.ptdash-nav-link.active {
    background: rgba(255,255,255,.22);
    color: #fff;
    font-weight: 600;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.15);
}

.ptdash-nav-icon { width: 20px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

.ptdash-sb-upgrade {
    margin: 16px 8px;
    padding: 16px;
    border-radius: var(--ob-radius);
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.15);
    text-align: center;
}

.ptdash-sb-upgrade p {
    font-size: 13px;
    color: rgba(255,255,255,.9);
    margin: 0 0 12px;
    font-weight: 600;
}

.ptdash-sb-upgrade-btn {
    display: block;
    padding: 10px 16px;
    background: var(--ob-coral);
    color: #fff;
    border-radius: 10px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    transition: background .2s;
}

.ptdash-sb-upgrade-btn:hover { background: var(--ob-coral-hover); color: #fff; }

.ptdash-sb-footer { margin-top: auto; padding-top: 12px; }

.ptdash-sb-user {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    border-radius: 12px;
    background: rgba(0,0,0,.15);
}

.ptdash-sb-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--ob-coral);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ptdash-sb-user-name { font-size: 13px; font-weight: 600; color: #fff; }
.ptdash-sb-user-email { font-size: 11px; color: rgba(255,255,255,.6); max-width: 130px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.ptdash-sb-badge {
    display: inline-block;
    font-size: 9px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 20px;
    background: var(--ob-coral);
    color: #fff;
    margin-top: 4px;
}

.ptdash-toggle {
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.2);
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #fff;
    transition: background .2s, color .2s;
    margin: 12px auto 0;
    flex-shrink: 0;
}

.ptdash-toggle:hover {
    background: rgba(255,255,255,.22);
}

.ptdash-toggle svg { transition: transform .25s ease; }
.ptdash-collapsed .ptdash-toggle svg { transform: rotate(180deg); }

.ptdash-mobile-close { display: none; }

.ptdash-mobile-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--ob-border);
    border-radius: 10px;
    background: var(--ob-white);
    color: var(--ob-teal);
    cursor: pointer;
    flex-shrink: 0;
    margin-right: 8px;
    transition: background .2s, color .2s, border-color .2s;
}

.ptdash-mobile-menu:hover {
    background: var(--ob-teal-soft);
    border-color: var(--ob-teal-mid);
}

.ptdash-collapsed .ptdash-mobile-menu {
    background: var(--ob-teal);
    color: #fff;
    border-color: var(--ob-teal);
}

/* ── Main content ── */
.ptdash-content {
    flex: 1;
    margin-left: calc(var(--ob-sidebar-w) + var(--ob-gap));
    min-width: 0;
    display: flex;
    flex-direction: column;
    transition: margin-left .25s ease;
}

.ptdash-collapsed .ptdash-content {
    margin-left: calc(var(--ob-sidebar-collapsed-w) + var(--ob-gap));
}

.ptdash-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0 20px;
    background: transparent;
    border: none;
    position: relative;
    gap: 12px;
}

.ptdash-greeting h1 {
    font-size: 26px;
    font-weight: 700;
    color: var(--ob-text);
    margin: 0 0 4px;
}

.ptdash-greeting p {
    font-size: 15px;
    color: var(--ob-text-sub);
    margin: 0;
}

.ptdash-greeting { display: block; }

.ptdash-topbar-actions { display: flex; align-items: center; gap: 10px; }

.ptdash-notif-btn {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: 1px solid var(--ob-border);
    background: var(--ob-white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--ob-teal);
    position: relative;
}

.ptdash-notif-count {
    position: absolute;
    top: -3px;
    right: -3px;
    background: #EF4444;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    min-width: 16px;
    height: 16px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ptdash-notif-count:empty, .ptdash-notif-count[data-count="0"] { display: none; }

.ptdash-user-trigger {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: none;
    background: linear-gradient(135deg, var(--ob-teal), var(--ob-teal-mid));
    color: #fff;
    font-weight: 700;
    cursor: pointer;
}

.ptdash-user-menu { position: relative; }

.ptdash-dropdown, .ptdash-notif-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--ob-white);
    border: 1px solid var(--ob-border);
    border-radius: var(--ob-radius);
    box-shadow: var(--ob-shadow-lg);
    min-width: 220px;
    display: none;
    z-index: 1000;
}

.ptdash-dropdown.show, .ptdash-notif-dropdown.show { display: block; }

.ptdash-dd-header { padding: 14px 16px; border-bottom: 1px solid var(--ob-teal-soft); }
.ptdash-dd-name { font-weight: 600; font-size: 14px; color: var(--ob-text); }
.ptdash-dd-role { font-size: 12px; color: var(--ob-text-muted); }

.ptdash-dd-item {
    display: block;
    padding: 10px 16px;
    color: var(--ob-text-sub);
    text-decoration: none;
    font-size: 14px;
}

.ptdash-dd-item:hover { background: var(--ob-teal-bg); color: var(--ob-teal); }
.ptdash-dd-sep { height: 1px; background: var(--ob-teal-soft); margin: 4px 0; }

.ptdash-topbar-btn { display: none; }

.ptdash-main { padding: 0 4px 28px; flex: 1; }

/* Hide arctic page head */
.ap-page-head { display: none; }

/* ── Ocean hero banner ── */
.ob-hero {
    position: relative;
    background: linear-gradient(135deg, #0F766E 0%, #0D9488 40%, #2DD4BF 100%);
    border-radius: var(--ob-radius-lg);
    padding: 32px 36px;
    margin-bottom: 24px;
    overflow: hidden;
    color: #fff;
    box-shadow: var(--ob-shadow-lg);
}

.ob-hero::before {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 0;
    right: 0;
    height: 60px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M0,60 C300,120 900,0 1200,60 L1200,120 L0,120 Z' fill='rgba(255,255,255,0.08)'/%3E%3C/svg%3E") no-repeat bottom;
    background-size: 100% 100%;
    pointer-events: none;
}

.ob-hero::after {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255,255,255,.12), transparent 70%);
    pointer-events: none;
}

.ob-hero-inner { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }

.ob-hero h2 {
    font-size: 26px;
    font-weight: 800;
    margin: 0 0 8px;
    color: #fff;
}

.ob-hero p {
    font-size: 15px;
    color: rgba(255,255,255,.85);
    margin: 0 0 20px;
    max-width: 480px;
    line-height: 1.6;
}

.ob-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.ob-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all .2s;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.ob-btn-coral {
    background: var(--ob-coral);
    color: #fff;
    box-shadow: 0 4px 16px rgba(249,115,22,.35);
}

.ob-btn-coral:hover {
    background: var(--ob-coral-hover);
    transform: translateY(-1px);
    color: #fff;
}

.ob-btn-outline {
    background: rgba(255,255,255,.15);
    color: #fff;
    border: 1px solid rgba(255,255,255,.35);
    backdrop-filter: blur(4px);
}

.ob-btn-outline:hover { background: rgba(255,255,255,.25); color: #fff; }

.ob-member-chip {
    background: rgba(255,255,255,.95);
    border-radius: var(--ob-radius);
    padding: 16px 20px;
    color: var(--ob-text);
    min-width: 180px;
    box-shadow: 0 8px 24px rgba(0,0,0,.1);
}

.ob-member-chip strong { display: block; font-size: 14px; margin-bottom: 6px; }
.ob-member-chip span { font-size: 12px; color: var(--ob-text-sub); }

.ob-chip-badge {
    display: inline-block;
    background: var(--ob-teal-soft);
    color: var(--ob-teal);
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    margin-top: 8px;
}

/* ── Stats ── */
.pt-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-bottom: 24px;
}

.pt-stat-card {
    background: var(--ob-white);
    border: 1px solid var(--ob-border);
    border-radius: var(--ob-radius);
    padding: 20px;
    box-shadow: var(--ob-shadow);
    transition: transform .2s, box-shadow .2s;
}

.pt-stat-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--ob-shadow-lg);
}

.pt-stat-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.pt-stat-icon.teal { background: var(--ob-teal-soft); color: var(--ob-teal); }
.pt-stat-icon.coral { background: var(--ob-coral-soft); color: var(--ob-coral); }

.pt-stat-value {
    font-size: 28px;
    font-weight: 800;
    color: var(--ob-text);
    line-height: 1;
    margin-bottom: 4px;
}

.pt-stat-label { font-size: 13px; color: var(--ob-text-sub); font-weight: 500; }

.pt-stat-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    margin-top: 6px;
}

.pt-stat-badge.active { background: var(--ob-teal-soft); color: var(--ob-teal); }
.pt-stat-badge.inactive { background: #FEE2E2; color: #DC2626; }

/* Hide arctic banner */
.ap-premium-banner { display: none !important; }

/* ── Subscriptions ── */
.pt-subs-card {
    background: var(--ob-white);
    border: 1px solid var(--ob-border);
    border-radius: var(--ob-radius-lg);
    margin-bottom: 24px;
    overflow: hidden;
    box-shadow: var(--ob-shadow);
}

.pt-subs-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: linear-gradient(90deg, var(--ob-teal-soft), var(--ob-white));
    cursor: pointer;
    border-bottom: 1px solid var(--ob-border);
}

.pt-subs-header h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--ob-text) !important;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pt-subs-header h3 svg { color: var(--ob-teal) !important; }

.pt-subs-count {
    background: var(--ob-teal);
    color: #fff !important;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
}

.pt-subs-toggle {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    border: 1px solid var(--ob-border);
    background: var(--ob-white);
    color: var(--ob-teal) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.pt-subs-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding: 16px 20px;
    max-height: 400px;
    overflow-y: auto;
}

.pt-subs-collapsed .pt-subs-list { max-height: 0; overflow: hidden; padding: 0 20px; }

.pt-sub-item {
    padding: 14px;
    border: 1px solid var(--ob-border);
    border-radius: var(--ob-radius);
    background: var(--ob-teal-bg);
    transition: border-color .2s;
}

.pt-sub-item:hover { border-color: var(--ob-teal-mid); }

.pt-sub-name { font-size: 14px; font-weight: 600; color: var(--ob-text) !important; }
.pt-sub-name a { color: var(--ob-text) !important; text-decoration: none; }
.pt-sub-name a:hover { color: var(--ob-teal) !important; }

.pt-sub-badge {
    display: inline-flex;
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 700;
    margin-top: 8px;
}

.pt-sub-badge-expire { background: #FEE2E2; color: #DC2626 !important; }
.pt-sub-badge-lifetime { background: var(--ob-teal-soft); color: var(--ob-teal) !important; }
.pt-sub-badge-rebill { background: var(--ob-coral-soft); color: var(--ob-coral) !important; }
.pt-sub-badge-future { background: #EDE9FE; color: #7C3AED !important; }

.pt-subs-empty { text-align: center; padding: 32px; }
.pt-subs-empty-btn {
    display: inline-flex;
    padding: 12px 24px;
    background: var(--ob-coral);
    color: #fff;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
}

/* ── Tools ── */
.ap-tools-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.ap-tools-head h2 {
    font-size: 20px;
    font-weight: 700;
    color: var(--ob-text);
    margin: 0;
}

.ap-tools-head span, .ap-tools-head a {
    font-size: 14px;
    font-weight: 600;
    color: var(--ob-teal);
    text-decoration: none;
}

.ap-tools-search-wrap { position: relative; margin-bottom: 16px; }

.ap-tools-search {
    width: 100%;
    padding: 14px 16px 14px 46px;
    border: 1px solid var(--ob-border);
    border-radius: 12px;
    font-size: 14px;
    font-family: inherit;
    background: var(--ob-white);
    color: var(--ob-text);
    outline: none;
}

.ap-tools-search:focus {
    border-color: var(--ob-teal-mid);
    box-shadow: 0 0 0 3px rgba(20,184,166,.15);
}

.ap-search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--ob-teal);
    pointer-events: none;
}

/* ── Style D: Band Cards (logo + title bar + Access) ── */
.pt-tools-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.pt-tool-card-band {
    background: var(--ob-white);
    border: 1px solid var(--ob-border);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--ob-shadow);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    display: flex;
    flex-direction: column;
}

.pt-tool-card-band:hover {
    transform: translateY(-3px);
    box-shadow: var(--ob-shadow-lg);
    border-color: var(--ob-teal-mid);
}

/* Logo area — white */
.pt-tool-band-logo {
    position: relative;
    height: 78px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 12px;
    border-bottom: 1px solid #eef2f2;
}

.pt-tool-band-logo--fallback {
    background: linear-gradient(135deg, #F0FDFA, #fff);
}

.pt-tool-band-photo {
    display: block;
    max-width: 100%;
    max-height: 58px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform .25s ease;
}

.pt-tool-card-band:hover .pt-tool-band-photo { transform: scale(1.04); }
.pt-tool-band-photo--missing { opacity: 0; }

/* Title band — teal */
.pt-tool-band-title {
    background: linear-gradient(135deg, #0F766E, #0D9488);
    padding: 8px 10px;
    text-align: center;
    min-height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pt-tool-band-name {
    margin: 0;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    line-height: 1.25;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

/* Access button area */
.pt-tool-band-foot {
    padding: 10px 12px 12px;
    background: #fff;
    display: flex;
    justify-content: center;
}

.pt-tool-access-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    max-width: 140px;
    padding: 8px 14px;
    background: linear-gradient(135deg, #0F766E, #14B8A6);
    color: #fff !important;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none !important;
    transition: background .2s, box-shadow .2s, transform .2s;
}

.pt-tool-access-btn:hover {
    background: linear-gradient(135deg, #0D9488, #2DD4BF);
    box-shadow: 0 4px 12px rgba(13,148,136,.35);
    color: #fff !important;
    transform: translateY(-1px);
}

.pt-tool-access-btn svg { flex-shrink: 0; opacity: .95; }

/* Tool tags (Bonus, Cloud, Hot, numbers…) */
.pt-tool-tag {
    position: absolute;
    top: 6px;
    left: 6px;
    z-index: 3;
    pointer-events: none;
    color: #fff;
    font-size: 8px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .05em;
    padding: 3px 7px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0,0,0,.15);
    border: 1px solid rgba(255,255,255,.15);
}

.pt-tool-tag-oneclick   { background: #10B981; }
.pt-tool-tag-cloud      { background: #3B82F6; }
.pt-tool-tag-maintenance{ background: #EF4444; }
.pt-tool-tag-temporary  { background: #8B5CF6; }
.pt-tool-tag-bonus      { background: #F59E0B; }
.pt-tool-tag-hot        { background: #FF4500; }
.pt-tool-tag-new        { background: #06B6D4; }
.pt-tool-tag-number     { background: #374151; font-size: 9px; padding: 3px 8px; }

/* Legacy hero cards hidden if any remain */
.pt-tool-card-hero .pt-tool-premium-tag { display: none; }

.pt-tool-card-top,
.pt-tool-card-icon,
.pt-tool-card-footer,
.pt-tool-open-btn { display: none !important; }

.pt-tools-empty {
    text-align: center;
    padding: 48px;
    background: var(--ob-white);
    border: 2px dashed var(--ob-border);
    border-radius: var(--ob-radius-lg);
}

.pt-tools-empty-btn {
    display: inline-flex;
    padding: 12px 24px;
    background: var(--ob-coral);
    color: #fff;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
}

/* ── Forms ── */
.am-body-content a.button,
.am-body-content input[type="submit"],
.am-body-content input[type="button"] {
    background: var(--ob-coral) !important;
    border-color: var(--ob-coral) !important;
    border-radius: 12px !important;
    font-weight: 700 !important;
    font-family: 'Plus Jakarta Sans', sans-serif !important;
}

.am-form form {
    background: var(--ob-white);
    border: 1px solid var(--ob-border);
    border-radius: var(--ob-radius-lg);
    padding: 24px;
}

/* ── Cleanup ── */
#widget-member-main-links,
.am-tabs-wrapper,
.am-layout-two-coll-top,
#widget-member-main-subscriptions > h2,
#widget-member-main-resources > h2,
.am-page-main .page-header { display: none !important; }

.am-layout-two-coll .am-coll-left,
.am-layout-two-coll .am-coll-right { float: none; width: 100%; }

.am-layout-two-coll,
.am-layout-two-coll .am-layout-two-coll-top,
.am-layout-two-coll .am-layout-two-coll-bottom {
    background: transparent !important;
    border: none; padding: 0; margin: 0; box-shadow: none;
}

#widget-member-main-resources,
#widget-member-main-subscriptions { margin: 0 !important; padding: 0 !important; border: none !important; background: transparent !important; }

#widget-member-main-resources .am-block,
#member-main-subscriptions { background: transparent !important; border: none !important; padding: 0 !important; }

.ptdash-page-body .container-xl { max-width: 100%; padding: 0; }
.ptdash-dashboard { width: 100%; }

.ptdash-footer {
    margin-left: calc(var(--ob-sidebar-w) + var(--ob-gap));
    padding: 20px;
    text-align: center;
    font-size: 13px;
    color: var(--ob-text-muted);
    transition: margin-left .25s ease;
}

.ptdash-collapsed .ptdash-footer {
    margin-left: calc(var(--ob-sidebar-collapsed-w) + var(--ob-gap));
}

.ptdash-announcement {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 10001;
    padding: 12px 20px;
    background: var(--ob-teal);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
}

.ptdash-overlay { display: none; position: fixed; inset: 0; background: rgba(19,78,74,.5); z-index: 998; }
.ptdash-mobile-open .ptdash-overlay { display: block; }

@media (min-width: 1500px) {
    .pt-tools-grid { grid-template-columns: repeat(5, 1fr); }
}

@media (max-width: 1200px) {
    .pt-tools-grid { grid-template-columns: repeat(3, 1fr); }
    .pt-subs-list { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1024px) {
    .pt-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .pt-subs-list { grid-template-columns: repeat(2, 1fr); }
    .pt-tools-grid { grid-template-columns: repeat(2, 1fr); }
    .ob-hero-inner { flex-direction: column; }
}

@media (max-width: 900px) {
    .pt-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .pt-tools-grid { grid-template-columns: repeat(2, 1fr); }
    .pt-subs-list { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .ptdash-root { padding: 0; }
    .ptdash-sidebar {
        left: 0; top: 0;
        height: 100vh;
        border-radius: 0;
        transform: translateX(-100%);
        width: var(--ob-sidebar-w) !important;
        padding: 22px 16px !important;
    }
    .ptdash-collapsed .ptdash-sidebar {
        width: var(--ob-sidebar-w) !important;
        padding: 22px 16px !important;
    }
    .ptdash-mobile-open .ptdash-sidebar { transform: translateX(0); }
    .ptdash-content,
    .ptdash-collapsed .ptdash-content { margin-left: 0; padding: 12px; }
    .ptdash-footer,
    .ptdash-collapsed .ptdash-footer { margin-left: 0; }
    .ptdash-mobile-menu, .ptdash-mobile-close { display: flex; }
    .ptdash-toggle { display: none; }
    .ptdash-mobile-close {
        position: absolute;
        top: 16px;
        right: 14px;
        background: rgba(255,255,255,.12);
        border: 1px solid rgba(255,255,255,.2);
        width: 34px;
        height: 34px;
        border-radius: 10px;
        cursor: pointer;
        color: #fff;
        align-items: center;
        justify-content: center;
        z-index: 2;
    }
    .ptdash-mobile-menu {
        width: 40px; height: 40px;
        border: 1px solid var(--ob-border);
        border-radius: 10px;
        background: var(--ob-white);
        align-items: center;
        justify-content: center;
        cursor: pointer;
    }
    .pt-tools-grid, .pt-subs-list, .pt-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .pt-tool-band-logo { height: 68px; }
}

@media (max-width: 480px) {
    .pt-tools-grid { grid-template-columns: 1fr 1fr; }
    .pt-tool-band-logo { height: 62px; }
}
