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

body {
    margin: 0;
    font-family: "YS Text", "Segoe UI", Arial, sans-serif;
    color: #212121;
    background: #f5f5f5;
}

a {
    color: #0066cc;
    text-decoration: none;
}

.container {
    width: min(1100px, calc(100% - 32px));
    margin: 0 auto;
}

.panel-header {
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 24px;
}

.panel-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 56px;
}

.panel-header nav a {
    margin-left: 16px;
    color: #333;
}

.logo {
    font-weight: 700;
    color: #000;
}

.card,
.auth-card,
.form-card {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.auth-card {
    width: min(100%, 420px);
    margin: 48px auto 24px;
}

.auth-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    color: #fc3f1d;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.03em;
    text-decoration: none;
}

.auth-brand .site-brand-icon {
    width: 32px;
    height: 32px;
}

.auth-card h1 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 20px;
    font-size: 24px;
    font-weight: 600;
}

.auth-card h1 i {
    color: #fc3f1d;
    font-size: 22px;
}

.auth-help {
    margin: 0 0 20px;
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

.auth-notice {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 0 0 20px;
    padding: 14px 16px;
    border-radius: 14px;
    background: #f0f7ff;
    border: 1px solid #dbeafe;
}

.auth-notice i {
    flex-shrink: 0;
    margin-top: 2px;
    color: #0066cc;
    font-size: 18px;
}

.auth-notice p {
    margin: 0;
    color: #334;
    font-size: 14px;
    line-height: 1.55;
}

.auth-field {
    display: block;
    margin-bottom: 16px;
}

.auth-field-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.auth-field-label i {
    width: 16px;
    color: #888;
    font-size: 14px;
    text-align: center;
}

.auth-field input {
    width: 100%;
    margin-top: 0;
    padding: 12px 14px;
    border: 1px solid #ddd;
    border-radius: 12px;
    font: inherit;
    font-size: 16px;
    background: #fff;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.auth-field input:focus {
    outline: none;
    border-color: #ffdb4d;
    box-shadow: 0 0 0 3px rgba(255, 219, 77, 0.25);
}

.auth-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    min-height: 48px;
    margin-top: 4px;
    font-size: 16px;
    font-weight: 600;
}

.auth-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 16px;
    align-items: center;
    margin: 18px 0 0;
    font-size: 14px;
}

.auth-links a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #0066cc;
    text-decoration: none;
}

.auth-links a i {
    font-size: 13px;
    color: #888;
}

.auth-links a:hover {
    color: #c00;
}

.auth-links a:hover i {
    color: #c00;
}

.auth-footer-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin: 16px 0 0;
    color: #0066cc;
    font-size: 14px;
    text-decoration: none;
}

.auth-footer-link i {
    font-size: 13px;
    color: #888;
}

.auth-footer-link:hover {
    color: #c00;
}

.auth-footer-link:hover i {
    color: #c00;
}

.hero {
    background: linear-gradient(135deg, #ffdb4d, #ffe680);
    border-radius: 20px;
    padding: 48px 32px;
    margin: 24px 0;
}

.hero h1 {
    margin: 0 0 12px;
}

.hero-actions {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.btn {
    display: inline-block;
    border: 0;
    border-radius: 12px;
    padding: 10px 18px;
    cursor: pointer;
    font: inherit;
}

.btn-primary {
    background: #ffdb4d;
    color: #000;
}

.btn-secondary {
    background: #eee;
    color: #000;
}

.btn-danger {
    background: #ff4d4f;
    color: #fff;
}

label {
    display: block;
    margin-bottom: 14px;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="url"],
input[type="number"],
input[type="time"],
select,
textarea {
    width: 100%;
    margin-top: 6px;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font: inherit;
}

.field-hint {
    display: block;
    margin-top: 6px;
    color: #888;
    font-size: 13px;
}

.address-preview {
    margin: 0 0 16px;
    padding: 12px 14px;
    border-radius: 10px;
    background: #f7f7f7;
    color: #444;
    font-size: 14px;
    line-height: 1.5;
}

.profile-address-cascade {
    margin-bottom: 16px;
}

.user-profile-form .profile-address-cascade {
    margin-bottom: 0;
}

.profile-address-grid select:disabled {
    opacity: 0.65;
    cursor: not-allowed;
}

.address-cascade-hint {
    margin: 0 0 16px;
    color: #666;
    font-size: 13px;
    line-height: 1.5;
}

.profile-address-cascade input[readonly] {
    background: #f3f3f3;
    cursor: default;
}

.profile-category-picker {
    display: block;
}

.category-picker {
    position: relative;
}

.category-picker-input {
    width: 100%;
}

.category-picker-results {
    position: absolute;
    z-index: 30;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    max-height: 240px;
    overflow-y: auto;
    border: 1px solid #ddd;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.category-picker-option,
.category-picker-empty {
    display: block;
    width: 100%;
    padding: 10px 12px;
    border: 0;
    background: transparent;
    text-align: left;
    font: inherit;
    color: inherit;
    cursor: pointer;
}

.category-picker-option:hover,
.category-picker-option:focus {
    background: #f5f7fa;
}

.category-picker-empty {
    color: #777;
    cursor: default;
}

.category-picker-hint {
    margin: 6px 0 0;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.table {
    width: 100%;
    border-collapse: collapse;
}

.table th,
.table td {
    padding: 12px 8px;
    border-bottom: 1px solid #eee;
    text-align: left;
    vertical-align: top;
}

.badge {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 999px;
    font-size: 12px;
}

.badge-pending {
    background: #fff3cd;
}

.badge-published {
    background: #d4edda;
}

.badge-rejected {
    background: #f8d7da;
}

.alert {
    padding: 12px 16px;
    border-radius: 10px;
    margin-bottom: 16px;
}

.alert-success {
    background: #d4edda;
}

.alert-error {
    background: #f8d7da;
}

.alert-info {
    background: #d1ecf1;
}

.toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
}

.toolbar-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.table-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.table-actions a {
    color: #0066cc;
    text-decoration: none;
}

.table-actions a:hover {
    color: #c00;
}

.inline-form {
    display: inline;
    margin: 0;
}

.link-button {
    padding: 0;
    border: 0;
    background: none;
    color: #c00;
    font: inherit;
    cursor: pointer;
    text-decoration: underline;
}

.link-button:hover {
    color: #900;
}

.form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 8px;
}

.filters a {
    margin-right: 10px;
    color: #666;
}

.filters a.active {
    color: #000;
    font-weight: 700;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

.stat-card {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
}

.stat-card strong {
    display: block;
    font-size: 28px;
}

.admin-dashboard-intro {
    margin-bottom: 16px;
}

.admin-dashboard-intro h1 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 4px;
    font-size: 26px;
    line-height: 1.2;
}

.admin-dashboard-intro h1 i {
    color: #fc3f1d;
    font-size: 22px;
}

.admin-dashboard-subtitle {
    margin: 0;
    color: #666;
    font-size: 15px;
}

.admin-dashboard-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 20px;
}

.admin-dashboard-stat {
    min-width: 0;
}

.admin-dashboard-stat-pending i {
    background: #fff4e5;
    color: #c77700;
}

.admin-dashboard-stat-new i {
    background: #eef6ff;
    color: #2563eb;
}

.admin-dashboard-stat-revision i {
    background: #f3efff;
    color: #7c3aed;
}

.admin-dashboard-stat-reviews i {
    background: #fff8df;
    color: #c99700;
}

.admin-dashboard-stat-published i {
    background: #ecfdf3;
    color: #059669;
}

.admin-dashboard-stat-bulk i {
    background: #f5f6f8;
    color: #4b5563;
}

.admin-dashboard-stat-users i {
    background: #fef2f2;
    color: #dc2626;
}

.admin-dashboard-recent .toolbar h2 {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    font-size: 18px;
}

.admin-dashboard-recent .toolbar h2 i {
    color: #888;
    font-size: 16px;
}

.admin-dashboard-empty {
    margin: 0;
    color: #666;
}

.admin-dashboard-recent-table-wrap {
    overflow-x: auto;
}

.bulk-stats-grid {
    margin-top: 20px;
}

.bulk-profiles-simple-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
}

.bulk-profiles-simple-top h1 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 6px;
}

.bulk-profiles-simple-top h1 i {
    color: #fc3f1d;
}

.bulk-profiles-simple-lead {
    margin: 0;
    color: #666;
    font-size: 15px;
}

.bulk-profiles-simple-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.bulk-profiles-data-status {
    margin-bottom: 16px;
}

.bulk-profiles-simple-stats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.bulk-create-form-simple {
    margin-top: 4px;
}

.bulk-create-form-simple .form-actions {
    margin-top: 8px;
}

.bulk-settings-simple {
    padding: 22px;
    overflow: hidden;
}

.bulk-settings-simple.card {
    border-radius: 16px;
}

.bulk-settings-simple .bulk-profiles-simple-top {
    margin-bottom: 16px;
}

.bulk-settings-simple .bulk-profiles-data-status {
    margin-bottom: 16px;
}

.bulk-settings-simple .bulk-stats-grid {
    margin-bottom: 18px;
}

.bulk-settings-stats-row {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.bulk-settings-stats-row .stat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 0;
    padding: 14px 10px;
    border: 1px solid #eceff3;
    background: linear-gradient(180deg, #fff 0%, #fafbfc 100%);
    text-align: center;
}

.bulk-settings-stats-row .stat-card span,
.bulk-settings-stats-row .bulk-stat-label {
    display: block;
    color: #6b7280;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.25;
}

.bulk-settings-stats-row .stat-card strong {
    margin-top: 6px;
    font-size: 22px;
    font-variant-numeric: tabular-nums;
    line-height: 1.1;
    color: #111827;
    word-break: break-word;
}

.bulk-settings-stats-row .bulk-stat-label-compact {
    display: none;
}

.bulk-delete-simple .bulk-settings-stats-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.bulk-delete-simple .bulk-delete-preset-name {
    font-size: 16px;
    line-height: 1.25;
    word-break: break-word;
}

.bulk-delete-note {
    margin: 0 0 16px;
    color: #6b7280;
    font-size: 14px;
    line-height: 1.5;
}

.bulk-delete-actions {
    margin-top: 4px;
}

.bulk-delete-actions .btn-reset-system {
    min-height: 48px;
    padding: 0 24px;
    border-radius: 999px;
    font-size: 16px;
}

.bulk-delete-done-hint {
    margin-top: 16px;
    margin-bottom: 0;
}

.bulk-settings-preset-picker {
    display: grid;
    gap: 8px;
    max-width: 100%;
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 14px;
    color: #374151;
}

.bulk-settings-preset-picker select {
    width: 100%;
    min-height: 44px;
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    background: #fff;
    font-size: 15px;
}

.bulk-settings-form-simple {
    display: grid;
    gap: 16px;
}

.bulk-settings-block {
    padding: 18px;
    border: 1px solid #eceff3;
    border-radius: 16px;
    background: #fafbfc;
}

.bulk-settings-block h2 {
    margin: 0 0 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #eceff3;
    font-size: 18px;
    line-height: 1.3;
    color: #111827;
}

.bulk-settings-block-lead {
    margin: 0 0 14px;
    color: #6b7280;
    font-size: 14px;
    line-height: 1.5;
}

.bulk-settings-form-simple .form-field-label {
    font-weight: 600;
    font-size: 13px;
    color: #374151;
}

.bulk-settings-form-simple .form-field input[type="text"],
.bulk-settings-form-simple .form-field input[type="time"],
.bulk-settings-form-simple .form-field select,
.bulk-settings-form-simple .form-field textarea {
    width: 100%;
    min-height: 44px;
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    background: #fff;
    font-size: 15px;
}

.bulk-settings-form-simple .form-field textarea {
    min-height: 120px;
    resize: vertical;
    line-height: 1.45;
}

.bulk-settings-form-simple .form-field input[type="file"] {
    width: 100%;
    min-height: 44px;
    padding: 10px 0;
    font-size: 14px;
}

.bulk-settings-form-simple .field-hint {
    margin-top: 6px;
    color: #6b7280;
    font-size: 12px;
    line-height: 1.45;
}

.bulk-settings-fields.form-grid {
    gap: 14px;
}

.bulk-settings-block .form-field {
    margin-bottom: 0;
}

.bulk-settings-inline-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    align-items: end;
    margin-bottom: 14px;
}

.bulk-settings-inline-row .form-field {
    margin-bottom: 0;
}

.bulk-settings-checkbox-inline {
    grid-column: 1 / -1;
    margin: 0;
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid #eceff3;
    background: #fff;
}

.bulk-settings-city-filter .field-hint {
    margin: 0 0 10px;
}

.bulk-settings-city-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    max-height: 220px;
    overflow: auto;
    padding: 10px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    background: #fff;
    -webkit-overflow-scrolling: touch;
}

.bulk-settings-city-option {
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 40px;
    padding: 8px 10px;
    border-radius: 10px;
    border: 1px solid #eef1f4;
    background: #fafbfc;
    font-size: 13px;
    cursor: pointer;
    user-select: none;
}

.bulk-settings-city-option:has(input:checked) {
    border-color: #f3e7a8;
    background: #fffdf7;
}

.bulk-settings-city-option input {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    margin: 0;
}

.bulk-settings-city-option span {
    line-height: 1.3;
}

.bulk-settings-save-bar {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding-top: 4px;
}

.bulk-settings-save-bar .btn {
    min-height: 44px;
    padding: 0 20px;
    border-radius: 999px;
    font-size: 15px;
}

.bulk-settings-simple .bulk-settings-actions {
    padding: 0;
    border-top: none;
}

.bulk-settings-scope-row {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 12px 18px;
    margin-bottom: 14px;
}

.bulk-settings-merkez-field {
    flex: 1 1 180px;
    min-width: 160px;
    margin-bottom: 0;
}

.bulk-settings-address-row .form-field {
    flex: 1 1 120px;
}

.bulk-settings-remove-check {
    font-size: 13px;
}

.bulk-settings-simple-tools {
    display: grid;
    gap: 12px;
    margin-top: 18px;
    padding: 16px;
    border: 1px solid #eceff3;
    border-radius: 16px;
    background: #fafbfc;
}

.bulk-settings-advanced-tools {
    margin-left: 0;
}

.bulk-settings-advanced-body {
    display: grid;
    gap: 10px;
}

.bulk-settings-tool-form {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: stretch;
    margin: 0;
    width: 100%;
}

.bulk-settings-tool-form input[type="text"] {
    flex: 1 1 180px;
    min-width: 0;
    min-height: 44px;
    margin: 0;
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    background: #fff;
}

.bulk-settings-tool-form .btn,
.bulk-settings-tool-form .link-button {
    min-height: 44px;
}

.bulk-add-preset-form {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: stretch;
    width: 100%;
}

.bulk-add-preset-form input[type="text"] {
    flex: 1 1 220px;
    min-width: 0;
}

.bulk-settings-details {
    border: 1px solid #eceff3;
    border-radius: 12px;
    background: #fff;
    overflow: hidden;
}

.bulk-settings-details summary {
    padding: 12px 14px;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
}

.bulk-settings-details summary::-webkit-details-marker {
    display: none;
}

.bulk-settings-details-body {
    padding: 0 14px 14px;
}

.bulk-settings-media {
    margin: 16px 0;
    padding-top: 16px;
    border-top: 1px solid #eceff3;
}

.bulk-settings-media h3 {
    margin: 0 0 6px;
    font-size: 16px;
    color: #111827;
}

.bulk-settings-media-grid {
    display: grid;
    grid-template-columns: minmax(200px, 260px) minmax(0, 1fr);
    gap: 14px;
    margin-top: 12px;
}

.bulk-settings-media-box {
    display: grid;
    gap: 10px;
    padding: 14px;
    border: 1px dashed #d5dbe3;
    border-radius: 14px;
    background: #fff;
}

.bulk-settings-media-preview {
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid #ececec;
    background: #fff;
}

.bulk-settings-media-preview img,
.bulk-settings-gallery-item img {
    display: block;
    width: 100%;
    max-height: 160px;
    object-fit: cover;
    background: #fff;
}

.bulk-settings-media-empty {
    margin: 0;
    padding: 16px 12px;
    border-radius: 12px;
    border: 1px dashed #e5e7eb;
    background: #f9fafb;
    color: #9ca3af;
    font-size: 13px;
    text-align: center;
}

.bulk-settings-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(92px, 1fr));
    gap: 8px;
    margin-bottom: 8px;
}

.bulk-settings-gallery-item {
    display: grid;
    gap: 6px;
    padding: 6px;
    border-radius: 12px;
    border: 1px solid #eceff3;
    background: #fff;
    cursor: pointer;
}

.bulk-settings-gallery-remove {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    font-size: 11px;
    color: #666;
}

.bulk-settings-gallery-grid-pending {
    margin-top: 8px;
}

.bulk-settings-gallery-item.is-pending {
    cursor: default;
}

.bulk-settings-gallery-pending-label {
    display: block;
    text-align: center;
    font-size: 11px;
    color: #2563eb;
    font-weight: 600;
}

.bulk-settings-repair-stack {
    display: grid;
    gap: 10px;
    margin: 0 0 18px;
}

.bulk-settings-repair-alert {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 14px;
    margin: 0;
}

.bulk-settings-repair-form {
    margin: 0;
}

.bulk-rules {
    margin: 24px 0;
    padding: 16px 20px;
    background: #f8f9fb;
    border-radius: 12px;
}

.bulk-rules h2 {
    margin: 0 0 12px;
    font-size: 18px;
}

.bulk-rules ul {
    margin: 0;
    padding-left: 20px;
}

.bulk-rules li + li {
    margin-top: 6px;
}

.bulk-create-form {
    display: grid;
    gap: 16px;
    max-width: 520px;
}

.bulk-create-form label {
    display: grid;
    gap: 6px;
}

