:root {
    --minore-shell-bg: #edf2f7;
    --minore-surface: #ffffff;
    --minore-surface-muted: #f8fafc;
    --minore-border: rgba(148, 163, 184, 0.22);
    --minore-border-strong: rgba(100, 116, 139, 0.22);
    --minore-text-strong: #0f172a;
    --minore-text: #1e293b;
    --minore-text-muted: #475569;
    --minore-shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.08);
    --minore-shadow-card: 0 8px 24px rgba(15, 23, 42, 0.05);
    --minore-shadow-card-hover: 0 14px 34px rgba(15, 23, 42, 0.09);
    --minore-radius-card: 1.6rem;
    --minore-radius-panel: 2rem;
    --minore-accent: #0f766e;
    --minore-accent-strong: #115e59;
    --minore-accent-soft: rgba(15, 118, 110, 0.14);
    --minore-accent-ghost: rgba(15, 118, 110, 0.08);
    --minore-device-width: 430px;
    --minore-desktop-shell-gap: 18px;
    --minore-desktop-shell-radius: 2rem;
}

body.minore-shell-public {
    --minore-accent: #0f766e;
    --minore-accent-strong: #115e59;
    --minore-accent-soft: rgba(15, 118, 110, 0.14);
    --minore-accent-ghost: rgba(15, 118, 110, 0.08);
}

body.minore-shell-customer {
    --minore-accent: #7c3aed;
    --minore-accent-strong: #6d28d9;
    --minore-accent-soft: rgba(124, 58, 237, 0.14);
    --minore-accent-ghost: rgba(124, 58, 237, 0.08);
}

body.minore-shell-panel {
    --minore-accent: #1d4ed8;
    --minore-accent-strong: #1e40af;
    --minore-accent-soft: rgba(29, 78, 216, 0.14);
    --minore-accent-ghost: rgba(29, 78, 216, 0.08);
}

body.minore-shell-admin {
    --minore-accent: #b45309;
    --minore-accent-strong: #92400e;
    --minore-accent-soft: rgba(180, 83, 9, 0.12);
    --minore-accent-ghost: rgba(180, 83, 9, 0.08);
}

*::-webkit-scrollbar {
    display: none !important;
}

* {
    -ms-overflow-style: none !important;
    scrollbar-width: none !important;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    background: var(--minore-shell-bg);
    scrollbar-gutter: stable both-edges;
}

body.minore-shell {
    margin: 0;
    padding: 0;
    min-height: 100dvh;
    display: flex;
    justify-content: center;
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0) 34%),
        radial-gradient(circle at top right, var(--minore-accent-soft) 0%, rgba(255, 255, 255, 0) 28%),
        linear-gradient(180deg, #f8fafc 0%, #edf2f7 100%);
    color: var(--minore-text);
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

::selection {
    background: var(--minore-accent-soft);
    color: var(--minore-text-strong);
}

#app {
    width: min(100vw, var(--minore-device-width));
    max-width: var(--minore-device-width);
    min-height: 100dvh;
    margin: 0 auto;
    position: relative;
    isolation: isolate;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.98) 100%);
    border-inline: 1px solid rgba(226, 232, 240, 0.78);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.4),
        0 24px 60px rgba(15, 23, 42, 0.08);
}

.view-screen {
    display: none;
    flex-direction: column;
    min-height: 100dvh;
    width: 100%;
    background:
        linear-gradient(180deg, rgba(248, 250, 252, 0.78) 0%, rgba(241, 245, 249, 0.68) 100%);
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
}

.view-screen.active {
    display: flex;
}

@keyframes minoreFadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.view-screen.active > * {
    animation: minoreFadeIn 0.28s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.view-screen.active > *:nth-child(2) {
    animation-delay: 0.04s;
}

.view-screen.active > *:nth-child(3) {
    animation-delay: 0.08s;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--minore-text-strong);
    letter-spacing: -0.02em;
}

