/* ==============================================
   Print Directory Theme – Main Stylesheet
   ============================================== */

:root {
    --pd-primary:    #E84B16;
    --pd-primary-dk: #C73E10;
    --pd-secondary:  #1A3C5E;
    --pd-accent:     #F59E0B;
    --pd-bg:         #F4F6F9;
    --pd-white:      #FFFFFF;
    --pd-border:     #E1E5EA;
    --pd-text:       #1A1A2E;
    --pd-muted:      #6C757D;
    --pd-shadow:     0 2px 16px rgba(0,0,0,0.08);
    --pd-radius:     10px;
    --font-sans:     'Plus Jakarta Sans', sans-serif;
    --font-display:  'Sora', sans-serif;
    --container:     1200px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.65;
    color: var(--pd-text);
    background: var(--pd-bg);
    margin: 0;
}

img { max-width: 100%; height: auto; }
a   { color: var(--pd-primary); }

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
}

/* ── Header ────────────────────────────── */
.site-header {
    background: var(--pd-white);
    border-bottom: 3px solid var(--pd-primary);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    max-width: var(--container);
    margin: 0 auto;
    gap: 20px;
}
.site-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.site-logo img { height: 50px; width: auto; }
.site-name {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 800;
    color: var(--pd-secondary);
    line-height: 1.1;
}
.site-name span { color: var(--pd-primary); }
.site-tagline { font-size: 11px; color: var(--pd-muted); display: block; text-transform: uppercase; letter-spacing: 0.5px; }

/* Nav */
.primary-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 4px;
}
.primary-nav a {
    display: block;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 600;
    color: var(--pd-secondary);
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.15s;
}
.primary-nav a:hover,
.primary-nav .current-menu-item a { background: var(--pd-primary); color: #fff; }

.header-actions { display: flex; align-items: center; gap: 10px; }
.header-actions a {
    font-size: 14px;
    font-weight: 600;
    padding: 9px 20px;
    border-radius: 7px;
    text-decoration: none;
    transition: all 0.15s;
}
.btn-login   { color: var(--pd-secondary); border: 1.5px solid var(--pd-border); background: #fff; }
.btn-list    { background: var(--pd-primary); color: #fff; }
.btn-list:hover   { background: var(--pd-primary-dk); color: #fff; }
.btn-login:hover  { border-color: var(--pd-secondary); }

/* Mobile nav toggle */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--pd-secondary);
    padding: 4px;
}

/* ── Hero ──────────────────────────────── */
.site-hero {
    background: linear-gradient(135deg, var(--pd-secondary) 0%, #0d2140 100%);
    color: #fff;
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.site-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-content { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 5vw, 52px);
    font-weight: 800;
    line-height: 1.15;
    margin: 0 0 16px;
}
.hero-title em { color: var(--pd-accent); font-style: normal; }
.hero-subtitle { font-size: 18px; opacity: 0.85; margin-bottom: 36px; }
.hero-search-embed { max-width: 720px; margin: 0 auto; }

/* ── Categories Grid ───────────────────── */
.pd-categories-section {
    padding: 60px 20px;
    background: var(--pd-white);
}
.section-title {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 800;
    color: var(--pd-secondary);
    text-align: center;
    margin-bottom: 8px;
}
.section-subtitle {
    text-align: center;
    color: var(--pd-muted);
    margin-bottom: 36px;
    font-size: 16px;
}
.pd-cat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 16px;
    max-width: var(--container);
    margin: 0 auto;
}
.pd-cat-card {
    background: var(--pd-bg);
    border: 1.5px solid var(--pd-border);
    border-radius: var(--pd-radius);
    padding: 20px 14px;
    text-align: center;
    text-decoration: none;
    color: var(--pd-secondary);
    font-size: 13px;
    font-weight: 600;
    transition: all 0.18s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.pd-cat-card:hover {
    background: var(--pd-primary);
    color: #fff;
    border-color: var(--pd-primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(232,75,22,0.2);
}
.pd-cat-icon { font-size: 28px; }
.pd-cat-count { font-size: 12px; opacity: 0.7; font-weight: 400; }

/* ── Stats ─────────────────────────────── */
.pd-stats-bar {
    background: var(--pd-primary);
    color: #fff;
    padding: 24px 20px;
}
.pd-stats-inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 16px;
    max-width: var(--container);
    margin: 0 auto;
    text-align: center;
}
.pd-stat-num {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 800;
    display: block;
}
.pd-stat-label { font-size: 13px; opacity: 0.85; text-transform: uppercase; letter-spacing: 0.5px; }

/* ── How it Works ──────────────────────── */
.pd-how-section { padding: 60px 20px; background: var(--pd-bg); }
.pd-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}
.pd-step {
    background: var(--pd-white);
    border-radius: var(--pd-radius);
    padding: 28px;
    text-align: center;
    box-shadow: var(--pd-shadow);
    position: relative;
}
.pd-step-num {
    width: 44px; height: 44px;
    background: var(--pd-primary);
    color: #fff;
    border-radius: 50%;
    font-size: 20px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    font-family: var(--font-display);
}
.pd-step h4 { margin: 0 0 8px; font-size: 17px; color: var(--pd-secondary); }
.pd-step p  { font-size: 14px; color: var(--pd-muted); margin: 0; }

/* ── CTA Section ───────────────────────── */
.pd-cta-section {
    background: linear-gradient(135deg, var(--pd-secondary), #0d2140);
    color: #fff;
    padding: 60px 20px;
    text-align: center;
}
.pd-cta-section h2 {
    font-family: var(--font-display);
    font-size: 32px;
    margin-bottom: 12px;
}
.pd-cta-section p { opacity: 0.85; margin-bottom: 28px; font-size: 17px; }
.pd-cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.pd-cta-btns a {
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.15s;
}
.pd-cta-btns .btn-primary { background: var(--pd-primary); color: #fff; }
.pd-cta-btns .btn-secondary { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.5); }
.pd-cta-btns .btn-primary:hover  { background: var(--pd-primary-dk); }
.pd-cta-btns .btn-secondary:hover { background: rgba(255,255,255,0.1); border-color: #fff; }

/* ── Main Content ──────────────────────── */
.site-main-wrap {
    max-width: var(--container);
    margin: 40px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}
.site-main-wrap.has-sidebar {
    grid-template-columns: 1fr 300px;
}
.site-main { min-width: 0; }

.page-content {
    background: var(--pd-white);
    border-radius: var(--pd-radius);
    padding: 36px;
    box-shadow: var(--pd-shadow);
}
.page-content h1 { color: var(--pd-secondary); font-family: var(--font-display); }

/* Sidebar */
.site-sidebar { min-width: 0; }
.widget {
    background: var(--pd-white);
    border-radius: var(--pd-radius);
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: var(--pd-shadow);
}
.widget-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--pd-secondary);
    margin: 0 0 14px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--pd-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ── Single Listing ────────────────────── */
.pd-single-listing {
    background: var(--pd-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--pd-shadow);
}
.pd-listing-header {
    background: linear-gradient(135deg, var(--pd-secondary), #0d2140);
    color: #fff;
    padding: 36px;
}
.pd-listing-title {
    font-family: var(--font-display);
    font-size: 28px;
    margin: 0 0 8px;
}
.pd-listing-cats { font-size: 14px; opacity: 0.8; margin-bottom: 12px; }
.pd-listing-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.pd-listing-body { padding: 36px; }
.pd-listing-body h3 { color: var(--pd-secondary); border-left: 4px solid var(--pd-primary); padding-left: 10px; }
.pd-listing-meta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}
.pd-meta-item { background: var(--pd-bg); border-radius: 8px; padding: 14px; }
.pd-meta-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.5px; color: var(--pd-muted); margin-bottom: 4px; }
.pd-meta-value { font-size: 15px; font-weight: 600; color: var(--pd-secondary); }
.pd-listing-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 20px; }
.pd-listing-video { margin: 20px 0; }
.pd-listing-video video { width: 100%; border-radius: 8px; }
.pd-tags-list { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 12px; }
.pd-tag-pill {
    background: var(--pd-bg);
    border: 1px solid var(--pd-border);
    padding: 4px 12px;
    border-radius: 99px;
    font-size: 13px;
    color: var(--pd-secondary);
    text-decoration: none;
}
.pd-tag-pill:hover { background: var(--pd-primary); color: #fff; border-color: var(--pd-primary); }

/* ── Footer ────────────────────────────── */
.site-footer {
    background: var(--pd-secondary);
    color: rgba(255,255,255,0.8);
    padding: 50px 0 0;
    margin-top: 0;
    width: 100%;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 32px;
    max-width: 100%;
    padding: 0 40px;
    margin: 0 0 40px;
}
.footer-brand .site-logo { margin-bottom: 12px; }
.footer-brand p { font-size: 14px; opacity: 0.7; line-height: 1.6; }
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social a {
    width: 36px; height: 36px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: background 0.15s;
}
.footer-social a:hover { background: var(--pd-primary); }
.footer-widget h5 { color: #fff; font-size: 15px; font-weight: 700; margin: 0 0 14px; padding-bottom: 8px; border-bottom: 2px solid var(--pd-primary); }
.footer-widget ul { list-style: none; margin: 0; padding: 0; }
.footer-widget li { margin-bottom: 8px; }
.footer-widget a { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 14px; transition: color 0.15s; }
.footer-widget a:hover { color: var(--pd-accent); }
.footer-bar {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 40px;
    text-align: center;
    font-size: 13px;
    opacity: 0.6;
    width: 100%;
}

/* ── Responsive ─────────────────────────── */
@media (max-width: 900px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .site-main-wrap.has-sidebar { grid-template-columns: 1fr; }
    .primary-nav, .header-actions .btn-list { display: none; }
    .nav-toggle { display: block; }
    .primary-nav.is-open {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--pd-white);
        border-top: 1px solid var(--pd-border);
        box-shadow: 0 8px 24px rgba(0,0,0,0.1);
        padding: 12px;
        z-index: 200;
    }
    .primary-nav.is-open ul { flex-direction: column; gap: 2px; }
}
@media (max-width: 600px) {
    .footer-grid { grid-template-columns: 1fr; }
    .pd-cat-grid  { grid-template-columns: repeat(2, 1fr); }
    .hero-title   { font-size: 26px; }
    .pd-stats-inner { grid-template-columns: repeat(2, 1fr); }
    .page-content { padding: 20px; }
    .pd-listing-body { padding: 20px; }
    .pd-listing-header { padding: 24px; }
}

/* ── Hero Near Me Button ──────────────────── */
.hero-nearme-row {
    margin-bottom: 20px;
}
.pd-hero-nearme-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--pd-accent);
    color: #1a1a1a;
    font-weight: 800;
    font-size: 16px;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(245,158,11,0.4);
    transition: all 0.18s;
    animation: pd-nearme-pulse 2.5s ease-in-out infinite;
}
.pd-hero-nearme-btn:hover {
    background: #e08e00;
    color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(245,158,11,0.5);
    animation: none;
}
@keyframes pd-nearme-pulse {
    0%,100% { box-shadow: 0 4px 20px rgba(245,158,11,0.4); }
    50%      { box-shadow: 0 4px 32px rgba(245,158,11,0.7); }
}