.checkbox-label {
    display: flex !important;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-label input {
    margin-top: 3px;
}

.form-hint {
    margin: 0;
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

.field-hint {
    display: block;
    margin-top: 4px;
    color: #777;
    font-size: 13px;
}

.bulk-settings-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin-top: 20px;
}

.bulk-settings-section {
    display: grid;
    gap: 14px;
}

.bulk-settings-section h2,
.bulk-settings-section h3 {
    margin: 0;
}

.bulk-settings-section h3 {
    margin-top: 8px;
    font-size: 16px;
}

.bulk-settings-form label {
    display: grid;
    gap: 6px;
}

.bulk-inline-fields {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.bulk-preset-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 20px 0 0;
}

.bulk-preset-tab {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: #f2f3f5;
    color: #333;
    text-decoration: none;
}

.bulk-preset-tab.active {
    background: #111;
    color: #fff;
}

.bulk-placeholder-help {
    padding: 12px 14px;
    border-radius: 10px;
    background: #f8f9fb;
    font-size: 14px;
}

.bulk-placeholder-help ul {
    margin: 8px 0 0;
    padding-left: 18px;
}

.bulk-settings-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #ececec;
}

.bulk-settings-page {
    padding: 0;
    overflow: hidden;
}

.bulk-settings-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 22px 0;
}

.bulk-settings-top h1 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 6px;
    font-size: 24px;
}

.bulk-settings-top h1 i {
    color: #fc3f1d;
}

.bulk-settings-lead {
    margin: 0;
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

.bulk-settings-top-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.bulk-settings-top-actions .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.bulk-settings-page .bulk-preset-tabs {
    margin: 18px 22px 0;
    padding-bottom: 4px;
    overflow-x: auto;
    flex-wrap: nowrap;
}

.bulk-settings-stack {
    display: grid;
    gap: 16px;
    padding: 18px 22px 0;
}

.bulk-settings-panel {
    border: 1px solid #ececec;
    border-radius: 16px;
    background: #fafbfc;
    overflow: hidden;
}

.bulk-settings-panel-head {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 18px;
    border-bottom: 1px solid #ececec;
    background: #fff;
}

.bulk-settings-panel-icon {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: #fff8df;
    color: #a67c00;
    flex-shrink: 0;
}

.bulk-settings-panel-head h2 {
    margin: 0 0 4px;
    font-size: 18px;
}

.bulk-settings-panel-head p {
    margin: 0;
    color: #666;
    font-size: 14px;
}

.bulk-settings-panel-body {
    display: grid;
    gap: 14px;
    padding: 16px 18px 18px;
}

.bulk-settings-fields {
    gap: 14px;
}

.bulk-settings-inline-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.bulk-settings-inline-card {
    display: grid;
    gap: 10px;
    padding: 14px;
    border: 1px solid #e8eaee;
    border-radius: 12px;
    background: #fff;
}

.bulk-template-vars-hint {
    margin: -4px 0 0;
}

.bulk-settings-details {
    border: 1px solid #e8eaee;
    border-radius: 12px;
    background: #fff;
    padding: 0 14px;
}

.bulk-settings-details summary {
    cursor: pointer;
    padding: 12px 0;
    font-weight: 600;
}

.bulk-settings-details-body {
    padding-bottom: 14px;
}

.bulk-settings-status {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid #dbeafe;
    background: #f0f7ff;
}

.bulk-settings-status.is-ready {
    border-color: #ccefd8;
    background: #f0faf3;
}

.bulk-settings-status.is-ready i {
    color: #198754;
}

.bulk-settings-status.is-missing {
    border-color: #ffe3bf;
    background: #fff8eb;
}

.bulk-settings-status.is-missing i {
    color: #b45309;
}

.bulk-settings-status strong {
    display: block;
    margin-bottom: 4px;
}

.bulk-settings-status span {
    display: block;
    color: #555;
    font-size: 14px;
    line-height: 1.45;
}

.bulk-settings-actions {
    display: flex;
    justify-content: flex-end;
    padding: 0 22px 18px;
}

.bulk-settings-actions .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 44px;
    padding-inline: 20px;
}

.bulk-settings-tools {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    padding: 16px 22px 22px;
    border-top: 1px solid #ececec;
    background: #fafbfc;
}

.bulk-settings-tool-form {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin: 0;
}

.bulk-settings-tool-form input[type="text"] {
    min-width: 180px;
    margin: 0;
}

.bulk-settings-form .form-field {
    margin-bottom: 0;
}

.bulk-add-preset-form {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.bulk-add-preset-form input[type="text"] {
    min-width: 220px;
}

.bulk-progress-panel {
    margin: 16px 0 20px;
    padding: 20px;
    border-radius: 12px;
    background: #f8f9fb;
    border: 1px solid #e4e8ef;
}

.bulk-progress-panel.is-active {
    position: sticky;
    top: 12px;
    z-index: 20;
    background: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.bulk-progress-panel h2 {
    margin: 0 0 6px;
    font-size: 18px;
}

.bulk-progress-note {
    margin: 0 0 12px;
    color: #6b7280;
    font-size: 13px;
    line-height: 1.45;
}

.bulk-progress-bar-wrap {
    height: 12px;
    border-radius: 999px;
    background: #e4e6ea;
    overflow: hidden;
}

.bulk-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #2d7ff9, #1a5fd0);
    transition: width 0.25s ease;
}

.bulk-sector-seed-panel {
    margin-bottom: 20px;
    padding: 16px 18px;
}

.bulk-sector-seed-form {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px 16px;
    margin-top: 12px;
}

.bulk-progress-text {
    margin: 12px 0 8px;
    font-weight: 600;
}

.bulk-progress-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    color: #444;
    font-size: 14px;
}

.bulk-address-modes {
    display: grid;
    gap: 10px;
    margin: 12px 0 16px;
}

.radio-label {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 10px 12px;
    border: 1px solid #ececec;
    border-radius: 10px;
    cursor: pointer;
}

.radio-label input {
    margin-top: 3px;
}

.bulk-advanced-address,
.bulk-fallback-address {
    border: 1px solid #ececec;
    border-radius: 10px;
    padding: 10px 14px;
}

.bulk-fallback-address summary {
    cursor: pointer;
    font-weight: 600;
}

.bulk-fallback-address-body {
    display: grid;
    gap: 14px;
    margin-top: 14px;
}

@media (max-width: 900px) {
    .bulk-settings-top {
        flex-direction: column;
        padding: 16px 16px 0;
    }

    .bulk-settings-top-actions {
        width: 100%;
    }

    .bulk-settings-top-actions .btn {
        flex: 1 1 auto;
        justify-content: center;
    }

    .bulk-settings-page .bulk-preset-tabs {
        margin-inline: 16px;
    }

    .bulk-settings-stack,
    .bulk-settings-actions {
        padding-inline: 16px;
    }

    .bulk-settings-tools {
        flex-direction: column;
        align-items: stretch;
        padding: 16px;
    }

    .bulk-settings-tool-form,
    .bulk-settings-tool-form .btn {
        width: 100%;
    }

    .bulk-settings-inline-cards {
        grid-template-columns: 1fr;
    }

    .bulk-settings-grid {
        grid-template-columns: 1fr;
    }
}

.profile-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.profile-card {
    display: block;
    background: #fafafa;
    border-radius: 12px;
    padding: 16px;
    color: inherit;
}

.profile-card span,
.profile-card small {
    display: block;
    margin-top: 6px;
    color: #666;
}

.hint {
    color: #666;
    font-size: 14px;
}

.hours-grid,
.inline-form {
    display: grid;
    gap: 10px;
}

.hours-row {
    display: grid;
    grid-template-columns: 120px 80px 1fr 1fr;
    gap: 8px;
    align-items: center;
}

.inline-form {
    grid-template-columns: 2fr 120px auto;
    margin-bottom: 20px;
}

.preview-image,
.preview-thumb {
    max-width: 180px;
    border-radius: 12px;
}

.gallery-preview {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.gallery-preview img {
    width: 120px;
    height: 90px;
    object-fit: cover;
    border-radius: 10px;
}

.photo-keep {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    margin-right: 12px;
}

.photo-keep img {
    width: 90px;
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
}

.profile-upload-field {
    display: grid;
    gap: 10px;
    margin-bottom: 20px;
}

.profile-upload-label {
    font-weight: 600;
    font-size: 15px;
    color: #111;
}

.profile-upload-dropzone {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 156px;
    padding: 22px 18px;
    border: 2px dashed #d8dce3;
    border-radius: 18px;
    background: linear-gradient(180deg, #fcfcfd 0%, #f6f7f9 100%);
    text-align: center;
    cursor: pointer;
    transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

.profile-upload-dropzone:hover,
.profile-upload-dropzone:focus-within {
    border-color: #ffdb4d;
    background: #fffdf5;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.profile-upload-dropzone.is-selected {
    border-color: #ffdb4d;
    border-style: solid;
    background: #fffdf5;
}

.profile-upload-input {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.profile-upload-icon {
    display: grid;
    place-items: center;
    width: 56px;
    height: 56px;
    border-radius: 18px;
    background: #fff8df;
    color: #c99700;
    font-size: 24px;
}

.profile-upload-title {
    font-size: 16px;
    font-weight: 600;
    color: #111;
    line-height: 1.3;
}

.profile-upload-hint {
    max-width: 280px;
    font-size: 13px;
    color: #777;
    line-height: 1.45;
}

.profile-upload-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 0 14px;
    border-radius: 999px;
    background: #fff;
    color: #0066cc;
    font-size: 14px;
    font-weight: 600;
    box-shadow: inset 0 0 0 1px #e7ebf0;
}

.profile-upload-dropzone.is-selected .profile-upload-status {
    color: #333;
}

.profile-upload-preview-wrap {
    display: flex;
    justify-content: center;
    padding: 12px;
    border-radius: 16px;
    background: #f6f7f9;
}

.profile-upload-preview-placeholder {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: min(100%, 160px);
    aspect-ratio: 1;
    border-radius: 16px;
    background: #fff8df;
    color: #c99700;
    text-align: center;
    box-shadow: inset 0 0 0 1px #f3e7a8;
}

.profile-upload-preview-placeholder.is-visible {
    display: flex;
}

.profile-upload-preview-placeholder i {
    font-size: 36px;
}

.profile-upload-preview-placeholder span {
    font-size: 12px;
    font-weight: 600;
    color: #9a7b00;
}

.profile-upload-preview-image {
    width: min(100%, 160px);
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.profile-upload-preview-image[hidden] {
    display: none;
}

.profile-upload-preview-image.is-default-image {
    object-fit: contain;
    padding: 16px;
    background: #fff8df;
}

.profile-upload-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(92px, 1fr));
    gap: 10px;
}

.profile-upload-gallery-grid img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 12px;
    background: #f3f3f3;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.profile-shared-images-notice {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid #dbeafe;
    background: #eff6ff;
    color: #1e3a5f;
}

.profile-shared-images-notice > i {
    flex-shrink: 0;
    margin-top: 2px;
    font-size: 18px;
    color: #2563eb;
}

.profile-shared-images-notice strong {
    display: block;
    margin-bottom: 4px;
    font-size: 14px;
}

.profile-shared-images-notice p {
    margin: 0;
    font-size: 13px;
    line-height: 1.5;
    color: #334155;
}

.profile-keep-photos {
    display: grid;
    gap: 12px;
    margin-bottom: 20px;
}

.profile-keep-photos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(104px, 1fr));
    gap: 10px;
}

.profile-keep-photos .photo-keep {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 10px;
    border-radius: 14px;
    background: #f6f7f9;
}

.profile-keep-photos .photo-keep img {
    width: 100%;
    height: 88px;
}

.photo-keep-label {
    font-size: 12px;
    font-weight: 600;
    color: #555;
}

.site-footer {
    padding: 24px 0 40px;
    color: #666;
}

.site-legal-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px 16px;
    flex-wrap: wrap;
    width: 100%;
    font-size: 11px;
    line-height: 1.45;
}

.site-legal-copy {
    flex-shrink: 0;
    color: inherit;
    font-size: 12px;
}

.site-legal-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 2px 0;
    margin-left: auto;
    text-align: right;
    font-size: 11px;
}

.site-legal-links a {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

.site-legal-links a:hover {
    color: #333;
    text-decoration: underline;
}

.site-legal-sep {
    margin: 0 6px;
    opacity: 0.5;
    user-select: none;
    font-size: 10px;
}

.yandex-footer .site-legal-footer,
.site-footer .site-legal-footer {
    font-size: 11px;
}

.yandex-footer .site-legal-copy,
.site-footer .site-legal-copy {
    font-size: 12px;
}

.yandex-footer .site-legal-links a:hover {
    color: #bbb;
}

.site-legal-footer-profile {
    flex-direction: column;
    align-items: stretch;
    text-align: left;
    gap: 8px;
}

.site-legal-footer-profile .site-legal-links {
    margin-left: 0;
    justify-content: flex-start;
    text-align: left;
}

.legal-page {
    padding: 32px 16px 48px;
}

.legal-page-card {
    width: min(720px, calc(100% - 32px));
    margin: 0 auto;
    padding: 28px 32px;
}

.legal-page-head h1 {
    margin: 16px 0 0;
    font-size: 28px;
    line-height: 1.25;
}

.legal-page-content {
    margin-top: 24px;
    line-height: 1.65;
    color: #333;
    font-size: 15px;
}

.legal-page-actions {
    margin-top: 32px;
    padding-top: 20px;
    border-top: 1px solid #ececec;
}

.legal-page-empty .legal-page-card {
    text-align: center;
}

.admin-legal-page {
    max-width: 1200px;
    margin: 0 auto;
}

.admin-legal-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 20px;
}

.admin-legal-intro h1 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 6px;
    font-size: 24px;
}

.admin-legal-intro h1 i {
    color: #fc3f1d;
}

.admin-legal-subtitle {
    margin: 0;
    color: #666;
    font-size: 14px;
}

.admin-legal-grid {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 20px;
    align-items: start;
}

.admin-legal-list-card h2,
.admin-legal-editor-card h2 {
    margin: 0 0 12px;
    font-size: 18px;
}

.admin-legal-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 16px;
}

.admin-legal-list-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 8px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    border: 1px solid transparent;
}

.admin-legal-list-link:hover {
    background: #f7f7f7;
}

.admin-legal-list-link.is-active {
    background: #fff5f3;
    border-color: #ffd4cc;
    color: #c62828;
    font-weight: 600;
}

.admin-legal-list-link.is-inactive {
    opacity: 0.65;
}

.admin-legal-list-link small {
    font-size: 11px;
    color: #888;
    font-weight: 400;
}

.admin-legal-add summary {
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: #fc3f1d;
    margin-bottom: 12px;
}

.admin-legal-add-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 8px;
}

.admin-legal-add-form label,
.admin-legal-form label {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #444;
}

.admin-legal-add-form input,
.admin-legal-add-form textarea,
.admin-legal-form input,
.admin-legal-form textarea {
    font-weight: 400;
}

.admin-legal-content-field textarea {
    min-height: 360px;
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 13px;
    line-height: 1.5;
}

.admin-legal-active {
    align-self: end;
}

.admin-legal-secondary-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #ececec;
}

.admin-legal-editor-head {
    margin-bottom: 16px;
}

.admin-legal-editor-head .field-hint {
    margin: 6px 0 0;
    font-size: 13px;
}

.admin-legal-editor-head .field-hint a {
    color: #fc3f1d;
    word-break: break-all;
}

/* Kullanıcı ve admin paneli */
.user-panel-header .user-panel-brand,
.admin-panel-header .admin-panel-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fc3f1d;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.03em;
    text-decoration: none;
}

.user-panel-header .user-panel-brand .site-brand-icon,
.admin-panel-header .admin-panel-brand .site-brand-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.user-panel-nav,
.admin-panel-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.user-panel-nav-link,
.admin-panel-nav-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 12px;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.15s ease, color 0.15s ease;
}

.user-panel-nav-link i,
.admin-panel-nav-link i {
    width: 16px;
    text-align: center;
    color: #666;
}

.user-panel-nav-link:hover,
.user-panel-nav-link.is-active,
.admin-panel-nav-link:hover,
.admin-panel-nav-link.is-active {
    background: #fff8df;
    color: #111;
}

.user-panel-nav-link.is-active i,
.user-panel-nav-link:hover i,
.admin-panel-nav-link.is-active i,
.admin-panel-nav-link:hover i {
    color: #c99700;
}

.user-panel-nav-link-muted,
.admin-panel-nav-link-muted {
    color: #666;
}

.user-panel-nav-link-add {
    background: #fff8df;
}

.user-panel-nav-link-add i {
    color: #c99700;
}

.user-panel-nav-link-logout,
.admin-panel-nav-link-logout {
    border: 1px solid #ececec;
    background: #fafafa;
}

.user-panel-header nav a,
.admin-panel-header nav a {
    margin-left: 0;
}

.user-panel-header .panel-header-inner,
.admin-panel-header .panel-header-inner {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 12px;
    min-height: auto;
    padding: 12px 0 0;
}

.user-panel-header .user-panel-nav,
.admin-panel-header .admin-panel-nav {
    width: 100%;
}

.admin-panel-header.panel-header {
    margin-bottom: 16px;
    border-bottom: none;
}

.admin-panel-header .panel-header-inner {
    padding-bottom: 8px;
}

.admin-profiles-page {
    padding-top: 8px;
    padding-bottom: 24px;
}

.user-dashboard {
    padding-bottom: 88px;
}

.user-dashboard-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 20px;
}

.user-dashboard-intro h1 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 6px;
    font-size: 26px;
    line-height: 1.2;
}

.user-dashboard-intro h1 i {
    color: #fc3f1d;
    font-size: 22px;
}

.user-dashboard-subtitle {
    margin: 0;
    color: #666;
    font-size: 15px;
    line-height: 1.5;
}

.user-dashboard-search {
    flex: 0 1 320px;
    width: min(100%, 320px);
    margin-left: auto;
}

.user-dashboard-search-label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.user-dashboard-search-field {
    position: relative;
    display: flex;
    align-items: center;
}

