:root {
    --page: #07080c;
    --page-2: #0d1017;
    --surface: rgba(18, 23, 32, .92);
    --surface-2: rgba(24, 31, 43, .92);
    --surface-3: rgba(35, 43, 58, .94);
    --line: rgba(255, 255, 255, .11);
    --line-strong: rgba(255, 255, 255, .20);
    --text: #f7f8fb;
    --text-soft: #dce3ed;
    --muted: #96a3b5;
    --red: #ff4655;
    --red-2: #cf1f31;
    --amber: #f5c451;
    --blue: #6ea8ff;
    --green: #66e4a6;
    --danger: #ff6670;
    --shadow: 0 28px 80px rgba(0, 0, 0, .42);
    --shadow-soft: 0 18px 46px rgba(0, 0, 0, .28);
    --radius: 8px;
    --sidebar: 286px;
}

* {
    box-sizing: border-box;
}

*,
*::before,
*::after {
    min-width: 0;
}

html {
    color-scheme: dark;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    min-height: 100vh;
    overflow-x: hidden;
    background:
        linear-gradient(120deg, rgba(255, 70, 85, .12), transparent 32%),
        linear-gradient(250deg, rgba(110, 168, 255, .09), transparent 32%),
        linear-gradient(180deg, #05060a 0%, #0b0e14 48%, #07080c 100%);
    color: var(--text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 15px;
    line-height: 1.55;
    letter-spacing: 0;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .018) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, .68), transparent 88%);
}

body.page-leave {
    animation: pageLeave .18s ease forwards;
}

a {
    color: inherit;
    text-decoration: none;
}

img,
video {
    display: block;
    max-width: 100%;
}

button,
input,
textarea,
select {
    font: inherit;
}

.app-loader {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 200;
    height: 3px;
    overflow: hidden;
    background: rgba(255, 255, 255, .05);
    animation: loaderOut .24s ease .92s forwards;
    pointer-events: none;
}

.app-loader span {
    display: block;
    width: 38%;
    height: 100%;
    border-radius: 0 var(--radius) var(--radius) 0;
    background: linear-gradient(90deg, var(--red), var(--amber));
    box-shadow: 0 0 24px rgba(255, 70, 85, .46);
    animation: loadingBar .92s ease both;
}

body.is-loaded .app-loader {
    opacity: 0;
    visibility: hidden;
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 60;
    display: grid;
    gap: 18px;
    min-height: 82px;
    padding: 14px 46px;
    border-bottom: 1px solid var(--line);
    background: rgba(7, 8, 12, .78);
    backdrop-filter: blur(20px);
    box-shadow: 0 18px 44px rgba(0, 0, 0, .28);
}

.topbar-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-width: 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
    font-size: 18px;
    font-weight: 950;
    color: #ffffff;
}

.brand::before {
    content: "VS";
    display: grid;
    place-items: center;
    width: 43px;
    height: 43px;
    flex: 0 0 43px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: var(--radius);
    background:
        linear-gradient(135deg, var(--red), #252b36 72%),
        #151a23;
    color: #ffffff;
    font-size: 13px;
    font-weight: 950;
    box-shadow: 0 0 28px rgba(255, 70, 85, .22);
}

.brand img {
    width: 43px;
    height: 43px;
    object-fit: contain;
    border-radius: var(--radius);
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
    min-width: 0;
    padding: 6px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .045);
}

.topbar-categories-shell {
    display: grid;
    gap: 10px;
    min-width: 0;
}

.topbar-categories-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    width: fit-content;
    min-height: 36px;
    padding: 8px 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .05);
    color: var(--text-soft);
    font-weight: 900;
    cursor: pointer;
    transition: transform .18s ease, border-color .18s ease, background .18s ease, color .18s ease;
}

.topbar-categories-toggle .toggle-arrow {
    display: inline-grid;
    place-items: center;
    width: 18px;
    height: 18px;
    transition: transform .18s ease;
}

.topbar-categories-toggle:hover,
.topbar-categories-shell.open .topbar-categories-toggle {
    color: #ffffff;
    border-color: rgba(255, 70, 85, .32);
    background: rgba(255, 70, 85, .12);
}

.topbar-categories-shell.open .topbar-categories-toggle .toggle-arrow {
    transform: rotate(180deg);
}

.topbar-categories-panel {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition: max-height .24s ease, opacity .18s ease, transform .18s ease;
}

.topbar-categories-shell.open .topbar-categories-panel {
    max-height: 86px;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.topbar-categories-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
    overflow-x: auto;
    padding: 2px 0 2px;
    scrollbar-width: none;
}

.topbar-categories-nav::-webkit-scrollbar {
    display: none;
}

.topbar-categories-nav a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 34px;
    padding: 7px 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .045);
    color: var(--text-soft);
    font-weight: 850;
    white-space: nowrap;
    transition: transform .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
}

.topbar-categories-nav a span {
    min-width: 20px;
    padding: 1px 6px;
    border-radius: 999px;
    background: rgba(255, 70, 85, .12);
    color: #ffd4d9;
    font-size: 11px;
    font-weight: 950;
    text-align: center;
}

.topbar-categories-nav a:hover,
.topbar-categories-nav a.active {
    color: #ffffff;
    border-color: rgba(255, 70, 85, .32);
    background: rgba(255, 70, 85, .16);
    transform: translateY(-1px);
}

.main-nav a,
.balance-chip,
.mini-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    border-radius: var(--radius);
    font-weight: 850;
    white-space: nowrap;
}

.main-nav a {
    gap: 7px;
    padding: 8px 12px;
    color: var(--text-soft);
    transition: transform .18s ease, background .18s ease, color .18s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: #ffffff;
    background: rgba(255, 70, 85, .18);
    transform: translateY(-1px);
}

.nav-toggle,
.mobile-nav-fab {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(20, 25, 34, .94);
    color: #ffffff;
    cursor: pointer;
}

.balance-chip,
.mini-count {
    min-height: 26px;
    padding: 4px 8px;
    border: 1px solid rgba(245, 196, 81, .34);
    background: rgba(245, 196, 81, .08);
    color: #ffe4a0;
    font-size: 12px;
    font-weight: 950;
}

.page {
    width: min(1280px, calc(100% - 42px));
    margin: 0 auto;
    padding: 34px 0 78px;
}

.hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    align-items: end;
    gap: 36px;
    min-height: 680px;
    overflow: hidden;
    padding: 70px;
    border: 1px solid var(--line-strong);
    border-radius: var(--radius);
    background: #07080c;
    box-shadow: var(--shadow);
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
    filter: saturate(1.08) contrast(1.04);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(5, 6, 10, .98) 0%, rgba(5, 6, 10, .76) 48%, rgba(5, 6, 10, .28) 100%),
        linear-gradient(0deg, rgba(5, 6, 10, .86), transparent 48%);
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(255, 70, 85, .20), transparent 34%),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, .035) 0 1px, transparent 1px 90px);
    opacity: .72;
}

.hero-copy,
.hero-console {
    position: relative;
    z-index: 1;
}

.hero-copy {
    max-width: 690px;
}

.hero h1 {
    margin: 10px 0 20px;
    max-width: 660px;
    color: #ffffff;
    font-size: 76px;
    line-height: .94;
    letter-spacing: 0;
}

.hero p {
    max-width: 660px;
    margin: 0;
    color: #eef3fb;
    font-size: 19px;
}

.hero-actions,
.row-actions,
.stack-actions,
.modal-actions,
.settings-actions,
.seller-cta-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.hero-actions {
    margin-top: 28px;
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 30px;
}

.hero-metrics span,
.brand-strip span,
.detail-trust-row span,
.trust-badges span {
    min-height: 72px;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .06);
    color: var(--text-soft);
    backdrop-filter: blur(12px);
    font-weight: 800;
}

.hero-metrics strong {
    display: block;
    color: #ffffff;
    font-size: 24px;
    line-height: 1;
}

.hero-console {
    align-self: stretch;
    display: grid;
    gap: 18px;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: var(--radius);
    background: rgba(12, 15, 22, .70);
    backdrop-filter: blur(18px);
    box-shadow: 0 0 46px rgba(255, 70, 85, .16);
}

.console-top,
.panel-title,
.result-toolbar,
.pipeline-row,
.dashboard-row,
.summary-line,
.summary-total,
.product-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.console-top span,
.filter-heading span,
.panel-title span {
    color: var(--muted);
    font-size: 12px;
    font-weight: 950;
    text-transform: uppercase;
}

.console-top strong {
    min-height: 26px;
    padding: 4px 9px;
    border-radius: var(--radius);
    background: rgba(102, 228, 166, .14);
    color: #caffdf;
    font-size: 12px;
}

.console-radar {
    position: relative;
    aspect-ratio: 1;
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: var(--radius);
    background:
        linear-gradient(90deg, transparent 49%, rgba(255, 255, 255, .08) 50%, transparent 51%),
        linear-gradient(0deg, transparent 49%, rgba(255, 255, 255, .08) 50%, transparent 51%),
        radial-gradient(circle, rgba(255, 70, 85, .28), transparent 58%);
    overflow: hidden;
}

.console-radar::before {
    content: "";
    position: absolute;
    inset: 12%;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 50%;
    animation: pulseRing 2.8s ease infinite;
}

.console-radar span {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--red);
    box-shadow: 0 0 22px rgba(255, 70, 85, .72);
}

.console-radar span:nth-child(1) { left: 26%; top: 28%; }
.console-radar span:nth-child(2) { right: 24%; top: 38%; background: var(--amber); }
.console-radar span:nth-child(3) { left: 44%; bottom: 22%; background: var(--green); }
.console-radar span:nth-child(4) { right: 18%; bottom: 26%; background: var(--blue); }

.console-list {
    display: grid;
    gap: 9px;
}

.console-list span,
.verification-list span {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 11px;
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .045);
    color: var(--text-soft);
}

