:root {
    --navy: #0f172a;
    --navy-light: #172554;
    --blue: #2563eb;
    --blue-dark: #1d4ed8;
    --green: #10b981;
    --background: #f5f7fb;
    --surface: #ffffff;
    --text: #0f172a;
    --muted: #64748b;
    --border: #e2e8f0;
    --shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--background);
    color: var(--text);
    font-family:
        Inter,
        ui-sans-serif,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input {
    font: inherit;
}

img {
    display: block;
    max-width: 100%;
}

.icon {
    flex-shrink: 0;
    display: inline-block;
    vertical-align: middle;
}

.page-container {
    width: min(100% - 40px, 1380px);
    margin-inline: auto;
}

/* Header */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
}

.header-inner {
    width: min(100% - 40px, 1480px);
    min-height: 76px;
    margin-inline: auto;
    display: flex;
    align-items: center;
    gap: 26px;
}

.brand {
    flex: 0 0 auto;
    padding: 8.5px 11.9px;
    display: block;
    background: var(--navy);
    border-radius: 10px;
}

.brand img {
    width: 136px;
    height: 38px;
    object-fit: contain;
}

.header-search {
    height: 48px;
    min-width: 260px;
    max-width: 620px;
    flex: 1;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #f8fafc;
    border: 1px solid var(--border);
    border-radius: 14px;
    transition:
        border-color 160ms ease,
        box-shadow 160ms ease;
}

.header-search:focus-within {
    border-color: var(--blue);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.10);
}

.search-icon {
    padding-left: 16px;
    display: flex;
    align-items: center;
    color: var(--muted);
}

.header-search input {
    width: 100%;
    height: 100%;
    padding: 0 14px;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--text);
}

.header-search input::placeholder {
    color: #94a3b8;
}

.header-search button {
    align-self: stretch;
    padding: 0 21px;
    border: 0;
    background: var(--navy);
    color: #fff;
    cursor: pointer;
    font-weight: 750;
}

.header-search button:hover {
    background: var(--blue);
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.desktop-nav > a {
    padding: 11px 12px;
    border-radius: 11px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 700;
}

.desktop-nav > a:hover,
.desktop-nav > a.active {
    color: var(--blue);
    background: rgba(37, 99, 235, 0.08);
}

.desktop-nav .sell-button {
    margin-left: 5px;
    padding-inline: 20px;
    background: var(--blue);
    color: #fff;
}

.desktop-nav .sell-button:hover {
    background: var(--blue-dark);
    color: #fff;
}

.nav-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    margin-left: 4px;
    border-radius: 999px;
    background: var(--blue);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    vertical-align: middle;
}

.mobile-menu-button {
    display: none;
    align-items: center;
    justify-content: center;
    border: 0;
    background: transparent;
    color: var(--navy);
    cursor: pointer;
}

/* Location */

.location-strip {
    background: linear-gradient(
        110deg,
        var(--navy),
        var(--navy-light)
    );
    color: #fff;
}

.location-inner {
    min-height: 60px;
    display: flex;
    align-items: center;
    gap: 24px;
}

.location-button {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 10px 14px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    cursor: pointer;
}

.location-message {
    color: #cbd5e1;
    font-size: 14px;
}

.location-arrow {
    color: #94a3b8;
}

/* Top categories */

.top-categories {
    background: var(--surface);
    border-bottom: 1px solid var(--border);
}

.top-categories-inner {
    min-height: 46px;
    display: flex;
    align-items: center;
    gap: 28px;
}

.top-categories a {
    color: var(--text);
    font-size: 14px;
    font-weight: 800;
}

.top-categories a:hover {
    color: var(--blue);
}

@media (max-width: 720px) {
    .top-categories-inner {
        min-height: 40px;
        gap: 20px;
    }

    .top-categories a {
        font-size: 13px;
    }
}

/* Hero */

.hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(
        130deg,
        var(--navy) 0%,
        var(--navy-light) 55%,
        #1e3a8a 100%
    );
    color: #fff;
}

.hero::before {
    content: "";
    position: absolute;
    top: -140px;
    right: -120px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.35), transparent 70%);
    pointer-events: none;
}

.hero-inner {
    position: relative;
    padding: 56px 0 44px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    align-items: center;
    gap: 40px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #bfdbfe;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.hero-eyebrow-dot {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: #34d399;
    box-shadow: 0 0 0 4px rgba(52, 211, 153, 0.2);
}

.hero-copy h1 {
    margin: 18px 0 12px;
    font-size: clamp(32px, 4vw, 50px);
    line-height: 1.08;
    letter-spacing: -0.03em;
}

.hero-copy > p {
    margin: 0 0 26px;
    max-width: 520px;
    color: #cbd5e1;
    font-size: 16px;
    line-height: 1.6;
}

.hero-search {
    max-width: 560px;
    height: 56px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 18px 40px rgba(2, 6, 23, 0.35);
}

.hero-search .search-icon {
    padding-left: 18px;
    color: var(--muted);
}

.hero-search input {
    flex: 1;
    height: 100%;
    padding: 0 14px;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--text);
}

.hero-search input::placeholder {
    color: #94a3b8;
}

.hero-search button {
    align-self: stretch;
    padding: 0 26px;
    border: 0;
    background: var(--blue);
    color: #fff;
    font-weight: 800;
    cursor: pointer;
}

.hero-search button:hover {
    background: var(--blue-dark);
}

.hero-stats {
    display: flex;
    gap: 30px;
    margin-top: 28px;
}

.hero-stat strong {
    display: block;
    font-size: 20px;
}

.hero-stat span {
    color: #94a3b8;
    font-size: 12px;
}

.hero-visual {
    position: relative;
    min-height: 300px;
}

.hero-orb {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.45), transparent 70%);
    filter: blur(4px);
}

.hero-chip {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(6px);
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    box-shadow: 0 14px 30px rgba(2, 6, 23, 0.3);
}

.hero-chip-1 {
    top: 6%;
    left: 4%;
    animation: hero-float 5s ease-in-out infinite;
}

.hero-chip-2 {
    top: 42%;
    right: 0;
    animation: hero-float 6s ease-in-out infinite 0.5s;
}

.hero-chip-3 {
    bottom: 4%;
    left: 16%;
    animation: hero-float 5.5s ease-in-out infinite 1s;
}

@keyframes hero-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@media (max-width: 980px) {
    .hero-inner {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        display: none;
    }
}

@media (max-width: 720px) {
    .hero-inner {
        padding: 40px 0 32px;
    }

    .hero-stats {
        gap: 20px;
    }

    .hero-search {
        height: 50px;
        border-radius: 13px;
    }
}

/* Trust strip */

.trust-section {
    padding: 30px 0 4px;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.trust-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: var(--surface);
}

.trust-icon {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    display: grid;
    place-items: center;
    border-radius: 11px;
    background: #eff6ff;
    color: var(--blue);
}

.trust-item strong {
    display: block;
    color: var(--text);
    font-size: 13px;
}

.trust-item small {
    display: block;
    margin-top: 3px;
    color: var(--muted);
    font-size: 11.5px;
    line-height: 1.4;
}

@media (max-width: 900px) {
    .trust-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 480px) {
    .trust-grid {
        grid-template-columns: 1fr;
    }
}

/* Headings */

.categories-section,
.listings-section {
    padding-top: 34px;
}

.section-heading {
    margin-bottom: 18px;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
}

.section-heading h1,
.section-heading h2 {
    margin: 0;
    color: var(--text);
    font-size: clamp(24px, 2vw, 31px);
    letter-spacing: -0.025em;
}

.section-heading p {
    margin: 6px 0 0;
    color: var(--muted);
    font-size: 14px;
}

.section-heading > a {
    color: var(--blue);
    font-size: 14px;
    font-weight: 800;
}

/* Categories */

.category-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 12px;
}

.category-card {
    min-width: 0;
    padding: 18px 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    transition:
        transform 160ms ease,
        box-shadow 160ms ease,
        border-color 160ms ease;
}

.category-card:hover {
    transform: translateY(-3px);
    border-color: #bfdbfe;
    box-shadow: var(--shadow);
}

.category-icon {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    display: grid;
    place-items: center;
    background: #eff6ff;
    border-radius: 13px;
    color: var(--blue);
}

.category-card > span:last-child {
    min-width: 0;
}

.category-card.cat-marketplace .category-icon {
    background: rgba(16, 185, 129, 0.14);
    color: var(--green);
}

.category-card.cat-vehicles .category-icon {
    background: rgba(37, 99, 235, 0.12);
    color: var(--blue);
}

.category-card.cat-housing .category-icon {
    background: rgba(245, 158, 11, 0.16);
    color: #b45309;
}

.category-card.cat-services .category-icon {
    background: rgba(139, 92, 246, 0.14);
    color: #7c3aed;
}

.category-card.cat-jobs .category-icon {
    background: rgba(14, 165, 233, 0.14);
    color: #0284c7;
}

.category-card.cat-business .category-icon {
    background: rgba(236, 72, 153, 0.14);
    color: #db2777;
}

.category-card strong,
.category-card small {
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.category-card strong {
    color: var(--text);
    font-size: 14px;
}

.category-card small {
    margin-top: 4px;
    color: var(--muted);
    font-size: 11px;
}

/* Listings */

.listings-section {
    padding-bottom: 54px;
}

.listing-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 12px;
}

.listing-card {
    min-width: 0;
}

.listing-image {
    position: relative;
    aspect-ratio: 1 / 0.9;
    display: block;
    overflow: hidden;
    border-radius: 10px;
    background: #e2e8f0;
}

.listing-image > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 240ms ease;
}

.listing-card:hover .listing-image > img {
    transform: scale(1.035);
}

.favorite-button {
    position: absolute;
    top: 11px;
    right: 11px;
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.94);
    color: var(--navy);
    box-shadow: 0 5px 16px rgba(15, 23, 42, 0.18);
    cursor: pointer;
    font-size: 25px;
}

.favorite-button:hover {
    color: #e11d48;
}