.user-dashboard-search-field > .fa-magnifying-glass {
    position: absolute;
    left: 14px;
    color: #888;
    font-size: 14px;
    pointer-events: none;
}

.user-dashboard-search-input {
    width: 100%;
    min-height: 44px;
    padding: 10px 40px 10px 40px;
    border: 1px solid #ddd;
    border-radius: 12px;
    background: #fff;
    color: #111;
    font-size: 15px;
    line-height: 1.4;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.user-dashboard-search-input:focus {
    outline: none;
    border-color: #fc3f1d;
    box-shadow: 0 0 0 3px rgba(252, 63, 29, 0.12);
}

.user-dashboard-search-input::-webkit-search-cancel-button {
    display: none;
}

.user-dashboard-search-clear {
    position: absolute;
    right: 8px;
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    border: 0;
    border-radius: 999px;
    background: #f2f2f2;
    color: #666;
    cursor: pointer;
}

.user-dashboard-search-clear:hover {
    background: #e8e8e8;
    color: #111;
}

.user-dashboard-search-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 48px 20px;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    text-align: center;
    color: #666;
}

.user-dashboard-search-empty i {
    font-size: 28px;
    color: #bbb;
}

.user-dashboard-search-empty p {
    margin: 0;
}

#user-dashboard-results.is-search-loading {
    opacity: 0.55;
    pointer-events: none;
    transition: opacity 0.15s ease;
}

.user-dashboard-pagination[hidden] {
    display: none;
}

.admin-profiles-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 20px;
}

.admin-profiles-intro h1 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 6px;
    font-size: 26px;
    line-height: 1.2;
}

.admin-profiles-intro h1 i {
    color: #fc3f1d;
    font-size: 22px;
}

.admin-profiles-subtitle {
    margin: 0;
    color: #666;
    font-size: 15px;
    line-height: 1.5;
}

.admin-profiles-search {
    flex: 0 1 360px;
    width: min(100%, 360px);
    margin-left: auto;
}

.admin-profiles-stats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-bottom: 16px;
}

.admin-profiles-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
    margin-bottom: 16px;
    padding: 12px 14px;
    border: 1px solid #ececec;
    border-radius: 14px;
    background: #fff;
}

.admin-profiles-filters a {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid #ececec;
    background: #fafafa;
    color: #555;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
}

.admin-profiles-filters a.active,
.admin-profiles-filters a:hover {
    border-color: #f3e7a8;
    background: #fff8df;
    color: #111;
}

.admin-profiles-page-meta {
    margin: 0 0 12px;
    color: #666;
    font-size: 14px;
}

.admin-profiles-results-card {
    margin-bottom: 16px;
    padding: 0;
    overflow: hidden;
    background: transparent;
    border: none;
    box-shadow: none;
    border-radius: 0;
}

.admin-profiles-results-card > #admin-profiles-results {
    padding: 0;
}

.admin-profiles-table-wrap {
    display: none;
}

.admin-profiles-cards {
    display: grid;
    gap: 12px;
    padding: 0;
}

.admin-profiles-search-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 48px 20px;
    text-align: center;
    color: #666;
}

.admin-profiles-search-empty i {
    font-size: 28px;
    color: #bbb;
}

.admin-profiles-search-empty p {
    margin: 0;
}

#admin-profiles-results.is-search-loading {
    opacity: 0.55;
    pointer-events: none;
    transition: opacity 0.15s ease;
}

.admin-profiles-pagination .simple-pagination {
    margin-top: 0;
}

.admin-reviews-pagination {
    margin-top: 16px;
}

.admin-reviews-pagination .simple-pagination {
    margin-top: 0;
}

.admin-profile-card {
    margin-bottom: 0;
}

.admin-profiles-page .user-profile-list {
    gap: 12px;
}

.admin-profiles-page .user-profile-card {
    border: 1px solid #eceff3;
    border-radius: 16px;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
    background: #fff;
    padding: 0;
    overflow: hidden;
}

.admin-profiles-page .user-profile-card-body {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 12px 14px;
}

.admin-profiles-page .user-profile-card-head {
    gap: 10px;
    align-items: center;
}

.admin-profiles-page .user-profile-avatar {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    box-shadow: none;
    border: 1px solid #eef1f4;
}

.admin-profiles-page .user-profile-avatar.is-default-image img {
    padding: 5px;
}

.admin-profiles-page .user-profile-card-info h2 {
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    line-height: 1.3;
}

.admin-profiles-page .user-profile-card-title-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px 8px;
    margin-bottom: 2px;
}

.admin-profiles-page .user-profile-meta {
    color: #6b7280;
    font-size: 12px;
    margin-bottom: 0;
}

.admin-profiles-page .user-profile-status {
    padding: 3px 8px;
    font-size: 11px;
}

.admin-profiles-page .user-profile-card-actions {
    margin-top: 10px;
    padding-top: 8px;
    border-top: 1px solid #f1f3f5;
}

.admin-profiles-page .user-profile-badges {
    margin-top: 8px;
}

.admin-profiles-page .user-profile-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
}

.admin-profiles-page .user-profile-action,
.admin-profiles-page .user-profile-delete-form .user-profile-action {
    flex: 0 1 auto;
    width: auto;
    min-width: 0;
    min-height: 0;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 5px 10px;
    border-radius: 999px;
    border: 1px solid #e8ebf0;
    background: #fafbfc;
    font-size: 11px;
    font-weight: 500;
    box-shadow: none;
    transform: none;
    white-space: nowrap;
    line-height: 1.2;
    text-decoration: none;
    cursor: pointer;
}

.admin-profiles-page .user-profile-delete-form {
    display: contents;
}

.admin-profiles-page .user-profile-action i {
    font-size: 11px;
    color: #6b7280;
}

.admin-profiles-page .user-profile-action:hover {
    transform: none;
    box-shadow: none;
    background: #f3f4f6;
    border-color: #dde3ea;
    color: #111;
}

.admin-profiles-page .user-profile-action-primary {
    background: #fffdf7;
    border-color: #f0e6b8;
}

.admin-profiles-page .user-profile-action-primary i {
    color: #b8860b;
}

.admin-profiles-page .user-profile-action-danger {
    background: #fef8f8;
    border-color: #f0dede;
    color: #b42318;
}

.admin-profiles-page .user-profile-action-danger i {
    color: #d92d20;
}

.admin-reviews-page {
    padding-top: 8px;
    padding-bottom: 24px;
}

.admin-reviews-header {
    margin-bottom: 16px;
}

.admin-reviews-intro h1 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 4px;
    font-size: 26px;
    line-height: 1.2;
}

.admin-reviews-intro h1 i {
    color: #fc3f1d;
    font-size: 22px;
}

.admin-reviews-subtitle {
    margin: 0;
    color: #666;
    font-size: 15px;
    line-height: 1.5;
}

.admin-reviews-filters {
    margin-bottom: 16px;
}

.admin-reviews-list {
    display: grid;
    gap: 12px;
}

.admin-review-card {
    margin-bottom: 0;
    padding: 0;
    overflow: hidden;
    border: 1px solid #eceff3;
    border-radius: 16px;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.admin-review-card-body {
    padding: 14px 16px;
}

.admin-review-card-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
}

.admin-review-card-main {
    min-width: 0;
    flex: 1;
}

.admin-review-business {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #111;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.35;
    text-decoration: none;
}

.admin-review-business i {
    color: #fc3f1d;
    font-size: 14px;
}

.admin-review-business:hover {
    color: #fc3f1d;
}

.admin-review-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.admin-review-meta strong {
    font-size: 14px;
    font-weight: 600;
    color: #374151;
}

.admin-review-meta .user-profile-status {
    padding: 3px 8px;
    font-size: 11px;
}

.admin-review-date {
    flex-shrink: 0;
    color: #888;
    font-size: 13px;
    white-space: nowrap;
}

.admin-review-comment {
    margin: 0;
    color: #4b5563;
    font-size: 14px;
    line-height: 1.55;
    word-break: break-word;
}

.admin-review-card-actions {
    margin-top: 12px;
    padding-top: 10px;
    border-top: 1px solid #f1f3f5;
}

.admin-reviews-page .admin-review-actions-form {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.admin-reviews-page .user-profile-action {
    flex: 0 1 auto;
    width: auto;
    min-width: 0;
    min-height: 0;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 5px 10px;
    border-radius: 999px;
    border: 1px solid #e8ebf0;
    background: #fafbfc;
    font-size: 11px;
    font-weight: 500;
    box-shadow: none;
    transform: none;
    white-space: nowrap;
    line-height: 1.2;
    cursor: pointer;
}

.admin-reviews-page .user-profile-action i {
    font-size: 11px;
    color: #6b7280;
}

.admin-reviews-page .user-profile-action-primary {
    background: #fffdf7;
    border-color: #f0e6b8;
}

.admin-reviews-page .user-profile-action-primary i {
    color: #b8860b;
}

.admin-reviews-page .user-profile-action-danger {
    background: #fef8f8;
    border-color: #f0dede;
    color: #b42318;
}

.admin-reviews-page .user-profile-action-danger i {
    color: #d92d20;
}

.admin-reviews-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 48px 20px;
    border: 1px solid #eceff3;
    border-radius: 16px;
    background: #fff;
    text-align: center;
    color: #666;
}

.admin-reviews-empty i {
    font-size: 28px;
    color: #bbb;
}

.admin-reviews-empty p {
    margin: 0;
}

.admin-category-add-form {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(120px, 0.7fr) auto;
    gap: 12px;
    align-items: end;
}

.admin-category-add-form label,
.admin-category-edit-form label {
    display: grid;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: #444;
}

.admin-category-edit-form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    align-items: end;
}

.admin-category-edit-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.admin-categories-page {
    display: grid;
    gap: 16px;
}

.admin-categories-header {
    margin-bottom: 0;
}

.admin-categories-intro h1 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 4px;
    font-size: 26px;
    line-height: 1.2;
}

.admin-categories-intro h1 i {
    color: #fc3f1d;
    font-size: 22px;
}

.admin-categories-subtitle {
    margin: 0;
    color: #666;
    font-size: 15px;
}

.admin-categories-stats {
    margin-bottom: 0;
}

.admin-categories-stat i {
    background: #f5f6f8;
    color: #4b5563;
}

.admin-categories-stat-active i {
    background: #ecfdf3;
    color: #059669;
}

.admin-categories-stat-inactive i {
    background: #fef2f2;
    color: #dc2626;
}

.admin-categories-add-card {
    margin-bottom: 0;
    padding: 18px;
    border: 1px solid #eceff3;
    border-radius: 16px;
}

.admin-categories-add-title {
    margin: 0 0 14px;
    font-size: 18px;
    line-height: 1.3;
}

.admin-categories-add-card .admin-category-add-form {
    margin-bottom: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
}

.admin-categories-add-card .form-field {
    margin-bottom: 0;
}

.admin-categories-add-card .form-field input {
    width: 100%;
    min-height: 44px;
    margin-top: 0;
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    font-size: 15px;
}

.admin-categories-add-btn {
    min-height: 44px;
    border-radius: 999px;
}

.admin-categories-list {
    display: grid;
    gap: 12px;
}

.admin-category-card {
    margin-bottom: 0;
    padding: 0;
    overflow: hidden;
    border: 1px solid #eceff3;
    border-radius: 16px;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.admin-category-card-body {
    padding: 14px 16px;
}

.admin-category-card-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.admin-category-card-main {
    min-width: 0;
    flex: 1;
}

.admin-category-card-head h2 {
    margin: 0;
    font-size: 18px;
    line-height: 1.3;
    color: #111827;
    word-break: break-word;
}

.admin-category-card-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 12px;
    margin-top: 8px;
    color: #6b7280;
    font-size: 13px;
    line-height: 1.4;
}

.admin-category-card-meta code {
    padding: 2px 6px;
    border-radius: 6px;
    background: #f3f4f6;
    color: #374151;
    font-size: 12px;
    word-break: break-all;
}

.admin-category-card-meta strong {
    color: #374151;
    font-weight: 600;
}

.admin-category-card-head .user-profile-status {
    flex-shrink: 0;
    padding: 4px 10px;
    font-size: 11px;
}

.admin-category-card-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
}

.admin-categories-page .user-profile-action,
.admin-categories-page .admin-category-action-form .user-profile-action {
    flex: 0 1 auto;
    width: auto;
    min-width: 0;
    min-height: 0;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid #e8ebf0;
    background: #fafbfc;
    font-size: 12px;
    font-weight: 500;
    box-shadow: none;
    transform: none;
    white-space: nowrap;
    line-height: 1.2;
    text-decoration: none;
    cursor: pointer;
}

.admin-categories-page .admin-category-action-form {
    display: contents;
}

.admin-categories-page .user-profile-action i {
    font-size: 11px;
    color: #6b7280;
}

.admin-categories-page .user-profile-action:hover {
    transform: none;
    box-shadow: none;
    background: #f3f4f6;
}

.admin-categories-page .user-profile-action-primary {
    border-color: #dbeafe;
    background: #eff6ff;
}

.admin-categories-page .user-profile-action-primary i {
    color: #2563eb;
}

.admin-categories-page .user-profile-action-danger {
    border-color: #fecaca;
    background: #fef2f2;
}

.admin-categories-page .user-profile-action-danger i {
    color: #dc2626;
}

.admin-category-edit-form .form-field input {
    width: 100%;
    min-height: 44px;
    margin-top: 0;
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    font-size: 15px;
}

.admin-category-edit-form .admin-category-edit-actions .btn {
    min-height: 44px;
    flex: 1 1 auto;
}

.admin-categories-empty {
    display: grid;
    place-items: center;
    gap: 10px;
    padding: 48px 20px;
    border: 1px dashed #e5e7eb;
    border-radius: 16px;
    background: #fafbfc;
    color: #6b7280;
    text-align: center;
}

.admin-categories-empty i {
    font-size: 28px;
    color: #9ca3af;
}

.admin-categories-empty p {
    margin: 0;
    font-size: 15px;
}

.admin-users-page {
    display: grid;
    gap: 16px;
}

.admin-account-card {
    margin-bottom: 0;
    padding: 16px 18px;
    border: 1px solid #dbeafe;
    border-radius: 16px;
    background: linear-gradient(180deg, #f8fbff 0%, #fff 100%);
}

.admin-account-head h2 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 4px;
    font-size: 20px;
    line-height: 1.3;
}

.admin-account-head h2 i {
    color: #2563eb;
}

.admin-account-subtitle {
    margin: 0;
    color: #6b7280;
    font-size: 14px;
    line-height: 1.5;
}

.admin-account-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 16px;
}

.admin-account-panel {
    padding: 14px;
    border: 1px solid #eceff3;
    border-radius: 14px;
    background: #fff;
}

.admin-account-panel h3 {
    margin: 0 0 6px;
    font-size: 16px;
    line-height: 1.3;
}

.admin-account-form .form-grid {
    margin-top: 10px;
}

.admin-account-form .form-actions {
    margin-top: 12px;
}

.admin-account-user-summary {
    display: grid;
    gap: 8px;
    margin: 12px 0;
    padding: 12px;
    border: 1px solid #eef2f7;
    border-radius: 12px;
    background: #fafbfc;
}

.admin-account-user-row {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: space-between;
    gap: 8px;
}

.admin-account-label {
    color: #6b7280;
    font-size: 13px;
}

.admin-account-user-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 4px;
}

.badge-self {
    border-color: #bfdbfe;
    background: #eff6ff;
    color: #1d4ed8;
}

.admin-user-card.is-self {
    border-color: #bfdbfe;
    box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.08);
}

.admin-users-header {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
}

.admin-users-intro h1 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 4px;
    font-size: 26px;
    line-height: 1.2;
}

.admin-users-intro h1 i {
    color: #fc3f1d;
    font-size: 22px;
}

.admin-users-subtitle {
    margin: 0;
    color: #666;
    font-size: 15px;
    line-height: 1.5;
}

.admin-users-search {
    flex: 0 1 360px;
    width: min(100%, 360px);
    margin-left: auto;
}

.admin-users-stats {
    margin-bottom: 0;
}

.admin-users-stat i {
    background: #f5f6f8;
    color: #4b5563;
}

.admin-users-stat-active i {
    background: #ecfdf3;
    color: #059669;
}

.admin-users-stat-suspended i {
    background: #fef2f2;
    color: #dc2626;
}

.admin-users-results-card {
    margin-bottom: 0;
    padding: 14px;
    border: 1px solid #eceff3;
    border-radius: 16px;
}

.admin-users-results.is-search-loading {
    opacity: 0.65;
    pointer-events: none;
}

.admin-users-list {
    display: grid;
    gap: 12px;
}

.admin-user-card {
    margin-bottom: 0;
    padding: 0;
    overflow: hidden;
    border: 1px solid #eceff3;
    border-radius: 16px;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.admin-user-card-body {
    padding: 14px 16px;
}

.admin-user-card-head {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.admin-user-avatar {
    display: grid;
    place-items: center;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: #f3f4f6;
    color: #6b7280;
    font-size: 18px;
}

.admin-user-card-main {
    min-width: 0;
    flex: 1;
}

.admin-user-card-title-row h2 {
    margin: 0 0 6px;
    font-size: 18px;
    line-height: 1.3;
    color: #111827;
    word-break: break-word;
}

.admin-user-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    margin: 0 0 4px;
    color: #6b7280;
    font-size: 13px;
    line-height: 1.45;
    word-break: break-word;
}

.admin-user-meta i {
    width: 14px;
    color: #9ca3af;
    text-align: center;
}

.admin-user-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 12px;
}

.admin-user-badges .user-profile-status {
    padding: 4px 10px;
    font-size: 11px;
}

.admin-user-card-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 12px;
}

.admin-users-page .user-profile-action {
    flex: 0 1 auto;
    width: auto;
    min-width: 0;
    min-height: 0;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid #e8ebf0;
    background: #fafbfc;
    font-size: 12px;
    font-weight: 500;
    box-shadow: none;
    transform: none;
    white-space: nowrap;
    line-height: 1.2;
    text-decoration: none;
    cursor: pointer;
}

