/* Presentation Studio — Similar Products page (scoped) */
@import url('https://fonts.googleapis.com/css2?family=Vazirmatn:wght@400;500;600;700&display=swap');

body.site-order-presentation {
    --sd-color-primary: #3b82f6;
    --sd-color-success: #22c55e;
    --sd-color-bg: #f4f6fa;
    --sd-color-surface: #ffffff;
    --sd-color-text: #1e293b;
    --sd-color-muted: #64748b;
    --sd-color-border: #e8edf3;
    --sd-layout-inner: 1200px;
    font-family: 'Vazirmatn', Tahoma, sans-serif;
    background: var(--sd-color-bg) !important;
    color: var(--sd-color-text);
    font-size: 14px;
    line-height: 1.6;
}

body.site-order-presentation #container {
    max-width: none !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
}

body.site-order-presentation .ops-page {
    max-width: var(--sd-layout-inner);
    margin: 0 auto;
    padding: 16px;
}

body.site-order-presentation .ops-hero {
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    border-radius: 14px;
    padding: 24px;
    color: #fff;
    margin-bottom: 16px;
}

body.site-order-presentation .ops-hero h1 {
    margin: 0 0 8px;
    font-size: 22px;
    font-weight: 700;
}

body.site-order-presentation .ops-hero p {
    margin: 0;
    opacity: 0.92;
    font-size: 14px;
}

body.site-order-presentation .ops-layout {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 16px;
    align-items: start;
}

@media (max-width: 900px) {
    body.site-order-presentation .ops-layout {
        grid-template-columns: 1fr;
    }
}

body.site-order-presentation .ops-search {
    display: flex;
    gap: 8px;
    margin-top: 16px;
}

body.site-order-presentation .ops-search .sd-input {
    flex: 1;
    min-height: 44px;
    border: 1px solid rgba(255,255,255,0.35);
    border-radius: 10px;
    padding: 0 14px;
    background: rgba(255,255,255,0.12);
    color: #fff;
    font-family: inherit;
    font-size: 14px;
}

body.site-order-presentation .ops-search .sd-input::placeholder {
    color: rgba(255,255,255,0.75);
}

body.site-order-presentation .sd-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 10px;
    border: 1px solid transparent;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: 0.2s ease;
}

body.site-order-presentation .sd-btn--primary {
    background: var(--sd-color-primary);
    color: #fff;
}

body.site-order-presentation .sd-btn--success {
    background: var(--sd-color-success);
    color: #fff;
}

body.site-order-presentation .sd-btn--secondary {
    background: #fff;
    color: var(--sd-color-primary);
    border-color: var(--sd-color-border);
}

body.site-order-presentation .sd-btn--outline {
    background: transparent;
    color: var(--sd-color-primary);
    border-color: var(--sd-color-primary);
}

body.site-order-presentation .sd-btn--block {
    width: 100%;
}

body.site-order-presentation .sd-btn:disabled,
body.site-order-presentation .sd-btn--loading {
    opacity: 0.55;
    pointer-events: none;
}

body.site-order-presentation .ops-section {
    margin-bottom: 20px;
}

body.site-order-presentation .ops-section__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--sd-color-border);
}

body.site-order-presentation .ops-section__head h2 {
    margin: 0;
    font-size: 17px;
    font-weight: 600;
}

body.site-order-presentation .ops-count {
    color: var(--sd-color-muted);
    font-size: 13px;
}

body.site-order-presentation .ops-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
}

body.site-order-presentation .ops-card {
    background: var(--sd-color-surface);
    border: 1px solid var(--sd-color-border);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s ease;
}

body.site-order-presentation .ops-card:hover {
    box-shadow: 0 6px 24px rgba(15, 23, 42, 0.08);
}

body.site-order-presentation .ops-card__pic {
    display: block;
    aspect-ratio: 4/3;
    background: #f1f5f9;
    overflow: hidden;
}

body.site-order-presentation .ops-card__pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