a,
button,
[role="button"],
input,
select,
textarea {
    transition:
        transform 0.18s ease,
        box-shadow 0.18s ease,
        border-color 0.18s ease,
        background-color 0.18s ease,
        color 0.18s ease;
}

.minore-shell [class*="bg-white"][class*="rounded"],
.minore-shell [class*="bg-slate-50"][class*="rounded-2xl"],
.minore-shell [class*="bg-slate-50"][class*="rounded-[1.75rem]"] {
    border: 1px solid var(--minore-border);
    box-shadow: var(--minore-shadow-card);
    backdrop-filter: blur(6px);
}

.minore-shell [class*="bg-white"][class*="rounded"]:hover,
.minore-shell [class*="bg-slate-50"][class*="rounded-2xl"]:hover,
.minore-shell [class*="bg-slate-50"][class*="rounded-[1.75rem]"]:hover {
    border-color: var(--minore-border-strong);
    box-shadow: var(--minore-shadow-card-hover);
    transform: translateY(-1px);
}

.minore-shell [class*="bg-gradient-to-br"][class*="rounded"],
.minore-shell [class*="bg-gradient-to-r"][class*="rounded"] {
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.14);
}

.minore-shell .sticky.top-0 {
    background: rgba(255, 255, 255, 0.82) !important;
    backdrop-filter: blur(14px) saturate(1.2) !important;
    -webkit-backdrop-filter: blur(14px) saturate(1.2) !important;
    border-bottom: 1px solid rgba(226, 232, 240, 0.92) !important;
}

.minore-shell .fixed.bottom-0 {
    background: rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: blur(16px) saturate(1.2);
    -webkit-backdrop-filter: blur(16px) saturate(1.2);
    border-top: 1px solid rgba(226, 232, 240, 0.92) !important;
    box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.05) !important;
}

.minore-screen-content {
    --minore-section-inline-inset: clamp(0.75rem, 4.2vw, 1rem);
}

.minore-section-title,
.minore-section-heading {
    padding-inline: var(--minore-section-inline-inset, 0.35rem);
}

.minore-screen-content > h3.text-base.font-bold.text-slate-900,
.minore-screen-content > h3.text-base.font-bold.text-red-600,
.minore-screen-content > div.flex.justify-between.items-center,
.minore-screen-content > div.flex.justify-between.items-center.gap-3,
.minore-screen-content > div.flex.flex-wrap.items-center.justify-between.gap-3,
.minore-screen-content > div.flex.items-center.justify-between.gap-3 {
    padding-inline: var(--minore-section-inline-inset);
}

input,
select,
textarea {
    background-color: #f8fafc !important;
    border: 1px solid rgba(148, 163, 184, 0.36) !important;
    color: var(--minore-text) !important;
}

input:focus,
select:focus,
textarea:focus {
    background-color: #ffffff !important;
    border-color: var(--minore-accent) !important;
    box-shadow: 0 0 0 4px var(--minore-accent-soft) !important;
    outline: none !important;
}

::placeholder {
    color: #64748b;
    opacity: 1;
}

button:disabled,
[role="button"][aria-disabled="true"],
input:disabled,
select:disabled,
textarea:disabled {
    cursor: not-allowed !important;
    opacity: 0.72 !important;
    filter: saturate(0.88);
}

:where(a, button, input, select, textarea, summary, [tabindex]):focus-visible {
    outline: 3px solid var(--minore-accent-soft);
    outline-offset: 2px;
    box-shadow: 0 0 0 4px color-mix(in srgb, var(--minore-accent) 16%, white);
}

.minore-shell button[class*="bg-gradient-to-r"],
.minore-shell button[class*="bg-blue-700"],
.minore-shell button[class*="bg-indigo-600"],
.minore-shell button[class*="bg-slate-900"],
.minore-shell button[class*="bg-amber-500"] {
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.12);
}

.minore-shell button:hover:not(:disabled),
.minore-shell [role="button"]:hover {
    transform: translateY(-1px);
}

.minore-shell button:active:not(:disabled),
.minore-shell [role="button"]:active {
    transform: translateY(0);
}