.console-list strong {
    color: #ffffff;
}

.brand-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin: 22px 0 10px;
}

.brand-strip span {
    min-height: 64px;
    display: grid;
    place-items: center;
    text-align: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    color: var(--red);
    font-size: 12px;
    font-weight: 950;
    text-transform: uppercase;
}

.muted {
    color: var(--muted);
}

.section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
    margin: 54px 0 20px;
}

.section-head h1,
.section-head h2 {
    margin: 4px 0 0;
    color: #ffffff;
    font-size: 38px;
    line-height: 1.06;
    letter-spacing: 0;
}

.section-head p {
    max-width: 55ch;
    margin: 8px 0 0;
    color: var(--muted);
}

.section-head .review-toggle {
    align-self: center;
    white-space: nowrap;
}

.split-head p {
    margin-left: auto;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    padding: 10px 15px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface-2);
    color: var(--text);
    cursor: pointer;
    font-weight: 900;
    white-space: nowrap;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}

.btn:hover {
    transform: translateY(-2px);
    border-color: var(--line-strong);
    box-shadow: 0 14px 34px rgba(0, 0, 0, .30);
}

.btn.primary {
    border-color: rgba(255, 255, 255, .18);
    background: linear-gradient(135deg, var(--red), var(--red-2));
    color: #ffffff;
    box-shadow: 0 14px 34px rgba(255, 70, 85, .22);
}

.btn.ghost {
    background: rgba(255, 255, 255, .065);
}

.btn.danger {
    border-color: rgba(255, 102, 112, .42);
    background: rgba(255, 102, 112, .14);
    color: #ffe1e4;
}

.btn.whatsapp {
    border-color: rgba(37, 211, 102, .42);
    background: linear-gradient(135deg, rgba(37, 211, 102, .92), rgba(10, 132, 77, .92));
    color: #03150b;
    box-shadow: 0 14px 34px rgba(37, 211, 102, .18);
}

.btn.instagram {
    border-color: rgba(255, 80, 150, .38);
    background: linear-gradient(135deg, rgba(255, 70, 125, .92), rgba(106, 91, 255, .86));
    color: #ffffff;
    box-shadow: 0 14px 34px rgba(255, 70, 125, .18);
}

.btn.small {
    min-height: 36px;
    padding: 7px 11px;
    font-size: 13px;
}

.btn.full {
    width: 100%;
}

.btn:disabled {
    opacity: .48;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.advantage-grid,
.product-grid,
.content-grid,
.stat-grid,
.quick-grid,
.media-grid,
.testimonial-grid,
.security-grid,
.admin-module-grid {
    display: grid;
    gap: 18px;
}

.advantage-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.content-grid,
.testimonial-grid,
.quick-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stat-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.category-grid,
.bank-list.wide,
.admin-dashboard-grid,
.seller-dashboard-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.advantage-card,
.product-card,
.content-card,
.category-tile,
.stat-card,
.quick-tile,
.bank-card,
.detail-panel,
.summary-panel,
.table-card,
.panel-form,
.auth-card,
.conversation,
.ticket-list,
.dashboard-panel,
.admin-chart-card,
.admin-pipeline,
.admin-module-card,
.testimonial-card,
.market-filter-shell {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .075), rgba(255, 255, 255, .025)),
        var(--surface);
    box-shadow: var(--shadow-soft);
}

.advantage-card,
.testimonial-card,
.admin-module-card,
.category-tile,
.quick-tile,
.stat-card {
    position: relative;
    overflow: hidden;
    padding: 20px;
}

.advantage-card::before,
.testimonial-card::before,
.admin-module-card::before,
.category-tile::before,
.quick-tile::before,
.stat-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, var(--red), var(--amber));
}

.advantage-card strong,
.testimonial-card strong,
.category-tile strong,
.quick-tile strong,
.admin-module-card strong {
    display: block;
    color: #ffffff;
    font-size: 18px;
    font-weight: 950;
}

.advantage-card p,
.testimonial-card p,
.category-tile span,
.quick-tile span,
.admin-module-card span,
.content-card p {
    margin: 8px 0 0;
    color: var(--muted);
}

.product-card,
.content-card {
    overflow: hidden;
    transition: transform .20s ease, border-color .20s ease, box-shadow .20s ease;
}

.product-card:hover,
.content-card:hover,
.advantage-card:hover,
.admin-module-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 70, 85, .34);
    box-shadow: 0 26px 70px rgba(0, 0, 0, .38);
}

.product-media-wrap,
.product-media {
    position: relative;
}

.product-media {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #111722;
}

.product-media img,
.content-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .36s ease;
}

.product-card:hover .product-media img,
.content-card:hover img {
    transform: scale(1.05);
}

.product-media::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 48%;
    background: linear-gradient(0deg, rgba(0, 0, 0, .80), transparent);
}

.rank-badge,
.delivery-badge,
.favorite-btn {
    position: absolute;
    z-index: 2;
    border-radius: var(--radius);
}

.rank-badge,
.delivery-badge {
    left: 12px;
    min-height: 30px;
    padding: 6px 10px;
    border: 1px solid rgba(255, 255, 255, .18);
    color: #ffffff;
    font-size: 12px;
    font-weight: 950;
}

.rank-badge {
    top: 12px;
    background: rgba(255, 70, 85, .92);
}

.delivery-badge {
    bottom: 12px;
    background: rgba(8, 10, 15, .74);
    backdrop-filter: blur(10px);
}

.favorite-btn {
    right: 12px;
    top: 12px;
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, .18);
    background: rgba(8, 10, 15, .70);
    color: #ffffff;
    cursor: pointer;
    transition: background .18s ease, transform .18s ease;
}

.favorite-btn:hover {
    background: var(--red);
    transform: translateY(-2px);
}

.product-info,
.content-card {
    padding: 18px;
}

.seller-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 8px;
}

.seller-line a {
    color: #ffffff;
    font-size: 13px;
    font-weight: 950;
}

.seller-line strong {
    color: #ffffff;
    font-size: 13px;
    font-weight: 950;
}

.seller-line span {
    color: var(--muted);
    font-size: 12px;
    font-weight: 850;
}

.product-info h3,
.content-card h3 {
    min-height: 46px;
    margin: 6px 0 14px;
    color: #ffffff;
    font-size: 18px;
    line-height: 1.2;
    letter-spacing: 0;
}

.listing-specs,
.detail-specs,
.seller-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    margin: 14px 0;
}

.detail-specs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.listing-specs span,
.detail-specs span,
.seller-stats span {
    min-height: 48px;
    padding: 9px;
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .045);
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
}

.listing-specs strong,
.detail-specs strong,
.seller-stats strong {
    display: block;
    color: #ffffff;
    font-size: 16px;
}

.feature-chips,
.trust-badges,
.detail-trust-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.feature-chips span {
    min-height: 28px;
    padding: 5px 8px;
    border: 1px solid rgba(110, 168, 255, .28);
    border-radius: var(--radius);
    background: rgba(110, 168, 255, .08);
    color: #dce9ff;
    font-size: 12px;
    font-weight: 850;
}

.product-meta {
    margin: 15px 0;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.product-meta strong,
.summary-total strong,
.price-line strong {
    color: var(--amber);
}

.product-meta span {
    min-height: 28px;
    padding: 4px 8px;
    border: 1px solid rgba(102, 228, 166, .28);
    border-radius: var(--radius);
    background: rgba(102, 228, 166, .08);
    color: #d7ffe9;
    font-size: 12px;
    font-weight: 900;
}

.trust-band,
.security-section,
.seller-cta,
.listing-hero,
.dashboard-hero,
.seller-profile,
.market-panel,
.admin-hero {
    display: grid;
    gap: 24px;
    margin-top: 28px;
    padding: 28px;
    border: 1px solid var(--line-strong);
    border-radius: var(--radius);
    background:
        linear-gradient(135deg, rgba(255, 70, 85, .13), transparent 44%),
        linear-gradient(180deg, rgba(255, 255, 255, .075), rgba(255, 255, 255, .024)),
        rgba(15, 19, 28, .94);
    box-shadow: var(--shadow-soft);
}

.trust-band,
.security-section,
.seller-cta {
    grid-template-columns: minmax(0, 1fr) minmax(320px, .86fr);
    align-items: center;
    margin-top: 46px;
}

.trust-band h2,
.security-section h2,
.seller-cta h2,
.dashboard-hero h1,
.seller-profile h1,
.listing-hero h1,
.admin-hero h1 {
    margin: 4px 0 8px;
    color: #ffffff;
    line-height: 1.06;
    letter-spacing: 0;
}

.trust-band h2,
.security-section h2,
.seller-cta h2,
.admin-hero h1 {
    font-size: 36px;
}

.trust-band p,
.security-section p,
.seller-cta p,
.dashboard-hero p,
.seller-profile p,
.listing-hero p,
.admin-hero p {
    max-width: 74ch;
    margin: 0;
    color: var(--text-soft);
}

.trust-grid,
.security-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.security-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.trust-grid span,
.security-grid article {
    display: grid;
    gap: 5px;
    min-height: 94px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .045);
}

.trust-grid strong,
.security-grid strong {
    color: #ffffff;
    font-size: 18px;
}

.security-grid span {
    color: var(--muted);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.step-card,
.faq-grid details {
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .045);
    box-shadow: var(--shadow-soft);
}

.step-card span {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: var(--radius);
    background: var(--red);
    color: #ffffff;
    font-weight: 950;
}

.step-card h3 {
    margin: 16px 0 6px;
    color: #ffffff;
}