body.site-order-presentation .ops-card__body {
    padding: 12px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

body.site-order-presentation .ops-card__title {
    margin: 0;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.45;
}

body.site-order-presentation .ops-card__title a {
    color: inherit;
    text-decoration: none;
}

body.site-order-presentation .ops-card__meta {
    font-size: 12px;
    color: var(--sd-color-muted);
}

body.site-order-presentation .ops-card__price {
    font-size: 13px;
    font-weight: 600;
    color: var(--sd-color-success);
}

body.site-order-presentation .ops-card__actions {
    padding: 0 12px 12px;
}

body.site-order-presentation .ops-seller-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 12px;
}

body.site-order-presentation .ops-seller {
    background: var(--sd-color-surface);
    border: 1px solid var(--sd-color-border);
    border-radius: 12px;
    padding: 14px;
}

body.site-order-presentation .ops-seller__name {
    font-weight: 600;
    margin: 0 0 6px;
}

body.site-order-presentation .ops-seller__name a {
    color: inherit;
    text-decoration: none;
}

body.site-order-presentation .ops-seller__stats {
    font-size: 12px;
    color: var(--sd-color-muted);
    margin-bottom: 10px;
}

body.site-order-presentation .ops-sidebar .sd-card {
    background: var(--sd-color-surface);
    border: 1px solid var(--sd-color-border);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 12px;
}

body.site-order-presentation .ops-sidebar h3 {
    margin: 0 0 10px;
    font-size: 15px;
}

body.site-order-presentation .ops-price-hint {
    font-size: 22px;
    font-weight: 700;
    color: var(--sd-color-primary);
    margin-bottom: 4px;
}

body.site-order-presentation .ops-cta-stack {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

body.site-order-presentation .ops-empty,
body.site-order-presentation .ops-error {
    text-align: center;
    padding: 32px 16px;
    background: var(--sd-color-surface);
    border: 1px dashed var(--sd-color-border);
    border-radius: 12px;
}

body.site-order-presentation .ops-success {
    text-align: center;
    padding: 16px;
    margin-bottom: 16px;
    background: #ecfdf5;
    border: 1px solid #6ee7b7;
    border-radius: 12px;
    color: #065f46;
}

body.site-order-presentation .ops-form-feedback {
    padding: 12px 16px;
    margin-bottom: 12px;
    border-radius: 8px;
    font-size: 0.95rem;
}

body.site-order-presentation .ops-form-feedback.ops-form-feedback--error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
}

body.site-order-presentation .ops-form-feedback.ops-form-feedback--ok {
    background: #ecfdf5;
    border: 1px solid #6ee7b7;
    color: #065f46;
}

body.site-order-presentation .ops-form-feedback.ops-form-feedback--info {
    background: var(--sd-color-warning-soft);
    border: 1px solid var(--sd-color-warning);
    color: var(--sd-color-text);
}

body.site-order-presentation .ops-skeleton .ops-card {
    pointer-events: none;
}

body.site-order-presentation .ops-skeleton-block {
    background: linear-gradient(90deg, #eef2f7 25%, #f8fafc 50%, #eef2f7 75%);
    background-size: 200% 100%;
    animation: ops-shimmer 1.2s infinite;
    border-radius: 8px;
    min-height: 14px;
}

@keyframes ops-shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

body.site-order-presentation .ops-guest-note {
    font-size: 12px;
    color: var(--sd-color-muted);
    margin-top: 8px;
}

body.site-order-presentation .ops-breadcrumb {
    font-size: 13px;
    color: var(--sd-color-muted);
    margin-bottom: 12px;
}

body.site-order-presentation .ops-breadcrumb a {
    color: var(--sd-color-primary);
    text-decoration: none;
}

body.site-order-presentation .ops-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}

body.site-order-presentation .ops-pagination button {
    min-width: 40px;
    min-height: 40px;
    border: 1px solid var(--sd-color-border);
    background: #fff;
    border-radius: 8px;
    cursor: pointer;
    font-family: inherit;
}

body.site-order-presentation .ops-pagination button.is-active {
    background: var(--sd-color-primary);
    color: #fff;
    border-color: var(--sd-color-primary);
}

body.site-order-presentation .ops-disabled {
    text-align: center;
    padding: 48px 24px;
}

body.site-order-presentation .ops-hero--compact {
    padding: 18px 20px;
}

body.site-order-presentation .ops-wizard-main .sd-card {
    padding: 16px;
    margin-bottom: 12px;
}