.favorite-form {
    display: contents;
}

.favorite-button.is-favorited {
    color: #e11d48;
}

.favorite-button:disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

.listing-content {
    padding: 10px 2px 0;
    display: flex;
    flex-direction: column;
}

.listing-content h3 {
    order: 1;
    margin: 0;
    overflow: hidden;
    color: var(--text);
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.listing-price {
    order: 2;
    display: block;
    margin-top: 3px;
    color: var(--navy);
    font-size: 18px;
    font-weight: 850;
}

.listing-content p {
    order: 3;
    margin: 3px 0 0;
    overflow: hidden;
    color: var(--muted);
    font-size: 12px;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.listing-content > span {
    display: none;
}

/* Sell banner */

.sell-banner {
    padding: 58px 0;
    background: linear-gradient(
        120deg,
        var(--navy),
        #172554 58%,
        var(--blue-dark)
    );
    color: #fff;
}

.sell-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.eyebrow {
    color: #93c5fd;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.12em;
}

.sell-banner h2 {
    margin: 8px 0 7px;
    font-size: clamp(27px, 3vw, 42px);
    letter-spacing: -0.035em;
}

.sell-banner p {
    margin: 0;
    color: #cbd5e1;
}

.sell-banner a {
    flex: 0 0 auto;
    padding: 15px 23px;
    border-radius: 13px;
    background: #fff;
    color: var(--blue-dark);
    font-weight: 850;
}

.sell-banner-features {
    margin-top: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
    color: #bfdbfe;
    font-size: 12.5px;
    font-weight: 700;
}

.sell-banner-features span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* Footer */

.site-footer {
    padding: 54px 0 0;
    background: #080f20;
    color: #94a3b8;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.6fr repeat(3, minmax(0, 1fr));
    gap: 32px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand img {
    width: 130px;
}

.footer-brand p {
    margin: 14px 0 18px;
    max-width: 260px;
    font-size: 13px;
    line-height: 1.6;
}

.app-badges {
    display: flex;
    align-items: center;
    gap: 10px;
}

.app-badges img {
    height: 40px;
    width: auto;
    border-radius: 8px;
}

.social-badges {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
}

.social-badges a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #94a3b8;
}

.social-badges a:hover {
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links strong {
    margin-bottom: 4px;
    color: #fff;
    font-size: 13px;
    letter-spacing: 0.02em;
}

.footer-links a {
    font-size: 13px;
    color: #94a3b8;
}

.footer-links a:hover {
    color: #fff;
}

.footer-bottom {
    padding: 20px 0 26px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
    color: #64748b;
    font-size: 12px;
}

.footer-bottom a {
    color: #64748b;
}

.footer-bottom a:hover {
    color: #fff;
}

@media (max-width: 900px) {
    .footer-top {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px;
    }
}

@media (max-width: 560px) {
    .footer-top {
        grid-template-columns: 1fr;
    }
}

/* Responsive */

@media (max-width: 1250px) {
    .header-search {
        max-width: none;
    }

    .desktop-nav > a {
        padding-inline: 9px;
    }

    .category-grid {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }

    .listing-grid {
        grid-template-columns:
            repeat(5, minmax(0, 1fr));
    }
}

@media (max-width: 980px) {
    .desktop-nav {
        display: none;
    }

    .mobile-menu-button {
        display: flex;
    }

    .listing-grid {
        grid-template-columns:
            repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .page-container,
    .header-inner {
        width: min(100% - 28px, 1380px);
    }

    .header-inner {
        min-height: 68px;
        gap: 14px;
    }

    .brand img {
        width: 92px;
        height: 30px;
    }

    .header-search {
        display: none;
    }

    .location-inner {
        min-height: 56px;
    }
}

.detail-page {
    color: #0f172a;
    font-size: 27px;
}

.detail-subtitle {
    color: #64748b;
}

.detail-location,
.seller-panel {
    margin-top: 18px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f8fafc;
    border-radius: 14px;
}

.detail-location > span {
    flex: 0 0 auto;
    color: var(--blue);
}

.detail-location small,
.seller-panel small {
    margin-top: 3px;
    display: block;
    color: #64748b;
    font-size: 11px;
}

.seller-avatar {
    width: 45px;
    height: 45px;
    flex: 0 0 45px;
    display: grid;
    place-items: center;
    background: #0f172a;
    border-radius: 50%;
    color: #fff;
    font-weight: 900;
}

.primary-action {
    width: 100%;
    min-height: 50px;
    margin-top: 14px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 999px;
    font-weight: 850;
    background: #2563eb;
    color: #fff;
    cursor: pointer;
}

.safety-notice {
    margin: 17px 0 0;
    color: #64748b;
    font-size: 11px;
    line-height: 1.55;
}

.related-listings {
    margin-top: 44px;
}

.related-listings h2 {
    margin: 0 0 18px;
    color: var(--text);
    font-size: clamp(22px, 2vw, 28px);
    letter-spacing: -0.025em;
}

@media (max-width: 900px) {
    .detail-layout {
        grid-template-columns: 1fr;
    }

    .detail-information {
        position: static;
    }

    .detail-media,
    .detail-media img,
    .detail-placeholder {
        min-height: 420px;
        height: 420px;
    }

    .location-message {
        display: none;
    }

    .categories-section,
    .listings-section {
        padding-top: 25px;
    }

    .category-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .category-card {
        padding: 13px 11px;
    }

    .category-icon {
        width: 39px;
        height: 39px;
        flex-basis: 39px;
    }

    .listing-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
        gap: 11px;
    }

    .listing-content {
        padding-top: 8px;
    }

    .sell-banner-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .site-footer {
        padding-top: 40px;
    }
}

@media (max-width: 390px) {
    .category-grid {
        grid-template-columns: 1fr;
    }
}

.listing-image > a {
    width: 100%;
    height: 100%;
    display: block;
}

.listing-image > a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.listing-placeholder {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    background: linear-gradient(
        135deg,
        #0f172a,
        #2563eb
    );
    color: rgba(255, 255, 255, 0.85);
}

.placeholder-text {
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    padding: 0 16px;
}

.detail-placeholder .placeholder-text {
    font-size: 32px;
}

.empty-listings {
    padding: 55px 24px;
    text-align: center;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
}

.empty-listings > span {
    display: block;
    margin-bottom: 4px;
    color: var(--muted);
}

.empty-listings h3 {
    margin: 12px 0 6px;
}

.empty-listings p {
    margin: 0 0 20px;
    color: #64748b;
}

.empty-listings a {
    display: inline-block;
    padding: 12px 18px;
    background: #2563eb;
    color: #fff;
    border-radius: 11px;
    font-weight: 800;
}

.detail-page .page-container {
    width: min(100% - 40px, 1180px);
}

.detail-layout {
    display: grid;
    align-items: start;
    grid-template-columns:
        minmax(0, 1.35fr)
        minmax(350px, 430px);
    gap: 22px;
}

.detail-media {
    min-height: 500px;
}

.detail-media img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.detail-information {
    position: sticky;
    top: 20px;
}

.detail-placeholder {
    min-height: 500px;
    display: grid;
    place-items: center;
    background: linear-gradient(
        135deg,
        #0f172a,
        #2563eb
    );
    border-radius: 16px;
    color: rgba(255, 255, 255, 0.85);
}

.detail-information {
    padding: 20px;
    border-radius: 18px;
}

.detail-information h1 {
    margin: 11px 0 6px;
    font-size: clamp(21px, 2vw, 28px);
    line-height: 1.18;
}

.detail-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 10px;
}

.detail-price {
    font-size: 30px;
}

.detail-icon-actions {
    display: flex;
    gap: 8px;
    flex: 0 0 auto;
}

.detail-icon-button {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: #fff;
    color: var(--navy);
    font-size: 18px;
    cursor: pointer;
}

.detail-icon-button:hover {
    border-color: var(--blue);
    color: var(--blue);
}

.detail-icon-button.is-favorited {
    border-color: #e11d48;
    color: #e11d48;
}

.detail-icon-button.is-copied {
    border-color: var(--green);
    color: var(--green);
}

.detail-icon-button:disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

.detail-subtitle {
    margin: 8px 0;
    font-size: 13px;
}

.detail-location,
.seller-panel {
    margin-top: 13px;
    padding: 12px;
    font-size: 13px;
}

.detail-location small,
.seller-panel small {
    font-size: 10px;
}

.seller-avatar {
    width: 39px;
    height: 39px;
    flex-basis: 39px;
    font-size: 13px;
}

.primary-action {
    min-height: 44px;
    margin-top: 11px;
    font-size: 13px;
}

.safety-notice {
    margin-top: 13px;
    font-size: 10px;
}

.breadcrumbs {
    margin-bottom: 16px;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 7px;
    color: var(--muted);
}

.breadcrumbs a {
    color: var(--muted);
}

.breadcrumbs a:hover {
    color: var(--blue);
}

.breadcrumbs span:last-child {
    overflow: hidden;
    max-width: 320px;
    color: var(--text);
    white-space: nowrap;
    text-overflow: ellipsis;
}

.detail-gallery {
    min-width: 0;
}

.detail-description {
    margin-top: 24px;
    padding: 20px;
    border-radius: 18px;
    background: var(--surface);
    border: 1px solid var(--border);
}

.detail-description h2 {
    margin: 0 0 10px;
    color: var(--text);
    font-size: 17px;
}

.detail-description p {
    margin: 0;
    color: var(--text);
    font-size: 14px;
    line-height: 1.6;
    overflow-wrap: break-word;
}

.detail-map-block {
    margin-top: 24px;
    padding: 20px;
    border-radius: 18px;
    background: var(--surface);
    border: 1px solid var(--border);
}

.detail-map-block h2 {
    margin: 0 0 12px;
    color: var(--text);
    font-size: 17px;
}

.detail-map {
    width: 100%;
    height: 280px;
    border-radius: 12px;
    overflow: hidden;
    background: #e2e8f0;
}

.detail-map-note {
    margin: 10px 0 0;
    color: var(--muted);
    font-size: 12px;
}

.detail-thumbnails {
    margin-top: 12px;
    display: grid;
    grid-template-columns:
        repeat(6, minmax(0, 1fr));
    gap: 9px;
}

.detail-thumbnail {
    aspect-ratio: 1;
    padding: 0;
    overflow: hidden;
    border: 2px solid transparent;
    border-radius: 11px;
    background: #fff;
    cursor: pointer;
}

.detail-thumbnail.active {
    border-color: #2563eb;
}

.detail-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.browse-page {
    min-height: calc(100vh - 76px);
    padding: 42px 0 65px;
}

.browse-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
}

.browse-heading h1 {
    margin: 0;
    font-size: clamp(27px, 3vw, 39px);
    letter-spacing: -0.035em;
}

.browse-heading p {
    margin: 7px 0 0;
    color: #64748b;
}

.filter-button {
    padding: 11px 16px;
    border: 1px solid #cbd5e1;
    border-radius: 11px;
    background: #fff;
    color: #0f172a;
    cursor: pointer;
    font-weight: 750;
}

.category-tabs {
    margin: 27px 0 25px;
    padding-bottom: 4px;
    display: flex;
    gap: 8px;
    overflow-x: auto;
}

.category-tabs a {
    padding: 10px 15px;
    border: 1px solid #e2e8f0;
    border-radius: 999px;
    background: #fff;
    color: #64748b;
    font-size: 13px;
    font-weight: 750;
    white-space: nowrap;
}

.category-tabs a:hover,
.category-tabs a.active {
    border-color: #2563eb;
    background: #2563eb;
    color: #fff;
}

.results-count {
    margin-bottom: 14px;
    color: #64748b;
    font-size: 13px;
    font-weight: 700;
}

.filters-panel {
    margin: 18px 0 0;
    padding: 18px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 14px;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    background: #f8fafc;
}

.filters-panel[hidden] {
    display: none;
}

.filters-panel label {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    color: #0f172a;
}

.filters-panel input,
.filters-panel select {
    padding: 10px 12px;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 400;
    background: #fff;
    color: #0f172a;
}

.filters-panel-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    align-self: end;
}