.admin-users-page .user-profile-action i {
    font-size: 11px;
    color: #6b7280;
}

.admin-users-page .user-profile-action:hover {
    transform: none;
    box-shadow: none;
    background: #f3f4f6;
}

.admin-users-page .user-profile-action-primary {
    border-color: #dbeafe;
    background: #eff6ff;
}

.admin-users-page .user-profile-action-primary i {
    color: #2563eb;
}

.admin-users-empty,
.admin-users-search-empty {
    display: grid;
    place-items: center;
    gap: 10px;
    padding: 48px 20px;
    border: 1px dashed #e5e7eb;
    border-radius: 16px;
    background: #fafbfc;
    color: #6b7280;
    text-align: center;
}

.admin-users-empty i,
.admin-users-search-empty i {
    font-size: 28px;
    color: #9ca3af;
}

.admin-users-empty p,
.admin-users-search-empty p {
    margin: 0;
    font-size: 15px;
}

.admin-mail-page {
    display: grid;
    gap: 16px;
}

.admin-mail-header {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
}

.admin-mail-intro h1 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 4px;
    font-size: 26px;
    line-height: 1.2;
}

.admin-mail-intro h1 i {
    color: #2563eb;
    font-size: 22px;
}

.admin-mail-subtitle {
    margin: 0;
    color: #666;
    font-size: 15px;
    line-height: 1.5;
}

.admin-mail-stats {
    margin-bottom: 0;
}

.admin-mail-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.admin-mail-tab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border: 1px solid #e5e7eb;
    border-radius: 999px;
    background: #fff;
    color: #374151;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
}

.admin-mail-tab.is-active {
    border-color: #bfdbfe;
    background: #eff6ff;
    color: #1d4ed8;
}

.admin-mail-block {
    margin-bottom: 0;
    padding: 18px;
    border: 1px solid #eceff3;
    border-radius: 16px;
}

.admin-mail-block h2 {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 8px;
    font-size: 18px;
    line-height: 1.3;
}

.admin-mail-block h2 i {
    color: #888;
    font-size: 16px;
}

.admin-mail-lead {
    margin: 0 0 16px;
    color: #6b7280;
    font-size: 14px;
    line-height: 1.5;
}

.admin-mail-driver-help {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 16px;
}

.admin-mail-driver-card {
    display: grid;
    gap: 4px;
    padding: 12px;
    border: 1px solid #eceff3;
    border-radius: 12px;
    background: #fafbfc;
    font-size: 13px;
    line-height: 1.45;
}

.admin-mail-driver-card strong {
    color: #111827;
}

.admin-mail-driver-card span {
    color: #6b7280;
}

.admin-mail-driver-card.is-recommended {
    border-color: #bfdbfe;
    background: #eff6ff;
}

.admin-mail-smtp-panel {
    display: none;
    margin-top: 16px;
    padding: 16px;
    border: 1px solid #dbeafe;
    border-radius: 14px;
    background: #f8fbff;
}

.admin-mail-smtp-panel.is-visible {
    display: block;
}

.admin-mail-smtp-panel h3 {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 8px;
    font-size: 16px;
}

.admin-mail-smtp-presets {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px dashed #dbeafe;
}

.admin-mail-smtp-preset-list {
    margin: 8px 0 0;
    padding-left: 18px;
    color: #6b7280;
    font-size: 13px;
    line-height: 1.5;
}

.admin-mail-field {
    display: block;
    margin-bottom: 14px;
}

.admin-mail-field textarea,
.admin-mail-field input[type="text"],
.admin-mail-field input[type="email"] {
    width: 100%;
    margin-top: 6px;
}

.admin-mail-field textarea {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: 13px;
    line-height: 1.5;
}

.admin-mail-template-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.admin-mail-template-link {
    padding: 8px 12px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    background: #fafbfc;
    color: #374151;
    font-size: 13px;
    text-decoration: none;
}

.admin-mail-template-link.is-active {
    border-color: #bfdbfe;
    background: #eff6ff;
    color: #1d4ed8;
    font-weight: 600;
}

.admin-mail-variables {
    margin-bottom: 16px;
    padding: 12px 14px;
    border: 1px dashed #dbeafe;
    border-radius: 12px;
    background: #f8fbff;
}

.admin-mail-variables-label {
    display: block;
    margin-bottom: 8px;
    color: #374151;
    font-size: 13px;
    font-weight: 600;
}

.admin-mail-variable-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.admin-mail-variable {
    padding: 4px 8px;
    border-radius: 6px;
    background: #fff;
    border: 1px solid #dbeafe;
    color: #1d4ed8;
    font-size: 12px;
}

.admin-mail-preview {
    margin-top: 12px;
}

.admin-mail-preview summary {
    cursor: pointer;
    color: #2563eb;
    font-size: 14px;
    font-weight: 500;
}

.admin-mail-preview-body {
    margin-top: 10px;
    padding: 12px;
    border-radius: 10px;
    background: #f9fafb;
    border: 1px solid #eceff3;
}

.admin-mail-preview-body pre {
    margin: 8px 0 0;
    white-space: pre-wrap;
    word-break: break-word;
    font-size: 13px;
    line-height: 1.5;
}

.admin-mail-save-bar {
    position: sticky;
    bottom: 12px;
    display: flex;
    justify-content: flex-end;
    padding: 12px 0 0;
}

.admin-mail-reset-form {
    margin-top: -4px;
}

.admin-mail-tools-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.admin-mail-inline-form {
    display: grid;
    gap: 12px;
}

.admin-mail-log-head {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.admin-mail-log-head h2 {
    margin: 0;
}

.admin-mail-log {
    max-height: 420px;
    overflow: auto;
    margin: 0;
    padding: 14px;
    border-radius: 12px;
    background: #111827;
    color: #e5e7eb;
    font-size: 12px;
    line-height: 1.5;
    white-space: pre-wrap;
    word-break: break-word;
}

.admin-maintenance-page {
    display: grid;
    gap: 16px;
}

.admin-maintenance-header {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
}

.admin-maintenance-intro h1 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 4px;
    font-size: 26px;
    line-height: 1.2;
}

.admin-maintenance-intro h1 i {
    color: #fc3f1d;
    font-size: 22px;
}

.admin-maintenance-subtitle {
    margin: 0;
    color: #666;
    font-size: 15px;
    line-height: 1.5;
}

.admin-maintenance-stats {
    margin-bottom: 0;
}

.admin-maintenance-block {
    margin-bottom: 0;
    padding: 18px;
    border: 1px solid #eceff3;
    border-radius: 16px;
}

.admin-maintenance-block h2 {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 8px;
    font-size: 18px;
    line-height: 1.3;
}

.admin-maintenance-block h2 i {
    color: #888;
    font-size: 16px;
}

.admin-maintenance-lead {
    margin: 0 0 16px;
    color: #6b7280;
    font-size: 14px;
    line-height: 1.5;
}

.admin-maintenance-status {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid #dbeafe;
    background: #f0f7ff;
}

.admin-maintenance-status.is-ready {
    border-color: #ccefd8;
    background: #f0faf3;
}

.admin-maintenance-status.is-ready i {
    color: #198754;
}

.admin-maintenance-status.is-missing {
    border-color: #ffe3bf;
    background: #fff8eb;
}

.admin-maintenance-status.is-missing i {
    color: #b45309;
}

.admin-maintenance-status strong {
    display: block;
    margin-bottom: 4px;
}

.admin-maintenance-status span {
    display: block;
    color: #555;
    font-size: 14px;
    line-height: 1.45;
}

.admin-maintenance-meta {
    margin: 0 0 14px;
    color: #6b7280;
    font-size: 13px;
}

.admin-maintenance-form {
    display: grid;
    gap: 12px;
}

.admin-maintenance-form-inline {
    gap: 0;
}

.admin-maintenance-option {
    margin: 0;
    padding: 12px 14px;
    border: 1px solid #eceff3;
    border-radius: 12px;
    background: #fafbfc;
}

.admin-maintenance-submit {
    justify-self: start;
    min-height: 44px;
    border-radius: 999px;
}

.user-dashboard-add {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    white-space: nowrap;
}

.user-dashboard-alert {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.user-dashboard-alert i {
    flex-shrink: 0;
    margin-top: 2px;
    font-size: 20px;
    color: #0c5460;
}

.user-dashboard-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 20px;
}

.user-dashboard-stat {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.user-dashboard-stat i {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: #fff8df;
    color: #c99700;
    font-size: 16px;
}

.user-dashboard-stat strong {
    display: block;
    font-size: 22px;
    line-height: 1.1;
    color: #111;
}

.user-dashboard-stat span {
    display: block;
    margin-top: 2px;
    font-size: 13px;
    color: #666;
}

.user-profile-list {
    display: grid;
    gap: 16px;
}

.user-profile-card {
    display: flex;
    flex-direction: column;
    margin-bottom: 0;
    padding: 0;
    overflow: hidden;
}

.user-profile-card-body {
    padding: 18px 18px 16px;
}

.user-profile-card-head {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.user-profile-avatar-link {
    flex-shrink: 0;
    display: block;
    text-decoration: none;
    color: inherit;
    border-radius: 16px;
}

.user-profile-avatar-link:hover .user-profile-avatar,
.user-profile-avatar-link:focus-visible .user-profile-avatar {
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.16);
}

.user-profile-avatar {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 16px;
    overflow: hidden;
    background: #ffdb4d;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.user-profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.user-profile-avatar.is-default-image,
.user-profile-avatar.is-default-image img,
img.is-default-image,
.profile-logo.is-default-image {
    object-fit: contain;
    background: #fff8df;
}

.user-profile-avatar.is-default-image {
    background: #fff8df;
}

.user-profile-avatar.is-default-image img {
    object-fit: contain;
    padding: 8px;
}

.user-profile-avatar.is-placeholder {
    display: grid;
    place-items: center;
}

.user-profile-avatar.is-placeholder span {
    font-size: 22px;
    font-weight: 700;
    color: #111;
}

.user-profile-card-info {
    min-width: 0;
    flex: 1;
}

.user-profile-card-title-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 6px;
}

.user-profile-card-info h2 {
    margin: 0;
    font-size: 18px;
    line-height: 1.3;
    word-break: break-word;
}

.user-profile-meta {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0 0 4px;
    color: #666;
    font-size: 14px;
    line-height: 1.4;
}

.user-profile-meta:last-child {
    margin-bottom: 0;
}

.user-profile-meta i {
    color: #999;
    font-size: 12px;
}

.user-profile-location {
    color: #777;
}

.user-profile-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.user-profile-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    flex-shrink: 0;
}

.user-profile-status i {
    font-size: 11px;
}

.user-profile-card-footer {
    border-top: 1px solid #ececec;
    background: #fafbfc;
    padding: 12px;
}

.user-profile-actions {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
}

.user-profile-action,
.user-profile-delete-form .user-profile-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 76px;
    padding: 10px 8px;
    border: 1px solid #e8eaee;
    border-radius: 12px;
    background: #fff;
    color: #111;
    font: inherit;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.25;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.user-profile-action:hover {
    background: #f5f6f8;
    border-color: #d8dce3;
    color: #111;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.user-profile-action-icon {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: #f3f4f6;
    color: #555;
}

.user-profile-action-icon i {
    font-size: 15px;
}

.user-profile-action-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.user-profile-action-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    border-radius: 999px;
    background: #111;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
}

.user-profile-action-primary {
    border-color: #f3df8d;
    background: #fffdf5;
}

.user-profile-action-primary .user-profile-action-icon {
    background: #fff3bf;
    color: #a67c00;
}

.user-profile-action-primary:hover {
    background: #fff8df;
    border-color: #efd56d;
}

.user-profile-action-danger {
    border-color: #f5c2c0;
    background: #fff8f7;
    color: #b42318;
}

.user-profile-action-danger .user-profile-action-icon {
    background: #ffe3e1;
    color: #d92d20;
}

.user-profile-action-danger:hover {
    background: #fff1f0;
    border-color: #efb4b0;
    color: #912018;
}

.user-profile-action.is-disabled {
    opacity: 0.45;
    cursor: not-allowed;
    pointer-events: none;
    background: #f8f9fa;
}

.user-profile-delete-form {
    margin: 0;
    min-width: 0;
}

.user-profile-delete-form .user-profile-action {
    width: 100%;
}

.user-dashboard .user-profile-list {
    gap: 12px;
}

.user-dashboard .user-profile-card {
    border: 1px solid #eceff3;
    border-radius: 16px;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
    background: #fff;
}

.user-dashboard .user-profile-card-body {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 12px 14px;
}

.user-dashboard .user-profile-card-head {
    gap: 10px;
    align-items: center;
}

.user-dashboard .user-profile-avatar {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    box-shadow: none;
    border: 1px solid #eef1f4;
}

.user-dashboard .user-profile-avatar.is-default-image img {
    padding: 5px;
}

.user-dashboard .user-profile-card-info h2 {
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    line-height: 1.3;
}

.user-dashboard .user-profile-card-title-row {
    gap: 6px 8px;
    margin-bottom: 2px;
}

.user-dashboard .user-profile-meta {
    color: #6b7280;
    font-size: 12px;
    margin-bottom: 0;
}

.user-dashboard .user-profile-status {
    padding: 3px 8px;
    font-size: 11px;
}

.user-dashboard .user-profile-card-actions {
    margin-top: 10px;
    padding-top: 8px;
    border-top: 1px solid #f1f3f5;
}

.user-dashboard .user-profile-badges {
    margin-top: 8px;
}

.user-dashboard .user-profile-reject {
    margin-top: 8px;
    padding: 8px 10px;
    border-radius: 10px;
}

.user-dashboard .user-profile-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
}

.user-dashboard .user-profile-action,
.user-dashboard .user-profile-delete-form .user-profile-action {
    flex: 0 1 auto;
    width: auto;
    min-width: 0;
    min-height: 0;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 5px 10px;
    border-radius: 999px;
    border: 1px solid #e8ebf0;
    background: #fafbfc;
    font-size: 11px;
    font-weight: 500;
    box-shadow: none;
    transform: none;
    white-space: nowrap;
    line-height: 1.2;
}

.user-dashboard .user-profile-delete-form {
    display: contents;
}

.user-dashboard .user-profile-action i {
    font-size: 11px;
    color: #6b7280;
}

.user-dashboard .user-profile-action:hover {
    transform: none;
    box-shadow: none;
    background: #f3f4f6;
    border-color: #dde3ea;
}

.user-dashboard .user-profile-action-primary {
    background: #fffdf7;
    border-color: #f0e6b8;
}

.user-dashboard .user-profile-action-primary i {
    color: #b8860b;
}

.user-dashboard .user-profile-action-primary:hover {
    background: #fff8e6;
    border-color: #e8d88a;
}

.user-dashboard .user-profile-action-danger {
    background: #fef8f8;
    border-color: #f0dede;
    color: #b42318;
}

.user-dashboard .user-profile-action-danger i {
    color: #d92d20;
}

.user-dashboard .user-profile-action-count {
    min-width: 16px;
    height: 16px;
    padding: 0 4px;
    border-radius: 999px;
    background: #eef2f6;
    color: #374151;
    font-size: 9px;
    font-style: normal;
    font-weight: 700;
}

/* Legacy aliases kept for search/older markup */
.user-action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 72px;
    padding: 10px 8px;
    border-radius: 14px;
    background: #f5f6f8;
    color: #111;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.25;
    text-align: center;
    text-decoration: none;
    transition: background 0.15s ease, transform 0.15s ease;
}

.user-action-btn i {
    font-size: 18px;
    color: #555;
}

.user-action-btn:hover {
    background: #eceef2;
    color: #111;
}

.user-action-btn-primary {
    background: #fff8df;
}

.user-action-btn-primary i {
    color: #c99700;
}

.user-action-btn-primary:hover {
    background: #ffefb8;
}

.user-action-btn-danger {
    background: #fff1f0;
    color: #b42318;
}

.user-action-btn-danger i {
    color: #d92d20;
}

.user-action-btn-danger:hover {
    background: #ffe3e1;
    color: #912018;
}

.user-dashboard-page-meta {
    margin: 0 0 14px;
    color: #666;
    font-size: 14px;
}

.user-dashboard .simple-pagination {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #ececec;
}

.user-profile-reject {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 16px;
    padding: 12px 14px;
    border-radius: 12px;
    background: #fff5f5;
    color: #842029;
}

.user-profile-reject i {
    flex-shrink: 0;
    margin-top: 2px;
}

.user-profile-reject strong {
    display: block;
    margin-bottom: 4px;
    font-size: 13px;
}

.user-profile-reject p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

.user-dashboard-empty {
    text-align: center;
    padding: 40px 24px;
}

.user-dashboard-empty-icon {
    display: grid;
    place-items: center;
    width: 72px;
    height: 72px;
    margin: 0 auto 16px;
    border-radius: 20px;
    background: #f5f6f8;
    color: #999;
    font-size: 28px;
}

.user-dashboard-empty h2 {
    margin: 0 0 8px;
    font-size: 20px;
}

.user-dashboard-empty p {
    max-width: 360px;
    margin: 0 auto 20px;
    color: #666;
    font-size: 15px;
    line-height: 1.6;
}

.user-dashboard-empty .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.user-panel-fab,
.user-dashboard-fab {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 30;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #ffdb4d;
    color: #111;
    font-size: 22px;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
    transition: transform 0.15s ease, background 0.15s ease;
}

.user-panel-fab:hover,
.user-dashboard-fab:hover {
    background: #ffd633;
    color: #111;
    transform: scale(1.04);
}

.user-body.has-user-fab .container {
    padding-bottom: 24px;
}

.user-account-card {
    max-width: 640px;
    padding: 24px;
}

.user-account-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 24px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ececec;
}

.user-account-meta-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 140px;
}

.user-account-meta-label {
    font-size: 13px;
    color: #777;
}

.user-account-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    width: fit-content;
}

.user-account-alert {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
}

.user-account-alert i {
    margin-top: 2px;
    font-size: 18px;
}

