:root {
    --bg-gradient-top: #f6f0ff;
    --bg-gradient-bottom: #ece7ff;
    --card-bg: #ffffff;
    --card-border: rgba(255, 255, 255, 0.7);
    --text-main: #222222;
    --text-muted: #777777;
    --accent: #ff2aa0;
    --accent-soft: #ffe0f3;
    --shadow-soft: 0 18px 45px rgba(23, 15, 51, 0.18);
    --radius-card: 22px;
    --font-main: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
        "Segoe UI", sans-serif;
}

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

body {
    margin: 0;
    font-family: var(--font-main);
    background: radial-gradient(circle at top left, var(--bg-gradient-top), var(--bg-gradient-bottom));
    color: var(--text-main);
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 15% 10%, rgba(255, 0, 255, 0.25), transparent 65%),
        radial-gradient(circle at 85% 90%, rgba(0, 245, 255, 0.25), transparent 60%);
    z-index: -1;
}

/* ---------------- TOPBAR ---------------- */

.brand-logo {
    height: 42px;
    width: auto;
    display: block;
    filter: drop-shadow(0 0 8px rgba(255, 0, 255, 0.7));
}

.topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .6rem 1.2rem;
}

.brand {
    font-weight: 700;
    letter-spacing: 0.03em;
    font-size: 1rem;
    color: #221133;
    text-decoration: none;
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.topbar-link {
    font-size: 0.85rem;
    padding: 6px 10px;
    border-radius: 999px;
    text-decoration: none;
    color: #4b3a63;
    transition: background 0.15s ease, color 0.15s ease, transform 0.1s ease;
}

.topbar-link:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: translateY(-1px);
}

.topbar-link-accent {
    background: var(--accent);
    color: #fff;
    font-weight: 600;
}

.topbar-link-accent:hover {
    background: #ff3fb0;
    color: #fff;
}

.topbar-link-active {
    background: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

/* ---------------- FRONT PAGE SPA ---------------- */

#app {
    min-height: calc(100vh - 52px);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 30px 16px 40px;
}

.market-layout {
    width: 100%;
    max-width: 1200px;
}

.section-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0 0 16px;
}

.section-subtitle {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.seller-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 18px;
}

.seller-card {
    background: var(--card-bg);
    border-radius: var(--radius-card);
    padding: 16px 16px 18px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--card-border);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    backdrop-filter: blur(22px);
}