.minore-hero-card,
.minore-section-card,
.minore-inline-banner,
.minore-empty-state {
    border-radius: var(--minore-radius-card);
    border: 1px solid var(--minore-border);
    box-shadow: var(--minore-shadow-card);
}

.minore-hero-card {
    overflow: hidden;
    background:
        linear-gradient(135deg, color-mix(in srgb, var(--minore-accent) 14%, white) 0%, rgba(255, 255, 255, 0.96) 100%);
}

.minore-inline-banner {
    background: color-mix(in srgb, var(--minore-accent) 10%, white);
}

.minore-empty-state {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    text-align: center;
}

.minore-shell img,
.minore-shell video,
.minore-shell canvas,
.minore-shell svg {
    max-width: 100%;
}

.minore-shell .grid > * {
    min-width: 0;
}

.minore-shell .grid.grid-cols-12 > [class*="col-span-"] {
    min-width: 0;
}

.minore-shell .fixed.bottom-0.w-full.max-w-md {
    --minore-bottom-nav-width: min(100vw, var(--minore-device-width));
    --minore-bottom-nav-left: max(0px, calc((100vw - var(--minore-bottom-nav-width)) / 2));
    left: var(--minore-bottom-nav-left) !important;
    right: auto !important;
    transform: none !important;
    width: var(--minore-bottom-nav-width) !important;
    max-width: var(--minore-bottom-nav-width) !important;
}

.minore-shell [data-mobile-bottom-nav] {
    position: fixed !important;
    align-items: stretch !important;
    justify-content: space-between !important;
    box-sizing: border-box;
    gap: 0.25rem;
    min-width: 0;
    overflow: hidden;
}

.minore-shell [data-mobile-bottom-nav-item] {
    flex: 1 1 0;
    min-width: 0;
}

.minore-shell [data-mobile-bottom-nav-label] {
    display: block;
    width: 100%;
    min-width: 0;
    line-height: 1.05;
    overflow: hidden;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
}

body.minore-shell-admin .fixed.bottom-0.w-full.max-w-md {
    left: var(--minore-bottom-nav-left) !important;
    right: auto !important;
    transform: none !important;
    margin-inline: 0 !important;
}

.minore-shell [role="dialog"] > [class*="max-w-sm"],
.minore-shell [role="dialog"] > [class*="max-w-md"] {
    min-width: 0;
}

.minore-shell [class*="w-[220px]"] {
    max-width: calc(100vw - 16px);
}

.minore-shell .minore-modal-root {
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y;
}

.minore-shell .minore-modal-card-contained {
    min-width: 0;
    width: 100%;
    max-width: min(100%, var(--minore-device-width));
    min-height: 0;
    max-height: calc(100% - 1rem);
    margin: auto;
}

.minore-shell .minore-modal-card-scroll {
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
}

.minore-shell .minore-paytr-root {
    z-index: 140;
    overflow: hidden;
    background: rgba(15, 23, 42, 0.56);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.minore-shell .minore-paytr-card {
    min-width: 0;
    width: 100%;
    max-width: min(100%, var(--minore-device-width));
    min-height: 100%;
    box-shadow: 0 32px 80px rgba(15, 23, 42, 0.24);
}

.minore-shell .minore-paytr-frame {
    min-height: 0;
    flex: 1 1 auto;
    overflow: hidden;
}

.minore-shell [data-testid="explore-category-chip"] {
    max-width: min(100%, 220px);
}

.minore-shell .minore-explore-shell {
    overflow: hidden;
    background: linear-gradient(180deg, #f0f4f8 0%, #e2e8f0 100%);
    isolation: isolate;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
}

.minore-shell .minore-explore-map {
    position: absolute;
    inset: 0;
    z-index: 1;
    min-height: 320px;
    background: #e2e8f0;
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.06);
    touch-action: none;
    overscroll-behavior: contain;
}

.minore-shell .minore-explore-topbar {
    pointer-events: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 20;
    padding: 12px;
    padding-bottom: 16px;
}

.minore-shell .minore-explore-filterbar {
    pointer-events: auto;
    display: flex;
    align-items: center;
    gap: 6px;
    min-width: 0;
    width: 100%;
    min-height: 48px;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 8px 32px rgba(15, 23, 42, 0.18), 0 2px 8px rgba(15, 23, 42, 0.08), 0 0 0 1px rgba(255, 255, 255, 0.5) inset;
    backdrop-filter: blur(20px) saturate(1.3);
    -webkit-backdrop-filter: blur(20px) saturate(1.3);
    transition: box-shadow 200ms ease, transform 200ms ease;
}

.minore-shell .minore-explore-filterbar:hover {
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.22), 0 4px 12px rgba(15, 23, 42, 0.1), 0 0 0 1px rgba(255, 255, 255, 0.6) inset;
}