.step-card p,
.faq-grid p {
    margin: 0;
    color: var(--muted);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.faq-grid summary {
    cursor: pointer;
    color: #ffffff;
    font-weight: 950;
}

.faq-grid p {
    margin-top: 10px;
}

.listing-hero {
    grid-template-columns: minmax(0, 1fr) 190px;
    align-items: center;
    margin-top: 0;
}

.listing-hero h1 {
    font-size: 48px;
}

.listing-hero-card {
    display: grid;
    place-items: center;
    min-height: 150px;
    border: 1px solid rgba(255, 70, 85, .28);
    border-radius: var(--radius);
    background: rgba(255, 70, 85, .08);
}

.listing-hero-card strong {
    color: #ffffff;
    font-size: 48px;
    line-height: 1;
}

.listing-hero-card span {
    color: var(--muted);
    font-weight: 900;
}

.marketplace-layout {
    display: grid;
    grid-template-columns: 310px minmax(0, 1fr);
    gap: 20px;
    align-items: start;
    margin-top: 20px;
}

.market-filter-shell {
    position: sticky;
    top: 104px;
    padding: 18px;
}

.filter-heading {
    display: grid;
    gap: 2px;
    margin-bottom: 14px;
}

.filter-heading strong {
    color: #ffffff;
    font-size: 18px;
}

.market-filter {
    display: grid;
    gap: 12px;
}

.market-results {
    min-width: 0;
}

.result-toolbar {
    min-height: 54px;
    margin-bottom: 14px;
    padding: 10px 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .045);
}

.store-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    min-height: 58px;
    margin: 20px 0 16px;
    padding: 12px 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .045);
}

.store-toolbar span {
    color: var(--text-soft);
    font-weight: 900;
}

.detail-layout,
.checkout-layout,
.form-layout,
.support-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.16fr) minmax(360px, .84fr);
    gap: 22px;
    align-items: start;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.gallery img,
.media-grid img,
.media-grid video {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface-2);
    cursor: zoom-in;
}

.detail-media-zone {
    display: grid;
    gap: 14px;
}

.detail-trust-row span,
.trust-badges span {
    min-height: 38px;
    padding: 8px 10px;
    color: #eff5ff;
    font-size: 12px;
}

.detail-panel,
.summary-panel {
    padding: 22px;
}

.detail-panel.wide {
    max-width: 960px;
    margin: 0 auto;
}

.purchase-panel {
    position: sticky;
    top: 104px;
    display: grid;
    gap: 14px;
    overflow: hidden;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .035)),
        rgba(16, 21, 30, .94);
    box-shadow: 0 24px 70px rgba(0, 0, 0, .34);
}

.purchase-panel h1 {
    margin: 0;
    font-size: clamp(28px, 3vw, 44px);
    line-height: 1.02;
}

.purchase-panel > p {
    margin: 0;
    color: var(--text-soft);
}

.seller-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px;
    border: 1px solid rgba(255, 70, 85, .26);
    border-radius: var(--radius);
    background: rgba(255, 70, 85, .07);
}

.seller-card > span,
.seller-avatar {
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    flex: 0 0 54px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: var(--radius);
    background: linear-gradient(135deg, var(--red), #27303d);
    color: #ffffff;
    font-weight: 950;
}

.seller-card strong {
    display: block;
    color: #ffffff;
}

.seller-card small {
    color: var(--muted);
    line-height: 1.42;
}

.whatsapp-contact-card,
.whatsapp-support-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 15px;
    border: 1px solid rgba(37, 211, 102, .24);
    border-radius: var(--radius);
    background:
        radial-gradient(circle at 12% 18%, rgba(37, 211, 102, .16), transparent 36%),
        rgba(37, 211, 102, .055);
}

.whatsapp-contact-card strong,
.whatsapp-support-card strong {
    display: block;
    color: #eafff2;
}

.whatsapp-contact-card span,
.whatsapp-support-card p {
    margin: 4px 0 0;
    color: var(--text-soft);
}

.price-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin: 0;
    padding: 17px 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .075), rgba(255, 255, 255, .035)),
        rgba(255, 255, 255, .045);
}

.price-line strong {
    font-size: 26px;
}

.secure-note {
    margin: 0;
    padding: 15px;
    border: 1px solid rgba(102, 228, 166, .30);
    border-radius: var(--radius);
    background: rgba(102, 228, 166, .07);
}

.secure-note strong {
    color: #dcffe9;
}

.secure-note p {
    margin: 5px 0 0;
    color: var(--text-soft);
}

.secondary-actions {
    margin-top: 0;
}

.purchase-panel .detail-specs {
    margin: 0;
}

.purchase-panel .detail-specs span {
    min-height: 62px;
    display: grid;
    align-content: center;
}

.purchase-panel .detail-features {
    margin: 0;
}

.purchase-panel .trust-badges {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.purchase-panel .trust-badges span {
    display: grid;
    place-items: center;
    min-height: 42px;
    text-align: center;
}

.purchase-panel .stack-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.purchase-panel .stack-actions form,
.favorite-form {
    min-width: 0;
}

.favorite-form {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 3;
}

.favorite-form .favorite-btn {
    position: static;
}

.favorite-form .favorite-btn.active {
    color: #fff;
    border-color: rgba(255, 70, 85, .55);
    background: rgba(255, 70, 85, .32);
}

.seller-profile {
    grid-template-columns: auto minmax(0, 1fr) 310px;
    align-items: center;
}

.seller-avatar {
    width: 108px;
    height: 108px;
    font-size: 28px;
}

.seller-profile-panel {
    display: grid;
    gap: 9px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .045);
}

.email-settings-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
    gap: 18px;
    align-items: start;
}

.review-carousel {
    position: relative;
    margin-top: -6px;
    margin-bottom: 34px;
}

.review-all-section {
    display: grid;
    gap: 18px;
    margin: 0 0 34px;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, .11);
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at 12% 18%, rgba(255, 70, 85, .12), transparent 30%),
        linear-gradient(135deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .025));
    box-shadow: var(--shadow);
}

.review-all-copy {
    display: grid;
    gap: 8px;
}

.review-all-copy h2 {
    margin: 0;
    color: #ffffff;
    font-size: 32px;
    line-height: 1.02;
}

.review-all-copy p {
    margin: 0;
    max-width: 72ch;
    color: var(--muted);
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.review-card {
    display: grid;
    align-content: start;
    gap: 16px;
    min-height: 100%;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .05);
    color: rgba(255, 255, 255, .82);
    box-shadow: 0 16px 42px rgba(0, 0, 0, .18);
}

.review-card p {
    margin: 0;
    color: rgba(255, 255, 255, .82);
    font-size: 16px;
    line-height: 1.55;
}

.review-card span {
    color: rgba(255, 255, 255, .62);
    font-size: 12px;
    font-weight: 850;
}

.quote-rail.review-page-rail {
    display: flex;
    flex-direction: row;
    gap: 16px;
    width: 100%;
    max-width: 100%;
    padding: 6px 58px 18px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    animation: none;
    scrollbar-width: none;
}

.quote-rail.review-page-rail::-webkit-scrollbar {
    display: none;
}

.quote-rail.review-page-rail .review-quote {
    flex: 0 0 clamp(310px, 34vw, 440px);
    width: auto;
    min-height: 212px;
    scroll-snap-align: start;
}

.review-arrow {
    position: absolute;
    top: 50%;
    z-index: 3;
    display: inline-grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 12px;
    background:
        linear-gradient(145deg, rgba(255, 70, 85, .24), rgba(255, 255, 255, .07)),
        rgba(9, 11, 18, .88);
    color: #ffffff;
    box-shadow: 0 18px 44px rgba(0, 0, 0, .35), 0 0 24px rgba(255, 70, 85, .16);
    cursor: pointer;
    font-size: 34px;
    font-weight: 900;
    line-height: 1;
    transform: translateY(-50%);
    transition: transform .2s ease, border-color .2s ease, background .2s ease, opacity .2s ease;
}

.review-arrow:hover {
    border-color: rgba(255, 70, 85, .72);
    background:
        linear-gradient(145deg, rgba(255, 70, 85, .34), rgba(255, 255, 255, .10)),
        rgba(13, 15, 24, .95);
    transform: translateY(-50%) scale(1.05);
}

.review-arrow:disabled {
    opacity: .35;
    cursor: default;
    pointer-events: none;
}

.review-arrow.is-disabled {
    opacity: .36;
    cursor: default;
}

.review-arrow-left {
    left: 0;
}

.review-arrow-right {
    right: 0;
}

.review-submit-section {
    display: grid;
    grid-template-columns: minmax(0, .88fr) minmax(320px, .72fr);
    gap: 18px;
    align-items: start;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, .11);
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at 14% 20%, rgba(255, 70, 85, .15), transparent 30%),
        linear-gradient(135deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .025));
    box-shadow: var(--shadow);
}

.review-submit-copy {
    display: grid;
    gap: 12px;
    align-content: center;
    min-height: 100%;
}

.review-submit-copy h2 {
    max-width: 620px;
    margin: 0;
    color: #ffffff;
    font-size: clamp(28px, 4vw, 54px);
    line-height: .98;
}

.review-submit-copy p {
    max-width: 560px;
    margin: 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.7;
}

.test-mail-card {
    position: sticky;
    top: 104px;
}

.review-submit-panel {
    position: static;
    align-self: stretch;
}

.email-settings-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.email-settings-grid .detail-panel {
    display: grid;
    gap: 12px;
}

.test-mail-card {
    margin-top: 18px;
}

.settings-hint {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    padding: 14px;
    border: 1px solid rgba(110, 168, 255, .25);
    border-radius: var(--radius);
    background: rgba(110, 168, 255, .07);
}

.settings-hint span,
.muted-link {
    color: var(--muted);
}

.muted-link {
    font-weight: 800;
}

.seller-profile-panel strong {
    color: #ffffff;
}

.seller-profile-panel span {
    color: var(--text-soft);
}

.dashboard-hero {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    margin-top: 0;
}

