/* Pazartoptan Design System */
:root {
    --pz-brand: #0f766e;
    --pz-brand-dark: #115e59;
    --pz-shadow: 0 4px 24px -4px rgba(15, 118, 110, 0.14);
    --pz-radius: 1rem;
    --pz-transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Animations */
@keyframes pz-fade-in {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes pz-fade-in-up {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes pz-slide-in-left {
    from { opacity: 0; transform: translateX(-16px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes pz-scale-in {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}
@keyframes pz-shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}
@keyframes pz-pulse-ring {
    0% { box-shadow: 0 0 0 0 rgba(79, 70, 229, 0.4); }
    70% { box-shadow: 0 0 0 8px rgba(79, 70, 229, 0); }
    100% { box-shadow: 0 0 0 0 rgba(79, 70, 229, 0); }
}
@keyframes pz-spin {
    to { transform: rotate(360deg); }
}
@keyframes pz-toast-in {
    from { opacity: 0; transform: translateX(100%); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes pz-toast-out {
    from { opacity: 1; transform: translateX(0); }
    to { opacity: 0; transform: translateX(100%); }
}
@keyframes pz-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.pz-animate-in { animation: pz-fade-in 0.5s ease-out both; }
.pz-animate-in-up { animation: pz-fade-in-up 0.6s ease-out both; }
.pz-animate-scale { animation: pz-scale-in 0.4s ease-out both; }
.pz-stagger > * { animation: pz-fade-in-up 0.5s ease-out both; }
.pz-stagger > *:nth-child(1) { animation-delay: 0.05s; }
.pz-stagger > *:nth-child(2) { animation-delay: 0.1s; }
.pz-stagger > *:nth-child(3) { animation-delay: 0.15s; }
.pz-stagger > *:nth-child(4) { animation-delay: 0.2s; }
.pz-stagger > *:nth-child(5) { animation-delay: 0.25s; }
.pz-stagger > *:nth-child(6) { animation-delay: 0.3s; }

/* Cards */
.pz-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: var(--pz-radius);
    transition: box-shadow var(--pz-transition), border-color var(--pz-transition), transform var(--pz-transition);
}
.pz-card:hover {
    box-shadow: var(--pz-shadow);
}
.pz-card-interactive:hover {
    border-color: #a5b4fc;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px -8px rgba(79, 70, 229, 0.18);
}

/* Stat cards */
.pz-stat-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--pz-radius);
    padding: 1.25rem;
    transition: transform var(--pz-transition), box-shadow var(--pz-transition);
}
.pz-stat-card:hover { transform: translateY(-2px); }
.pz-stat-card::after {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 80px; height: 80px;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(20%, -20%);
}

/* Gradient stat */
.pz-stat-gradient {
    background: linear-gradient(135deg, #4f46e5 0%, #6366f1 50%, #4338ca 100%);
    color: white;
    box-shadow: 0 8px 32px -4px rgba(79, 70, 229, 0.35);
}

/* Buttons */
.pz-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 0.75rem;
    transition: all var(--pz-transition);
    cursor: pointer;
    border: none;
    line-height: 1.25;
}
.pz-btn:disabled { opacity: 0.6; cursor: not-allowed; }
.pz-btn-primary {
    background: linear-gradient(135deg, #4f46e5, #6366f1);
    color: white;
    box-shadow: 0 4px 14px -2px rgba(79, 70, 229, 0.4);
}
.pz-btn-primary:hover:not(:disabled) {
    background: linear-gradient(135deg, #4338ca, #4f46e5);
    box-shadow: 0 6px 20px -2px rgba(79, 70, 229, 0.5);
    transform: translateY(-1px);
}
.pz-btn-secondary {
    background: white;
    color: #334155;
    border: 1px solid #e2e8f0;
}
.pz-btn-secondary:hover:not(:disabled) {
    background: #f8fafc;
    border-color: #cbd5e1;
}
.pz-btn-outline {
    background: white;
    color: #1e293b;
    border: 1px solid #cbd5e1;
}
.pz-btn-outline:hover:not(:disabled) {
    background: #f8fafc;
    border-color: #94a3b8;
}
.pz-btn-ghost {
    background: transparent;
    color: #4f46e5;
}
.pz-btn-ghost:hover:not(:disabled) { background: #eef2ff; }
.pz-btn-danger {
    background: linear-gradient(135deg, #dc2626, #ef4444);
    color: white;
}
.pz-btn-sm { padding: 0.375rem 0.875rem; font-size: 0.8125rem; }
.pz-btn-lg { padding: 0.875rem 1.75rem; font-size: 1rem; }
.pz-btn-loading { pointer-events: none; position: relative; }
.pz-btn-loading .pz-btn-text { opacity: 0; }
.pz-btn-loading::after {
    content: '';
    position: absolute;
    width: 1rem; height: 1rem;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: pz-spin 0.6s linear infinite;
}

/* Forms */
.pz-input {
    width: 100%;
    padding: 0.625rem 0.875rem;
    font-size: 0.875rem;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    background: white;
    transition: border-color var(--pz-transition), box-shadow var(--pz-transition);
}
.pz-input:focus {
    outline: none;
    border-color: #818cf8;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
}
.pz-input-icon { padding-left: 2.5rem; }
.pz-input-wrap { position: relative; }
.pz-input-wrap .pz-input-icon-el {
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    pointer-events: none;
}
.pz-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: #64748b;
    margin-bottom: 0.375rem;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}
.pz-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    padding-right: 2.5rem;
}

/* Tables */
.pz-table-wrap { overflow: hidden; border-radius: var(--pz-radius); border: 1px solid #e2e8f0; background: white; }
.pz-table { width: 100%; font-size: 0.875rem; }
.pz-table thead { background: #f8fafc; }
.pz-table th {
    padding: 0.75rem 1.25rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #64748b;
}
.pz-table td { padding: 0.875rem 1.25rem; border-top: 1px solid #f1f5f9; }
.pz-table tbody tr { transition: background var(--pz-transition); }
.pz-table tbody tr:hover { background: #f8fafc; }

/* Sidebar */
.pz-sidebar {
    background:
        linear-gradient(180deg, rgba(240, 253, 250, 0.55) 0%, transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border-right: 1px solid #e2e8f0;
}
@media (min-width: 1024px) {
    .pz-sidebar {
        overflow: visible;
    }
}
.pz-sidebar-nav {
    scrollbar-width: thin;
    scrollbar-color: #cbd5e1 transparent;
}
@media (min-width: 1024px) {
    .pz-sidebar-nav {
        overflow: visible;
    }
}
.pz-sidebar-nav::-webkit-scrollbar { width: 5px; }
.pz-sidebar-nav::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 9999px;
}

/* Compact flyout side menu */
.pz-side-menu {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    padding: 0.1rem;
}
.pz-side-fly {
    position: relative;
}
.pz-side-item {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    width: 100%;
    padding: 0.58rem 0.72rem;
    border-radius: 0.8rem;
    border: 1px solid transparent;
    background: transparent;
    color: #475569;
    font-size: 0.84rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    text-align: left;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
    cursor: pointer;
    text-decoration: none;
}
.pz-side-item__icon {
    width: 1.85rem;
    height: 1.85rem;
    border-radius: 0.6rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: #f1f5f9;
    color: #64748b;
    transition: inherit;
}
.pz-side-item__label {
    flex: 1;
    min-width: 0;
    line-height: 1.2;
}
.pz-side-item__chevron {
    color: #94a3b8;
    display: inline-flex;
    transition: transform 0.2s ease, color 0.2s ease;
}
.pz-side-item__badge {
    margin-left: auto;
    font-size: 0.625rem;
    font-weight: 800;
    background: #ef4444;
    color: #fff;
    min-width: 1.125rem;
    height: 1.125rem;
    padding: 0 0.3rem;
    border-radius: 9999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.pz-side-item:hover,
.pz-side-item.is-open {
    background: #f0fdfa;
    color: #0f766e;
    border-color: #ccfbf1;
}
.pz-side-item:hover .pz-side-item__icon,
.pz-side-item.is-open .pz-side-item__icon {
    background: linear-gradient(135deg, #14b8a6, #0f766e);
    color: #fff;
    box-shadow: 0 8px 16px -10px rgba(15, 118, 110, 0.8);
}
.pz-side-item:hover .pz-side-item__chevron,
.pz-side-item.is-open .pz-side-item__chevron {
    color: #0f766e;
}
.pz-side-item.is-active {
    background: linear-gradient(135deg, #ecfdf5, #ccfbf1);
    color: #115e59;
    border-color: #99f6e4;
    box-shadow: 0 1px 2px rgba(15, 118, 110, 0.08);
}
.pz-side-item.is-active .pz-side-item__icon {
    background: linear-gradient(135deg, #14b8a6, #0f766e);
    color: #fff;
    box-shadow: 0 8px 16px -10px rgba(15, 118, 110, 0.8);
}
.pz-side-item.is-active .pz-side-item__chevron {
    color: #0f766e;
}

.pz-side-panel {
    z-index: 70;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    box-shadow:
        0 24px 48px -28px rgba(15, 23, 42, 0.45),
        0 8px 16px -12px rgba(15, 118, 110, 0.18);
    overflow: hidden;
}
.pz-side-panel__head {
    padding: 0.9rem 1rem 0.75rem;
    border-bottom: 1px solid #f1f5f9;
    background:
        radial-gradient(420px 120px at 0% 0%, rgba(20, 184, 166, 0.12), transparent 55%),
        linear-gradient(180deg, #ffffff, #f8fafc);
}
.pz-side-panel__title {
    font-size: 0.9rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.02em;
}
.pz-side-panel__hint {
    margin-top: 0.15rem;
    font-size: 0.7rem;
    color: #64748b;
}
.pz-side-panel__body {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    padding: 0.45rem;
    max-height: min(70vh, 28rem);
    overflow-y: auto;
}
.pz-side-sublink {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.62rem 0.7rem;
    border-radius: 0.75rem;
    color: #475569;
    font-size: 0.8125rem;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid transparent;
    transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}
.pz-side-sublink__icon {
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 0.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
    color: #64748b;
    flex-shrink: 0;
}
.pz-side-sublink__label {
    flex: 1;
    min-width: 0;
    line-height: 1.25;
}
.pz-side-sublink:hover {
    background: #f0fdfa;
    color: #0f766e;
    border-color: #ccfbf1;
}
.pz-side-sublink:hover .pz-side-sublink__icon {
    background: #ccfbf1;
    color: #0f766e;
}
.pz-side-sublink.is-active {
    background: linear-gradient(135deg, #ecfdf5, #ccfbf1);
    color: #115e59;
    border-color: #99f6e4;
}
.pz-side-sublink.is-active .pz-side-sublink__icon {
    background: linear-gradient(135deg, #14b8a6, #0f766e);
    color: #fff;
}

/* Desktop: flyout to the right */
@media (min-width: 1024px) {
    .pz-side-panel {
        position: absolute;
        left: calc(100% + 0.55rem);
        top: 0;
        width: 17.5rem;
        border-radius: 1rem;
    }
    .pz-side-panel::before {
        content: '';
        position: absolute;
        left: -0.7rem;
        top: 0;
        bottom: 0;
        width: 0.7rem;
    }
    .pz-side-item--trigger .pz-side-item__chevron {
        transform: none;
    }
    .pz-side-item--trigger.is-open .pz-side-item__chevron,
    .pz-side-fly:hover .pz-side-item__chevron {
        transform: translateX(2px);
    }
    .pz-side-panel-enter { transition: opacity 0.16s ease, transform 0.16s ease; }
    .pz-side-panel-enter-start { opacity: 0; transform: translateX(-6px); }
    .pz-side-panel-enter-end { opacity: 1; transform: translateX(0); }
    .pz-side-panel-leave { transition: opacity 0.12s ease, transform 0.12s ease; }
    .pz-side-panel-leave-start { opacity: 1; transform: translateX(0); }
    .pz-side-panel-leave-end { opacity: 0; transform: translateX(-4px); }
}

/* Mobile: accordion under the trigger */
@media (max-width: 1023px) {
    .pz-side-panel {
        position: static;
        margin: 0.25rem 0 0.45rem;
        border-radius: 0.9rem;
        width: 100%;
    }
    .pz-side-item--trigger.is-open .pz-side-item__chevron {
        transform: rotate(90deg);
    }
    .pz-side-panel-enter { transition: opacity 0.16s ease; }
    .pz-side-panel-enter-start { opacity: 0; }
    .pz-side-panel-enter-end { opacity: 1; }
    .pz-side-panel-leave { transition: opacity 0.12s ease; }
    .pz-side-panel-leave-start { opacity: 1; }
    .pz-side-panel-leave-end { opacity: 0; }
}

html.dark .pz-sidebar {
    background:
        linear-gradient(180deg, rgba(15, 118, 110, 0.12) 0%, transparent 30%),
        linear-gradient(180deg, #0f172a 0%, #020617 100%);
    border-right-color: #1f2937;
}
html.dark .pz-side-item { color: #cbd5e1; }
html.dark .pz-side-item__icon { background: #1e293b; color: #94a3b8; }
html.dark .pz-side-item:hover,
html.dark .pz-side-item.is-open {
    background: rgba(45, 212, 191, 0.08);
    color: #5eead4;
    border-color: rgba(45, 212, 191, 0.2);
}
html.dark .pz-side-item.is-active {
    background: rgba(45, 212, 191, 0.14);
    color: #99f6e4;
    border-color: rgba(45, 212, 191, 0.28);
}
html.dark .pz-side-panel {
    background: #0f172a;
    border-color: #1f2937;
    box-shadow: 0 24px 48px -24px rgba(0, 0, 0, 0.7);
}
html.dark .pz-side-panel__head {
    background: linear-gradient(180deg, #111827, #0f172a);
    border-bottom-color: #1f2937;
}
html.dark .pz-side-panel__title { color: #f8fafc; }
html.dark .pz-side-panel__hint { color: #94a3b8; }
html.dark .pz-side-sublink { color: #cbd5e1; }
html.dark .pz-side-sublink__icon { background: #1e293b; color: #94a3b8; }
html.dark .pz-side-sublink:hover {
    background: rgba(45, 212, 191, 0.08);
    color: #5eead4;
    border-color: rgba(45, 212, 191, 0.18);
}
html.dark .pz-side-sublink.is-active {
    background: rgba(45, 212, 191, 0.14);
    color: #99f6e4;
    border-color: rgba(45, 212, 191, 0.28);
}

/* Legacy class hooks (kept for panel-shell collapsed rules) */
.pz-nav-link-text { }
.pz-nav-group-head,
.pz-nav-group-desc,
.pz-nav-group-count { }

/* Badges */
.pz-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.2rem 0.625rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1.25;
}
.pz-badge-dot::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: currentColor;
}

/* Alerts */
.pz-alert {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    border-radius: var(--pz-radius);
    font-size: 0.875rem;
    animation: pz-fade-in 0.4s ease-out;
}
.pz-alert-success { background: #ecfdf5; border: 1px solid #a7f3d0; color: #065f46; }
.pz-alert-error { background: #fef2f2; border: 1px solid #fecaca; color: #991b1b; }
.pz-alert-warning { background: #fffbeb; border: 1px solid #fde68a; color: #92400e; }
.pz-alert-info { background: #eff6ff; border: 1px solid #bfdbfe; color: #1e40af; }

/* Toast container */
#pz-toast-container {
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    max-width: 24rem;
    pointer-events: none;
}
.pz-toast {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.25rem;
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 10px 40px -8px rgba(0,0,0,0.15), 0 0 0 1px rgba(0,0,0,0.05);
    font-size: 0.875rem;
    font-weight: 500;
    pointer-events: auto;
    animation: pz-toast-in 0.35s ease-out;
}
.pz-toast.removing { animation: pz-toast-out 0.3s ease-in forwards; }
.pz-toast-success { border-left: 4px solid #10b981; }
.pz-toast-error { border-left: 4px solid #ef4444; }
.pz-toast-info { border-left: 4px solid #3b82f6; }
.pz-toast-warning { border-left: 4px solid #f59e0b; }

/* Loading overlay */
.pz-loading-overlay {
    position: fixed;
    inset: 0;
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(4px);
    z-index: 9998;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s, visibility 0.2s;
}
.pz-loading-overlay.active { opacity: 1; visibility: visible; }
.pz-spinner {
    width: 2.5rem; height: 2.5rem;
    border: 3px solid #e2e8f0;
    border-top-color: #4f46e5;
    border-radius: 50%;
    animation: pz-spin 0.7s linear infinite;
}

/* Skeleton */
.pz-skeleton {
    background: linear-gradient(90deg, #f1f5f9 25%, #e2e8f0 50%, #f1f5f9 75%);
    background-size: 200% 100%;
    animation: pz-shimmer 1.5s infinite;
    border-radius: 0.5rem;
}

/* Empty state */
.pz-empty {
    text-align: center;
    padding: 3rem 1.5rem;
}
.pz-empty-icon {
    width: 4rem; height: 4rem;
    margin: 0 auto 1rem;
    background: #f1f5f9;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
}

/* Quick action tiles */
.pz-quick-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: var(--pz-radius);
    text-align: center;
    transition: all var(--pz-transition);
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}
.pz-quick-action:hover {
    border-color: #a5b4fc;
    transform: translateY(-3px);
    box-shadow: 0 12px 32px -8px rgba(79, 70, 229, 0.2);
}
.pz-quick-action-icon {
    width: 3rem; height: 3rem;
    border-radius: 0.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #eef2ff, #e0e7ff);
    color: #4f46e5;
    transition: transform var(--pz-transition);
}
.pz-quick-action:hover .pz-quick-action-icon { transform: scale(1.1); }

/* Notification item */
.pz-notification {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 1.5rem;
    transition: background var(--pz-transition);
    text-decoration: none;
    color: inherit;
}
.pz-notification:hover { background: #f8fafc; }
.pz-notification.unread { background: linear-gradient(90deg, #eef2ff 0%, transparent 100%); }

/* Page header */
.pz-page-header { margin-bottom: 2rem; }
.pz-page-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.025em;
}
.pz-page-subtitle { color: #64748b; font-size: 0.875rem; margin-top: 0.25rem; }

/* Mobile sidebar overlay */
.pz-sidebar-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.5);
    backdrop-filter: blur(4px);
    z-index: 40;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}
.pz-sidebar-overlay.active { opacity: 1; visibility: visible; }

/* Auth glass card */
.pz-auth-card {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.8);
    border-radius: 1.25rem;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.12);
    animation: pz-scale-in 0.5s ease-out;
}

/* Homepage */
.pz-hero-gradient {
    background: radial-gradient(ellipse 80% 60% at 50% -20%, rgba(99,102,241,0.15), transparent),
                linear-gradient(180deg, #eef2ff 0%, #ffffff 60%);
}
.pz-feature-card {
    padding: 1.75rem;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 1.25rem;
    transition: all 0.3s ease;
}
.pz-feature-card:hover {
    border-color: #c7d2fe;
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -12px rgba(79, 70, 229, 0.15);
}
.pz-feature-icon {
    width: 3rem; height: 3rem;
    border-radius: 0.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #94a3b8; }

/* Counter animation */
.pz-counter { font-variant-numeric: tabular-nums; }

/* Product card */
.pz-product-card {
    border-radius: var(--pz-radius);
    overflow: hidden;
    border: 1px solid #e2e8f0;
    background: white;
    transition: all var(--pz-transition);
    cursor: pointer;
}
.pz-product-card:hover {
    border-color: #a5b4fc;
    box-shadow: 0 12px 32px -8px rgba(79, 70, 229, 0.15);
    transform: translateY(-2px);
}
.pz-product-card.selected {
    border-color: #4f46e5;
    box-shadow: 0 0 0 2px rgba(79, 70, 229, 0.2);
}

/* Marketplace card (legacy) */
.pz-mp-card {
    border-radius: var(--pz-radius);
    padding: 1rem;
    text-align: center;
    border: 2px solid #e2e8f0;
    background: white;
    cursor: pointer;
    transition: all var(--pz-transition);
}
.pz-mp-card:hover { border-color: #a5b4fc; transform: translateY(-2px); }
.pz-mp-card.connected { border-color: #34d399; background: linear-gradient(180deg, #ecfdf5, white); }

/* ===== Marketplaces page ===== */
.pz-mp-page { display: grid; gap: 1.5rem; }
.pz-mp-logo { display: block; max-width: 100%; height: auto; }
.pz-mp-logo--mark {
    width: 48px;
    height: 48px;
    object-fit: contain;
    border-radius: 12px;
    background: #fff;
}
.pz-mp-logo--full { height: 28px; width: auto; object-fit: contain; }
.pz-mp-tile--trendyol { --mp-accent: #F27A1A; }
.pz-mp-tile--hepsiburada { --mp-accent: #FF6000; }
.pz-mp-tile--n11 { --mp-accent: #7B1FA2; }
.pz-mp-tile--pazarama { --mp-accent: #2F6BFF; }
.pz-mp-tile--idefix { --mp-accent: #006BDC; }
.pz-mp-tile--ciceksepeti { --mp-accent: #E91E63; }
.pz-mp-tile--amazon { --mp-accent: #FF9900; }
.pz-mp-tile--temu { --mp-accent: #FF6A00; }
.pz-mp-tile--woocommerce { --mp-accent: #7F54B3; }
.pz-mp-tile--shopify { --mp-accent: #95BF47; }

.pz-mp-hero {
    display: grid;
    gap: 1.25rem;
    padding: 1.5rem 1.6rem;
    border-radius: 1.25rem;
    color: #fff;
    background:
        radial-gradient(ellipse 70% 80% at 100% 0%, rgba(255,255,255,.16), transparent 55%),
        linear-gradient(135deg, #0f172a 0%, #1e3a5f 48%, #0ea5e9 140%);
    box-shadow: 0 18px 40px -28px rgba(15, 23, 42, .65);
}
@media (min-width: 900px) {
    .pz-mp-hero { grid-template-columns: 1.5fr .9fr; align-items: center; }
}
.pz-mp-hero__eyebrow {
    display: inline-flex;
    padding: .2rem .65rem;
    border-radius: 999px;
    background: rgba(255,255,255,.12);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
}
.pz-mp-hero h1 {
    margin: .7rem 0 .45rem;
    font-size: clamp(1.45rem, 2.4vw, 1.9rem);
    font-weight: 800;
    letter-spacing: -.02em;
    line-height: 1.2;
}
.pz-mp-hero__copy p {
    margin: 0;
    max-width: 40rem;
    color: rgba(255,255,255,.82);
    font-size: .95rem;
    line-height: 1.55;
}
.pz-mp-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: .65rem;
    margin-top: 1.1rem;
}
.pz-mp-hero__stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .65rem;
}
.pz-mp-stat {
    padding: .9rem .75rem;
    border-radius: 1rem;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.14);
    text-align: center;
}
.pz-mp-stat__value {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.1;
}
.pz-mp-stat__label {
    display: block;
    margin-top: .25rem;
    font-size: .72rem;
    color: rgba(255,255,255,.75);
}

.pz-mp-steps {
    display: grid;
    gap: .75rem;
}
@media (min-width: 800px) {
    .pz-mp-steps { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
.pz-mp-step {
    display: flex;
    gap: .85rem;
    align-items: flex-start;
    padding: 1rem 1.1rem;
    border-radius: 1rem;
    background: #fff;
    border: 1px solid #e2e8f0;
}
.pz-mp-step > span {
    flex: 0 0 auto;
    width: 1.85rem;
    height: 1.85rem;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: #eef2ff;
    color: #4338ca;
    font-size: .85rem;
    font-weight: 800;
}
.pz-mp-step strong { display: block; font-size: .92rem; color: #0f172a; }
.pz-mp-step p { margin: .2rem 0 0; font-size: .8rem; color: #64748b; line-height: 1.45; }

.pz-mp-section__head {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: .9rem;
}
.pz-mp-section__head h2 {
    margin: 0;
    font-size: 1.15rem;
    font-weight: 800;
    color: #0f172a;
}
.pz-mp-section__head p {
    margin: .25rem 0 0;
    font-size: .85rem;
    color: #64748b;
}

.pz-mp-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .85rem;
}
@media (min-width: 900px) {
    .pz-mp-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (min-width: 1200px) {
    .pz-mp-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
}

.pz-mp-tile {
    display: flex;
    flex-direction: column;
    gap: .55rem;
    padding: 1rem;
    border-radius: 1.1rem;
    background:
        linear-gradient(180deg, color-mix(in srgb, var(--mp-accent, #6366f1) 9%, #fff) 0%, #fff 48%),
        #fff;
    border: 1px solid #e2e8f0;
    border-top: 3px solid var(--mp-accent, #6366f1);
    box-shadow: 0 10px 28px -24px rgba(15, 23, 42, .45);
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.pz-mp-tile:hover {
    transform: translateY(-2px);
    border-color: color-mix(in srgb, var(--mp-accent, #94a3b8) 40%, #e2e8f0);
    box-shadow: 0 16px 34px -24px rgba(15, 23, 42, .5);
}
.pz-mp-tile.is-connected {
    border-color: #86efac;
    background: linear-gradient(180deg, #f0fdf4 0%, #fff 55%);
}
.pz-mp-tile__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .5rem;
}
.pz-mp-tile__logo {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    overflow: hidden;
    background: #f8fafc;
}
.pz-mp-tile h3 {
    margin: 0;
    font-size: .98rem;
    font-weight: 800;
    color: #0f172a;
}
.pz-mp-tile__desc {
    margin: 0;
    min-height: 2.4em;
    font-size: .78rem;
    color: #64748b;
    line-height: 1.4;
}
.pz-mp-tile__actions {
    display: flex;
    flex-wrap: wrap;
    gap: .4rem;
    margin-top: auto;
    padding-top: .35rem;
}

.pz-mp-chip {
    display: inline-flex;
    align-items: center;
    padding: .18rem .55rem;
    border-radius: 999px;
    background: #f1f5f9;
    color: #475569;
    font-size: .68rem;
    font-weight: 700;
}
.pz-mp-chip--ok {
    background: #dcfce7;
    color: #166534;
}

.pz-mp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .35rem;
    border: 0;
    border-radius: .8rem;
    padding: .55rem .9rem;
    font-size: .8rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: background .15s ease, color .15s ease, opacity .15s ease;
}
.pz-mp-btn:disabled { opacity: .5; cursor: not-allowed; }
.pz-mp-btn--primary { background: #4f46e5; color: #fff; }
.pz-mp-btn--primary:hover:not(:disabled) { background: #4338ca; }
.pz-mp-btn--soft { background: #eef2ff; color: #3730a3; }
.pz-mp-btn--soft:hover { background: #e0e7ff; }
.pz-mp-btn--ghost { background: #f8fafc; color: #334155; border: 1px solid #e2e8f0; }
.pz-mp-btn--ghost:hover { background: #f1f5f9; }
.pz-mp-btn--danger { background: #fff1f2; color: #be123c; }
.pz-mp-btn--danger:hover { background: #ffe4e6; }

.pz-mp-connections { display: grid; gap: 1rem; }
.pz-mp-conn {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 1.15rem;
    padding: 1.1rem 1.2rem;
    box-shadow: 0 12px 30px -26px rgba(15, 23, 42, .45);
}
.pz-mp-conn__head {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
}
.pz-mp-conn__brand {
    display: flex;
    align-items: center;
    gap: .8rem;
}
.pz-mp-conn__mark { width: 44px; height: 44px; border-radius: 11px; }
.pz-mp-conn__brand h3 { margin: 0; font-size: 1rem; font-weight: 800; }
.pz-mp-conn__brand p { margin: .15rem 0 0; font-size: .8rem; color: #64748b; }

.pz-mp-conn__meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .65rem;
    margin: 1rem 0 .85rem;
}
.pz-mp-conn__meta > div {
    padding: .7rem .75rem;
    border-radius: .85rem;
    background: #f8fafc;
    border: 1px solid #eef2f7;
}
.pz-mp-conn__meta span {
    display: block;
    font-size: .7rem;
    color: #94a3b8;
    font-weight: 600;
}
.pz-mp-conn__meta strong {
    display: block;
    margin-top: .2rem;
    font-size: .82rem;
    color: #0f172a;
}

.pz-mp-toggles {
    display: flex;
    flex-wrap: wrap;
    gap: .45rem;
}
.pz-mp-toggle {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    padding: .35rem .65rem;
    border-radius: 999px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    font-size: .75rem;
    color: #475569;
    cursor: pointer;
}
.pz-mp-toggle input { accent-color: #4f46e5; }

.pz-mp-conn__actions {
    display: flex;
    flex-wrap: wrap;
    gap: .4rem;
    margin-top: .85rem;
}

.pz-mp-edit {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px dashed #e2e8f0;
}
.pz-mp-info {
    display: flex;
    gap: .55rem;
    align-items: flex-start;
    margin-bottom: .85rem;
    padding: .75rem .9rem;
    border-radius: .85rem;
    background: #eff6ff;
    color: #1e40af;
    font-size: .8rem;
    line-height: 1.45;
}
.pz-mp-info p { margin: 0; }

.pz-mp-connect {
    display: grid;
    gap: 1rem;
    padding: 1.2rem;
    border-radius: 1.2rem;
    background: #fff;
    border: 1px solid #e2e8f0;
}
@media (min-width: 980px) {
    .pz-mp-connect { grid-template-columns: .9fr 1.1fr; gap: 1.4rem; }
}
.pz-mp-connect__aside h2 {
    margin: 0 0 .4rem;
    font-size: 1.15rem;
    font-weight: 800;
}
.pz-mp-connect__aside > p {
    margin: 0 0 1rem;
    color: #64748b;
    font-size: .88rem;
    line-height: 1.5;
}
.pz-mp-guide {
    padding: .9rem 1rem;
    border-radius: .95rem;
    background: linear-gradient(180deg, #f8fafc, #fff);
    border: 1px solid #e2e8f0;
    margin-bottom: 1rem;
}
.pz-mp-guide h4 {
    margin: 0 0 .35rem;
    font-size: .82rem;
    font-weight: 800;
    color: #0f172a;
}
.pz-mp-guide p {
    margin: 0;
    font-size: .8rem;
    color: #475569;
    line-height: 1.5;
}
.pz-mp-guide__tip {
    display: inline-block;
    margin-top: .35rem;
    color: #64748b;
}
.pz-mp-bullets {
    margin: 0;
    padding-left: 1.1rem;
    color: #64748b;
    font-size: .8rem;
    line-height: 1.55;
}
.pz-mp-bullets li + li { margin-top: .25rem; }

.pz-mp-form { display: grid; gap: .9rem; }
.pz-mp-form__grid {
    display: grid;
    gap: .85rem;
}
@media (min-width: 700px) {
    .pz-mp-form__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
.pz-mp-label {
    display: block;
    margin-bottom: .35rem;
    font-size: .75rem;
    font-weight: 700;
    color: #64748b;
}
.pz-mp-input {
    width: 100%;
    border: 1px solid #e2e8f0;
    border-radius: .85rem;
    padding: .7rem .85rem;
    font-size: .9rem;
    background: #fff;
    color: #0f172a;
    outline: none;
    transition: border-color .15s ease, box-shadow .15s ease;
}
.pz-mp-input:focus {
    border-color: #818cf8;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, .15);
}
.pz-mp-input.is-readonly {
    background: #f8fafc;
    color: #64748b;
    cursor: not-allowed;
}
.pz-mp-help {
    margin: .35rem 0 0;
    font-size: .72rem;
    color: #94a3b8;
    line-height: 1.4;
}
.pz-mp-form__actions {
    display: flex;
    flex-wrap: wrap;
    gap: .55rem;
}
.pz-mp-verify-status {
    padding: .75rem .9rem;
    border-radius: .85rem;
    font-size: .82rem;
    line-height: 1.4;
}
.pz-mp-verify-status.is-ok {
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}
.pz-mp-verify-status.is-err {
    background: #fff1f2;
    color: #9f1239;
    border: 1px solid #fecdd3;
}

@media (max-width: 640px) {
    .pz-mp-conn__meta { grid-template-columns: 1fr; }
    .pz-mp-hero__stats { grid-template-columns: 1fr; }
}


/* Wallet gradient card */
.pz-wallet-card {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 50%, #4338ca 100%);
    border-radius: 1.25rem;
    padding: 1.5rem;
    color: white;
    position: relative;
    overflow: hidden;
}
.pz-wallet-card::before {
    content: '';
    position: absolute;
    top: -50%; right: -20%;
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

/* Responsive table cards on mobile */
@media (max-width: 768px) {
    .pz-table-mobile-stack thead { display: none; }
    .pz-table-mobile-stack tr {
        display: block;
        padding: 1rem;
        border-bottom: 1px solid #f1f5f9;
    }
    .pz-table-mobile-stack td {
        display: flex;
        justify-content: space-between;
        padding: 0.375rem 0;
        border: none;
    }
    .pz-table-mobile-stack td::before {
        content: attr(data-label);
        font-weight: 600;
        color: #64748b;
        font-size: 0.75rem;
    }
}

/* ═══════════════════════════════════════════
   Public / Corporate Homepage
   ═══════════════════════════════════════════ */
.pz-public-body {
    background: #ffffff;
    font-family: 'Inter', sans-serif;
}
[x-cloak] { display: none !important; }

.pz-container {
    max-width: 76rem;
    margin: 0 auto;
    padding-left: 1rem;
    padding-right: 1rem;
}
@media (min-width: 1024px) {
    .pz-container { padding-left: 1.5rem; padding-right: 1.5rem; }
}

/* Top bar */
.pz-topbar {
    background: #0b1120;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 0.5rem 0;
}

/* Header */
.pz-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(15, 23, 42, 0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transition: box-shadow 0.3s, background 0.3s;
}
.pz-header-scrolled {
    background: rgba(15, 23, 42, 0.98);
    box-shadow: 0 8px 32px -8px rgba(0,0,0,0.4);
}

.pz-logo-mark {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.75rem;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    color: white;
    font-weight: 800;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px -2px rgba(79, 70, 229, 0.5);
}

.pz-nav-item {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #94a3b8;
    border-radius: 0.5rem;
    transition: color 0.2s, background 0.2s;
}
.pz-nav-item:hover {
    color: #ffffff;
    background: rgba(255,255,255,0.06);
}

.pz-mobile-nav {
    display: block;
    padding: 0.75rem 1rem;
    color: #cbd5e1;
    font-weight: 500;
    border-radius: 0.5rem;
    transition: background 0.2s;
}
.pz-mobile-nav:hover { background: rgba(255,255,255,0.06); color: white; }

.pz-btn-ghost-light {
    background: transparent;
    color: #e2e8f0;
    border: 1px solid rgba(255,255,255,0.15);
}
.pz-btn-ghost-light:hover:not(:disabled) {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.25);
    color: white;
}

.pz-btn-outline-light {
    background: transparent;
    color: #e2e8f0;
    border: 1px solid rgba(255,255,255,0.2);
}
.pz-btn-outline-light:hover:not(:disabled) {
    background: rgba(255,255,255,0.1);
    color: white;
}

.pz-btn-white {
    background: white;
    color: #4338ca;
    font-weight: 700;
    box-shadow: 0 8px 24px -4px rgba(0,0,0,0.2);
}
.pz-btn-white:hover:not(:disabled) {
    background: #f8fafc;
    transform: translateY(-1px);
}

/* Hero */
.pz-hero {
    position: relative;
    background: #0f172a;
    overflow: hidden;
}
.pz-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 50% at 20% 40%, rgba(79, 70, 229, 0.25), transparent),
        radial-gradient(ellipse 50% 40% at 80% 20%, rgba(124, 58, 237, 0.2), transparent),
        linear-gradient(180deg, #0f172a 0%, #1e1b4b 100%);
}
.pz-hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(180deg, black 30%, transparent 100%);
}

.pz-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 9999px;
    color: #c7d2fe;
    font-size: 0.8125rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.pz-hero-title {
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: white;
    margin-bottom: 1.25rem;
}

.pz-text-gradient {
    background: linear-gradient(135deg, #818cf8, #a78bfa, #c4b5fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pz-hero-desc {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #94a3b8;
    max-width: 32rem;
}

/* Hero visual */
.pz-hero-visual {
    position: relative;
    height: 420px;
}
.pz-hero-dashboard {
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 1.25rem;
    padding: 1.5rem;
    backdrop-filter: blur(12px);
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.4);
}
.pz-hero-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.125rem;
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 1rem;
    backdrop-filter: blur(8px);
    box-shadow: 0 12px 32px -8px rgba(0,0,0,0.4);
    z-index: 2;
    animation: pz-float 4s ease-in-out infinite;
}
.pz-hero-card-1 { top: -10px; right: -10px; animation-delay: 0s; }
.pz-hero-card-2 { bottom: 40px; left: -20px; animation-delay: 1.5s; }

/* Trust bar */
.pz-trust-bar {
    background: white;
    border-bottom: 1px solid #e2e8f0;
    padding: 2rem 0;
    margin-top: -1px;
}

/* Section typography */
.pz-section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #4f46e5;
    margin-bottom: 0.75rem;
}
.pz-section-title {
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.025em;
    color: #0f172a;
    margin-bottom: 0.75rem;
}
.pz-section-desc {
    font-size: 1.0625rem;
    color: #64748b;
    line-height: 1.65;
}

/* Home product cards */
.pz-home-product {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.pz-home-product:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -12px rgba(79, 70, 229, 0.15);
    border-color: #c7d2fe;
}
.pz-home-product-img-wrap {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: #f8fafc;
}
.pz-home-product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.pz-home-product:hover .pz-home-product-img { transform: scale(1.06); }
.pz-home-product-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e1;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
}
.pz-home-product-badge {
    position: absolute;
    top: 0.625rem;
    left: 0.625rem;
    padding: 0.2rem 0.625rem;
    border-radius: 9999px;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}
.pz-home-product-badge-success { background: #ecfdf5; color: #059669; }
.pz-home-product-badge-warning { background: #fffbeb; color: #d97706; }
.pz-home-product-badge-danger { background: #fef2f2; color: #dc2626; }
.pz-home-product-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}
.pz-home-product:hover .pz-home-product-overlay { opacity: 1; }
.pz-home-product-body { padding: 1rem; }
.pz-home-product-cat {
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #6366f1;
}
.pz-home-product-name {
    font-size: 0.875rem;
    font-weight: 600;
    color: #0f172a;
    line-height: 1.4;
    margin-top: 0.25rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.pz-home-product-price {
    font-size: 1rem;
    font-weight: 800;
    color: #4f46e5;
}

/* Corporate feature cards */
.pz-corp-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 1.25rem;
    padding: 1.75rem;
    transition: all 0.3s;
}
.pz-corp-card:hover {
    border-color: #c7d2fe;
    box-shadow: 0 16px 40px -12px rgba(79, 70, 229, 0.12);
    transform: translateY(-3px);
}
.pz-corp-card-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    transition: transform 0.3s;
}
.pz-corp-card:hover .pz-corp-card-icon { transform: scale(1.08); }

/* Marketplace section */
.pz-marketplace-section {
    background: linear-gradient(180deg, #0f172a 0%, #1e1b4b 100%);
    position: relative;
    overflow: hidden;
}
.pz-marketplace-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 50% at 50% 100%, rgba(79, 70, 229, 0.2), transparent);
}
.pz-mp-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.75rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 1rem;
    color: white;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s;
    position: relative;
    z-index: 1;
}
.pz-mp-badge:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(129, 140, 248, 0.5);
    transform: translateY(-2px);
}

/* CTA banner */
.pz-cta-banner {
    position: relative;
    border-radius: 1.5rem;
    padding: 4rem 2rem;
    overflow: hidden;
    background: linear-gradient(135deg, #0f766e 0%, #115e59 45%, #134e4a 100%);
    box-shadow: 0 25px 50px -12px rgba(15, 118, 110, 0.4);
}
.pz-cta-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.15), transparent 40%),
        radial-gradient(circle at 20% 80%, rgba(255,255,255,0.08), transparent 40%);
}

/* Footer */
.pz-footer {
    background: #0b1120;
    color: #94a3b8;
}
.pz-footer-main {
    padding: 4rem 0 3rem;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.pz-footer-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: white;
    margin-bottom: 1.25rem;
}
.pz-footer-link {
    font-size: 0.875rem;
    color: #94a3b8;
    transition: color 0.2s;
}
.pz-footer-link:hover { color: white; }
.pz-footer-bottom {
    padding: 1.25rem 0;
    border-top: 1px solid rgba(255,255,255,0.06);
    background: rgba(0,0,0,0.2);
}
.pz-social-link {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 0.5rem;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    transition: all 0.2s;
}
.pz-social-link:hover {
    background: rgba(79, 70, 229, 0.3);
    border-color: rgba(129, 140, 248, 0.4);
    color: white;
}

/* ── Orders Page (Corporate) ── */
.pz-orders-page {
    --corp-navy: #0f172a;
    --corp-slate: #334155;
    --corp-muted: #64748b;
    --corp-border: #e2e8f0;
    --corp-surface: #ffffff;
    --corp-bg: #f1f5f9;
    --corp-accent: #1e3a5f;
    --corp-accent-light: #2563eb;
}

.pz-orders-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 45%, #1e3a5f 100%);
    border-radius: 1rem;
    padding: 1.5rem 1.75rem;
    color: white;
    box-shadow: 0 10px 40px -12px rgba(15, 23, 42, 0.45);
    margin-bottom: 1.5rem;
}
.pz-orders-hero-label {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
}
.pz-orders-hero-title {
    font-size: 1.375rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-top: 0.25rem;
}
.pz-orders-hero-sub {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.65);
    margin-top: 0.25rem;
}
.pz-orders-kpi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
@media (min-width: 1100px) {
    .pz-orders-kpi-grid { grid-template-columns: repeat(6, 1fr); }
}
@media (max-width: 640px) {
    .pz-orders-kpi-grid { grid-template-columns: 1fr 1fr; }
}
.pz-orders-kpi {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0.75rem;
    padding: 0.875rem 1rem;
}
.pz-orders-kpi-value {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}
.pz-orders-kpi-label {
    font-size: 0.6875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.55);
    margin-top: 0.125rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.pz-orders-toolbar {
    background: var(--corp-surface);
    border: 1px solid var(--corp-border);
    border-radius: 1rem;
    padding: 1.25rem 1.5rem;
    margin-bottom: 1.25rem;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
}
.pz-orders-toolbar-head {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--corp-muted);
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #f1f5f9;
}

.pz-orders-panel {
    background: var(--corp-surface);
    border: 1px solid var(--corp-border);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
}
.pz-orders-panel-head {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    border-bottom: 1px solid var(--corp-border);
}
.pz-orders-panel-title {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--corp-navy);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.pz-orders-panel-meta {
    font-size: 0.8125rem;
    color: var(--corp-muted);
    font-weight: 500;
}

.pz-orders-table { width: 100%; border-collapse: collapse; font-size: 0.875rem; }
.pz-orders-table thead th {
    padding: 0.75rem 1.25rem;
    text-align: left;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--corp-muted);
    background: #f8fafc;
    border-bottom: 1px solid var(--corp-border);
    white-space: nowrap;
}
.pz-orders-table thead th.text-right { text-align: right; }
.pz-orders-table tbody tr {
    border-bottom: 1px solid #f1f5f9;
    transition: background 0.15s ease;
}
.pz-orders-table tbody tr:last-child { border-bottom: none; }
.pz-orders-table tbody tr:hover { background: #f8fafc; }
.pz-orders-table td { padding: 1rem 1.25rem; vertical-align: middle; }

.pz-order-link {
    display: contents;
    color: inherit;
    text-decoration: none;
}
.pz-order-product-cell { display: flex; align-items: center; gap: 0.875rem; min-width: 0; }
.pz-order-thumb-stack { display: flex; align-items: center; flex-shrink: 0; }
.pz-order-thumb-stack > * + * { margin-left: -0.5rem; }
.pz-order-thumb {
    position: relative;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 0.625rem;
    background: #f1f5f9;
    border: 2px solid white;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.08);
    flex-shrink: 0;
}
.pz-order-thumb img { width: 100%; height: 100%; object-fit: cover; position: relative; z-index: 1; }
.pz-order-thumb-icon {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
}
.pz-order-thumb-more {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 0.625rem;
    background: #e2e8f0;
    border: 2px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6875rem;
    font-weight: 700;
    color: var(--corp-slate);
    flex-shrink: 0;
}
.pz-order-number {
    font-weight: 700;
    color: var(--corp-navy);
    font-size: 0.9375rem;
    letter-spacing: -0.01em;
}
.pz-order-product-name {
    font-size: 0.8125rem;
    color: var(--corp-slate);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 14rem;
}
.pz-order-product-meta { font-size: 0.6875rem; color: #94a3b8; margin-top: 0.125rem; }

.pz-corp-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.625rem;
    border-radius: 0.375rem;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    border: 1px solid transparent;
}
.pz-corp-badge--status {
    background: #f1f5f9;
    color: var(--corp-slate);
    border-color: #e2e8f0;
}
.pz-corp-badge--status-pending {
    background: #fffbeb;
    color: #92400e;
    border-color: #fde68a;
}
.pz-corp-badge--status-processing {
    background: #eff6ff;
    color: #1e40af;
    border-color: #bfdbfe;
}
.pz-corp-badge--status-shipped {
    background: #eef2ff;
    color: #3730a3;
    border-color: #c7d2fe;
}
.pz-corp-badge--status-delivered {
    background: #ecfdf5;
    color: #065f46;
    border-color: #a7f3d0;
}
.pz-corp-badge--status-cancelled {
    background: #fef2f2;
    color: #991b1b;
    border-color: #fecaca;
}
.pz-corp-badge--status-returned {
    background: #f5f3ff;
    color: #5b21b6;
    border-color: #ddd6fe;
}
.pz-corp-badge--wallet-warn {
    background: #fffbeb;
    color: #92400e;
    border-color: #fde68a;
}
.pz-corp-badge--wallet-ok {
    background: #ecfdf5;
    color: #065f46;
    border-color: #a7f3d0;
}
.pz-corp-badge--wallet-neutral {
    background: #f8fafc;
    color: var(--corp-muted);
    border-color: #e2e8f0;
}

.pz-order-amount {
    font-weight: 700;
    color: var(--corp-navy);
    font-size: 0.9375rem;
    font-variant-numeric: tabular-nums;
}
.pz-order-date {
    font-size: 0.8125rem;
    color: var(--corp-muted);
    font-variant-numeric: tabular-nums;
}
.pz-order-customer {
    font-size: 0.8125rem;
    color: var(--corp-slate);
    font-weight: 500;
}
.pz-order-action {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.375rem 0.75rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--corp-accent-light);
    background: #eff6ff;
    border: 1px solid #dbeafe;
    border-radius: 0.5rem;
    transition: all 0.15s ease;
    text-decoration: none;
}
a.pz-order-action:hover {
    background: #dbeafe;
    color: #1d4ed8;
}

.pz-orders-mobile-card {
    display: none;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid #f1f5f9;
    text-decoration: none;
    color: inherit;
    transition: background 0.15s ease;
}
.pz-orders-mobile-card:hover { background: #f8fafc; }
.pz-orders-mobile-card:last-child { border-bottom: none; }

@media (max-width: 1024px) {
    .pz-orders-table-wrap { display: none; }
    .pz-orders-mobile-list { display: block; }
}
@media (min-width: 1025px) {
    .pz-orders-mobile-list { display: none; }
}

.pz-orders-empty {
    padding: 3rem 1.5rem;
    text-align: center;
}
.pz-orders-pagination {
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--corp-border);
    background: #fafbfc;
}

/* Product questions (Q&A) */
.pz-qna-page { --qna-accent: #0891b2; --qna-accent-dark: #0e7490; }

.pz-qna-hero {
    background: linear-gradient(135deg, #0e7490 0%, #0891b2 45%, #06b6d4 100%);
    border-radius: 1.25rem;
    padding: 1.5rem 1.75rem;
    color: #fff;
    box-shadow: 0 20px 48px -24px rgba(8, 145, 178, 0.55);
    margin-bottom: 1.25rem;
}
.pz-qna-hero__top {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.25rem;
}
.pz-qna-hero__eyebrow {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 0.375rem;
}
.pz-qna-hero__title {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
}
.pz-qna-hero__sub {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 0.25rem;
}
.pz-qna-hero__sync {
    text-align: right;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 0.875rem;
    min-width: 160px;
}
.pz-qna-hero__sync-label {
    display: block;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.7);
}
.pz-qna-hero__sync-value {
    display: block;
    font-size: 0.9375rem;
    font-weight: 700;
    margin-top: 0.25rem;
}
.pz-qna-hero__sync-link {
    display: inline-block;
    margin-top: 0.375rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 2px;
}
.pz-qna-kpi-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.75rem;
}
@media (max-width: 1024px) {
    .pz-qna-kpi-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
    .pz-qna-kpi-grid { grid-template-columns: repeat(2, 1fr); }
}
.pz-qna-kpi {
    padding: 0.875rem 1rem;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 0.875rem;
    text-align: center;
}
.pz-qna-kpi--highlight {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.35);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}
.pz-qna-kpi__value {
    display: block;
    font-size: 1.375rem;
    font-weight: 800;
    font-variant-numeric: tabular-nums;
    line-height: 1.2;
}
.pz-qna-kpi__label {
    display: block;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: rgba(255, 255, 255, 0.75);
    margin-top: 0.25rem;
}

.pz-qna-status-section {
    background: #fff;
    border: 1px solid var(--corp-border);
    border-radius: 1rem;
    padding: 1rem 1.25rem 1.25rem;
    margin-bottom: 1.25rem;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
}
.pz-qna-status-head {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--corp-slate);
    margin-bottom: 0.875rem;
}
.pz-qna-status-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.625rem;
}
@media (max-width: 1280px) {
    .pz-qna-status-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 768px) {
    .pz-qna-status-grid { grid-template-columns: repeat(2, 1fr); }
}
.pz-qna-status-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    padding: 0.75rem 0.5rem;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    background: #f8fafc;
    text-decoration: none;
    color: inherit;
    transition: all 0.15s ease;
}
.pz-qna-status-card:hover {
    border-color: #cbd5e1;
    background: #fff;
    transform: translateY(-1px);
}
.pz-qna-status-card.is-active {
    border-color: var(--qna-accent);
    background: #ecfeff;
    box-shadow: 0 0 0 1px rgba(8, 145, 178, 0.15);
}
.pz-qna-status-card__icon { color: #64748b; }
.pz-qna-status-card.is-active .pz-qna-status-card__icon { color: var(--qna-accent-dark); }
.pz-qna-status-card__value {
    font-size: 1.125rem;
    font-weight: 800;
    font-variant-numeric: tabular-nums;
    color: var(--corp-slate);
}
.pz-qna-status-card__label {
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--corp-muted);
    text-align: center;
    line-height: 1.25;
}
.pz-qna-status-card--pending.is-active { border-color: #f59e0b; background: #fffbeb; }
.pz-qna-status-card--pending_approval.is-active { border-color: #3b82f6; background: #eff6ff; }
.pz-qna-status-card--answered.is-active { border-color: #10b981; background: #ecfdf5; }
.pz-qna-status-card--rejected.is-active,
.pz-qna-status-card--unanswered.is-active { border-color: #ef4444; background: #fef2f2; }
.pz-qna-status-card--reported.is-active { border-color: #8b5cf6; background: #f5f3ff; }

.pz-qna-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0.5rem 0;
}
.pz-qna-card {
    position: relative;
    border-bottom: 1px solid #f1f5f9;
    transition: background 0.15s ease;
}
.pz-qna-card:last-child { border-bottom: none; }
.pz-qna-card:hover { background: #fafbfc; }
.pz-qna-card--actionable { background: linear-gradient(90deg, #fffbeb 0%, #fff 12%); }
.pz-qna-card--actionable:hover { background: linear-gradient(90deg, #fef3c7 0%, #fafbfc 12%); }
.pz-qna-card__stripe {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #e2e8f0;
}
.pz-qna-card--pending .pz-qna-card__stripe { background: #f59e0b; }
.pz-qna-card--approval .pz-qna-card__stripe { background: #3b82f6; }
.pz-qna-card--answered .pz-qna-card__stripe { background: #10b981; }
.pz-qna-card--closed .pz-qna-card__stripe { background: #ef4444; }
.pz-qna-card--reported .pz-qna-card__stripe { background: #8b5cf6; }
.pz-qna-card__inner {
    padding: 1.25rem 1.5rem 1.25rem 1.625rem;
}
.pz-qna-card__head {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}
.pz-qna-product {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    min-width: 0;
    flex: 1;
}
.pz-qna-product__icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.75rem;
    background: linear-gradient(135deg, #ecfeff, #cffafe);
    border: 1px solid #a5f3fc;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--qna-accent-dark);
    flex-shrink: 0;
}
.pz-qna-product__name {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--corp-slate);
    line-height: 1.35;
}
.pz-qna-product__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.375rem;
}
.pz-qna-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.6875rem;
    font-weight: 600;
    color: #64748b;
    background: #f1f5f9;
    padding: 0.125rem 0.5rem;
    border-radius: 999px;
}
.pz-qna-card__badges {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.375rem;
    flex-shrink: 0;
}
.pz-qna-date {
    font-size: 0.75rem;
    color: var(--corp-muted);
    font-variant-numeric: tabular-nums;
}

.pz-qna-thread {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    max-width: 48rem;
}
.pz-qna-msg {
    display: flex;
    align-items: flex-end;
    gap: 0.625rem;
}
.pz-qna-msg--seller {
    justify-content: flex-end;
}
.pz-qna-avatar {
    width: 2rem;
    height: 2rem;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
}
.pz-qna-avatar--customer {
    background: #f1f5f9;
    color: #475569;
    border: 1px solid #e2e8f0;
}
.pz-qna-avatar--seller {
    background: linear-gradient(135deg, #0891b2, #06b6d4);
    color: #fff;
}
.pz-qna-bubble {
    max-width: min(100%, 36rem);
    padding: 0.75rem 1rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    line-height: 1.55;
}
.pz-qna-bubble--customer {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-bottom-left-radius: 0.25rem;
    color: #334155;
}
.pz-qna-bubble--seller {
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    border: 1px solid #a7f3d0;
    border-bottom-right-radius: 0.25rem;
    color: #065f46;
}
.pz-qna-bubble__author {
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 0.375rem;
    opacity: 0.75;
}
.pz-qna-bubble__text {
    white-space: pre-wrap;
    word-break: break-word;
}
.pz-qna-bubble__time {
    font-size: 0.6875rem;
    margin-top: 0.5rem;
    opacity: 0.65;
}

.pz-qna-card__foot {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px dashed #e2e8f0;
}
.pz-qna-hint {
    font-size: 0.75rem;
    color: var(--corp-muted);
}

.pz-qna-compose {
    margin-top: 1rem;
    padding: 1rem;
    background: #f0fdfa;
    border: 1px solid #99f6e4;
    border-radius: 0.875rem;
}
.pz-qna-compose__head {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    font-weight: 700;
    color: #0e7490;
    margin-bottom: 0.625rem;
}
.pz-qna-textarea {
    min-height: 6rem;
    resize: vertical;
}
.pz-qna-compose__bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-top: 0.625rem;
}
.pz-qna-char-count {
    font-size: 0.75rem;
    font-weight: 600;
    color: #64748b;
    font-variant-numeric: tabular-nums;
}
.pz-qna-char-count.is-warn { color: #d97706; }
.pz-qna-char-count.is-over { color: #dc2626; }

.pz-qna-notice {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    font-size: 0.8125rem;
    line-height: 1.5;
}
.pz-qna-notice--info {
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    color: #1e40af;
}

/* Product reset / delete — 2-step wizard */
.pz-pr { max-width: 52rem; }
.pz-pr__head {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.pz-pr__eyebrow {
    margin: 0;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #0f766e;
}
.pz-pr__title {
    margin: 0.25rem 0 0.35rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(1.4rem, 3vw, 1.85rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #0f172a;
}
.pz-pr__sub { margin: 0; color: #64748b; font-size: 0.95rem; }
.pz-pr__link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #0f766e;
    padding: 0.5rem 0.85rem;
    border-radius: 0.75rem;
    border: 1px solid #ccfbf1;
    background: #f0fdfa;
}
.pz-pr__link:hover { background: #ccfbf1; }

.pz-pr-steps {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.75rem;
}
.pz-pr-steps__item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #94a3b8;
}
.pz-pr-steps__item span {
    width: 1.6rem;
    height: 1.6rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #e2e8f0;
    color: #64748b;
    font-size: 0.75rem;
    font-weight: 800;
}
.pz-pr-steps__item.is-active { color: #0f766e; }
.pz-pr-steps__item.is-active span,
.pz-pr-steps__item.is-done span {
    background: #0f766e;
    color: #fff;
}
.pz-pr-steps__item.is-done { color: #334155; }
.pz-pr-steps__line {
    flex: 1;
    height: 2px;
    background: #e2e8f0;
    max-width: 4rem;
}

.pz-pr-pick__title {
    margin: 0 0 0.35rem;
    font-size: 1.1rem;
    font-weight: 800;
    color: #0f172a;
}
.pz-pr-pick__hint { margin: 0 0 1.25rem; color: #64748b; font-size: 0.875rem; }
.pz-pr-pick__grid {
    display: grid;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}
@media (min-width: 640px) {
    .pz-pr-pick__grid { grid-template-columns: 1fr 1fr; }
}
.pz-pr-card {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 1rem 1.1rem;
    border-radius: 1rem;
    border: 1px solid #e2e8f0;
    background: #fff;
    text-decoration: none;
    color: inherit;
    transition: border-color .15s, box-shadow .15s, transform .15s;
}
.pz-pr-card:hover {
    border-color: #99f6e4;
    box-shadow: 0 10px 28px -18px rgba(15, 118, 110, 0.45);
    transform: translateY(-1px);
}
.pz-pr-card--trendyol:hover { border-color: #fdba74; }
.pz-pr-card--hepsiburada:hover { border-color: #fdba74; }
.pz-pr-card__logo {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.8rem;
    background: #f1f5f9;
    color: #334155;
    flex-shrink: 0;
}
.pz-pr-card--trendyol .pz-pr-card__logo { background: #ffedd5; color: #c2410c; }
.pz-pr-card--hepsiburada .pz-pr-card__logo { background: #ffedd5; color: #ea580c; }
.pz-pr-card__logo--local { background: #ccfbf1; color: #0f766e; }
.pz-pr-card__body { flex: 1; min-width: 0; }
.pz-pr-card__body strong { display: block; font-size: 0.95rem; font-weight: 700; color: #0f172a; }
.pz-pr-card__body span { display: block; margin-top: 0.15rem; font-size: 0.78rem; color: #64748b; }
.pz-pr-card__chevron { color: #cbd5e1; flex-shrink: 0; }
.pz-pr-card--local { margin-top: 0.25rem; }
.pz-pr-empty {
    padding: 1.5rem;
    border: 1px dashed #cbd5e1;
    border-radius: 1rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #64748b;
}
.pz-pr-empty .pz-btn { margin-top: 0.75rem; }

.pz-pr-ops__bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
    border-radius: 1rem;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    margin-bottom: 1.25rem;
}
.pz-pr-back {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.8125rem;
    font-weight: 700;
    color: #0f766e;
}
.pz-pr-ops__target { flex: 1; min-width: 8rem; }
.pz-pr-ops__target strong { display: block; font-size: 0.9rem; color: #0f172a; }
.pz-pr-ops__target span { font-size: 0.75rem; color: #64748b; }
.pz-pr-refresh {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: #334155;
    padding: 0.45rem 0.75rem;
    border-radius: 0.65rem;
    border: 1px solid #e2e8f0;
    background: #fff;
}
.pz-pr-refresh.is-loading { opacity: 0.6; pointer-events: none; }
.pz-pr-ops__heading {
    margin: 0 0 0.65rem;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #64748b;
}
.pz-pr-list {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    margin-bottom: 1.5rem;
}
.pz-pr-op {
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    background: #fff;
    padding: 0.95rem 1rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem 1rem;
}
.pz-pr-op.is-empty { opacity: 0.72; }
.pz-pr-op__main {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    flex: 1;
    min-width: 0;
}
.pz-pr-op__icon {
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 0.75rem;
    background: #f0fdfa;
    color: #0f766e;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.pz-pr-op__text h3 {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 700;
    color: #0f172a;
}
.pz-pr-op__text p {
    margin: 0.25rem 0 0;
    font-size: 0.78rem;
    line-height: 1.45;
    color: #64748b;
}
.pz-pr-op__count {
    text-align: right;
    flex-shrink: 0;
    min-width: 3.5rem;
}
.pz-pr-op__count strong {
    display: block;
    font-size: 1.15rem;
    font-weight: 800;
    font-variant-numeric: tabular-nums;
    color: #0f172a;
    line-height: 1;
}
.pz-pr-op__count small {
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #94a3b8;
}
.pz-pr-op__action { flex-shrink: 0; }
.pz-pr-op__btn {
    appearance: none;
    border: none;
    background: #0f766e;
    color: #fff;
    font-size: 0.8125rem;
    font-weight: 700;
    padding: 0.55rem 1rem;
    border-radius: 0.65rem;
    cursor: pointer;
}
.pz-pr-op__btn:hover { background: #115e59; }
.pz-pr-op__status {
    font-size: 0.75rem;
    font-weight: 700;
    color: #d97706;
}
.pz-pr-op__status--ok { color: #059669; }
.pz-pr-recent {
    margin-bottom: 1rem;
    padding: 1rem;
    border-radius: 1rem;
    border: 1px solid #e2e8f0;
    background: #fff;
}
.pz-pr-recent h3 {
    margin: 0 0 0.65rem;
    font-size: 0.8rem;
    font-weight: 800;
    color: #334155;
}
.pz-pr-recent ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.45rem; }
.pz-pr-recent li {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    font-size: 0.78rem;
    color: #475569;
}
.pz-pr-recent em { font-style: normal; color: #94a3b8; white-space: nowrap; }
.pz-pr-note {
    margin: 0;
    font-size: 0.78rem;
    color: #94a3b8;
}

.pz-reset-modal {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}
.pz-reset-modal.hidden { display: none; }
.pz-reset-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15,23,42,0.55);
    backdrop-filter: blur(4px);
}
.pz-reset-modal__dialog {
    position: relative;
    width: 100%;
    max-width: 480px;
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 24px 64px rgba(15,23,42,0.25);
    overflow: hidden;
}
.pz-reset-modal__head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #f1f5f9;
    background: #f0fdfa;
}
.pz-reset-modal__eyebrow { font-size: 0.6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: #0f766e; }
.pz-reset-modal__title { font-size: 1.125rem; font-weight: 800; color: #134e4a; margin-top: 0.25rem; }
.pz-reset-modal__close {
    background: transparent;
    border: none;
    color: #94a3b8;
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 0.375rem;
}
.pz-reset-modal__close:hover { background: rgba(0,0,0,0.05); color: #475569; }
.pz-reset-modal__body { padding: 1.25rem 1.5rem; }
.pz-reset-modal__confirm { font-size: 0.875rem; color: #475569; line-height: 1.55; margin-bottom: 1rem; }
.pz-reset-modal__count {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 0.625rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #334155;
    margin-bottom: 1rem;
}
.pz-reset-modal__count.hidden { display: none; }
.pz-reset-modal__foot {
    display: flex;
    justify-content: flex-end;
    gap: 0.625rem;
    padding: 1rem 1.5rem 1.25rem;
    border-top: 1px solid #f1f5f9;
}

/* Placed orders (catalog purchases) */
.pz-placed-hero {
    background: linear-gradient(135deg, #312e81 0%, #4f46e5 50%, #6366f1 100%);
    border-radius: 1.25rem;
    padding: 1.5rem 1.75rem;
    color: #fff;
    box-shadow: 0 20px 48px -24px rgba(79, 70, 229, 0.55);
    margin-bottom: 1.25rem;
}
.pz-placed-hero__top {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}
.pz-placed-hero__eyebrow {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.65);
}
.pz-placed-hero__title {
    font-family: 'Plus Jakarta Sans', Inter, sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-top: 0.25rem;
}
.pz-placed-hero__sub {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.75);
    margin-top: 0.25rem;
}
.pz-placed-hero__wallet {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 1rem;
    padding: 0.875rem 1.125rem;
    min-width: 10rem;
}
.pz-placed-hero__wallet-label {
    display: block;
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    opacity: 0.75;
}
.pz-placed-hero__wallet-value {
    display: block;
    font-size: 1.375rem;
    font-weight: 800;
    margin-top: 0.125rem;
}
.pz-placed-hero__wallet-link {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 600;
    margin-top: 0.375rem;
    color: rgba(255,255,255,0.9);
}
.pz-placed-hero__wallet-link:hover { text-decoration: underline; }
.pz-placed-kpi-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.75rem;
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255,255,255,0.12);
}
@media (max-width: 1024px) {
    .pz-placed-kpi-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
    .pz-placed-kpi-grid { grid-template-columns: repeat(2, 1fr); }
}
.pz-placed-kpi {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 0.875rem;
    padding: 0.75rem 0.875rem;
}
.pz-placed-kpi__value {
    display: block;
    font-size: 1.125rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}
.pz-placed-kpi__label {
    display: block;
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.7;
    margin-top: 0.125rem;
}
.pz-placed-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}
.pz-placed-tab {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 0.875rem;
    border-radius: 999px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #64748b;
    background: #fff;
    border: 1px solid #e2e8f0;
    transition: all 0.15s;
}
.pz-placed-tab:hover {
    border-color: #c7d2fe;
    color: #4f46e5;
}
.pz-placed-tab.is-active {
    background: #4f46e5;
    border-color: #4f46e5;
    color: #fff;
    box-shadow: 0 8px 20px -8px rgba(79, 70, 229, 0.55);
}
.pz-placed-tab__count {
    font-size: 0.6875rem;
    font-weight: 700;
    padding: 0.125rem 0.4375rem;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.08);
}
.pz-placed-tab.is-active .pz-placed-tab__count {
    background: rgba(255,255,255,0.2);
}
.pz-placed-source {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.6875rem;
    font-weight: 700;
    padding: 0.2rem 0.5rem;
    border-radius: 999px;
}
.pz-placed-source--auto {
    background: #eef2ff;
    color: #4338ca;
    border: 1px solid #c7d2fe;
}
.pz-placed-source--manual {
    background: #f8fafc;
    color: #64748b;
    border: 1px solid #e2e8f0;
}
.pz-placed-source-link {
    display: block;
    font-size: 0.6875rem;
    font-weight: 600;
    color: #4f46e5;
    margin-top: 0.25rem;
}
.pz-placed-source-link:hover { text-decoration: underline; }
.pz-placed-mobile-card {
    display: block;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid #f1f5f9;
    text-decoration: none;
    color: inherit;
    transition: background 0.15s;
}
.pz-placed-mobile-card:hover { background: #f8fafc; }
.pz-placed-mobile-card:last-child { border-bottom: none; }
.pz-placed-mobile-card__foot {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.375rem;
    margin-top: 0.75rem;
}

.pz-placed-status-section {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    padding: 1rem 1.25rem 1.25rem;
    margin-bottom: 1.25rem;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
}
.pz-placed-status-head {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #64748b;
    margin-bottom: 0.875rem;
}
.pz-placed-status-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.625rem;
}
@media (max-width: 1200px) {
    .pz-placed-status-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 640px) {
    .pz-placed-status-grid { grid-template-columns: repeat(2, 1fr); }
}
.pz-placed-status-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.125rem;
    padding: 0.875rem 0.5rem;
    border-radius: 0.875rem;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    transition: all 0.15s;
    text-decoration: none;
    color: inherit;
}
.pz-placed-status-card:hover {
    border-color: #c7d2fe;
    background: #fff;
    box-shadow: 0 8px 20px -12px rgba(79, 70, 229, 0.25);
}
.pz-placed-status-card.is-active {
    border-color: #6366f1;
    background: #eef2ff;
    box-shadow: 0 0 0 1px rgba(99, 102, 241, 0.15);
}
.pz-placed-status-card__icon {
    color: #94a3b8;
    margin-bottom: 0.125rem;
}
.pz-placed-status-card.is-active .pz-placed-status-card__icon { color: #4f46e5; }
.pz-placed-status-card__value {
    font-size: 1.25rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.02em;
    line-height: 1.1;
}
.pz-placed-status-card__label {
    font-size: 0.6875rem;
    font-weight: 600;
    color: #64748b;
}
.pz-placed-status-card--pending.is-active { border-color: #f59e0b; background: #fffbeb; }
.pz-placed-status-card--processing.is-active { border-color: #3b82f6; background: #eff6ff; }
.pz-placed-status-card--shipped.is-active { border-color: #6366f1; background: #eef2ff; }
.pz-placed-status-card--delivered.is-active { border-color: #10b981; background: #ecfdf5; }
.pz-placed-status-card--cancelled.is-active { border-color: #ef4444; background: #fef2f2; }
.pz-placed-status-card--returned.is-active { border-color: #8b5cf6; background: #f5f3ff; }

/* Reports page */
.pz-reports-page { max-width: 100%; }
.pz-reports-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 50%, #2563eb 100%);
    border-radius: 1.25rem;
    padding: 1.5rem 1.75rem;
    color: #fff;
    margin-bottom: 1.25rem;
    box-shadow: 0 20px 48px -24px rgba(37, 99, 235, 0.45);
}
.pz-reports-hero__top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
    align-items: flex-start;
}
.pz-reports-hero__eyebrow {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.65;
}
.pz-reports-hero__title {
    font-family: 'Plus Jakarta Sans', Inter, sans-serif;
    font-size: 1.375rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-top: 0.25rem;
}
.pz-reports-hero__sub { font-size: 0.8125rem; opacity: 0.75; margin-top: 0.25rem; }
.pz-reports-hero__wallet {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 1rem;
    padding: 0.875rem 1rem;
}
.pz-reports-hero__wallet-label { font-size: 0.625rem; text-transform: uppercase; opacity: 0.7; }
.pz-reports-hero__wallet-value { display: block; font-size: 1.25rem; font-weight: 800; margin-top: 0.125rem; }
.pz-reports-hero__kpis {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255,255,255,0.12);
}
@media (max-width: 768px) { .pz-reports-hero__kpis { grid-template-columns: repeat(2, 1fr); } }
.pz-reports-hero-kpi {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 0.875rem;
    padding: 0.75rem 0.875rem;
}
.pz-reports-hero-kpi__value { display: block; font-size: 1.125rem; font-weight: 800; }
.pz-reports-hero-kpi__label { display: block; font-size: 0.625rem; text-transform: uppercase; opacity: 0.65; margin-top: 0.125rem; }
.pz-reports-hero-kpi__growth { display: block; font-size: 0.6875rem; font-weight: 700; margin-top: 0.25rem; }

.pz-reports-toolbar {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    padding: 1rem 1.25rem;
    margin-bottom: 1rem;
}
.pz-reports-periods { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.pz-reports-period {
    padding: 0.4375rem 0.875rem;
    border-radius: 999px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #64748b;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    transition: all 0.15s;
}
.pz-reports-period:hover { border-color: #93c5fd; color: #2563eb; }
.pz-reports-period.is-active { background: #2563eb; border-color: #2563eb; color: #fff; }
.pz-reports-date-form { display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: flex-end; }

.pz-reports-type-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}
.pz-reports-type-tab {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 0.875rem;
    border-radius: 999px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #64748b;
    background: #fff;
    border: 1px solid #e2e8f0;
}
.pz-reports-type-tab.is-active {
    background: #0f172a;
    border-color: #0f172a;
    color: #fff;
}
.pz-reports-type-tab__count {
    font-size: 0.6875rem;
    padding: 0.125rem 0.4375rem;
    border-radius: 999px;
    background: rgba(15,23,42,0.08);
}
.pz-reports-type-tab.is-active .pz-reports-type-tab__count { background: rgba(255,255,255,0.15); }

.pz-reports-panel {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
}
.pz-reports-panel__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid #f1f5f9;
    background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
}
.pz-reports-panel__title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    color: #0f172a;
}
.pz-reports-panel__body { padding: 1.25rem; }
.pz-reports-table { width: 100%; border-collapse: collapse; font-size: 0.875rem; }
.pz-reports-table thead th {
    padding: 0.75rem 1.25rem;
    text-align: left;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #64748b;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}
.pz-reports-table tbody td {
    padding: 0.875rem 1.25rem;
    border-bottom: 1px solid #f1f5f9;
    vertical-align: middle;
}
.pz-reports-table tbody tr:last-child td { border-bottom: none; }
.pz-reports-empty { padding: 2rem; text-align: center; color: #94a3b8; font-size: 0.875rem; }

.pz-reports-chart {
    display: flex;
    align-items: flex-end;
    gap: 0.375rem;
    height: 12rem;
    padding-top: 0.5rem;
    overflow-x: auto;
}
.pz-reports-chart__col {
    flex: 1;
    min-width: 2rem;
    max-width: 3rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    gap: 0.25rem;
}
.pz-reports-chart__bar {
    width: 100%;
    max-width: 1.75rem;
    border-radius: 0.375rem 0.375rem 0.125rem 0.125rem;
    background: linear-gradient(180deg, #60a5fa 0%, #2563eb 100%);
    min-height: 0.5rem;
    transition: height 0.3s ease;
}
.pz-reports-chart__value { font-size: 0.625rem; font-weight: 700; color: #475569; }
.pz-reports-chart__label { font-size: 0.5625rem; color: #94a3b8; white-space: nowrap; }

.pz-reports-split { display: flex; flex-direction: column; gap: 0.75rem; }
.pz-reports-split__card {
    flex: 1;
    border-radius: 1rem;
    padding: 1.25rem;
    border: 1px solid #e2e8f0;
}
.pz-reports-split__card--sales { background: linear-gradient(135deg, #ecfdf5 0%, #fff 100%); border-color: #a7f3d0; }
.pz-reports-split__card--purchase { background: linear-gradient(135deg, #eef2ff 0%, #fff 100%); border-color: #c7d2fe; }
.pz-reports-split__icon {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 0.625rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
}
.pz-reports-split__card--sales .pz-reports-split__icon { background: #d1fae5; color: #047857; }
.pz-reports-split__card--purchase .pz-reports-split__icon { background: #e0e7ff; color: #4338ca; }
.pz-reports-split__label { font-size: 0.75rem; font-weight: 600; color: #64748b; }
.pz-reports-split__value { font-size: 1.375rem; font-weight: 800; color: #0f172a; margin-top: 0.25rem; }
.pz-reports-split__meta { font-size: 0.75rem; color: #64748b; margin-top: 0.375rem; }

.pz-reports-progress {
    height: 0.375rem;
    background: #f1f5f9;
    border-radius: 999px;
    overflow: hidden;
}
.pz-auto-sync-info {
    border-left: 4px solid #6366f1;
}

.pz-placed-mobile-card__head {
    margin-bottom: 0;
}

.pz-reports-progress__bar {
    height: 100%;
    background: linear-gradient(90deg, #6366f1, #2563eb);
    border-radius: 999px;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 7rem;
}

/* Home anchor scroll offset (fixed header) */
#urunler,
#ozellikler,
#nasil,
#pazaryerleri,
#kurumsal {
    scroll-margin-top: 7rem;
}

.pz-hero-highlights {
    display: grid;
    gap: 0.75rem;
}
.pz-hero-highlight {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    padding: 0.875rem 1rem;
    border-radius: 1rem;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(8px);
}
.pz-hero-highlight strong {
    display: block;
    color: white;
    font-size: 0.9375rem;
    font-weight: 700;
    margin-bottom: 0.125rem;
}
.pz-hero-highlight span {
    display: block;
    color: #94a3b8;
    font-size: 0.8125rem;
    line-height: 1.45;
}
.pz-hero-highlight-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.pz-hero-highlight-xml .pz-hero-highlight-icon {
    background: rgba(16, 185, 129, 0.15);
    color: #34d399;
    border: 1px solid rgba(52, 211, 153, 0.25);
}
.pz-hero-highlight-integration .pz-hero-highlight-icon {
    background: rgba(99, 102, 241, 0.15);
    color: #a5b4fc;
    border: 1px solid rgba(165, 180, 252, 0.25);
}

/* Free services spotlight */
.pz-free-spotlight {
    position: relative;
    z-index: 5;
    margin-top: -2rem;
    padding-bottom: 2rem;
}
.pz-free-card {
    position: relative;
    overflow: hidden;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 1.25rem;
    padding: 1.75rem;
    box-shadow: 0 20px 50px -20px rgba(15, 23, 42, 0.12);
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.pz-free-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 60px -24px rgba(79, 70, 229, 0.18);
}
.pz-free-card-xml:hover { border-color: #6ee7b7; }
.pz-free-card-integration:hover { border-color: #c7d2fe; }
.pz-free-card-glow {
    position: absolute;
    top: -40%;
    right: -20%;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    filter: blur(48px);
    opacity: 0.35;
    pointer-events: none;
}
.pz-free-card-xml .pz-free-card-glow { background: #34d399; }
.pz-free-card-integration .pz-free-card-glow { background: #818cf8; }
.pz-free-card-icon {
    width: 3.25rem;
    height: 3.25rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pz-free-card-xml .pz-free-card-icon {
    background: linear-gradient(135deg, #059669, #10b981);
    color: white;
}
.pz-free-card-integration .pz-free-card-icon {
    background: linear-gradient(135deg, #4f46e5, #6366f1);
    color: white;
}
.pz-free-card-tag {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}
.pz-free-card-xml .pz-free-card-tag {
    background: #ecfdf5;
    color: #059669;
}
.pz-free-card-integration .pz-free-card-tag {
    background: #eef2ff;
    color: #4f46e5;
}
.pz-free-card-list {
    display: grid;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
}
.pz-free-card-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #475569;
}
.pz-free-card-list li svg { color: #4f46e5; flex-shrink: 0; }
.pz-free-card-xml .pz-free-card-list li svg { color: #059669; }

/* Category catalog browser */
.pz-catalog {
    display: grid;
    grid-template-columns: minmax(240px, 280px) 1fr;
    gap: 1.5rem;
    align-items: start;
}
.pz-catalog-sidebar {
    position: sticky;
    top: 6rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 1.25rem;
    overflow: hidden;
    max-height: calc(100vh - 8rem);
    display: flex;
    flex-direction: column;
}
.pz-catalog-sidebar-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1rem 0.75rem;
    border-bottom: 1px solid #e2e8f0;
    background: white;
}
.pz-catalog-search-wrap {
    position: relative;
    padding: 0.75rem 1rem;
    background: white;
    border-bottom: 1px solid #e2e8f0;
}
.pz-catalog-search-wrap svg {
    position: absolute;
    left: 1.625rem;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    pointer-events: none;
}
.pz-catalog-search {
    width: 100%;
    padding: 0.625rem 0.875rem 0.625rem 2.25rem;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    font-size: 0.875rem;
    background: #f8fafc;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.pz-catalog-search:focus {
    border-color: #a5b4fc;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.12);
    background: white;
}
.pz-catalog-categories {
    overflow-y: auto;
    padding: 0.5rem;
    flex: 1;
}
.pz-category-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.75rem 0.875rem;
    border: none;
    border-radius: 0.75rem;
    background: transparent;
    text-align: left;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
}
.pz-category-btn:hover {
    background: white;
}
.pz-category-btn.is-active {
    background: white;
    box-shadow: 0 4px 14px -6px rgba(79, 70, 229, 0.25);
    border: 1px solid #c7d2fe;
}
.pz-category-btn-name {
    font-size: 0.875rem;
    font-weight: 600;
    color: #334155;
    line-height: 1.35;
    flex: 1;
    min-width: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.pz-category-btn.is-active .pz-category-btn-name { color: #4338ca; }
.pz-category-btn-count {
    flex-shrink: 0;
    min-width: 2rem;
    padding: 0.15rem 0.5rem;
    border-radius: 9999px;
    background: #e2e8f0;
    color: #64748b;
    font-size: 0.6875rem;
    font-weight: 700;
    text-align: center;
}
.pz-category-btn.is-active .pz-category-btn-count {
    background: #eef2ff;
    color: #4f46e5;
}
.pz-category-btn.hidden {
    display: none;
}
.pz-catalog-main {
    min-width: 0;
}
.pz-catalog-main-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e2e8f0;
}
.pz-catalog-skeleton {
    aspect-ratio: 0.72;
    border-radius: 1rem;
    background: linear-gradient(90deg, #f1f5f9 25%, #e2e8f0 50%, #f1f5f9 75%);
    background-size: 200% 100%;
    animation: pz-shimmer 1.4s ease infinite;
}
@keyframes pz-shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

@media (max-width: 1024px) {
    .pz-catalog {
        grid-template-columns: 1fr;
    }
    .pz-catalog-sidebar {
        position: static;
        max-height: 320px;
    }
    .pz-free-spotlight {
        margin-top: 0;
        padding-top: 2rem;
    }
}

/* Purchase / catalog shop */
body.pz-modal-open { overflow: hidden; }

.pz-shop-incoming {
    margin-bottom: 1.5rem;
    border: 1px solid #e2e8f0;
    border-radius: 1.25rem;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 16px 40px -24px rgba(15, 23, 42, 0.12);
}
.pz-shop-incoming__head {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.125rem 1.25rem;
    background: linear-gradient(135deg, #fff7ed 0%, #fff 100%);
    border-bottom: 1px solid #fed7aa;
}
.pz-shop-incoming__title-wrap {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}
.pz-shop-incoming__icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.75rem;
    background: #ffedd5;
    color: #ea580c;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.pz-shop-incoming__title {
    font-family: 'Plus Jakarta Sans', Inter, sans-serif;
    font-size: 1.125rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.02em;
}
.pz-shop-incoming__subtitle {
    font-size: 0.8125rem;
    color: #64748b;
    margin-top: 0.125rem;
}
.pz-shop-incoming__count {
    font-size: 0.75rem;
    font-weight: 700;
    color: #c2410c;
    background: #ffedd5;
    border: 1px solid #fdba74;
    padding: 0.375rem 0.75rem;
    border-radius: 999px;
}
.pz-shop-incoming__list {
    display: flex;
    flex-direction: column;
}
.pz-shop-incoming__item {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid #f1f5f9;
}
.pz-shop-incoming__item:last-child { border-bottom: none; }
.pz-shop-incoming__item--danger { border-left: 4px solid #ef4444; }
.pz-shop-incoming__item--warning { border-left: 4px solid #f59e0b; }
.pz-shop-incoming__item--success { border-left: 4px solid #10b981; }
.pz-shop-incoming__product {
    display: flex;
    gap: 0.875rem;
    flex: 1;
    min-width: 0;
}
.pz-shop-incoming__thumb {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.75rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.25rem;
}
.pz-shop-incoming__thumb img { width: 100%; height: 100%; object-fit: cover; }
.pz-shop-incoming__info { min-width: 0; flex: 1; }
.pz-shop-incoming__name {
    font-size: 0.9375rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.35;
}
.pz-shop-incoming__meta {
    font-size: 0.75rem;
    color: #64748b;
    margin-top: 0.25rem;
}
.pz-shop-incoming__orders {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-top: 0.5rem;
}
.pz-shop-incoming__order-link {
    font-size: 0.6875rem;
    color: #4f46e5;
    font-weight: 600;
}
.pz-shop-incoming__order-link:hover { text-decoration: underline; }
.pz-shop-incoming__aside {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
    min-width: 10rem;
}
.pz-shop-incoming__badge {
    font-size: 0.6875rem;
    font-weight: 700;
    padding: 0.25rem 0.625rem;
    border-radius: 999px;
    text-align: center;
}
.pz-shop-incoming__badge--danger { background: #fef2f2; color: #b91c1c; border: 1px solid #fecaca; }
.pz-shop-incoming__badge--warning { background: #fffbeb; color: #b45309; border: 1px solid #fde68a; }
.pz-shop-incoming__badge--success { background: #ecfdf5; color: #047857; border: 1px solid #a7f3d0; }
.pz-shop-incoming__price {
    font-size: 1rem;
    font-weight: 800;
    color: #4f46e5;
}
@media (max-width: 640px) {
    .pz-shop-incoming__aside {
        width: 100%;
        align-items: stretch;
    }
}

.pz-shop-page { max-width: 100%; }

.pz-shop-hero {
    position: relative;
    border-radius: 1.5rem;
    padding: 1.75rem 1.5rem 1.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #312e81 0%, #4f46e5 45%, #6366f1 100%);
    color: #fff;
    overflow: visible;
    box-shadow: 0 24px 48px -24px rgba(79, 70, 229, 0.55);
}
.pz-shop-hero__content {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.25rem;
}
.pz-shop-hero__eyebrow {
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.7);
    margin-bottom: 0.35rem;
}
.pz-shop-hero__title {
    font-family: 'Plus Jakarta Sans', Inter, sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
}
.pz-shop-hero__subtitle {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.82);
    margin-top: 0.5rem;
    max-width: 32rem;
}
.pz-shop-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.pz-shop-hero__stats {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.25rem;
}
.pz-shop-hero__stat {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 0.875rem;
    padding: 0.625rem 1rem;
    min-width: 5.5rem;
}
.pz-shop-hero__stat--wallet {
    background: rgba(255,255,255,0.18);
}
.pz-shop-hero__stat-value {
    display: block;
    font-size: 1.125rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}
.pz-shop-hero__stat-label {
    display: block;
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    opacity: 0.75;
    margin-top: 0.125rem;
}

.pz-shop-search {
    position: relative;
    z-index: 200;
}
.pz-shop-search__label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}
.pz-shop-search__field {
    position: relative;
}
.pz-shop-search__input {
    width: 100%;
    padding: 0.875rem 2.75rem 0.875rem 1rem;
    border-radius: 0.875rem;
    border: none;
    font-size: 0.9375rem;
    background: #fff;
    color: #0f172a;
    box-shadow: 0 8px 24px -8px rgba(15, 23, 42, 0.25);
}
.pz-shop-search__input:focus {
    outline: 2px solid rgba(255,255,255,0.5);
    outline-offset: 2px;
}
.pz-shop-search__clear {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    padding: 0.25rem;
}
.pz-shop-search__clear:hover { color: #64748b; }
.pz-shop-search__dropdown {
    z-index: 9999;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 0.875rem;
    box-shadow: 0 24px 48px -12px rgba(15, 23, 42, 0.28);
    max-height: 18rem;
    overflow-y: auto;
}
.pz-shop-search-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    padding: 0.75rem 1rem;
    text-align: left;
    border-bottom: 1px solid #f1f5f9;
    transition: background 0.15s;
}
.pz-shop-search-item:last-child { border-bottom: none; }
.pz-shop-search-item:hover { background: #f8fafc; }
.pz-shop-search-item__thumb {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 0.625rem;
    background: #f1f5f9;
    overflow: hidden;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
}
.pz-shop-search-item__thumb img { width: 100%; height: 100%; object-fit: cover; }
.pz-shop-search-item__info { flex: 1; min-width: 0; }
.pz-shop-search-item__name {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #0f172a;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.pz-shop-search-item__sku {
    display: block;
    font-size: 0.6875rem;
    color: #94a3b8;
}
.pz-shop-search-item__price {
    font-size: 0.875rem;
    font-weight: 800;
    color: #4f46e5;
    flex-shrink: 0;
}

.pz-shop-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    align-items: start;
}
@media (min-width: 1280px) {
    .pz-shop-layout {
        grid-template-columns: 1fr 340px;
    }
}

.pz-shop-catalog {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 1.25rem;
    padding: 1.25rem;
    min-width: 0;
}
.pz-shop-catalog__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f1f5f9;
}
.pz-shop-empty { padding: 3rem 1rem; }
.pz-shop-sidebar { min-width: 0; }
@media (min-width: 1280px) {
    .pz-shop-sidebar {
        position: sticky;
        top: 5.5rem;
        align-self: start;
        max-height: calc(100vh - 6.25rem);
        display: flex;
        flex-direction: column;
        min-height: 0;
    }
}

.pz-shop-cart {
    border: 1px solid #e2e8f0;
    border-radius: 1.25rem;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 20px 40px -24px rgba(15, 23, 42, 0.18);
    display: flex;
    flex-direction: column;
    min-height: 0;
    max-height: inherit;
    width: 100%;
    flex: 1 1 auto;
}
.pz-shop-cart__form {
    display: flex;
    flex-direction: column;
    min-height: 0;
    flex: 1 1 auto;
}
.pz-shop-cart__head {
    padding: 1.125rem 1.25rem;
    background: linear-gradient(135deg, #4f46e5 0%, #6366f1 100%);
    color: #fff;
    flex-shrink: 0;
}
.pz-shop-cart__body {
    padding: 1rem 1.25rem 1rem;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    flex: 1 1 auto;
    min-height: 0;
}
.pz-shop-cart__foot {
    flex-shrink: 0;
    padding: 0.875rem 1.25rem 1.125rem;
    border-top: 1px solid #e2e8f0;
    background: #fff;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}
.pz-shop-cart__empty { text-align: center; padding: 2rem 0.5rem; }
.pz-shop-cart__items {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1rem;
}
@media (max-width: 1279px) {
    .pz-shop-sidebar {
        position: static;
        max-height: none;
    }
    .pz-shop-cart,
    .pz-shop-cart__form {
        max-height: none;
    }
    .pz-shop-cart__body {
        overflow: visible;
    }
}

.pz-shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
}
.pz-shop-card {
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    background: #fff;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.pz-shop-card:hover {
    border-color: #c7d2fe;
    box-shadow: 0 16px 40px -16px rgba(79, 70, 229, 0.22);
    transform: translateY(-3px);
}
.pz-shop-card.is-out { opacity: 0.65; }
.pz-shop-card__media {
    aspect-ratio: 1;
    background: #f8fafc;
    position: relative;
    overflow: hidden;
    display: block;
    width: 100%;
    border: none;
    padding: 0;
    cursor: pointer;
}
.pz-shop-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}
.pz-shop-card:hover .pz-shop-card__media img { transform: scale(1.05); }
.pz-shop-card__overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.45);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s;
}
.pz-shop-card:hover .pz-shop-card__overlay { opacity: 1; }
.pz-shop-card__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e1;
}
.pz-shop-card__badge {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.2rem 0.5rem;
    border-radius: 999px;
    background: rgba(255,255,255,0.95);
    color: #64748b;
    border: 1px solid #e2e8f0;
}
.pz-shop-card__badge.is-ok {
    color: #047857;
    background: #ecfdf5;
    border-color: #a7f3d0;
}
.pz-shop-card__body {
    padding: 0.875rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 0.5rem;
}
.pz-shop-card__title {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #0f172a;
    line-height: 1.35;
    min-height: 2.5em;
}
.pz-shop-card__meta {
    font-size: 0.6875rem;
    color: #94a3b8;
}
.pz-shop-card__footer { margin-top: auto; }
.pz-shop-card__price {
    font-size: 1.0625rem;
    font-weight: 800;
    color: #4f46e5;
    margin-bottom: 0.5rem;
}
.pz-shop-card__actions {
    display: flex;
    gap: 0.375rem;
}
.pz-shop-card__qty {
    width: 2.75rem;
    text-align: center;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    padding: 0.375rem 0.125rem;
    font-size: 0.8125rem;
}
.pz-shop-card__add {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
    padding: 0.4375rem 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: #fff;
    background: #4f46e5;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: background 0.15s;
}
.pz-shop-card__add:hover:not(:disabled) { background: #4338ca; }
.pz-shop-card__add:disabled { opacity: 0.45; cursor: not-allowed; }

.pz-shop-totals { font-size: 0.875rem; }
.pz-shop-totals__row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.25rem 0;
    color: #64748b;
}
.pz-shop-totals__row dd { font-weight: 600; color: #0f172a; }
.pz-shop-totals__row--total {
    margin-top: 0.5rem;
    padding-top: 0.75rem;
    border-top: 1px solid #f1f5f9;
    font-size: 1rem;
}
.pz-shop-totals__row--total dt { font-weight: 700; color: #0f172a; }
.pz-shop-totals__row--total dd { font-size: 1.25rem; font-weight: 800; color: #4f46e5; }

.pz-shop-pay-option {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0.875rem;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    cursor: pointer;
    transition: all 0.15s;
}
.pz-shop-pay-option:hover { border-color: #c7d2fe; background: #fafaff; }
.pz-shop-pay-option.is-active {
    border-color: #6366f1;
    background: #eef2ff;
    box-shadow: 0 0 0 1px rgba(99, 102, 241, 0.12);
}
.pz-shop-pay-option.is-disabled { opacity: 0.5; cursor: not-allowed; }

.pz-shop-cart-item {
    display: flex;
    gap: 0.625rem;
    padding: 0.625rem;
    border-radius: 0.75rem;
    background: #f8fafc;
    border: 1px solid #f1f5f9;
}
.pz-shop-cart-item__thumb {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 0.5rem;
    background: #fff;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}
.pz-shop-cart-item__thumb img { width: 100%; height: 100%; object-fit: cover; }

.pz-shop-spinner {
    display: block;
    width: 1.25rem;
    height: 1.25rem;
    border: 2px solid #e2e8f0;
    border-top-color: #6366f1;
    border-radius: 50%;
    animation: pz-spin 0.7s linear infinite;
}
@keyframes pz-spin { to { transform: rotate(360deg); } }

.pz-shop-modal-backdrop {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}
.pz-shop-modal {
    position: relative;
    width: 100%;
    max-width: 44rem;
    max-height: 90vh;
    overflow-y: auto;
    background: #fff;
    border-radius: 1.25rem;
    box-shadow: 0 32px 64px -24px rgba(15, 23, 42, 0.45);
}
.pz-shop-modal__head {
    position: sticky;
    top: 0;
    z-index: 2;
    background: #fff;
    padding: 1.125rem 1.25rem;
    border-bottom: 1px solid #f1f5f9;
}
.pz-shop-modal__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 0.625rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    background: #f8fafc;
    border: none;
    cursor: pointer;
}
.pz-shop-modal__close:hover { background: #f1f5f9; color: #0f172a; }
.pz-shop-modal__body {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding: 1.25rem;
}
@media (min-width: 640px) {
    .pz-shop-modal__body { grid-template-columns: 1fr 1fr; }
}
.pz-shop-modal__image {
    aspect-ratio: 1;
    border-radius: 0.875rem;
    background: #f8fafc;
    border: 1px solid #f1f5f9;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pz-shop-modal__image img { width: 100%; height: 100%; object-fit: cover; }
.pz-shop-modal__thumbs {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
    overflow-x: auto;
}
.pz-shop-modal__thumb {
    width: 3rem;
    height: 3rem;
    border-radius: 0.5rem;
    overflow: hidden;
    border: 2px solid transparent;
    flex-shrink: 0;
    padding: 0;
    cursor: pointer;
}
.pz-shop-modal__thumb.is-active { border-color: #6366f1; }
.pz-shop-modal__thumb img { width: 100%; height: 100%; object-fit: cover; }
.pz-shop-modal__meta {
    display: grid;
    gap: 0.5rem;
    font-size: 0.8125rem;
    margin-top: 0.75rem;
}
.pz-shop-modal__meta div {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.375rem 0;
    border-bottom: 1px solid #f8fafc;
}
.pz-shop-modal__meta dt { color: #94a3b8; }
.pz-shop-modal__meta dd { font-weight: 600; color: #0f172a; text-align: right; }
.pz-shop-modal__desc {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #f1f5f9;
}
.pz-shop-modal__actions {
    display: flex;
    gap: 0.5rem;
    margin-top: 1.25rem;
}

.pz-auto-sync-toggle {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.125rem;
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    cursor: pointer;
    transition: border-color 0.15s, background 0.15s;
}
.pz-auto-sync-toggle:hover { border-color: #c7d2fe; background: #fafaff; }
.pz-auto-sync-toggle.is-on {
    border-color: #6366f1;
    background: #eef2ff;
    box-shadow: 0 0 0 1px rgba(99, 102, 241, 0.1);
}
.pz-auto-sync-toggle__track {
    width: 3rem;
    height: 1.625rem;
    border-radius: 999px;
    background: #cbd5e1;
    position: relative;
    flex-shrink: 0;
    transition: background 0.2s;
}
.pz-auto-sync-toggle.is-on .pz-auto-sync-toggle__track { background: #6366f1; }
.pz-auto-sync-toggle__thumb {
    position: absolute;
    top: 0.1875rem;
    left: 0.1875rem;
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.2);
    transition: transform 0.2s;
}
.pz-auto-sync-toggle.is-on .pz-auto-sync-toggle__thumb { transform: translateX(1.375rem); }
.pz-auto-sync-toggle__text { flex: 1; min-width: 0; }

/* ===== Kurumsal B2B storefront ===== */
.pz-storefront {
    background: #f4f6fb;
}
.pz-storefront .pz-store-promo {
    background: linear-gradient(90deg, #1e1b4b, #312e81, #4f46e5);
    color: #e0e7ff;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 0.45rem 0;
}
.pz-store-promo-dot {
    width: 4px;
    height: 4px;
    border-radius: 999px;
    background: rgba(255,255,255,0.45);
    display: inline-block;
}
.pz-storefront .pz-topbar {
    background: #fff;
    border-bottom: 1px solid #e2e8f0;
    color: #64748b;
}
.pz-storefront .pz-header {
    background: rgba(255,255,255,0.96);
    border-bottom: 1px solid #e2e8f0;
    backdrop-filter: blur(16px);
}
.pz-storefront .pz-header-scrolled {
    background: #fff;
    box-shadow: 0 10px 30px -18px rgba(15, 23, 42, 0.25);
}
.pz-store-brand { color: #0f172a; }
.pz-store-brand-sub { color: #64748b; }
.pz-storefront .pz-nav-item {
    color: #475569;
}
.pz-storefront .pz-nav-item:hover {
    color: #312e81;
    background: #eef2ff;
}
.pz-storefront .pz-mobile-nav {
    color: #334155;
}
.pz-storefront .pz-mobile-nav:hover {
    background: #f1f5f9;
    color: #1e1b4b;
}
.pz-store-search {
    flex: 1;
    max-width: 36rem;
    position: relative;
    align-items: center;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 999px;
    padding: 0.15rem 0.15rem 0.15rem 1rem;
}
.pz-store-search svg { color: #94a3b8; flex-shrink: 0; }
.pz-store-search input {
    flex: 1;
    border: 0;
    background: transparent;
    padding: 0.55rem 0.75rem;
    font-size: 0.875rem;
    outline: none;
    color: #0f172a;
}
.pz-store-search-btn {
    background: #4f46e5;
    color: white;
    border: 0;
    border-radius: 999px;
    padding: 0.5rem 1.1rem;
    font-size: 0.8125rem;
    font-weight: 700;
    cursor: pointer;
}
.pz-store-search--mobile {
    max-width: none;
    display: flex;
}
.pz-store-hero {
    background:
        radial-gradient(ellipse 80% 60% at 100% 0%, rgba(99,102,241,0.12), transparent 50%),
        linear-gradient(180deg, #fff 0%, #eef2ff 100%);
    padding: 2.5rem 0 3rem;
    border-bottom: 1px solid #e2e8f0;
}
.pz-store-hero-grid {
    display: grid;
    gap: 2rem;
}
@media (min-width: 1024px) {
    .pz-store-hero-grid {
        grid-template-columns: 1.35fr 0.85fr;
        align-items: stretch;
        gap: 3rem;
    }
}
.pz-store-crumb {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.75rem;
    color: #64748b;
    margin-bottom: 1rem;
}
.pz-store-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #eef2ff;
    color: #4338ca;
    border: 1px solid #c7d2fe;
    border-radius: 999px;
    padding: 0.4rem 0.85rem;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.pz-store-hero h1 {
    font-family: 'Plus Jakarta Sans', Inter, sans-serif;
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #0f172a;
    line-height: 1.15;
    margin-bottom: 1rem;
}
.pz-store-hero p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #475569;
    max-width: 38rem;
}
.pz-store-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}
.pz-store-metrics {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e2e8f0;
}
@media (min-width: 640px) {
    .pz-store-metrics { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
.pz-store-metrics strong {
    display: block;
    font-size: 1.25rem;
    font-weight: 800;
    color: #0f172a;
}
.pz-store-metrics span {
    font-size: 0.75rem;
    color: #64748b;
}
.pz-store-hero-panel {
    background: #0f172a;
    color: #e2e8f0;
    border-radius: 1.5rem;
    padding: 1.5rem 1.5rem 1.25rem;
    box-shadow: 0 24px 50px -24px rgba(15, 23, 42, 0.55);
}
.pz-store-hero-panel-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
}
.pz-store-hero-panel-head span {
    font-weight: 700;
    color: white;
}
.pz-store-hero-panel-head em {
    font-style: normal;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #a5b4fc;
    background: rgba(99,102,241,0.2);
    border-radius: 999px;
    padding: 0.25rem 0.6rem;
}
.pz-store-hero-panel ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.75rem;
}
.pz-store-hero-panel li {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    font-size: 0.9rem;
    line-height: 1.45;
}
.pz-store-hero-panel li svg { color: #34d399; margin-top: 0.15rem; flex-shrink: 0; }
.pz-store-hero-panel-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    background: #4f46e5;
    color: white;
    font-weight: 700;
    border-radius: 0.9rem;
    padding: 0.85rem 1rem;
}
.pz-store-hero-panel-cta:hover { background: #4338ca; }
.pz-store-cats, .pz-store-shop {
    padding: 2.75rem 0;
}
.pz-store-shop { background: #f8fafc; }
.pz-store-section-head {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.pz-store-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.875rem;
    font-weight: 700;
    color: #4f46e5;
}
.pz-store-cat-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}
@media (min-width: 768px) {
    .pz-store-cat-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (min-width: 1024px) {
    .pz-store-cat-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
}
.pz-store-cat {
    text-align: left;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    padding: 1rem;
    cursor: pointer;
    min-height: 7.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.pz-store-cat:hover {
    border-color: #a5b4fc;
    box-shadow: 0 12px 28px -16px rgba(79,70,229,0.35);
    transform: translateY(-2px);
}
.pz-store-cat-icon {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 0.7rem;
    background: #eef2ff;
    color: #4f46e5;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.25rem;
}
.pz-store-cat strong {
    font-size: 0.82rem;
    color: #0f172a;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.pz-store-cat small { color: #64748b; font-size: 0.75rem; }
.pz-store-vat-note {
    font-size: 0.75rem;
    font-weight: 700;
    color: #4338ca;
    background: #eef2ff;
    border-radius: 999px;
    padding: 0.35rem 0.75rem;
}
.pz-home-product-wholesale {
    position: absolute;
    top: 0.625rem;
    right: 0.625rem;
    background: #0f172a;
    color: white;
    font-size: 0.625rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.2rem 0.5rem;
    border-radius: 999px;
}
.pz-home-product-price-label {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #64748b;
    margin-bottom: 0.1rem;
}
.pz-store-benefit {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 1.15rem;
    padding: 1.35rem;
}
.pz-store-benefit-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.75rem;
    background: #eef2ff;
    color: #4f46e5;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.85rem;
}
.pz-store-benefit h3 {
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.4rem;
}
.pz-store-benefit p {
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.55;
}
.pz-store-steps { background: #eef2ff; }
.pz-store-steps-grid {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 1rem;
}
@media (min-width: 768px) {
    .pz-store-steps-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
.pz-store-steps-grid li {
    background: white;
    border-radius: 1.15rem;
    padding: 1.35rem;
    border: 1px solid #e0e7ff;
}
.pz-store-steps-grid span {
    display: block;
    font-size: 1.25rem;
    font-weight: 800;
    color: #4f46e5;
    margin-bottom: 0.5rem;
}
.pz-store-steps-grid h3 { font-weight: 700; color: #0f172a; margin-bottom: 0.35rem; }
.pz-store-steps-grid p { font-size: 0.875rem; color: #64748b; }
.pz-store-partners {
    display: grid;
    gap: 1.5rem;
    align-items: center;
    background: #0f172a;
    color: white;
    border-radius: 1.5rem;
    padding: 2rem;
}
@media (min-width: 900px) {
    .pz-store-partners { grid-template-columns: 1.1fr 1fr; padding: 2.5rem; }
}
.pz-store-partners .pz-section-title { color: white; }
.pz-store-partners .pz-section-desc { color: #94a3b8; }
.pz-store-partner-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}
.pz-store-partner-list div {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 0.9rem;
    padding: 0.9rem 1rem;
    font-weight: 700;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
}

/* Brand logo */
.pz-brand-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    text-decoration: none;
    flex-shrink: 0;
}
.pz-brand-mark {
    position: relative;
    display: grid;
    place-items: center;
}
.pz-brand-logo--sm .pz-brand-mark { width: 2.35rem; height: 2.35rem; }
.pz-brand-logo--md .pz-brand-mark { width: 2.85rem; height: 2.85rem; }
.pz-brand-logo--lg .pz-brand-mark { width: 3.4rem; height: 3.4rem; }
.pz-brand-mark svg { width: 100%; height: 100%; display: block; overflow: visible; }
.pz-brand-mark__ring {
    transform-origin: 28px 28px;
    animation: pz-logo-spin 14s linear infinite;
}
.pz-brand-mark__dot {
    animation: pz-logo-pulse 2.2s ease-in-out infinite;
}
.pz-brand-copy { display: flex; flex-direction: column; line-height: 1.15; }
.pz-brand-copy strong {
    font-family: 'Plus Jakarta Sans', Inter, sans-serif;
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #0f172a;
}
.pz-brand-copy small {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #64748b;
}
.pz-brand-logo--light .pz-brand-copy strong { color: #fff; }
.pz-brand-logo--light .pz-brand-copy small { color: #94a3b8; }
@keyframes pz-logo-spin { to { transform: rotate(360deg); } }
@keyframes pz-logo-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.45; }
}

.pz-storefront .pz-store-promo {
    overflow: hidden;
    padding: 0.5rem 0;
}
.pz-store-promo__track {
    display: flex;
    width: max-content;
    animation: pz-marquee 28s linear infinite;
}
.pz-store-promo__row {
    display: flex;
    gap: 2.25rem;
    padding-right: 2.25rem;
    white-space: nowrap;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #c7d2fe;
}
.pz-live-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: #047857;
    font-weight: 600;
}
.pz-live-pill__dot {
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 999px;
    background: #10b981;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    animation: pz-live 1.6s ease-out infinite;
}
@keyframes pz-live {
    0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.55); }
    100% { box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
}
@keyframes pz-marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.pz-store-hero {
    position: relative;
    overflow: hidden;
}
.pz-store-hero__glow {
    position: absolute;
    width: 28rem;
    height: 28rem;
    right: -6rem;
    top: -8rem;
    background: radial-gradient(circle, rgba(99,102,241,0.28), transparent 68%);
    pointer-events: none;
    animation: pz-float 8s ease-in-out infinite;
}
.pz-store-hero__gridline {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(79,70,229,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(79,70,229,0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: linear-gradient(180deg, black, transparent 88%);
    pointer-events: none;
}
.pz-store-hero h1 em {
    font-style: normal;
    display: block;
    background: linear-gradient(90deg, #4f46e5, #7c3aed);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.pz-btn-glow {
    box-shadow: 0 10px 30px -10px rgba(79, 70, 229, 0.7);
}

.pz-hero-desk {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: 0 24px 50px -28px rgba(15, 23, 42, 0.28);
}
.pz-hero-desk__chrome {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.7rem 1rem;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}
.pz-hero-desk__chrome span {
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 999px;
    background: #cbd5e1;
}
.pz-hero-desk__chrome span:nth-child(1) { background: #f87171; }
.pz-hero-desk__chrome span:nth-child(2) { background: #fbbf24; }
.pz-hero-desk__chrome span:nth-child(3) { background: #34d399; }
.pz-hero-desk__chrome em {
    margin-left: 0.5rem;
    font-style: normal;
    font-size: 0.72rem;
    font-weight: 700;
    color: #64748b;
}
.pz-hero-desk__body {
    display: grid;
    grid-template-columns: 7.5rem 1fr;
    min-height: 22rem;
}
.pz-hero-desk__side {
    background: #0f172a;
    color: #cbd5e1;
    padding: 1rem 0.75rem;
}
.pz-hero-desk__brand { margin-bottom: 1rem; display: flex; justify-content: center; }
.pz-hero-desk__brand .pz-brand-copy { display: none; }
.pz-hero-desk__side nav { display: grid; gap: 0.35rem; }
.pz-hero-desk__side nav span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.45rem 0.5rem;
    border-radius: 0.55rem;
    color: #94a3b8;
}
.pz-hero-desk__side nav span.is-on {
    background: rgba(79, 70, 229, 0.28);
    color: #fff;
}
.pz-hero-desk__main { padding: 1rem 1.1rem 1.15rem; }
.pz-hero-desk__main header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.75rem;
}
.pz-hero-desk__main header strong { font-size: 0.92rem; color: #0f172a; }
.pz-hero-desk__main header small { font-size: 0.72rem; color: #64748b; font-weight: 600; }
.pz-hero-desk__channels {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.4rem;
}
.pz-hero-desk__channels li {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 0.55rem;
    padding: 0.5rem 0.65rem;
    border: 1px solid #e2e8f0;
    border-radius: 0.7rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: #1e293b;
    background: #f8fafc;
}
.pz-hero-desk__channels li svg { color: #4f46e5; }
.pz-hero-desk__channels b {
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #64748b;
}
.pz-hero-desk__channels .is-connected b { color: #059669; }
.pz-hero-desk__catalog { margin-top: 0.9rem; }
.pz-hero-desk__catalog p {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #64748b;
    margin-bottom: 0.5rem;
}
.pz-hero-desk__catalog > div {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.5rem;
}
.pz-hero-desk__catalog figure {
    aspect-ratio: 1;
    border-radius: 0.7rem;
    overflow: hidden;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    display: grid;
    place-items: center;
    color: #94a3b8;
    margin: 0;
}
.pz-hero-desk__catalog img { width: 100%; height: 100%; object-fit: cover; }

.pz-trust-strip {
    background: white;
    border-bottom: 1px solid #e2e8f0;
    padding: 1.1rem 0;
}
.pz-trust-strip__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}
@media (min-width: 900px) {
    .pz-trust-strip__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
.pz-trust-strip__item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: #334155;
    font-size: 0.85rem;
    font-weight: 600;
}
.pz-trust-strip__item svg { color: #4f46e5; }

.pz-reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.7s ease, transform 0.7s ease;
    transition-delay: var(--d, 0ms);
}
.pz-reveal.is-in {
    opacity: 1;
    transform: none;
}
.pz-store-steps-icon {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 0.7rem;
    background: #eef2ff;
    color: #4f46e5;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.65rem;
}
.pz-store-cat { transition: border-color 0.2s, box-shadow 0.2s, transform 0.25s; }
.pz-store-cat-icon { transition: transform 0.25s; }
.pz-store-cat:hover .pz-store-cat-icon { transform: rotate(-8deg) scale(1.08); }
.pz-store-benefit { transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s; }
.pz-store-benefit:hover {
    transform: translateY(-4px);
    border-color: #c7d2fe;
    box-shadow: 0 16px 32px -18px rgba(79,70,229,0.35);
}

@media (max-width: 1023px) {
    .pz-hero-desk__side { display: none; }
    .pz-hero-desk__body { grid-template-columns: 1fr; min-height: 0; }
    .pz-brand-copy small { display: none; }
}
@media (prefers-reduced-motion: reduce) {
    .pz-brand-mark__ring,
    .pz-brand-mark__dot,
    .pz-store-promo__track,
    .pz-live-pill__dot,
    .pz-store-hero__glow { animation: none !important; }
    .pz-reveal { opacity: 1; transform: none; }
}

/* ===== Marketplace products filters + detail ===== */
.pz-mp-stock-chips {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin-top: 1rem;
}
.pz-mp-stock-chip {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .4rem .85rem;
    border-radius: 999px;
    border: 1px solid #e2e8f0;
    background: #fff;
    color: #475569;
    font-size: .8rem;
    font-weight: 600;
    text-decoration: none;
    transition: .15s ease;
}
.pz-mp-stock-chip:hover { border-color: #cbd5e1; background: #f8fafc; }
.pz-mp-stock-chip.is-active {
    border-color: #0f766e;
    background: #ecfdf5;
    color: #115e59;
}
.pz-mp-stock-chip--ok.is-active { border-color: #16a34a; background: #f0fdf4; color: #166534; }
.pz-mp-stock-chip--out.is-active { border-color: #e11d48; background: #fff1f2; color: #9f1239; }
.pz-mp-stock-dot {
    width: .55rem;
    height: .55rem;
    border-radius: 999px;
    background: currentColor;
}
.pz-mp-filter-hint {
    margin: .75rem 0 0;
    font-size: .78rem;
    color: #64748b;
    line-height: 1.45;
}

.pz-mp-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.85rem;
    padding: 1rem;
}
@media (min-width: 900px) {
    .pz-mp-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
.pz-mp-card {
    display: grid;
    grid-template-columns: 7.25rem 1fr;
    gap: 0.95rem;
    padding: 0.95rem;
    border: 1px solid #e2e8f0;
    border-radius: 1.1rem;
    background:
        linear-gradient(180deg, rgba(240, 253, 250, 0.35), transparent 42%),
        #fff;
    box-shadow: 0 10px 28px -24px rgba(15, 23, 42, 0.45);
    transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}
.pz-mp-card:hover {
    border-color: #99f6e4;
    box-shadow: 0 18px 36px -26px rgba(15, 118, 110, 0.45);
    transform: translateY(-1px);
}
.pz-mp-card__media {
    position: relative;
    width: 7.25rem;
    height: 7.25rem;
    border-radius: 0.9rem;
    overflow: hidden;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    flex-shrink: 0;
}
.pz-mp-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.pz-mp-card__placeholder,
.pz-mp-card__media.is-empty {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    background: linear-gradient(145deg, #f8fafc, #e2e8f0);
}
.pz-mp-card__discount {
    position: absolute;
    left: 0.45rem;
    top: 0.45rem;
    padding: 0.2rem 0.45rem;
    border-radius: 999px;
    background: #0f766e;
    color: #fff;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.02em;
}
.pz-mp-card__body {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}
.pz-mp-card__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.75rem;
}
.pz-mp-card__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
}
.pz-mp-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.18rem 0.5rem;
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 700;
    border: 1px solid transparent;
}
.pz-mp-chip--ok { background: #ecfdf5; color: #047857; border-color: #a7f3d0; }
.pz-mp-chip--warn { background: #fffbeb; color: #b45309; border-color: #fde68a; }
.pz-mp-chip--err { background: #fff1f2; color: #be123c; border-color: #fecdd3; }
.pz-mp-chip--muted { background: #f8fafc; color: #64748b; border-color: #e2e8f0; }
.pz-mp-chip--local { background: #f0fdfa; color: #0f766e; border-color: #99f6e4; }
.pz-mp-card__price {
    text-align: right;
    flex-shrink: 0;
}
.pz-mp-card__price strong {
    display: block;
    font-size: 1.05rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.02em;
}
.pz-mp-card__price span {
    display: block;
    font-size: 0.72rem;
    color: #94a3b8;
    text-decoration: line-through;
}
.pz-mp-card__title {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.pz-mp-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem 0.85rem;
    color: #64748b;
    font-size: 0.74rem;
    font-weight: 600;
}
.pz-mp-card__meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    max-width: 100%;
}
.pz-mp-card__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.45rem 0.65rem;
    margin: 0.15rem 0 0;
}
@media (min-width: 640px) {
    .pz-mp-card__grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}
.pz-mp-card__grid > div {
    min-width: 0;
    padding: 0.4rem 0.5rem;
    border-radius: 0.65rem;
    background: #f8fafc;
    border: 1px solid #f1f5f9;
}
.pz-mp-card__grid dt {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #94a3b8;
}
.pz-mp-card__grid dd {
    margin: 0.15rem 0 0;
    font-size: 0.76rem;
    font-weight: 600;
    color: #334155;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.pz-mp-card__error {
    display: flex;
    align-items: flex-start;
    gap: 0.4rem;
    margin: 0;
    padding: 0.45rem 0.6rem;
    border-radius: 0.65rem;
    background: #fff1f2;
    border: 1px solid #fecdd3;
    color: #9f1239;
    font-size: 0.72rem;
    line-height: 1.4;
}
.pz-mp-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-top: auto;
    padding-top: 0.25rem;
}
.pz-mp-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.48rem 0.8rem;
    border-radius: 0.7rem;
    font-size: 0.78rem;
    font-weight: 700;
    border: 1px solid transparent;
    text-decoration: none;
    cursor: pointer;
    transition: 0.15s ease;
}
.pz-mp-btn--primary {
    background: linear-gradient(135deg, #14b8a6, #0f766e);
    color: #fff;
    box-shadow: 0 8px 18px -12px rgba(15, 118, 110, 0.8);
}
.pz-mp-btn--primary:hover { filter: brightness(1.05); }
.pz-mp-btn--ghost {
    background: #fff;
    color: #475569;
    border-color: #e2e8f0;
}
.pz-mp-btn--ghost:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
}
@media (max-width: 640px) {
    .pz-mp-card {
        grid-template-columns: 5.5rem 1fr;
        gap: 0.75rem;
        padding: 0.8rem;
    }
    .pz-mp-card__media {
        width: 5.5rem;
        height: 5.5rem;
    }
}

html.dark .pz-mp-card {
    background: linear-gradient(180deg, rgba(45, 212, 191, 0.06), transparent 40%), #0f172a;
    border-color: #1f2937;
}
html.dark .pz-mp-card__media { background: #1e293b; border-color: #334155; }
html.dark .pz-mp-card__title { color: #f8fafc; }
html.dark .pz-mp-card__price strong { color: #f8fafc; }
html.dark .pz-mp-card__grid > div {
    background: #111827;
    border-color: #1f2937;
}
html.dark .pz-mp-card__grid dd { color: #cbd5e1; }
html.dark .pz-mp-btn--ghost {
    background: #111827;
    color: #cbd5e1;
    border-color: #334155;
}

.pz-mpd-drawer { max-width: 42rem; }
.pz-mpd-head {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.15rem 1.35rem;
    border-bottom: 1px solid #e2e8f0;
    background: linear-gradient(180deg, #f8fafc, #fff);
}
.pz-mpd-eyebrow {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .45rem;
    margin-bottom: .35rem;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: #64748b;
}
.pz-mpd-eyebrow__mp {
    padding: .15rem .5rem;
    border-radius: 999px;
    background: #eef2ff;
    color: #4338ca;
    letter-spacing: 0;
    text-transform: none;
}
.pz-mpd-title {
    margin: 0;
    font-size: 1.15rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.3;
}
.pz-mpd-store {
    margin: .25rem 0 0;
    font-size: .82rem;
    color: #64748b;
}
.pz-mpd-close {
    flex: 0 0 auto;
    padding: .55rem;
    border-radius: .85rem;
    color: #64748b;
    transition: .15s ease;
}
.pz-mpd-close:hover { background: #e2e8f0; color: #0f172a; }
.pz-mpd-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .75rem;
    min-height: 22rem;
    padding: 2rem;
    text-align: center;
    color: #64748b;
}
.pz-mpd-state__hint {
    margin: 0;
    max-width: 22rem;
    font-size: .8rem;
    color: #94a3b8;
}
.pz-mpd-spinner {
    width: 2.5rem;
    height: 2.5rem;
    border: 2px solid #e2e8f0;
    border-top-color: #4f46e5;
    border-radius: 999px;
    animation: pz-spin .7s linear infinite;
}
@keyframes pz-spin { to { transform: rotate(360deg); } }
.pz-mpd-state__icon {
    width: 3rem;
    height: 3rem;
    border-radius: 999px;
    display: grid;
    place-items: center;
}
.pz-mpd-state__icon--err { background: #fff1f2; color: #e11d48; }

.pz-mpd-body {
    display: grid;
    gap: 1rem;
    padding: 1.15rem 1.35rem 1.5rem;
}
.pz-mpd-hero {
    display: grid;
    gap: 1rem;
}
@media (min-width: 720px) {
    .pz-mpd-hero { grid-template-columns: .95fr 1.05fr; align-items: start; }
}
.pz-mpd-main-image {
    aspect-ratio: 1;
    max-height: 18rem;
    border-radius: 1rem;
    overflow: hidden;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    display: grid;
    place-items: center;
}
.pz-mpd-main-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.pz-mpd-main-image__empty {
    display: grid;
    place-items: center;
    gap: .4rem;
    color: #94a3b8;
    font-size: .8rem;
}
.pz-mpd-thumbs {
    display: flex;
    gap: .5rem;
    overflow-x: auto;
    padding-top: .65rem;
}
.pz-mpd-thumb {
    width: 3.25rem;
    height: 3.25rem;
    border-radius: .75rem;
    overflow: hidden;
    border: 2px solid transparent;
    background: #f1f5f9;
    flex: 0 0 auto;
}
.pz-mpd-thumb.is-active { border-color: #4f46e5; }
.pz-mpd-thumb img { width: 100%; height: 100%; object-fit: cover; }

.pz-mpd-summary { display: grid; gap: .9rem; }
.pz-mpd-badges { display: flex; flex-wrap: wrap; gap: .4rem; }
.pz-mpd-badge {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    padding: .28rem .65rem;
    border-radius: 999px;
    font-size: .72rem;
    font-weight: 700;
    border: 1px solid #e2e8f0;
    background: #fff;
    color: #334155;
}
.pz-mpd-badge--ok { background: #f0fdf4; border-color: #bbf7d0; color: #166534; }
.pz-mpd-badge--low { background: #fffbeb; border-color: #fde68a; color: #92400e; }
.pz-mpd-badge--out { background: #fff1f2; border-color: #fecdd3; color: #9f1239; }
.pz-mpd-badge--live { background: #ecfdf5; border-color: #a7f3d0; color: #047857; }
.pz-mpd-badge--local { background: #f8fafc; border-color: #e2e8f0; color: #475569; }
.pz-mpd-badge--status { background: #eef2ff; border-color: #c7d2fe; color: #3730a3; }

.pz-mpd-price-block {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
    padding: .9rem 1rem;
    border-radius: 1rem;
    background: linear-gradient(135deg, #0f172a, #1e3a5f);
    color: #fff;
}
.pz-mpd-price-label {
    margin: 0 0 .2rem;
    font-size: .72rem;
    opacity: .7;
}
.pz-mpd-price {
    margin: 0;
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -.02em;
}
.pz-mpd-price--muted {
    font-size: 1rem;
    opacity: .65;
    text-decoration: line-through;
    font-weight: 600;
}

.pz-mpd-meta-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .55rem;
}
.pz-mpd-meta-grid > div {
    padding: .7rem .75rem;
    border-radius: .85rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
}
.pz-mpd-meta-grid span {
    display: block;
    font-size: .68rem;
    color: #64748b;
    margin-bottom: .2rem;
}
.pz-mpd-meta-grid strong {
    display: block;
    font-size: .86rem;
    color: #0f172a;
    word-break: break-word;
}

.pz-mpd-ids { display: grid; gap: .45rem; }
.pz-mpd-id {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
    padding: .65rem .8rem;
    border-radius: .85rem;
    border: 1px solid #e2e8f0;
    background: #fff;
}
.pz-mpd-id span {
    display: block;
    font-size: .68rem;
    color: #64748b;
    margin-bottom: .15rem;
}
.pz-mpd-id code {
    font-size: .82rem;
    color: #0f172a;
    word-break: break-all;
}
.pz-mpd-copy {
    flex: 0 0 auto;
    padding: .35rem .65rem;
    border-radius: .55rem;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    color: #334155;
    font-size: .72rem;
    font-weight: 700;
}
.pz-mpd-copy:hover { background: #eef2ff; border-color: #c7d2fe; color: #3730a3; }
.pz-mpd-tip {
    margin: 0;
    font-size: .76rem;
    color: #64748b;
    line-height: 1.45;
}

.pz-mpd-section {
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    overflow: hidden;
    background: #fff;
}
.pz-mpd-section > header {
    padding: .75rem 1rem;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}
.pz-mpd-section > header h3 {
    margin: 0;
    font-size: .88rem;
    font-weight: 800;
    color: #0f172a;
}
.pz-mpd-field {
    display: grid;
    gap: .15rem;
    padding: .75rem 1rem;
    border-top: 1px solid #f1f5f9;
}
.pz-mpd-field:first-child { border-top: 0; }
@media (min-width: 640px) {
    .pz-mpd-field {
        grid-template-columns: 9.5rem 1fr;
        gap: .75rem;
        align-items: start;
    }
}
.pz-mpd-field dt {
    font-size: .75rem;
    font-weight: 600;
    color: #64748b;
}
.pz-mpd-field dd {
    margin: 0;
    font-size: .88rem;
    font-weight: 600;
    color: #0f172a;
    word-break: break-word;
}
.pz-mpd-description {
    padding: 1rem;
    font-size: .88rem;
    color: #334155;
    line-height: 1.6;
}
.pz-mpd-attrs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .55rem;
    padding: .85rem;
}
.pz-mpd-attr {
    padding: .65rem .75rem;
    border-radius: .75rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
}
.pz-mpd-attr span {
    display: block;
    font-size: .68rem;
    color: #64748b;
    margin-bottom: .2rem;
}
.pz-mpd-attr strong {
    display: block;
    font-size: .82rem;
    color: #0f172a;
    word-break: break-word;
}
.pz-mpd-footer {
    display: flex;
    justify-content: flex-end;
    gap: .65rem;
    padding: .9rem 1.25rem;
    border-top: 1px solid #e2e8f0;
    background: #f8fafc;
}
@media (max-width: 640px) {
    .pz-mpd-meta-grid,
    .pz-mpd-attrs { grid-template-columns: 1fr; }
}

/* ===== Landing page (anasayfa) ===== */
.pz-lp-hero {
    position: relative;
    min-height: min(88vh, 760px);
    display: flex;
    align-items: flex-end;
    padding: 5.5rem 0 4rem;
    overflow: hidden;
    background: #0f172a;
}
.pz-lp-hero__media {
    position: absolute;
    inset: 0;
}
.pz-lp-hero__bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: saturate(0.95) contrast(1.06) brightness(0.92);
    transform: scale(1.04);
    animation: pz-lp-hero- ken 18s ease-in-out infinite alternate;
}
@keyframes pz-lp-hero-ken {
    from { transform: scale(1.04) translate3d(0, 0, 0); }
    to { transform: scale(1.1) translate3d(-1.5%, -1%, 0); }
}
.pz-lp-hero__shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(15, 23, 42, 0.92) 0%, rgba(15, 23, 42, 0.72) 42%, rgba(15, 118, 110, 0.35) 100%),
        linear-gradient(0deg, rgba(15, 23, 42, 0.55), transparent 45%);
}
.pz-lp-hero__content {
    position: relative;
    z-index: 1;
    max-width: 40rem;
    color: #fff;
}
.pz-lp-brand {
    margin: 0 0 0.85rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(1.6rem, 3.5vw, 2.35rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    color: #5eead4;
}
.pz-lp-hero h1 {
    margin: 0 0 0.85rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(1.85rem, 4.2vw, 3.1rem);
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1.12;
    color: #fff;
}
.pz-lp-lead {
    margin: 0 0 1.5rem;
    font-size: 1.05rem;
    line-height: 1.6;
    color: #cbd5e1;
    max-width: 34rem;
}
.pz-lp-hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.pz-lp-proof {
    margin-top: -1.75rem;
    position: relative;
    z-index: 2;
    padding-bottom: 0.5rem;
}
.pz-lp-proof__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    padding: 1rem;
    border-radius: 1.25rem;
    border: 1px solid #e2e8f0;
    background: #fff;
    box-shadow: 0 24px 48px -28px rgba(15, 23, 42, 0.35);
}
@media (min-width: 900px) {
    .pz-lp-proof__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); padding: 1.25rem 1.5rem; }
}
.pz-lp-proof__grid > div {
    padding: 0.85rem 0.75rem;
    border-radius: 0.95rem;
}
.pz-lp-proof__grid strong {
    display: block;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.65rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #0f766e;
    line-height: 1.1;
}
.pz-lp-proof__grid span {
    display: block;
    margin-top: 0.35rem;
    font-size: 0.82rem;
    font-weight: 700;
    color: #0f172a;
}
.pz-lp-proof__grid small {
    display: block;
    margin-top: 0.2rem;
    font-size: 0.72rem;
    color: #64748b;
}

.pz-lp-trust { border-top: 0; }
.pz-trust-strip__item svg { color: #0f766e !important; }

.pz-lp-channels {
    background: linear-gradient(135deg, #0f172a 0%, #134e4a 100%) !important;
}
.pz-lp-cta .text-indigo-100 { color: #ccfbf1 !important; }

@media (max-width: 768px) {
    .pz-lp-hero {
        min-height: 72vh;
        align-items: center;
        padding: 6rem 0 3.5rem;
    }
    .pz-lp-hero__bg { animation: none; transform: scale(1.06); }
    .pz-lp-proof { margin-top: -1.25rem; }
}






/* API tokens page */
.pz-api { max-width: 72rem; }
.pz-api-layout {
    display: grid;
    gap: 1.25rem;
}
@media (min-width: 1100px) {
    .pz-api-layout { grid-template-columns: 1.35fr 0.9fr; align-items: start; }
}
.pz-api-secret {
    border-radius: 1.1rem;
    border: 1px solid #fcd34d;
    background: linear-gradient(180deg, #fffbeb 0%, #fff 70%);
    padding: 1.15rem 1.25rem;
}
.pz-api-secret__head {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.85rem;
}
.pz-api-secret__eyebrow {
    margin: 0;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #b45309;
}
.pz-api-secret h2 {
    margin: 0.2rem 0 0.3rem;
    font-size: 1.05rem;
    font-weight: 800;
    color: #92400e;
}
.pz-api-secret p { margin: 0; font-size: 0.82rem; color: #a16207; }
.pz-api-secret__code {
    display: block;
    padding: 0.9rem 1rem;
    border-radius: 0.75rem;
    background: #fff;
    border: 1px solid #fde68a;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: 0.78rem;
    word-break: break-all;
    color: #0f172a;
    user-select: all;
}
.pz-api-copy {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    border: 1px solid #f59e0b;
    background: #fff;
    color: #b45309;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 0.45rem 0.8rem;
    border-radius: 0.65rem;
    cursor: pointer;
}
.pz-api-copy:hover { background: #fffbeb; }
.pz-api-copy--sm {
    border-color: #e2e8f0;
    color: #334155;
    padding: 0.25rem 0.55rem;
    font-size: 0.7rem;
}
.pz-api-create {
    border: 1px solid #e2e8f0;
    border-radius: 1.1rem;
    background: #fff;
    padding: 1.15rem 1.25rem;
    margin-bottom: 1rem;
}
.pz-api-create h2 { margin: 0; font-size: 1rem; font-weight: 800; color: #0f172a; }
.pz-api-create > p { margin: 0.3rem 0 1rem; font-size: 0.84rem; color: #64748b; }
.pz-api-create__form {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: flex-end;
}
.pz-api-create__limit {
    margin: 0.75rem 0 0;
    font-size: 0.78rem;
    color: #b45309;
}
.pz-api-list {
    border: 1px solid #e2e8f0;
    border-radius: 1.1rem;
    background: #fff;
    overflow: hidden;
}
.pz-api-list__head {
    padding: 0.9rem 1.15rem;
    border-bottom: 1px solid #f1f5f9;
    background: #f8fafc;
}
.pz-api-list__head h2 { margin: 0; font-size: 0.92rem; font-weight: 800; color: #0f172a; }
.pz-api-token {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 1rem 1.15rem;
    border-bottom: 1px solid #f1f5f9;
}
.pz-api-token:last-child { border-bottom: 0; }
.pz-api-token__icon {
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 0.75rem;
    background: #f0fdfa;
    color: #0f766e;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.pz-api-token__body { flex: 1; min-width: 0; }
.pz-api-token__body h3 { margin: 0; font-size: 0.95rem; font-weight: 700; color: #0f172a; }
.pz-api-token__body code {
    display: inline-block;
    margin-top: 0.25rem;
    font-size: 0.75rem;
    color: #64748b;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 0.4rem;
    padding: 0.15rem 0.45rem;
}
.pz-api-token__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 1rem;
    margin-top: 0.45rem;
    font-size: 0.72rem;
    color: #94a3b8;
}
.pz-api-token__delete {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    border: none;
    background: transparent;
    color: #dc2626;
    font-size: 0.78rem;
    font-weight: 700;
    cursor: pointer;
    padding: 0.35rem 0.5rem;
    border-radius: 0.5rem;
}
.pz-api-token__delete:hover { background: #fef2f2; }
.pz-api-empty {
    padding: 2.5rem 1.25rem;
    text-align: center;
    color: #64748b;
}
.pz-api-empty p { margin: 0.65rem 0 0.2rem; font-weight: 700; color: #334155; }
.pz-api-empty span { font-size: 0.8rem; }
.pz-api-doc {
    border: 1px solid #e2e8f0;
    border-radius: 1.1rem;
    background: #fff;
    padding: 1.1rem 1.15rem;
    margin-bottom: 1rem;
}
.pz-api-doc h2 { margin: 0 0 0.75rem; font-size: 0.92rem; font-weight: 800; color: #0f172a; }
.pz-api-steps {
    margin: 0 0 1rem;
    padding-left: 1.1rem;
    font-size: 0.82rem;
    color: #475569;
    line-height: 1.55;
}
.pz-api-steps code {
    font-size: 0.72rem;
    background: #f1f5f9;
    padding: 0.1rem 0.35rem;
    border-radius: 0.3rem;
}
.pz-api-doc__block {
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    background: #f8fafc;
    padding: 0.7rem 0.8rem;
    margin-bottom: 0.65rem;
}
.pz-api-doc__toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.4rem;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #94a3b8;
}
.pz-api-doc__block > code {
    display: block;
    font-size: 0.78rem;
    word-break: break-all;
    color: #0f172a;
}
.pz-api-pre {
    margin: 0;
    white-space: pre-wrap;
    word-break: break-word;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: 0.72rem;
    line-height: 1.45;
    color: #334155;
}
.pz-api-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-bottom: 0.75rem;
}
.pz-api-tab {
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    color: #64748b;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.35rem 0.6rem;
    border-radius: 999px;
    cursor: pointer;
}
.pz-api-tab.is-active {
    background: #0f766e;
    border-color: #0f766e;
    color: #fff;
}
.pz-api-endpoints { display: grid; gap: 0.45rem; }
.pz-api-endpoint {
    display: flex;
    gap: 0.55rem;
    align-items: flex-start;
    padding: 0.45rem 0.35rem;
    border-bottom: 1px solid #f1f5f9;
}
.pz-api-endpoint:last-child { border-bottom: 0; }
.pz-api-endpoint code {
    display: block;
    font-size: 0.75rem;
    color: #0f172a;
}
.pz-api-endpoint small {
    display: block;
    margin-top: 0.1rem;
    font-size: 0.7rem;
    color: #94a3b8;
}
.pz-api-method {
    flex-shrink: 0;
    min-width: 3.1rem;
    text-align: center;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    padding: 0.2rem 0.35rem;
    border-radius: 0.35rem;
}
.pz-api-method--get { background: #ecfdf5; color: #047857; }
.pz-api-method--post { background: #eff6ff; color: #1d4ed8; }
.pz-api-method--patch { background: #fff7ed; color: #c2410c; }
.pz-api-method--delete { background: #fef2f2; color: #b91c1c; }
.pz-api-doc__note {
    margin: 0.85rem 0 0;
    font-size: 0.72rem;
    color: #94a3b8;
}
[x-cloak] { display: none !important; }

/* ===== Landing SEO / about / FAQ ===== */
.pz-lp-about {
    position: relative;
    padding: 5rem 0;
    overflow: hidden;
    background:
        radial-gradient(ellipse 80% 60% at 10% 20%, rgba(20, 184, 166, 0.14), transparent 55%),
        radial-gradient(ellipse 70% 50% at 90% 80%, rgba(15, 118, 110, 0.1), transparent 50%),
        linear-gradient(180deg, #f8fafc 0%, #f0fdfa 48%, #f8fafc 100%);
}
.pz-lp-about__glow {
    position: absolute;
    inset: auto -10% -30% auto;
    width: min(42vw, 420px);
    height: min(42vw, 420px);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(45, 212, 191, 0.22), transparent 70%);
    filter: blur(8px);
    pointer-events: none;
    animation: pz-lp-about-pulse 10s ease-in-out infinite alternate;
}
@keyframes pz-lp-about-pulse {
    from { transform: translate3d(0, 0, 0) scale(1); opacity: 0.7; }
    to { transform: translate3d(-4%, -3%, 0) scale(1.08); opacity: 1; }
}
.pz-lp-about__grid {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 2.25rem;
    align-items: start;
}
@media (min-width: 960px) {
    .pz-lp-about__grid {
        grid-template-columns: 1.4fr 0.85fr;
        gap: 3rem;
        align-items: center;
    }
}
.pz-lp-about__copy p {
    margin: 0 0 1rem;
    color: #334155;
    font-size: 1.02rem;
    line-height: 1.75;
}
.pz-lp-about__bullets {
    list-style: none;
    margin: 1.5rem 0 0;
    padding: 0;
    display: grid;
    gap: 0.65rem;
}
.pz-lp-about__bullets li {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    font-weight: 600;
    color: #0f766e;
    font-size: 0.95rem;
}
.pz-lp-about__bullets i {
    flex-shrink: 0;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 999px;
    background: #ccfbf1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.pz-lp-about__panel {
    display: grid;
    gap: 0.85rem;
    padding: 1.5rem;
    border-radius: 1.35rem;
    background: linear-gradient(160deg, #0f766e 0%, #134e4a 55%, #0f172a 100%);
    color: #fff;
    box-shadow: 0 24px 50px -28px rgba(15, 118, 110, 0.65);
}
.pz-lp-about__stat {
    padding: 0.85rem 0.95rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
}
.pz-lp-about__stat strong {
    display: block;
    font-size: 1.65rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
}
.pz-lp-about__stat span {
    display: block;
    margin-top: 0.2rem;
    font-size: 0.82rem;
    color: rgba(204, 251, 241, 0.9);
}
.pz-lp-about__note {
    margin: 0.35rem 0 0;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.45;
}
.pz-lp-faq {
    padding: 4.5rem 0 5rem;
    background: #fff;
}
.pz-lp-faq__list {
    max-width: 48rem;
    margin: 0 auto;
    display: grid;
    gap: 0.75rem;
}
.pz-lp-faq__item {
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    background: #f8fafc;
    overflow: hidden;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.pz-lp-faq__item:hover {
    border-color: #99f6e4;
    box-shadow: 0 10px 28px -22px rgba(15, 118, 110, 0.45);
}
.pz-lp-faq__q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.05rem 1.2rem;
    text-align: left;
    font-weight: 700;
    font-size: 1rem;
    color: #0f172a;
    background: transparent;
    border: 0;
    cursor: pointer;
}
.pz-lp-faq__q i {
    flex-shrink: 0;
    color: #0f766e;
    transition: transform 0.2s ease;
}
.pz-lp-faq__q i.is-open {
    transform: rotate(180deg);
}
.pz-lp-faq__a {
    padding: 0 1.2rem 1.15rem;
}
.pz-lp-faq__a p {
    margin: 0;
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.7;
}