.user-account-form {
    display: grid;
    gap: 24px;
}

.user-account-fieldset {
    margin: 0;
    padding: 0;
    border: 0;
}

.user-account-fieldset legend {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    font-size: 17px;
    font-weight: 700;
}

.user-account-fieldset-note {
    margin: -4px 0 14px;
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

.user-account-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.user-account-actions .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.user-account .auth-field input {
    width: 100%;
}

.user-profile-form-page {
    padding-bottom: 96px;
}

.user-profile-form {
    display: grid;
    gap: 16px;
}

.user-profile-form-section {
    margin-bottom: 0;
    padding: 0;
    overflow: hidden;
}

.user-profile-form-section-head {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 18px 0;
}

.user-profile-form-section-icon {
    display: grid;
    place-items: center;
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #fff8df;
    color: #a67c00;
    font-size: 18px;
}

.user-profile-form-section-head h2 {
    margin: 0 0 4px;
    font-size: 18px;
    line-height: 1.3;
}

.user-profile-form-section-head p {
    margin: 0;
    color: #666;
    font-size: 14px;
    line-height: 1.45;
}

.user-profile-form-section-body {
    padding: 16px 18px 18px;
}

.user-profile-form-grid {
    gap: 14px;
}

.form-field {
    display: block;
    margin-bottom: 0;
}

.form-field-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.form-field-label i {
    width: 16px;
    color: #888;
    font-size: 14px;
    text-align: center;
}

.form-field input,
.form-field select,
.form-field textarea,
.form-field .category-picker-input {
    width: 100%;
    margin-top: 0;
    padding: 12px 14px;
    border: 1px solid #ddd;
    border-radius: 12px;
    font: inherit;
    font-size: 16px;
    background: #fff;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus,
.form-field .category-picker-input:focus {
    outline: none;
    border-color: #ffdb4d;
    box-shadow: 0 0 0 3px rgba(255, 219, 77, 0.25);
}

.form-field textarea {
    min-height: 120px;
    resize: vertical;
}

.form-field-span-2 {
    grid-column: 1 / -1;
}

.user-profile-form .profile-upload-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.user-profile-form .profile-upload-label i {
    color: #888;
}

.user-profile-address-preview {
    margin: 0;
}

.user-profile-services {
    margin-bottom: 0;
}

.user-profile-service-add {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.service-input-row {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 10px;
    align-items: center;
    margin-bottom: 10px;
}

.service-input-icon {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: #f3f4f6;
    color: #666;
    flex-shrink: 0;
}

.service-input-row input {
    width: 100%;
    margin-top: 0;
}

.service-remove {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    min-width: 42px;
    height: 42px;
    padding: 0;
}

.user-profile-hours-fieldset {
    margin: 0;
    padding: 0;
    border: 0;
}

.user-profile-hours-24,
.checkbox-line {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    padding: 12px 14px;
    border-radius: 12px;
    background: #fafbfc;
    border: 1px solid #ececec;
}

.user-profile-hours-24 {
    margin-bottom: 16px;
}

.checkbox-line-content {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.checkbox-line-content i {
    color: #888;
}

.user-profile-hours-grid {
    gap: 10px;
}

.user-profile-hours-row {
    grid-template-columns: minmax(120px, 1fr) auto 1fr 1fr;
    gap: 10px;
    padding: 12px;
    border: 1px solid #ececec;
    border-radius: 12px;
    background: #fafbfc;
}

.user-profile-hours-day {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.user-profile-hours-day i {
    color: #888;
}

.user-profile-hours-closed {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin: 0;
    font-size: 14px;
    white-space: nowrap;
}

.user-profile-hours-closed input {
    width: auto;
    margin: 0;
}

.user-profile-hours-time {
    display: grid;
    gap: 6px;
    margin: 0;
    font-size: 13px;
    color: #666;
}

.user-profile-hours-time input {
    width: 100%;
    margin: 0;
}

.user-profile-form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
    position: sticky;
    bottom: 12px;
    z-index: 20;
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid #ececec;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(8px);
}

.user-profile-form-actions .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 46px;
    padding-inline: 18px;
}

.user-profile-form-actions .btn-primary {
    flex: 1 1 220px;
}

.yandex-body {
    background: #fff;
    color: #000;
}

.yandex-body-home {
    min-height: 100vh;
}

.yandex-header {
    padding: 18px 24px 0;
}

.yandex-header.is-compact {
    border-bottom: 1px solid #ebebeb;
    padding-bottom: 14px;
}

.yandex-header-inner {
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
}

.yandex-header.is-compact .yandex-header-inner {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 20px;
}

.yandex-header-inner-home {
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
}

.yandex-business-card {
    width: min(100%, 300px);
}

.yandex-business-card-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fc3f1d;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.03em;
    text-decoration: none;
}

.yandex-business-card-icon {
    width: 28px;
    height: 28px;
}

.yandex-business-card-text {
    margin: 10px 0 12px;
    font-size: 14px;
    line-height: 1.45;
    color: #333;
}

.yandex-business-card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-width: 72px;
    padding: 8px 18px;
    border-radius: 12px;
    background: #ffdb4d;
    color: #000;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
}

.yandex-business-card-btn i {
    font-size: 14px;
    line-height: 1;
}

.yandex-business-card-btn-icon {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
}

.yandex-business-card-btn:hover {
    background: #ffd633;
}

.yandex-business-card-body {
    min-width: 0;
}

.yandex-business-card-compact {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
}

.yandex-business-card-compact .yandex-business-card-body {
    flex: 1;
}

.yandex-business-card-compact .yandex-business-card-brand {
    gap: 6px;
    font-size: 15px;
    line-height: 1.2;
}

.yandex-business-card-compact .yandex-business-card-icon {
    width: 18px;
    height: 18px;
}

.yandex-business-card-compact .yandex-business-card-text {
    margin: 3px 0 0;
    font-size: 12px;
    line-height: 1.35;
    color: #666;
}

.yandex-business-card-compact .yandex-business-card-btn {
    flex-shrink: 0;
    min-width: 52px;
    padding: 6px 12px;
    gap: 5px;
    border-radius: 10px;
    font-size: 13px;
}

.yandex-business-card-compact .yandex-business-card-btn i,
.yandex-business-card-compact .yandex-business-card-btn-icon {
    font-size: 13px;
    width: 14px;
    height: 14px;
}

.yandex-top-nav {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-left: auto;
}

.yandex-top-nav a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #000;
    font-size: 14px;
}

.yandex-top-nav a i {
    font-size: 13px;
    color: #888;
}

.yandex-logo {
    color: #fc3f1d;
    font-weight: 700;
    letter-spacing: -0.03em;
    text-decoration: none;
}

.site-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.site-brand-icon {
    flex-shrink: 0;
    width: 1em;
    height: 1em;
}

.yandex-logo-large {
    display: inline-flex;
    font-size: clamp(42px, 8vw, 64px);
    line-height: 1;
    margin-bottom: 28px;
}

.yandex-logo-large .site-brand-icon {
    width: clamp(36px, 7vw, 56px);
    height: clamp(36px, 7vw, 56px);
}

.yandex-logo-compact {
    font-size: 28px;
    white-space: nowrap;
}

.yandex-logo-compact .site-brand-icon {
    width: 28px;
    height: 28px;
}

.yandex-main {
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto;
}

.yandex-home {
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 0 48px;
    text-align: center;
}

.yandex-home-page {
    width: min(1200px, calc(100% - 48px));
    margin: 0 auto;
}

.home-showcase {
    padding: 8px 0 72px;
}

.home-showcase-block + .home-showcase-block {
    margin-top: 40px;
}

.home-showcase-head {
    margin-bottom: 20px;
    text-align: left;
}

.home-showcase-head h2 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 6px;
    font-size: clamp(22px, 3vw, 28px);
    line-height: 1.2;
    color: #111;
}

.home-showcase-head h2 i {
    color: #fc3f1d;
    font-size: 0.85em;
}

.home-showcase-head p {
    margin: 0;
    color: #666;
    font-size: 15px;
    line-height: 1.5;
}

.home-profile-grid {
    display: grid;
    gap: 16px;
}

.home-profile-grid-top {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}

.home-profile-grid-random {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}

.home-profile-grid-latest {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}

.home-profile-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    overflow: hidden;
    border: 1px solid #ececec;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
    color: inherit;
    text-decoration: none;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.home-profile-card:hover {
    transform: translateY(-3px);
    border-color: #e3d48a;
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.1);
}

.home-profile-card-rank {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 30px;
    height: 30px;
    padding: 0 8px;
    border-radius: 999px;
    background: rgba(17, 17, 17, 0.82);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
}

.home-profile-card-media {
    position: relative;
    display: block;
    height: 148px;
    background: linear-gradient(135deg, #fff8df 0%, #f3f4f6 100%);
}

.home-profile-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-profile-card-media img.is-default-image {
    object-fit: contain;
    padding: 18px;
}

.home-profile-card-placeholder {
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    background: #ffdb4d;
    color: #111;
    font-size: 42px;
    font-weight: 700;
}

.home-profile-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 8px;
    padding: 16px 16px 18px;
    text-align: left;
}

.home-profile-card-name {
    display: block;
    color: #111;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.3;
}

.home-profile-card-category {
    display: block;
    color: #fc3f1d;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.35;
}

.home-profile-card-meta {
    margin-top: auto;
    padding-top: 4px;
}

.home-profile-card-rating {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    color: #444;
    font-size: 13px;
    line-height: 1.4;
}

.home-profile-card-rating .stars {
    font-size: 14px;
}

.home-profile-card-rating strong {
    color: #111;
}

.home-profile-card-no-review {
    color: #888;
    font-size: 13px;
}

.yandex-home-promo {
    width: min(640px, 100%);
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid #ebebeb;
}

.yandex-home-promo h1 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 0 0 8px;
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 600;
    line-height: 1.2;
    color: #111;
}

.yandex-home-promo h1 i {
    color: #fc3f1d;
    font-size: 0.9em;
}

.yandex-home-promo-lead {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 0 0 16px;
    font-size: 18px;
    font-weight: 500;
    color: #333;
}

.yandex-home-promo-lead i {
    color: #fc3f1d;
    font-size: 16px;
}

.yandex-home-promo-text {
    margin: 0 0 20px;
    color: #555;
    font-size: 15px;
    line-height: 1.6;
}

.yandex-home-promo-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 12px;
    background: #ffdb4d;
    color: #000;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
}

.yandex-home-promo-link:hover {
    background: #ffd633;
}

.yandex-search-form {
    width: min(680px, 100%);
    display: flex;
    gap: 8px;
    align-items: stretch;
}

.yandex-search-form-home {
    margin: 0 auto;
}

.yandex-search-field {
    position: relative;
    flex: 1;
}

.yandex-search-field-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 16px;
    pointer-events: none;
    z-index: 1;
}

.yandex-search-form input[type="search"] {
    width: 100%;
    height: 44px;
    margin: 0;
    padding: 0 42px 0 44px;
    border: 2px solid #fc3f1d;
    border-radius: 24px;
    font: inherit;
    font-size: 16px;
    outline: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.yandex-search-form input[type="search"]::-webkit-search-cancel-button,
.yandex-search-form input[type="search"]::-webkit-search-decoration {
    display: none;
}

.yandex-search-form-compact input[type="search"] {
    height: 38px;
    padding-left: 40px;
    border-width: 1px;
    border-color: #ddd;
    border-radius: 999px;
    box-shadow: none;
}

.yandex-search-form-compact .yandex-search-field-icon {
    left: 14px;
    font-size: 14px;
}

.yandex-search-form-compact input[type="search"]:focus {
    border-color: #fc3f1d;
}

.yandex-search-clear {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: #888;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
}

.yandex-search-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 96px;
    height: 44px;
    border: 0;
    border-radius: 24px;
    background: #ffdb4d;
    color: #000;
    font: inherit;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}

.yandex-search-form-compact .yandex-search-btn {
    height: 38px;
    min-width: 84px;
    border-radius: 999px;
}

.yandex-home-note {
    margin: 18px 0 0;
    color: #666;
    font-size: 14px;
}

.yandex-main-results {
    padding: 24px 0 48px;
}

.yandex-results-meta {
    margin: 0 0 20px;
    color: #666;
    font-size: 14px;
}

.yandex-results-meta span {
    color: #000;
}

.yandex-results-list {
    display: grid;
    gap: 24px;
}

.yandex-result-item {
    padding-bottom: 24px;
    border-bottom: 1px solid #ebebeb;
}

.yandex-result-main {
    display: flex;
    gap: 16px;
}

.yandex-result-logo-link {
    flex-shrink: 0;
    display: block;
    text-decoration: none;
    color: inherit;
}

.yandex-result-logo-link:hover .yandex-result-logo,
.yandex-result-logo-link:focus-visible .yandex-result-logo {
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.16);
}

.yandex-result-logo {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    object-fit: cover;
    flex-shrink: 0;
}

.yandex-result-logo.is-default-image {
    object-fit: contain;
    padding: 8px;
    background: #fff8df;
}

.yandex-result-logo.placeholder {
    display: grid;
    place-items: center;
    background: #ffdb4d;
    font-size: 22px;
    font-weight: 700;
}

.yandex-result-content h2 {
    margin: 0 0 6px;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.3;
}

.yandex-result-content h2 a {
    color: #0066cc;
}

.yandex-result-content h2 a:hover {
    color: #c00;
}

.yandex-result-line {
    margin: 0 0 6px;
    color: #333;
    font-size: 14px;
    line-height: 1.5;
}

.yandex-result-meta-line {
    color: #666;
}

.yandex-result-meta-line .stars {
    margin: 0 4px;
}

.yandex-empty {
    padding: 40px 0;
}

.yandex-pagination {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #ebebeb;
}

.yandex-page-numbers {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
}

.yandex-page-link,
.yandex-page-current,
.yandex-page-ellipsis {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 10px;
    border-radius: 10px;
    font-size: 14px;
    line-height: 1;
}

.yandex-page-link {
    color: #0066cc;
    text-decoration: none;
    background: #f5f5f5;
}

.yandex-page-link:hover {
    background: #ececec;
    color: #c00;
}

.yandex-page-current {
    background: #ffdb4d;
    color: #000;
    font-weight: 600;
}

.yandex-page-ellipsis {
    color: #666;
}

.yandex-page-prev,
.yandex-page-next {
    min-width: auto;
    font-weight: 500;
}

.yandex-empty h1 {
    margin: 0 0 10px;
    font-size: 24px;
    font-weight: 400;
}

.yandex-empty p {
    margin: 0;
    color: #666;
}

.yandex-footer {
    padding: 24px;
    color: #999;
    font-size: 13px;
}

.yandex-footer-inner {
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto;
}

.profile-page {
    background: #f5f5f5;
    overflow: hidden;
    height: 100vh;
}

.profile-phone-fab {
    position: fixed;
    right: 20px;
    bottom: calc(48px + env(safe-area-inset-bottom, 0px));
    z-index: 45;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #ffdb4d;
    color: #000;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
    transition: transform 0.15s ease, background 0.15s ease;
    -webkit-tap-highlight-color: transparent;
}

.profile-phone-fab:hover,
.profile-phone-fab:focus-visible {
    background: #ffd633;
    color: #000;
    transform: scale(1.05);
}

.profile-phone-fab-icon {
    position: relative;
    z-index: 1;
    width: 34px;
    height: 34px;
    display: block;
    flex-shrink: 0;
    color: #000;
    animation: profile-phone-fab-icon 1.8s ease-in-out infinite;
}

.profile-phone-fab-pulse {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(255, 219, 77, 0.55);
    animation: profile-phone-fab-pulse 1.8s ease-out infinite;
    pointer-events: none;
}

@keyframes profile-phone-fab-pulse {
    0% {
        transform: scale(1);
        opacity: 0.75;
    }

    70% {
        transform: scale(1.55);
        opacity: 0;
    }

    100% {
        transform: scale(1.55);
        opacity: 0;
    }
}

@keyframes profile-phone-fab-icon {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(0.92);
    }
}

@media (prefers-reduced-motion: reduce) {
    .profile-phone-fab-pulse,
    .profile-phone-fab-icon {
        animation: none;
    }
}

.profile-shell {
    display: flex;
    height: 100vh;
    min-height: 100vh;
}

.profile-panel {
    width: 420px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    min-height: 0;
    background: #fff;
    border-right: 1px solid #e6e6e6;
    box-shadow: 2px 0 16px rgba(0, 0, 0, 0.08);
    z-index: 2;
}

.profile-sidebar-promo {
    flex-shrink: 0;
    padding: 10px 16px;
    border-bottom: 1px solid #ececec;
    background: #fafafa;
}

.profile-sidebar-promo .yandex-business-card {
    width: 100%;
}

.profile-sidebar {
    flex: 1;
    width: 100%;
    min-height: 0;
    overflow-y: auto;
    background: transparent;
    border-right: 0;
    box-shadow: none;
    z-index: auto;
}

.profile-sidebar-footer {
    flex-shrink: 0;
    padding: 20px 24px 24px;
    border-top: 1px solid #ececec;
    color: #999;
    font-size: 13px;
    line-height: 1.4;
    background: #fff;
}

.profile-map-wrap {
    flex: 1;
    min-width: 0;
    min-height: 0;
    position: relative;
    background: #d9dfe8;
}

.profile-card-main {
    padding: 24px 24px 32px;
}

.profile-card-main.profile-card-top {
    padding-bottom: 16px;
}

.profile-card-main.profile-card-bottom {
    padding-top: 0;
}

@media (min-width: 901px) {
    .profile-card-main.profile-card-top {
        padding: 24px 24px 0;
    }

    .profile-card-main.profile-card-bottom {
        padding: 0 24px 32px;
    }
}

.profile-card-main h1 {
    font-size: 22px;
    line-height: 1.25;
    margin: 0 0 4px;
}

.profile-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.profile-logo-link {
    flex-shrink: 0;
    display: block;
    text-decoration: none;
    color: inherit;
}