.account-buy-hero {
    position: relative;
    overflow: hidden;
    min-height: 360px;
    display: grid;
    align-items: end;
    margin-bottom: 22px;
    padding: 34px;
    border: 1px solid var(--line-strong);
    border-radius: var(--radius);
    background:
        linear-gradient(135deg, rgba(255, 70, 85, .20), transparent 42%),
        linear-gradient(245deg, rgba(110, 168, 255, .12), transparent 34%),
        rgba(13, 17, 26, .94);
    box-shadow: var(--shadow);
}

.account-buy-hero h1 {
    max-width: 720px;
    margin: 4px 0 10px;
    color: #ffffff;
    font-size: 54px;
    line-height: 1;
    letter-spacing: 0;
}

.account-buy-hero p {
    max-width: 720px;
    margin: 0;
    color: var(--text-soft);
    font-size: 18px;
}

.account-buy-form {
    width: min(980px, 100%);
    margin: 0 auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.account-buy-form label {
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .035);
}

.account-buy-form small {
    color: var(--muted);
    font-weight: 700;
}

.zorunlu {
    color: var(--red);
    font-weight: 950;
}

.dashboard-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 20px;
    margin-top: 20px;
}

.dashboard-main,
.dashboard-side {
    display: grid;
    gap: 18px;
    align-content: start;
}

.dashboard-panel {
    padding: 18px;
}

.panel-title {
    margin-bottom: 14px;
}

.panel-title strong,
.panel-title a {
    color: #ffffff;
    font-weight: 950;
}

.dashboard-row {
    min-height: 48px;
    padding: 11px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.dashboard-row:last-child {
    border-bottom: 0;
}

.dashboard-row span {
    color: var(--text-soft);
}

.dashboard-row strong {
    color: #ffffff;
}

.profile-mini {
    display: grid;
    gap: 8px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .045);
}

.profile-avatar,
.review-avatar,
.table-avatar {
    display: grid;
    place-items: center;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: var(--radius);
    background:
        linear-gradient(135deg, rgba(255, 70, 85, .45), rgba(255, 255, 255, .06)),
        #151a23;
    color: #ffffff;
    font-weight: 950;
    object-fit: cover;
}

.profile-avatar {
    width: 68px;
    height: 68px;
    font-size: 24px;
}

.profile-avatar.large {
    width: 96px;
    height: 96px;
    font-size: 34px;
}

.review-avatar,
.table-avatar {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    font-size: 16px;
}

.table-avatar {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
    font-size: 13px;
}

.profile-photo-field {
    display: grid;
    gap: 14px;
    align-items: center;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .04);
}

.profile-mini strong {
    color: #ffffff;
    font-size: 20px;
}

.profile-mini span {
    color: var(--muted);
}

.profile-mini code,
.bank-card code,
.invite-link {
    display: block;
    overflow-wrap: anywhere;
    padding: 11px;
    border: 1px solid rgba(245, 196, 81, .28);
    border-radius: var(--radius);
    background: rgba(245, 196, 81, .08);
    color: #ffe4a0;
}

.dashboard-modules {
    grid-template-columns: 1fr;
}

.seller-dashboard-grid {
    margin-top: 20px;
}

.chart-bars {
    display: flex;
    align-items: end;
    gap: 10px;
    height: 190px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: var(--radius);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, .015)),
        rgba(0, 0, 0, .12);
}

.chart-bars span {
    flex: 1;
    height: var(--h);
    min-height: 18px;
    border-radius: 6px 6px 2px 2px;
    background: linear-gradient(180deg, var(--red), var(--amber));
    animation: barRise .8s ease both;
}

.bank-list {
    display: grid;
    gap: 14px;
}

.bank-card {
    display: grid;
    gap: 8px;
    padding: 18px;
}

.bank-card strong {
    color: #ffffff;
    font-size: 18px;
}

.bank-card span,
.bank-card small {
    color: var(--muted);
}

.summary-panel {
    position: sticky;
    top: 104px;
}

.summary-line,
.summary-total {
    padding: 13px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.summary-total {
    margin-bottom: 14px;
    border-bottom: 0;
    font-size: 20px;
}

.inline-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    margin-bottom: 15px;
}

.panel-form,
.auth-card {
    display: grid;
    gap: 15px;
    padding: 22px;
}

.panel-form.narrow,
.auth-card {
    width: min(560px, 100%);
    margin: 0 auto;
}

.auth-card {
    margin-top: 70px;
    padding: 32px;
}

.auth-card h1 {
    margin: 4px 0;
    color: #ffffff;
    font-size: 36px;
}

.grid-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.full-span {
    grid-column: 1 / -1;
}

label {
    display: grid;
    gap: 7px;
    color: #e9eef6;
    font-weight: 850;
}

.upload-note {
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.45;
}

input,
textarea,
select {
    width: 100%;
    min-height: 44px;
    padding: 10px 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(6, 8, 12, .88);
    color: var(--text);
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: rgba(255, 70, 85, .72);
    box-shadow: 0 0 0 3px rgba(255, 70, 85, .14);
}

.password-wrap {
    position: relative;
    display: block;
}

.password-wrap input {
    padding-right: 78px;
}

.password-toggle {
    position: absolute;
    right: 7px;
    top: 50%;
    min-height: 32px;
    padding: 6px 10px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .08);
    color: #ffffff;
    font-size: 12px;
    font-weight: 950;
    cursor: pointer;
    transform: translateY(-50%);
}

textarea {
    resize: vertical;
}

.check-row {
    display: flex;
    align-items: center;
    gap: 9px;
}

.check-row input {
    width: 18px;
    min-height: 18px;
}

.table-card {
    overflow: hidden;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th,
td {
    padding: 14px 15px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    text-align: left;
    vertical-align: middle;
}

th {
    color: #ffffff;
    background: rgba(255, 255, 255, .065);
    font-size: 12px;
    font-weight: 950;
    text-transform: uppercase;
}

td {
    color: #e1e8f0;
}

tr:hover td {
    background: rgba(255, 255, 255, .024);
}

.row-actions,
.row-actions form {
    align-items: center;
}

.row-actions form {
    display: inline-flex;
    gap: 8px;
}

.mini-edit {
    display: grid !important;
    grid-template-columns: repeat(5, minmax(96px, 1fr));
    gap: 8px;
    min-width: min(700px, 100%);
}

.mini-edit input,
.mini-edit select {
    min-height: 36px;
    padding: 7px 8px;
}

.status-pill {
    display: inline-flex;
    align-items: center;
    min-height: 27px;
    padding: 4px 9px;
    border: 1px solid rgba(110, 168, 255, .34);
    border-radius: var(--radius);
    background: rgba(110, 168, 255, .11);
    color: #deebff;
    font-size: 12px;
    font-weight: 950;
}

.status-pill.success,
.status-pill.approved,
.status-pill.completed {
    border-color: rgba(102, 228, 166, .34);
    background: rgba(102, 228, 166, .11);
    color: #d9ffe9;
}

.status-pill.rejected,
.status-pill.danger {
    border-color: rgba(255, 102, 112, .38);
    background: rgba(255, 102, 112, .13);
    color: #ffe0e4;
}

.empty-state {
    min-height: 280px;
    display: grid;
    place-items: center;
    gap: 10px;
    padding: 36px;
    border: 1px dashed var(--line-strong);
    border-radius: var(--radius);
    background: rgba(18, 23, 32, .70);
    text-align: center;
}

.empty-state h1,
.empty-state h2 {
    margin: 0;
    color: #ffffff;
}

.delivery-box {
    overflow-wrap: anywhere;
    white-space: pre-wrap;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(6, 8, 12, .88);
    color: #e7fff2;
}

.support-layout {
    grid-template-columns: 370px minmax(0, 1fr);
}

.whatsapp-support-card {
    margin: -4px 0 18px;
}

.ticket-list,
.conversation {
    padding: 16px;
}

.ticket-list {
    display: grid;
    gap: 10px;
}

.ticket-item {
    display: grid;
    gap: 4px;
    padding: 13px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .045);
}

.ticket-item.active {
    border-color: rgba(255, 70, 85, .36);
    background: rgba(255, 70, 85, .12);
}

.ticket-item small {
    color: rgba(255, 255, 255, .68);
}

.live-install-hint {
    margin-bottom: 18px;
}

.live-install-hint small {
    color: var(--amber);
    font-weight: 850;
}

.ticket-item span,
.message small {
    color: var(--muted);
}

.message {
    width: min(760px, 100%);
    margin: 0 0 12px;
    padding: 13px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .045);
}

.admin-message {
    margin-left: auto;
    border-color: rgba(102, 228, 166, .28);
    background: rgba(102, 228, 166, .08);
}

.message p {
    margin: 6px 0;
}

.media-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 16px 0;
}

.article {
    width: min(900px, 100%);
    margin: 0 auto;
    padding-bottom: 44px;
}

.article > img,
.content-card img {
    width: 100%;
    aspect-ratio: 16 / 7;
    object-fit: cover;
    margin-bottom: 20px;
    border-radius: var(--radius);
}

.content-card img {
    aspect-ratio: 16 / 10;
    margin: -18px -18px 16px;
    width: calc(100% + 36px);
    max-width: none;
}

.article h1 {
    color: #ffffff;
    font-size: 48px;
    line-height: 1.04;
    letter-spacing: 0;
}

.toast-root {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 120;
    display: grid;
    gap: 10px;
    width: min(390px, calc(100% - 36px));
}

.toast {
    padding: 15px 16px;
    border: 1px solid rgba(102, 228, 166, .38);
    border-radius: var(--radius);
    background: rgba(18, 23, 32, .98);
    color: var(--text);
    box-shadow: var(--shadow);
    animation: toastIn .24s ease both;
}

.toast.error {
    border-color: rgba(255, 102, 112, .5);
}

.confirm-modal,
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 130;
    display: grid;
    place-items: center;
    padding: 18px;
    background: rgba(0, 0, 0, .76);
    animation: fadeIn .18s ease both;
}

.confirm-modal[hidden],
.lightbox[hidden] {
    display: none;
}