.minore-shell .minore-explore-icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 10px;
    background: #f8fafc;
    color: #334155;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
    transition: all 150ms ease;
}

.minore-shell .minore-explore-icon-btn:hover {
    background: #f1f5f9;
    color: #1e293b;
    transform: scale(1.05);
}

.minore-shell .minore-explore-icon-btn:active {
    transform: scale(0.95);
}

.minore-shell .minore-explore-icon-btn svg {
    width: 18px;
    height: 18px;
}

.minore-shell .minore-explore-chip-rail {
    display: flex;
    flex: 1 1 auto;
    min-width: 0;
    gap: 8px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 2px 0;
}

.minore-shell .minore-explore-chip-rail::-webkit-scrollbar {
    display: none;
}

.minore-shell .minore-explore-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    flex: 0 0 auto;
    max-width: 180px;
    height: 36px;
    padding: 0 14px;
    border: 0;
    border-radius: 10px;
    background: #eef2f7;
    color: #334155;
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
    scroll-snap-align: start;
    transition: all 150ms ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.minore-shell .minore-explore-chip:hover {
    background: #e2e8f0;
    transform: translateY(-1px);
}

.minore-shell .minore-explore-chip:active {
    transform: translateY(0);
}

.minore-shell .minore-explore-chip.is-active {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
}

.minore-shell .minore-explore-chip img,
.minore-shell .minore-explore-chip svg {
    width: 16px;
    height: 16px;
    flex: 0 0 auto;
    object-fit: contain;
}

.minore-shell .minore-explore-chip span {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.minore-shell .minore-explore-sheet {
    pointer-events: auto;
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 20;
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
    border: 1px solid rgba(226, 232, 240, 0.96);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 16px 48px rgba(15, 23, 42, 0.2), 0 8px 24px rgba(15, 23, 42, 0.12);
    backdrop-filter: blur(18px) saturate(1.2);
    -webkit-backdrop-filter: blur(18px) saturate(1.2);
    transition: height 200ms cubic-bezier(0.4, 0, 0.2, 1);
}

.minore-shell .minore-explore-sheet.is-collapsed {
    height: 178px;
}

.minore-shell .minore-explore-sheet.is-expanded {
    height: min(70%, 520px);
}

.minore-shell .minore-explore-sheet-handle {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    flex: 0 0 auto;
    min-height: 40px;
    width: 100%;
    border: 0;
    border-bottom: 1px solid rgba(226, 232, 240, 0.88);
    border-radius: 0;
    background: rgba(248, 250, 252, 0.85);
    color: #0f172a;
    font-size: 13px;
    font-weight: 800;
    transition: background 150ms ease;
}

.minore-shell .minore-explore-sheet-handle:hover {
    background: rgba(241, 245, 249, 0.95);
}

.minore-shell .minore-explore-sheet-handle::before {
    content: "";
    justify-self: center;
    width: 48px;
    height: 4px;
    margin-left: 0;
    border-radius: 999px;
    background: #cbd5e1;
    transition: background 150ms ease;
}

.minore-shell .minore-explore-sheet-handle:hover::before {
    background: #94a3b8;
}

.minore-shell .minore-explore-sheet-handle strong {
    min-width: 0;
    overflow: hidden;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.minore-shell .minore-explore-sheet-handle svg {
    justify-self: end;
    width: 18px;
    height: 18px;
    margin-right: 12px;
    color: #64748b;
}

.minore-shell .minore-explore-rail {
    display: flex;
    gap: 8px;
    flex: 1 1 auto;
    min-height: 0;
    padding: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    touch-action: pan-x;
    -webkit-overflow-scrolling: touch;
}

.minore-shell .minore-explore-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1 1 auto;
    min-height: 0;
    padding: 10px;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
}

.minore-shell .minore-explore-card {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
    min-width: 0;
    padding: 12px;
    border: 1px solid rgba(226, 232, 240, 0.7);
    border-radius: 14px;
    background: #ffffff;
    color: #0f172a;
    cursor: pointer;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
    transition: all 150ms ease;
}

.minore-shell .minore-explore-card:hover {
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.1);
}

