/* BudRun - Cannabis Delivery Marketplace */

/* ═══════════════════════════════════════
   SOCIAL MEDIA — Shop page & Settings
   ══════════════════════════════════════ */

/* Shop page Follow Us row */
.budrun-social-follow {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.budrun-social-follow-label {
    font-size: 13px;
    font-weight: 600;
    color: #888;
    white-space: nowrap;
}
.budrun-social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f4f4f4;
    font-size: 18px;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
    line-height: 1;
}
.budrun-social-btn:hover {
    background: #e8e8e8;
    transform: translateY(-2px);
}

/* Dashboard Settings — social input rows */
.budrun-social-inputs {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.budrun-social-input-row {
    display: flex;
    align-items: center;
    gap: 12px;
}
.budrun-social-input-label {
    min-width: 110px;
    font-size: 13px;
    font-weight: 600;
    color: #ccc;
    white-space: nowrap;
}
.budrun-social-input-row input[type="url"] {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid var(--budrun-border);
    border-radius: var(--budrun-radius);
    font-size: 13px;
    background: #fff;
    color: #1a2e0a;
    box-sizing: border-box;
}
.budrun-social-input-row input[type="url"]::placeholder {
    color: #bbb;
}
.budrun-social-input-row input[type="url"]:focus {
    outline: none;
    border-color: var(--budrun-primary);
    box-shadow: 0 0 0 3px rgba(46,125,50,0.15);
}

/* ═══════════════════════════════════════
   PRINT RECEIPT — @media print
   ══════════════════════════════════════ */
#budrun-print-receipt { display: none; }

@media print {
    /* Hide everything on the page */
    body * { visibility: hidden !important; }

    /* Show only the print receipt container */
    #budrun-print-receipt,
    #budrun-print-receipt * { visibility: visible !important; }

    #budrun-print-receipt {
        display: block !important;
        position: fixed;
        top: 0;
        left: 0;
        width: 80mm;
        margin: 0;
        padding: 4mm;
        background: #fff;
        color: #000;
        font-family: 'Courier New', Courier, monospace;
        font-size: 10pt;
        line-height: 1.5;
    }

    /* Receipt layout */
    .bpr-header       { text-align: center; margin-bottom: 4px; }
    .bpr-logo         { font-size: 13pt; font-weight: bold; }
    .bpr-store        { font-size: 11pt; font-weight: bold; }
    .bpr-site         { font-size: 8pt; color: #555; }

    .bpr-divider      { border-top: 1px dashed #000; margin: 6px 0; }

    .bpr-meta         { font-size: 9pt; }
    .bpr-meta div     { margin-bottom: 2px; }
    .bpr-label        { font-weight: bold; }

    .bpr-section-title { font-weight: bold; font-size: 9pt; margin: 4px 0 2px; letter-spacing: 1px; }

    .bpr-item         { margin-bottom: 5px; }
    .bpr-item-name    { font-weight: bold; font-size: 9.5pt; }
    .bpr-item-row     { display: flex; justify-content: space-between; font-size: 9pt; }
    .bpr-item-qty     { color: #333; }
    .bpr-item-total   { font-weight: bold; }

    .bpr-totals-row   { display: flex; justify-content: space-between; font-size: 9.5pt; margin: 2px 0; }
    .bpr-grand-total  { font-size: 12pt; font-weight: bold; margin-top: 4px; }

    .bpr-payment      { font-size: 9.5pt; margin: 4px 0; }
    .bpr-notes        { font-size: 9pt; font-style: italic; margin: 2px 0; }

    .bpr-id-check     { margin: 6px 0; }
    .bpr-id-title     { font-weight: bold; font-size: 9pt; margin-bottom: 6px; text-align: center; letter-spacing: 0.5px; }
    .bpr-id-line      { font-size: 9.5pt; margin-bottom: 8px; }

    .bpr-footer       { text-align: center; font-size: 8.5pt; margin-top: 4px; }
    .bpr-footer div   { margin-bottom: 2px; }
}
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;600;700&display=swap');

:root {
    --budrun-primary: #2e7d32;
    --budrun-primary-dark: #1b5e20;
    --budrun-secondary: #A8BD05;
    --budrun-accent: #ff8f00;
    --budrun-text: #333;
    --budrun-light: #f5f5f5;
    --budrun-border: #ddd;
    --budrun-white: #fff;
    --budrun-radius: 8px;
}

/* Layout */
.budrun-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: inherit;
}

/* User bar on dispensary page */
.budrun-user-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f5f5f5;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 8px 14px;
    margin-bottom: 16px;
    font-size: 0.875rem;
    color: #444;
}
.budrun-user-bar-links {
    display: flex;
    gap: 16px;
}
.budrun-user-bar-links a {
    color: #2e7d32;
    text-decoration: none;
    font-weight: 600;
}
.budrun-user-bar-links a:hover {
    text-decoration: underline;
}

.budrun-grid {
    display: grid;
    gap: 20px;
}

.budrun-grid-2 { grid-template-columns: repeat(2, 1fr); }
.budrun-grid-3 { grid-template-columns: repeat(3, 1fr); }
.budrun-grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 768px) {
    .budrun-grid-2, .budrun-grid-3, .budrun-grid-4 {
        grid-template-columns: 1fr;
    }
}

/* Cards */
.budrun-card {
    background: var(--budrun-white);
    border: 1px solid var(--budrun-border);
    border-radius: var(--budrun-radius);
    padding: 20px;
    transition: box-shadow 0.2s;
}

.budrun-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.budrun-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--budrun-radius) var(--budrun-radius) 0 0;
    margin: -20px -20px 15px;
    width: calc(100% + 40px);
}

.budrun-card h3 {
    margin: 0 0 10px;
    color: var(--budrun-text);
}

.budrun-card p {
    color: #666;
    margin: 0 0 10px;
}

/* Buttons */
.budrun-btn {
    display: inline-block;
    padding: 10px 24px;
    border: none;
    border-radius: var(--budrun-radius);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    transition: all 0.2s;
}

.budrun-btn-primary {
    background: var(--budrun-primary);
    color: var(--budrun-white);
}

.budrun-btn-primary:hover {
    background: var(--budrun-primary-dark);
    color: var(--budrun-white);
}

.budrun-btn-secondary {
    background: var(--budrun-secondary);
    color: var(--budrun-white);
}

.budrun-btn-secondary:hover {
    background: #8fa004;
    color: var(--budrun-white);
}

.budrun-btn-accent {
    background: var(--budrun-accent);
    color: var(--budrun-white);
}

.budrun-btn-outline {
    background: transparent;
    border: 2px solid var(--budrun-primary);
    color: var(--budrun-primary);
}

.budrun-btn-outline:hover {
    background: var(--budrun-primary);
    color: var(--budrun-white);
}

.budrun-btn-sm { padding: 6px 14px; font-size: 13px; }
.budrun-btn-lg { padding: 14px 32px; font-size: 16px; }
.budrun-btn-block { display: block; width: 100%; }

/* Forms */
.budrun-form-group {
    margin-bottom: 16px;
}

.budrun-form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    color: #fff;
}

/* Labels inside white cards use dark text */
.budrun-card .budrun-form-group label,
.budrun-card label {
    color: #222 !important;
}

.budrun-form-group input,
.budrun-form-group select,
.budrun-form-group textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--budrun-border);
    border-radius: var(--budrun-radius);
    font-size: 14px;
    box-sizing: border-box;
    color: #1a2e0a;
    background: #fff;
}
.budrun-form-group input::placeholder,
.budrun-form-group textarea::placeholder {
    color: #999;
}

.budrun-form-group input:focus,
.budrun-form-group select:focus,
.budrun-form-group textarea:focus {
    outline: none;
    border-color: var(--budrun-primary);
    box-shadow: 0 0 0 3px rgba(46,125,50,0.15);
}

.budrun-form-row {
    display: flex;
    gap: 16px;
}

.budrun-form-row .budrun-form-group {
    flex: 1;
}

/* Tabs */
.budrun-tabs {
    display: flex;
    border-bottom: 2px solid var(--budrun-border);
    margin-bottom: 20px;
    gap: 0;
}

.budrun-tab {
    padding: 12px 24px;
    cursor: pointer;
    font-weight: 600;
    color: #666;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    transition: all 0.2s;
    background: none;
    border-top: none;
    border-left: none;
    border-right: none;
}

.budrun-tab:hover {
    color: var(--budrun-primary);
}

.budrun-tab.active {
    color: var(--budrun-primary);
    border-bottom-color: var(--budrun-primary);
}

.budrun-tab-content {
    display: none;
}

.budrun-tab-content.active {
    display: block;
}