.seller-card-header {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.seller-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6bcb, #ffda6b);
    margin-right: 10px;
    flex-shrink: 0;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.seller-name {
    font-weight: 600;
    font-size: 0.95rem;
}

.seller-tag {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.seller-meta {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 6px;
}

.seller-footer {
    margin-top: 10px;
    font-size: 0.85rem;
    color: var(--accent);
    font-weight: 600;
}

.section-block {
    margin-bottom: 32px;
}

/* Seller profile badges */
.seller-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
}

.seller-badge {
    display: inline-flex;
    align-items: center;
    padding: 3px 10px;
    border-radius: 999px;
    font-size: 0.75rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #0f172a;
    box-shadow:
        0 0 10px rgba(255, 255, 255, 0.35),
        0 0 25px rgba(168, 85, 247, 0.55);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.seller-badge-premium {
    background: linear-gradient(135deg, #f97316, #facc15);
}

.seller-badge-featured {
    background: linear-gradient(135deg, #22c55e, #a3e635);
}

/* ---------------- BUTTONS ---------------- */

.btn-primary {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 999px;
    background: var(--accent);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background 0.15s ease, transform 0.1s ease;
}

.btn-primary:hover {
    background: #ff3fb0;
    transform: translateY(-1px);
}

.dash-card-actions {
    margin-top: 10px;
}

/* ---------------- AUTH PAGES (login / register) ---------------- */

.auth-body {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 12px;
}

.auth-box {
    width: 100%;
    max-width: 420px;
    background: var(--card-bg);
    border-radius: 20px;
    padding: 22px 22px 24px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--card-border);
}

.auth-box h1 {
    margin: 0 0 10px;
    font-size: 1.3rem;
}

.auth-label {
    display: block;
    margin-top: 12px;
    font-size: 0.9rem;
}

.auth-label input,
.auth-label select {
    width: 100%;
    padding: 8px 10px;
    margin-top: 4px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 0.9rem;
}

.auth-button {
    margin-top: 16px;
    width: 100%;
    padding: 9px 14px;
    border-radius: 999px;
    border: none;
    background: var(--accent);
    color: #fff;
    font-weight: 600;
    cursor: pointer;
}

.auth-button:hover {
    background: #ff3fb0;
}

.auth-footer {
    margin-top: 12px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.auth-footer a {
    color: var(--accent);
    text-decoration: none;
}

.msg {
    margin-top: 12px;
    padding: 10px 12px;
    border-radius: 10px;
    font-size: 0.85rem;
}

.msg.error {
    background: #ffe6ea;
    border: 1px solid #ff9ab2;
    color: #850021;
}

.msg.success {
    background: #e7fff4;
    border: 1px solid #8be3b6;
    color: #005326;
}

/* ---------------- DASHBOARD ---------------- */

.page-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 26px 16px 40px;
}

.dash-hero {
    background: linear-gradient(135deg, #ffffff, #f9f1ff);
    border-radius: 20px;
    padding: 20px 20px 18px;
    border: 1px solid var(--card-border);
    box-shadow: var(--shadow-soft);
    margin-bottom: 24px;
}

.dash-hero h1 {
    margin: 0 0 8px;
    font-size: 1.4rem;
}

.dash-hero-sub {
    margin: 0 0 4px;
    font-size: 0.9rem;
    color: var(--text-main);
}

.dash-hero-sub strong {
    font-weight: 600;
}

.dash-hero-meta {
    margin: 0;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.dash-section {
    margin-top: 24px;
}

.dash-section h2 {
    margin: 0 0 4px;
    font-size: 1.2rem;
}

.dash-section-sub {
    margin: 0 0 18px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.dash-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
}

.dash-card {
    background: var(--card-bg);
    border-radius: 18px;
    padding: 16px 16px 14px;
    border: 1px solid var(--card-border);
    box-shadow: var(--shadow-soft);
    font-size: 0.9rem;
}

.dash-card-wide {
    grid-column: span 2;
}

.dash-card h3 {
    margin: 0 0 6px;
    font-size: 1rem;
}

.dash-card-value {
    margin: 0 0 4px;
    font-size: 1.7rem;
    font-weight: 700;
}

.dash-card-note {
    margin: 2px 0;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.dash-list {
    padding-left: 18px;
    margin: 6px 0;
    font-size: 0.85rem;
    color: var(--text-main);
}

.dash-list li {
    margin-bottom: 3px;
}

/* ---------------- EDITOR PAGE ---------------- */

.editor-page-body {
    background: radial-gradient(circle at top left, var(--bg-gradient-top), var(--bg-gradient-bottom));
    margin: 0;
}

.editor-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 18px 16px 30px;
}

.editor-info {
    background: #ffffff;
    border-radius: 18px;
    padding: 16px 18px;
    border: 1px solid var(--card-border);
    box-shadow: var(--shadow-soft);
    margin-bottom: 18px;
}

.editor-info h1 {
    margin: 0 0 8px;
    font-size: 1.25rem;
}

.editor-info-sub {
    margin: 0 0 4px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.editor-frame-wrap {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--card-border);
    background: #000;
}

.editor-iframe {
    width: 100%;
    min-height: calc(100vh - 210px);
    border: none;
}

/* ---------------- RESPONSIVE ---------------- */

@media (max-width: 600px) {
    #app {
        padding: 18px 12px 30px;
    }

    .topbar-inner {
        padding-inline: 12px;
        gap: 8px;
    }

    .topbar-right {
        gap: 6px;
    }

    .topbar-link {
        padding-inline: 8px;
        font-size: 0.8rem;
    }

    .dash-card-wide {
        grid-column: span 1;
    }

    .editor-iframe {
        min-height: calc(100vh - 230px);
    }
}

/* ---------------- SELLER PROFILE PAGE ---------------- */

.seller-profile-main {
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 40px;
}

.seller-profile-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 20px 20px 22px;
    border: 1px solid var(--card-border);
    box-shadow: var(--shadow-soft);
}

.seller-profile-card h1 {
    margin: 0 0 6px;
    font-size: 1.35rem;
}

.seller-profile-sub {
    margin: 0 0 14px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.seller-profile-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.2fr);
    gap: 20px;
    margin-top: 10px;
}

.seller-profile-left,
.seller-profile-right {
    font-size: 0.9rem;
}

.seller-label {
    display: block;
    margin-top: 10px;
    font-size: 0.85rem;
}

.seller-label input,
.seller-label textarea {
    width: 100%;
    padding: 8px 10px;
    margin-top: 4px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 0.9rem;
    resize: vertical;
}

.seller-profile-right h2 {
    margin: 0 0 4px;
    font-size: 1rem;
}

.seller-photo-note {
    margin: 0 0 10px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.seller-upload-form {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.seller-upload-form input[type="file"] {
    font-size: 0.8rem;
}

.seller-upload-button {
    margin-top: 0;
}

.seller-media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
}

.seller-media-card {
    background: #faf7ff;
    border-radius: 12px;
    border: 1px solid var(--card-border);
    overflow: hidden;
    font-size: 0.8rem;
}

.seller-media-thumb {
    position: relative;
    width: 100%;
    padding-top: 100%;
    overflow: hidden;
}

.seller-media-thumb img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.seller-media-badge {
    position: absolute;
    inset: 8px 8px auto auto;
    background: var(--accent);
    color: #fff;
    border-radius: 999px;
    padding: 3px 8px;
    font-size: 0.7rem;
    font-weight: 600;
}

.seller-media-actions {
    padding: 6px 6px 8px;
    display: flex;
    justify-content: space-between;
    gap: 4px;
}

.seller-media-btn {
    border: none;
    background: #ffffff;
    border-radius: 999px;
    padding: 4px 8px;
    font-size: 0.75rem;
    cursor: pointer;
    border: 1px solid #ddd;
}

.seller-media-btn:hover {
    background: #f4f0ff;
}

.seller-media-btn-danger {
    border-color: #ff9ab2;
}

/* === Frontpage layout === */

.frontpage-body {
    background: #f5ecff;
}

.frontpage-main {
    max-width: 1100px;
    margin: 40px auto 60px;
    padding: 0 16px;
}

.hero-strip {
    background: linear-gradient(135deg, #ff5bbd, #ff7ad9);
    color: #fff;
    border-radius: 20px;
    padding: 20px 24px;
    box-shadow: 0 18px 45px rgba(248, 24, 148, 0.27);
    margin-bottom: 24px;
}

.hero-strip h1 {
    margin: 0 0 4px;
    font-size: 1.6rem;
}

.hero-strip p {
    margin: 0;
    opacity: 0.95;
}

/* Card container */

.frontpage-card {
    background: #fff;
    border-radius: 20px;
    padding: 18px 20px 20px;
    margin-bottom: 18px;
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.10);
}

.frontpage-card-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 12px;
}

.frontpage-card-header h2 {
    margin: 0;
    font-size: 1.3rem;
}

.frontpage-sub {
    margin: 0;
    font-size: 0.85rem;
    color: #6b7280;
}

/* Category chips */

.category-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.chip {
    border-radius: 999px;
    border: none;
    padding: 6px 12px;
    font-size: 0.85rem;
    background: #f4f4ff;
    color: #4b5563;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease, transform 0.08s ease;
}

.chip:hover {
    transform: translateY(-1px);
}

.chip-active {
    background: #ff4ba3;
    color: #fff;
}

/* Seller grid & cards */

.seller-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
    gap: 12px;
}

.seller-card {
    background: #faf5ff;
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 20px rgba(148, 27, 114, 0.15);
}

.seller-card-image {
    position: relative;
    padding-top: 110%;
    overflow: hidden;
}

.seller-card-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.seller-card-info {
    padding: 8px 10px 10px;
}

.seller-card-name {
    font-weight: 600;
    font-size: 0.95rem;
}

.seller-card-meta {
    font-size: 0.8rem;
    color: #6b7280;
}

/* Badges */

.badge {
    position: absolute;
    top: 8px;
    left: 8px;
    padding: 4px 7px;
    border-radius: 999px;
    font-size: 0.7rem;
    color: #fff;
    font-weight: 600;
}

.badge-premium {
    background: linear-gradient(135deg, #f97316, #facc15);
}

.badge-featured {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    right: 8px;
    left: auto;
}

.grid-empty {
    font-size: 0.9rem;
    color: #6b7280;
}

/* === Openbaar verkopersprofiel === */

.seller-public-main {
    max-width: 1100px;
    margin: 40px auto 60px;
    padding: 0 16px;
}

.seller-public-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 20px 22px 24px;
    box-shadow: 0 20px 42px rgba(15, 23, 42, 0.18);
}

.seller-public-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.2fr);
    gap: 24px;
}