.filters-panel-actions button {
    padding: 10px 18px;
    border: none;
    border-radius: 10px;
    background: #2563eb;
    color: #fff;
    font-weight: 750;
    cursor: pointer;
}

.filters-panel-actions a {
    color: #64748b;
    font-size: 13px;
    font-weight: 700;
}

.pagination {
    margin-top: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

.pagination a {
    padding: 10px 18px;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    background: #fff;
    color: #0f172a;
    font-weight: 750;
    font-size: 13px;
}

.pagination a:hover {
    border-color: #2563eb;
    color: #2563eb;
}

.pagination span {
    color: #64748b;
    font-size: 13px;
    font-weight: 700;
}

@media (max-width: 720px) {
    .browse-page {
        padding-top: 28px;
    }

    .browse-heading {
        align-items: flex-start;
    }

    .filter-button {
        font-size: 12px;
    }

    .filters-panel {
        grid-template-columns: 1fr;
    }
}

/* Delete account */

.danger-card {
    max-width: 440px;
    margin: 48px auto;
    padding: 36px 32px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: var(--surface);
    box-shadow: var(--shadow);
    text-align: center;
}

.danger-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin-bottom: 16px;
    border-radius: 999px;
    background: rgba(220, 38, 38, 0.1);
    color: #dc2626;
}

.danger-icon-success {
    background: rgba(16, 185, 129, 0.12);
    color: var(--green);
}

.danger-card h1 {
    margin: 0 0 10px;
    font-size: 22px;
}

.danger-card > p {
    margin: 0 0 22px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
}

.danger-card form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: left;
}

.danger-reason {
    display: flex;
    flex-direction: column;
    gap: 6px;
    color: var(--text);
    font-size: 13px;
    font-weight: 700;
}

.danger-reason textarea {
    padding: 12px 14px;
    border: 1px solid var(--border);
    border-radius: 10px;
    font-size: 14px;
    font-weight: 400;
    font-family: inherit;
    resize: vertical;
}

.danger-reason textarea:focus {
    outline: none;
    border-color: #dc2626;
    box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.10);
}

.danger-confirm {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.5;
}

.danger-confirm input {
    margin-top: 3px;
}

.danger-button {
    min-height: 49px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 12px;
    background: #dc2626;
    color: #fff;
    font-weight: 850;
    font-size: 14px;
    cursor: pointer;
    text-decoration: none;
}

.danger-button:hover {
    background: #b91c1c;
}

.danger-fallback {
    margin: 20px 0 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.6;
}

.danger-fallback a {
    color: var(--blue);
    font-weight: 700;
}

.danger-cancel {
    display: block;
    margin-top: 18px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}

.danger-cancel:hover {
    color: var(--text);
}

@media (max-width: 560px) {
    .danger-card {
        padding: 24px 19px;
    }
}

/* Auth */

.auth-card {
    max-width: 440px;
    margin: 48px auto;
    padding: 36px 32px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: var(--surface);
    box-shadow: var(--shadow);
}

.auth-card h1 {
    margin: 0 0 6px;
    font-size: 24px;
}

.auth-card > p {
    margin: 0 0 24px;
    color: var(--muted);
    font-size: 13px;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.auth-form[hidden] {
    display: none;
}

.auth-form label {
    display: flex;
    flex-direction: column;
    gap: 6px;
    color: var(--text);
    font-size: 13px;
    font-weight: 700;
}

.auth-form input {
    padding: 12px 14px;
    border: 1px solid var(--border);
    border-radius: 10px;
    font-size: 14px;
    font-weight: 400;
}

.auth-form input:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 4px
        rgba(37, 99, 235, 0.10);
}

.auth-form label small {
    margin-top: 6px;
    display: block;
    color: #94a3b8;
    font-weight: 500;
}

.auth-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    font-size: 12px;
}

.remember-option {
    display: flex;
    align-items: center;
    gap: 7px;
}

.auth-options a,
.auth-switch a {
    color: #2563eb;
    font-weight: 800;
}

.auth-form > button {
    min-height: 49px;
    border: 0;
    border-radius: 12px;
    background: #2563eb;
    color: #fff;
    cursor: pointer;
    font-weight: 850;
}

.auth-form > button:hover {
    background: #1d4ed8;
}

.auth-switch {
    margin: 23px 0 0;
    text-align: center;
    color: #64748b;
    font-size: 12px;
}

.alert {
    margin-bottom: 18px;
    padding: 12px 14px;
    border-radius: 11px;
    font-size: 12px;
    line-height: 1.45;
}

.alert-error {
    background: #fef2f2;
    color: #b91c1c;
}

.alert-success {
    background: #ecfdf5;
    color: #047857;
}

@media (max-width: 560px) {
    .auth-card {
        padding: 24px 19px;
    }
}

/* Header: logout control + mobile nav drawer */

.logout-form {
    display: contents;
}

.logout-form button {
    padding: 11px 12px;
    border: 0;
    border-radius: 11px;
    background: transparent;
    color: var(--muted);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
}

.logout-form button:hover {
    color: var(--blue);
    background: rgba(37, 99, 235, 0.08);
}

.mobile-nav {
    display: none;
    flex-direction: column;
    gap: 2px;
    padding: 10px min(20px, (100% - 1380px) / 2 + 20px) 16px;
    border-top: 1px solid var(--border);
}

.mobile-nav.open {
    display: flex;
}

.mobile-nav a,
.mobile-nav .logout-form button {
    padding: 12px 4px;
    border-radius: 10px;
    color: var(--text);
    font-size: 15px;
    font-weight: 700;
    text-align: left;
}

.mobile-nav .sell-button {
    margin-top: 6px;
    padding: 12px;
    background: var(--blue);
    color: #fff;
    text-align: center;
}

.mobile-nav .logout-form {
    display: block;
}

@media (min-width: 981px) {
    .mobile-nav {
        display: none !important;
    }
}

/* Verified badge */

.verified-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: 999px;
    background: var(--blue);
    color: #fff;
    font-size: 11px;
    vertical-align: middle;
}

/* Profile page */

.profile-page {
    max-width: 980px;
    margin: 48px auto;
}

.profile-avatar {
    flex: 0 0 auto;
    width: 76px;
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--navy);
    color: #fff;
    font-size: 28px;
    font-weight: 800;
    object-fit: cover;
}

.my-listings-page {
    max-width: 980px;
    margin: 48px auto;
}

.my-listings-page h1 {
    margin: 0;
    font-size: 24px;
}

.favorites-page {
    max-width: 980px;
    margin: 48px auto;
}

.favorites-page h1 {
    margin: 0 0 20px;
    font-size: 24px;
}

.profile-coming-soon {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
}

.profile-coming-soon a {
    color: var(--blue);
    font-weight: 700;
}

.profile-section-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.profile-add-listing {
    padding: 9px 16px;
    border-radius: 10px;
    background: var(--blue);
    color: #fff;
    font-size: 13px;
    font-weight: 750;
    white-space: nowrap;
}

.profile-add-listing:hover {
    background: var(--blue-dark);
}

/* My Listings */

.my-listings-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.my-listing-card {
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    background: var(--surface);
}

.my-listing-image {
    position: relative;
    display: block;
    aspect-ratio: 4 / 3;
    background: var(--navy);
}

.my-listing-image img,
.my-listing-image .listing-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
}

.my-listing-status {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    color: #fff;
    background: var(--muted);
}

.my-listing-status.status-active {
    background: var(--green);
}

.my-listing-status.status-sold {
    background: #64748b;
}

.my-listing-status.status-inactive {
    background: #94a3b8;
}