body.site-order-presentation .ops-wizard-steps {
    margin-bottom: 14px;
}

body.site-order-presentation .ops-wizard-nav {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 12px;
}

body.site-order-presentation .ops-captcha-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

body.site-order-presentation .ops-captcha-row .CapchaInput {
    max-width: 120px;
}

body.site-order-presentation .ops-wizard-captcha .captchalogin img {
    border-radius: 6px;
    vertical-align: middle;
}

body.site-order-presentation .ops-radio-grid {
    display: grid;
    gap: 8px;
}

body.site-order-presentation .ops-radio {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border: 1px solid var(--sd-color-border);
    border-radius: 10px;
    background: #fff;
    cursor: pointer;
}

body.site-order-presentation .ops-input,
body.site-order-presentation .sd-input {
    width: 100%;
    min-height: 44px;
    border: 1px solid var(--sd-color-border);
    border-radius: 10px;
    padding: 0 12px;
    font-family: inherit;
    font-size: 14px;
}

body.site-order-presentation .ops-section__title {
    margin: 0 0 12px;
    font-size: 17px;
}

body.site-order-presentation .ops-review p {
    margin: 0 0 8px;
}

body.site-order-presentation .ops-badges {
    font-size: 13px;
    color: var(--sd-color-muted, #64748b);
    margin: 4px 0 8px;
}

body.site-order-presentation .ops-badge-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 12px 0;
}

body.site-order-presentation .ops-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 12px;
    background: var(--sd-color-surface-alt, #f1f5f9);
    border: 1px solid var(--sd-color-border);
}

body.site-order-presentation .ops-stat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 12px;
    margin: 12px 0;
}

body.site-order-presentation .ops-stat {
    padding: 10px;
    border-radius: 10px;
    border: 1px solid var(--sd-color-border);
    background: var(--sd-color-surface);
    text-align: center;
}

body.site-order-presentation .ops-stat strong {
    display: block;
    font-size: 18px;
}

body.site-order-presentation .ops-trust-history {
    list-style: none;
    margin: 0;
    padding: 0;
}

body.site-order-presentation .ops-trust-history li {
    padding: 8px 0;
    border-bottom: 1px solid var(--sd-color-border);
    font-size: 13px;
}

body.site-order-presentation .pim-step.is-active {
    font-weight: 700;
    color: var(--sd-color-primary);
}

body.site-order-presentation .pim-step.is-done {
    opacity: 0.7;
}

body.site-order-presentation .ops-status {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 12px;
    background: #e0e7ff;
    color: #3730a3;
}

body.site-order-presentation .ops-proposal-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

body.site-order-presentation .ops-proposal {
    border: 1px solid var(--sd-color-border);
    border-radius: 12px;
    padding: 14px;
    background: var(--sd-color-surface);
}

body.site-order-presentation .ops-proposal__head {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    align-items: center;
    margin-bottom: 8px;
}

body.site-order-presentation .ops-proposal__price {
    font-weight: 700;
    color: var(--sd-color-primary);
}

body.site-order-presentation .ops-featured {
    border: 2px solid var(--sd-color-primary);
    border-radius: 12px;
    padding: 16px;
    background: #eff6ff;
    margin-bottom: 16px;
}

body.site-order-presentation .ops-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

body.site-order-presentation .ops-form-row {
    margin-bottom: 12px;
}

body.site-order-presentation .ops-form-row label {
    display: block;
    margin-bottom: 4px;
    font-weight: 500;
}

body.site-order-presentation .ops-hidden {
    display: none;
}

body.site-order-presentation .ops-file-input {
    max-width: 220px;
}

body.site-order-presentation .ops-upload-label {
    cursor: pointer;
    display: inline-block;
}

body.site-order-presentation .ops-timeline {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 8px;
    position: relative;
}

body.site-order-presentation .ops-timeline::before {
    content: "";
    position: absolute;
    top: 6px;
    right: 5%;
    left: 5%;
    height: 2px;
    background: var(--sd-color-border);
    z-index: 0;
}