.modal-panel {
    width: min(440px, 100%);
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface-2);
    box-shadow: var(--shadow);
    animation: modalIn .22s ease both;
}

.modal-panel h3 {
    margin-top: 0;
}

.lightbox img {
    max-width: min(1120px, 96vw);
    max-height: 86vh;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.lightbox button {
    position: fixed;
    top: 18px;
    right: 22px;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line-strong);
    border-radius: var(--radius);
    background: rgba(18, 23, 32, .94);
    color: var(--text);
    font-size: 26px;
    cursor: pointer;
}

.site-footer {
    width: min(1280px, calc(100% - 42px));
    margin: 0 auto 24px;
    display: grid;
    grid-template-columns: minmax(260px, 1fr) minmax(220px, auto) minmax(220px, .7fr);
    align-items: start;
    justify-content: space-between;
    gap: 18px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(18, 23, 32, .86);
}

.site-footer strong {
    color: #ffffff;
    font-size: 18px;
}

.site-footer p {
    margin: 5px 0 0;
    color: var(--muted);
}

.site-footer nav {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.site-footer a {
    color: var(--text-soft);
    font-weight: 850;
}

.site-footer .footer-whatsapp {
    color: #9dffc2;
}

.site-footer .footer-instagram {
    color: #ff9ac7;
}

.footer-pages {
    display: grid !important;
    gap: 10px;
    justify-items: end;
}

.footer-pages strong {
    color: #ffffff;
    font-size: 13px;
    letter-spacing: 0;
    text-transform: uppercase;
}

.footer-pages div {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px 14px;
}

.scroll-top-float {
    position: fixed;
    right: 22px;
    z-index: 45;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-weight: 950;
    transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease;
}

.scroll-top-float:hover {
    transform: translateY(-3px);
}

.scroll-top-float {
    bottom: 84px;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, .16);
    background: rgba(18, 23, 32, .94);
    color: #ffffff;
    opacity: 0;
    pointer-events: none;
    box-shadow: 0 18px 44px rgba(0, 0, 0, .32);
    cursor: pointer;
}

.scroll-top-float.visible {
    opacity: 1;
    pointer-events: auto;
}

/* Admin */
.admin-mode .app-loader {
    background: #07080c;
}

.admin-mode .topbar {
    display: none;
}

.admin-shell {
    width: 100%;
    min-height: 100vh;
    display: grid;
    grid-template-columns: var(--sidebar) minmax(0, 1fr);
}

.admin-sidebar {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: auto;
    padding: 22px 14px;
    border-right: 1px solid var(--line);
    background:
        linear-gradient(180deg, rgba(255, 70, 85, .10), transparent 24%),
        rgba(13, 16, 23, .96);
    box-shadow: 22px 0 56px rgba(0, 0, 0, .32);
}

.admin-sidebar::before {
    content: none !important;
    display: none !important;
}

.admin-sidebar a {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 44px;
    margin-bottom: 6px;
    padding: 8px 10px;
    border: 1px solid transparent;
    border-radius: var(--radius);
    color: #cad3df;
    font-weight: 850;
    transition: background .18s ease, color .18s ease, transform .18s ease;
}

.admin-sidebar .admin-brand-link {
    justify-content: flex-start;
    min-height: 54px;
    margin: 0 0 18px;
    padding: 8px 10px 18px;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    color: #ffffff;
    font-size: 18px;
    font-weight: 950;
    letter-spacing: 0;
}

.admin-sidebar .admin-brand-link::before {
    display: none;
}

.admin-sidebar .admin-brand-link:hover {
    color: #ffffff;
    background: transparent;
    transform: none;
}