.my-listing-content {
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.my-listing-content strong {
    color: var(--navy);
    font-size: 16px;
    font-weight: 850;
}

.my-listing-content > a {
    color: var(--text);
    font-size: 14px;
    font-weight: 650;
}

.my-listing-actions {
    display: flex;
    gap: 8px;
    margin-top: 8px;
}

.my-listing-actions form,
.my-listing-actions a.my-listing-mark-sold {
    flex: 1;
}

.my-listing-actions button,
.my-listing-actions a.my-listing-mark-sold {
    width: 100%;
    padding: 8px;
    border: 1px solid var(--border);
    border-radius: 9px;
    background: #fff;
    color: var(--text);
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    text-align: center;
}

.my-listing-actions button:hover {
    border-color: var(--blue);
    color: var(--blue);
}

.my-listing-actions button.my-listing-delete:hover {
    border-color: #dc2626;
    color: #dc2626;
}

.my-listing-party {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid var(--border);
    font-size: 12px;
    color: var(--muted);
}

.my-listing-rating {
    color: #f59e0b;
    font-weight: 800;
    white-space: nowrap;
}

.my-listing-rate-link {
    color: var(--blue);
    font-weight: 700;
    white-space: nowrap;
}

.buyer-picker {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 8px 0;
}

.buyer-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border: 1px solid var(--border);
    border-radius: 12px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 650;
    color: var(--text);
}

.buyer-option:has(input:checked) {
    border-color: var(--blue);
    background: rgba(37, 99, 235, 0.06);
}

.buyer-option input {
    accent-color: var(--blue);
}

.buyer-option img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
}

.buyer-option-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--surface);
    font-size: 18px;
}

.star-rating {
    position: relative;
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    gap: 6px;
    margin: 8px 0;
}

.star-rating input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.star-rating label {
    font-size: 40px;
    line-height: 1;
    color: var(--border);
    cursor: pointer;
    transition: color 0.15s;
}

.star-rating input:checked ~ label,
.star-rating label:hover,
.star-rating label:hover ~ label {
    color: #f59e0b;
}

@media (max-width: 720px) {
    .my-listings-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* My Sales table */

.my-sales-page {
    max-width: 980px;
    margin: 48px auto;
}

.sales-table-wrap {
    overflow-x: auto;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: var(--surface);
}

.sales-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

.sales-table th,
.sales-table td {
    padding: 12px 14px;
    text-align: left;
    white-space: nowrap;
    border-bottom: 1px solid var(--border);
}

.sales-table th {
    color: var(--muted);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.sales-table tbody tr:last-child td {
    border-bottom: none;
}

.sales-product {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text);
    font-weight: 650;
    white-space: normal;
}

.sales-product-thumb {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    overflow: hidden;
    background: var(--navy);
    flex-shrink: 0;
}

.sales-product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sales-table-muted {
    color: var(--muted);
}

.sales-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    border: none;
    cursor: default;
}

.sales-badge-done {
    background: rgba(22, 163, 74, 0.12);
    color: var(--green, #16a34a);
}

.sales-badge-pending {
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--text);
    cursor: pointer;
}

.sales-badge-pending:hover {
    border-color: var(--blue);
    color: var(--blue);
}

/* Sell: type picker */

.sell-page {
    max-width: 900px;
    margin: 36px auto;
}

.sell-hero {
    padding: 26px 24px;
    border-radius: 20px;
    background: linear-gradient(135deg, #071426, var(--navy-light));
    color: #fff;
}

.sell-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #60a5fa;
    font-size: 13px;
    font-weight: 800;
}

.sell-hero h1 {
    margin: 14px 0 6px;
    font-size: 26px;
}

.sell-hero p {
    margin: 0;
    color: #cbd5e1;
    font-size: 13px;
}

.sell-type-grid {
    margin-top: 22px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.sell-type-card {
    display: flex;
    flex-direction: column;
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: var(--surface);
}

.sell-type-card:hover {
    border-color: var(--accent);
}

.sell-type-icon {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    border-radius: 13px;
    background: color-mix(in srgb, var(--accent) 12%, transparent);
    color: var(--accent);
}

.sell-type-card strong {
    color: var(--text);
    font-size: 15px;
}

.sell-type-card small {
    margin-top: 3px;
    color: var(--muted);
    font-size: 12px;
}

.sell-type-cta {
    margin-top: 10px;
    color: var(--accent);
    font-size: 12px;
    font-weight: 800;
}

.sell-note {
    margin-top: 20px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: var(--surface);
    color: var(--green);
}

.sell-note p {
    margin: 0;
    color: var(--muted);
    font-size: 12px;
    font-weight: 600;
}

@media (max-width: 720px) {
    .sell-type-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Sell: create-listing form */

.sell-form-page {
    max-width: 640px;
    margin: 36px auto;
}

.sell-form-page h1 {
    margin: 0 0 6px;
    font-size: 24px;
}

.sell-form-page > p {
    margin: 0 0 24px;
    color: var(--muted);
    font-size: 13px;
}

.sell-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.sell-form label {
    display: flex;
    flex-direction: column;
    gap: 6px;
    color: var(--text);
    font-size: 13px;
    font-weight: 700;
}

.sell-form label small {
    color: var(--muted);
    font-weight: 500;
}

.sell-form label[hidden] {
    display: none;
}

.sell-form label.sell-form-checkbox {
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.sell-form label.sell-form-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
}

.sell-form input[type="text"],
.sell-form input[type="number"],
.sell-form input[type="password"],
.sell-form select,
.sell-form textarea {
    padding: 12px 14px;
    border: 1px solid var(--border);
    border-radius: 10px;
    font-size: 14px;
    font-weight: 400;
    background: #fff;
    color: var(--text);
}

.sell-form textarea {
    resize: vertical;
    font-family: inherit;
}

.sell-form input:focus,
.sell-form select:focus,
.sell-form textarea:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.10);
}

.sell-form input[type="file"] {
    padding: 10px 0;
}

.sell-form > button {
    min-height: 52px;
    border: 0;
    border-radius: 13px;
    background: var(--blue);
    color: #fff;
    font-weight: 850;
    cursor: pointer;
}

.sell-form > button:hover {
    background: var(--blue-dark);
}

.photo-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.photo-preview:not(:empty) {
    margin-top: 4px;
}

.photo-preview-item {
    position: relative;
    width: 84px;
    height: 84px;
    border-radius: 12px;
    overflow: hidden;
}

.photo-preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photo-preview-remove {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 22px;
    height: 22px;
    border: 0;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.85);
    color: #fff;
    font-size: 14px;
    line-height: 1;
    cursor: pointer;
}

.photo-preview-cover {
    position: absolute;
    left: 4px;
    bottom: 4px;
    padding: 2px 6px;
    border-radius: 6px;
    background: rgba(15, 23, 42, 0.85);
    color: #fff;
    font-size: 9px;
    font-weight: 800;
}

.sell-form-current-photo {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 12px;
    margin-top: 4px;
}

/* Profile hub */

.profile-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 24px;
    align-items: start;
}

.profile-identity {
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-radius: 20px;
    background: linear-gradient(160deg, #071426, var(--navy-light));
    color: #fff;
}

.profile-identity .profile-avatar {
    margin-bottom: 14px;
}

.profile-identity-name {
    font-size: 17px;
}

.profile-identity-location {
    margin-top: 5px;
    color: #cbd5e1;
    font-size: 13px;
}

.profile-identity-joined {
    margin-top: 3px;
    color: #94a3b8;
    font-size: 11px;
}

.profile-identity .logout-form {
    margin-top: 20px;
    width: 100%;
}

.logout-button {
    width: 100%;
    padding: 10px;
    border: 1px solid #cbd5e1;
    border-radius: 11px;
    background: #fff;
    color: #475569;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
}

.logout-button:hover {
    border-color: #94a3b8;
}

.profile-heading h2 {
    margin: 0;
    font-size: 27px;
}

.profile-heading p {
    margin: 6px 0 23px;
    color: #64748b;
    font-size: 13px;
}

.profile-menu-grid {
    display: grid;
    grid-template-columns:
        repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.profile-menu-grid a {
    min-height: 145px;
    padding: 19px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 17px;
    transition: 160ms ease;
}

.profile-menu-grid a:hover {
    transform: translateY(-3px);
    border-color: #bfdbfe;
    box-shadow: 0 12px 30px
        rgba(15, 23, 42, 0.08);
}

.profile-menu-grid span,
.profile-menu-grid strong,
.profile-menu-grid small {
    display: block;
}

.profile-menu-grid span {
    margin-bottom: 13px;
    display: block;
    color: var(--blue);
}

.profile-menu-grid span .icon {
    width: 25px;
    height: 25px;
}

.profile-menu-grid strong {
    font-size: 14px;
}

.profile-menu-grid small {
    margin-top: 5px;
    color: #64748b;
}

@media (max-width: 900px) {
    .profile-layout {
        grid-template-columns: 1fr;
    }

    .profile-menu-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }
}

.edit-profile-link {
    width: 100%;
    margin-top: 16px;
    padding: 10px;
    display: block;
    box-sizing: border-box;
    color: #fff;
    background: var(--blue);
    border: 1px solid var(--blue);
    border-radius: 11px;
    font-size: 13px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    transition: background-color 160ms ease, border-color 160ms ease;
}

.edit-profile-link:hover {
    background: var(--blue-dark);
    border-color: var(--blue-dark);
    color: #fff;
}

/* Edit profile form */

.avatar-picker {
    display: flex;
    align-items: center;
    gap: 14px;
}

.avatar-picker-preview {
    width: 64px;
    height: 64px;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--navy);
    color: #fff;
    font-size: 22px;
    font-weight: 800;
    object-fit: cover;
}

.account-type-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.account-type-card {
    display: block;
    cursor: pointer;
}

.account-type-card input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.account-type-card span {
    display: block;
    padding: 14px;
    border: 1px solid var(--border);
    border-radius: 14px;
    text-align: center;
}

.account-type-card span strong {
    display: block;
    color: var(--text);
    font-size: 14px;
    font-weight: 700;
}

.account-type-card span small {
    display: block;
    margin-top: 3px;
    color: var(--muted);
    font-size: 11px;
}

.account-type-card input:checked + span {
    border-color: var(--blue);
    background: rgba(37, 99, 235, 0.06);
}