body.site-order-presentation .ops-timeline li {
    position: relative;
    flex: 1 1 100px;
    min-width: 88px;
    max-width: 200px;
    padding: 20px 4px 0;
    margin: 0;
    text-align: center;
    z-index: 1;
}

body.site-order-presentation .ops-timeline li::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--sd-color-primary);
    border: 2px solid var(--sd-color-surface);
}

body.site-order-presentation .ops-timeline li.ops-timeline__step--current::before {
    background: var(--sd-color-warning);
    box-shadow: 0 0 0 3px var(--sd-color-warning-soft);
}

body.site-order-presentation .ops-timeline li.ops-timeline__step--current .ops-timeline__title {
    color: var(--sd-color-warning);
}

body.site-order-presentation .ops-timeline__title {
    font-weight: 600;
    font-size: 13px;
}

body.site-order-presentation .ops-timeline__meta {
    color: var(--sd-color-muted);
    font-size: 11px;
}

body.site-order-presentation .ops-chat__messages {
    max-height: 360px;
    overflow-y: auto;
    border: 1px solid var(--sd-color-border);
    border-radius: 12px;
    padding: 12px;
    background: var(--sd-color-surface);
    margin-bottom: 12px;
}

body.site-order-presentation .ops-chat__msg {
    margin-bottom: 10px;
    padding: 8px 10px;
    border-radius: 10px;
    background: #f8fafc;
}

body.site-order-presentation .ops-chat__msg--system {
    background: #eff6ff;
    font-size: 13px;
}

body.site-order-presentation .ops-chat__msg--mine {
    background: #ecfdf5;
}

body.site-order-presentation .ops-chat__meta {
    font-size: 12px;
    color: var(--sd-color-muted);
    margin-bottom: 4px;
}

@media (max-width: 900px) {
    body.site-order-presentation .ops-chat__messages {
        max-height: 280px;
    }
}

body.site-order-presentation .ops-profile-hero {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
}

body.site-order-presentation .ops-profile-avatar {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--sd-color-border);
}

body.site-order-presentation .ops-portfolio-cover img {
    width: 100%;
    max-height: 420px;
    object-fit: contain;
    border-radius: 12px;
}

body.site-order-presentation .ops-portfolio-thumb {
    width: 100%;
    border-radius: 8px;
    aspect-ratio: 16/10;
    object-fit: cover;
}

body.site-order-presentation .ops-completion {
    margin-bottom: 16px;
}

body.site-order-presentation .ops-completion__bar {
    height: 8px;
    background: var(--sd-color-border);
    border-radius: 4px;
    overflow: hidden;
}

body.site-order-presentation .ops-completion__fill {
    height: 100%;
    background: var(--sd-color-primary);
}

body.site-order-presentation .ops-dashboard-page .ops-dash-kpi {
    margin-bottom: 16px;
}

body.site-order-presentation .ops-dash-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    margin-bottom: 16px;
}

body.site-order-presentation .ops-dash-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    flex: 1 1 280px;
}

body.site-order-presentation .ops-dash-filters .sd-input {
    min-width: 140px;
}

body.site-order-presentation .ops-dash-order-list {
    display: grid;
    gap: 12px;
}

body.site-order-presentation .ops-dash-order {
    padding: 16px;
}