.minore-shell .minore-explore-card:active {
    background: #f8fafc;
}

/* COLLAPSED MODE */
.minore-shell .minore-explore-card.is-collapsed {
    align-items: center;
    padding: 10px 12px;
}

.minore-shell .minore-explore-card.is-collapsed .minore-explore-card-logo {
    width: 52px;
    height: 52px;
    border-radius: 10px;
}

.minore-shell .minore-explore-card.is-collapsed .minore-explore-card-title-row h4 {
    font-size: 14px;
}

.minore-shell .minore-explore-rail .minore-explore-card.is-collapsed {
    flex: 0 0 240px;
    width: 240px;
    scroll-snap-align: start;
}

/* EXPANDED MODE */
.minore-shell .minore-explore-card.is-expanded {
    padding: 14px;
    gap: 14px;
}

.minore-shell .minore-explore-card.is-expanded .minore-explore-card-logo {
    width: 68px;
    height: 68px;
    border-radius: 14px;
}

.minore-shell .minore-explore-card.is-expanded .minore-explore-card-title-row h4 {
    font-size: 16px;
    font-weight: 700;
}

.minore-shell .minore-explore-list .minore-explore-card.is-expanded {
    width: 100%;
}

.minore-shell .minore-explore-card-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 60px;
    height: 60px;
    overflow: hidden;
    border: 1px solid rgba(241, 245, 249, 0.8);
    border-radius: 12px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    flex-shrink: 0;
    transition: all 200ms ease;
}

.minore-shell .minore-explore-card-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 200ms ease;
}

.minore-shell .minore-explore-card-logo img.is-loaded {
    opacity: 1;
}

.minore-shell .minore-explore-card-body {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    padding: 0;
    gap: 6px;
}

.minore-shell .minore-explore-card-title-row,
.minore-shell .minore-explore-meta,
.minore-shell .minore-explore-actions,
.minore-shell .minore-explore-badges {
    display: flex;
    align-items: center;
    min-width: 0;
}

.minore-shell .minore-explore-card-title-row {
    gap: 6px;
    display: flex;
    align-items: center;
    min-width: 0;
}

.minore-shell .minore-explore-card-title-row h4 {
    min-width: 0;
    margin: 0;
    overflow: hidden;
    color: #0f172a;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.3;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Expanded modda badges, address, actions göster */
.minore-shell .minore-explore-card.is-collapsed .minore-explore-badges,
.minore-shell .minore-explore-card.is-collapsed .minore-explore-address,
.minore-shell .minore-explore-card.is-collapsed .minore-explore-actions {
    display: none !important;
}

.minore-shell .minore-explore-badges {
    gap: 6px;
    margin-top: 6px;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
}

.minore-shell .minore-explore-badges span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    min-width: 0;
    max-width: 100px;
    overflow: hidden;
    padding: 4px 8px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 700;
    line-height: 1.2;
    text-overflow: ellipsis;
    white-space: nowrap;
    background: #f1f5f9;
    color: #475569;
}

.minore-shell .minore-explore-badges svg {
    width: 10px;
    height: 10px;
    flex: 0 0 auto;
}