/* ── Hero Near Me Button ──────────────────── */
.hero-nearme-row { margin-bottom:20px; }
.pd-hero-nearme-btn {
    display:inline-flex; align-items:center; gap:8px;
    background:var(--pd-accent); color:#1a1a1a;
    font-weight:800; font-size:16px;
    padding:14px 32px; border-radius:50px;
    text-decoration:none;
    box-shadow:0 4px 20px rgba(245,158,11,.4);
    transition:all .18s;
    animation:pd-nearme-pulse 2.5s ease-in-out infinite;
}
.pd-hero-nearme-btn:hover { background:#e08e00; color:#1a1a1a; transform:translateY(-2px); animation:none; }
@keyframes pd-nearme-pulse {
    0%,100%{box-shadow:0 4px 20px rgba(245,158,11,.4);}
    50%{box-shadow:0 4px 32px rgba(245,158,11,.7);}
}

/* ── Top listing card highlight ──────────── */
.pd-result-card--top {
    border-color:var(--pd-accent) !important;
    border-width:2px !important;
    background:linear-gradient(135deg,#fffdf0,#fff) !important;
}

/* ═══════════════════════════════════════════════════════
   HEADER — sticky, wireframe layout
   Logo | Select Location | Search Box | Enter | Nav links
   ═══════════════════════════════════════════════════════ */

.pd-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--pd-white);
    border-bottom: 2px solid var(--pd-primary);
    box-shadow: 0 2px 16px rgba(0,0,0,.08);
    transition: box-shadow .2s;
    width: 100%;
}
.pd-header--scrolled {
    box-shadow: 0 4px 24px rgba(0,0,0,.13);
}

.pd-header__inner {
    display: flex;
    align-items: center;
    gap: 0;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
    height: 64px;
}

/* ── Logo ────────────────────────────────── */
.pd-header__logo {
    flex-shrink: 0;
    text-decoration: none;
    margin-right: 20px;
    display: flex;
    align-items: center;
}
.pd-header__logo img {
    height: 44px;
    width: auto;
}
.pd-header__logo-text {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 400;
    color: var(--pd-secondary);
    white-space: nowrap;
    letter-spacing: -.3px;
}
.pd-header__logo-text strong {
    color: var(--pd-primary);
    font-weight: 800;
}

/* ── Search bar ──────────────────────────── */
.pd-header__search {
    flex: 1;
    display: flex;
    align-items: center;
    background: var(--pd-white);
    border: 1.5px solid var(--pd-border);
    border-radius: 50px;
    height: 44px;
    overflow: visible;
    position: relative;
    min-width: 0;
    max-width: 640px;
    transition: border-color .15s, box-shadow .15s;
}
.pd-header__search:focus-within {
    border-color: var(--pd-primary);
    box-shadow: 0 0 0 3px rgba(232,75,22,.1);
}

/* Location box */
.pd-header__search-loc {
    display: flex;
    align-items: center;
    padding: 0 12px 0 8px;
    position: relative;
    flex: 0 0 auto;
    width: 190px;
    min-width: 0;
    height: 100%;
}