.profile-logo-link:hover .profile-logo-wrap,
.profile-logo-link:focus-visible .profile-logo-wrap {
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.16);
}

.profile-head-text {
    min-width: 0;
    flex: 1;
}

.profile-logo-wrap {
    flex-shrink: 0;
    position: relative;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    overflow: visible;
    border: 2px solid #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
    background: #ffdb4d;
}

.profile-logo-media {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
}

.profile-logo-status {
    position: absolute;
    right: 1px;
    bottom: 1px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.22);
    z-index: 2;
    pointer-events: none;
}

.profile-logo-status.is-online {
    background: #22c55e;
    animation: profile-logo-status-pulse 1.6s ease-in-out infinite;
}

.profile-logo-status.is-offline {
    background: #ef4444;
    animation: profile-logo-status-pulse-offline 2s ease-in-out infinite;
}

@keyframes profile-logo-status-pulse {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.45);
    }

    50% {
        opacity: 0.45;
        transform: scale(0.88);
        box-shadow: 0 0 0 5px rgba(34, 197, 94, 0);
    }
}

@keyframes profile-logo-status-pulse-offline {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.45);
    }

    50% {
        opacity: 0.45;
        transform: scale(0.88);
        box-shadow: 0 0 0 5px rgba(239, 68, 68, 0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .profile-logo-status.is-online,
    .profile-logo-status.is-offline {
        animation: none;
    }
}

.profile-logo {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

.profile-logo.is-default-image {
    object-fit: contain;
    padding: 10px;
    background: #fff8df;
}

.profile-logo.placeholder {
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    background: #ffdb4d;
    font-size: 28px;
    font-weight: 700;
}

.sidebar-photo-preview {
    position: relative;
    display: block;
    width: 100%;
    height: 132px;
    margin: 0 0 16px;
    padding: 0;
    border: 0;
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
    background: #ddd;
}

.profile-photo-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin: 0 0 16px;
}

.profile-photo-grid-single {
    grid-template-columns: minmax(0, 1fr);
    max-width: 50%;
}

.profile-photo-grid-tab {
    margin-bottom: 0;
}

.profile-photo-grid-item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 160px;
    padding: 0;
    border: 0;
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    background: #f3f3f3;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.profile-photo-grid-tab .profile-photo-grid-item {
    height: 220px;
}

.profile-photo-grid-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.profile-photo-more-btn {
    position: absolute;
    right: 10px;
    bottom: 10px;
    z-index: 2;
    padding: 6px 10px;
    border: 0;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.72);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
}

.profile-photo-more-btn:hover {
    background: rgba(0, 0, 0, 0.82);
}

.sidebar-photo-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.sidebar-photo-more {
    position: absolute;
    right: 10px;
    bottom: 10px;
    padding: 5px 10px;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.72);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
}

.profile-category {
    margin: 0;
    font-size: 13px;
    line-height: 1.4;
    color: #777;
}

.profile-meta-line {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 2px;
}

.profile-meta-sep {
    color: #ccc;
}

.profile-rating-inline {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.profile-rating-inline strong {
    font-size: 13px;
    font-weight: 700;
}

.profile-rating-inline .stars {
    gap: 1px;
}

.profile-rating-inline .star {
    font-size: 14px;
}

.profile-no-review {
    font-size: 13px;
    line-height: 1.4;
    color: #888;
}

.review-write-line {
    margin: 0 0 12px;
}

.reviews-empty {
    margin: 0;
    color: #666;
}

.reviews-count-link {
    color: #666;
    font-size: 13px;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.reviews-count-link:hover {
    color: #0066cc;
}

.review-write-link {
    color: #0066cc;
    font-size: 14px;
}

.phone-row {
    margin: 12px 0 0;
}

.website-row {
    margin: 8px 0 0;
}

.website-link {
    color: #0066cc;
    font-weight: 500;
    text-decoration: none;
    word-break: break-word;
}

.website-link:hover {
    color: #c00;
}

.contact-line {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.contact-line-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-top: 2px;
    color: #666;
}

.contact-line-icon svg {
    display: block;
    width: 100%;
    height: 100%;
}

.phone-number {
    color: #111;
    font-weight: 600;
    text-decoration: none;
}

.address-row {
    margin: 8px 0 0;
}

.address-text {
    display: block;
    color: #333;
    line-height: 1.5;
}

.hours-block {
    margin: 16px 0;
    padding-top: 16px;
    border-top: 1px solid #ececec;
}

.hours-block-title {
    margin: 0 0 10px;
    font-size: 16px;
    font-weight: 600;
}

.hours-empty {
    color: #666;
    font-size: 14px;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 4px;
}

.social-links a {
    color: #0066cc;
    font-size: 14px;
    text-decoration: none;
}

.social-links a:hover {
    color: #c00;
}

.profile-tabs {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-bottom: 1px solid #ececec;
    margin: 20px 0 16px;
}

.profile-tab {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    padding: 8px 4px;
    color: #666;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    white-space: normal;
    text-align: center;
    font-size: 12px;
    line-height: 1.25;
}

.profile-tab.active {
    color: #111;
    border-bottom-color: #ffdb4d;
    font-weight: 600;
}

.tab-count {
    color: #666;
    font-weight: 400;
    font-size: 11px;
}

.profile-tab-panel {
    display: none;
}

.profile-tab-panel.active {
    display: block;
}

.contact-block h2 {
    margin: 0 0 10px;
    font-size: 16px;
}

.empty-tab {
    color: #666;
}

.services-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.services-list li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    line-height: 1.5;
}

.services-list li:last-child {
    border-bottom: 0;
}

.services-fieldset {
    margin: 0 0 20px;
    padding: 0;
    border: 0;
}

.services-fieldset legend {
    font-weight: 700;
    margin-bottom: 8px;
}

.service-input-row {
    display: flex;
    gap: 8px;
    margin-bottom: 10px;
}

.service-input-row input {
    flex: 1;
}

.stars {
    display: inline-flex;
    gap: 2px;
}

.star {
    color: #ddd;
    font-size: 16px;
}

.star-filled {
    color: #ffb800;
}

.reviews-list {
    display: grid;
    gap: 16px;
    margin-bottom: 24px;
}

.review-item {
    padding-bottom: 16px;
    border-bottom: 1px solid #eee;
}

.review-badge {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 999px;
    background: #fff3cc;
    color: #8a6d00;
    font-size: 11px;
    font-weight: 600;
}

.review-item-own {
    border: 1px solid #ffdb4d;
    background: #fffdf5;
}

.review-item-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 8px;
}

.review-item p {
    margin: 0 0 6px;
    line-height: 1.5;
}

.review-item small {
    color: #888;
}

.review-owner-reply {
    margin-top: 12px;
    padding: 12px;
    border-left: 3px solid #ffdb4d;
    background: #fffdf5;
    border-radius: 0 10px 10px 0;
}

.review-owner-reply strong {
    display: block;
    margin-bottom: 6px;
    font-size: 13px;
}

.review-owner-reply p {
    margin: 0 0 6px;
    line-height: 1.5;
}

.review-owner-reply small {
    color: #888;
}

.review-reply-form {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px dashed #e5e5e5;
}

.review-reply-form textarea {
    width: 100%;
    margin-top: 6px;
}

.review-reply-form .btn {
    margin-top: 8px;
}

.review-form-wrap h2 {
    margin: 0 0 12px;
    font-size: 18px;
}

.review-form label {
    display: block;
    margin-bottom: 12px;
}

.rating-field {
    border: 0;
    padding: 0;
    margin: 0 0 12px;
}

.rating-field legend {
    margin-bottom: 8px;
    font-weight: 600;
}

.rating-field legend {
    margin-bottom: 8px;
    font-weight: 600;
}

.rating-hint {
    margin: 8px 0 0;
    font-size: 13px;
    color: #888;
}

.review-login-prompt {
    margin: 0 0 12px;
    color: #555;
    line-height: 1.5;
}

.review-login-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin: 0;
}

.review-status-note {
    margin: 0 0 12px;
    padding: 10px 12px;
    border-radius: 8px;
    background: #f7f7f7;
    color: #555;
    font-size: 13px;
    line-height: 1.5;
}

.star-rating-input {
    display: flex;
    gap: 8px;
}

.star-rating-option {
    cursor: pointer;
}

.star-rating-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.star-rating-option span {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: #f5f5f5;
    color: #bbb;
    font-size: 22px;
    transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
}

.star-rating-option input:checked + span,
.star-rating-option input:focus-visible + span {
    background: #fff3cc;
    color: #ffb800;
    transform: scale(1.05);
}

.star-rating-input:hover .star-rating-option:hover span,
.star-rating-input:hover .star-rating-option:hover ~ .star-rating-option span {
    color: #ddd;
}

.star-rating-option:hover span {
    color: #ffb800 !important;
    background: #fff8df;
}

#review-comment:disabled {
    background: #f8f8f8;
    cursor: not-allowed;
}

#review-submit:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

.rating-option {
    display: inline-flex;
    margin-right: 8px;
    cursor: pointer;
}

.rating-option input {
    margin-right: 4px;
}

.inline-action {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.category-tag {
    display: inline-block;
    background: #f3f3f3;
    padding: 6px 12px;
    border-radius: 999px;
    color: #333;
    font-size: 14px;
}

.status-line {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 16px 0;
    font-size: 15px;
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #999;
}

.status-dot.open {
    background: #28a745;
}

.status-dot.closed {
    background: #dc3545;
}

.quick-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 8px;
}

.action-btn {
    display: inline-block;
    background: #ffdb4d;
    color: #000;
    padding: 10px 16px;
    border-radius: 12px;
    font-weight: 500;
}

.action-btn-secondary {
    background: #f0f0f0;
}

.contact-block {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid #ececec;
}

.contact-item strong {
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
}

.contact-item a,
.address-link {
    display: block;
    color: #0066cc;
    margin-bottom: 4px;
}

.address-block {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.about-text {
    margin: 0;
    color: #444;
    line-height: 1.5;
}

.similar-places {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid #ececec;
}

.similar-places-title {
    margin: 0 0 14px;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.3;
    color: #111;
}

.similar-places-list {
    display: grid;
    gap: 0;
}

.similar-place-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid #ececec;
    color: inherit;
    text-decoration: none;
    transition: background 0.15s ease;
}

.similar-place-card:first-child {
    padding-top: 0;
}

.similar-place-card:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.similar-place-card:hover {
    color: inherit;
}

.similar-place-card:hover .similar-place-name {
    color: #c00;
}

.similar-place-photo {
    flex-shrink: 0;
    display: block;
    width: 72px;
    height: 72px;
    border-radius: 14px;
    overflow: hidden;
    background: #f3f3f3;
}

.similar-place-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.similar-place-photo img.is-default-image {
    object-fit: contain;
    padding: 10px;
    background: #fff8df;
}

.similar-place-photo-placeholder {
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    background: #ffdb4d;
    color: #111;
    font-size: 24px;
    font-weight: 700;
}

.similar-place-body {
    display: flex;
    min-width: 0;
    flex: 1;
    flex-direction: column;
    gap: 4px;
}

.similar-place-name {
    display: block;
    font-size: 15px;
    line-height: 1.35;
    font-weight: 600;
    color: #111;
}

.similar-place-rating {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4px;
    min-height: 18px;
}

.similar-place-rating .stars {
    font-size: 13px;
    line-height: 1;
}

.similar-place-rating-value {
    font-size: 13px;
    font-weight: 600;
    color: #333;
}

.similar-place-no-review {
    font-size: 13px;
    line-height: 1.3;
    color: #888;
}

.similar-place-category {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 13px;
    line-height: 1.35;
    color: #666;
}

.similar-places-sentinel {
    height: 1px;
}

.similar-places-status {
    margin: 12px 0 0;
    color: #777;
    font-size: 13px;
    text-align: center;
}

.hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 4px 0;
    font-size: 14px;
}

.sidebar-gallery {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.gallery-thumb {
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    background: #f3f3f3;
}

.gallery-thumb img,
.sidebar-gallery img {
    width: 100%;
    height: 96px;
    object-fit: contain;
    border-radius: 12px;
    display: block;
    background: #f3f3f3;
}

.sidebar-gallery-large .gallery-thumb img,
.sidebar-gallery-large img {
    height: 140px;
}

.map-photo-preview {
    position: absolute;
    right: 20px;
    bottom: 20px;
    z-index: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 132px;
    height: 96px;
    padding: 0;
    border: 2px solid #fff;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.28);
    background: #f3f3f3;
}

.map-photo-preview img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.map-photo-more {
    position: absolute;
    right: 8px;
    bottom: 8px;
    padding: 4px 8px;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.72);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
}

body.gallery-open {
    overflow: hidden;
}

.photo-lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
}

.photo-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.88);
}

.photo-lightbox-dialog {
    position: relative;
    z-index: 1;
    width: min(1100px, calc(100% - 32px));
    height: calc(100% - 48px);
    margin: 24px auto;
    display: grid;
    place-items: center;
}

.photo-lightbox-image {
    max-width: 100%;
    max-height: calc(100vh - 120px);
    object-fit: contain;
    border-radius: 8px;
    background: #111;
}

.photo-lightbox-close,
.photo-lightbox-nav {
    position: absolute;
    border: 0;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    cursor: pointer;
}

.photo-lightbox-close {
    top: 0;
    right: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 28px;
    line-height: 1;
}

.photo-lightbox-nav {
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 32px;
    line-height: 1;
}

.photo-lightbox-nav:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.photo-lightbox-prev {
    left: 0;
}

.photo-lightbox-next {
    right: 0;
}

.photo-lightbox-counter {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    color: #fff;
    font-size: 14px;
}

.profile-map-leaflet {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.profile-map-empty {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: #666;
    background: #eceff3;
}

.map-marker-leaflet {
    background: transparent;
    border: 0;
}

.map-marker-leaflet .map-org-marker {
    position: relative;
    left: 50%;
    top: 0;
    transform: translate(-50%, -100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    width: max-content;
    max-width: 340px;
    text-decoration: none;
    cursor: pointer;
}

.map-marker-leaflet .map-org-marker:hover .map-org-card {
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
    border-color: #e8e8e8;
}

.map-marker-leaflet .map-org-card {
    display: block;
    position: relative;
    background: #fff;
    border: 1px solid #ededed;
    border-radius: 14px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.14);
    padding: 14px 18px;
    min-width: 180px;
    max-width: 340px;
    text-align: center;
    white-space: normal;
    word-break: break-word;
}

.map-marker-leaflet .map-org-name {
    display: block;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.45;
    color: #111;
    letter-spacing: -0.01em;
}

.map-marker-leaflet .map-org-category {
    display: block;
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid #f0f0f0;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.4;
    color: #666;
}

.map-marker-leaflet .map-org-card::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -9px;
    transform: translateX(-50%);
    border-left: 9px solid transparent;
    border-right: 9px solid transparent;
    border-top: 9px solid #fff;
    filter: drop-shadow(0 2px 1px rgba(0, 0, 0, 0.06));
}

.map-marker-leaflet .map-org-pin {
    display: block;
    width: 14px;
    height: 14px;
    margin-top: 12px;
    background: #e31e24;
    border: 3px solid #fff;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
    flex-shrink: 0;
}

@media (max-width: 900px) {
    .profile-page {
        overflow-x: hidden;
        overflow-y: auto;
        height: auto;
        min-height: 100vh;
        -webkit-overflow-scrolling: touch;
        font-size: 16px;
    }

    .profile-shell {
        flex-direction: column;
        height: auto;
        min-height: 0;
    }

    .profile-panel {
        display: contents;
    }

    .profile-sidebar {
        display: contents;
        overflow: visible;
    }

    .profile-sidebar-promo {
        order: 1;
        width: 100%;
    }

    .profile-card-top {
        order: 2;
        width: 100%;
    }

    .profile-map-wrap {
        order: 3;
        flex: none;
        width: 100%;
        min-height: 55vh;
        height: 55vh;
        border-bottom: 1px solid #e6e6e6;
        border-top: 1px solid #e6e6e6;
    }

    .profile-card-bottom {
        order: 4;
        width: 100%;
    }

    .profile-sidebar-footer {
        order: 5;
        width: 100%;
        padding: 24px 16px 32px;
    }

    .profile-shell:not(:has(.profile-sidebar-promo)) .profile-card-top {
        order: 1;
    }

    .profile-shell:not(:has(.profile-sidebar-promo)) .profile-map-wrap {
        order: 2;
    }

    .profile-shell:not(:has(.profile-sidebar-promo)) .profile-card-bottom {
        order: 3;
    }

    .profile-shell:not(:has(.profile-sidebar-promo)) .profile-sidebar-footer {
        order: 4;
    }

    /* Profil sayfası — mobil tipografi */
    .profile-card-main {
        padding: 16px 16px 24px;
    }

    .profile-card-main.profile-card-top {
        padding-bottom: 12px;
    }

    .profile-card-main h1 {
        font-size: 24px;
        line-height: 1.2;
    }

    .profile-logo-wrap {
        width: 64px;
        height: 64px;
    }

    .profile-logo-status {
        width: 12px;
        height: 12px;
        right: 0;
        bottom: 0;
    }

    .profile-logo.placeholder {
        font-size: 24px;
    }

    .profile-category,
    .profile-no-review,
    .profile-rating-inline strong,
    .reviews-count-link {
        font-size: 14px;
    }

    .profile-rating-inline .star {
        font-size: 15px;
    }

    .review-write-link {
        font-size: 15px;
    }

    .status-line {
        font-size: 15px;
    }

    .phone-number,
    .address-text,
    .website-link {
        font-size: 16px;
    }

    .profile-phone-fab {
        right: 16px;
        bottom: calc(44px + env(safe-area-inset-bottom, 0px));
        width: 62px;
        height: 62px;
    }

    .profile-phone-fab-icon {
        width: 32px;
        height: 32px;
    }

    .hours-block-title,
    .contact-block h2 {
        font-size: 17px;
    }

    .hours-list li,
    .hours-empty,
    .about-text,
    .empty-tab,
    .services-list li,
    .review-item p,
    .social-links a {
        font-size: 15px;
    }

    .review-item small,
    .review-owner-reply small {
        font-size: 13px;
    }

    .review-owner-reply strong {
        font-size: 14px;
    }

    .review-badge {
        font-size: 12px;
    }

    .review-form-wrap h2,
    .similar-places-title {
        font-size: 18px;
    }

    .profile-tabs {
        margin: 16px 0 12px;
    }

    .profile-tab {
        font-size: 13px;
        padding: 10px 4px;
        min-height: 44px;
    }

    .tab-count {
        font-size: 12px;
    }

    .action-btn {
        font-size: 15px;
        padding: 12px 18px;
    }

    .profile-photo-more-btn,
    .sidebar-photo-more {
        font-size: 13px;
    }

    .similar-place-name {
        font-size: 14px;
    }

    .similar-place-category,
    .similar-place-rating-value,
    .similar-place-no-review {
        font-size: 13px;
    }

    .yandex-business-card-compact .yandex-business-card-brand {
        font-size: 16px;
    }

    .yandex-business-card-compact .yandex-business-card-text {
        font-size: 13px;
    }

    .yandex-business-card-compact .yandex-business-card-btn {
        font-size: 14px;
        padding: 8px 14px;
    }

    .profile-sidebar-promo {
        padding: 10px 12px;
    }

    .map-marker-leaflet .map-org-name {
        font-size: 15px;
    }

    .map-marker-leaflet .map-org-category {
        font-size: 14px;
    }

    .map-marker-leaflet .map-org-card {
        padding: 12px 14px;
        min-width: 160px;
    }

    .profile-page .alert {
        font-size: 15px;
    }

    .profile-page .star {
        font-size: 17px;
    }
}