.minore-shell .minore-explore-check,
.minore-shell .minore-explore-star {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
    border-radius: 999px;
    color: #ffffff;
    flex-shrink: 0;
}

.minore-shell .minore-explore-check {
    background: #3b82f6;
}

.minore-shell .minore-explore-star {
    background: #f59e0b;
}

.minore-shell .minore-explore-check svg,
.minore-shell .minore-explore-star svg {
    width: 10px;
    height: 10px;
}

.minore-shell .minore-explore-meta {
    gap: 4px;
    margin-top: 0;
    overflow: hidden;
    color: #64748b;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.4;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.minore-shell .minore-explore-meta a {
    display: inline;
    color: #475569;
    text-decoration: none;
}

.minore-shell .minore-explore-meta a:hover {
    color: #1e293b;
    text-decoration: underline;
}

.minore-shell .minore-explore-rating {
    color: #ea580c;
}

.minore-shell .minore-explore-dot {
    color: #cbd5e1;
}

.minore-shell .minore-explore-meta .is-open {
    color: #16a34a;
    font-weight: 600;
}

.minore-shell .minore-explore-meta .is-closed {
    color: #dc2626;
    font-weight: 600;
}

.minore-shell .minore-explore-address {
    display: block;
    min-width: 0;
    margin: 6px 0 0;
    overflow: hidden;
    color: #64748b;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.4;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.minore-shell .minore-explore-actions {
    gap: 8px;
    margin-top: 10px;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
}

.minore-shell .minore-explore-actions a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    flex: 0 0 auto;
    min-width: 0;
    max-width: 100px;
    overflow: hidden;
    padding: 8px 12px;
    border-radius: 10px;
    background: #f8fafc;
    color: #475569;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: all 150ms ease;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(226, 232, 240, 0.6);
}

.minore-shell .minore-explore-actions a:hover {
    background: #f1f5f9;
    color: #1e293b;
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

.minore-shell .minore-explore-actions a:nth-child(1) {
    background: #eff6ff;
    color: #1d4ed8;
    border-color: rgba(219, 234, 254, 0.6);
}

.minore-shell .minore-explore-actions a:nth-child(2) {
    background: #f0fdf4;
    color: #15803d;
    border-color: rgba(220, 252, 231, 0.6);
}

.minore-shell .minore-explore-actions a:nth-child(3) {
    background: #ecfdf5;
    color: #047857;
    border-color: rgba(209, 250, 229, 0.6);
}

.minore-shell .minore-explore-actions svg {
    width: 14px;
    height: 14px;
    flex: 0 0 auto;
}

.minore-shell .minore-explore-empty {
    margin: 12px;
    padding: 24px 16px;
    border: 2px dashed rgba(148, 163, 184, 0.3);
    border-radius: 12px;
    background: #f8fafc;
    color: #475569;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
    text-align: center;
}

.swal-mobile {
    width: 80% !important;
    max-width: 320px !important;
    border-radius: 28px !important;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12) !important;
}

.swal2-popup {
    border-radius: 24px !important;
    padding: 28px 22px 22px !important;
}

.swal2-title {
    font-size: 20px !important;
    color: var(--minore-text-strong) !important;
    font-weight: 800 !important;
}

.swal2-html-container {
    color: var(--minore-text-muted) !important;
    font-size: 15px !important;
    line-height: 1.55 !important;
}

.swal2-confirm,
.swal2-cancel {
    border-radius: 16px !important;
    padding: 14px 24px !important;
    font-weight: 700 !important;
}

.swal2-confirm {
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.15) !important;
}

.swal2-popup .swal2-textarea.swal2-premium-input,
.swal2-popup .swal2-input.swal2-premium-input {
    width: 100% !important;
    margin: 14px 0 0 !important;
    min-height: 112px !important;
    border-radius: 18px !important;
    border: 1px solid rgba(148, 163, 184, 0.3) !important;
    background: #f8fafc !important;
    color: #0f172a !important;
    box-shadow: none !important;
    padding: 14px 16px !important;
    font-size: 15px !important;
    line-height: 1.5 !important;
}