body.site-order-presentation .ops-dash-order--action {
    border-color: var(--sd-color-warning, #f59e0b);
}

body.site-order-presentation .ops-dash-order--open {
    border-color: #c4b5fd;
    background: #faf8ff;
}

body.site-order-presentation .ops-dash-order__head {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 8px;
}

body.site-order-presentation .ops-dash-order__title {
    margin: 0;
    font-size: 16px;
}

body.site-order-presentation .ops-dash-order__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 13px;
    color: var(--sd-color-muted, #64748b);
    margin: 8px 0;
}

body.site-order-presentation .ops-dash-order__activity {
    font-size: 13px;
    margin: 0 0 8px;
}

body.site-order-presentation .ops-status-badge {
    font-size: 12px;
    padding: 2px 10px;
    border-radius: 999px;
    background: var(--sd-color-surface-alt, #f1f5f9);
}

body.site-order-presentation .ops-badge--active {
    background: #dbeafe;
    color: #1d4ed8;
}

body.site-order-presentation .ops-badge--warn {
    background: #fef3c7;
    color: #b45309;
}

body.site-order-presentation .ops-badge--done {
    background: #dcfce7;
    color: #15803d;
}

body.site-order-presentation .ops-badge--muted {
    background: #f1f5f9;
    color: #64748b;
}

body.site-order-presentation .ops-notif-list {
    display: grid;
    gap: 10px;
}

body.site-order-presentation .ops-notif-item {
    padding: 14px 16px;
    cursor: pointer;
}

body.site-order-presentation .ops-notif-item--unread {
    border-right: 3px solid var(--sd-color-primary);
}

body.site-order-presentation .ops-notif-item__title {
    margin: 0 0 6px;
    font-size: 15px;
}

body.site-order-presentation .ops-dash-fav-grid {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

body.site-order-presentation .ops-dash-fav {
    padding: 14px;
}

body.site-order-presentation .ops-dash-revenue__row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--sd-color-border);
}

body.site-order-presentation .sd-btn--sm {
    padding: 6px 12px;
    font-size: 13px;
}

/* Epic E8 — Admin Analytics */
body.site-order-presentation .ops-analytics-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px;
}

body.site-order-presentation .ops-analytics-toolbar {
    padding: 16px;
    margin-bottom: 16px;
}

body.site-order-presentation .ops-analytics-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

body.site-order-presentation .ops-analytics-error {
    color: var(--sd-color-danger, #dc2626);
}

body.site-order-presentation .ops-analytics-stats__row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--sd-color-border);
    font-size: 13px;
}