.reject-reason {
    color: #a94442;
    font-size: 14px;
}

.review-owner-note {
    margin: 0 0 16px;
    color: #666;
    font-size: 14px;
}

.user-reviews-page .toolbar h1 {
    margin: 0;
}

.user-reviews-page-meta {
    margin: 6px 0 0;
    color: #666;
    font-size: 14px;
}

.user-reviews-page .simple-pagination {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #ececec;
}

.review-filter-form label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.review-filter-form select {
    min-width: 220px;
}

.owner-reviews-list {
    display: grid;
    gap: 16px;
}

.owner-review-item {
    padding: 16px;
    border: 1px solid #eee;
    border-radius: 12px;
    background: #fafafa;
}

.owner-review-head {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
}

.owner-review-head time {
    color: #888;
    font-size: 13px;
    white-space: nowrap;
}

.owner-review-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 6px;
}

.owner-review-item p {
    margin: 0;
    line-height: 1.55;
}

@media (max-width: 900px) {
    /* Genel mobil taban */
    body:not(.profile-page) {
        font-size: 16px;
    }

    .container,
    .yandex-header-inner,
    .yandex-main,
    .yandex-footer-inner {
        width: min(1200px, calc(100% - 24px));
    }

    /* Admin / kullanıcı paneli */
    .panel-header {
        margin-bottom: 16px;
    }

    .panel-header-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        min-height: auto;
        padding: 12px 0;
    }

    .panel-header nav {
        display: flex;
        flex-wrap: wrap;
        gap: 8px 14px;
        width: 100%;
    }

    .panel-header nav a {
        margin-left: 0;
        font-size: 15px;
        line-height: 1.4;
    }

    .panel-header .user-panel-nav-link,
    .panel-header .admin-panel-nav-link {
        font-size: 12px;
    }

    .user-panel-header.panel-header {
        margin-bottom: 0;
        border-bottom: none;
    }

    .user-panel-header .panel-header-inner {
        gap: 8px;
        padding: 10px 0 0;
    }

    .user-body .container > .user-dashboard:first-child {
        margin-top: 0;
    }

    .admin-panel-header .panel-header-inner {
        gap: 8px;
        padding: 10px 0 0;
    }

    .user-panel-header .user-panel-brand,
    .admin-panel-header .admin-panel-brand {
        font-size: 20px;
    }

    .user-panel-header .user-panel-brand .site-brand-icon,
    .admin-panel-header .admin-panel-brand .site-brand-icon {
        width: 22px;
        height: 22px;
    }

    .user-panel-nav {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
        width: 100%;
        padding: 10px;
        border: 1px solid #ececec;
        border-radius: 16px;
        background: #fff;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
    }

    .admin-panel-nav {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
        width: 100%;
        padding: 10px;
        border: 1px solid #ececec;
        border-radius: 16px;
        background: #fff;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
    }

    .user-panel-nav-link,
    .admin-panel-nav-link {
        flex-direction: column;
        justify-content: center;
        gap: 6px;
        min-height: 74px;
        padding: 10px 8px;
        border: 1px solid #ececec;
        border-radius: 14px;
        background: #fafafa;
        font-size: 12px;
        line-height: 1.25;
        text-align: center;
    }

    .user-panel-nav-link i,
    .admin-panel-nav-link i {
        width: auto;
        font-size: 18px;
    }

    .user-panel-nav-link span,
    .admin-panel-nav-link span {
        display: block;
    }

    .user-panel-nav-link.is-active,
    .admin-panel-nav-link.is-active {
        border-color: #f3e7a8;
        background: #fff8df;
        box-shadow: inset 0 0 0 1px rgba(255, 219, 77, 0.35);
    }

    .user-panel-nav-link-logout,
    .admin-panel-nav-link-logout {
        min-height: 50px;
        flex-direction: row;
        font-size: 13px;
    }

    .admin-panel-nav-link-logout {
        grid-column: span 2;
    }

    .admin-panel-nav-link-users {
        grid-column: span 1;
    }

    .user-dashboard-header {
        flex-direction: column;
        align-items: stretch;
        margin-top: 0;
        margin-bottom: 12px;
        padding-top: 0;
    }

    .user-dashboard-intro h1 {
        font-size: 22px;
        margin-top: 0;
        margin-bottom: 4px;
    }

    .user-dashboard-subtitle {
        font-size: 14px;
    }

    .user-dashboard-search {
        flex: 1 1 auto;
        width: 100%;
        margin-left: 0;
    }

    .admin-panel-header.panel-header {
        margin-bottom: 12px;
        border-bottom: none;
    }

    .admin-panel-header .panel-header-inner {
        gap: 8px;
        padding: 10px 0 8px;
    }

    .admin-profiles-page {
        padding-top: 10px;
    }

    .admin-profiles-header {
        margin-top: 0;
        margin-bottom: 12px;
        padding-top: 0;
    }

    .admin-dashboard-intro {
        margin-bottom: 12px;
    }

    .admin-dashboard-intro h1 {
        font-size: 22px;
        margin-bottom: 2px;
    }

    .admin-dashboard-subtitle {
        font-size: 14px;
    }

    .admin-dashboard-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
        margin-bottom: 14px;
    }

    .admin-dashboard .user-dashboard-stat {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: 6px;
        padding: 10px 6px;
        border-radius: 12px;
    }

    .admin-dashboard .user-dashboard-stat i {
        width: 30px;
        height: 30px;
        font-size: 12px;
        border-radius: 9px;
    }

    .admin-dashboard .user-dashboard-stat strong {
        font-size: 17px;
    }

    .admin-dashboard .user-dashboard-stat span {
        font-size: 11px;
        margin-top: 0;
        line-height: 1.25;
    }

    .admin-dashboard-recent .toolbar h2 {
        font-size: 17px;
    }

    .admin-profiles-header {
        flex-direction: column;
        align-items: stretch;
        margin-top: 0;
        margin-bottom: 12px;
        padding-top: 0;
    }

    .admin-profiles-intro h1 {
        font-size: 22px;
        margin-top: 0;
        margin-bottom: 4px;
    }

    .admin-profiles-subtitle {
        font-size: 14px;
    }

    .admin-profiles-search {
        flex: 1 1 auto;
        width: 100%;
        margin-left: 0;
    }

    .admin-profiles-page .admin-profiles-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
        margin-bottom: 12px;
    }

    .admin-profiles-page .user-dashboard-stat {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: 6px;
        padding: 10px 4px;
        border-radius: 12px;
    }

    .admin-profiles-page .user-dashboard-stat i {
        width: 30px;
        height: 30px;
        font-size: 12px;
        border-radius: 9px;
    }

    .admin-profiles-page .user-dashboard-stat strong {
        font-size: 17px;
    }

    .admin-profiles-page .user-dashboard-stat span {
        font-size: 11px;
        margin-top: 0;
        line-height: 1.2;
    }

    .admin-profiles-filters {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
        margin-bottom: 12px;
        padding: 10px;
    }

    .admin-profiles-filters a {
        justify-content: center;
        font-size: 12px;
        min-height: 34px;
        padding: 6px 10px;
    }

    .admin-profiles-page-meta {
        font-size: 13px;
        margin-bottom: 10px;
    }

    .admin-profiles-results-card {
        margin-bottom: 12px;
    }

    .admin-profiles-cards {
        gap: 10px;
    }

    .admin-profiles-page .user-profile-card {
        border-radius: 14px;
    }

    .admin-profiles-page .user-profile-card-body {
        padding: 11px 12px;
    }

    .admin-profiles-page .user-profile-card-head {
        gap: 8px;
    }

    .admin-profiles-page .user-profile-avatar {
        width: 40px;
        height: 40px;
        border-radius: 10px;
    }

    .admin-profiles-page .user-profile-avatar.is-default-image img {
        padding: 4px;
    }

    .admin-profiles-page .user-profile-card-info h2 {
        font-size: 14px;
    }

    .admin-profiles-page .user-profile-card-title-row {
        gap: 4px 6px;
        margin-bottom: 1px;
    }

    .admin-profiles-page .user-profile-status {
        padding: 2px 7px;
        font-size: 10px;
    }

    .admin-profiles-page .user-profile-meta {
        font-size: 11px;
        gap: 4px;
    }

    .admin-profiles-page .user-profile-meta i {
        font-size: 10px;
        color: #9ca3af;
    }

    .admin-profiles-page .user-profile-card-actions {
        margin-top: 8px;
        padding-top: 7px;
    }

    .admin-profiles-page .user-profile-badges {
        margin-top: 7px;
    }

    .admin-profiles-page .user-profile-actions {
        gap: 5px;
    }

    .admin-profiles-page .user-profile-action,
    .admin-profiles-page .user-profile-delete-form .user-profile-action {
        flex: 1 1 calc(50% - 5px);
        justify-content: center;
        min-height: 30px;
        padding: 5px 8px;
        font-size: 11px;
    }

    .admin-profiles-page .user-profile-action i {
        font-size: 10px;
    }

    .admin-reviews-page {
        padding-top: 10px;
    }

    .admin-reviews-header {
        margin-bottom: 12px;
    }

    .admin-reviews-intro h1 {
        font-size: 22px;
        margin-bottom: 4px;
    }

    .admin-reviews-subtitle {
        font-size: 14px;
    }

    .admin-reviews-filters {
        margin-bottom: 12px;
    }

    .admin-reviews-list {
        gap: 10px;
    }

    .admin-review-card {
        border-radius: 14px;
    }

    .admin-review-card-body {
        padding: 11px 12px;
    }

    .admin-review-card-head {
        flex-direction: column;
        gap: 6px;
        margin-bottom: 8px;
    }

    .admin-review-business {
        font-size: 14px;
    }

    .admin-review-meta {
        gap: 6px;
        margin-top: 6px;
    }

    .admin-review-meta strong {
        font-size: 13px;
    }

    .admin-review-meta .user-profile-status {
        padding: 2px 7px;
        font-size: 10px;
    }

    .admin-review-date {
        font-size: 12px;
    }

    .admin-review-comment {
        font-size: 13px;
    }

    .admin-review-card-actions {
        margin-top: 8px;
        padding-top: 7px;
    }

    .admin-reviews-page .user-profile-action {
        flex: 1 1 calc(50% - 5px);
        justify-content: center;
        min-height: 30px;
        padding: 5px 8px;
        font-size: 11px;
    }

    .admin-reviews-page .user-profile-action i {
        font-size: 10px;
    }

    .admin-reviews-empty {
        padding: 36px 16px;
        border-radius: 14px;
    }

    .admin-profiles-results-card > #admin-profiles-results {
        padding: 0;
    }

    .admin-categories-page {
        gap: 12px;
    }

    .admin-categories-intro h1 {
        font-size: 22px;
    }

    .admin-categories-subtitle {
        font-size: 14px;
        line-height: 1.45;
    }

    .admin-categories-stats {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
    }

    .admin-categories-stats .user-dashboard-stat {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: 6px;
        padding: 10px 6px;
        border-radius: 12px;
    }

    .admin-categories-stats .user-dashboard-stat i {
        width: 30px;
        height: 30px;
        font-size: 12px;
        border-radius: 9px;
    }

    .admin-categories-stats .user-dashboard-stat strong {
        font-size: 17px;
    }

    .admin-categories-stats .user-dashboard-stat span {
        font-size: 11px;
        line-height: 1.2;
    }

    .admin-categories-add-card {
        padding: 14px;
        border-radius: 14px;
    }

    .admin-categories-add-title {
        font-size: 17px;
        margin-bottom: 12px;
    }

    .admin-category-add-form,
    .admin-category-edit-form {
        grid-template-columns: 1fr;
    }

    .admin-categories-add-btn,
    .admin-category-edit-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .admin-category-edit-actions {
        flex-direction: column;
    }

    .admin-categories-list {
        gap: 10px;
    }

    .admin-category-card {
        border-radius: 14px;
    }

    .admin-category-card-body {
        padding: 12px 14px;
    }

    .admin-category-card-head {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 10px;
    }

    .admin-category-card-head h2 {
        font-size: 17px;
    }

    .admin-category-card-meta {
        gap: 6px 10px;
        font-size: 12px;
    }

    .admin-category-card-actions {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .admin-categories-page .user-profile-action,
    .admin-categories-page .admin-category-action-form .user-profile-action {
        width: 100%;
        min-height: 44px;
        padding: 10px 12px;
        font-size: 13px;
        white-space: normal;
    }

    .admin-categories-page .user-profile-action i {
        font-size: 12px;
    }

    .admin-categories-empty {
        padding: 36px 16px;
        border-radius: 14px;
    }

    .admin-users-page {
        gap: 12px;
    }

    .admin-account-card {
        padding: 14px;
    }

    .admin-account-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .admin-account-panel {
        padding: 12px;
    }

    .admin-users-header {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .admin-users-intro h1 {
        font-size: 22px;
    }

    .admin-users-subtitle {
        font-size: 14px;
    }

    .admin-users-search {
        width: 100%;
        margin-left: 0;
    }

    .admin-users-stats {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
    }

    .admin-users-stats .user-dashboard-stat {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: 6px;
        padding: 10px 6px;
        border-radius: 12px;
    }

    .admin-users-stats .user-dashboard-stat i {
        width: 30px;
        height: 30px;
        font-size: 12px;
        border-radius: 9px;
    }

    .admin-users-stats .user-dashboard-stat strong {
        font-size: 17px;
    }

    .admin-users-stats .user-dashboard-stat span {
        font-size: 11px;
        line-height: 1.2;
    }

    .admin-users-results-card {
        padding: 10px;
        border-radius: 14px;
    }

    .admin-users-list {
        gap: 10px;
    }

    .admin-user-card {
        border-radius: 14px;
    }

    .admin-user-card-body {
        padding: 12px 14px;
    }

    .admin-user-avatar {
        width: 42px;
        height: 42px;
        border-radius: 12px;
        font-size: 16px;
    }

    .admin-user-card-title-row h2 {
        font-size: 17px;
    }

    .admin-user-meta {
        font-size: 12px;
    }

    .admin-users-page .user-profile-action {
        width: 100%;
        min-height: 44px;
        padding: 10px 12px;
        font-size: 13px;
    }

    .admin-users-page .user-profile-action i {
        font-size: 12px;
    }

    .admin-users-empty,
    .admin-users-search-empty {
        padding: 36px 16px;
        border-radius: 14px;
    }

    .admin-mail-page {
        gap: 12px;
    }

    .admin-mail-header {
        flex-direction: column;
        align-items: stretch;
    }

    .admin-mail-header .btn {
        width: 100%;
        justify-content: center;
    }

    .admin-mail-intro h1 {
        font-size: 22px;
    }

    .admin-mail-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .admin-mail-tools-grid {
        grid-template-columns: 1fr;
    }

    .admin-mail-driver-help {
        grid-template-columns: 1fr;
    }

    .admin-legal-header {
        flex-direction: column;
        align-items: stretch;
    }

    .admin-legal-header .btn {
        width: 100%;
        justify-content: center;
    }

    .admin-legal-grid {
        grid-template-columns: 1fr;
    }

    .admin-legal-intro h1 {
        font-size: 22px;
    }

    .site-legal-footer {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        font-size: 10px;
    }

    .site-legal-copy {
        font-size: 11px;
    }

    .site-legal-links {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 6px 10px;
        margin-left: 0;
        justify-content: stretch;
        text-align: left;
        font-size: 10px;
        line-height: 1.35;
    }

    .site-legal-links a {
        white-space: normal;
        word-break: break-word;
    }

    .site-legal-sep {
        display: none;
    }

    .site-legal-footer-profile .site-legal-links {
        grid-template-columns: 1fr;
    }

    .legal-page-card {
        padding: 20px 18px;
    }

    .admin-maintenance-page {
        gap: 12px;
    }

    .admin-maintenance-header {
        flex-direction: column;
        align-items: stretch;
    }

    .admin-maintenance-header .btn {
        width: 100%;
        justify-content: center;
    }

    .admin-maintenance-intro h1 {
        font-size: 22px;
    }

    .admin-maintenance-subtitle {
        font-size: 14px;
    }

    .admin-maintenance-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .admin-maintenance-stats .stat-card {
        padding: 12px 10px;
        border-radius: 12px;
    }

    .admin-maintenance-stats .stat-card strong {
        font-size: 16px;
    }

    .admin-maintenance-stats .stat-card span {
        font-size: 11px;
    }

    .admin-maintenance-block {
        padding: 14px;
        border-radius: 14px;
    }

    .admin-maintenance-block h2 {
        font-size: 17px;
    }

    .admin-maintenance-submit {
        width: 100%;
        justify-self: stretch;
        justify-content: center;
    }

    .user-dashboard-add {
        display: none;
    }

    .user-dashboard .user-dashboard-stats {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
        margin-bottom: 14px;
    }

    .user-dashboard .user-dashboard-stat {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: 6px;
        padding: 10px 4px;
        border-radius: 12px;
    }

    .user-dashboard .user-dashboard-stat i {
        width: 30px;
        height: 30px;
        font-size: 12px;
        border-radius: 9px;
    }

    .user-dashboard .user-dashboard-stat strong {
        font-size: 17px;
    }

    .user-dashboard .user-dashboard-stat span {
        font-size: 11px;
        margin-top: 0;
        line-height: 1.2;
    }

    .user-dashboard .user-profile-list {
        gap: 10px;
    }

    .user-dashboard .user-profile-card {
        border-radius: 14px;
    }

    .user-dashboard .user-profile-card-body {
        padding: 11px 12px;
    }

    .user-dashboard .user-profile-card-head {
        gap: 8px;
    }

    .user-dashboard .user-profile-avatar {
        width: 40px;
        height: 40px;
        border-radius: 10px;
    }

    .user-dashboard .user-profile-avatar.is-default-image img {
        padding: 4px;
    }

    .user-dashboard .user-profile-card-info h2 {
        font-size: 14px;
        line-height: 1.3;
    }

    .user-dashboard .user-profile-card-title-row {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        gap: 4px 6px;
        margin-bottom: 1px;
    }

    .user-dashboard .user-profile-status {
        padding: 2px 7px;
        font-size: 10px;
        gap: 3px;
    }

    .user-dashboard .user-profile-status i {
        font-size: 9px;
    }

    .user-dashboard .user-profile-meta {
        font-size: 11px;
        gap: 4px;
    }

    .user-dashboard .user-profile-meta i {
        font-size: 10px;
        color: #9ca3af;
    }

    .user-dashboard .user-profile-card-actions {
        margin-top: 8px;
        padding-top: 7px;
    }

    .user-dashboard .user-profile-badges {
        margin-top: 7px;
    }

    .user-dashboard .user-profile-reject {
        margin-top: 7px;
        padding: 7px 9px;
        gap: 8px;
        border-radius: 9px;
    }

    .user-dashboard .user-profile-reject strong {
        font-size: 11px;
    }

    .user-dashboard .user-profile-reject p {
        font-size: 11px;
        line-height: 1.4;
    }

    .user-dashboard .user-profile-actions {
        gap: 5px;
    }

    .user-profile-actions {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .user-profile-action,
    .user-profile-delete-form .user-profile-action {
        min-height: 72px;
        font-size: 12px;
    }

    .user-profile-card-title-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .user-dashboard .user-profile-action,
    .user-dashboard .user-profile-delete-form .user-profile-action {
        flex: 1 1 calc(50% - 5px);
        justify-content: center;
        min-height: 30px;
        padding: 5px 8px;
        font-size: 11px;
        border-radius: 999px;
        white-space: nowrap;
    }

    .user-dashboard .user-profile-action i {
        font-size: 10px;
        width: auto;
    }

    .user-dashboard .user-profile-action span {
        flex: none;
        text-align: center;
    }

    .user-dashboard .user-profile-action-count {
        min-width: 16px;
        height: 16px;
        padding: 0 4px;
        font-size: 9px;
        margin-left: 2px;
    }

    @media (max-width: 400px) {
        .user-dashboard .user-profile-card-body {
            padding: 10px 11px;
        }

        .user-dashboard .user-profile-avatar {
            width: 38px;
            height: 38px;
        }

        .user-dashboard .user-profile-card-info h2 {
            font-size: 13px;
        }

        .user-dashboard .user-profile-card-actions {
            margin-top: 7px;
            padding-top: 6px;
        }

        .user-dashboard .user-profile-action,
        .user-dashboard .user-profile-delete-form .user-profile-action {
            flex: 1 1 calc(50% - 4px);
            min-height: 28px;
            padding: 4px 7px;
            font-size: 10px;
            gap: 4px;
        }

        .user-dashboard .user-profile-action i {
            font-size: 9px;
        }
    }

    .user-action-btn {
        min-height: 68px;
        font-size: 13px;
    }

    .user-body.has-user-fab .container {
        padding-bottom: 88px;
    }

    .user-dashboard {
        padding-bottom: 0;
    }

    .logo {
        font-size: 17px;
    }

    .card,
    .form-card,
    .auth-card {
        padding: 16px;
        border-radius: 14px;
        margin-bottom: 16px;
    }

    .card h1,
    .toolbar h1 {
        font-size: 22px;
    }

    .card h2,
    .bulk-rules h2,
    .bulk-progress-panel h2 {
        font-size: 18px;
    }

    .bulk-profiles-simple-top {
        flex-direction: column;
        gap: 12px;
    }

    .bulk-profiles-simple-actions {
        width: 100%;
    }

    .bulk-profiles-simple-actions .btn {
        flex: 1 1 auto;
        justify-content: center;
    }

    .bulk-profiles-simple-stats:not(.bulk-settings-stats-row) {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .bulk-settings-simple {
        padding: 12px;
        margin-bottom: 12px;
        border-radius: 14px;
    }

    .bulk-settings-simple .bulk-profiles-simple-top h1 {
        font-size: 22px;
    }

    .bulk-settings-simple .bulk-profiles-simple-lead {
        font-size: 14px;
        line-height: 1.45;
    }

    .bulk-settings-simple .bulk-profiles-data-status {
        padding: 12px 14px;
        margin-bottom: 12px;
    }

    .bulk-settings-simple .bulk-profiles-data-status span {
        font-size: 13px;
    }

    .bulk-settings-simple .bulk-stats-grid {
        gap: 6px;
        margin-bottom: 14px;
    }

    .bulk-settings-stats-row {
        grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
        gap: 6px;
    }

    .bulk-delete-simple .bulk-settings-stats-row {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    .bulk-delete-actions .btn-reset-system {
        width: 100%;
        justify-content: center;
    }

    .bulk-delete-simple .bulk-delete-preset-name {
        font-size: clamp(13px, 3.6vw, 16px);
    }

    .bulk-settings-stats-row .stat-card {
        padding: 10px 4px;
        border-radius: 12px;
    }

    .bulk-settings-stats-row .stat-card span,
    .bulk-settings-stats-row .bulk-stat-label {
        font-size: 10px;
        letter-spacing: 0.01em;
    }

    .bulk-settings-stats-row .stat-card strong {
        margin-top: 4px;
        font-size: clamp(13px, 3.6vw, 17px);
    }

    .bulk-settings-stats-row .stat-card:last-child strong {
        font-size: clamp(11px, 3.1vw, 15px);
        letter-spacing: -0.02em;
    }

    .bulk-settings-stats-row .bulk-stat-label-full {
        display: none;
    }

    .bulk-settings-stats-row .bulk-stat-label-compact {
        display: inline;
    }

    .bulk-settings-preset-picker {
        margin-bottom: 14px;
    }

    .bulk-settings-block {
        padding: 14px;
        border-radius: 14px;
    }

    .bulk-settings-block h2 {
        font-size: 17px;
        margin-bottom: 14px;
        padding-bottom: 10px;
    }

    .bulk-settings-fields.form-grid,
    .bulk-settings-inline-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .bulk-settings-checkbox-inline {
        padding: 12px;
    }

    .bulk-settings-city-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-height: 240px;
        padding: 8px;
    }

    .bulk-settings-city-option {
        min-height: 44px;
        font-size: 14px;
    }

    .bulk-settings-media-grid {
        grid-template-columns: 1fr;
    }

    .bulk-settings-gallery-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .bulk-settings-save-bar {
        position: sticky;
        bottom: 0;
        z-index: 20;
        margin: 0 -12px -12px;
        padding: 12px;
        padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
        border-top: 1px solid #eceff3;
        background: rgba(255, 255, 255, 0.96);
        backdrop-filter: blur(8px);
        box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.06);
    }

    .bulk-settings-save-bar .btn {
        width: 100%;
        justify-content: center;
    }

    .bulk-settings-form-simple {
        gap: 14px;
        padding-bottom: 8px;
    }

    .bulk-settings-simple-tools {
        padding: 12px;
        gap: 10px;
        flex-direction: column;
        align-items: stretch;
    }

    .bulk-add-preset-form,
    .bulk-settings-tool-form {
        flex-direction: column;
        align-items: stretch;
    }

    .bulk-add-preset-form input[type="text"],
    .bulk-settings-tool-form input[type="text"] {
        width: 100%;
        flex: 1 1 auto;
    }

    .bulk-settings-tool-form .btn,
    .bulk-add-preset-form .btn {
        width: 100%;
        justify-content: center;
    }

    .bulk-settings-advanced-tools {
        width: 100%;
        margin-left: 0;
    }

    .bulk-settings-advanced-body .btn,
    .bulk-settings-advanced-body .link-button {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .bulk-settings-preset-picker {
        max-width: none;
    }

    .bulk-settings-inline-row,
    .bulk-settings-scope-row {
        flex-direction: column;
        align-items: stretch;
    }

    .toolbar {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .toolbar-actions,
    .form-actions,
    .bulk-settings-footer {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }

    .filters {
        display: flex;
        flex-wrap: wrap;
        gap: 8px 12px;
    }

    .filters a {
        margin-right: 0;
        font-size: 15px;
    }

    .user-profile-form-page {
        padding-bottom: 112px;
    }

    .user-profile-form-section-head {
        padding: 16px 16px 0;
    }

    .user-profile-form-section-body {
        padding: 14px 16px 16px;
    }

    .user-profile-form-section-head h2 {
        font-size: 17px;
    }

    .user-profile-hours-row {
        grid-template-columns: 1fr;
    }

    .user-profile-hours-closed {
        justify-self: start;
    }

    .user-profile-form-actions {
        flex-direction: column-reverse;
        align-items: stretch;
        bottom: 8px;
        margin-inline: -2px;
    }

    .user-profile-form-actions .btn,
    .user-profile-form-actions .btn-primary {
        width: 100%;
        flex: none;
    }

    .service-input-row {
        grid-template-columns: auto 1fr auto;
    }

    .form-grid,
    .stats-grid:not(.bulk-settings-stats-row),
    .profile-grid,
    .bulk-settings-grid,
    .bulk-inline-fields {
        grid-template-columns: 1fr;
    }

    .hours-row,
    .inline-form {
        grid-template-columns: 1fr;
    }

    .stat-card {
        padding: 16px;
    }

    .stat-card strong {
        font-size: 24px;
    }

    .stat-card span {
        font-size: 14px;
    }

    .hint,
    .form-hint,
    .bulk-placeholder-help,
    .bulk-progress-stats,
    .address-preview,
    .review-owner-note {
        font-size: 15px;
    }

    .field-hint {
        font-size: 14px;
    }

    .alert {
        font-size: 15px;
        padding: 12px 14px;
    }

    .badge {
        font-size: 13px;
    }

    .reject-reason {
        font-size: 15px;
    }

    input[type="text"],
    input[type="email"],
    input[type="password"],
    input[type="url"],
    input[type="number"],
    input[type="time"],
    input[type="search"],
    select,
    textarea {
        font-size: 16px;
    }

    .btn {
        min-height: 44px;
        padding: 12px 18px;
        font-size: 15px;
    }

    .card > .table {
        display: block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .card > .table thead,
    .card > .table tbody {
        display: table;
        width: 100%;
        min-width: 520px;
    }

    .table th,
    .table td {
        padding: 10px 12px;
        font-size: 14px;
    }

    .table-actions {
        gap: 8px;
    }

    .table-actions a {
        font-size: 14px;
    }

    .bulk-preset-tabs {
        gap: 6px;
    }

    .bulk-preset-tab {
        font-size: 14px;
        min-height: 40px;
    }

    .bulk-add-preset-form {
        flex-direction: column;
        align-items: stretch;
    }

    .bulk-add-preset-form input[type="text"] {
        min-width: 0;
        width: 100%;
    }

    .bulk-progress-panel.is-active {
        top: 0;
    }

    .hero {
        padding: 32px 20px;
        margin: 16px 0;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
        text-align: center;
    }

    .site-footer {
        padding: 20px 0 32px;
        font-size: 15px;
    }

    /* Kimlik doğrulama */
    .auth-card {
        margin: 24px auto 16px;
    }

    .auth-brand {
        font-size: 24px;
    }

    .auth-card h1 {
        font-size: 22px;
    }

    .auth-help,
    .auth-notice p,
    .auth-links,
    .auth-footer-link {
        font-size: 15px;
    }

    /* Yorum yönetimi */
    .review-filter-form label {
        flex-direction: column;
        align-items: flex-start;
        font-size: 15px;
    }

    .review-filter-form select {
        min-width: 0;
        width: 100%;
    }

    .owner-review-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .owner-review-head time {
        font-size: 14px;
        white-space: normal;
    }

    .owner-review-item {
        padding: 14px;
    }

    .owner-review-item p {
        font-size: 15px;
    }

    /* Mapdex ana site / arama */
    .yandex-header {
        padding: 12px 16px 0;
    }

    .yandex-header.is-compact {
        padding-bottom: 12px;
    }

    .yandex-header.is-compact .yandex-header-inner {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .yandex-top-nav {
        margin-left: 0;
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 12px 16px;
    }

    .yandex-top-nav a {
        font-size: 15px;
    }

    .yandex-logo-compact {
        font-size: 24px;
    }

    .yandex-search-form,
    .yandex-search-form-home {
        flex-direction: column;
        width: 100%;
    }

    .yandex-search-form input[type="search"] {
        height: 48px;
        font-size: 16px;
    }

    .yandex-search-form-compact input[type="search"] {
        height: 44px;
    }

    .yandex-search-btn {
        width: 100%;
        min-height: 44px;
        font-size: 16px;
    }

    .yandex-home {
        min-height: auto;
        padding: 24px 0 32px;
    }

    .yandex-home-page {
        width: min(1200px, calc(100% - 24px));
    }

    .home-showcase {
        padding-bottom: 48px;
    }

    .home-showcase-block + .home-showcase-block {
        margin-top: 32px;
    }

    .home-showcase-head h2 {
        font-size: 22px;
    }

    .home-showcase-head p {
        font-size: 15px;
    }

    .home-profile-grid-top,
    .home-profile-grid-random,
    .home-profile-grid-latest {
        grid-template-columns: 1fr;
    }

    .home-profile-card-media {
        height: 132px;
    }

    .home-profile-card-name {
        font-size: 18px;
    }

    .yandex-logo-large {
        margin-bottom: 20px;
    }

    .yandex-home-promo {
        margin-top: 32px;
        padding-top: 24px;
    }

    .yandex-home-promo-lead {
        font-size: 17px;
    }

    .yandex-home-promo-text {
        font-size: 16px;
    }

    .yandex-home-promo-link {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 44px;
        font-size: 15px;
    }

    .yandex-home-note {
        font-size: 15px;
    }

    .yandex-main-results {
        padding: 16px 0 32px;
    }

    .yandex-results-meta {
        font-size: 15px;
        margin-bottom: 16px;
    }

    .yandex-result-main {
        flex-direction: column;
        gap: 12px;
    }

    .yandex-result-logo {
        width: 48px;
        height: 48px;
    }

    .yandex-result-logo.placeholder {
        font-size: 18px;
    }

    .yandex-result-content h2 {
        font-size: 18px;
    }

    .yandex-result-line {
        font-size: 15px;
    }

    .yandex-result-item {
        padding-bottom: 20px;
    }

    .yandex-pagination {
        gap: 8px;
        margin-top: 24px;
        padding-top: 20px;
    }

    .yandex-page-link,
    .yandex-page-current,
    .yandex-page-ellipsis {
        min-width: 40px;
        height: 40px;
        font-size: 15px;
    }

    .yandex-empty {
        padding: 32px 0;
    }

    .yandex-empty h1 {
        font-size: 22px;
    }

    .yandex-empty p {
        font-size: 16px;
    }

    .yandex-footer {
        padding: 16px 16px 28px;
        font-size: 11px;
    }

    .yandex-footer .site-legal-footer {
        font-size: 10px;
    }

    .yandex-footer .site-legal-copy {
        font-size: 11px;
    }

    .yandex-footer .site-legal-links {
        font-size: 10px;
    }

    .yandex-business-card-brand {
        font-size: 18px;
    }

    .yandex-business-card-text {
        font-size: 15px;
    }

    .yandex-business-card-btn {
        font-size: 15px;
        min-height: 40px;
    }

    /* Fotoğraf galerisi */
    .photo-lightbox-dialog {
        width: calc(100% - 16px);
        height: calc(100% - 24px);
        margin: 12px auto;
    }

    .photo-lightbox-close {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }

    .photo-lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 26px;
    }

    .photo-lightbox-counter {
        font-size: 15px;
    }

    /* Profil formu / galeri önizleme */
    .gallery-preview img,
    .photo-keep img {
        width: 100px;
        height: 75px;
    }

    .profile-upload-dropzone {
        min-height: 172px;
        padding: 24px 16px;
    }

    .profile-upload-title {
        font-size: 17px;
    }

    .profile-upload-status {
        min-height: 40px;
        font-size: 15px;
    }

    .profile-keep-photos-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .profile-upload-gallery-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .preview-image,
    .preview-thumb {
        max-width: 100%;
    }

    .services-fieldset legend,
    .bulk-settings-section h3 {
        font-size: 16px;
    }

    .services-list li {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .container {
        width: calc(100% - 20px);
    }

    .bulk-settings-city-list {
        grid-template-columns: 1fr;
        max-height: 280px;
    }

    .bulk-settings-gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