.admin-sidebar a::before {
    content: "";
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background:
        var(--admin-icon, url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 7h16M4 12h16M4 17h16'/%3E%3C/svg%3E")) center / 17px 17px no-repeat,
        rgba(255, 255, 255, .055);
}

.admin-sidebar a[href="/admin"] { --admin-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 13h8V3H3v10Z'/%3E%3Cpath d='M13 21h8v-8h-8v8Z'/%3E%3Cpath d='M13 3h8v6h-8V3Z'/%3E%3Cpath d='M3 21h8v-4H3v4Z'/%3E%3C/svg%3E"); }
.admin-sidebar a[href="/admin/bankalar"] { --admin-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 10h18L12 4 3 10Z'/%3E%3Cpath d='M5 10v8M9 10v8M15 10v8M19 10v8M3 18h18'/%3E%3C/svg%3E"); }
.admin-sidebar a[href="/admin/kategoriler"] { --admin-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 4h7v7H4V4ZM13 4h7v7h-7V4ZM4 13h7v7H4v-7ZM13 13h7v7h-7v-7Z'/%3E%3C/svg%3E"); }
.admin-sidebar a[href="/admin/urunler"] { --admin-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 3h12l2 6-8 12L4 9l2-6Z'/%3E%3Cpath d='M4 9h16M9 3l3 18M15 3l-3 18'/%3E%3C/svg%3E"); }
.admin-sidebar a[href="/admin/siparisler"] { --admin-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 2h12v20l-3-2-3 2-3-2-3 2V2Z'/%3E%3Cpath d='M9 7h6M9 11h6M9 15h4'/%3E%3C/svg%3E"); }
.admin-sidebar a[href="/admin/odemeler"] { --admin-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 7h18v10H3V7Z'/%3E%3Cpath d='M7 12h.01M17 12h.01M12 15a3 3 0 1 0 0-6 3 3 0 0 0 0 6Z'/%3E%3C/svg%3E"); }
.admin-sidebar a[href="/admin/komisyon"] { --admin-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 19V5M4 19h16M8 16v-5M12 16V8M16 16v-9M20 16v-3'/%3E%3C/svg%3E"); }
.admin-sidebar a[href="/admin/hesap-basvurulari"] { --admin-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 12a4 4 0 1 0 0-8 4 4 0 0 0 0 8Z'/%3E%3Cpath d='M4 21a8 8 0 0 1 16 0'/%3E%3Cpath d='m16 11 2 2 4-4'/%3E%3C/svg%3E"); }
.admin-sidebar a[href="/admin/kuponlar"] { --admin-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 9V5h4l10 10-4 4L4 9Z'/%3E%3Cpath d='M8 8h.01M15 9l-6 6'/%3E%3C/svg%3E"); }
.admin-sidebar a[href="/admin/degerlendirmeler"] { --admin-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m12 3 2.7 5.5 6 .9-4.4 4.2 1 6-5.3-2.9-5.3 2.9 1-6-4.4-4.2 6-.9L12 3Z'/%3E%3C/svg%3E"); }
.admin-sidebar a[href="/admin/destek"] { --admin-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 12a8 8 0 0 1-8 8H5l-2 2v-8a8 8 0 1 1 18-2Z'/%3E%3Cpath d='M8 10h8M8 14h5'/%3E%3C/svg%3E"); }
.admin-sidebar a[href="/admin/raporlar"],
.admin-sidebar a[href="/admin/analitik"] { --admin-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 19V5M4 19h16M8 15l3-4 3 2 5-7'/%3E%3C/svg%3E"); }
.admin-sidebar a[href="/admin/sikayetler"] { --admin-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3 3 20h18L12 3Z'/%3E%3Cpath d='M12 9v5M12 17h.01'/%3E%3C/svg%3E"); }
.admin-sidebar a[href="/admin/kullanicilar"] { --admin-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M16 11a4 4 0 1 0-8 0'/%3E%3Cpath d='M3 21a7 7 0 0 1 14 0'/%3E%3Cpath d='M17 8a3 3 0 1 1 0 6M19 21a5 5 0 0 0-3-4.6'/%3E%3C/svg%3E"); }
.admin-sidebar a[href="/admin/ban"],
.admin-sidebar a[href="/admin/guvenlik"] { --admin-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3 5 6v5c0 5 3 8 7 10 4-2 7-5 7-10V6l-7-3Z'/%3E%3Cpath d='m9 12 2 2 4-5'/%3E%3C/svg%3E"); }
.admin-sidebar a[href="/admin/bloglar"],
.admin-sidebar a[href="/admin/sayfalar"] { --admin-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 3h9l3 3v15H6V3Z'/%3E%3Cpath d='M14 3v4h4M8 12h8M8 16h8'/%3E%3C/svg%3E"); }
.admin-sidebar a[href="/admin/eposta-ayarlari"] { --admin-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 5h16v14H4V5Z'/%3E%3Cpath d='m4 7 8 6 8-6'/%3E%3Cpath d='M16 16h3M17.5 14.5v3'/%3E%3C/svg%3E"); }
.admin-sidebar a[href="/admin/ayarlar"] { --admin-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 8a4 4 0 1 0 0 8 4 4 0 0 0 0-8Z'/%3E%3Cpath d='M12 2v3M12 19v3M4.9 4.9 7 7M17 17l2.1 2.1M2 12h3M19 12h3M4.9 19.1 7 17M17 7l2.1-2.1'/%3E%3C/svg%3E"); }

.admin-sidebar a:hover,
.admin-sidebar a.active {
    color: #ffffff;
    border-color: rgba(255, 70, 85, .32);
    background: rgba(255, 70, 85, .10);
    transform: translateX(2px);
}

.admin-sidebar a.active::before {
    border-color: rgba(255, 255, 255, .20);
    background:
        var(--admin-icon) center / 17px 17px no-repeat,
        linear-gradient(135deg, var(--red), var(--red-2));
}

.admin-page {
    width: auto;
    min-height: 100vh;
    margin: 0;
    padding: 30px 38px 68px;
}

.admin-hero {
    grid-template-columns: minmax(0, 1fr) 280px;
    align-items: center;
    margin-top: 0;
}

.compact-admin-hero {
    grid-template-columns: 1fr;
}

.admin-health {
    display: grid;
    gap: 8px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .045);
}

.admin-health strong {
    color: #ffffff;
}

.admin-health span {
    color: var(--text-soft);
}

.admin-stat-grid {
    margin-top: 18px;
}

.admin-dashboard-grid {
    margin-top: 18px;
}

.admin-chart-card,
.admin-pipeline {
    padding: 18px;
}

.pipeline-row {
    min-height: 46px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.pipeline-row:last-child {
    border-bottom: 0;
}

.admin-module-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.admin-page .panel-form {
    margin-bottom: 18px;
}

.admin-page .table-card {
    overflow: auto;
}

.admin-page table {
    min-width: 780px;
}

.admin-page .mini-edit {
    grid-template-columns: 120px 190px 100px 110px auto;
    align-items: center;
}

.admin-floating-toggle {
    display: none;
}

.stat-card {
    min-height: 136px;
}

.stat-card span {
    display: block;
    color: var(--muted);
    font-size: 12px;
    font-weight: 950;
    text-transform: uppercase;
}

.stat-card strong {
    display: block;
    margin-top: 13px;
    color: #ffffff;
    font-size: 36px;
    line-height: 1;
}

.skeleton {
    position: relative;
    overflow: hidden;
    min-height: 42px;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .06);
}

.skeleton::after {
    content: "";
    position: absolute;
    inset: 0;
    transform: translateX(-100%);
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .12), transparent);
    animation: shimmer 1.2s ease infinite;
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .56s ease, transform .56s ease;
    transition-delay: var(--delay, 0ms);
}

.reveal.in-view {
    opacity: 1;
    transform: translateY(0);
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes loaderOut {
    to { opacity: 0; visibility: hidden; }
}

@keyframes loadingBar {
    from { transform: translateX(-110%); }
    to { transform: translateX(270%); }
}

@keyframes pageLeave {
    to { opacity: .72; transform: translateY(6px); }
}

@keyframes pulseRing {
    0%, 100% { transform: scale(.92); opacity: .45; }
    50% { transform: scale(1.05); opacity: .92; }
}

@keyframes barRise {
    from { transform: scaleY(.18); transform-origin: bottom; opacity: .46; }
    to { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
}

@keyframes toastIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes modalIn {
    from { opacity: 0; transform: translateY(14px) scale(.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes shimmer {
    to { transform: translateX(100%); }
}

@media (max-width: 1180px) {
    .topbar {
        padding-inline: 20px;
    }

    .hero,
    .trust-band,
    .security-section,
    .seller-cta,
    .listing-hero,
    .dashboard-hero,
    .seller-profile,
    .detail-layout,
    .checkout-layout,
    .form-layout,
    .support-layout,
    .marketplace-layout,
    .dashboard-layout,
    .admin-hero {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: 640px;
        padding: 46px;
    }

    .hero-console,
    .purchase-panel,
    .summary-panel,
    .market-filter-shell {
        position: static;
    }

    .product-grid,
    .advantage-grid,
    .stat-grid,
    .admin-stat-grid,
    .admin-module-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .brand-strip,
    .trust-grid,
    .security-grid,
    .category-grid,
    .content-grid,
    .quick-grid,
    .testimonial-grid,
    .bank-list.wide,
    .media-grid,
    .seller-dashboard-grid,
    .admin-dashboard-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .admin-shell {
        display: block;
    }

    .admin-sidebar {
        position: fixed;
        inset: 0 auto 0 0;
        z-index: 100;
        width: min(320px, 88vw);
        transform: translateX(-100%);
        transition: transform .22s ease;
    }

    .admin-mode.sidebar-open .admin-sidebar {
        transform: translateX(0);
    }

    .admin-page {
        padding: 30px 22px 60px;
    }

    .admin-floating-toggle {
        position: fixed;
        left: 14px;
        top: 14px;
        z-index: 110;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 42px;
        padding: 10px 12px;
        border: 1px solid rgba(255, 70, 85, .36);
        border-radius: var(--radius);
        background: rgba(18, 23, 32, .96);
        color: var(--text);
        font-weight: 950;
        cursor: pointer;
    }
}

@media (max-width: 900px) {
    body {
        font-size: 14px;
    }

    .topbar {
        align-items: flex-start;
        flex-wrap: wrap;
        padding: 14px 70px 14px 14px;
    }

    .nav-toggle,
    .mobile-nav-fab {
        position: fixed;
        top: 18px;
        right: 14px;
        z-index: 90;
        display: inline-grid;
        place-items: center;
        box-shadow: 0 12px 28px rgba(0, 0, 0, .34);
    }

    .mobile-nav-fab {
        z-index: 92;
    }

    .main-nav {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        border: 0;
        padding: 0;
        background: transparent;
    }

    .main-nav.open {
        display: flex;
    }

    .main-nav a,
    .balance-chip {
        width: 100%;
    }

    .page,
    .site-footer {
        width: min(100% - 24px, 1280px);
    }

    .page {
        padding-top: 22px;
    }

    .hero {
        min-height: 560px;
        padding: 24px;
    }

    .hero::before {
        background: linear-gradient(0deg, rgba(5, 6, 10, .98), rgba(5, 6, 10, .58));
    }

    .hero h1 {
        max-width: 100%;
        font-size: 40px;
        line-height: 1.02;
        overflow-wrap: break-word;
    }

    .hero p {
        max-width: 100%;
        font-size: 16px;
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
        white-space: normal;
    }

    .hero-metrics,
    .brand-strip,
    .product-grid,
    .advantage-grid,
    .stat-grid,
    .quick-grid,
    .content-grid,
    .testimonial-grid,
    .category-grid,
    .bank-list.wide,
    .media-grid,
    .gallery,
    .steps-grid,
    .faq-grid,
    .trust-grid,
    .security-grid,
    .listing-specs,
    .detail-specs,
    .seller-stats,
    .admin-stat-grid,
    .admin-module-grid,
    .review-submit-section,
    .email-settings-grid,
    .seller-dashboard-grid,
    .admin-dashboard-grid {
        grid-template-columns: 1fr;
    }

    .review-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .section-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .section-head .review-toggle {
        align-self: flex-start;
    }

    .split-head p {
        margin-left: 0;
    }

    .section-head h1,
    .section-head h2,
    .article h1,
    .listing-hero h1,
    .trust-band h2,
    .security-section h2,
    .seller-cta h2,
    .admin-hero h1 {
        font-size: 30px;
    }

    .trust-band,
    .security-section,
    .seller-cta,
    .listing-hero,
    .dashboard-hero,
    .seller-profile,
    .admin-hero {
        padding: 20px;
    }

    .grid-form {
        grid-template-columns: 1fr;
    }

    .account-buy-form {
        grid-template-columns: 1fr;
    }

    .whatsapp-contact-card,
    .whatsapp-support-card {
        align-items: stretch;
        flex-direction: column;
    }

    .whatsapp-contact-card .btn,
    .whatsapp-support-card .btn {
        width: 100%;
    }

    .purchase-panel .trust-badges,
    .purchase-panel .stack-actions {
        grid-template-columns: 1fr;
    }

    .review-submit-panel,
    .test-mail-card {
        position: static;
    }

    .quote-rail.review-page-rail {
        padding: 4px 44px 16px;
    }

    .quote-rail.review-page-rail .review-quote {
        flex-basis: min(82vw, 390px);
    }

    .review-all-section {
        padding: 18px;
    }

    .review-grid {
        grid-template-columns: 1fr;
    }

    .review-all-copy h2 {
        font-size: 26px;
    }

    .review-arrow {
        width: 38px;
        height: 38px;
        border-radius: 10px;
        font-size: 28px;
    }

    .review-submit-section {
        padding: 18px;
    }

    .review-submit-copy h2 {
        font-size: 28px;
        line-height: 1.06;
    }

    .account-buy-hero {
        min-height: 300px;
        padding: 22px;
    }

    .account-buy-hero h1 {
        font-size: 34px;
    }

    .inline-form {
        grid-template-columns: 1fr;
    }

    .site-footer {
        align-items: flex-start;
        grid-template-columns: 1fr;
    }

    .site-footer nav,
    .footer-pages,
    .footer-pages div {
        justify-content: flex-start;
        justify-items: start;
    }

    table,
    thead,
    tbody,
    tr,
    th,
    td {
        display: block;
    }

    thead {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(0 0 0 0);
    }

    tr {
        padding: 12px;
        border-bottom: 1px solid rgba(255, 255, 255, .10);
    }

    td {
        display: grid;
        grid-template-columns: 116px minmax(0, 1fr);
        gap: 10px;
        padding: 8px 0;
        border-bottom: 0;
        overflow-wrap: anywhere;
    }

    td::before {
        content: attr(data-label);
        color: var(--muted);
        font-weight: 950;
    }

    .row-actions,
    .row-actions form {
        width: 100%;
        align-items: stretch;
    }

    .row-actions .btn,
    .row-actions form {
        width: 100%;
    }

    .mini-edit,
    .admin-page .mini-edit {
        grid-template-columns: 1fr;
        min-width: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}

/* Immersive landing */
.home-mode {
    background:
        linear-gradient(180deg, #04050a 0%, #090b11 42%, #05060a 100%);
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

.home-mode .topbar {
    position: fixed;
    inset: 16px 24px auto;
    width: calc(100% - 48px);
    min-height: 64px;
    padding: 10px 12px 12px 18px;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: var(--radius);
    background: rgba(8, 10, 16, .58);
    backdrop-filter: blur(24px);
    box-shadow: 0 18px 70px rgba(0, 0, 0, .28);
}

.home-mode .brand::before {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .18), transparent),
        linear-gradient(135deg, #ff4655, #65121c);
}

.home-mode .main-nav {
    border-color: rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .035);
}

.home-mode .main-nav a {
    min-height: 36px;
    padding: 8px 12px;
}

.home-mode .topbar-categories {
    padding-top: 2px;
}

.home-mode .landing-section {
    padding-top: 140px;
}

.home-mode .landing-hero {
    padding-top: 176px;
}

.home-mode .page {
    width: 100%;
    padding: 0;
}

.home-mode .site-footer {
    width: 100%;
    margin: 0;
    padding: 26px 7vw;
    border-width: 1px 0 0;
    border-radius: 0;
    background: #05060a;
}

.immersive-home {
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
    background: #05060a;
}

.landing-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    display: grid;
    align-items: center;
    padding: 112px 7vw 72px;
    isolation: isolate;
    width: 100%;
    max-width: 100vw;
}

.landing-section::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255, 255, 255, .024) 1px, transparent 1px);
    background-size: 88px 88px;
    mask-image: linear-gradient(180deg, transparent, rgba(0, 0, 0, .55) 18%, rgba(0, 0, 0, .70) 72%, transparent);
}

.landing-section::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    z-index: -1;
    height: 220px;
    background: linear-gradient(180deg, transparent, #05060a);
    pointer-events: none;
}

.landing-hero {
    min-height: 100vh;
    grid-template-columns: minmax(0, .95fr) minmax(360px, .72fr);
    gap: 64px;
    padding-top: 104px;
}

.landing-hero-image {
    position: absolute;
    inset: 0;
    z-index: -4;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .62;
    filter: saturate(1.12) contrast(1.08);
    transform: scale(1.04);
}

.landing-hero::before {
    background:
        linear-gradient(90deg, rgba(5, 6, 10, .96), rgba(5, 6, 10, .70) 46%, rgba(5, 6, 10, .22)),
        linear-gradient(180deg, rgba(5, 6, 10, .12), #05060a 96%);
}

.motion-field {
    position: absolute;
    inset: 0;
    z-index: -3;
    overflow: hidden;
    pointer-events: none;
    transform: translate3d(calc((var(--mx, .5) - .5) * 18px), calc((var(--my, .5) - .5) * 18px), 0);
}

.field-glow {
    position: absolute;
    width: 62vw;
    height: 34vh;
    transform: translate3d(0, var(--parallax-y, 0), 0) rotate(-18deg);
    opacity: .55;
    filter: blur(18px);
    clip-path: polygon(0 18%, 82% 0, 100% 62%, 14% 100%);
}

.landing-hero-copy[data-parallax],
.hero-orbit[data-parallax] {
    transform: translate3d(0, var(--parallax-y, 0), 0);
}

.field-glow-red {
    left: -16vw;
    top: 14vh;
    background: linear-gradient(90deg, rgba(255, 70, 85, .42), transparent);
}

.field-glow-blue {
    right: -24vw;
    bottom: 12vh;
    background: linear-gradient(90deg, rgba(92, 130, 255, .34), transparent);
}

.field-line {
    position: absolute;
    height: 1px;
    width: 46vw;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .34), transparent);
    opacity: .48;
}

.line-a {
    left: 9vw;
    top: 29vh;
    transform: rotate(-16deg);
}

.line-b {
    right: 6vw;
    bottom: 25vh;
    transform: rotate(12deg);
}

.landing-hero-copy,
.section-copy,
.flow-copy,
.final-cta {
    position: relative;
    z-index: 1;
    max-width: 100%;
}

.landing-kicker {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    margin-bottom: 18px;
    color: #ff5c6a;
    font-size: 12px;
    font-weight: 950;
    text-transform: uppercase;
}

.landing-hero h1,
.section-copy h2,
.flow-copy h2,
.final-cta h2 {
    margin: 0;
    max-width: 980px;
    color: #ffffff;
    font-size: 92px;
    line-height: .94;
    letter-spacing: 0;
    overflow-wrap: break-word;
}

.landing-hero p,
.section-copy p,
.final-cta p {
    max-width: 680px;
    margin: 24px 0 0;
    color: rgba(245, 248, 255, .82);
    font-size: 19px;
    line-height: 1.7;
}

.landing-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    width: 100%;
    margin-top: 34px;
}

.magnetic-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 14px 22px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: var(--radius);
    color: #ffffff;
    font-weight: 950;
    overflow: hidden;
    transition: transform .22s ease, border-color .22s ease, background .22s ease, box-shadow .22s ease;
}

.magnetic-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(110deg, rgba(255, 255, 255, .14), transparent 42%, rgba(255, 255, 255, .08));
    transform: translateX(-100%);
    transition: transform .42s ease;
}

.magnetic-btn:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, .30);
}

.magnetic-btn:hover::before {
    transform: translateX(0);
}

.magnetic-btn.primary {
    background: linear-gradient(135deg, #ff4655, #d7182e);
    box-shadow: 0 24px 70px rgba(255, 70, 85, .28);
}

.magnetic-btn.secondary {
    background: rgba(255, 255, 255, .06);
    backdrop-filter: blur(18px);
}

.hero-orbit {
    position: relative;
    z-index: 1;
    min-height: 540px;
    perspective: 1200px;
}

.orbit-card {
    position: absolute;
    width: 290px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: var(--radius);
    background: rgba(13, 17, 26, .66);
    backdrop-filter: blur(18px);
    box-shadow: 0 36px 120px rgba(0, 0, 0, .48);
    transform-style: preserve-3d;
    transition: transform .18s ease, box-shadow .22s ease;
}

.orbit-card img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: var(--radius);
}

.orbit-card span {
    display: inline-flex;
    margin-top: 12px;
    min-height: 28px;
    padding: 5px 9px;
    border-radius: var(--radius);
    background: rgba(255, 70, 85, .18);
    color: #ffb3bb;
    font-size: 12px;
    font-weight: 950;
}

.orbit-card strong {
    display: block;
    margin-top: 9px;
    color: #ffffff;
    font-size: 18px;
}

.orbit-card small {
    display: block;
    margin-top: 5px;
    color: rgba(255, 255, 255, .68);
}

.orbit-card-1 {
    left: 2%;
    top: 8%;
    transform: rotateY(-14deg) rotateX(6deg);
}

.orbit-card-2 {
    right: 2%;
    top: 27%;
    transform: rotateY(16deg) rotateX(-3deg);
}

.orbit-card-3 {
    left: 18%;
    bottom: 2%;
    transform: rotateY(-8deg) rotateX(10deg);
}

.scroll-cue {
    position: absolute;
    left: 7vw;
    bottom: 28px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, .66);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.scroll-cue span {
    width: 34px;
    height: 1px;
    background: currentColor;
    animation: cueLine 1.4s ease infinite;
}

.trust-os-section {
    grid-template-columns: minmax(0, .72fr) minmax(0, 1fr);
    gap: 70px;
    background:
        linear-gradient(180deg, #05060a, #0b0d15 48%, #05060a);
}

.section-copy h2,
.flow-copy h2,
.final-cta h2 {
    font-size: 70px;
    line-height: .98;
}

.section-copy.centered {
    max-width: 920px;
    margin: 0 auto;
    text-align: center;
}

.section-copy.centered p {
    margin-left: auto;
    margin-right: auto;
}

.trust-stage,
.flow-scenes,
.security-matrix {
    display: grid;
    gap: 16px;
}

.trust-panel,
.flow-scene,
.security-matrix article {
    position: relative;
    overflow: hidden;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--radius);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .10), transparent 52%),
        rgba(255, 255, 255, .045);
    box-shadow: 0 28px 90px rgba(0, 0, 0, .26);
    transform-style: preserve-3d;
    transition: transform .28s ease, border-color .28s ease, background .28s ease;
}

.trust-panel::before,
.flow-scene::before,
.security-matrix article::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, rgba(255, 70, 85, .22), transparent 42%);
    opacity: 0;
    transition: opacity .28s ease;
}

.trust-panel.active,
.flow-scene.active,
.security-matrix article:hover {
    border-color: rgba(255, 70, 85, .42);
    background:
        linear-gradient(135deg, rgba(255, 70, 85, .15), transparent 55%),
        rgba(255, 255, 255, .06);
    transform: translateY(-4px);
}

.trust-panel.active::before,
.flow-scene.active::before,
.security-matrix article:hover::before {
    opacity: 1;
}

.trust-panel span,
.flow-scene span,
.security-matrix span {
    position: relative;
    color: #ff6c78;
    font-size: 13px;
    font-weight: 950;
}

.trust-panel h3,
.flow-scene h3 {
    position: relative;
    margin: 16px 0 10px;
    color: #ffffff;
    font-size: 34px;
    line-height: 1.04;
}

.trust-panel p,
.flow-scene p,
.security-matrix p {
    position: relative;
    margin: 0;
    color: rgba(255, 255, 255, .70);
}

.showcase-section {
    align-content: center;
    background:
        linear-gradient(180deg, #05060a, #090b14 52%, #05060a);
}

.showcase-deck {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    width: min(1180px, 100%);
    margin: 58px auto 0;
    perspective: 1400px;
}

.showcase-card {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: var(--radius);
    background: rgba(13, 17, 26, .66);
    backdrop-filter: blur(20px);
    box-shadow: 0 36px 120px rgba(0, 0, 0, .36);
    transform-style: preserve-3d;
    transition: transform .18s ease, box-shadow .22s ease, border-color .22s ease;
}

.showcase-card:hover {
    border-color: rgba(255, 70, 85, .42);
    box-shadow: 0 42px 130px rgba(255, 70, 85, .16), 0 36px 120px rgba(0, 0, 0, .40);
}

.showcase-art {
    position: relative;
    overflow: hidden;
}

.showcase-art img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.showcase-art span {
    position: absolute;
    left: 14px;
    top: 14px;
    min-height: 30px;
    padding: 6px 10px;
    border-radius: var(--radius);
    background: #ff4655;
    color: #ffffff;
    font-size: 12px;
    font-weight: 950;
}

.showcase-body {
    padding: 20px;
}

.showcase-body strong {
    display: block;
    color: #ffffff;
    font-size: 24px;
    line-height: 1.08;
}

.showcase-body div {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin: 18px 0;
}

.showcase-body div span {
    min-height: 30px;
    padding: 6px 9px;
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: var(--radius);
    color: rgba(255, 255, 255, .78);
    font-size: 12px;
    font-weight: 850;
}

.showcase-body p {
    margin: 0 0 18px;
    color: rgba(255, 255, 255, .66);
}

.showcase-body a,
.showcase-price {
    color: #ffd36a;
    font-size: 20px;
    font-weight: 950;
}

.flow-section {
    grid-template-columns: minmax(0, .66fr) minmax(0, 1fr);
    gap: 70px;
}

.flow-scenes {
    grid-template-columns: 1fr;
}

.seller-layer-section {
    grid-template-columns: minmax(0, .82fr) minmax(360px, .74fr);
    gap: 72px;
}

.seller-mockup {
    position: relative;
    overflow: hidden;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: var(--radius);
    background:
        linear-gradient(135deg, rgba(255, 70, 85, .12), transparent 44%),
        rgba(14, 18, 28, .78);
    backdrop-filter: blur(20px);
    box-shadow: 0 38px 140px rgba(0, 0, 0, .42);
}

.mockup-top,
.mockup-grid {
    display: flex;
    justify-content: space-between;
    gap: 14px;
}

.mockup-top span,
.mockup-grid span {
    color: rgba(255, 255, 255, .62);
    font-size: 12px;
    font-weight: 950;
    text-transform: uppercase;
}

.mockup-top strong,
.mockup-grid strong {
    color: #ffffff;
}

.mockup-value {
    margin: 38px 0 28px;
    color: #ffffff;
    font-size: 74px;
    line-height: .95;
    font-weight: 950;
}

.mockup-bars {
    display: flex;
    align-items: end;
    gap: 10px;
    height: 190px;
    margin: 0 0 24px;
}

.mockup-bars span {
    flex: 1;
    border-radius: var(--radius) var(--radius) 0 0;
    background: linear-gradient(180deg, #ff4655, #6d1220);
}

.mockup-bars span:nth-child(1) { height: 34%; }
.mockup-bars span:nth-child(2) { height: 58%; }
.mockup-bars span:nth-child(3) { height: 44%; }
.mockup-bars span:nth-child(4) { height: 82%; }
.mockup-bars span:nth-child(5) { height: 66%; }

.mockup-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, .10);
}

.security-architecture-section {
    align-content: center;
}

.security-matrix {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    width: min(1160px, 100%);
    margin: 58px auto 0;
}

.security-matrix article {
    min-height: 240px;
}

.security-matrix span {
    display: block;
    color: #ffffff;
    font-size: 22px;
}

.security-matrix p {
    margin-top: 16px;
}

.proof-section {
    align-content: center;
    gap: 60px;
}

.proof-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.proof-metrics div {
    min-height: 280px;
    display: grid;
    align-content: end;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--radius);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .10), transparent),
        rgba(255, 255, 255, .045);
}

.proof-metrics strong {
    color: #ffffff;
    font-size: 86px;
    line-height: .9;
}

.proof-metrics span {
    margin-top: 14px;
    color: rgba(255, 255, 255, .68);
    font-weight: 950;
    text-transform: uppercase;
}

.quote-rail {
    display: flex;
    gap: 16px;
    width: max-content;
    animation: railMove 22s linear infinite;
}

.quote-rail article {
    width: 420px;
    min-height: 132px;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .05);
    color: rgba(255, 255, 255, .82);
    font-size: 18px;
}

.review-quote {
    display: grid;
    align-content: start;
    gap: 16px;
}

.review-head {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-head strong {
    display: block;
    color: #ffffff;
    font-size: 16px;
}

.review-head small,
.review-quote span {
    color: rgba(255, 255, 255, .62);
    font-size: 12px;
    font-weight: 850;
}

.review-quote p {
    margin: 0;
    color: rgba(255, 255, 255, .82);
    font-size: 17px;
    line-height: 1.55;
}

.table-person {
    display: flex;
    align-items: center;
    gap: 10px;
}

.table-person strong,
.table-person small {
    display: block;
}

.table-person small {
    margin-top: 2px;
    color: var(--muted);
}

.final-cta-section {
    place-items: center;
    text-align: center;
    background:
        linear-gradient(135deg, rgba(255, 70, 85, .16), transparent 42%),
        linear-gradient(230deg, rgba(92, 130, 255, .16), transparent 40%),
        #05060a;
}

.final-cta {
    max-width: 980px;
}

.final-cta p,
.final-cta .landing-actions {
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
}

.home-mode .reveal {
    opacity: 0;
    transform: translateY(34px) scale(.985);
    transition: opacity .75s ease, transform .75s ease;
    transition-delay: var(--delay, 0ms);
}

.home-mode .reveal.in-view {
    opacity: 1;
    transform: translateY(0) scale(1);
}

@keyframes cueLine {
    0%, 100% { transform: scaleX(.45); transform-origin: left; opacity: .42; }
    50% { transform: scaleX(1); transform-origin: left; opacity: 1; }
}

@keyframes railMove {
    from { transform: translateX(0); }
    to { transform: translateX(-33%); }
}

@media (max-width: 1180px) {
    .landing-hero,
    .trust-os-section,
    .flow-section,
    .seller-layer-section {
        grid-template-columns: 1fr;
    }

    .landing-hero h1 {
        font-size: 68px;
    }

    .section-copy h2,
    .flow-copy h2,
    .final-cta h2 {
        font-size: 54px;
    }

    .hero-orbit {
        min-height: 380px;
    }

    .orbit-card {
        width: 260px;
    }

    .showcase-deck,
    .security-matrix,
    .proof-metrics {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .home-mode .topbar {
        left: 12px;
        right: auto;
        top: 10px;
        width: calc(100vw - 24px);
        max-width: none;
        padding-right: 58px;
    }

    .home-mode .brand span {
        max-width: 190px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .landing-section {
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: center;
        padding: 96px 22px 58px;
    }

    .landing-hero {
        gap: 30px;
    }

    .landing-hero h1 {
        font-size: clamp(30px, 8.4vw, 34px);
        line-height: 1.02;
        max-width: 100%;
        overflow-wrap: anywhere;
        text-wrap: balance;
    }

    .landing-hero-copy,
    .landing-actions,
    .landing-hero p,
    .landing-hero h1 {
        width: calc(100vw - 44px);
        max-width: calc(100vw - 44px);
    }

    .landing-hero p,
    .section-copy p,
    .final-cta p {
        font-size: 16px;
    }

    .section-copy h2,
    .flow-copy h2,
    .final-cta h2 {
        font-size: 36px;
        line-height: 1.04;
    }

    .landing-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .magnetic-btn {
        width: calc(100vw - 44px);
        max-width: calc(100vw - 44px);
    }

    .hero-orbit {
        align-self: flex-start;
        display: grid;
        gap: 14px;
        width: calc(100vw - 44px);
        max-width: calc(100vw - 44px);
        min-height: 0;
        overflow: hidden;
    }

    .orbit-card {
        position: relative;
        left: auto;
        right: auto;
        top: auto;
        bottom: auto;
        width: calc(100vw - 44px);
        max-width: calc(100vw - 44px);
        transform: none !important;
    }

    .orbit-card-1 {
        left: auto;
        top: auto;
    }

    .orbit-card-2 {
        right: auto;
        top: auto;
    }

    .orbit-card-3 {
        left: auto;
        bottom: auto;
    }

    .trust-panel,
    .flow-scene,
    .security-matrix article,
    .seller-mockup,
    .proof-metrics div {
        padding: 20px;
    }

    .trust-panel h3,
    .flow-scene h3 {
        font-size: 26px;
    }

    .mockup-value,
    .proof-metrics strong {
        font-size: 52px;
    }

    .quote-rail {
        width: 100%;
        flex-direction: column;
        animation: none;
    }

    .quote-rail article {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .topbar {
        position: sticky;
        width: min(calc(100vw - 24px), 366px);
        min-height: 64px;
        margin: 10px 0 0 12px;
        padding: 10px 58px 10px 12px;
        border: 1px solid var(--line);
        border-radius: var(--radius);
    }

    .topbar-main {
        align-items: flex-start;
    }

    .nav-toggle {
        position: absolute;
        top: 10px;
        right: 10px;
        display: inline-grid !important;
    }

    .mobile-nav-fab {
        display: none !important;
    }

    .topbar-categories-shell {
        width: 100%;
    }

    .topbar-categories-toggle {
        width: 100%;
        min-height: 40px;
    }

    .topbar-categories-panel {
        overflow-y: auto;
    }

    .topbar-categories-shell.open .topbar-categories-panel {
        max-height: 260px;
    }

    .topbar-categories-nav {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        gap: 8px;
        overflow: visible;
    }

    .topbar-categories-nav a {
        width: 100%;
        min-height: 42px;
        white-space: normal;
        overflow-wrap: anywhere;
        word-break: break-word;
        justify-content: space-between;
        text-align: left;
        line-height: 1.15;
    }

    .page,
    .site-footer {
        width: min(calc(100vw - 24px), 366px);
        max-width: 366px;
        margin-left: 12px;
        margin-right: 0;
    }

    .account-buy-hero,
    .panel-form,
    .auth-card,
    .detail-panel,
    .table-card,
    .listing-hero,
    .dashboard-hero {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .home-mode .topbar {
        width: min(calc(100vw - 24px), 366px);
    }

    .home-mode .nav-toggle {
        position: absolute;
        top: 10px;
        right: 10px;
        display: inline-grid !important;
    }

    .home-mode .mobile-nav-fab {
        display: none !important;
    }

    .scroll-top-float {
        right: 12px;
        bottom: 70px;
        width: 40px;
        height: 40px;
    }

    .landing-hero-copy,
    .landing-actions,
    .landing-hero p,
    .landing-hero h1,
    .magnetic-btn,
    .hero-orbit,
    .orbit-card {
        width: min(100%, 346px);
        max-width: 346px;
    }
}