/* Status badges */
.budrun-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.budrun-badge-pending { background: #fff3e0; color: #e65100; }
.budrun-badge-active { background: #e8f5e9; color: #2e7d32; }
.budrun-badge-confirmed { background: #e3f2fd; color: #1565c0; }
.budrun-badge-out_for_delivery { background: #f3e5f5; color: #7b1fa2; }
.budrun-badge-delivered { background: #e8f5e9; color: #2e7d32; }
.budrun-badge-cancelled { background: #fbe9e7; color: #bf360c; }
.budrun-badge-suspended { background: #fbe9e7; color: #bf360c; }

/* ── Hero ── */
.budrun-hero {
    background: linear-gradient(135deg, #0d3b14 0%, #1b5e20 60%, #2e7d32 100%);
    background-size: cover;
    background-position: center;
    border-radius: 16px;
    margin-bottom: 36px;
    overflow: hidden;
    position: relative;
}
.budrun-hero-overlay {
    background: linear-gradient(135deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.25) 100%);
    padding: 0 40px 0 48px;
    min-height: 260px;
}
.budrun-hero-layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.budrun-hero-content {
    padding: 40px 0;
    flex: 1;
}
.budrun-hero-mascot {
    flex-shrink: 0;
    align-self: flex-end;
    line-height: 0;
}
.budrun-hero-mascot img {
    height: 240px;
    width: auto;
    display: block;
    filter: drop-shadow(0 4px 16px rgba(0,0,0,0.35));
}
.budrun-hero-brand {
    font-size: 48px;
    font-weight: 900;
    color: #fff;
    letter-spacing: 2px;
    margin-bottom: 6px;
    line-height: 1;
}
.budrun-hero-brand span {
    color: #A8BD05;
}
.budrun-hero-tagline {
    color: rgba(255,255,255,0.8);
    font-size: 16px;
    margin: 0 0 28px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 300;
}
/* ── Hero pitch copy ── */
.budrun-hero-pitch {
    flex: 1;
    text-align: center;
    padding: 40px 10px 44px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.budrun-hero-pitch-line1 {
    font-family: 'Oswald', sans-serif;
    font-size: 38px;
    font-weight: 700;
    line-height: 1.1;
    color: #A8BD05;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 6px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
.budrun-hero-pitch-line2 {
    font-family: 'Oswald', sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 0 14px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
.budrun-hero-pitch-sub {
    font-size: 13px;
    color: rgba(255,255,255,0.65);
    line-height: 1.6;
    margin: 0;
    font-weight: 300;
    letter-spacing: 0.3px;
}

@media (max-width: 900px) {
    .budrun-hero-pitch { display: none; }
}
@media (max-width: 600px) {
    .budrun-hero-mascot { display: none; }
    .budrun-hero-layout { flex-direction: column; }
    .budrun-hero { overflow: hidden; margin-bottom: 24px; }
    .budrun-hero-overlay { padding: 24px 16px; box-sizing: border-box; width: 100%; }
    .budrun-hero-content { padding: 0; width: 100%; box-sizing: border-box; }
    .budrun-zone-select { min-width: unset !important; width: 100% !important; max-width: 100% !important; box-sizing: border-box; }
}
/* Country tabs on browse page */
.budrun-country-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}
.budrun-country-tab {
    display: inline-flex;
    align-items: center;
    padding: 8px 22px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    background: rgba(255,255,255,0.12);
    color: #ffffff !important;
    border: 2px solid rgba(255,255,255,0.3);
    transition: all 0.2s;
    backdrop-filter: blur(4px);
}
.budrun-country-tab:hover,
.budrun-country-tab.active {
    background: #fff;
    color: #1a2e0a;
    border-color: #fff;
    text-decoration: none;
}

.budrun-zone-select {
    appearance: none;
    -webkit-appearance: none;
    background: rgba(255,255,255,0.15) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M0 0l6 8 6-8z' fill='%23fff'/%3E%3C/svg%3E") no-repeat right 16px center;
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 50px;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    padding: 0 48px 0 22px;
    height: 52px;
    line-height: 52px;
    min-width: 280px;
    max-width: 100%;
    width: 100%;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
    backdrop-filter: blur(4px);
    box-sizing: border-box;
}
.budrun-zone-select:hover,
.budrun-zone-select:focus {
    background-color: rgba(255,255,255,0.25);
    border-color: #A8BD05;
    outline: none;
}
.budrun-zone-select option {
    background: #fff;
    color: #333;
}
.budrun-zone-select optgroup {
    background: #f1f1f1;
    color: #1b5e20;
    font-weight: bold;
}

/* ── Listing header ── */
.budrun-listing-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 20px;
}
.budrun-listing-header h2 {
    margin: 0;
    font-size: 22px;
    color: #1b5e20;
}
.budrun-listing-count {
    font-size: 13px;
    color: #999;
    font-weight: 500;
}

/* ── Empty state ── */
.budrun-empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #888;
}
.budrun-empty-state h3 { color: #555; margin-bottom: 8px; }

/* ── Dispensary cards ── */
.budrun-dispensary-card {
    position: relative;
    display: flex;
    flex-direction: column;
    border-radius: 12px;
    transition: transform 0.2s, box-shadow 0.2s;
}
.budrun-dispensary-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.budrun-dcard-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 12px;
}
.budrun-dcard-logo {
    width: 64px;
    height: 64px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #e8e8e8;
    background: #f9f9f9;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.budrun-dcard-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 4px;
}
.budrun-dcard-logo-placeholder {
    font-size: 28px;
    color: #ccc;
}
.budrun-dcard-logo-initials {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    letter-spacing: 1px;
    opacity: 0.85;
}
.budrun-open-chip {
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    letter-spacing: 0.3px;
    white-space: nowrap;
}
.budrun-open-chip.open {
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #a5d6a7;
}
.budrun-open-chip.closed {
    background: #fbe9e7;
    color: #c62828;
    border: 1px solid #ef9a9a;
}
.budrun-closed-notice {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: #fff8e1;
    border: 1px solid #ffe082;
    border-left: 4px solid #f9a825;
    border-radius: 8px;
    padding: 14px 18px;
    margin-bottom: 20px;
}
/* ── Analytics Tab ── */
.budrun-analytics-stats {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 16px;
    margin-bottom: 32px;
}
.budrun-stat-card {
    background: #fff;
    border: 1px solid #e8f5e9;
    border-radius: 12px;
    padding: 18px 16px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.budrun-stat-card-accent { border-color: #A8BD05; background: #f9fce8; }
.budrun-stat-card-warn   { border-color: #ffe082; background: #fffde7; }
.budrun-stat-label { font-size: 12px; color: #888; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 6px; }
.budrun-stat-value { font-size: 26px; font-weight: 800; color: #1a2e0a; line-height: 1; margin-bottom: 4px; }
.budrun-stat-sub   { font-size: 12px; color: #aaa; }
.budrun-analytics-section {
    background: #fff;
    border: 1px solid #e8f5e9;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
}
.budrun-analytics-section h4 { margin: 0 0 16px; font-size: 15px; font-weight: 700; color: #1a2e0a; }
.budrun-analytics-row { display: flex; gap: 20px; flex-wrap: wrap; }
.budrun-chart-wrap { position: relative; }
.budrun-analytics-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.budrun-analytics-table th { text-align: left; padding: 8px 10px; font-size: 12px; text-transform: uppercase; color: #888; border-bottom: 2px solid #f0f0f0; }
.budrun-analytics-table td { padding: 10px; border-bottom: 1px solid #f5f5f5; color: #333; }
.budrun-analytics-table tr:last-child td { border-bottom: none; }
.budrun-analytics-table tr:hover td { background: #f9fce8; }
.budrun-status-breakdown { display: flex; flex-direction: column; gap: 12px; }
.budrun-status-bar-row { display: flex; align-items: center; gap: 10px; }
.budrun-status-bar-label { font-size: 13px; color: #555; width: 120px; flex-shrink: 0; }
.budrun-status-bar-track { flex: 1; background: #f0f0f0; border-radius: 20px; height: 10px; overflow: hidden; }
.budrun-status-bar-fill  { height: 100%; border-radius: 20px; transition: width 0.6s ease; min-width: 4px; }
.budrun-status-bar-count { font-size: 13px; font-weight: 700; color: #333; width: 28px; text-align: right; }

.budrun-pro-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: linear-gradient(135deg, #A8BD05, #7a8c04);
    color: #0a1f0a;
    font-size: 13px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 0.3px;
    vertical-align: middle;
    box-shadow: 0 2px 6px rgba(168,189,5,0.35);
}
.budrun-closed-notice-icon {
    font-size: 24px;
    line-height: 1;
    flex-shrink: 0;
    margin-top: 2px;
}
.budrun-closed-notice strong {
    display: block;
    font-size: 15px;
    color: #e65100;
    margin-bottom: 4px;
}
.budrun-closed-notice p {
    margin: 0;
    font-size: 13px;
    color: #6d4c00;
    line-height: 1.5;
}
/* ── Live Chat ── */

/* Customer widget */
#budrun-chat-widget {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    font-family: inherit;
}
#budrun-chat-bubble {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #2e7d32;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(0,0,0,0.25);
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: transform 0.2s, background 0.2s;
}
#budrun-chat-bubble:hover { background: #1b5e20; transform: scale(1.08); }
.budrun-chat-cust-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: #e53935;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}
#budrun-chat-panel {
    position: absolute;
    bottom: 68px;
    right: 0;
    width: 320px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    max-height: 480px;
}
.budrun-chat-panel-header {
    background: #2e7d32;
    color: #fff;
    padding: 14px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}
.budrun-chat-panel-header button {
    background: none;
    border: none;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    opacity: 0.8;
    line-height: 1;
}
.budrun-chat-panel-header button:hover { opacity: 1; }
.budrun-chat-panel-body {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.budrun-chat-login-prompt {
    text-align: center;
    gap: 10px;
    justify-content: center;
}
.budrun-chat-login-prompt span { font-size: 32px; }
.budrun-chat-login-prompt p { font-size: 13px; color: #666; margin: 0; }
.budrun-chat-cust-messages {
    flex: 1;
    overflow-y: auto;
    padding: 12px 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-height: 200px;
    max-height: 300px;
}
.budrun-chat-cust-loading { font-size: 13px; color: #aaa; text-align: center; padding: 20px 0; }
.budrun-chat-cust-welcome { text-align: center; padding: 20px 0; }
.budrun-chat-cust-welcome span { font-size: 28px; display: block; margin-bottom: 8px; }
.budrun-chat-cust-welcome p { font-size: 13px; color: #888; margin: 0; }

/* Shared message styles */
.budrun-chat-msg {
    display: flex;
    flex-direction: column;
    gap: 2px;
    max-width: 82%;
}
.budrun-chat-msg--customer { align-self: flex-end; align-items: flex-end; }
.budrun-chat-msg--dispensary { align-self: flex-start; align-items: flex-start; }
.budrun-chat-bubble {
    padding: 8px 12px;
    border-radius: 14px;
    font-size: 13px;
    line-height: 1.4;
    word-break: break-word;
}
.budrun-chat-msg--customer .budrun-chat-bubble { background: #2e7d32; color: #fff; border-bottom-right-radius: 4px; }
.budrun-chat-msg--dispensary .budrun-chat-bubble { background: #f0f0f0; color: #222; border-bottom-left-radius: 4px; }
.budrun-chat-msg-time { font-size: 10px; color: #bbb; padding: 0 4px; }

/* Reply box */
.budrun-chat-reply-box {
    display: flex;
    gap: 8px;
    padding: 10px 12px;
    border-top: 1px solid #f0f0f0;
    background: #fafafa;
    align-items: flex-end;
}
.budrun-chat-reply-box textarea {
    flex: 1;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 8px 10px;
    font-size: 13px;
    resize: none;
    font-family: inherit;
    line-height: 1.4;
}
.budrun-chat-reply-box textarea:focus { outline: none; border-color: #2e7d32; }

/* Image attach button */
.budrun-chat-attach-btn {
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    color: #888;
    flex-shrink: 0;
    transition: color 0.15s, background 0.15s;
}
.budrun-chat-attach-btn:hover { color: #2e7d32; background: #f0f0f0; }
.budrun-chat-attach-btn svg { width: 18px; height: 18px; display: block; }

/* Image preview strip above reply box */
.budrun-chat-input-area { display: flex; flex-direction: column; border-top: 1px solid #f0f0f0; }
.budrun-chat-input-area .budrun-chat-reply-box { border-top: none; }
.budrun-chat-img-preview-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px 4px;
    background: #fafafa;
}
.budrun-chat-img-preview-wrap img {
    max-height: 60px;
    max-width: 100px;
    border-radius: 6px;
    border: 1px solid #ddd;
    object-fit: cover;
}
.budrun-chat-img-preview-wrap button {
    background: rgba(0,0,0,0.12);
    border: none;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    cursor: pointer;
    font-size: 11px;
    line-height: 20px;
    text-align: center;
    color: #333;
    flex-shrink: 0;
    padding: 0;
}
.budrun-chat-img-preview-wrap button:hover { background: rgba(0,0,0,0.22); }

/* Image messages */
.budrun-chat-bubble--image {
    padding: 3px !important;
    background: transparent !important;
    border-radius: 10px;
    overflow: hidden;
}
.budrun-chat-img-msg {
    max-width: 200px;
    max-height: 200px;
    border-radius: 8px;
    display: block;
    cursor: pointer;
    object-fit: cover;
}
.budrun-chat-msg--customer .budrun-chat-bubble--image { background: transparent !important; }
.budrun-chat-msg--dispensary .budrun-chat-bubble--image { background: transparent !important; }

/* Dashboard chat */
.budrun-chat-dashboard { display: flex; flex-direction: column; gap: 16px; }
.budrun-chat-toggle-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 14px 18px;
}
.budrun-chat-toggle-info { display: flex; flex-direction: column; gap: 2px; }
.budrun-chat-toggle-info strong { font-size: 15px; }
.budrun-chat-toggle-info span  { font-size: 12px; color: #888; }
.budrun-chat-switch { display: flex; align-items: center; gap: 8px; cursor: pointer; }
.budrun-chat-switch input { display: none; }
.budrun-chat-switch-track {
    width: 44px; height: 24px;
    background: #ccc; border-radius: 12px;
    position: relative; transition: background 0.2s;
}
.budrun-chat-switch-track::after {
    content: '';
    position: absolute;
    width: 20px; height: 20px;
    background: #fff; border-radius: 50%;
    top: 2px; left: 2px;
    transition: left 0.2s;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
.budrun-chat-switch input:checked ~ .budrun-chat-switch-track { background: #2e7d32; }
.budrun-chat-switch input:checked ~ .budrun-chat-switch-track::after { left: 22px; }
.budrun-chat-switch-label { font-size: 13px; font-weight: 600; color: #555; min-width: 24px; }

.budrun-chat-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 0;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    min-height: 460px;
}
.budrun-chat-list {
    border-right: 1px solid #e0e0e0;
    overflow-y: auto;
    background: #fafafa;
}
.budrun-chat-empty {
    text-align: center;
    padding: 40px 20px;
    color: #aaa;
}
.budrun-chat-empty span { font-size: 32px; display: block; margin-bottom: 10px; }
.budrun-chat-empty p { font-size: 13px; line-height: 1.5; }
.budrun-chat-convo {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-bottom: 1px solid #efefef;
    cursor: pointer;
    transition: background 0.15s;
    position: relative;
}
.budrun-chat-convo:hover { background: #f0f7f0; }
.budrun-chat-convo.active { background: #e8f5e9; }
.budrun-chat-convo.resolved { opacity: 0.5; }
.budrun-chat-convo-avatar {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: #2e7d32;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.budrun-chat-convo-info { flex: 1; min-width: 0; }
.budrun-chat-convo-top { display: flex; justify-content: space-between; align-items: baseline; gap: 4px; }
.budrun-chat-convo-top strong { font-size: 13px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.budrun-chat-convo-time { font-size: 10px; color: #aaa; white-space: nowrap; }
.budrun-chat-convo-preview { font-size: 12px; color: #888; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-top: 2px; }
.budrun-chat-badge {
    background: #e53935;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    border-radius: 10px;
    padding: 2px 6px;
    flex-shrink: 0;
}

.budrun-chat-thread-wrap {
    display: flex;
    flex-direction: column;
}
.budrun-chat-thread-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #ccc;
    gap: 10px;
    font-size: 13px;
}
.budrun-chat-thread-empty span { font-size: 32px; }
#budrun-chat-thread {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.budrun-chat-thread-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    border-bottom: 1px solid #f0f0f0;
    background: #fff;
}
.budrun-chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: #fff;
}

/* ── Onboarding Wizard ── */
.budrun-onboarding-wrap {
    max-width: 700px;
    margin: 0 auto;
    padding: 24px 0;
}
.budrun-onboarding-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    gap: 0;
}
.budrun-ob-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}
.budrun-ob-step-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #e0e0e0;
    color: #999;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}
.budrun-ob-step.active .budrun-ob-step-circle {
    background: #2e7d32;
    color: #fff;
    box-shadow: 0 0 0 4px #c8e6c9;
}
.budrun-ob-step.done .budrun-ob-step-circle {
    background: #66bb6a;
    color: #fff;
}
.budrun-ob-step-label {
    font-size: 11px;
    color: #999;
    white-space: nowrap;
}
.budrun-ob-step.active .budrun-ob-step-label { color: #2e7d32; font-weight: 600; }
.budrun-ob-step.done .budrun-ob-step-label   { color: #66bb6a; }
.budrun-ob-step-line {
    flex: 1;
    height: 2px;
    background: #e0e0e0;
    margin: 0 6px;
    margin-bottom: 18px;
    min-width: 24px;
}
.budrun-onboarding-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.budrun-ob-welcome {
    text-align: center;
    margin-bottom: 28px;
}
.budrun-ob-welcome-icon { font-size: 48px; margin-bottom: 8px; }
.budrun-ob-welcome h2   { font-size: 24px; color: #1b5e20; margin: 0 0 8px; }
.budrun-ob-welcome p    { color: #666; font-size: 15px; margin: 0; }
.budrun-ob-section-title {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #2e7d32;
    margin-bottom: 16px;
}
.budrun-ob-hint {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.5;
}
.budrun-ob-req { color: #c62828; }

/* Hours */
.budrun-ob-hours-grid { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.budrun-ob-hours-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    background: #f9f9f9;
    border-radius: 8px;
    border: 1px solid #eee;
    flex-wrap: wrap;
}
.budrun-ob-hours-row.is-closed { opacity: 0.5; }
.budrun-ob-hours-day { width: 90px; font-weight: 600; font-size: 14px; }
.budrun-ob-hours-times { display: flex; align-items: center; gap: 8px; flex: 1; }
.budrun-ob-hours-times input { padding: 6px 10px; border: 1px solid #ddd; border-radius: 6px; font-size: 14px; }
.budrun-ob-toggle { display: flex; align-items: center; gap: 6px; cursor: pointer; }
.budrun-ob-toggle input { display: none; }
.budrun-ob-toggle-track {
    width: 36px; height: 20px;
    background: #ccc; border-radius: 10px;
    position: relative; transition: background 0.2s;
}
.budrun-ob-toggle-track::after {
    content: '';
    position: absolute;
    width: 16px; height: 16px;
    background: #fff; border-radius: 50%;
    top: 2px; left: 2px;
    transition: left 0.2s;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
.budrun-ob-toggle input:checked ~ .budrun-ob-toggle-track { background: #e53935; }
.budrun-ob-toggle input:checked ~ .budrun-ob-toggle-track::after { left: 18px; }
.budrun-ob-toggle-label { font-size: 13px; color: #888; }
.budrun-ob-quick-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.budrun-btn-sm { padding: 6px 14px !important; font-size: 13px !important; }

/* Zones */
.budrun-ob-zones-wrap { max-height: 360px; overflow-y: auto; border: 1px solid #e0e0e0; border-radius: 10px; padding: 8px; }
.budrun-ob-zone-province { margin-bottom: 12px; }
.budrun-ob-zone-province-name { font-weight: 700; font-size: 13px; color: #555; padding: 6px 8px; background: #f5f5f5; border-radius: 6px; margin-bottom: 4px; }
.budrun-ob-zone-row {
    display: flex; align-items: center; justify-content: space-between;
    padding: 8px 12px; border-radius: 8px; border: 1px solid transparent;
    margin-bottom: 3px; gap: 12px; flex-wrap: wrap;
}
.budrun-ob-zone-row.is-active { background: #e8f5e9; border-color: #a5d6a7; }
.budrun-ob-zone-check { display: flex; align-items: center; gap: 8px; cursor: pointer; font-size: 14px; }
.budrun-ob-zone-check input { width: 16px; height: 16px; accent-color: #2e7d32; }
.budrun-ob-zone-fee { display: flex; align-items: center; gap: 6px; font-size: 13px; color: #666; }
.budrun-ob-zone-fee input { padding: 5px 8px; border: 1px solid #ddd; border-radius: 6px; }

/* Product options */
.budrun-ob-product-options { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 14px; margin-bottom: 20px; }
.budrun-ob-product-option {
    border: 2px solid #e0e0e0; border-radius: 12px; padding: 20px 16px;
    cursor: pointer; transition: all 0.2s; text-align: center;
}
.budrun-ob-product-option:hover { border-color: #66bb6a; background: #f9fff9; }
.budrun-ob-product-option.selected { border-color: #2e7d32; background: #e8f5e9; }
.budrun-ob-option-locked { cursor: default; opacity: 0.6; }
.budrun-ob-option-locked:hover { border-color: #e0e0e0 !important; background: none !important; }
.budrun-ob-product-option-icon { font-size: 32px; margin-bottom: 8px; }
.budrun-ob-product-option h3 { font-size: 14px; margin: 0 0 6px; }
.budrun-ob-product-option p  { font-size: 12px; color: #888; margin: 0; }
.budrun-ob-pro-badge { font-size: 10px; background: #A8BD05; color: #0a1f0a; padding: 2px 7px; border-radius: 8px; font-weight: 700; vertical-align: middle; margin-left: 4px; }
.budrun-ob-import-row { display: flex; gap: 8px; margin-top: 12px; flex-wrap: wrap; }
.budrun-ob-import-row input { flex: 1; min-width: 200px; padding: 8px 12px; border: 1px solid #ddd; border-radius: 8px; font-size: 13px; }

/* Checklist */
.budrun-ob-checklist { display: flex; flex-direction: column; gap: 10px; }
.budrun-ob-check-item {
    display: flex; align-items: center; gap: 14px;
    padding: 14px 16px; background: #f9f9f9;
    border-radius: 10px; border: 1px solid #eee;
}
.budrun-ob-check-item.done { background: #e8f5e9; border-color: #a5d6a7; }
.budrun-ob-chk-icon { font-size: 22px; flex-shrink: 0; }
.budrun-ob-check-item div { display: flex; flex-direction: column; gap: 2px; }
.budrun-ob-check-item strong { font-size: 14px; }
.budrun-ob-check-item span  { font-size: 12px; color: #888; }

/* Navigation */
.budrun-ob-nav {
    display: flex; justify-content: space-between; align-items: center;
    margin-top: 28px; padding-top: 20px; border-top: 1px solid #f0f0f0;
}
.budrun-btn-ghost { background: none; border: none; color: #aaa; font-size: 13px; cursor: pointer; padding: 8px 12px; }
.budrun-btn-ghost:hover { color: #666; }

/* ── Import tab — URL import ── */
.budrun-import-tabs {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
    border-bottom: 2px solid #e0e0e0;
}
.budrun-import-tab-btn {
    background: none;
    border: none;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
}
.budrun-import-tab-btn.active { color: #2e7d32; border-bottom-color: #2e7d32; }
.budrun-url-import-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}
.budrun-import-source-select {
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    background: #fff;
    min-width: 160px;
}
.budrun-import-url-input {
    flex: 1;
    min-width: 240px;
    padding: 10px 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
}
.budrun-import-preview-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    font-size: 14px;
    color: #555;
    font-weight: 600;
}
.budrun-import-product-list {
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    max-height: 440px;
    overflow-y: auto;
}
.budrun-import-product-row { border-bottom: 1px solid #f0f0f0; }
.budrun-import-product-row:last-child { border-bottom: none; }
.budrun-import-row-label {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    cursor: pointer;
}
.budrun-import-row-label:hover { background: #f9f9f9; }
.budrun-import-row-img {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    border-radius: 6px;
    overflow: hidden;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}
.budrun-import-row-img img { width: 100%; height: 100%; object-fit: cover; }
.budrun-import-no-img { font-size: 24px; }
.budrun-import-row-info { display: flex; flex-direction: column; gap: 3px; flex: 1; }
.budrun-import-row-info strong { font-size: 14px; color: #111; }
.budrun-import-meta { font-size: 12px; color: #888; }
.budrun-import-price { margin-left: 8px; color: #2e7d32; font-weight: 600; }
.budrun-import-thc { margin-left: 8px; color: #e65100; }
.budrun-import-progress-bar-wrap {
    height: 6px;
    background: #e0e0e0;
    border-radius: 3px;
    margin-top: 10px;
    overflow: hidden;
}
.budrun-import-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #2e7d32, #66bb6a);
    border-radius: 3px;
    width: 0%;
    transition: width 0.3s;
}

/* ── Import tab ── */
.budrun-import-locked {
    text-align: center;
    padding: 48px 32px;
    background: #f9f9f9;
    border: 2px dashed #ddd;
    border-radius: 12px;
    max-width: 480px;
}
.budrun-import-locked-icon { font-size: 48px; margin-bottom: 12px; }
.budrun-import-locked h3 { font-size: 22px; margin: 0 0 10px; }
.budrun-import-locked p { color: #666; margin-bottom: 20px; }
.budrun-import-perks {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    text-align: left;
    display: inline-block;
}
.budrun-import-perks li { padding: 4px 0; font-size: 14px; color: #333; }
.budrun-import-instructions {
    background: #f0f7f0;
    border: 1px solid #c8e6c9;
    border-radius: 8px;
    padding: 16px 20px;
    margin-bottom: 24px;
}
.budrun-import-instructions h4 { margin: 0 0 10px; color: #2e7d32; }
.budrun-import-instructions ol { margin: 0; padding-left: 20px; }
.budrun-import-instructions li { margin-bottom: 6px; font-size: 14px; }
.budrun-field-note { font-size: 12px; color: #888; margin-top: 4px; }

.budrun-dcard-name {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 6px;
    color: #1a1a1a;
}
.budrun-dcard-stars {
    font-size: 13px;
    color: #888;
    margin-bottom: 6px;
}
.budrun-dcard-stars span { color: #aaa; }
.budrun-dcard-address {
    font-size: 12px;
    color: #888;
    margin-bottom: 4px;
    line-height: 1.4;
}
.budrun-dcard-meta {
    font-size: 12px;
    color: #aaa;
    margin-bottom: 4px;
}
.budrun-dcard-footer {
    margin-top: auto;
    padding-top: 14px;
}

/* legacy - keep for single dispensary page */
.budrun-dispensary-hours { font-size: 13px; color: #666; }
.budrun-dispensary-hours .open { color: var(--budrun-primary); font-weight: 600; }
.budrun-dispensary-hours .closed { color: #c62828; font-weight: 600; }

/* Product listing */
.budrun-product-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--budrun-primary);
}

.budrun-product-meta {
    display: flex;
    gap: 12px;
    font-size: 13px;
    color: #666;
    margin: 8px 0;
}

.budrun-product-meta span {
    background: var(--budrun-light);
    padding: 3px 8px;
    border-radius: 4px;
}

.budrun-out-of-stock {
    opacity: 0.6;
}

.budrun-out-of-stock::after {
    content: 'Out of Stock';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0,0,0,0.7);
    color: #fff;
    padding: 8px 20px;
    border-radius: var(--budrun-radius);
    font-weight: 600;
}

/* Cart */
.budrun-cart-table {
    width: 100%;
    border-collapse: collapse;
}

.budrun-cart-table th,
.budrun-cart-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid var(--budrun-border);
}

.budrun-cart-table th {
    background: var(--budrun-light);
    font-weight: 600;
}

.budrun-cart-qty {
    width: 60px;
    text-align: center;
    padding: 6px;
    border: 1px solid var(--budrun-border);
    border-radius: 4px;
}

.budrun-cart-total {
    text-align: right;
    padding: 20px 0;
    font-size: 18px;
}

.budrun-cart-total strong {
    color: var(--budrun-primary);
}

/* Registration */
.budrun-register-choice {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 30px 0;
}

.budrun-register-option {
    flex: 1;
    max-width: 300px;
    text-align: center;
    padding: 40px 30px;
    border: 2px solid var(--budrun-border);
    border-radius: var(--budrun-radius);
    cursor: pointer;
    transition: all 0.2s;
}

.budrun-register-option:hover {
    border-color: var(--budrun-primary);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.budrun-register-option.selected {
    border-color: var(--budrun-primary);
    background: #e8f5e9;
}

.budrun-register-option .dashicons {
    font-size: 48px;
    width: 48px;
    height: 48px;
    color: var(--budrun-primary);
    margin-bottom: 10px;
}

/* Messages */
.budrun-msg {
    padding: 12px 18px;
    border-radius: var(--budrun-radius);
    margin-bottom: 16px;
}

.budrun-msg-success { background: #e8f5e9; color: #2e7d32; border: 1px solid #a5d6a7; }
.budrun-msg-error { background: #fbe9e7; color: #bf360c; border: 1px solid #ef9a9a; }
.budrun-msg-info { background: #e3f2fd; color: #1565c0; border: 1px solid #90caf9; }

/* Dashboard */
.budrun-dashboard {
    display: flex;
    gap: 20px;
}

.budrun-dashboard-sidebar {
    width: 220px;
    flex-shrink: 0;
}

.budrun-dashboard-sidebar a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    padding: 10px 16px;
    color: #fff;
    text-decoration: none;
    border-radius: var(--budrun-radius);
    margin-bottom: 4px;
    font-weight: 500;
}

.budrun-dashboard-sidebar a span {
    margin-left: auto;
    flex-shrink: 0;
}
.budrun-dashboard-sidebar a svg {
    flex-shrink: 0;
}
/* Coloured dashicons per nav item */
.budrun-dashboard-sidebar a.nav-orders .dashicons { color: #3b82f6; }
.budrun-dashboard-sidebar a.nav-stats   .dashicons { color: #8b5cf6; }
.budrun-dashboard-sidebar a.nav-profile .dashicons { color: #06b6d4; }
.budrun-dashboard-sidebar a.nav-logout  .dashicons { color: #ef4444; }
/* White icon when active or hovered */
.budrun-dashboard-sidebar a:hover .dashicons,
.budrun-dashboard-sidebar a.active .dashicons { color: #fff; }
.budrun-dashboard-sidebar a:hover,
.budrun-dashboard-sidebar a.active {
    background: var(--budrun-primary);
    color: var(--budrun-white);
}

.budrun-dashboard-content {
    flex: 1;
}
/* Default dashboard content text — white on dark background */
.budrun-dashboard-content h3,
.budrun-dashboard-content h4 { color: #fff; }
.budrun-dashboard-content > p,
.budrun-dashboard-content > label { color: rgba(255,255,255,0.8); }
/* Inside white cards — force dark text */
.budrun-dashboard-content .budrun-card label,
.budrun-dashboard-content .budrun-card p,
.budrun-dashboard-content .budrun-card h3,
.budrun-dashboard-content .budrun-card h4 { color: #1a2e0a; }
/* Form labels inside profile/hours/zone forms (white card sections) */
.budrun-dashboard-content .budrun-form-group label { color: #39ff14; }
.budrun-dashboard-content .budrun-form-group label span { color: #ff6b6b; }
/* Coming Soon checkbox label */
.budrun-coming-soon-check-label { color: #1a2e0a !important; }

@media (max-width: 768px) {
    .budrun-dashboard {
        flex-direction: column;
    }
    .budrun-dashboard-sidebar {
        width: 100%;
        display: flex;
        overflow-x: auto;
        gap: 8px;
    }
    .budrun-form-row {
        flex-direction: column;
    }
}

/* Delivery Progress Card */
.budrun-delivery-progress {
    background: linear-gradient(135deg, #1b5e20 0%, #2e7d32 100%);
    color: #fff;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: 0 4px 20px rgba(46,125,50,0.3);
}

.budrun-delivery-progress-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    font-size: 18px;
}

.budrun-delivery-icon {
    font-size: 28px;
}

.budrun-delivery-progress-bar {
    margin-bottom: 20px;
}

.budrun-delivery-progress-track {
    position: relative;
    height: 8px;
    background: rgba(255,255,255,0.2);
    border-radius: 4px;
    margin-bottom: 6px;
    overflow: visible;
}

.budrun-delivery-progress-fill {
    height: 100%;
    background: #A8BD05;
    border-radius: 4px;
    transition: width 2s ease;
    width: 5%;
}

.budrun-delivery-car-icon {
    position: absolute;
    top: -10px;
    left: 5%;
    font-size: 22px;
    transition: left 2s ease;
    transform: translateX(-50%) scaleX(-1);
}

.budrun-delivery-eta {
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 16px 20px;
    text-align: center;
}

.budrun-eta-countdown {
    font-size: 15px;
    color: #A8BD05;
    font-weight: bold;
    margin-top: 4px;
}

/* Sale Badge */
.budrun-sale-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #c62828;
    color: #fff;
    font-size: 11px;
    font-weight: bold;
    padding: 4px 10px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    z-index: 1;
}

.budrun-variant-sale {
    border-color: #c62828 !important;
}

.budrun-variant-sale.selected {
    background: #fff5f5 !important;
    border-color: #c62828 !important;
    color: #c62828 !important;
}

/* Sticky Cart Bar */
.budrun-sticky-cart {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1b5e20;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 24px;
    z-index: 9999;
    box-shadow: 0 -4px 16px rgba(0,0,0,0.3);
    font-size: 16px;
}
.budrun-sticky-cart .budrun-btn {
    background: #fff;
    color: #1b5e20;
    border-color: #fff;
    font-weight: bold;
    padding: 8px 20px;
}
.budrun-sticky-cart .budrun-btn:hover {
    background: #f1f8e9;
    border-color: #f1f8e9;
}

/* Delete button hover */
.budrun-btn-delete:hover {
    background: #000 !important;
    border-color: #000 !important;
    color: #fff !important;
}

/* Product Variant Buttons */
.budrun-variants {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.budrun-variant-btn {
    border: 2px solid var(--budrun-border);
    background: #fff;
    border-radius: 6px;
    padding: 6px 10px;
    font-size: 13px;
    cursor: pointer;
    text-align: center;
    line-height: 1.3;
    transition: border-color 0.2s, background 0.2s;
    min-width: 60px;
}

.budrun-variant-btn:hover:not(:disabled) {
    border-color: var(--budrun-primary);
}

.budrun-variant-btn.selected {
    border-color: var(--budrun-primary);
    background: #e8f5e9;
    color: var(--budrun-primary);
    font-weight: bold;
}

.budrun-variant-btn.budrun-variant-oos,
.budrun-variant-btn:disabled {
    opacity: 0.45;
    cursor: not-allowed;
    text-decoration: line-through;
}

/* Tip buttons */
.budrun-tip-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 6px;
}

.budrun-tip-buttons .budrun-tip-btn {
    min-width: 70px;
}

/* Featured Dispensaries Section */
.budrun-featured-section {
    background: linear-gradient(160deg, #071a09 0%, #163d1c 50%, #0a2b10 100%);
    border-radius: 16px;
    padding: 32px 28px 28px;
    margin-bottom: 36px;
    color: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0,0,0,0.22);
}
.budrun-featured-section::before {
    content: '';
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 220px;
    background: radial-gradient(ellipse, rgba(168,189,5,0.14) 0%, transparent 70%);
    pointer-events: none;
}

.budrun-featured-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(168,189,5,0.3);
}
.budrun-featured-header-left {
    display: flex;
    align-items: center;
    gap: 12px;
}
.budrun-featured-header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 800;
    color: #A8BD05;
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1.2;
}
.budrun-featured-header-subtitle {
    font-size: 12px;
    color: #ffffff !important;
    margin-top: 3px;
    letter-spacing: 0.5px;
}

.budrun-featured-star {
    color: #A8BD05;
    font-size: 22px;
    animation: budrun-star-pulse 2.5s ease-in-out infinite;
}
@keyframes budrun-star-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(0.85); }
}

.budrun-featured-card {
    background: #fff !important;
    border: none !important;
    border-radius: 12px !important;
    position: relative;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 0 0 2px #A8BD05, 0 6px 24px rgba(0,0,0,0.2) !important;
}
/* Move open/closed chip to bottom-right on featured cards */
.budrun-featured-card .budrun-open-chip {
    position: absolute;
    bottom: 16px;
    right: 16px;
}
.budrun-featured-card .budrun-dcard-top {
    justify-content: flex-start;
}

.budrun-featured-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 0 2px #c8dd00, 0 20px 48px rgba(168,189,5,0.28), 0 8px 20px rgba(0,0,0,0.15) !important;
}

.budrun-featured-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: linear-gradient(135deg, #A8BD05 0%, #c9d900 100%);
    color: #1b5e20;
    font-size: 10px;
    font-weight: 800;
    padding: 5px 14px 5px 10px;
    border-radius: 0 12px 0 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    white-space: nowrap;
}

/* ── Account Bar ── */
.budrun-account-bar {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
    padding: 8px 4px;
    font-size: 13px;
    border-bottom: 1px solid #e8f5e9;
    margin-bottom: 0;
}
.budrun-account-bar a {
    color: #2e7d32;
    text-decoration: none;
    font-weight: 600;
    padding: 4px 12px;
    border: 1px solid #c8e6c9;
    border-radius: 20px;
    transition: background 0.2s, color 0.2s;
}
.budrun-account-bar a:hover {
    background: #2e7d32;
    color: #fff;
    border-color: #2e7d32;
}
.budrun-account-greeting {
    color: #555;
    font-size: 13px;
    margin-right: 4px;
}

/* ── Modern Breadcrumb ── */
.bread-crumb-content {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: linear-gradient(135deg, #e8f5e9, #f1f8e9);
    border: 1px solid #c8e6c9;
    border-radius: 50px;
    padding: 5px 16px 5px 12px;
    font-size: 13px;
    font-weight: 500;
    box-shadow: 0 1px 4px rgba(27,94,32,0.08);
}
.bread-crumb-content a {
    color: #2e7d32;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 5px;
}
.bread-crumb-content a::before {
    content: '🏠';
    font-size: 12px;
}
.bread-crumb-content a:hover {
    color: #1b5e20;
}
.bread-crumb-content .step-bread-crumb {
    display: flex;
    align-items: center;
    color: #81c784;
    font-size: 10px;
    margin: 0 2px;
}
.bread-crumb-content > span:last-child {
    color: #1b5e20;
    font-weight: 700;
    background: #1b5e20;
    color: #fff;
    padding: 2px 10px;
    border-radius: 50px;
    font-size: 12px;
    letter-spacing: 0.3px;
}

/* ============================================================
   FEATURES PAGE  [budrun_features]
   ============================================================ */
.budrun-features-wrap {
    font-family: inherit;
    color: #1a1a1a;
}

/* ── Hero — full bleed (width/position set via JS to bypass theme containers) ── */
.budrun-feat-hero {
    background: linear-gradient(135deg, #1b5e20 0%, #2e7d32 60%, #388e3c 100%);
    border-radius: 0;
    padding: 70px 8%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 0;
    overflow: hidden;
    position: relative;
}
.budrun-feat-hero-text { flex: 0 0 360px; }
.budrun-feat-hero-text h1 {
    font-size: 46px;
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    margin: 0 0 16px;
    letter-spacing: -1px;
}
.budrun-feat-hero-text h1 span { color: #c8e6c9; }
.budrun-feat-hero-text p {
    font-size: 18px;
    color: #a5d6a7;
    margin: 0 0 28px;
    max-width: 480px;
    line-height: 1.6;
}
.budrun-feat-hero-ctas { display: flex; gap: 10px; flex-wrap: nowrap; }
.budrun-feat-hero-ctas .budrun-btn { white-space: nowrap; font-size: 13px; padding: 10px 18px; }
.budrun-btn-outline-white {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.6);
    color: #fff;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.2s;
    display: inline-block;
}
.budrun-btn-outline-white:hover {
    background: rgba(255,255,255,0.15);
    border-color: #fff;
    color: #fff;
}
.budrun-btn-outline-dark {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.2s;
    display: inline-block;
}
.budrun-btn-outline-dark:hover {
    background: #fff;
    color: #1b5e20;
}
/* ── Hero Mockup ── */
@keyframes budrun-float {
    0%   { transform: translateY(0px);  }
    50%  { transform: translateY(-8px); }
    100% { transform: translateY(0px);  }
}
@keyframes budrun-car-move {
    0%   { left: 14%; }
    60%  { left: 58%; }
    100% { left: 58%; }
}
@keyframes budrun-progress-fill {
    0%   { width: 0%; }
    60%  { width: 72%; }
    100% { width: 72%; }
}
@keyframes budrun-ping {
    0%   { transform: scale(1);   opacity: 0.8; }
    80%  { transform: scale(2.4); opacity: 0;   }
    100% { transform: scale(2.4); opacity: 0;   }
}
@keyframes budrun-pulse-dot {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.3; }
}
.budrun-feat-hero-mockup {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
}
.budrun-feat-mockup-card {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 20px;
    padding: 20px;
    width: 100%;
    max-width: 360px;
    backdrop-filter: blur(12px);
    box-shadow: 0 24px 60px rgba(0,0,0,0.35), 0 0 0 1px rgba(255,255,255,0.06);
    animation: budrun-float 4s ease-in-out infinite;
}
.budrun-feat-mockup-topbar {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
}
.budrun-feat-mockup-pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #69f0ae;
    animation: budrun-pulse-dot 1.2s ease-in-out infinite;
    flex-shrink: 0;
}
.budrun-feat-mockup-live {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    color: #69f0ae;
    background: rgba(105,240,174,0.15);
    border: 1px solid rgba(105,240,174,0.4);
    padding: 2px 7px;
    border-radius: 20px;
}
.budrun-feat-mockup-ordernum {
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    flex: 1;
}
.budrun-feat-mockup-eta {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    background: rgba(105,240,174,0.2);
    border-radius: 20px;
    padding: 3px 10px;
}
/* Map area */
.budrun-feat-mockup-map {
    background: linear-gradient(180deg, #1a4d2e 0%, #2d6a4f 100%);
    border-radius: 12px;
    height: 100px;
    position: relative;
    overflow: hidden;
    margin-bottom: 16px;
    border: 1px solid rgba(255,255,255,0.1);
}
.budrun-feat-mockup-road {
    position: absolute;
    top: 50%;
    left: 8%;
    right: 8%;
    height: 3px;
    background: rgba(255,255,255,0.25);
    border-radius: 2px;
    transform: translateY(-50%);
}
.budrun-feat-mockup-road::before,
.budrun-feat-mockup-road::after {
    content: '';
    position: absolute;
    top: -1px;
    width: 12px;
    height: 5px;
    border-radius: 2px;
    background: rgba(255,255,255,0.5);
}
.budrun-feat-mockup-road::before { left: 20%; }
.budrun-feat-mockup-road::after  { left: 50%; }
.budrun-feat-mockup-dest {
    position: absolute;
    right: 12%;
    top: 50%;
    transform: translateY(-60%);
    font-size: 22px;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.5));
}
.budrun-feat-mockup-car {
    position: absolute;
    top: 50%;
    transform: translateY(-60%);
    font-size: 22px;
    animation: budrun-car-move 4s ease-in-out infinite;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.5));
}
.budrun-feat-mockup-ping {
    position: absolute;
    top: 50%;
    left: 60%;
    width: 10px;
    height: 10px;
    background: #69f0ae;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: budrun-ping 2s ease-out infinite;
}
/* Status steps */
.budrun-feat-mockup-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}
.budrun-feat-mockup-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    flex: 1;
}
.budrun-feat-mockup-step span {
    font-size: 10px;
    color: rgba(255,255,255,0.35);
    text-align: center;
    white-space: nowrap;
}
.budrun-feat-mockup-step-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.2);
    background: transparent;
}
.budrun-feat-mockup-step.done .budrun-feat-mockup-step-dot {
    background: #69f0ae;
    border-color: #69f0ae;
}
.budrun-feat-mockup-step.done span { color: #69f0ae; }
.budrun-feat-mockup-step.active .budrun-feat-mockup-step-dot {
    background: #fff;
    border-color: #fff;
    box-shadow: 0 0 0 3px rgba(255,255,255,0.2);
    animation: budrun-pulse-dot 1s ease-in-out infinite;
}
.budrun-feat-mockup-step.active span { color: #fff; font-weight: 700; }
/* Progress bar */
.budrun-feat-mockup-progress-wrap {
    background: rgba(255,255,255,0.1);
    border-radius: 4px;
    height: 4px;
    margin-bottom: 16px;
    overflow: hidden;
}
.budrun-feat-mockup-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #69f0ae, #a5d6a7);
    border-radius: 4px;
    animation: budrun-progress-fill 4s ease-in-out infinite;
}
/* Product row */
.budrun-feat-mockup-product {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.06);
    border-radius: 10px;
    padding: 10px 12px;
    border: 1px solid rgba(255,255,255,0.08);
}
.budrun-feat-mockup-product-icon { font-size: 22px; }
.budrun-feat-mockup-product-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.budrun-feat-mockup-product-info strong { font-size: 13px; color: #fff; font-weight: 700; }
.budrun-feat-mockup-product-info span  { font-size: 11px; color: rgba(255,255,255,0.5); }
.budrun-feat-mockup-product-price { font-size: 14px; color: #69f0ae; font-weight: 800; }
/* Caption */
.budrun-feat-mockup-caption {
    margin-top: 14px;
    font-size: 12px;
    color: #ffffff !important;
    text-align: center;
    letter-spacing: 0.2px;
}
.budrun-feat-hero-img { flex: 0 0 220px; text-align: center; }
.budrun-feat-hero-img img { max-width: 200px; filter: drop-shadow(0 8px 24px rgba(0,0,0,0.3)); }

/* ── What's Included Strip ── */
@keyframes budrun-scroll-pills {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.budrun-feat-included-strip {
    background: rgba(0,0,0,0.25);
    border-top: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 0;
    overflow: hidden;
    width: 100%;
}
.budrun-feat-included-track {
    display: flex;
    align-items: center;
    gap: 0;
    white-space: nowrap;
    animation: budrun-scroll-pills 40s linear infinite;
    width: max-content;
}
.budrun-feat-included-strip:hover .budrun-feat-included-track {
    animation-play-state: paused;
}
.budrun-feat-included-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.75);
    font-size: 13px;
    font-weight: 600;
    padding: 10px 6px;
    white-space: nowrap;
    transition: color 0.2s;
}
.budrun-feat-included-pill:hover { color: #fff; }
.budrun-feat-included-pill span { font-size: 15px; }
.budrun-feat-included-sep {
    color: rgba(255,255,255,0.2);
    font-size: 18px;
    padding: 0 10px;
    user-select: none;
}

/* ── Section ── */
.budrun-feat-section { padding: 60px 48px; }
.budrun-feat-section-dark {
    background: #f0f7f0;
    border-radius: 16px;
    padding: 60px 48px;
    margin: 0 0 60px;
}
.budrun-feat-section-header { text-align: center; margin-bottom: 48px; }
.budrun-feat-section-header h2 {
    font-size: 36px;
    font-weight: 900;
    color: #1a1a1a;
    margin: 12px 0 12px;
    letter-spacing: -0.5px;
}
.budrun-feat-section-dark .budrun-feat-section-header h2 { color: #1b5e20; }
.budrun-feat-section-light .budrun-feat-section-header h2 { color: #1a2e0a; }
.budrun-feat-section-light .budrun-feat-section-header p { color: #444; }
.budrun-feat-section-header p {
    font-size: 17px;
    color: rgba(255,255,255,0.85);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Free banner */
.budrun-feat-free-banner {
    display: flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(135deg, #1b5e20, #2e7d32);
    border: 2px solid #A8BD05;
    border-radius: 16px;
    padding: 24px 32px;
    margin-bottom: 48px;
    color: #fff;
}
.budrun-feat-free-icon { font-size: 40px; flex-shrink: 0; }
.budrun-feat-free-banner strong { font-size: 18px; display: block; margin-bottom: 4px; color: #A8BD05; }
.budrun-feat-free-banner p { margin: 0; font-size: 14px; color: #c8e6c9; }

/* Free note inside dispensary section */
.budrun-feat-free-note {
    display: inline-block;
    margin-top: 14px;
    background: #A8BD05;
    border: 1px solid #A8BD05;
    color: #1b5e20;
    border-radius: 50px;
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 600;
}
.budrun-feat-free-note strong { color: #1b5e20; }

/* CTA free badge */
.budrun-feat-cta-free-badge {
    display: inline-block;
    background: #A8BD05;
    color: #1b5e20;
    font-weight: 700;
    font-size: 13px;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 12px;
    letter-spacing: 0.3px;
}

/* Pill badges */
.budrun-feat-pill {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 50px;
}
.budrun-feat-pill.customer { background: #e8f5e9; color: #1b5e20; }
.budrun-feat-pill.dispensary { background: #1b5e20; color: #fff; }

/* ── Feature cards grid ── */
.budrun-feat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}
@media (max-width: 900px) {
    .budrun-feat-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
    .budrun-feat-grid { grid-template-columns: 1fr; }
}
.budrun-feat-card {
    background: #fff;
    border: 1px solid #e8f5e9;
    border-radius: 12px;
    padding: 28px 22px;
    transition: transform 0.2s, box-shadow 0.2s;
}
.budrun-feat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(27,94,32,0.12);
}
.budrun-feat-card.dark {
    background: #fff;
    border-color: #c8e6c9;
}
.budrun-feat-icon { font-size: 32px; margin-bottom: 14px; }
.budrun-feat-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: #1b5e20;
    margin: 0 0 8px;
}
.budrun-feat-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* ── Screenshots / mockups ── */
.budrun-feat-screenshots {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 48px;
}
.budrun-feat-mockup {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0,0,0,0.14);
    max-width: 480px;
    flex: 1;
    min-width: 260px;
}
.budrun-feat-mockup-bar {
    background: #f5f5f5;
    padding: 10px 14px;
    display: flex;
    gap: 6px;
    align-items: center;
    border-bottom: 1px solid #e0e0e0;
}
.budrun-feat-mockup-bar span {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #ddd;
    display: inline-block;
}
.budrun-feat-mockup-bar span:nth-child(1) { background: #ff5f57; }
.budrun-feat-mockup-bar span:nth-child(2) { background: #ffbd2e; }
.budrun-feat-mockup-bar span:nth-child(3) { background: #28c840; }
.budrun-feat-mockup-img-wrap {
    overflow: hidden;
    height: 320px;
    position: relative;
    cursor: zoom-in;
}
.budrun-feat-mockup-img-wrap img {
    width: 100%;
    display: block;
    object-fit: cover;
    object-position: top center;
    height: auto;
    transition: transform 0.3s ease;
}
.budrun-feat-mockup-img-wrap:hover img {
    transform: scale(1.03);
}
.budrun-feat-mockup-img-wrap .budrun-zoom-hint {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0,0,0,0.55);
    color: #fff;
    font-size: 11px;
    padding: 4px 9px;
    border-radius: 20px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s;
}
.budrun-feat-mockup-img-wrap:hover .budrun-zoom-hint {
    opacity: 1;
}
.budrun-feat-mockup-caption {
    text-align: center;
    font-size: 13px;
    color: #888;
    padding: 10px;
    margin: 0;
}

/* ── Lightbox ── */
.budrun-lightbox-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.88);
    z-index: 99999;
    align-items: center;
    justify-content: center;
    padding: 24px;
    box-sizing: border-box;
    cursor: zoom-out;
    animation: budrun-lb-fadein 0.2s ease;
}
.budrun-lightbox-overlay.active {
    display: flex;
}
@keyframes budrun-lb-fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}
.budrun-lightbox-inner {
    position: relative;
    max-width: 1100px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 12px;
    box-shadow: 0 32px 80px rgba(0,0,0,0.6);
    cursor: default;
    animation: budrun-lb-scalein 0.2s ease;
}
@keyframes budrun-lb-scalein {
    from { transform: scale(0.92); opacity: 0; }
    to   { transform: scale(1);    opacity: 1; }
}
.budrun-lightbox-inner img {
    width: 100%;
    display: block;
    border-radius: 12px;
}
.budrun-lightbox-close {
    position: fixed;
    top: 16px;
    right: 20px;
    background: rgba(255,255,255,0.15);
    border: none;
    color: #fff;
    font-size: 26px;
    line-height: 1;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s;
    z-index: 100000;
}
.budrun-lightbox-close:hover {
    background: rgba(255,255,255,0.3);
}

/* ── Screenshot placeholders ── */
.budrun-feat-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 220px;
    background: #f0f4f0;
    border: 2px dashed #c8dcc8;
    border-radius: 8px;
    padding: 30px 20px;
    text-align: center;
    color: #5a7a5a;
    font-size: 14px;
}
.budrun-feat-placeholder.dark {
    background: rgba(255,255,255,0.06);
    border-color: rgba(168,189,5,0.3);
    color: #b8d4b8;
}
.budrun-feat-placeholder-icon {
    font-size: 40px;
    line-height: 1;
}
.budrun-feat-placeholder a {
    font-size: 12px;
    color: #2e7d32;
    text-decoration: underline;
    margin-top: 4px;
}
.budrun-feat-placeholder.dark a {
    color: #A8BD05;
}

/* ── Zoom hint on mockup images ── */
.budrun-feat-mockup-img-wrap {
    position: relative;
}
.budrun-zoom-hint {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0,0,0,0.55);
    color: #fff;
    font-size: 11px;
    padding: 4px 8px;
    border-radius: 4px;
    opacity: 0;
    transition: opacity 0.2s;
    pointer-events: none;
    white-space: nowrap;
}
.budrun-feat-mockup-img-wrap:hover .budrun-zoom-hint { opacity: 1; }

/* ── Lightbox ── */
.budrun-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.88);
    z-index: 99999;
    align-items: center;
    justify-content: center;
    padding: 24px;
    box-sizing: border-box;
}
.budrun-lightbox.active { display: flex; }
.budrun-lightbox-inner {
    position: relative;
    max-width: 1200px;
    max-height: 90vh;
    width: 100%;
    text-align: center;
}
.budrun-lightbox-inner img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 10px;
    box-shadow: 0 24px 64px rgba(0,0,0,0.6);
    display: block;
    margin: 0 auto;
}
#budrun-lightbox-caption {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    margin-top: 12px;
}
.budrun-lightbox-close {
    position: fixed;
    top: 20px;
    right: 24px;
    background: rgba(255,255,255,0.15);
    border: none;
    color: #fff;
    font-size: 28px;
    line-height: 1;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
.budrun-lightbox-close:hover { background: rgba(255,255,255,0.28); }

/* ── Dispensary Badges ── */
.budrun-disp-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 12px 0 20px;
}
.budrun-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-weight: 700;
    font-size: 13px;
    padding: 6px 14px;
    letter-spacing: .01em;
    white-space: nowrap;
}
.budrun-badge-icon { font-size: 14px; line-height: 1; }
.budrun-badge--pill          { border-radius: 50px; }
.budrun-badge--rounded       { border-radius: 10px; }
.budrun-badge--square        { border-radius: 4px; }
.budrun-badge--outline-pill  { border-radius: 50px; border-width: 2px; border-style: solid; background: transparent !important; }
.budrun-badge--outline-rounded { border-radius: 10px; border-width: 2px; border-style: solid; background: transparent !important; }

/* ── Pricing intro notice ── */
.budrun-plan-intro-notice {
    background: #fff8e1;
    border: 1px solid #f9a825;
    border-radius: 10px;
    padding: 14px 20px;
    text-align: center;
    font-size: 15px;
    color: #5f4000;
    margin-bottom: 32px;
}
.budrun-plan-regular-price {
    font-size: 13px;
    color: #999;
    margin: -4px 0 6px;
}
.budrun-plan-regular-price s { text-decoration: line-through; }

/* ── Pricing plans comparison ── */
.budrun-feat-section-light { background: #f4f8f4; }
.budrun-plan-compare {
    display: flex;
    gap: 28px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}
.budrun-plan-compare-3 .budrun-plan-col {
    max-width: 360px;
}
.budrun-plan-col {
    background: #fff;
    border-radius: 16px;
    padding: 36px 32px;
    flex: 1;
    min-width: 260px;
    max-width: 420px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    position: relative;
}
.budrun-plan-standard {
    border: 2px solid #2e7d32;
    box-shadow: 0 8px 40px rgba(46,125,50,0.13);
}
.budrun-plan-pro {
    border: 2px solid #A8BD05;
    box-shadow: 0 8px 40px rgba(168,189,5,0.18);
}
.budrun-plan-badge-standard {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: #2e7d32;
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    padding: 4px 18px;
    border-radius: 20px;
    white-space: nowrap;
}
.budrun-plan-badge-pro {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: #A8BD05;
    color: #1a2e0a;
    font-weight: 700;
    font-size: 13px;
    padding: 4px 18px;
    border-radius: 20px;
    white-space: nowrap;
}
.budrun-plan-header { text-align: center; margin-bottom: 24px; }
.budrun-plan-header h3 { font-size: 22px; font-weight: 800; color: #1a2e0a; margin: 0 0 6px; }
.budrun-plan-price { font-size: 32px; font-weight: 800; color: #2e7d32; margin-bottom: 6px; }
.budrun-plan-standard .budrun-plan-price { color: #2e7d32; }
.budrun-plan-pro .budrun-plan-price { color: #A8BD05; }
.budrun-plan-header p { font-size: 14px; color: #666; margin: 0; }
.budrun-plan-list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
}
.budrun-plan-list li {
    padding: 9px 0;
    font-size: 14px;
    color: #333;
    border-bottom: 1px solid #f0f0f0;
    line-height: 1.4;
}
.budrun-plan-list li:last-child { border-bottom: none; }
.budrun-plan-no { color: #aaa !important; }
.budrun-btn-outline-green {
    background: transparent;
    border: 2px solid #2e7d32;
    color: #2e7d32;
}
.budrun-btn-outline-green:hover { background: #2e7d32; color: #fff; }
.budrun-btn-block { display: block; width: 100%; text-align: center; box-sizing: border-box; }

/* ── Pro Upgrade Modal ── */
.budrun-pro-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}
.budrun-pro-modal-box {
    background: #fff;
    border-radius: 16px;
    padding: 40px 36px;
    max-width: 480px;
    width: 100%;
    position: relative;
    box-shadow: 0 24px 80px rgba(0,0,0,0.25);
}
.budrun-pro-modal-close {
    position: absolute;
    top: 14px;
    right: 18px;
    background: none;
    border: none;
    font-size: 26px;
    color: #888;
    cursor: pointer;
    line-height: 1;
    padding: 0;
}
.budrun-pro-modal-close:hover { color: #333; }
.budrun-pro-modal-icon { font-size: 40px; text-align: center; margin-bottom: 10px; }
.budrun-pro-modal-box h3 { font-size: 22px; font-weight: 800; color: #1a2e0a; text-align: center; margin: 0 0 6px; }
.budrun-pro-modal-box > p { text-align: center; color: #666; font-size: 14px; margin: 0 0 24px; }
.budrun-pro-form-row { margin-bottom: 16px; }
.budrun-pro-form-row label { display: block; font-size: 13px; font-weight: 600; color: #333; margin-bottom: 5px; }
.budrun-pro-form-row label span { color: #c62828; }
.budrun-pro-form-row input,
.budrun-pro-form-row textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    box-sizing: border-box;
    font-family: inherit;
    transition: border-color 0.2s;
}
.budrun-pro-form-row input:focus,
.budrun-pro-form-row textarea:focus { outline: none; border-color: #2e7d32; }
.budrun-pro-form-row textarea { resize: vertical; }

/* ── Upgrade Tab ── */
.budrun-upgrade-wrap { max-width: 600px; }
.budrun-upgrade-header { margin-bottom: 28px; }
.budrun-upgrade-header h3 { font-size: 22px; font-weight: 800; color: #fff; margin: 0 0 6px; }
.budrun-upgrade-header p { color: rgba(255,255,255,0.65); font-size: 14px; margin: 0; }
.budrun-upgrade-plans {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
}
.budrun-upgrade-plan {
    flex: 1;
    background: rgba(255,255,255,0.06);
    border: 2px solid rgba(255,255,255,0.15);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.2s, box-shadow 0.2s;
    position: relative;
}
.budrun-upgrade-plan:hover { border-color: #2e7d32; }
.budrun-upgrade-plan.selected { border-color: #2e7d32; box-shadow: 0 0 0 3px rgba(46,125,50,0.15); }
.budrun-upgrade-plan-featured { border-color: #A8BD05; }
.budrun-upgrade-plan-featured.selected { border-color: #A8BD05; box-shadow: 0 0 0 3px rgba(168,189,5,0.2); }
.budrun-upgrade-plan-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #A8BD05;
    color: #0a1f0a;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 12px;
    border-radius: 20px;
    white-space: nowrap;
}
.budrun-upgrade-plan-name { font-size: 15px; font-weight: 700; color: rgba(255,255,255,0.85); margin-bottom: 6px; }
.budrun-upgrade-plan-price { font-size: 28px; font-weight: 800; color: #A8BD05; }
.budrun-upgrade-plan-price span { font-size: 14px; font-weight: 400; color: rgba(255,255,255,0.55); }
.budrun-upgrade-plan-note { font-size: 12px; color: rgba(255,255,255,0.5); margin-top: 4px; }
.budrun-payment-tabs { display: flex; gap: 8px; margin-bottom: 20px; }
.budrun-payment-tab {
    padding: 10px 20px;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.06);
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255,255,255,0.75);
    transition: all 0.2s;
}
.budrun-payment-tab.active { background: #2d6a4f; color: #fff; border-color: #2d6a4f; }
.budrun-etransfer-instructions { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: 8px; padding: 16px 20px; margin-bottom: 20px; }
.budrun-etransfer-instructions h4 { margin: 0 0 10px; font-size: 14px; color: rgba(255,255,255,0.9); }
.budrun-etransfer-instructions ol { margin: 0; padding-left: 20px; }
.budrun-etransfer-instructions li { font-size: 14px; color: rgba(255,255,255,0.75); line-height: 1.8; }
.budrun-upgrade-features { margin-top: 32px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.12); }
.budrun-upgrade-features h4 { font-size: 14px; font-weight: 700; color: rgba(255,255,255,0.9); margin: 0 0 12px; }
.budrun-upgrade-features ul { list-style: none; padding: 0; margin: 0; }
.budrun-upgrade-features li { font-size: 14px; color: rgba(255,255,255,0.75); padding: 5px 0; line-height: 1.5; }
.budrun-upgrade-active { background: #f4f8f4; border: 2px solid #A8BD05; border-radius: 12px; padding: 32px; max-width: 480px; }

/* ── How it works ── */
.budrun-feat-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    padding: 0 20px;
}
.budrun-feat-step {
    text-align: center;
    flex: 0 0 160px;
}
.budrun-feat-step-num {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #1b5e20;
    color: #fff;
    font-size: 22px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
}
.budrun-feat-step h3 { font-size: 17px; font-weight: 700; color: #ffffff; margin: 0 0 6px; }
.budrun-feat-step p { font-size: 14px; color: #a5d6a7; margin: 0; line-height: 1.5; }
.budrun-feat-step-arrow { font-size: 28px; color: #c8e6c9; font-weight: 300; flex-shrink: 0; }

/* ── Bottom CTA ── */
.budrun-feat-cta {
    background: linear-gradient(135deg, #1b5e20, #2e7d32);
    border-radius: 16px;
    padding: 36px 48px;
    text-align: center;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}
.budrun-feat-cta-text { text-align: left; }
.budrun-feat-cta h2 { font-size: 32px; font-weight: 900; color: #fff; margin: 0 0 6px; }
.budrun-feat-cta p { font-size: 16px; color: #a5d6a7; margin: 0; }
.budrun-feat-cta-btns { display: flex; gap: 14px; flex-wrap: nowrap; flex-shrink: 0; }

/* ── Responsive ── */
@media (max-width: 768px) {
    .budrun-feat-hero { flex-direction: column; padding: 48px 24px; text-align: center; }
    .budrun-feat-hero-text h1 { font-size: 32px; }
    .budrun-feat-hero-ctas { justify-content: center; }
    .budrun-feat-hero-img { display: none; }
    .budrun-feat-hero-mockup { display: none; }
    .budrun-feat-section-dark { padding: 40px 24px; }
    .budrun-feat-cta { padding: 32px 24px; flex-direction: column; text-align: center; }
    .budrun-feat-cta-text { text-align: center; }
    .budrun-feat-cta h2 { font-size: 26px; }
    .budrun-feat-cta-btns { flex-wrap: wrap; justify-content: center; }
    .budrun-feat-steps { gap: 8px; }
    .budrun-feat-step-arrow { display: none; }
    .budrun-feat-step { flex: 0 0 140px; }
}

/* ============================================================
   CONTACT PAGE  [budrun_contact]
   ============================================================ */
/* ============================================================
   HOME SECTIONS  [budrun_home]
   ============================================================ */
.budrun-home-wrap { font-family: inherit; }
.budrun-home-section { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; padding: 80px 48px; max-width: 1200px; margin: 0 auto; }
.budrun-home-section-dark { background: #0a1f0a; border-radius: 0; max-width: 100%; padding: 80px calc(50% - 560px); }
.budrun-home-accent { color: #A8BD05; }
.budrun-home-pill { display: inline-block; font-size: 11px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; padding: 5px 14px; border-radius: 20px; margin-bottom: 16px; }
.budrun-home-pill.customer { background: #e8f5e9; color: #1b5e20; }
.budrun-home-pill.dispensary { background: #A8BD05; color: #0a1f0a; }
.budrun-home-content h2 { font-size: 38px; font-weight: 900; line-height: 1.15; margin: 0 0 16px; color: #0a1f0a; }
.budrun-home-section-dark .budrun-home-content h2 { color: #fff; }
.budrun-home-intro { font-size: 17px; color: #555; margin: 0 0 28px; line-height: 1.6; }
.budrun-home-section-dark .budrun-home-intro { color: #aac47a; }
.budrun-home-checklist { list-style: none; margin: 0 0 32px; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.budrun-home-checklist li { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; color: #333; line-height: 1.4; }
.budrun-home-checklist li::before { content: ''; flex-shrink: 0; width: 20px; height: 20px; background: #1b5e20; border-radius: 50%; display: flex; align-items: center; justify-content: center; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 10'%3E%3Cpath d='M1 5l3.5 3.5L11 1' stroke='%23fff' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: center; background-size: 10px; margin-top: 2px; }
.budrun-home-checklist.dark li { color: #d4e8b0; }
.budrun-home-checklist.dark li::before { background-color: #A8BD05; }
.budrun-home-pro-tag { font-size: 10px; font-weight: 700; background: #A8BD05; color: #0a1f0a; padding: 2px 6px; border-radius: 6px; margin-left: 4px; vertical-align: middle; white-space: nowrap; }
.budrun-home-cta-row { display: flex; gap: 12px; flex-wrap: wrap; }

/* Home mockup */
.budrun-home-mockup { background: #1a2e1a; border-radius: 14px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.18); }
.budrun-home-mockup.dark { background: #1e3a1e; }
.budrun-home-mockup-bar { background: #0f1f0f; padding: 10px 14px; display: flex; gap: 6px; }
.budrun-home-mockup-bar span { width: 10px; height: 10px; border-radius: 50%; background: #333; }
.budrun-home-mockup-bar span:nth-child(1) { background: #ff5f57; }
.budrun-home-mockup-bar span:nth-child(2) { background: #ffbd2e; }
.budrun-home-mockup-bar span:nth-child(3) { background: #28c840; }
.budrun-home-mockup-body { padding: 20px; display: flex; flex-direction: column; gap: 12px; }
.budrun-home-mock-card { background: #243824; border-radius: 10px; padding: 14px 16px; position: relative; }
.budrun-home-mock-tag { font-size: 10px; font-weight: 700; background: #A8BD05; color: #0a1f0a; display: inline-block; padding: 2px 8px; border-radius: 4px; margin-bottom: 6px; }
.budrun-home-mock-name { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.budrun-home-mock-price { font-size: 13px; color: #aaa; margin-bottom: 10px; }
.budrun-home-mock-price s { margin-right: 6px; }
.budrun-home-mock-price strong { color: #A8BD05; font-size: 15px; }
.budrun-home-mock-btn { background: #A8BD05; color: #0a1f0a; font-size: 12px; font-weight: 700; padding: 6px 14px; border-radius: 6px; display: inline-block; cursor: default; }
.budrun-home-mock-track { background: #1b3a1b; border-radius: 10px; padding: 14px 16px; }
.budrun-home-mock-track-label { font-size: 13px; color: #A8BD05; font-weight: 600; margin-bottom: 8px; }
.budrun-home-mock-track-bar { background: #2a4a2a; border-radius: 4px; height: 8px; margin-bottom: 6px; overflow: hidden; }
.budrun-home-mock-track-bar div { height: 100%; background: #A8BD05; border-radius: 4px; }
.budrun-home-mock-track-eta { font-size: 11px; color: #888; }
.budrun-home-mock-dash-header { font-size: 14px; font-weight: 700; color: #A8BD05; margin-bottom: 10px; }
.budrun-home-mock-tabs { display: flex; gap: 0; margin-bottom: 14px; background: #1a2e1a; border-radius: 6px; overflow: hidden; }
.budrun-home-mock-tabs span { font-size: 12px; padding: 6px 14px; color: #666; cursor: default; }
.budrun-home-mock-tabs span.active { background: #A8BD05; color: #0a1f0a; font-weight: 700; }
.budrun-home-mock-order { display: flex; align-items: center; gap: 10px; padding: 10px 0; border-bottom: 1px solid #2a3a2a; font-size: 13px; color: #ccc; }
.budrun-home-mock-order:last-child { border-bottom: none; }
.budrun-home-mock-badge { font-size: 10px; font-weight: 700; padding: 2px 6px; border-radius: 4px; flex-shrink: 0; }
.budrun-home-mock-badge.new { background: #A8BD05; color: #0a1f0a; }
.budrun-home-mock-badge.out { background: #f59e0b; color: #fff; }
.budrun-home-mock-badge.done { background: #22c55e; color: #fff; }
.budrun-home-mock-order span:nth-child(2) { flex: 1; }
.budrun-home-mock-action { font-size: 12px; font-weight: 600; color: #A8BD05; }
.budrun-home-mock-action.muted { color: #555; }

@media (max-width: 860px) {
    .budrun-home-section { grid-template-columns: 1fr; gap: 40px; padding: 60px 24px; }
    .budrun-home-section-dark { padding: 60px 24px; }
    .budrun-home-content h2 { font-size: 28px; }
    .budrun-home-section-dark .budrun-home-visual { order: -1; }
}

/* ============================================================
   CONTACT PAGE  [budrun_contact]
   ============================================================ */
.budrun-contact-wrap { max-width: 1000px; margin: 0 auto; padding: 40px 24px 80px; }
.budrun-contact-hero { text-align: center; margin-bottom: 48px; }
.budrun-contact-hero h1 { font-size: 40px; font-weight: 900; color: #1b5e20; margin-bottom: 12px; }
.budrun-contact-hero p { font-size: 18px; color: #555; }
.budrun-contact-layout { display: grid; grid-template-columns: 1fr 2fr; gap: 48px; align-items: start; }
.budrun-contact-info { display: flex; flex-direction: column; gap: 28px; }
.budrun-contact-info-item { display: flex; gap: 16px; align-items: flex-start; }
.budrun-contact-icon { font-size: 28px; flex-shrink: 0; line-height: 1; }
.budrun-contact-info-item strong { display: block; font-size: 15px; font-weight: 700; color: #1b5e20; margin-bottom: 4px; }
.budrun-contact-info-item p { margin: 0; font-size: 14px; color: #555; line-height: 1.5; }
.budrun-contact-info-item a { color: #2e7d32; font-weight: 600; text-decoration: underline; }
.budrun-contact-form { background: #fff; border: 1px solid #e0e0e0; border-radius: 16px; padding: 36px; box-shadow: 0 4px 24px rgba(0,0,0,0.06); }
.budrun-contact-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.budrun-form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.budrun-form-group label { font-size: 13px; font-weight: 600; color: #333; }
.budrun-form-group label span { color: #e53935; }
.budrun-form-group input,
.budrun-form-group select,
.budrun-form-group textarea { border: 1px solid #ddd; border-radius: 8px; padding: 10px 14px; font-size: 15px; font-family: inherit; color: #1a1a1a; background: #fafafa; transition: border-color 0.2s; width: 100%; box-sizing: border-box; }
.budrun-form-group input:focus,
.budrun-form-group select:focus,
.budrun-form-group textarea:focus { outline: none; border-color: #2e7d32; background: #fff; }
.budrun-form-group textarea { resize: vertical; }
.budrun-contact-submit { display: flex; align-items: center; gap: 16px; }
.budrun-contact-status { font-size: 14px; font-weight: 600; }
.budrun-contact-status.success { color: #2e7d32; }
.budrun-contact-status.error { color: #e53935; }
@media (max-width: 700px) {
    .budrun-contact-layout { grid-template-columns: 1fr; }
    .budrun-contact-row { grid-template-columns: 1fr; }
    .budrun-contact-form { padding: 24px; }
}

/* ============================================================
   FAQ PAGE  [budrun_faq]
   ============================================================ */
.budrun-faq-wrap { max-width: 820px; margin: 0 auto; padding: 40px 24px 80px; }
.budrun-faq-hero { text-align: center; margin-bottom: 48px; }
.budrun-faq-hero h1 { font-size: 40px; font-weight: 900; color: #ffffff; margin-bottom: 12px; }
.budrun-faq-hero p { font-size: 18px; color: rgba(255,255,255,0.85); margin-bottom: 28px; }
.budrun-faq-search input { width: 100%; max-width: 480px; padding: 12px 20px; border: 2px solid #ddd; border-radius: 50px; font-size: 15px; font-family: inherit; transition: border-color 0.2s; box-sizing: border-box; }
.budrun-faq-search input:focus { outline: none; border-color: #2e7d32; }
.budrun-faq-section { margin-bottom: 48px; }
.budrun-faq-section-title { font-size: 22px; font-weight: 800; color: #1b5e20; margin-bottom: 20px; display: flex; align-items: center; gap: 10px; border-bottom: 2px solid #e8f5e9; padding-bottom: 12px; }
.budrun-faq-list { display: flex; flex-direction: column; gap: 10px; }
.budrun-faq-item { border: 1px solid #e0e0e0; border-radius: 10px; overflow: hidden; background: #fff; transition: box-shadow 0.2s; }
.budrun-faq-item:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.07); }
.budrun-faq-item.open { border-color: #a5d6a7; box-shadow: 0 4px 16px rgba(46,125,50,0.1); }
.budrun-faq-q { width: 100%; background: none; border: none; padding: 18px 20px; text-align: left; font-size: 15px; font-weight: 600; color: #1a1a1a; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 12px; font-family: inherit; }
.budrun-faq-item.open .budrun-faq-q { color: #1b5e20; }
.budrun-faq-icon { flex-shrink: 0; font-size: 22px; font-weight: 300; color: #2e7d32; line-height: 1; width: 24px; text-align: center; }
.budrun-faq-a { display: none; padding: 0 20px 18px; }
.budrun-faq-item.open .budrun-faq-a { display: block; }
.budrun-faq-a p { margin: 0; font-size: 15px; color: #444; line-height: 1.7; }
.budrun-faq-cta { text-align: center; margin-top: 48px; padding: 40px; background: #f0f7f0; border-radius: 16px; }
.budrun-faq-cta p { font-size: 20px; font-weight: 700; color: #1b5e20; margin-bottom: 20px; }

/* ── Browse Toolbar ── */
.budrun-browse-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
    padding: 12px 16px;
    background: rgba(255,255,255,0.04);
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.08);
}
.budrun-search-link {
    font-size: 14px;
    color: #A8BD05;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}
.budrun-search-link:hover { color: #fff; }

/* ── Map View ── */
.budrun-view-toggle {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}
.budrun-view-btn {
    padding: 8px 20px;
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: #555;
    transition: all 0.2s;
}
.budrun-view-btn.active { background: #1a2e0a; color: #fff; border-color: #1a2e0a; }
.budrun-map-marker {
    width: 36px;
    height: 36px;
    background: #fff;
    border-radius: 50%;
    border: 3px solid #2e7d32;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    cursor: pointer;
}
.budrun-map-marker.closed { border-color: #c62828; }
.budrun-map-popup { font-family: sans-serif; min-width: 160px; }
.budrun-map-popup strong { font-size: 14px; color: #1a2e0a; }
.budrun-map-pro { background: #A8BD05; color: #0a1f0a; font-size: 10px; padding: 1px 5px; border-radius: 8px; font-weight: 700; }
.budrun-map-popup-btn { display: inline-block; margin-top: 8px; background: #2e7d32; color: #fff !important; padding: 5px 12px; border-radius: 6px; font-size: 13px; text-decoration: none; }
.budrun-map-popup-btn:hover { background: #1a2e0a; }

/* ── Product Search ── */
.budrun-back-link { display: inline-flex; align-items: center; gap: 6px; color: #7cb342; font-size: 14px; font-weight: 600; text-decoration: none; margin-bottom: 20px; }
.budrun-back-link:hover { color: #aed581; }
.budrun-search-wrap { max-width: 900px; margin: 0 auto; }
.budrun-search-hero { text-align: center; padding: 40px 20px; background: linear-gradient(135deg, #1a2e0a, #2e7d32); border-radius: 16px; margin-bottom: 32px; color: #fff; }
.budrun-search-hero h2 { font-size: 28px; font-weight: 800; margin: 0 0 8px; color: #fff; }
.budrun-search-hero p { color: rgba(255,255,255,0.8); margin: 0 0 24px; }
.budrun-search-bar { display: flex; gap: 10px; max-width: 560px; margin: 0 auto; }
.budrun-search-bar input { flex: 1; padding: 12px 18px; border-radius: 10px; border: none; font-size: 15px; outline: none; }
.budrun-search-count { color: #888; font-size: 14px; margin-bottom: 16px; }
.budrun-search-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 16px; }
.budrun-search-card { background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 2px 12px rgba(0,0,0,0.07); text-decoration: none; color: inherit; display: block; transition: transform 0.2s, box-shadow 0.2s; }
.budrun-search-card:hover { transform: translateY(-3px); box-shadow: 0 6px 24px rgba(0,0,0,0.12); }
.budrun-search-card-img { height: 140px; background: #f5f5f5; overflow: hidden; }
.budrun-search-card-img img { width: 100%; height: 100%; object-fit: cover; }
.budrun-search-no-img { height: 100%; display: flex; align-items: center; justify-content: center; font-size: 40px; }
.budrun-search-card-body { padding: 12px; }
.budrun-search-card-name { font-weight: 700; font-size: 14px; color: #1a2e0a; margin-bottom: 3px; }
.budrun-search-card-disp { font-size: 12px; color: #888; margin-bottom: 6px; }
.budrun-search-card-meta { display: flex; gap: 6px; flex-wrap: wrap; align-items: center; }
.budrun-search-price { font-size: 13px; font-weight: 700; color: #2e7d32; }
.budrun-search-sale { background: #ff5722; color: #fff; font-size: 10px; font-weight: 700; padding: 2px 6px; border-radius: 4px; }
.budrun-search-strain { font-size: 11px; background: #f0f4e8; color: #2e7d32; padding: 2px 7px; border-radius: 8px; text-transform: capitalize; }
.budrun-search-loading { text-align: center; padding: 40px; color: #888; }
.budrun-search-none { text-align: center; padding: 40px; color: #888; font-size: 15px; }

/* ---- Coupon / Promo Code (checkout + dispensary dashboard) ---- */
.budrun-coupon-wrap { display: flex; gap: 8px; align-items: center; }
.budrun-coupon-wrap input[type="text"] { flex: 1; font-family: monospace; text-transform: uppercase; letter-spacing: 1px; }
#budrun-coupon-msg { min-height: 18px; }
#budrun-discount-row { color: #4caf50; font-weight: 600; }

/* Works-alongside platform badges */
.budrun-feat-works-with {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    justify-content: center;
}
.budrun-feat-works-with-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #5a7a2a;
    font-weight: 700;
    margin-right: 4px;
}
.budrun-feat-works-with-badge {
    background: rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.15);
    color: #1a3a1a;
    padding: 5px 13px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
}

/* ── WAITLIST FORM ── */
.budrun-waitlist-form {
    background: #f0f7ee;
    border: 1px solid #b8d9a8;
    border-radius: 12px;
    padding: 24px;
    max-width: 480px;
    margin: 16px auto 0;
    text-align: left;
}
.budrun-waitlist-label {
    font-size: 15px;
    font-weight: 600;
    color: #2e5c1a;
    margin: 0 0 12px;
}
.budrun-waitlist-row {
    display: flex;
    gap: 8px;
}
.budrun-waitlist-row input[type="email"] {
    flex: 1;
    padding: 10px 14px;
    border: 1px solid #b8d9a8;
    border-radius: 8px;
    font-size: 15px;
    outline: none;
    transition: border-color .2s;
}
.budrun-waitlist-row input[type="email"]:focus {
    border-color: #4caf50;
}

/* ── COMING SOON — browse section ── */
.budrun-coming-soon-section {
    margin-top: 40px;
    padding-top: 28px;
    border-top: 1px solid #e8e8e8;
}
.budrun-coming-soon-title {
    font-size: 20px;
    font-weight: 700;
    color: #555;
    margin: 0 0 6px;
}
.budrun-coming-soon-sub {
    font-size: 14px;
    color: #888;
    margin: 0 0 20px;
}
.budrun-coming-soon-card {
    opacity: 0.82;
    position: relative;
}
.budrun-coming-soon-badge {
    background: #fff3e0;
    border: 1px solid #ffb74d;
    color: #e65100;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    letter-spacing: .4px;
}
.budrun-btn-disabled {
    pointer-events: none;
    opacity: 0.55;
    cursor: default;
}

/* ── COMING SOON — single dispensary banner ── */
.budrun-coming-soon-banner {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #fff8e1;
    border: 1px solid #ffe082;
    border-left: 4px solid #ffa000;
    border-radius: 10px;
    padding: 18px 20px;
    margin-bottom: 24px;
    color: #5d4037;
}
.budrun-coming-soon-banner-icon {
    font-size: 28px;
    flex-shrink: 0;
    line-height: 1;
}
.budrun-coming-soon-banner strong {
    display: block;
    font-size: 17px;
    margin-bottom: 4px;
}
.budrun-coming-soon-banner p {
    margin: 0;
    font-size: 14px;
    color: #7b5e43;
}
.budrun-coming-soon-menu-notice {
    background: #f5f5f5;
    border: 1px dashed #ccc;
    border-radius: 10px;
    padding: 36px 24px;
    text-align: center;
    color: #666;
    margin: 20px 0 30px;
}
.budrun-coming-soon-menu-notice strong {
    font-size: 17px;
    color: #444;
    display: block;
    margin-bottom: 6px;
}
.budrun-coming-soon-menu-notice p {
    margin: 0;
    font-size: 14px;
}

/* ── FOR DISPENSARIES PAGE ── */
/* Hide the WP page title — the shortcode has its own hero heading */
.page-id-for-dispensaries .entry-title,
.budrun-for-disp ~ .entry-title,
body:has(.budrun-for-disp) .entry-title,
body:has(.budrun-fd-hero) h1.entry-title { display: none !important; }

.budrun-for-disp {
    max-width: 960px;
    margin: 0 auto;
    padding-bottom: 60px;
}
.budrun-fd-hero {
    background: linear-gradient(135deg, #1b4332 0%, #2d6a4f 60%, #52b788 100%);
    border-radius: 16px;
    padding: 60px 48px;
    color: #fff;
    text-align: center;
    margin-bottom: 40px;
}
.budrun-fd-hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.18);
    border: 1px solid rgba(255,255,255,0.35);
    color: #d8f3dc;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 18px;
}
.budrun-fd-hero-title {
    font-size: clamp(28px, 5vw, 46px);
    font-weight: 800;
    margin: 0 0 16px;
    line-height: 1.15;
    color: #fff;
}
.budrun-fd-hero-sub {
    font-size: 18px;
    color: #ffffff !important;
    max-width: 580px;
    margin: 0 auto 28px;
    line-height: 1.6;
}
.budrun-fd-hero-ctas {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 18px;
}
.budrun-fd-hero-ctas .budrun-btn.budrun-btn-outline {
    border: 2px solid #fff !important;
    color: #fff !important;
    background: transparent !important;
}
.budrun-fd-hero-ctas .budrun-btn.budrun-btn-outline:hover {
    background: rgba(255,255,255,0.15) !important;
    border: 2px solid #fff !important;
    color: #fff !important;
}
.budrun-fd-hero-note {
    font-size: 13px;
    color: rgba(255,255,255,0.65);
}
.budrun-btn-lg {
    padding: 14px 28px;
    font-size: 16px;
    border-radius: 10px;
}

/* Works alongside */
.budrun-fd-alongside {
    text-align: center;
    padding: 28px 0;
    border-bottom: 1px solid #e8e8e8;
    margin-bottom: 48px;
}
.budrun-fd-alongside-label {
    font-size: 13px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 14px;
}
.budrun-fd-alongside-badges {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}
.budrun-fd-alongside-badge {
    background: #f1f8ec;
    border: 1px solid #c5e1a5;
    color: #33691e;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

/* Section header */
.budrun-fd-section-header {
    text-align: center;
    margin-bottom: 36px;
}
.budrun-fd-section-header h2 {
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 8px;
    color: #fff !important;
}
.budrun-fd-section-header p {
    font-size: 16px;
    color: rgba(255,255,255,0.7) !important;
    margin: 0;
}
.budrun-fd-steps .budrun-fd-section-header h2 {
    color: #1b4332 !important;
}
.budrun-fd-steps .budrun-fd-section-header p {
    color: #555 !important;
}

/* Benefits grid */
.budrun-fd-benefits {
    margin-bottom: 56px;
}
.budrun-fd-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
@media (max-width: 700px) {
    .budrun-fd-benefits-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
    .budrun-fd-benefits-grid { grid-template-columns: 1fr; }
}
.budrun-fd-benefit {
    background: #f9fdf7;
    border: 1px solid #e0f0d8;
    border-radius: 12px;
    padding: 22px 20px;
}
.budrun-fd-benefit-icon {
    font-size: 28px;
    margin-bottom: 10px;
}
.budrun-fd-benefit h3 {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 6px;
    color: #1b4332;
}
.budrun-fd-benefit p {
    font-size: 14px;
    color: #555;
    margin: 0;
    line-height: 1.55;
}

/* Steps */
.budrun-fd-steps {
    background: #f5faf2;
    border-radius: 14px;
    padding: 40px 36px;
    margin-bottom: 56px;
}
.budrun-fd-steps .budrun-feat-step h3 { color: #1b4332; }
.budrun-fd-steps .budrun-feat-step p  { color: #444; }
.budrun-fd-steps .budrun-feat-step-num { background: #2d6a4f; color: #fff; }
.budrun-fd-steps .budrun-feat-step-arrow { color: #2d6a4f; }

/* Founding Partner callout */
.budrun-fd-founding {
    background: linear-gradient(135deg, #1b4332, #2d6a4f);
    border-radius: 16px;
    padding: 48px 40px;
    text-align: center;
    color: #fff;
    margin-bottom: 56px;
}
.budrun-fd-founding-badge {
    display: inline-block;
    background: #ffd700;
    color: #1b4332;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
}
.budrun-fd-founding h2 {
    font-size: 30px;
    font-weight: 800;
    margin: 0 0 12px;
    color: #fff;
}
.budrun-fd-founding p {
    font-size: 16px;
    color: #ffffff !important;
    max-width: 560px;
    margin: 0 auto 24px;
    line-height: 1.6;
}
.budrun-fd-founding-perks {
    list-style: none;
    padding: 0;
    margin: 0 auto 28px;
    max-width: 380px;
    text-align: left;
    color: rgba(255,255,255,0.9);
    font-size: 15px;
    line-height: 2;
}
.budrun-fd-founding-caveat {
    font-size: 13px;
    color: rgba(255,255,255,0.55);
    margin: 14px auto 0 !important;
    text-align: center;
}

/* FAQ */
.budrun-fd-faq {
    margin-bottom: 56px;
}
.budrun-fd-faq-list {
    max-width: 680px;
    margin: 0 auto;
}
.budrun-fd-faq-item {
    border-bottom: 1px solid #e8e8e8;
}
.budrun-fd-faq-q {
    width: 100%;
    background: none;
    border: none;
    padding: 18px 0;
    font-size: 16px;
    font-weight: 600;
    color: #e8f5e9;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}
.budrun-fd-faq-q:hover { color: #a5d6a7; }
.budrun-fd-faq-icon {
    font-size: 20px;
    font-weight: 400;
    color: #81c784;
    flex-shrink: 0;
}
.budrun-fd-faq-a {
    padding: 0 0 18px;
}
.budrun-fd-faq-a p {
    margin: 0;
    font-size: 15px;
    color: rgba(255,255,255,0.85);
    line-height: 1.6;
}

/* Bottom CTA */
.budrun-fd-cta-bottom {
    background: linear-gradient(135deg, #1b4332, #2d6a4f);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 48px 40px;
    text-align: center;
}
.budrun-fd-cta-bottom h2 {
    font-size: 26px;
    font-weight: 700;
    margin: 0 0 10px;
    color: #fff;
}
.budrun-fd-cta-bottom p {
    font-size: 16px;
    color: rgba(255,255,255,0.8);
    margin: 0 0 24px;
}

@media (max-width: 600px) {
    .budrun-fd-hero { padding: 40px 24px; }
    .budrun-fd-steps { padding: 28px 20px; }
    .budrun-fd-founding { padding: 36px 24px; }
    .budrun-fd-cta-bottom { padding: 36px 24px; }
}