body.site-order-presentation .ops-analytics-table__grid {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

body.site-order-presentation .ops-analytics-table__grid th,
body.site-order-presentation .ops-analytics-table__grid td {
    padding: 8px 10px;
    border-bottom: 1px solid var(--sd-color-border);
    text-align: right;
}

body.site-order-presentation .ops-analytics-bar {
    display: grid;
    grid-template-columns: 100px 1fr 70px;
    gap: 8px;
    align-items: center;
    margin-bottom: 8px;
    font-size: 12px;
}

body.site-order-presentation .ops-analytics-bar__label {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

body.site-order-presentation .ops-analytics-progress {
    width: 100%;
    height: 10px;
    border: none;
    border-radius: 999px;
    background: var(--sd-color-surface-alt, #f1f5f9);
}

body.site-order-presentation .ops-analytics-progress::-webkit-progress-bar {
    background: var(--sd-color-surface-alt, #f1f5f9);
    border-radius: 999px;
}

body.site-order-presentation .ops-analytics-progress::-webkit-progress-value {
    background: var(--sd-color-primary, #2563eb);
    border-radius: 999px;
}

body.site-order-presentation .ops-analytics-progress::-moz-progress-bar {
    background: var(--sd-color-primary, #2563eb);
    border-radius: 999px;
}

body.site-order-presentation .ops-analytics-funnel__step {
    display: grid;
    grid-template-columns: 120px 1fr 80px;
    gap: 8px;
    align-items: center;
    margin-bottom: 10px;
    font-size: 13px;
}

body.site-order-presentation .ops-analytics-funnel__label {
    font-weight: 600;
}

body.site-order-presentation .ops-analytics-funnel__meta {
    text-align: left;
    color: var(--sd-color-muted, #64748b);
    font-size: 12px;
}

body.site-order-presentation .ops-analytics-revenue {
    margin-bottom: 12px;
}

/* Manual test guide — Admin UAT */
body.site-order-presentation .ops-guide-page {
    max-width: 960px;
    margin: 0 auto;
    padding: 8px 0 32px;
}

body.site-order-presentation .ops-guide-hero {
    padding: 24px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #eff6ff 0%, #f0fdf4 100%);
    border-right: 4px solid var(--sd-color-primary, #2563eb);
}

body.site-order-presentation .ops-guide-hero h1 {
    margin: 8px 0;
    font-size: 1.5rem;
}

body.site-order-presentation .ops-guide-base code {
    background: #e2e8f0;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 13px;
}

body.site-order-presentation .ops-guide-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
}

body.site-order-presentation .ops-guide-badge--info { background: #dbeafe; color: #1e40af; }
body.site-order-presentation .ops-guide-badge--public { background: #dbeafe; color: #1d4ed8; }
body.site-order-presentation .ops-guide-badge--customer { background: #dcfce7; color: #166534; }
body.site-order-presentation .ops-guide-badge--specialist { background: #ffedd5; color: #c2410c; }
body.site-order-presentation .ops-guide-badge--admin { background: #ede9fe; color: #6d28d9; }

body.site-order-presentation .ops-guide-section-title {
    margin: 0 0 16px;
    font-size: 1.15rem;
}

body.site-order-presentation .ops-guide-users {
    padding: 20px;
    margin-bottom: 20px;
}

body.site-order-presentation .ops-guide-user-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
}

body.site-order-presentation .ops-guide-user {
    padding: 16px;
    border-radius: 12px;
    border: 1px solid var(--sd-color-border);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

body.site-order-presentation .ops-guide-user--customer { background: #f0fdf4; border-color: #86efac; }
body.site-order-presentation .ops-guide-user--specialist { background: #fff7ed; border-color: #fdba74; }
body.site-order-presentation .ops-guide-user--admin { background: #f5f3ff; border-color: #c4b5fd; }

body.site-order-presentation .ops-guide-tip {
    margin-top: 12px;
    font-size: 13px;
    color: var(--sd-color-muted, #64748b);
}

body.site-order-presentation .ops-guide-phase {
    padding: 20px;
    margin-bottom: 20px;
    border-right: 4px solid #cbd5e1;
}

body.site-order-presentation .ops-guide-phase--public { border-right-color: #3b82f6; }
body.site-order-presentation .ops-guide-phase--customer { border-right-color: #22c55e; }
body.site-order-presentation .ops-guide-phase--specialist { border-right-color: #f97316; }
body.site-order-presentation .ops-guide-phase--admin { border-right-color: #8b5cf6; }

body.site-order-presentation .ops-guide-phase-head h2 {
    margin: 8px 0 4px;
    font-size: 1.25rem;
}

body.site-order-presentation .ops-guide-phase-head p {
    margin: 0;
    color: var(--sd-color-muted, #64748b);
    font-size: 14px;
}

body.site-order-presentation .ops-guide-steps {
    list-style: none;
    margin: 20px 0 0;
    padding: 0;
}

body.site-order-presentation .ops-guide-step {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--sd-color-border);
}

body.site-order-presentation .ops-guide-step:last-child {
    border-bottom: none;
}

body.site-order-presentation .ops-guide-step-num {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    background: var(--sd-color-surface-alt, #f1f5f9);
    font-weight: 700;
    font-size: 13px;
}

body.site-order-presentation .ops-guide-phase--public .ops-guide-step-num { background: #dbeafe; color: #1d4ed8; }
body.site-order-presentation .ops-guide-phase--customer .ops-guide-step-num { background: #dcfce7; color: #166534; }
body.site-order-presentation .ops-guide-phase--specialist .ops-guide-step-num { background: #ffedd5; color: #c2410c; }
body.site-order-presentation .ops-guide-phase--admin .ops-guide-step-num { background: #ede9fe; color: #6d28d9; }

body.site-order-presentation .ops-guide-step-body h3 {
    margin: 0 0 8px;
    font-size: 1rem;
}

body.site-order-presentation .ops-guide-step-body p,
body.site-order-presentation .ops-guide-step-body li {
    font-size: 14px;
    line-height: 1.7;
}

body.site-order-presentation .ops-guide-substeps {
    margin: 8px 0;
    padding-right: 20px;
}

body.site-order-presentation .ops-guide-checklist {
    padding: 20px;
    margin-bottom: 20px;
}

body.site-order-presentation .ops-guide-check-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 10px;
}

body.site-order-presentation .ops-guide-check {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    cursor: pointer;
}

body.site-order-presentation .ops-guide-footer {
    text-align: center;
    font-size: 13px;
    color: var(--sd-color-muted, #64748b);
}

body.site-order-presentation .ops-jalali-date {
    direction: ltr;
    text-align: left;
}

body.site-order-presentation #ui-datepicker-div {
    z-index: 9999 !important;
    font-family: Tahoma, sans-serif;
}