@media (max-width: 900px) {
    .seller-public-layout {
        grid-template-columns: minmax(0, 1fr);
    }
}

.seller-hero-wrapper {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    background: #111827;
    padding-top: 115%;
}

.seller-hero-wrapper img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.seller-hero-badge {
    top: 10px;
    left: 10px;
}

.seller-hero-badge-right {
    top: 10px;
    right: 10px;
}

/* Gallery strip */

.seller-gallery-strip {
    margin-top: 10px;
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
}

.seller-thumb-btn {
    border: none;
    padding: 0;
    background: transparent;
    border-radius: 10px;
    overflow: hidden;
    flex: 0 0 72px;
    height: 72px;
    cursor: pointer;
    position: relative;
    outline: none;
}

.seller-thumb-btn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.seller-thumb-btn::after {
    content: "";
    position: absolute;
    inset: 0;
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.0);
    transition: box-shadow 0.12s ease;
}

.seller-thumb-btn:hover::after {
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.6);
}

.seller-thumb-active::after {
    box-shadow: inset 0 0 0 2px #f472b6;
}

/* Right column */

.seller-public-name {
    margin: 0 0 6px;
    font-size: 1.6rem;
}

.seller-public-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    font-size: 0.9rem;
    color: #6b7280;
}

.seller-public-meta span:nth-child(2n) {
    margin: 0 3px;
}

.seller-public-stats {
    margin-top: 4px;
    font-size: 0.8rem;
    color: #9ca3af;
}

.seller-public-stats span {
    margin-right: 6px;
}

.seller-public-actions {
    margin-top: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.btn-ghost {
    border-radius: 999px;
    border: 1px solid #e5e7eb;
    padding: 7px 14px;
    background: #fff;
    font-size: 0.85rem;
    cursor: pointer;
    text-decoration: none;
    color: #111827;
}

.btn-ghost:hover {
    background: #f9fafb;
}

/* Bio */

.seller-public-bio {
    margin-top: 18px;
}

.seller-public-bio h2 {
    margin: 0 0 4px;
    font-size: 1.1rem;
}

.seller-public-bio p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
    color: #374151;
}

.seller-public-extra-note {
    margin-top: 14px;
    font-size: 0.8rem;
    color: #6b7280;
}

.seller-public-extra-note h3 {
    margin: 0 0 4px;
    font-size: 0.9rem;
}

/* Make seller-card clickable nicely */

.seller-card-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

:root {
    --bg-gradient-top: #050011;
    --bg-gradient-bottom: #050008;
    --card-bg: #080016;
    --card-border: rgba(0, 245, 255, 0.24);
    --text-main: #f9f9ff;
    --text-muted: #9ca3d9;
    --accent: #00f5ff;
    /* neon cyan like logo text */
    --accent-soft: rgba(0, 245, 255, 0.16);
    --shadow-soft: 0 20px 60px rgba(0, 0, 0, 0.9);
}

/* Global body + frontpage background */
body,
.frontpage-body {
    background: radial-gradient(circle at top left, var(--bg-gradient-top), var(--bg-gradient-bottom));
    color: var(--text-main);
}

/* ------------ Topbar / brand ------------ */

.topbar {
    background:
        radial-gradient(circle at top left, rgba(255, 0, 255, 0.28), transparent 55%),
        linear-gradient(to bottom, rgba(3, 0, 20, 0.96), rgba(3, 0, 12, 0.96));
    border-bottom: 1px solid rgba(0, 245, 255, 0.35);
    backdrop-filter: blur(24px);
}

.brand {
    color: #00f5ff;
    text-decoration: none;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-shadow:
        0 0 10px rgba(0, 245, 255, 0.9),
        0 0 24px rgba(255, 0, 255, 0.7);
}

.topbar-link {
    color: var(--text-muted);
}

.topbar-link:hover {
    background: rgba(0, 0, 0, 0.4);
    color: #e5ecff;
}

.topbar-link-accent {
    background: #ff00ff;
    color: #fff;
    font-weight: 600;
    box-shadow: 0 0 14px rgba(255, 0, 255, 0.7);
}

.topbar-link-accent:hover {
    background: #ff33ff;
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.9);
}

/* ------------ Buttons / chips ------------ */

.btn-primary,
.auth-button {
    background: var(--accent);
    color: #050008;
    box-shadow: 0 0 14px rgba(0, 245, 255, 0.8);
    border: none;
}

.btn-primary:hover,
.auth-button:hover {
    background: #4dffff;
    box-shadow: 0 0 20px rgba(0, 245, 255, 1);
    transform: translateY(-1px);
}