/* GPS auto-detect button */
.pd-hloc-gps {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1.5px solid var(--pd-border);
    background: var(--pd-bg);
    color: var(--pd-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .15s;
    margin-right: 6px;
}
.pd-hloc-gps:hover {
    background: var(--pd-primary);
    color: #fff;
    border-color: var(--pd-primary);
}
.pd-hloc-gps--pulsing {
    animation: pd-gps-pulse .9s ease-in-out infinite;
    background: var(--pd-primary);
    color: #fff;
    border-color: var(--pd-primary);
}
@keyframes pd-gps-pulse {
    0%,100% { opacity:1; transform:scale(1); }
    50%      { opacity:.7; transform:scale(.9); }
}

/* Inputs */
.pd-header__input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-size: 14px;
    color: var(--pd-text);
    font-family: inherit;
    padding: 0;
    width: 100%;
    min-width: 0;
}
.pd-header__input::placeholder { color: #aaa; font-size: 13px; }

/* Separator between location and search boxes */
.pd-header__search-sep {
    width: 1px;
    background: var(--pd-border);
    height: 26px;
    flex-shrink: 0;
}

/* Keyword box */
.pd-header__search-kw {
    display: flex;
    align-items: center;
    padding: 0 10px;
    flex: 1;
    min-width: 0;
    height: 100%;
    gap: 7px;
}
.pd-header__search-icon {
    flex-shrink: 0;
    color: var(--pd-muted);
}

/* Enter / search button */
.pd-header__search-btn {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 16px;
    height: 44px;
    background: var(--pd-primary);
    color: #fff;
    border: none;
    border-radius: 0 50px 50px 0;
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    font-family: inherit;
    transition: background .15s, transform .1s;
    white-space: nowrap;
    margin: -1px -1px -1px 0;
}
.pd-header__search-btn:hover  { background: var(--pd-primary-dk); }
.pd-header__search-btn:active { transform: scale(.97); }

/* Shake animation when validation fails */
.pd-header__search--shake {
    animation: pd-hshake .4s ease;
}
@keyframes pd-hshake {
    0%,100%{transform:translateX(0)}
    20%,60%{transform:translateX(-4px)}
    40%,80%{transform:translateX(4px)}
}

/* Autocomplete dropdown */
.pd-header__dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 260px;
    max-width: 340px;
    background: var(--pd-white);
    border: 1px solid var(--pd-border);
    border-radius: 14px;
    box-shadow: 0 8px 32px rgba(0,0,0,.12);
    z-index: 9999;
    list-style: none;
    margin: 0;
    padding: 6px 0;
    max-height: 260px;
    overflow-y: auto;
}
.pd-header__dropdown li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 16px;
    font-size: 13px;
    color: var(--pd-text);
    cursor: pointer;
    transition: background .1s;
}
.pd-header__dropdown li:hover { background: #f0f4ff; }
.pd-header__dropdown li svg { flex-shrink: 0; color: var(--pd-primary); }

/* Geo message bar */
.pd-header__geo-msg {
    text-align: center;
    font-size: 12px;
    padding: 5px 16px;
    font-weight: 500;
}
.pd-header__geo-msg--error   { background: #f8d7da; color: #58151c; }
.pd-header__geo-msg--loading { background: #fff3cd; color: #664d03; }
.pd-header__geo-msg--success { background: #d1e7dd; color: #0a3622; }

/* ── Nav Links ───────────────────────────── */
.pd-header__nav {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-left: 16px;
    flex-shrink: 0;
}
.pd-header__nav-link {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 7px 12px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--pd-secondary);
    text-decoration: none;
    border-radius: 8px;
    white-space: nowrap;
    transition: all .15s;
}
.pd-header__nav-link:hover,
.pd-header__nav-link[aria-current="page"] {
    background: rgba(232,75,22,.08);
    color: var(--pd-primary);
}
/* "List My Firm" stands out */
.pd-header__nav-link--listfirm,
a.pd-header__nav-link[href*="submit-listing"] {
    background: var(--pd-primary);
    color: #fff !important;
    border-radius: 8px;
    padding: 7px 14px;
}
a.pd-header__nav-link[href*="submit-listing"]:hover {
    background: var(--pd-primary-dk);
    color: #fff !important;
}
.pd-header__nav-link--login {
    border: 1.5px solid var(--pd-border);
}
.pd-header__nav-link--account {
    background: var(--pd-bg);
    border: 1.5px solid var(--pd-border);
}

/* ── Mobile toggle ───────────────────────── */
.pd-header__mobile-toggle {
    display: none;
    flex-shrink: 0;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    margin-left: 10px;
}
.pd-burger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 22px;
}
.pd-burger span {
    display: block;
    height: 2px;
    background: var(--pd-secondary);
    border-radius: 2px;
    transition: all .25s;
}
/* Animated X */
.pd-burger--open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.pd-burger--open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.pd-burger--open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile search overlay ───────────────── */
.pd-mobile-search {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--pd-white);
    border-bottom: 2px solid var(--pd-primary);
    z-index: 999;
    padding: 12px 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,.1);
}
.pd-mobile-search__inner {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--pd-bg);
    border: 1.5px solid var(--pd-border);
    border-radius: 50px;
    padding: 0 6px 0 10px;
    height: 44px;
    position: relative;
}
.pd-mob-gps {
    flex-shrink: 0;
    width: 30px; height: 30px;
    border-radius: 50%;
    border: 1.5px solid var(--pd-border);
    background: var(--pd-white);
    color: var(--pd-secondary);
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
}
.pd-mob-gps:hover { background: var(--pd-primary); color: #fff; border-color: var(--pd-primary); }
.pd-mobile-search__inner input[type="text"] {
    flex: 1; border: none; outline: none; background: transparent;
    font-size: 14px; font-family: inherit; color: var(--pd-text); min-width: 0;
}
.pd-mobile-search__inner input::placeholder { color: #aaa; font-size: 13px; }
.pd-mob-search-btn {
    flex-shrink: 0; width: 36px; height: 36px;
    border-radius: 50%; border: none;
    background: var(--pd-primary); color: #fff;
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    transition: background .15s;
}
.pd-mob-search-btn:hover { background: var(--pd-primary-dk); }

/* ═══════════════════════════════════════════
   RESPONSIVE — TABLET (≤1100px)
   ═══════════════════════════════════════════ */
@media (max-width: 1100px) {
    .pd-header__nav-link { padding: 7px 9px; font-size: 13px; }
    .pd-header__search { max-width: 500px; }
    .pd-header__search-loc { width: 160px; }
}

/* ═══════════════════════════════════════════
   RESPONSIVE — TABLET (≤900px)
   ═══════════════════════════════════════════ */
@media (max-width: 900px) {
    .pd-header__inner { height: 56px; }
    .pd-mobile-search  { top: 56px; }

    /* Hide desktop search + nav */
    .pd-header__search { display: none; }
    .pd-header__nav    { display: none; }

    /* Show mobile toggle */
    .pd-header__mobile-toggle { display: flex; }

    /* Mobile nav drawer */
    .pd-header__nav.is-open {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        position: fixed;
        top: 56px;
        left: 0; right: 0;
        background: var(--pd-white);
        border-top: 1px solid var(--pd-border);
        border-bottom: 2px solid var(--pd-primary);
        padding: 10px 16px 16px;
        z-index: 998;
        box-shadow: 0 8px 24px rgba(0,0,0,.1);
        gap: 4px;
    }
    .pd-header__nav.is-open .pd-header__nav-link {
        padding: 11px 14px;
        font-size: 15px;
        border-radius: 8px;
        border-bottom: 1px solid var(--pd-border);
    }
    .pd-header__nav.is-open .pd-header__nav-link:last-child { border-bottom: none; }
    .pd-header__nav.is-open a[href*="submit-listing"] { text-align: center; justify-content: center; margin-top: 6px; }

    /* Mobile search always shown below header */
    .pd-mobile-search { display: flex !important; position: relative; top: 0; border-top: 1px solid var(--pd-border); box-shadow: none; }
}

/* ═══════════════════════════════════════════
   RESPONSIVE — MOBILE (≤480px)
   ═══════════════════════════════════════════ */
@media (max-width: 480px) {
    .pd-header__inner { padding: 0 12px; }
    .pd-header__logo-text { font-size: 17px; }
    .pd-mobile-search__inner input[type="text"]:first-of-type { display: none; }
    /* On very small screens, only show keyword search in mobile bar */
}

/* ── Body push-down to account for header height ── */
body { padding-top: 0; }

/* ═══════════════════════════════════════════════════════════
   AUTH PAGES — Login & Registration
═══════════════════════════════════════════════════════════ */
.pd-auth-wrap {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 80vh;
    padding: 48px 16px;
    background: var(--pd-bg, #f4f6f9);
}
.pd-auth-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 32px rgba(0,0,0,.10);
    padding: 40px;
    width: 100%;
    max-width: 480px;
}
.pd-auth-card--wide { max-width: 680px; }

.pd-auth-logo { text-align: center; margin-bottom: 24px; }
.pd-auth-logo-text { font-size: 22px; font-weight: 800; color: #1A3C5E; letter-spacing: -0.5px; }
.pd-auth-logo-text strong { color: #E84B16; }

.pd-auth-title { font-size: 24px; font-weight: 800; text-align: center; margin: 0 0 4px; color: #1A3C5E; }
.pd-auth-subtitle { text-align: center; color: #666; margin: 0 0 24px; font-size: 15px; }

.pd-auth-notice {
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 16px;
    font-size: 14px;
    display: none;
}
.pd-auth-notice--success { background: #d1fae5; color: #065f46; border: 1px solid #6ee7b7; display: block; }
.pd-auth-notice--error   { background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; display: block; }

.pd-auth-form { display: flex; flex-direction: column; gap: 16px; }
.pd-form-field { display: flex; flex-direction: column; gap: 6px; }
.pd-form-field label { font-size: 13px; font-weight: 600; color: #374151; }
.pd-form-field input {
    padding: 10px 14px;
    border: 1.5px solid #d1d5db;
    border-radius: 8px;
    font-size: 15px;
    outline: none;
    transition: border-color .2s;
    width: 100%;
    box-sizing: border-box;
}
.pd-form-field input:focus { border-color: #1A3C5E; }

.pd-form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 560px) { .pd-form-row-2 { grid-template-columns: 1fr; } }

.pd-password-wrap { position: relative; }
.pd-password-wrap input { padding-right: 44px; }
.pd-toggle-pass {
    position: absolute; right: 10px; top: 50%; transform: translateY(-50%);
    background: none; border: none; cursor: pointer; font-size: 16px; padding: 4px;
}

.pd-check-label { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: #555; cursor: pointer; }
.pd-check-label input { margin-top: 2px; flex-shrink: 0; }

.pd-auth-divider { display: flex; align-items: center; gap: 12px; margin: 20px 0; }
.pd-auth-divider::before, .pd-auth-divider::after { content: ''; flex: 1; height: 1px; background: #e5e7eb; }
.pd-auth-divider span { font-size: 13px; color: #9ca3af; }

.pd-auth-switch { text-align: center; font-size: 14px; color: #555; margin: 0; }
.pd-auth-switch a { color: #E84B16; font-weight: 600; text-decoration: none; }
.pd-auth-forgot { float: right; font-size: 12px; color: #E84B16; text-decoration: none; }

/* Registration tabs */
.pd-reg-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 24px;
}
.pd-reg-tab {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    background: #f9fafb;
    cursor: pointer;
    text-align: left;
    transition: all .2s;
}
.pd-reg-tab:hover { border-color: #1A3C5E; }
.pd-reg-tab--active { border-color: #1A3C5E; background: #EFF6FF; }
.pd-reg-tab-icon { font-size: 24px; flex-shrink: 0; }
.pd-reg-tab strong { display: block; font-size: 14px; color: #1A3C5E; }
.pd-reg-tab small { font-size: 12px; color: #6b7280; }

.pd-reg-info-bar {
    background: #EFF6FF;
    border: 1px solid #bfdbfe;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 14px;
    margin-bottom: 20px;
    color: #1e40af;
}
.pd-reg-info-bar--vendor { background: #FFF7ED; border-color: #fed7aa; color: #92400e; }

.pd-reg-pkg-preview { background: #f9fafb; border-radius: 8px; padding: 14px; }
.pd-reg-pkg-preview-label { font-size: 13px; color: #555; margin: 0 0 10px; }
.pd-reg-pkg-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.pd-pkg-chip {
    font-size: 12px;
    padding: 4px 12px;
    border-radius: 20px;
    border: 1.5px solid #ccc;
    background: #fff;
    color: #374151;
    font-weight: 600;
}

/* Packages page */
.pd-packages-wrap { max-width: 1080px; margin: 0 auto; padding: 32px 16px; }
.pd-packages-header { text-align: center; margin-bottom: 32px; }
.pd-packages-header h2 { font-size: 30px; font-weight: 800; color: #1A3C5E; margin: 0 0 10px; }
.pd-packages-intro { font-size: 16px; color: #555; }
.pd-packages-note { text-align: center; font-size: 13px; color: #888; margin-top: 24px; }

.pd-pkg-current-bar {
    background: #f0f9ff;
    border-radius: 10px;
    padding: 14px 20px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-size: 14px;
    flex-wrap: wrap;
}

/* Vendor package grid */
.pd-vendor-pkg-grid {
    display: grid;
    gap: 24px;
    margin-bottom: 32px;
}
.pd-vendor-pkg-grid--1col { grid-template-columns: minmax(0, 400px); justify-content: center; }
.pd-vendor-pkg-grid--2col { grid-template-columns: repeat(2, 1fr); }
.pd-vendor-pkg-grid--3col { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) {
    .pd-vendor-pkg-grid--3col { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
    .pd-vendor-pkg-grid--2col,
    .pd-vendor-pkg-grid--3col { grid-template-columns: 1fr; }
}

.pd-vendor-pkg {
    border-radius: 14px;
    overflow: hidden;
    border: 2px solid #e5e7eb;
    position: relative;
    background: #fff;
    transition: transform .2s, box-shadow .2s;
}
.pd-vendor-pkg:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,0,0,.10); }
.pd-vendor-pkg--popular { border-color: var(--pkg-color); }
.pd-vendor-pkg--current { border-color: var(--pkg-color); box-shadow: 0 0 0 3px rgba(0,0,0,.05); }

.pd-pkg-popular-badge {
    position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
    background: var(--pkg-color); color: #fff;
    font-size: 11px; font-weight: 700; padding: 4px 16px;
    border-radius: 0 0 8px 8px; white-space: nowrap;
}
.pd-pkg-current-badge {
    position: absolute; top: 10px; right: 10px;
    color: #fff; font-size: 11px; font-weight: 700;
    padding: 3px 10px; border-radius: 20px;
}

.pd-vendor-pkg-header {
    padding: 28px 20px 20px;
    color: #fff;
    text-align: center;
}
.pd-vendor-pkg-header h3 { margin: 0 0 10px; font-size: 20px; font-weight: 800; }
.pd-vendor-pkg-price { margin-bottom: 8px; }
.pd-price-amount { font-size: 32px; font-weight: 900; }
.pd-price-period { font-size: 14px; opacity: .85; margin-left: 4px; }
.pd-vendor-pkg-limit { font-size: 13px; opacity: .8; }

.pd-vendor-pkg-body { padding: 20px; }
.pd-vendor-pkg-features { list-style: none; margin: 0 0 20px; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.pd-vendor-feat { font-size: 14px; display: flex; align-items: center; gap: 8px; }
.pd-vendor-feat--no { color: #9ca3af; }
.pd-feat-check { color: #10b981; font-weight: 700; flex-shrink: 0; }
.pd-feat-cross { color: #d1d5db; flex-shrink: 0; }

.pd-vendor-pkg-action { text-align: center; }
.pd-pkg-active-label { display: block; font-size: 14px; color: #10b981; font-weight: 700; margin-bottom: 8px; }

.pd-btn--sm { padding: 6px 14px; font-size: 13px; }

/* ═══════════════════════════════════════════════════════════════
   HOMEPAGE – Custom Sections (integrated from homepage design)
   ═══════════════════════════════════════════════════════════════ */

/* Full-width layout overrides */
html {
    overflow-x: hidden; /* safe on html — does NOT break sticky */
}
body {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    /* overflow-x: hidden intentionally removed — breaks position:sticky */
}

/* Remove any WordPress default body padding/margin that causes white space */
body.custom-background {
    background-color: #f8f7f5 !important;
}

/* Make the header truly full-width while preserving sticky */
.pd-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    max-width: 100%;
}
.pd-header__inner {
    width: 100%;
    max-width: 100%;
    padding-left: 24px;
    padding-right: 24px;
}

/* Footer full-width */
.site-footer {
    width: 100%;
    max-width: 100%;
}
.footer-grid {
    max-width: 100%;
    padding: 0 40px;
}

/* Homepage wrapper */
.homepage {
    width: 100%;
    /* overflow-x: hidden removed — would break sticky header */
}

/* CSS variables for homepage palette */
:root {
    --orange: #E84B16;
    --navy: #1A3C5E;
    --navy-light: #234b78;
    --bg: #f8f7f5;
    --white: #fff;
    --text: #1a1a2e;
    --muted: #6b7280;
    --radius: 12px;
    --radius-lg: 20px;
}

/* ── HERO ─────────────────────────── */
.hero {
    background: var(--navy);
    padding: 64px 24px 56px;
    text-align: center;
    position: relative;
    overflow: hidden;
    width: 100%;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 60% at 50% 110%, rgba(232,75,22,.25), transparent);
    pointer-events: none;
}
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 99px;
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,.8);
    letter-spacing: .5px;
    text-transform: uppercase;
    margin-bottom: 24px;
}
.hero-eyebrow span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--orange);
    display: inline-block;
    animation: hp-pulse 2s infinite;
}
@keyframes hp-pulse { 0%,100%{opacity:1} 50%{opacity:.4} }

.hero h1 {
    font-size: clamp(28px, 5vw, 52px);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 16px;
    max-width: 700px;
    margin-inline: auto;
}
.hero h1 em {
    color: var(--orange);
    font-style: normal;
}
.hero-sub {
    font-size: 16px;
    color: rgba(255,255,255,.7);
    max-width: 520px;
    margin: 0 auto 36px;
    line-height: 1.7;
}
.hero-cta-row {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}
.hero .btn-primary {
    background: var(--orange);
    color: #fff;
    border: none;
    padding: 14px 28px;
    border-radius: 99px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    letter-spacing: .2px;
    transition: transform .15s, background .15s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.hero .btn-primary:hover {
    background: #c73e10;
    transform: translateY(-1px);
    color: #fff;
}
.btn-outline {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255,255,255,.35);
    padding: 13px 28px;
    border-radius: 99px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: border-color .15s, background .15s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-outline:hover {
    border-color: #fff;
    background: rgba(255,255,255,.08);
    color: #fff;
}
.hero-image-strip {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
    padding: 0 16px;
}
.hero-img-card {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--radius);
    padding: 14px 20px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,.85);
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: background .15s, border-color .15s;
}
.hero-img-card:hover {
    background: rgba(255,255,255,.15);
    border-color: rgba(255,255,255,.3);
    color: #fff;
}
.hero-img-card i {
    font-size: 20px;
    color: var(--orange);
}

/* ── STATS BAR ────────────────────── */
.stats-bar {
    background: var(--orange);
    padding: 24px 32px;
    width: 100%;
}
.stats-inner {
    display: flex;
    gap: 0;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 100%;
    margin: 0 auto;
}
.stat-item {
    flex: 1;
    min-width: 150px;
    text-align: center;
    padding: 12px 24px;
    position: relative;
}
.stat-item + .stat-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(255,255,255,.25);
}
.stat-num {
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    display: block;
}
.stat-label {
    font-size: 12px;
    color: rgba(255,255,255,.8);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .6px;
    margin-top: 4px;
    display: block;
}

/* ── SECTION COMMON ──────────────── */
.section {
    padding: 64px 24px;
    width: 100%;
}
.section-inner {
    max-width: 1200px;
    margin: 0 auto;
}
.section-tag {
    display: inline-block;
    background: rgba(232,75,22,.1);
    color: var(--orange);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .8px;
    padding: 5px 14px;
    border-radius: 99px;
    margin-bottom: 12px;
}
.section-title {
    font-size: clamp(22px, 3.5vw, 32px);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.25;
    margin-bottom: 8px;
}
.section-sub {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.7;
    max-width: 560px;
}

/* ── VISION PILLARS ──────────────── */
.vision { background: var(--white); }
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin-top: 40px;
}
.pillar {
    border: 1.5px solid #e8eaed;
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    background: var(--white);
    transition: transform .2s, border-color .2s, box-shadow .2s;
    position: relative;
    overflow: hidden;
}
.pillar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--orange);
    transform: scaleX(0);
    transition: transform .25s;
    transform-origin: left;
}
.pillar:hover {
    transform: translateY(-4px);
    border-color: var(--orange);
    box-shadow: 0 12px 32px rgba(232,75,22,.1);
}
.pillar:hover::after { transform: scaleX(1); }
.pillar-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius);
    background: rgba(232,75,22,.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}
.pillar-icon i { font-size: 24px; color: var(--orange); }
.pillar h3 { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.pillar p { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ── PRINT MATERIALS ─────────────── */
.materials { background: var(--bg); }
.materials-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}
.mat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    gap: 12px;
}
.mat-card {
    background: var(--white);
    border: 1.5px solid #e8eaed;
    border-radius: var(--radius);
    padding: 16px 12px;
    text-align: center;
    cursor: pointer;
    transition: border-color .2s, transform .15s, box-shadow .15s;
}
.mat-card:hover {
    border-color: var(--orange);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232,75,22,.08);
}
.mat-card i {
    font-size: 26px;
    color: var(--navy);
    margin-bottom: 8px;
    display: block;
}
.mat-card:hover i { color: var(--orange); }
.mat-card span { font-size: 12px; font-weight: 600; color: var(--text); display: block; line-height: 1.3; }

/* ── KEYWORDS STRIP ──────────────── */
.keywords { background: var(--navy); }
.kw-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 36px;
}
@media (max-width: 760px) { .kw-grid { grid-template-columns: repeat(2, 1fr); } }
.kw-col h4 {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .8px;
    padding: 6px 0 10px;
    border-bottom: 2px solid;
    margin-bottom: 12px;
}
.kw-col.orange h4 { color: var(--orange); border-color: var(--orange); }
.kw-col.teal h4   { color: #5DD6B5; border-color: #5DD6B5; }
.kw-col.blue h4   { color: #5BB8FF; border-color: #5BB8FF; }
.kw-col.green h4  { color: #82DD55; border-color: #82DD55; }
.kw-col.pink h4   { color: #FF8EC4; border-color: #FF8EC4; }
.kw-col ul { list-style: none; padding: 0; margin: 0; }
.kw-col ul li {
    font-size: 13px;
    color: rgba(255,255,255,.75);
    padding: 0;
    border-bottom: 1px solid rgba(255,255,255,.06);
    transition: color .15s;
}
.kw-col ul li a {
    display: block;
    padding: 5px 0;
    color: inherit;
    text-decoration: none;
    transition: color .15s;
}
.kw-col ul li:hover { color: #fff; }
.kw-col.orange ul li:hover, .kw-col.orange ul li a:hover { color: var(--orange); }
.kw-col.teal ul li:hover,   .kw-col.teal ul li a:hover   { color: #5DD6B5; }
.kw-col.blue ul li:hover,   .kw-col.blue ul li a:hover   { color: #5BB8FF; }
.kw-col.green ul li:hover,  .kw-col.green ul li a:hover  { color: #82DD55; }
.kw-col.pink ul li:hover,   .kw-col.pink ul li a:hover   { color: #FF8EC4; }

/* ── HOW IT WORKS ────────────────── */
.how { background: var(--white); }
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0;
    margin-top: 40px;
    position: relative;
}
.steps::before {
    content: '';
    position: absolute;
    top: 32px;
    left: 10%;
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, var(--orange), rgba(232,75,22,.1));
    z-index: 0;
}
@media (max-width: 640px) { .steps::before { display: none; } }
.step { text-align: center; padding: 0 20px; position: relative; z-index: 1; }
.step-num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--navy);
    color: #fff;
    font-size: 20px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border: 3px solid var(--bg);
    box-shadow: 0 0 0 3px var(--orange);
}
.step h4 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.step p   { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ── CTA BAND ─────────────────────── */
.cta-band {
    background: var(--orange);
    padding: 56px 24px;
    text-align: center;
    width: 100%;
}
.cta-band h2 { font-size: clamp(22px, 3.5vw, 34px); font-weight: 800; color: #fff; margin-bottom: 12px; }
.cta-band p  { font-size: 15px; color: rgba(255,255,255,.85); margin-bottom: 28px; }
.btn-white {
    background: #fff;
    color: var(--orange);
    border: none;
    padding: 14px 32px;
    border-radius: 99px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: transform .15s;
    text-decoration: none;
    display: inline-block;
}
.btn-white:hover { transform: translateY(-2px); color: var(--orange); }

/* ── Responsive tweaks ─────────────── */
@media (max-width: 640px) {
    .stat-item { min-width: 48%; padding: 10px 12px; }
    .stat-num  { font-size: 24px; }
    .hero-img-card { font-size: 12px; padding: 10px 14px; }
    .kw-grid { grid-template-columns: 1fr 1fr; }
}


/* ═══════════════════════════════════════════════════════════════
   DASHBOARD — Premium redesign (vendor & user)
   ═══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=DM+Sans:wght@400;500;600&display=swap');

/* ── Layout ─────────────────────────────────── */
.pd-dash-wrap {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 0;
    min-height: calc(100vh - 64px);
    background: #f0f2f7;
    font-family: 'DM Sans', sans-serif;
}

/* ── Sidebar ─────────────────────────────────── */
.pd-dash-sidebar-new {
    background: linear-gradient(175deg, #0f1e3a 0%, #1a3c5e 60%, #1e4878 100%);
    padding: 28px 18px 28px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-height: 100%;
    position: sticky;
    top: 64px;
    height: calc(100vh - 64px);
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,.1) transparent;
    border-right: 1px solid rgba(255,255,255,.04);
}
.pd-dash-sidebar-new::-webkit-scrollbar { width: 4px; }
.pd-dash-sidebar-new::-webkit-scrollbar-thumb { background: rgba(255,255,255,.15); border-radius: 2px; }

/* User card */
.pd-dash-user-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-bottom: 22px;
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.pd-dash-avatar-wrap {
    display: flex;
    align-items: center;
    gap: 14px;
}
.pd-dash-avatar-img {
    width: 54px !important;
    height: 54px !important;
    border-radius: 14px !important;
    border: 2.5px solid var(--orange) !important;
    object-fit: cover;
    box-shadow: 0 4px 16px rgba(232,75,22,.35) !important;
}
.pd-dash-user-info strong {
    display: block;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
    font-family: 'Plus Jakarta Sans', sans-serif;
}
.pd-dash-role-pill {
    display: inline-block;
    background: rgba(232,75,22,.25);
    color: #ff8c66;
    font-size: 10.5px;
    font-weight: 700;
    padding: 2px 10px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: .7px;
    margin-top: 4px;
}
.pd-dash-pkg-pill {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 12px;
    padding: 12px 14px;
    display: flex;
    flex-direction: column;
    gap: 3px;
    backdrop-filter: blur(4px);
    transition: border-color .2s;
}
.pd-dash-pkg-pill:hover { border-color: rgba(232,75,22,.4); }
.pd-dash-pkg-pill i { font-size: 17px; color: var(--orange); }
.pd-dash-pkg-pill > span { color: #fff; font-size: 13px; font-weight: 700; font-family: 'Plus Jakarta Sans', sans-serif; }
.pd-dash-pkg-pill small { color: rgba(255,255,255,.45); font-size: 11px; }
.pd-dash-pkg-pill a { color: var(--orange); font-size: 12px; font-weight: 600; text-decoration: none; margin-top: 2px; display: inline-flex; align-items: center; gap: 3px; }
.pd-dash-pkg-pill a:hover { color: #ff8c66; }

/* ── Sidebar nav label ───────────────────────── */
.pd-dash-nav-section-label {
    font-size: 10px;
    font-weight: 700;
    color: rgba(255,255,255,.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 12px 4px;
    margin-top: 6px;
}

/* Nav links */
.pd-dash-nav-new {
    display: flex;
    flex-direction: column;
    gap: 3px;
    flex: 1;
    padding-top: 4px;
}
.pd-dash-nav-link {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 11px 14px;
    border-radius: 11px;
    color: rgba(255,255,255,.6);
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 600;
    transition: background .18s, color .18s, transform .12s;
    position: relative;
    letter-spacing: .1px;
}
.pd-dash-nav-link i { font-size: 18px; flex-shrink: 0; transition: transform .15s; }
.pd-dash-nav-link:hover {
    background: rgba(255,255,255,.07);
    color: #fff;
}
.pd-dash-nav-link:hover i { transform: translateX(2px); }
.pd-dash-nav-link.active {
    background: linear-gradient(135deg, var(--orange) 0%, #c73e10 100%);
    color: #fff;
    box-shadow: 0 4px 14px rgba(232,75,22,.35);
}
.pd-dash-nav-link.active i { transform: none; }
.pd-dash-nav-link.locked { opacity: .4; pointer-events: none; }
.pd-dash-lock { font-size: 12px; margin-left: auto; opacity: .5; }
.pd-dash-badge {
    margin-left: auto;
    background: var(--orange);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    min-width: 19px;
    height: 19px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
    box-shadow: 0 2px 8px rgba(232,75,22,.4);
}
.pd-dash-nav-link.active .pd-dash-badge {
    background: rgba(255,255,255,.3);
    box-shadow: none;
}

/* ── Main content ────────────────────────────── */
.pd-dash-main-new {
    padding: 36px 40px;
    min-width: 0;
    background: #f0f2f7;
}

/* Page header */
.pd-dash-page-header {
    margin-bottom: 30px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}
.pd-dash-page-header > div,
.pd-dash-page-header > :first-child:not(a):not(button) {
    flex: 1;
}
.pd-dash-page-header h2 {
    font-size: 26px;
    font-weight: 800;
    color: #0f1e3a;
    margin: 0 0 5px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    font-family: 'Plus Jakarta Sans', sans-serif;
    letter-spacing: -.3px;
}
.pd-dash-page-header p {
    color: #8a92a6;
    font-size: 14px;
    margin: 0;
}

/* ── Stat cards ──────────────────────────────── */
.pd-dash-stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 16px;
    margin-bottom: 30px;
}
.pd-dash-stat-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,.06);
    border-radius: 16px;
    padding: 22px 18px 18px;
    text-align: left;
    transition: transform .18s, box-shadow .18s;
    position: relative;
    overflow: hidden;
}
.pd-dash-stat-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--orange), #ff8c66);
    border-radius: 16px 16px 0 0;
}
.pd-dash-stat-card:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0,0,0,.08); }
.pd-dash-stat-card i {
    font-size: 22px;
    color: var(--orange);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(232,75,22,.08);
    border-radius: 12px;
    margin-bottom: 14px;
}
.pd-dash-stat-val {
    font-size: 28px;
    font-weight: 800;
    color: #0f1e3a;
    display: block;
    line-height: 1;
    font-family: 'Plus Jakarta Sans', sans-serif;
}
.pd-dash-stat-lbl {
    font-size: 12px;
    color: #8a92a6;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-top: 5px;
    display: block;
}

/* ── Notice banners ──────────────────────────── */
.pd-dash-notice {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 20px;
    border-radius: 14px;
    font-size: 14px;
    margin-bottom: 22px;
    border: 1px solid;
}
.pd-dash-notice i { font-size: 20px; flex-shrink: 0; margin-top: 1px; }
.pd-dash-notice--info    { background: #eff6ff; color: #1e40af; border-color: #bfdbfe; }
.pd-dash-notice--warn    { background: #fffbeb; color: #92400e; border-color: #fde68a; }
.pd-dash-notice--success { background: #f0fdf4; color: #166534; border-color: #bbf7d0; }
.pd-dash-notice--error   { background: #fef2f2; color: #991b1b; border-color: #fecaca; }
.pd-dash-notice-btn {
    display: inline-flex;
    align-items: center;
    margin-left: 14px;
    background: var(--orange);
    color: #fff;
    padding: 5px 16px;
    border-radius: 99px;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: background .15s;
}
.pd-dash-notice-btn:hover { background: #c73e10; color: #fff; }

/* ── Section ─────────────────────────────────── */
.pd-dash-section { margin-bottom: 30px; }
.pd-dash-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}
.pd-dash-section h3,
.pd-dash-section-header h3 {
    font-size: 16px;
    font-weight: 700;
    color: #0f1e3a;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}
.pd-dash-link {
    font-size: 13px;
    color: var(--orange);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: gap .15s;
}
.pd-dash-link:hover { gap: 7px; }

/* ── Card ─────────────────────────────────────── */
.pd-dash-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,.06);
    border-radius: 18px;
    padding: 28px 30px;
    margin-bottom: 20px;
    box-shadow: 0 1px 4px rgba(0,0,0,.04);
}
.pd-dash-card-title {
    font-size: 15px;
    font-weight: 700;
    color: #0f1e3a;
    margin: 0 0 22px;
    display: flex;
    align-items: center;
    gap: 9px;
    padding-bottom: 14px;
    border-bottom: 1.5px solid #f0f2f5;
    font-family: 'Plus Jakarta Sans', sans-serif;
}
.pd-dash-card-title i { font-size: 18px; color: var(--orange); }
.pd-dash-card--submit { text-align: center; background: transparent; border: none; padding: 0; box-shadow: none; }

/* ── Form grid ───────────────────────────────── */
.pd-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}
.pd-form-group {
    display: flex;
    flex-direction: column;
    gap: 7px;
}
.pd-form-group--full { grid-column: 1 / -1; }
.pd-form-group label {
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    display: flex;
    align-items: center;
    gap: 6px;
}
.pd-form-group label small { font-weight: 400; color: #8a92a6; }
.pd-form-group input[type="text"],
.pd-form-group input[type="email"],
.pd-form-group input[type="tel"],
.pd-form-group input[type="url"],
.pd-form-group input[type="password"],
.pd-form-group input[type="number"],
.pd-form-group input[type="file"],
.pd-form-group textarea,
.pd-form-group select {
    padding: 11px 16px;
    border: 1.5px solid #e4e7ef;
    border-radius: 10px;
    font-size: 14px;
    font-family: 'DM Sans', sans-serif;
    color: #1a2540;
    outline: none;
    transition: border-color .2s, box-shadow .2s, background .2s;
    background: #fafbff;
    width: 100%;
    box-sizing: border-box;
}
.pd-form-group input:focus,
.pd-form-group textarea:focus,
.pd-form-group select:focus {
    border-color: var(--orange);
    background: #fff;
    box-shadow: 0 0 0 3.5px rgba(232,75,22,.1);
}
.pd-form-group textarea { resize: vertical; min-height: 90px; }
.req { color: var(--orange); }

/* ── Buttons ──────────────────────────────────── */
.pd-dash-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 22px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: background .15s, transform .12s, box-shadow .15s, border-color .15s;
    font-family: 'DM Sans', sans-serif;
    letter-spacing: .1px;
}
.pd-dash-btn--primary {
    background: linear-gradient(135deg, var(--orange) 0%, #c73e10 100%);
    color: #fff;
    box-shadow: 0 4px 14px rgba(232,75,22,.3);
}
.pd-dash-btn--primary:hover {
    background: linear-gradient(135deg, #d94811 0%, #b33610 100%);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(232,75,22,.4);
}
.pd-dash-btn--outline {
    background: #fff;
    border: 1.5px solid #e4e7ef;
    color: #0f1e3a;
}
.pd-dash-btn--outline:hover {
    border-color: #0f1e3a;
    background: #fafbff;
    color: #0f1e3a;
}
.pd-dash-btn--sm   { padding: 8px 14px; font-size: 13px; border-radius: 8px; }
.pd-dash-btn--lg   { padding: 14px 38px; font-size: 15px; }
.pd-dash-btn--gps  { border: 1.5px solid var(--orange); color: var(--orange); background: rgba(232,75,22,.04); }
.pd-dash-btn--gps:hover { background: rgba(232,75,22,.08); }

/* ── GPS block ─────────────────────────────── */
.pd-gps-block {
    margin-top: 22px;
    padding: 22px;
    background: #fafbff;
    border: 1.5px solid #e4e7ef;
    border-radius: 14px;
}
.pd-gps-block-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
    font-size: 13px;
    font-weight: 700;
    color: #0f1e3a;
}
.pd-gps-options {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}
.pd-gps-search-wrap { display: flex; gap: 8px; flex: 1; min-width: 200px; }
.pd-gps-search-input {
    flex: 1;
    padding: 10px 14px;
    border: 1.5px solid #e4e7ef;
    border-radius: 10px;
    font-size: 14px;
    font-family: 'DM Sans', sans-serif;
    outline: none;
    transition: border-color .2s, box-shadow .2s;
    background: #fff;
}
.pd-gps-search-input:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(232,75,22,.1); }
.pd-gps-status-msg {
    font-size: 13px;
    padding: 9px 14px;
    border-radius: 10px;
    margin-bottom: 14px;
    background: #fffbeb;
    color: #92400e;
    border: 1px solid #fde68a;
}
.pd-gps-status-msg.success { background: #f0fdf4; color: #166534; border-color: #bbf7d0; }
.pd-gps-status-msg.error   { background: #fef2f2; color: #991b1b; border-color: #fecaca; }
.pd-gps-coords-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.pd-gps-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(22,163,74,.1);
    color: #166534;
    border: 1px solid #bbf7d0;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 12px;
    border-radius: 8px;
}
.pd-map-preview { margin-top: 16px; border-radius: 12px; overflow: hidden; box-shadow: 0 2px 12px rgba(0,0,0,.08); }

/* ── Package detail ───────────────────────── */
.pd-dash-pkg-detail {
    background: #fff;
    border: 2px solid var(--orange);
    border-radius: 18px;
    padding: 30px;
    box-shadow: 0 4px 24px rgba(232,75,22,.12);
}
.pd-dash-pkg-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 22px;
    padding-bottom: 18px;
    border-bottom: 1.5px solid #f0f2f5;
}
.pd-dash-pkg-header h3 { font-size: 18px; font-weight: 800; color: #0f1e3a; margin: 0 0 4px; font-family: 'Plus Jakarta Sans', sans-serif; }
.pd-dash-pkg-header p { margin: 0; font-size: 14px; }
.pd-dash-pkg-features { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.pd-dash-pkg-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #0f1e3a;
    padding: 8px 0;
    border-bottom: 1px solid #f0f2f5;
}
.pd-dash-pkg-features li:last-child { border-bottom: none; }

/* ── Tables ─────────────────────────────────── */
.pd-dash-table-wrap {
    overflow-x: auto;
    border-radius: 14px;
    border: 1.5px solid #e4e7ef;
    background: #fff;
    box-shadow: 0 1px 4px rgba(0,0,0,.04);
}
.pd-dash-table { width: 100%; border-collapse: collapse; background: #fff; }
.pd-dash-table th {
    background: #0f1e3a;
    color: rgba(255,255,255,.8);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .7px;
    padding: 13px 18px;
    text-align: left;
    font-family: 'Plus Jakarta Sans', sans-serif;
}
.pd-dash-table th:first-child { border-radius: 12px 0 0 0; }
.pd-dash-table th:last-child  { border-radius: 0 12px 0 0; }
.pd-dash-table td {
    padding: 14px 18px;
    font-size: 14px;
    border-bottom: 1px solid #f0f2f5;
    color: #0f1e3a;
}
.pd-dash-table tr:last-child td { border-bottom: none; }
.pd-dash-table tr:hover td { background: #fafbff; }
.pd-dash-table-actions { display: flex; gap: 8px; }

/* Status pills */
.pd-status-pill { display: inline-flex; align-items: center; gap: 5px; font-size: 11px; font-weight: 700; padding: 4px 12px; border-radius: 8px; }
.pd-status-pill--publish { background: #dcfce7; color: #166534; }
.pd-status-pill--pending { background: #fef9c3; color: #854d0e; }
.pd-status-pill--draft   { background: #f3f4f6; color: #6b7280; }

/* ── Listing cards grid ─────────────────────── */
.pd-dash-listing-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 18px; }
.pd-dash-listing-card {
    background: #fff;
    border: 1.5px solid #e4e7ef;
    border-radius: 16px;
    padding: 22px;
    transition: box-shadow .18s, transform .18s;
    box-shadow: 0 1px 4px rgba(0,0,0,.04);
}
.pd-dash-listing-card:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0,0,0,.08); }
.pd-dash-listing-card--publish { border-left: 4px solid #16a34a; }
.pd-dash-listing-card--pending { border-left: 4px solid #d97706; }
.pd-dash-listing-card--draft   { border-left: 4px solid #9ca3af; }
.pd-dash-listing-card-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 8px; margin-bottom: 14px; }
.pd-dash-listing-card-top h3 { font-size: 15px; font-weight: 700; color: #0f1e3a; margin: 0; font-family: 'Plus Jakarta Sans', sans-serif; }
.pd-dash-listing-card-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.pd-dash-listing-card-meta span { font-size: 12px; color: #8a92a6; display: flex; align-items: center; gap: 4px; background: #f0f2f7; padding: 3px 10px; border-radius: 7px; }
.pd-dash-listing-card-actions { display: flex; gap: 8px; }

/* Listing picker */
.pd-dash-listing-picker { display: flex; flex-direction: column; gap: 8px; }
.pd-dash-pick-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 15px 20px;
    background: #fff;
    border: 1.5px solid #e4e7ef;
    border-radius: 13px;
    text-decoration: none;
    color: #0f1e3a;
    font-weight: 600;
    font-size: 14px;
    transition: border-color .18s, background .18s, transform .12s;
}
.pd-dash-pick-card:hover { border-color: var(--orange); background: rgba(232,75,22,.02); transform: translateX(4px); color: #0f1e3a; }
.pd-dash-pick-card i:first-child { font-size: 20px; color: var(--orange); }

/* Locked card */
.pd-dash-locked-card {
    text-align: center;
    padding: 56px 24px;
    background: #fff;
    border-radius: 18px;
    border: 1.5px solid #e4e7ef;
}
.pd-dash-locked-card h3 { font-size: 20px; font-weight: 800; color: #0f1e3a; margin: 18px 0 10px; font-family: 'Plus Jakarta Sans', sans-serif; }
.pd-dash-locked-card p { color: #8a92a6; font-size: 14px; margin-bottom: 22px; }

/* Empty state */
.pd-dash-empty {
    text-align: center;
    padding: 48px 20px;
    background: #fff;
    border-radius: 18px;
    border: 1.5px dashed #e4e7ef;
}
.pd-dash-empty p { color: #8a92a6; margin-bottom: 18px; font-size: 14px; }

/* Upload progress */
.pd-upload-progress { margin-top: 12px; display: flex; align-items: center; gap: 10px; }
.pd-upload-progress-bar { flex: 1; height: 6px; background: #e4e7ef; border-radius: 3px; overflow: hidden; }
#pd-edit-video-bar { height: 100%; background: linear-gradient(90deg, var(--orange), #ff8c66); width: 0; transition: width .2s; border-radius: 3px; }

/* Spinner */
@keyframes spin { to { transform: rotate(360deg); } }
.spin { animation: spin .7s linear infinite; display: inline-block; }

/* Checkbox grid (tags) */
.pd-checkbox-grid { display: flex; flex-wrap: wrap; gap: 8px; }
.pd-check-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #374151;
    cursor: pointer;
    background: #f0f2f7;
    border: 1.5px solid transparent;
    padding: 6px 14px;
    border-radius: 9px;
    transition: border-color .15s, background .15s, color .15s;
    font-weight: 500;
}
.pd-check-label:hover { border-color: var(--orange); background: rgba(232,75,22,.05); color: var(--orange); }
.pd-check-label input { margin: 0; accent-color: var(--orange); }

/* ── Responsive ──────────────────────────────── */
@media (max-width: 900px) {
    .pd-dash-wrap { grid-template-columns: 1fr; }
    .pd-dash-sidebar-new {
        position: relative;
        top: 0;
        height: auto;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        padding: 16px 18px;
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,.06);
    }
    .pd-dash-user-card {
        flex-direction: row;
        align-items: center;
        padding-bottom: 0;
        margin-bottom: 0;
        border-bottom: none;
        width: 100%;
        padding-right: 12px;
    }
    .pd-dash-pkg-pill { display: none; }
    .pd-dash-nav-new { flex-direction: row; flex-wrap: wrap; gap: 4px; flex: 0 0 100%; padding-top: 12px; }
    .pd-dash-nav-link { padding: 8px 12px; font-size: 12px; }
    .pd-dash-main-new { padding: 22px 18px; }
    .pd-form-grid { grid-template-columns: 1fr; }
    .pd-form-group--full { grid-column: 1; }
    .pd-dash-page-header { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 600px) {
    .pd-dash-listing-grid { grid-template-columns: 1fr; }
    .pd-dash-stats-row { grid-template-columns: 1fr 1fr; }
    .pd-gps-coords-row { grid-template-columns: 1fr; }
    .pd-gps-options { flex-direction: column; }
    .pd-gps-search-wrap { min-width: unset; }
    .pd-dash-main-new { padding: 18px 14px; }
}