.account-type-card input:checked + span strong {
    color: var(--blue);
}

/* Public seller page */

.seller-page {
    max-width: 980px;
    margin: 48px auto;
}

.seller-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.seller-header h1 {
    margin: 0;
    font-size: 22px;
}

.seller-username {
    margin: 4px 0 0;
    color: var(--muted);
    font-size: 13px;
}

.seller-badges {
    margin-top: 8px;
    display: flex;
    gap: 8px;
}

.seller-badge {
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
}

.seller-badge-premium {
    background: rgba(16, 185, 129, 0.10);
    color: var(--green);
}

.seller-badge-account {
    background: rgba(37, 99, 235, 0.10);
    color: var(--blue);
}

.seller-badge-rating {
    background: rgba(245, 158, 11, 0.12);
    color: #b45309;
}

.seller-meta {
    margin: 10px 0 0;
    color: var(--muted);
    font-size: 12px;
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.review-card {
    display: flex;
    gap: 12px;
    padding: 14px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: var(--surface);
}

.review-avatar {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.review-avatar-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--border);
    color: var(--text);
    font-weight: 800;
}

.review-body {
    flex: 1;
    min-width: 0;
}

.review-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 13px;
}

.review-meta strong {
    color: var(--text);
}

.review-stars {
    color: #f59e0b;
    letter-spacing: 1px;
}

.review-date {
    color: var(--muted);
    font-size: 12px;
}

.review-body p {
    margin: 6px 0 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.6;
}

.seller-listings-heading {
    margin: 0 0 16px;
    font-size: 20px;
}

/* Messages: inbox */

.messages-page {
    max-width: 720px;
    margin: 48px auto;
}

.messages-page h1 {
    margin: 0 0 20px;
    font-size: 24px;
}

.conversation-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: var(--surface);
    overflow: hidden;
}

.conversation-row {
    display: flex;
    align-items: stretch;
    border-bottom: 1px solid var(--border);
}

.conversation-row:last-child {
    border-bottom: 0;
}

.conversation-row.is-unread {
    background: rgba(37, 99, 235, 0.04);
}