.chip {
    background: rgba(10, 5, 35, 0.9);
    color: var(--text-muted);
    border: 1px solid rgba(148, 163, 255, 0.4);
}

.chip-active {
    background: #ff00ff;
    color: #050008;
    box-shadow: 0 0 14px rgba(255, 0, 255, 0.8);
}

/* ------------ Cards / grids ------------ */

.frontpage-card,
.seller-profile-card,
.seller-public-card,
.auth-box,
.dash-card,
.dash-hero,
.editor-info {
    background: radial-gradient(circle at top left, #160035, #050010);
    border-color: var(--card-border);
    box-shadow: var(--shadow-soft);
    color: var(--text-main);
}

.seller-card {
    background: radial-gradient(circle at top left, #190042, #05000f);
    border-radius: 18px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.9);
}

.seller-card-info,
.seller-meta,
.seller-card-meta {
    color: var(--text-muted);
}

/* ------------ Hero strip (frontpage) ------------ */

.hero-strip {
    background: linear-gradient(90deg, #ff00ff, #368dff, #00f5ff);
    box-shadow:
        0 0 25px rgba(255, 0, 255, 0.7),
        0 0 35px rgba(0, 245, 255, 0.7);
    border-radius: 20px;
    color: #ffffff;
}

/* ------------ Badges ------------ */

.badge-premium,
.seller-media-badge,
.seller-hero-badge {
    background: linear-gradient(135deg, #ff00ff, #ff8bff);
    color: #050008;
    box-shadow: 0 0 10px rgba(255, 0, 255, 0.9);
}

.badge-featured,
.seller-hero-badge-right {
    background: linear-gradient(135deg, #00f5ff, #5bffda);
    color: #050008;
    box-shadow: 0 0 10px rgba(0, 245, 255, 0.9);
}

/* ------------ Seller public page / gallery ------------ */

.seller-hero-wrapper {
    background: radial-gradient(circle at center, #12002c, #020008);
}

.seller-public-name {
    color: #e5ecff;
}

.seller-public-meta {
    color: var(--text-muted);
}

.seller-public-bio p {
    color: #d1d5ff;
}

.seller-public-extra-note {
    color: #9ca3d9;
}

/* Ghost buttons on seller profile */
.btn-ghost {
    background: transparent;
    color: #e5ecff;
    border-color: rgba(148, 163, 255, 0.5);
}

.btn-ghost:hover {
    background: rgba(15, 23, 42, 0.8);
}

/* ------------ Auth states / messages ------------ */

.msg.error {
    background: rgba(255, 0, 102, 0.08);
    border-color: rgba(255, 0, 128, 0.7);
    color: #ff9ac6;
}

.msg.success {
    background: rgba(0, 245, 255, 0.08);
    border-color: rgba(0, 245, 255, 0.6);
    color: #a5fff9;
}

/* ------------ Misc layout tweaks for dark mode ------------ */

.seller-media-card {
    background: rgba(10, 5, 35, 0.9);
}

.seller-media-btn {
    background: rgba(8, 0, 24, 0.9);
    color: var(--text-main);
    border-color: rgba(148, 163, 255, 0.5);
}

.seller-media-btn:hover {
    background: rgba(15, 10, 45, 0.95);
}

.seller-media-btn-danger {
    border-color: rgba(255, 0, 128, 0.7);
}

/* Force links to neon accent when important */
a {
    color: var(--accent);
}

a:hover {
    color: #b3ffff;
}

/* ==================================================
   SEXHANDEL Light Neon Theme Update (2025)
   ================================================== */

:root {
    --bg-1: #0f0020;
    /* deep violet */
    --bg-2: #1a0034;
    /* lighter neon purple */
    --bg-3: #23004b;
    /* even brighter panel color */
    --glow-magenta: #ff00ff;
    --glow-cyan: #00f5ff;
    --text-main: #fefaff;
    --text-soft: #d5c8ff;
}

/* Lighter neon background */
body,
.frontpage-body {
    background: linear-gradient(145deg, var(--bg-1), var(--bg-2));
    color: var(--text-main);
}

/* Cards & panels lighter */
.frontpage-card,
.seller-profile-card,
.seller-public-card,
.auth-box,
.dash-card {
    background: linear-gradient(160deg, var(--bg-2), var(--bg-3));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.55);
}

/* Topbar lighter + glossy */
.topbar {
    background: linear-gradient(90deg, #26003b, #330061, #26003b);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.35);
}

/* Category chips */
.chip {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-soft);
    border-color: rgba(255, 255, 255, 0.12);
}

.chip-active {
    background: var(--glow-magenta);
    color: #080010;
}

/* Headings brighter */
.frontpage-section-title,
.seller-public-name {
    color: #ffffff;
    text-shadow: 0 0 12px rgba(0, 245, 255, 0.55);
}

/* Seller cards slightly brighter */
.seller-card {
    background: linear-gradient(160deg, #20003a, #310066);
    border-color: rgba(0, 245, 255, 0.25);
}

/* Glow buttons */
.topbar-link-accent,
.btn-primary,
.auth-button {
    background: var(--glow-magenta);
    color: #fff;
    box-shadow: 0 0 16px rgba(255, 0, 255, 0.8);
}

.topbar-link-accent:hover,
.btn-primary:hover {
    background: #ff33ff;
    box-shadow: 0 0 24px rgba(255, 0, 255, 1);
}

/* Ghost/secondary */
.btn-ghost,
.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text-soft);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.12);
}

/* Hero strip improved */
.hero-strip {
    background: linear-gradient(90deg, #ff00ff, #00f5ff);
    color: #fff;
    border-radius: 18px;
    box-shadow:
        0 0 25px rgba(255, 0, 255, 0.6),
        0 0 35px rgba(0, 245, 255, 0.5);
}

/* Tooltip/soft text */
.seller-meta,
.seller-card-meta,
.frontpage-note,
.seller-public-extra-note {
    color: var(--text-soft);
}

/* =======================================================
   SEXHANDEL.NL – Neon Theme v2 (lighter background)
   Place this at the very END of style.css
   ======================================================= */

:root {
    /* Global palette (lighter neon) */
    --bg-gradient-top: #4b1ca3;
    /* lighter violet */
    --bg-gradient-bottom: #25104f;
    /* deep but not black */
    --card-bg: rgba(43, 13, 102, 0.96);
    /* panel background */
    --card-border: rgba(255, 255, 255, 0.18);
    --text-main: #fff5ff;
    --text-muted: #d6c7ff;
    --accent: #00f5ff;
    /* neon cyan */
    --accent-soft: rgba(0, 245, 255, 0.16);
    --shadow-soft: 0 22px 60px rgba(0, 0, 0, 0.9);
}

/* ---------------- GLOBAL BACKGROUND ---------------- */

body,
.frontpage-body,
.auth-body {
    min-height: 100vh;
    margin: 0;
    background:
        radial-gradient(circle at 10% 0%, rgba(255, 0, 255, 0.30), transparent 60%),
        radial-gradient(circle at 90% 100%, rgba(0, 245, 255, 0.28), transparent 60%),
        linear-gradient(135deg, var(--bg-gradient-top), var(--bg-gradient-bottom));
    color: var(--text-main);
    font-family: var(--font-main, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif);
}

/* Slight glow along the edges */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 0% 100%, rgba(255, 0, 255, 0.24), transparent 55%),
        radial-gradient(circle at 100% 0%, rgba(0, 245, 255, 0.20), transparent 55%);
    z-index: -1;
}

/* Scroll container normal */
.frontpage-root,
.auth-root {
    color: inherit;
}

/* ---------------- TOPBAR / HEADER ---------------- */

.topbar {
    background: linear-gradient(90deg, #5a1ab3, #7b1fd5, #5a1ab3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.85);
    position: sticky;
    top: 0;
    z-index: 50;
}

.topbar-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.brand-logo {
    height: 44px;
    width: auto;
    display: block;
    filter:
        drop-shadow(0 0 6px rgba(255, 0, 255, 0.85)) drop-shadow(0 0 14px rgba(0, 245, 255, 0.8));
}

.brand-text {
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.9rem;
    color: #00f5ff;
    text-shadow:
        0 0 8px rgba(0, 245, 255, 0.8),
        0 0 18px rgba(255, 0, 255, 0.7);
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.topbar-link {
    font-size: 0.85rem;
    padding: 7px 12px;
    border-radius: 999px;
    text-decoration: none;
    color: #f5e7ff;
    background: rgba(15, 23, 42, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(13px);
    transition: background 0.15s ease, transform 0.1s ease, box-shadow 0.15s ease;
}

.topbar-link:hover {
    background: rgba(15, 23, 42, 0.4);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.25);
    transform: translateY(-1px);
}

.topbar-link-accent {
    font-size: 0.85rem;
    padding: 7px 16px;
    border-radius: 999px;
    background: #ff00ff;
    color: #050012;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow:
        0 0 14px rgba(255, 0, 255, 0.9),
        0 0 24px rgba(0, 245, 255, 0.7);
}

.topbar-link-accent:hover {
    background: #ff3bff;
    box-shadow:
        0 0 18px rgba(255, 0, 255, 1),
        0 0 30px rgba(0, 245, 255, 0.8);
}

/* ========= TOPBAR NAV ========= */

/* Basis link-styling (waarschijnlijk heb je dit al, laat het gewoon staan) */
.topbar-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.45rem 1.1rem;
    border-radius: 999px;
    font-size: 0.87rem;
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #fdf7ff;
    text-decoration: none;
    background: rgba(32, 4, 80, 0.8);
    box-shadow: 0 0 16px rgba(0, 0, 0, 0.6);
    transition:
        background 0.15s ease,
        box-shadow 0.15s ease,
        transform 0.15s ease,
        color 0.15s ease;
}

/* Hover staat */
.topbar-link:hover {
    background: rgba(255, 255, 255, 0.08);
    box-shadow:
        0 0 14px rgba(0, 245, 255, 0.8),
        0 0 26px rgba(255, 0, 144, 0.7);
    transform: translateY(-1px);
}

/* CTA chip (Account aanmaken / Uitloggen) */
.topbar-link-accent {
    background: linear-gradient(90deg, #ff00b8, #ff8a00);
    border-color: rgba(255, 255, 255, 0.6);
    color: #0b041a;
    box-shadow:
        0 0 18px rgba(255, 0, 184, 0.9),
        0 0 24px rgba(255, 138, 0, 0.9);
}

/* ACTIEVE pagina – dit is de fix */
.topbar-link-active {
    background: linear-gradient(90deg, #00f5ff, #2af598);
    border-color: rgba(255, 255, 255, 0.9);
    color: #020617;
    box-shadow:
        0 0 18px rgba(0, 245, 255, 0.9),
        0 0 26px rgba(42, 245, 152, 0.9);
}

/* ---------------- FRONT PAGE LAYOUT ---------------- */

.frontpage-shell {
    max-width: 1200px;
    margin: 18px auto 48px;
    padding: 0 18px 32px;
}

/* Hero banner */
.hero-strip {
    background: linear-gradient(90deg, #ff00ff, #ff62ff, #00f5ff);
    color: #ffffff;
    border-radius: 24px;
    padding: 22px 24px;
    box-shadow:
        0 0 26px rgba(255, 0, 255, 0.7),
        0 0 40px rgba(0, 245, 255, 0.6);
}

.hero-title {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 4px;
}

.hero-subtitle {
    font-size: 0.95rem;
}

/* Section cards (categories, lists, etc.) */
.frontpage-card {
    background: radial-gradient(circle at top left, #5e23ca, #32116a);
    border-radius: 22px;
    padding: 16px 18px 14px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: var(--shadow-soft);
    color: var(--text-main);
}

/* Section titles */
.frontpage-section-title {
    margin: 0 0 12px;
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 0 12px rgba(0, 245, 255, 0.5);
}

/* Category chips */
.chip {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(10, 10, 40, 0.18);
    color: var(--text-muted);
    cursor: pointer;
    transition: background 0.15s ease, box-shadow 0.15s ease, transform 0.1s ease;
}

.chip:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-1px);
}

.chip-active {
    background: #ff00ff;
    color: #050012;
    border-color: rgba(255, 255, 255, 0.55);
    box-shadow: 0 0 14px rgba(255, 0, 255, 0.9);
}

/* ---------------- SELLER CARDS ---------------- */

.seller-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
    gap: 16px;
}

.seller-card {
    background: radial-gradient(circle at top left, #6428d0, #2e0f60);
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.80);
    cursor: pointer;
    overflow: hidden;
    transition: transform 0.12s ease, box-shadow 0.12s ease, border-color 0.12s ease;
}

.seller-card:hover {
    transform: translateY(-2px);
    border-color: #00f5ff;
    box-shadow:
        0 18px 50px rgba(0, 0, 0, 0.95),
        0 0 22px rgba(0, 245, 255, 0.65);
}

.seller-card img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    display: block;
}

.seller-card-body {
    padding: 10px 12px 12px;
}

.seller-name {
    font-size: 0.95rem;
    font-weight: 600;
}

.seller-meta {
    font-size: 0.8rem;
    margin-top: 3px;
    color: var(--text-muted);
}

.seller-card-footer {
    margin-top: 6px;
    font-size: 0.78rem;
    color: #a3f5ff;
}

/* premium / featured badges */
.badge-premium,
.badge-featured {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 2px 8px;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.badge-premium {
    background: linear-gradient(135deg, #ff00ff, #ff99ff);
    color: #350038;
    box-shadow: 0 0 12px rgba(255, 0, 255, 0.8);
}

.badge-featured {
    background: linear-gradient(135deg, #00f5ff, #7afeff);
    color: #002033;
    box-shadow: 0 0 12px rgba(0, 245, 255, 0.8);
}

/* ---------------- BUTTONS / LINKS ---------------- */

.btn-primary,
.btn,
.auth-button {
    background: #00f5ff;
    color: #050012;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 14px rgba(0, 245, 255, 0.9);
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s ease, box-shadow 0.15s ease, transform 0.1s ease;
}

.btn-primary:hover,
.btn:hover,
.auth-button:hover {
    background: #3dffff;
    box-shadow: 0 0 18px rgba(0, 245, 255, 1);
    transform: translateY(-1px);
}

.btn-ghost,
.btn-secondary {
    background: rgba(12, 12, 34, 0.4);
    color: var(--text-main);
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-ghost:hover,
.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* ---------------- AUTH PAGES ---------------- */

.auth-box {
    background: rgba(35, 7, 90, 0.96);
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.85);
    color: var(--text-main);
}

.auth-box h1 {
    color: #ffffff;
}

.auth-label {
    color: var(--text-muted);
}

.auth-input,
input[type="text"],
input[type="email"],
input[type="password"],
select,
textarea {
    background: rgba(15, 10, 52, 0.9);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
}

.auth-input:focus,
input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: #00f5ff;
    box-shadow: 0 0 0 1px rgba(0, 245, 255, 0.6);
}

/* Messages */
.msg-error,
.error-box {
    background: rgba(255, 0, 102, 0.15);
    border-color: rgba(255, 0, 128, 0.7) !important;
    color: #ffbdda;
}

.msg-success,
.success-box {
    background: rgba(0, 245, 255, 0.14);
    border-color: rgba(0, 245, 255, 0.7) !important;
    color: #c8ffff;
}

/* ---------------- SELLER PROFILE PAGE ---------------- */

.seller-hero-wrapper,
.seller-profile-card,
.seller-public-card {
    background: radial-gradient(circle at top left, #5f25cc, #2c0d5f);
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.20);
    box-shadow: var(--shadow-soft);
}

.seller-public-name {
    color: #ffffff;
    text-shadow: 0 0 16px rgba(0, 245, 255, 0.7);
}

.seller-public-meta,
.seller-public-extra-note {
    color: var(--text-muted);
}

/* Lightbox backdrop */
.lightbox-backdrop {
    background: rgba(5, 0, 20, 0.96);
}

/* ---------------- DASHBOARD / TABLES ---------------- */

.dash-card {
    background: radial-gradient(circle at top left, #5a24c5, #2b0f5a);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: var(--shadow-soft);
}

table {
    border-color: rgba(255, 255, 255, 0.2);
}

table thead {
    background: rgba(10, 10, 50, 0.9);
    color: #f5f3ff;
}

table tbody tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.02);
}

table tbody tr:hover {
    background: rgba(0, 245, 255, 0.08);
}

/* ---------------- LINKS ---------------- */

a {
    color: #00f5ff;
}

a:hover {
    color: #c6ffff;
}

/* small helper text */
.text-muted,
.help-text {
    color: var(--text-muted);
}

/* Bigger logo for more detail */
.brand-logo {
    height: 60px;
    /* was ~44px */
    width: auto;
    display: block;
    filter:
        drop-shadow(0 0 6px rgba(255, 0, 255, 0.85)) drop-shadow(0 0 14px rgba(0, 245, 255, 0.8));
}

/* Keep topbar nicely aligned with the larger logo */
.topbar-inner {
    padding: 8px 18px;
}

/* Slightly smaller on very small screens so it doesn’t dominate */
@media (max-width: 600px) {
    .brand-logo {
        height: 52px;
    }
}

/* =========================
   AUTH PAGES (login / register)
   ========================= */

body.auth-body {
    min-height: 100vh;
    margin: 0;
    display: flex;
    flex-direction: column;
    /* nav boven, content eronder */
}

/* Layout voor de login / register card */
.auth-layout {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2.5rem 1rem 3.5rem;
}

@media (max-width: 768px) {

    /* Op kleinere schermen card iets hoger */
    .auth-layout {
        align-items: flex-start;
        padding-top: 2.5rem;
        padding-bottom: 2.5rem;
    }
}

.auth-box {
    width: 100%;
    max-width: 420px;
    background: rgba(35, 7, 90, 0.96);
    border-radius: 22px;
    padding: 22px 22px 24px;
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.auth-title {
    margin: 0 0 10px;
    font-size: 1.3rem;
    color: #ffffff;
}

.auth-subtitle {
    margin: 0 0 18px;
    font-size: 0.9rem;
    color: #d6c7ff;
}

.auth-label {
    display: block;
    margin-top: 12px;
    font-size: 0.9rem;
    color: #e5ddff;
}

.auth-input {
    width: 100%;
    padding: 8px 12px;
    margin-top: 4px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.32);
    background: rgba(15, 10, 52, 0.95);
    color: #ffffff;
    font-size: 0.9rem;
}

.auth-input:focus {
    outline: none;
    border-color: #00f5ff;
    box-shadow: 0 0 0 1px rgba(0, 245, 255, 0.7);
}

.auth-remember {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    font-size: 0.85rem;
    color: #d6c7ff;
}

.auth-remember input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: #00f5ff;
    cursor: pointer;
}

.auth-button {
    width: 100%;
    margin-top: 18px;
    padding: 9px 14px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    color: #020617;
    background: linear-gradient(90deg, #00f5ff, #2af598);
    box-shadow:
        0 0 14px rgba(0, 245, 255, 0.8),
        0 0 24px rgba(45, 255, 196, 0.8);
}

.auth-button:hover {
    filter: brightness(1.05);
}

.auth-footer {
    margin-top: 16px;
    font-size: 0.85rem;
    color: #d6c7ff;
}

.auth-footer a {
    color: #00f5ff;
    text-decoration: none;
}

.auth-footer a:hover {
    text-decoration: underline;
}

.msg-error {
    margin-bottom: 10px;
    padding: 8px 12px;
    border-radius: 10px;
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(248, 113, 113, 0.8);
    color: #fecaca;
    font-size: 0.85rem;
}

/* =========================
   AUTH LOGO BAR (NEON FLICKER)
   ========================= */

.auth-logo-bar {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 3rem 0 2rem;
}

.auth-logo-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.auth-logo-image {
    width: 220px;
    height: auto;
    filter: drop-shadow(0 0 18px rgba(0, 255, 255, 0.85)) drop-shadow(0 0 28px rgba(0, 140, 255, 0.55)) drop-shadow(0 0 40px rgba(255, 0, 200, 0.45));
    transition: transform 0.3s ease, filter 0.3s ease;
    animation: neonFlicker 3.2s infinite;
}

.auth-logo-image:hover {
    transform: scale(1.06);
    filter: drop-shadow(0 0 28px rgba(0, 255, 255, 1)) drop-shadow(0 0 42px rgba(0, 140, 255, 0.9)) drop-shadow(0 0 60px rgba(255, 0, 200, 0.7));
}

/* Subtle neon flicker – not too aggressive */
@keyframes neonFlicker {
    0% {
        opacity: 0.95;
        filter: drop-shadow(0 0 18px rgba(0, 255, 255, 0.8)) drop-shadow(0 0 28px rgba(0, 140, 255, 0.55)) drop-shadow(0 0 40px rgba(255, 0, 200, 0.45));
    }

    5% {
        opacity: 0.6;
        filter: drop-shadow(0 0 8px rgba(0, 255, 255, 0.4)) drop-shadow(0 0 16px rgba(0, 140, 255, 0.3)) drop-shadow(0 0 24px rgba(255, 0, 200, 0.25));
    }

    7% {
        opacity: 1;
        filter: drop-shadow(0 0 22px rgba(0, 255, 255, 0.95)) drop-shadow(0 0 34px rgba(0, 140, 255, 0.8)) drop-shadow(0 0 48px rgba(255, 0, 200, 0.6));
    }

    10% {
        opacity: 0.75;
    }

    12% {
        opacity: 1;
    }

    55% {
        opacity: 1;
    }

    57% {
        opacity: 0.7;
    }

    60% {
        opacity: 1;
    }

    100% {
        opacity: 0.95;
    }
}

/* =========================
   TOPBAR NAVIGATION
   ========================= */

.topbar-nav {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    position: relative;
}

/* Desktop: show links inline, hide hamburger */
.topbar-nav-links {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.topbar-nav-hamburger {
    display: none;
    /* hidden by default (desktop) */
    font-size: 1.4rem;
    cursor: pointer;
    padding: 0.35rem 0.6rem;
    border-radius: 0.75rem;
    background: rgba(0, 0, 0, 0.25);
    color: #f9f5ff;
}

/* Mobile breakpoint */
@media (max-width: 900px) {
    .topbar-nav-links {
        display: none;
        position: absolute;
        top: 62px;
        right: 0.75rem;
        flex-direction: column;
        align-items: flex-start;
        padding: 0.75rem;
        min-width: 210px;
        background: rgba(15, 23, 42, 0.96);
        border-radius: 18px;
        border: 1px solid rgba(255, 255, 255, 0.25);
        backdrop-filter: blur(18px);
        box-shadow: 0 18px 36px rgba(0, 0, 0, 0.8);
        z-index: 1000;
    }

    .topbar-nav-links.open {
        display: flex;
    }

    .topbar-nav-hamburger {
        display: inline-flex;
        /* show hamburger on mobile */
        align-items: center;
        justify-content: center;
    }
}

/* === Seller profile layout === */

.seller-profile-layout {
    display: flex;
    gap: 2.5rem;
    align-items: flex-start;
}

/* Left / main column */
.seller-profile-main {
    flex: 2;
}

/* Right / sidebar column */
.seller-profile-sidebar {
    flex: 1.1;
    max-width: 380px;
}

/* Header */
.seller-profile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.seller-name {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #ffffff;
}

.seller-subline {
    margin-top: 0.25rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
}

.seller-header-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

/* Buttons reuse your pill style, just a reminder */
.btn-pill {
    border-radius: 999px;
    padding: 0.45rem 1.1rem;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 0.4rem 1.5rem rgba(0, 0, 0, 0.35);
}

.btn-pill-primary {
    background: linear-gradient(135deg, #ff5ac8, #ff8a5c);
    color: #fff;
}

.btn-pill-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

/* Sections on left side */
.seller-section {
    margin-bottom: 1.75rem;
}

.seller-section-title {
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.7rem;
    color: #ffffff;
}

.seller-bio {
    font-size: 0.98rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.92);
}

/* Social badges */
.seller-social-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.6rem;
}

.badge-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    color: #fff;
    box-shadow: 0 0.3rem 1rem rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
}

/* tweak colours per platform */
.badge-social-website {
    background: linear-gradient(135deg, #36d1dc, #5b86e5);
}

.badge-social-instagram {
    background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af, #515bd4);
}

.badge-social-twitter {
    background: linear-gradient(135deg, #1da1f2, #0a84d0);
}

.badge-social-tiktok {
    background: linear-gradient(135deg, #ff0050, #00f2ea);
}

.badge-social-onlyfans {
    background: linear-gradient(135deg, #00aeef, #2b98f0);
}

.seller-disclaimer {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Sidebar profile card */

.seller-profile-hero {
    background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.12), rgba(0, 0, 0, 0.75));
    border-radius: 24px;
    padding: 1rem;
    box-shadow: 0 1.4rem 3rem rgba(0, 0, 0, 0.7);
    position: sticky;
    top: 90px;
    /* optional "sticky" effect like LinkedIn */
}

.seller-hero-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 0.9rem;
}

.seller-hero-image {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.seller-badge-stack {
    position: absolute;
    top: 0.65rem;
    left: 0.65rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}

.seller-badge {
    border-radius: 999px;
    padding: 0.2rem 0.7rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: #fff;
    backdrop-filter: blur(10px);
}

.seller-badge-premium {
    background: linear-gradient(135deg, #ffd200, #ff8a00);
}

.seller-badge-featured {
    background: linear-gradient(135deg, #00f5a0, #00d9f5);
}

.seller-badge-verified {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
}

/* Stats under image */
.seller-profile-stats {
    margin-top: 0.5rem;
    padding-top: 0.4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.seller-stat-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
}

.seller-stat-label {
    color: rgba(255, 255, 255, 0.6);
}

.seller-stat-value {
    color: #ffffff;
    font-weight: 600;
}

.seller-rating-stars {
    letter-spacing: 0.05em;
}

/* === Gallery alignment === */

.seller-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 0.8rem;
}

.seller-gallery-item {
    border: none;
    padding: 0;
    background: none;
    cursor: pointer;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 0.8rem 2rem rgba(0, 0, 0, 0.6);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.seller-gallery-item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.seller-gallery-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 1.2rem 2.4rem rgba(0, 0, 0, 0.8);
}

/* === Responsive: stack on small screens === */

@media (max-width: 992px) {
    .seller-profile-layout {
        flex-direction: column-reverse;
        /* image on top, content under it */
    }

    .seller-profile-sidebar {
        max-width: 100%;
        width: 100%;
    }

    .seller-profile-hero {
        position: static;
    }

    .seller-profile-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .seller-header-actions {
        width: 100%;
        justify-content: flex-start;
    }
}

/* =======================================================
   HOMEPAGE SELLER CARD TWEAKS – NAME + STATS
   ======================================================= */

/* Smaller name specifically for the homepage cards */
.seller-card-name {
    font-size: 0.5rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: none;
    margin: 0;
}

/* Stats row under the name: views + rating */
.seller-card-stats {
    margin-top: 0.45rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 0.55rem;
    font-size: 0.78rem;
}

.seller-card-stat {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.2rem 0.7rem;
    border-radius: 999px;
    background: rgba(9, 9, 30, 0.9);
    border: 1px solid rgba(148, 163, 255, 0.65);
    color: var(--text-muted);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.7);
}

.seller-card-stat strong {
    font-weight: 600;
    color: #ffffff;
}

@media (max-width: 480px) {
    .seller-card-name {
        font-size: 0.9rem;
    }

    .seller-card-stats {
        font-size: 0.74rem;
    }
}

.seller-card-rating {
    color: #ff85b8 !important;
    font-size: 0.9rem;
}

/* ============================================================
   MOBILE IMAGE FIXES — Seller Cards + Gallery + Hero Image
   ============================================================ */

@media (max-width: 600px) {

    /* ---- SELLER CARD THUMBNAILS (homepage lists) ---- */
    .seller-thumb {
        width: 100%;
        max-height: 260px;
        overflow: hidden;
        border-radius: 14px;
    }

    .seller-thumb img {
        width: 100%;
        height: auto !important;
        /* no distortion */
        object-fit: cover !important;
        /* Instagram look */
        display: block;
    }

    /* Improve spacing */
    .seller-card {
        padding: 10px;
    }

    /* ---- HERO IMAGE ON SELLER PROFILE PAGE ---- */
    .seller-hero-wrapper {
        max-height: 380px;
        overflow: hidden;
    }

    .seller-hero-wrapper img {
        width: 100%;
        height: auto !important;
        object-fit: cover !important;
        display: block;
    }

    /* ---- GALLERY THUMBNAILS (profile page) ---- */
    .seller-thumb-btn {
        flex: 0 0 80px !important;
        /* slightly larger for mobile */
        height: 80px !important;
        border-radius: 12px;
        overflow: hidden;
    }

    .seller-thumb-btn img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* nicer spacing */
    .seller-gallery-strip {
        gap: 10px;
    }

    /* Fixing grid galleries */
    .seller-gallery-item {
        height: 110px !important;
    }

    .seller-gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}