.swal2-popup .swal2-textarea.swal2-premium-input:focus,
.swal2-popup .swal2-input.swal2-premium-input:focus {
    border-color: rgba(37, 99, 235, 0.45) !important;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12) !important;
}

.minore-boot-fallback {
    max-width: 420px;
    margin: 40px auto;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid rgba(226, 232, 240, 0.96);
    border-radius: 22px;
    padding: 24px 20px;
    box-shadow: var(--minore-shadow-soft);
}

.minore-boot-fallback h1 {
    color: var(--minore-text-strong);
    font-size: 18px;
    margin: 0 0 8px 0;
    font-weight: 800;
}

.minore-boot-fallback p {
    color: var(--minore-text-muted);
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
}

#view-verify.tools-hub-scroll-shell {
    padding-bottom: calc(env(safe-area-inset-bottom, 0px) + 7rem);
}

#view-verify .tools-hub-scroll-body {
    padding-bottom: calc(env(safe-area-inset-bottom, 0px) + 7rem);
}

.bg-blue-500 { background-color: #3b82f6 !important; }
.bg-purple-500 { background-color: #8b5cf6 !important; }
.bg-green-500 { background-color: #22c55e !important; }
.bg-green-600 { background-color: #16a34a !important; }
.bg-pink-500 { background-color: #ec4899 !important; }
.bg-amber-500 { background-color: #f59e0b !important; }
.bg-red-500 { background-color: #ef4444 !important; }
.bg-cyan-500 { background-color: #06b6d4 !important; }
.bg-indigo-500 { background-color: #6366f1 !important; }
.bg-gray-500 { background-color: #6b7280 !important; }
.bg-teal-500 { background-color: #14b8a6 !important; }

@media (max-width: 420px) {
    #app {
        max-width: 100%;
        min-width: 0;
        border-inline: 0;
        box-shadow: none;
    }

    .minore-shell .fixed.bottom-0.w-full.max-w-md {
        --minore-bottom-nav-width: min(calc(100vw - 12px), var(--minore-device-width));
        --minore-bottom-nav-left: max(0px, calc((100vw - var(--minore-bottom-nav-width)) / 2));
        border-top-left-radius: 1.35rem;
        border-top-right-radius: 1.35rem;
    }

    .minore-shell [data-mobile-bottom-nav] {
        gap: 0.125rem;
        padding-left: max(0.5rem, env(safe-area-inset-left));
        padding-right: max(0.5rem, env(safe-area-inset-right));
    }

    .minore-shell [data-mobile-bottom-nav-label] {
        font-size: 0.625rem !important;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .minore-shell .grid.grid-cols-4,
    .minore-shell .grid.grid-cols-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    .minore-shell .grid.grid-cols-12 {
        grid-template-columns: minmax(0, 1fr) !important;
    }

    .minore-shell .grid.grid-cols-12 > [class*="col-span-"] {
        grid-column: auto / auto !important;
    }

    .minore-shell [class*="w-[220px]"] {
        width: min(220px, calc(100vw - 16px)) !important;
        right: 0 !important;
        left: auto !important;
    }

    .minore-shell [data-panel-modal-root] > div,
    .minore-shell [data-panel-language-modal] > div,
    .minore-shell [data-admin-language-modal] > div,
    .minore-shell .minore-modal-card-contained,
    .minore-shell [role="dialog"] > [class*="max-w-sm"],
    .minore-shell [role="dialog"] > [class*="max-w-md"] {
        width: min(calc(100vw - 12px), 430px) !important;
        max-width: min(calc(100vw - 12px), 430px) !important;
        max-height: calc(100% - 12px) !important;
    }

    .minore-shell [data-panel-modal-root] > div,
    .minore-shell [data-panel-language-modal] > div,
    .minore-shell [data-admin-language-modal] > div,
    .minore-shell [role="dialog"] > [class*="max-w-sm"][class*="p-8"] {
        padding: 1.25rem !important;
    }

    .minore-shell .minore-modal-card-sheet {
        width: 100% !important;
        max-width: 100% !important;
        height: 100% !important;
        max-height: 100% !important;
        margin: 0 !important;
    }

    .minore-shell [data-testid$="table-controls"] > div:last-child {
        flex-wrap: wrap;
        justify-content: flex-start !important;
    }

    .minore-shell [data-testid="explore-category-chip"] {
        max-width: 196px;
    }

    .minore-shell .minore-explore-shell {
        bottom: 68px !important;
    }

    .minore-shell .minore-explore-rail .minore-explore-card {
        flex-basis: 252px;
        width: 252px;
    }
}

@media (max-width: 360px) {
    .minore-shell .grid.grid-cols-4,
    .minore-shell .grid.grid-cols-3,
    .minore-shell .grid.grid-cols-2 {
        grid-template-columns: minmax(0, 1fr) !important;
    }

    .minore-shell .fixed.bottom-0.w-full.max-w-md {
        --minore-bottom-nav-width: 100vw;
        --minore-bottom-nav-left: 0px;
        border-top-left-radius: 0;
        border-top-right-radius: 0;
    }

    .minore-shell [data-mobile-bottom-nav] {
        gap: 0;
    }

    .minore-shell [data-testid="explore-category-chip"] {
        max-width: 168px;
    }

    .minore-shell .minore-explore-topbar {
        padding: 8px;
    }

    .minore-shell .minore-explore-sheet {
        left: 8px;
        right: 8px;
        bottom: 8px;
    }

    .minore-shell .minore-explore-rail .minore-explore-card {
        flex-basis: 236px;
        width: 236px;
    }

    .minore-shell .minore-explore-card {
        padding: 8px;
    }
}

@media (min-width: 768px) {
    body.minore-shell {
        align-items: center;
        padding: var(--minore-desktop-shell-gap);
        overflow: hidden;
        background:
            radial-gradient(circle at top left, var(--minore-accent-soft) 0%, rgba(255, 255, 255, 0) 28%),
            radial-gradient(circle at bottom right, rgba(15, 23, 42, 0.06) 0%, rgba(255, 255, 255, 0) 30%),
            linear-gradient(180deg, #f8fafc 0%, #e2e8f0 100%);
    }

    #app {
        width: min(calc(100vw - (var(--minore-desktop-shell-gap) * 2)), var(--minore-device-width));
        max-width: var(--minore-device-width);
        min-height: calc(100dvh - (var(--minore-desktop-shell-gap) * 2));
        height: calc(100dvh - (var(--minore-desktop-shell-gap) * 2));
        border-radius: var(--minore-desktop-shell-radius);
        overflow: hidden;
        transform: translateZ(0);
        border: 1px solid rgba(226, 232, 240, 0.92);
        border-inline: 1px solid rgba(226, 232, 240, 0.92);
        box-shadow:
            0 0 0 1px rgba(148, 163, 184, 0.16),
            0 24px 48px rgba(15, 23, 42, 0.12),
            0 48px 96px rgba(15, 23, 42, 0.08);
    }

    .minore-shell .min-h-screen,
    .minore-shell .h-screen {
        min-height: 100% !important;
        height: 100% !important;
    }

    .view-screen {
        min-height: 100%;
        height: 100%;
    }

    .minore-shell .fixed.bottom-0.w-full.max-w-md {
        --minore-bottom-nav-width: 100%;
        --minore-bottom-nav-left: 0px;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        transform: none !important;
        width: 100% !important;
        max-width: none !important;
        border-top-left-radius: 1.4rem;
        border-top-right-radius: 1.4rem;
    }

    .minore-shell .minore-modal-card-contained {
        max-height: calc(100% - 16px) !important;
    }

    #view-verify.tools-hub-scroll-shell {
        padding-bottom: 5rem;
    }

    #view-verify .tools-hub-scroll-body {
        padding-bottom: 2rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    html:focus-within {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Keşfet Lite Design v4.0 - Minimal & Clean */