.conversation-link {
    flex: 1;
    min-width: 0;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.conversation-avatar {
    flex: 0 0 auto;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #eff6ff;
    color: var(--blue);
    font-size: 22px;
    object-fit: cover;
}

.conversation-info {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.conversation-top {
    display: flex;
    align-items: center;
    gap: 8px;
}

.conversation-top strong {
    color: var(--text);
    font-size: 14px;
}

.conversation-badge {
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--blue);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
}

.conversation-listing {
    color: var(--blue);
    font-size: 11px;
    font-weight: 700;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.conversation-preview {
    color: var(--muted);
    font-size: 13px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.conversation-delete {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    padding: 0 14px;
}

.conversation-delete button {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: var(--muted);
    cursor: pointer;
}

.conversation-delete button:hover {
    background: #fef2f2;
    color: #dc2626;
}

/* Messages: thread */

.thread-page {
    max-width: 640px;
    margin: 36px auto;
}

.thread-heading {
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
}

.thread-heading strong {
    font-size: 18px;
    color: var(--text);
}

.thread-heading span {
    color: var(--blue);
    font-size: 12px;
    font-weight: 700;
}

.thread-messages {
    min-height: 320px;
    max-height: 55vh;
    overflow-y: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: #eff4fc;
}

.thread-empty {
    margin: auto;
    text-align: center;
    color: var(--muted);
}

.thread-empty span {
    display: block;
    margin-bottom: 10px;
    color: var(--muted);
}

.thread-bubble-row {
    display: flex;
    justify-content: flex-start;
}

.thread-bubble-row.is-mine {
    justify-content: flex-end;
}

.thread-bubble {
    max-width: 280px;
    padding: 10px 14px;
    border: 1px solid var(--border);
    border-radius: 16px 16px 16px 4px;
    background: #fff;
}

.thread-bubble-row.is-mine .thread-bubble {
    border-radius: 16px 16px 4px 16px;
    background: #dceafe;
    border-color: #bfdbfe;
}

.thread-bubble p {
    margin: 0;
    color: var(--text);
    font-size: 14px;
}

.thread-bubble small {
    display: block;
    margin-top: 4px;
    color: var(--muted);
    font-size: 10px;
    text-align: right;
}

.thread-composer {
    margin-top: 14px;
    display: flex;
    gap: 10px;
    align-items: flex-end;
}

.thread-composer textarea {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: var(--background);
    font-family: inherit;
    resize: vertical;
}

.thread-composer textarea:focus {
    outline: none;
    border-color: var(--blue);
}

.thread-composer button {
    min-height: 44px;
    padding: 0 22px;
    border: 0;
    border-radius: 999px;
    background: var(--blue);
    color: #fff;
    font-weight: 800;
    cursor: pointer;
}

.thread-composer button:hover {
    background: var(--blue-dark);
}
/* =========================================================
   MENVO LEGAL, HELP AND SAFETY PAGES
   ========================================================= */

.legal-main {
    min-height: 70vh;
    background: #f4f7fb;
    padding: 48px 0 72px;
}

.legal-page {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

.legal-hero {
    margin-bottom: 38px;
    padding: 42px;
    color: #ffffff;
    background:
        linear-gradient(
            135deg,
            #0f172a 0%,
            #172554 100%
        );
    border-radius: 24px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.14);
}

.legal-label {
    display: inline-flex;
    margin-bottom: 14px;
    padding: 7px 12px;
    color: #bfdbfe;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.legal-hero h1 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(34px, 5vw, 52px);
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.legal-intro {
    max-width: 780px;
    margin: 18px 0 0;
    color: #dbeafe;
    font-size: 17px;
    line-height: 1.75;
}

.legal-effective-date {
    margin: 20px 0 0;
    color: #93c5fd;
    font-size: 13px;
    font-weight: 700;
}

.legal-layout {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 28px;
    align-items: start;
}

.legal-navigation {
    position: sticky;
    top: 100px;
    padding: 22px;
    background: #ffffff;
    border: 1px solid #dbe3ef;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.legal-navigation strong {
    display: block;
    margin-bottom: 14px;
    color: #0f172a;
    font-size: 14px;
}

.legal-navigation nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.legal-navigation a {
    padding: 9px 10px;
    color: #64748b;
    border-radius: 9px;
    font-size: 13px;
    line-height: 1.35;
    text-decoration: none;
    transition:
        color 0.2s ease,
        background-color 0.2s ease;
}

.legal-navigation a:hover {
    color: #2563eb;
    background: #eff6ff;
}

.legal-content {
    padding: 12px 38px 38px;
    background: #ffffff;
    border: 1px solid #dbe3ef;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.legal-section {
    padding: 30px 0;
    scroll-margin-top: 110px;
    border-bottom: 1px solid #e2e8f0;
}

.legal-section:last-of-type {
    border-bottom: 0;
}

.legal-section h2,
.legal-contact-card h2,
.legal-page > h2 {
    margin: 0 0 14px;
    color: #0f172a;
    font-size: 22px;
    line-height: 1.25;
}

.legal-section p,
.legal-page > p {
    margin: 0 0 14px;
    color: #475569;
    font-size: 15px;
    line-height: 1.8;
}

.legal-section p:last-child {
    margin-bottom: 0;
}

.legal-section ul,
.safety-tips-list {
    margin: 14px 0 0;
    padding-left: 22px;
}

.legal-section li,
.safety-tips-list li {
    margin-bottom: 10px;
    color: #475569;
    font-size: 15px;
    line-height: 1.7;
}

.legal-section li::marker,
.safety-tips-list li::marker {
    color: #2563eb;
}

.legal-content a,
.legal-page a {
    color: #2563eb;
    font-weight: 700;
}

.legal-contact-card {
    margin-top: 28px;
    padding: 26px;
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 16px;
}

.legal-contact-card p {
    margin: 0;
    color: #475569;
    line-height: 1.7;
}

/* Pricing */

.pricing-benefits {
    margin-bottom: 28px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.pricing-benefit {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 20px;
    background: #ffffff;
    border: 1px solid #dbe3ef;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.pricing-benefit-icon {
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: rgba(37, 99, 235, 0.10);
    color: var(--blue);
}

.pricing-benefit strong {
    display: block;
    color: #0f172a;
    font-size: 14px;
}

.pricing-benefit p {
    margin: 4px 0 0;
    color: #64748b;
    font-size: 12.5px;
    line-height: 1.5;
}

.pricing-plans {
    margin-bottom: 28px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.pricing-plan-card {
    position: relative;
    padding: 26px 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: #ffffff;
    border: 1px solid #dbe3ef;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.pricing-plan-card.pricing-plan-best {
    border-color: var(--blue);
    border-width: 2px;
}

.pricing-plan-badge {
    position: absolute;
    top: -12px;
    padding: 4px 12px;
    border-radius: 999px;
    background: var(--green);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.pricing-plan-name {
    color: #64748b;
    font-size: 13px;
    font-weight: 700;
}

.pricing-plan-price {
    margin: 8px 0 4px;
    color: var(--blue);
    font-size: 30px;
    font-weight: 900;
}

.pricing-plan-period {
    color: #94a3b8;
    font-size: 12px;
}

.pricing-cta {
    text-align: center;
}

.pricing-cta .app-badges {
    margin-top: 6px;
    justify-content: center;
}

@media (max-width: 850px) {
    .pricing-benefits {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .pricing-plans {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 520px) {
    .pricing-benefits {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 850px) {
    .legal-main {
        padding: 24px 0 48px;
    }

    .legal-page {
        padding: 0 16px;
    }

    .legal-hero {
        padding: 30px 24px;
        border-radius: 18px;
    }

    .legal-layout {
        grid-template-columns: 1fr;
    }

    .legal-navigation {
        position: static;
    }

    .legal-navigation nav {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .legal-content {
        padding: 4px 24px 28px;
    }
}

@media (max-width: 520px) {
    .legal-hero h1 {
        font-size: 34px;
    }

    .legal-intro {
        font-size: 15px;
    }

    .legal-navigation nav {
        grid-template-columns: 1fr;
    }

    .legal-content {
        padding: 2px 20px 24px;
    }

    .legal-section {
        padding: 25px 0;
    }

    .legal-section h2 {
        font-size: 19px;
    }
}


/* =========================================================
   MENVO MARKETING PAGES
   ========================================================= */

.marketing-page {
    overflow: hidden;
    background: #ffffff;
}

.marketing-hero {
    position: relative;
    padding: 76px 0 88px;
    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(37, 99, 235, 0.25),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #071126 0%,
            #101f49 58%,
            #183b89 100%
        );
}

.marketing-hero::after {
    position: absolute;
    right: -140px;
    bottom: -240px;
    width: 520px;
    height: 520px;
    content: '';
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
}

.marketing-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, 0.9fr);
    gap: 72px;
    align-items: center;
}

.marketing-hero-content {
    max-width: 680px;
}

.marketing-eyebrow {
    display: inline-flex;
    margin-bottom: 20px;
    padding: 8px 13px;
    color: #bfdbfe;
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 850;
    letter-spacing: 0.1em;
}

.marketing-eyebrow.dark {
    color: #2563eb;
    background: #eff6ff;
    border-color: #bfdbfe;
}

.marketing-hero h1 {
    max-width: 720px;
    margin: 0;
    color: #ffffff;
    font-size: clamp(46px, 6vw, 76px);
    line-height: 0.98;
    letter-spacing: -0.055em;
}

.marketing-hero h1 span {
    display: block;
    color: #60a5fa;
}

.marketing-hero-content > p {
    max-width: 650px;
    margin: 26px 0 0;
    color: #cbd5e1;
    font-size: 18px;
    line-height: 1.75;
}

.marketing-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    margin-top: 32px;
}

.marketing-primary-button,
.marketing-secondary-button {
    min-height: 52px;
    padding: 0 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    font-weight: 800;
    text-decoration: none;
    transition:
        transform 160ms ease,
        box-shadow 160ms ease,
        background-color 160ms ease;
}

.marketing-primary-button {
    color: #ffffff;
    background: #2563eb;
    box-shadow: 0 12px 28px rgba(37, 99, 235, 0.32);
}

.marketing-primary-button:hover {
    color: #ffffff;
    background: #1d4ed8;
    transform: translateY(-2px);
}

.marketing-secondary-button {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.marketing-secondary-button:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.15);
}

.marketing-secondary-button.light {
    color: #0f172a;
    background: #ffffff;
    border-color: #ffffff;
}

.marketing-trust-row {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    color: #93c5fd;
    font-size: 13px;
    font-weight: 700;
}

.marketing-hero-visual {
    position: relative;
    min-height: 470px;
}

.marketing-visual-main {
    position: absolute;
    inset: 18px 10px 18px 44px;
    overflow: hidden;
    background: #ffffff;
    border: 7px solid rgba(255, 255, 255, 0.12);
    border-radius: 28px;
    box-shadow: 0 35px 75px rgba(0, 0, 0, 0.34);
}

.marketing-visual-main img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.marketing-visual-main::after {
    position: absolute;
    inset: 0;
    content: '';
    background:
        linear-gradient(
            180deg,
            transparent 42%,
            rgba(7, 17, 38, 0.9) 100%
        );
}

.marketing-visual-caption {
    position: absolute;
    z-index: 1;
    right: 26px;
    bottom: 25px;
    left: 26px;
    color: #ffffff;
}

.marketing-visual-caption strong,
.marketing-visual-caption span {
    display: block;
}

.marketing-visual-caption strong {
    font-size: 20px;
}

.marketing-visual-caption span {
    margin-top: 5px;
    color: #cbd5e1;
    font-size: 13px;
}

.marketing-floating-card {
    position: absolute;
    z-index: 2;
    min-width: 205px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 16px;
    box-shadow: 0 18px 40px rgba(7, 17, 38, 0.24);
}

.marketing-floating-card > span {
    width: 43px;
    height: 43px;
    display: grid;
    place-items: center;
    background: #eff6ff;
    border-radius: 12px;
    font-size: 22px;
}

.marketing-floating-card strong,
.marketing-floating-card small {
    display: block;
}

.marketing-floating-card strong {
    color: #0f172a;
    font-size: 14px;
}

.marketing-floating-card small {
    margin-top: 3px;
    color: #64748b;
    font-size: 11px;
}

.marketing-floating-card.card-one {
    top: 0;
    right: -8px;
}

.marketing-floating-card.card-two {
    bottom: 0;
    left: 0;
}

.marketing-section {
    padding: 88px 0;
}

.marketing-section-heading {
    max-width: 720px;
    margin: 0 auto 42px;
    text-align: center;
}

.marketing-section-heading > span {
    color: #2563eb;
    font-size: 12px;
    font-weight: 850;
    letter-spacing: 0.12em;
}

.marketing-section-heading h2,
.marketing-story-content h2,
.marketing-final-cta h2 {
    margin: 12px 0 0;
    color: #0f172a;
    font-size: clamp(34px, 4vw, 50px);
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.marketing-section-heading p {
    margin: 16px auto 0;
    color: #64748b;
    font-size: 17px;
    line-height: 1.7;
}

.marketing-category-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.marketing-category-card {
    padding: 27px;
    color: inherit;
    background: #ffffff;
    border: 1px solid #dbe3ef;
    border-radius: 20px;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
    text-decoration: none;
    transition:
        transform 180ms ease,
        border-color 180ms ease,
        box-shadow 180ms ease;
}

.marketing-category-card:hover {
    transform: translateY(-5px);
    border-color: #93c5fd;
    box-shadow: 0 20px 42px rgba(15, 23, 42, 0.1);
}

.marketing-category-card > span {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    background: #eff6ff;
    border-radius: 15px;
    font-size: 25px;
}

.marketing-category-card h3 {
    margin: 20px 0 8px;
    color: #0f172a;
    font-size: 20px;
}

.marketing-category-card p {
    min-height: 48px;
    margin: 0;
    color: #64748b;
    font-size: 14px;
    line-height: 1.65;
}

.marketing-category-card strong {
    margin-top: 18px;
    display: block;
    color: #2563eb;
    font-size: 13px;
}

.marketing-story-section {
    background: #f4f7fb;
}

.marketing-story-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 70px;
    align-items: center;
}

.marketing-story-image {
    height: 520px;
    overflow: hidden;
    border-radius: 26px;
    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.16);
}

.marketing-story-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.marketing-story-content > p {
    margin: 18px 0 0;
    color: #475569;
    font-size: 16px;
    line-height: 1.8;
}

.marketing-check-list {
    margin: 25px 0 0;
    padding: 0;
    list-style: none;
}

.marketing-check-list li {
    position: relative;
    margin: 13px 0;
    padding-left: 30px;
    color: #334155;
    line-height: 1.55;
}

.marketing-check-list li::before {
    position: absolute;
    top: 1px;
    left: 0;
    width: 21px;
    height: 21px;
    display: grid;
    place-items: center;
    content: '✓';
    color: #ffffff;
    background: #2563eb;
    border-radius: 50%;
    font-size: 11px;
    font-weight: 900;
}

.marketing-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.marketing-steps article {
    position: relative;
    padding: 30px;
    background: #ffffff;
    border: 1px solid #dbe3ef;
    border-radius: 20px;
}

.marketing-steps article > span {
    position: absolute;
    top: 20px;
    right: 22px;
    color: #dbeafe;
    font-size: 34px;
    font-weight: 900;
}

.marketing-step-icon {
    width: 55px;
    height: 55px;
    display: grid;
    place-items: center;
    background: #eff6ff;
    border-radius: 16px;
    font-size: 25px;
}

.marketing-steps h3 {
    margin: 20px 0 8px;
    color: #0f172a;
    font-size: 20px;
}

.marketing-steps p {
    margin: 0;
    color: #64748b;
    font-size: 14px;
    line-height: 1.7;
}

.marketing-values-section {
    background:
        linear-gradient(
            135deg,
            #071126 0%,
            #172554 100%
        );
}

.marketing-section-heading.light h2 {
    color: #ffffff;
}

.marketing-section-heading.light > span {
    color: #93c5fd;
}

.marketing-values-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.marketing-values-grid article {
    padding: 30px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 20px;
}

.marketing-values-grid article > span {
    font-size: 28px;
}

.marketing-values-grid h3 {
    margin: 18px 0 9px;
    color: #ffffff;
    font-size: 20px;
}

.marketing-values-grid p {
    margin: 0;
    color: #cbd5e1;
    font-size: 14px;
    line-height: 1.75;
}

.marketing-final-cta {
    padding: 76px 0;
    background: #eff6ff;
}

.marketing-final-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.marketing-final-cta-inner > div:first-child {
    max-width: 720px;
}

.marketing-final-cta-inner > div:first-child > span {
    color: #2563eb;
    font-size: 12px;
    font-weight: 850;
    letter-spacing: 0.1em;
}

.marketing-final-cta p {
    margin: 14px 0 0;
    color: #64748b;
    line-height: 1.7;
}

.marketing-final-cta .marketing-actions {
    flex: 0 0 auto;
    margin-top: 0;
}

@media (max-width: 1050px) {
    .marketing-hero-grid {
        grid-template-columns: 1fr;
    }

    .marketing-hero-content {
        max-width: 760px;
    }

    .marketing-hero-visual {
        width: min(100%, 680px);
        margin: 0 auto;
    }
}

@media (max-width: 820px) {
    .marketing-category-grid,
    .marketing-values-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .marketing-story-grid {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .marketing-story-image {
        height: 420px;
    }

    .marketing-final-cta-inner {
        display: block;
    }

    .marketing-final-cta .marketing-actions {
        margin-top: 28px;
    }
}

@media (max-width: 620px) {
    .marketing-hero {
        padding: 52px 0 65px;
    }

    .marketing-hero-grid {
        gap: 42px;
    }

    .marketing-hero h1 {
        font-size: 45px;
    }

    .marketing-hero-content > p {
        font-size: 16px;
    }

    .marketing-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .marketing-primary-button,
    .marketing-secondary-button {
        width: 100%;
    }

    .marketing-trust-row {
        display: grid;
        gap: 9px;
    }

    .marketing-hero-visual {
        min-height: 350px;
    }

    .marketing-visual-main {
        inset: 15px 0;
    }

    .marketing-floating-card {
        display: none;
    }

    .marketing-section {
        padding: 62px 0;
    }

    .marketing-category-grid,
    .marketing-values-grid,
    .marketing-steps {
        grid-template-columns: 1fr;
    }

    .marketing-story-image {
        height: 330px;
        border-radius: 19px;
    }

    .marketing-section-heading {
        text-align: left;
    }

    .marketing-category-card p {
        min-height: 0;
    }
}


/* =========================================================
   MENVO FOR BUSINESS
   ========================================================= */

.business-hero {
    background:
        radial-gradient(
            circle at 82% 20%,
            rgba(16, 185, 129, 0.24),
            transparent 31%
        ),
        linear-gradient(
            135deg,
            #071126 0%,
            #10234e 58%,
            #134e4a 125%
        );
}

.business-proof-strip {
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
}

.business-proof-grid {
    min-height: 112px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: center;
}

.business-proof-grid article {
    min-width: 0;
    padding: 13px 28px;
    border-right: 1px solid #e2e8f0;
}

.business-proof-grid article:first-child {
    padding-left: 0;
}

.business-proof-grid article:last-child {
    padding-right: 0;
    border-right: 0;
}

.business-proof-grid strong,
.business-proof-grid span {
    display: block;
}

.business-proof-grid strong {
    color: #0f172a;
    font-size: 16px;
}

.business-proof-grid span {
    margin-top: 5px;
    color: #64748b;
    font-size: 12px;
    line-height: 1.5;
}

.business-benefit-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.business-benefit-grid article {
    padding: 30px;
    background: #ffffff;
    border: 1px solid #dbe3ef;
    border-radius: 20px;
    box-shadow: 0 9px 25px rgba(15, 23, 42, 0.045);
    transition:
        transform 180ms ease,
        border-color 180ms ease,
        box-shadow 180ms ease;
}

.business-benefit-grid article:hover {
    transform: translateY(-5px);
    border-color: #93c5fd;
    box-shadow: 0 20px 42px rgba(15, 23, 42, 0.1);
}

.business-benefit-grid article > span {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    background:
        linear-gradient(
            135deg,
            #eff6ff,
            #ecfdf5
        );
    border-radius: 16px;
    font-size: 25px;
}

.business-benefit-grid h3 {
    margin: 21px 0 9px;
    color: #0f172a;
    font-size: 20px;
}

.business-benefit-grid p {
    margin: 0;
    color: #64748b;
    font-size: 14px;
    line-height: 1.72;
}

.business-tools-image {
    order: 2;
}

.business-types-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.business-types-grid article {
    min-height: 130px;
    padding: 22px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #f8fafc;
    border: 1px solid #dbe3ef;
    border-radius: 17px;
    transition:
        transform 160ms ease,
        background-color 160ms ease,
        border-color 160ms ease;
}

.business-types-grid article:hover {
    transform: translateY(-3px);
    background: #eff6ff;
    border-color: #93c5fd;
}

.business-types-grid article > span {
    font-size: 27px;
}

.business-types-grid strong {
    margin-top: 14px;
    color: #0f172a;
    font-size: 14px;
}

.business-launch-section {
    padding: 88px 0;
    background: #f4f7fb;
}

.business-launch-card {
    padding: 58px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 65px;
    align-items: center;
    color: #ffffff;
    background:
        radial-gradient(
            circle at 90% 10%,
            rgba(59, 130, 246, 0.35),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #071126,
            #172554
        );
    border-radius: 28px;
    box-shadow: 0 25px 65px rgba(15, 23, 42, 0.2);
}

.business-launch-content {
    max-width: 690px;
}

.business-launch-content h2 {
    margin: 6px 0 0;
    color: #ffffff;
    font-size: clamp(35px, 4vw, 50px);
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.business-launch-content > p {
    margin: 18px 0 0;
    color: #cbd5e1;
    font-size: 16px;
    line-height: 1.75;
}

.business-launch-content ul {
    margin: 24px 0 30px;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 13px;
    list-style: none;
}

.business-launch-content li {
    position: relative;
    padding-left: 25px;
    color: #dbeafe;
    font-size: 13px;
    line-height: 1.5;
}

.business-launch-content li::before {
    position: absolute;
    left: 0;
    content: '✓';
    color: #34d399;
    font-weight: 900;
}

.business-launch-badge {
    aspect-ratio: 1;
    padding: 34px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background:
        linear-gradient(
            145deg,
            #2563eb,
            #1d4ed8
        );
    border: 8px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.25);
}

.business-launch-badge span {
    color: #bfdbfe;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.15em;
}

.business-launch-badge strong {
    margin: 5px 0;
    color: #ffffff;
    font-size: 52px;
    line-height: 1;
    letter-spacing: -0.05em;
}

.business-launch-badge small {
    max-width: 190px;
    color: #dbeafe;
    font-size: 11px;
    line-height: 1.5;
}

.business-faq-section {
    background: #ffffff;
}

.business-faq-list {
    max-width: 880px;
    margin: 0 auto;
    display: grid;
    gap: 12px;
}

.business-faq-list details {
    overflow: hidden;
    background: #f8fafc;
    border: 1px solid #dbe3ef;
    border-radius: 15px;
    transition:
        border-color 160ms ease,
        background-color 160ms ease;
}

.business-faq-list details[open] {
    background: #ffffff;
    border-color: #93c5fd;
}

.business-faq-list summary {
    position: relative;
    padding: 22px 58px 22px 23px;
    color: #0f172a;
    cursor: pointer;
    font-size: 15px;
    font-weight: 800;
    list-style: none;
}

.business-faq-list summary::-webkit-details-marker {
    display: none;
}

.business-faq-list summary::after {
    position: absolute;
    top: 50%;
    right: 22px;
    width: 29px;
    height: 29px;
    display: grid;
    place-items: center;
    content: '+';
    color: #2563eb;
    background: #eff6ff;
    border-radius: 50%;
    font-size: 19px;
    transform: translateY(-50%);
}

.business-faq-list details[open] summary::after {
    content: '−';
}

.business-faq-list details p {
    margin: 0;
    padding: 0 23px 22px;
    color: #64748b;
    font-size: 14px;
    line-height: 1.75;
}

.business-final-cta {
    background:
        linear-gradient(
            120deg,
            #ecfdf5,
            #eff6ff
        );
}

@media (max-width: 950px) {
    .business-proof-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        padding: 17px 0;
    }

    .business-proof-grid article {
        padding: 16px;
        border-right: 0;
    }

    .business-benefit-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .business-types-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .business-launch-card {
        grid-template-columns: 1fr;
    }

    .business-launch-badge {
        width: min(280px, 100%);
        margin: 0 auto;
    }
}

@media (max-width: 620px) {
    .business-proof-grid {
        grid-template-columns: 1fr;
    }

    .business-proof-grid article {
        padding: 14px 0;
        border-bottom: 1px solid #e2e8f0;
    }

    .business-proof-grid article:last-child {
        border-bottom: 0;
    }

    .business-benefit-grid {
        grid-template-columns: 1fr;
    }

    .business-types-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .business-types-grid article {
        min-height: 115px;
        padding: 17px;
    }

    .business-launch-section {
        padding: 58px 0;
    }

    .business-launch-card {
        padding: 34px 22px;
        gap: 42px;
        border-radius: 20px;
    }

    .business-launch-content ul {
        grid-template-columns: 1fr;
    }

    .business-launch-badge strong {
        font-size: 45px;
    }
}


/* =========================================================
   HOME BUSINESS PROMOTION
   ========================================================= */

.home-business-promo {
    padding-bottom: 54px;
}

.home-business-promo-card {
    position: relative;
    min-height: 350px;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #ffffff;
    background: #071126;
    border-radius: 26px;
    box-shadow: 0 22px 55px rgba(15, 23, 42, 0.18);
    text-decoration: none;
    isolation: isolate;
}

.home-business-promo-image,
.home-business-promo-overlay {
    position: absolute;
    inset: 0;
}

.home-business-promo-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 500ms ease;
}

.home-business-promo-card:hover
.home-business-promo-image img {
    transform: scale(1.035);
}

.home-business-promo-overlay {
    z-index: 1;
    background:
        linear-gradient(
            90deg,
            rgba(7, 17, 38, 0.98) 0%,
            rgba(7, 17, 38, 0.9) 42%,
            rgba(7, 17, 38, 0.35) 75%,
            rgba(7, 17, 38, 0.18) 100%
        );
}

.home-business-promo-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    padding: 52px;
}

.home-business-promo-content > span {
    color: #93c5fd;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.12em;
}

.home-business-promo-content h2 {
    margin: 12px 0 0;
    color: #ffffff;
    font-size: clamp(35px, 4vw, 52px);
    line-height: 1.04;
    letter-spacing: -0.045em;
}

.home-business-promo-content p {
    max-width: 570px;
    margin: 17px 0 0;
    color: #dbeafe;
    font-size: 16px;
    line-height: 1.7;
}

.home-business-promo-content > strong {
    width: fit-content;
    margin-top: 26px;
    padding: 13px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
    background: #2563eb;
    border-radius: 12px;
    font-size: 13px;
    box-shadow: 0 12px 28px rgba(37, 99, 235, 0.3);
}

.home-business-promo-content > strong span {
    font-size: 19px;
    transition: transform 160ms ease;
}

.home-business-promo-card:hover
.home-business-promo-content > strong span {
    transform: translateX(4px);
}

.home-business-promo-badge {
    position: absolute;
    z-index: 2;
    top: 28px;
    right: 30px;
    width: 135px;
    height: 135px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: rgba(37, 99, 235, 0.92);
    border: 5px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

.home-business-promo-badge small {
    max-width: 90px;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-align: center;
}

.home-business-promo-badge strong {
    margin-top: 4px;
    color: #ffffff;
    font-size: 29px;
}

@media (max-width: 720px) {
    .home-business-promo {
        padding-bottom: 38px;
    }

    .home-business-promo-card {
        min-height: 430px;
        align-items: flex-end;
        border-radius: 20px;
    }

    .home-business-promo-overlay {
        background:
            linear-gradient(
                0deg,
                rgba(7, 17, 38, 0.98) 0%,
                rgba(7, 17, 38, 0.84) 55%,
                rgba(7, 17, 38, 0.18) 100%
            );
    }

    .home-business-promo-content {
        padding: 30px 24px;
    }

    .home-business-promo-content h2 {
        font-size: 34px;
    }

    .home-business-promo-content p {
        font-size: 14px;
    }

    .home-business-promo-badge {
        top: 18px;
        right: 18px;
        width: 102px;
        height: 102px;
    }

    .home-business-promo-badge strong {
        font-size: 23px;
    }
}


/* MENVO business plan comparison */

.business-pricing-section {
    background: #f4f7fb;
}

.business-pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    align-items: stretch;
}

.business-price-card {
    position: relative;
    padding: 27px;
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid #dbe3ef;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.business-price-card.featured {
    border: 2px solid #2563eb;
    box-shadow: 0 20px 45px rgba(37, 99, 235, 0.16);
    transform: translateY(-8px);
}

.business-popular-label {
    position: absolute;
    top: -15px;
    left: 50%;
    padding: 7px 15px;
    color: #ffffff;
    background: #2563eb;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.08em;
    white-space: nowrap;
    transform: translateX(-50%);
}

.business-plan-heading > span {
    color: #2563eb;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.09em;
}

.business-plan-heading h3 {
    margin: 10px 0 7px;
    color: #0f172a;
    font-size: 22px;
}

.business-plan-heading p {
    min-height: 44px;
    margin: 0;
    color: #64748b;
    font-size: 13px;
    line-height: 1.55;
}

.business-plan-price {
    min-height: 87px;
    margin: 24px 0 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e2e8f0;
}

.business-plan-price strong,
.business-plan-price small {
    display: block;
}

.business-plan-price strong {
    color: #0f172a;
    font-size: 34px;
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.business-plan-price small {
    margin-top: 6px;
    color: #64748b;
    font-size: 12px;
}

.business-price-card ul {
    margin: 0 0 25px;
    padding: 0;
    flex: 1;
    list-style: none;
}

.business-price-card li {
    position: relative;
    margin-bottom: 12px;
    padding-left: 24px;
    color: #475569;
    font-size: 13px;
    line-height: 1.5;
}

.business-price-card li::before {
    position: absolute;
    left: 0;
    content: '✓';
    color: #16a34a;
    font-weight: 900;
}

.business-price-card > a {
    min-height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563eb;
    background: #eff6ff;
    border-radius: 11px;
    font-size: 13px;
    font-weight: 850;
    text-align: center;
    text-decoration: none;
}

.business-price-card.featured > a {
    color: #ffffff;
    background: #2563eb;
}

.business-price-card.launch-plan {
    background:
        linear-gradient(
            180deg,
            #ecfdf5,
            #ffffff 42%
        );
    border-color: #a7f3d0;
}

.business-price-card.premium-plan {
    background:
        linear-gradient(
            180deg,
            #eff6ff,
            #ffffff 42%
        );
}

.business-pricing-note {
    margin-top: 30px;
    padding: 18px 21px;
    color: #475569;
    background: #ffffff;
    border: 1px solid #dbe3ef;
    border-radius: 14px;
    font-size: 13px;
    line-height: 1.65;
    text-align: center;
}

.business-pricing-note strong {
    color: #0f172a;
}

@media (max-width: 1100px) {
    .business-pricing-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .business-price-card.featured {
        transform: none;
    }
}

@media (max-width: 620px) {
    .business-pricing-grid {
        grid-template-columns: 1fr;
    }

    .business-price-card {
        padding: 24px;
    }
}

/* Owner Boost panel */

.owner-boost-panel {
    margin: 18px 0;
    padding: 17px;
    background:
        linear-gradient(
            135deg,
            #eff6ff,
            #f8fafc
        );
    border: 1px solid #bfdbfe;
    border-radius: 15px;
}

.owner-boost-copy,
.owner-boost-active {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.owner-boost-active {
    padding: 4px;
}

.owner-boost-icon {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    display: grid;
    place-items: center;
    background: #ffffff;
    border-radius: 12px;
    font-size: 21px;
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.08);
}

.owner-boost-panel strong,
.owner-boost-panel small {
    display: block;
}

.owner-boost-panel strong {
    color: #0f172a;
    font-size: 14px;
}

.owner-boost-panel small {
    margin-top: 4px;
    color: #64748b;
    font-size: 11px;
    line-height: 1.55;
}

.owner-boost-active strong {
    color: #15803d;
}

.owner-boost-button {
    min-height: 45px;
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: #2563eb;
    border-radius: 11px;
    font-size: 13px;
    font-weight: 850;
    text-decoration: none;
    box-shadow: 0 10px 22px rgba(37, 99, 235, 0.22);
}

.owner-boost-button:hover {
    color: #ffffff;
    background: #1d4ed8;
}

/* Boost page */

.boost-page {
    max-width: 980px;
    padding-bottom: 60px;
}

.boost-hero {
    margin: 18px 0 32px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    background:
        linear-gradient(
            135deg,
            #eff6ff,
            #f8fafc
        );
    border: 1px solid #bfdbfe;
    border-radius: 16px;
}

.boost-hero-media {
    width: 72px;
    height: 72px;
    flex: 0 0 72px;
    overflow: hidden;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.08);
}

.boost-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.boost-hero-placeholder {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    color: var(--muted);
}

.boost-hero-copy {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.boost-hero-copy > span:first-child {
    color: var(--blue);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.boost-hero-copy strong {
    font-size: 20px;
    color: var(--text);
}

.boost-hero-copy > span:last-child {
    color: var(--muted);
    font-size: 13px;
}

.boost-plan-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.boost-plan-card {
    position: relative;
    padding: 26px 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.boost-plan-card.recommended {
    border-color: var(--blue);
    border-width: 2px;
}

.boost-plan-popular {
    position: absolute;
    top: -12px;
    padding: 4px 12px;
    border-radius: 999px;
    background: var(--green);
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.boost-plan-days {
    color: var(--blue);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.05em;
}

.boost-plan-card h2 {
    margin: 10px 0 4px;
    font-size: 18px;
    color: var(--text);
}

.boost-plan-card p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.5;
}

.boost-plan-price {
    margin: 18px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.boost-plan-price strong {
    font-size: 26px;
    color: var(--text);
}

.boost-plan-price small {
    color: var(--muted);
    font-size: 11px;
}

.boost-plan-card ul {
    margin: 0 0 22px;
    padding: 0;
    list-style: none;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
}

.boost-plan-card ul li {
    padding-left: 20px;
    position: relative;
    color: var(--text);
    font-size: 13px;
}

.boost-plan-card ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--green);
    font-weight: 800;
}

.boost-plan-card form {
    width: 100%;
}

.boost-plan-card button {
    width: 100%;
    min-height: 45px;
    border: none;
    border-radius: 11px;
    background: var(--navy);
    color: #ffffff;
    font-size: 13px;
    font-weight: 850;
    cursor: pointer;
}

.boost-plan-card.recommended button {
    background: var(--blue);
    color: #ffffff;
}

.boost-security-note {
    margin-top: 28px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
}

.boost-security-note p {
    margin: 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.55;
}

@media (max-width: 860px) {
    .boost-plan-grid {
        grid-template-columns: 1fr;
    }
}

.boost-stats-row {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}

.boost-stat {
    padding: 14px 20px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
}

.boost-stat strong {
    font-size: 22px;
    color: var(--navy);
}

.boost-stat span {
    font-size: 12px;
    color: var(--muted);
}

.boost-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.boost-card {
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    background: var(--surface);
}

.boost-card-media {
    position: relative;
    display: block;
    aspect-ratio: 4 / 3;
    background: var(--navy);
}

.boost-card-media img,
.boost-card-media .listing-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.boost-status {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    color: #fff;
    background: var(--muted);
}

.boost-status.active {
    background: var(--green);
}

.boost-status.pending {
    background: #f59e0b;
}

.boost-status.expired {
    background: #64748b;
}

.boost-card-body {
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.boost-card-body > a {
    color: var(--text);
    font-size: 14px;
    font-weight: 650;
}

.boost-time {
    font-size: 12px;
    color: var(--muted);
}

.boost-progress {
    height: 6px;
    border-radius: 999px;
    background: var(--border);
    overflow: hidden;
}

.boost-progress span {
    display: block;
    height: 100%;
    background: var(--blue);
    border-radius: 999px;
}

.boost-card-footer {
    margin-top: 4px;
    padding-top: 8px;
    border-top: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.boost-plan-info {
    font-size: 12px;
    color: var(--muted);
}

.boost-actions {
    display: flex;
    gap: 8px;
}

.boost-actions a {
    flex: 1;
    padding: 8px;
    border: 1px solid var(--border);
    border-radius: 9px;
    background: #fff;
    color: var(--text);
    font-size: 12px;
    font-weight: 700;
    text-align: center;
}

.boost-actions a:hover {
    border-color: var(--blue);
    color: var(--blue);
}

.boost-actions a.boost-extend-link {
    border-color: var(--blue);
    background: var(--blue);
    color: #ffffff;
}

.boost-actions a.boost-extend-link:hover {
    opacity: 0.9;
}

@media (max-width: 860px) {
    .boost-grid {
        grid-template-columns: 1fr;
    }

    .boost-stats-row {
        flex-wrap: wrap;
    }
}

