:root {
    --bg: #071018;
    --text: rgba(255, 255, 255, .92);
    --muted: rgba(255, 255, 255, .72);
    --muted2: rgba(255, 255, 255, .58);

    --accent: #12d6e8;
    --accent2: #18bcd0;
    --pill: 999px;

    --glass: rgba(10, 20, 28, .55);
    --glass2: rgba(255, 255, 255, .08);
    --stroke: rgba(255, 255, 255, .14);
    --stroke2: rgba(255, 255, 255, .22);

    --header-h: 78px;
    --radius: 18px;
    --page-bg: #07102d;
    --page-bg-rgb: 7, 16, 45;

    --shadow: 0 18px 50px rgba(0, 0, 0, .45);
    --shadow2: 0 12px 26px rgba(0, 0, 0, .35);

    --font-sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    --text-base: 16px;
    --text-sm: 14px;
    --text-xs: 13px;
    --leading-tight: 1.25;
    --leading-body: 1.6;
    --space-section: clamp(1rem, 4vw, 1.5rem);
}

* {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
}

body {
    margin: 0;
    font-family: var(--font-sans);
    font-size: var(--text-base);
    line-height: var(--leading-body);
    -webkit-font-smoothing: antialiased;
    background: var(--bg);
    color: var(--text);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-sans);
    font-weight: 600;
    line-height: var(--leading-tight);
}

/* Responsive media (hero, banners, cards) */
.hero__bg,
.cta-banner__bg,
.auction-hero__bg {
    background-size: cover;
    background-repeat: no-repeat;
}

.img-cover,
img[class*="__thumb"] {
    max-width: 100%;
    height: auto;
}

.media-cover {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}


body.nav-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(1380px, calc(100% - 48px));
    margin: 0 auto;
}

.fluid-container {
    width: min(1380px, 100%);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--space-section);
    padding-right: var(--space-section);
    box-sizing: border-box;
}

/*.fluid-container{*/
/*    z-index : auto !important;*/
/*}*/
/* =========================
   HERO SECTION
========================= */
.hero {
    position: relative;
    min-height: clamp(520px, 85vh, 820px);
    overflow: hidden;
}

/* Background image (boat must show) */
.hero__bg {
    position: absolute;
    inset: 0;
    background-image: url("../../frontend/assets/top.jpeg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center right;
    z-index: 0;
}

/* Overlay like Figma (NOT too dark) */
.hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;

    /* left side darker for text, right side lighter so boat stays visible */
    background:
        linear-gradient(90deg,
            rgba(6, 14, 20, .75) 0%,
            rgba(6, 14, 20, .55) 35%,
            rgba(6, 14, 20, .25) 65%,
            rgba(6, 14, 20, .15) 100%),

        /* slight top/bottom vignette */
        linear-gradient(180deg,
            rgba(0, 0, 0, .25) 0%,
            rgba(0, 0, 0, .15) 35%,
            rgba(0, 0, 0, .30) 100%);
}

/* =========================
   HEADER
========================= */
.header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    /* important */
    z-index: 9999;
    /* stronger than 10 */
    height: var(--header-h);
    padding: 0;
    font-family: var(--font-sans);

    /* match the About header look on the landing page */
    background: rgba(7, 16, 45, 0.96);
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.header__inner {
    display: flex;
    align-items: center;
    gap: 18px;
    height: 100%;
}

.header,
.hero__content {
    position: relative;
    z-index: 10;
}


/* ===== Financing hero alignment ===== */
.hero--financing .hero__content {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
    padding-top: 80px;
    padding-right: 60px;
    padding-left: 0;
}


/* Financing hero: extend features rail to the right edge */
.hero--financing .features-rail {
    margin-right: -60px;
    width: calc(100% + 60px);
}


/* Financing features bar: fill any tiny bottom gap */
.hero--financing .features-rail {
    background: rgba(8, 14, 20, .88);
}

.hero--financing .features-rail__inner {
    background: transparent;
}

@media (max-width: 900px) {
    .hero--financing .features-rail {
        margin-right: -20px;
        width: calc(100% + 20px);
    }
}



.hero--financing .feature {
    padding: 6px 12px;
    border-radius: 0;
    background: transparent;
}


.hero--financing {
    min-height: auto;
    padding-bottom: 0;
}

.hero--financing .hero__content {
    padding-bottom: 0;
}


.hero--financing .badge {
    align-self: flex-end;
    margin-bottom: 14px;
}

.hero--financing .hero__title {
    max-width: 640px;
    font-size: clamp(32px, 4.2vw, 56px);
}

.hero--financing .hero__desc {
    max-width: 520px;
    font-size: 15px;
}

.hero--financing .hero__actions {
    justify-content: flex-end;
}

@media (max-width: 900px) {
    .hero--financing .hero__content {
        align-items: flex-start;
        text-align: left;
        padding-right: 20px;
        padding-left: 20px;
    }

    .hero--financing .badge {
        align-self: flex-start;
    }

    .hero--financing .hero__actions {
        justify-content: flex-start;
    }
}

/* Brand */
.brand {
    display: inline-flex;
    flex-direction: column;
    line-height: 1;
    letter-spacing: .08em;
    margin-right: 6px;
}

.brand__title {
    font-weight: 800;
    font-size: 34px;
    color: var(--accent);
    text-transform: uppercase;
}

.brand__subtitle {
    margin-top: 6px;
    font-weight: 600;
    font-size: 12px;
    color: rgba(255, 255, 255, .78);
    text-transform: uppercase;
}

.header__divider {
    width: 1px;
    height: 28px;
    background: rgba(255, 255, 255, .14);
    margin-left: 18px;
    margin-right: 18px;
}

/* Search (rounded + glass) */
.search {
    flex: 1;
    max-width: 360px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: var(--pill);
    background: rgba(8, 16, 24, .55);
    border: 1px solid rgba(255, 255, 255, .10);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, .18);
}

.search__icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: rgba(255, 255, 255, .75);
    background: rgba(255, 255, 255, .06);
}

.search__input {
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
    color: rgba(255, 255, 255, .9);
    font-size: 14px;
}

.search__input::placeholder {
    color: rgba(255, 255, 255, .55);
}

/* Nav (links + auth: auth sits in mobile menu on small screens) */
.nav {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 0;
    margin-left: auto;
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 22px;
}

.nav__auth {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-left: 22px;
    padding-left: 22px;
    border-left: 1px solid rgba(255, 255, 255, .10);
}

.nav__auth-form {
    margin: 0;
    display: inline-flex;
    align-items: center;
}

.nav__link {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .08em;
    color: rgba(255, 255, 255, .78);
    text-transform: uppercase;
    position: relative;
    padding: 10px 2px;
}

.nav__link:hover {
    color: rgba(255, 255, 255, .92);
}

.nav__link.is-active {
    /*color: rgba(255,255,255,.95);*/
    text-decoration: none;
}

.auth__link {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    font-weight: 600;
    font-size: 14px;
    line-height: 1;
    color: rgba(255, 255, 255, .86);
}

.auth__link:hover {
    color: rgba(255, 255, 255, .98);
}

/* Hamburger (hidden on desktop) */
.hamburger {
    display: none;
    flex-shrink: 0;
    margin-left: 6px;
    width: 46px;
    height: 42px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(0, 0, 0, .18);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    cursor: pointer;
    padding: 0;
    transition: background .2s ease, border-color .2s ease;
}

.hamburger:hover {
    background: rgba(255, 255, 255, .08);
    border-color: rgba(255, 255, 255, .18);
}

.hamburger span {
    display: block;
    height: 2px;
    width: 18px;
    background: rgba(255, 255, 255, .85);
    margin: 0 auto;
    border-radius: 2px;
    transition: transform .28s ease, opacity .2s ease;
    transform-origin: center;
}

.hamburger span+span {
    margin-top: 5px;
}

.hamburger.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.is-active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* =========================
   HERO CONTENT
========================= */
.hero__content {
    position: relative;
    z-index: 2;
    padding-top: 100px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    padding: 10px 18px;
    border-radius: 999px;

    background: linear-gradient(180deg,
            rgba(8, 115, 122, 0.35) 0%,
            rgba(6, 70, 78, 0.35) 100%);

    /* Thin teal stroke */
    border: 1px solid rgba(18, 214, 232, 0.35);

    /* Inner highlight + subtle depth */
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        0 10px 24px rgba(0, 0, 0, 0.25);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.badge__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #12d6e8;

    /* glow ring like Figma */
    box-shadow:
        0 0 0 4px rgba(18, 214, 232, 0.18),
        0 0 18px rgba(18, 214, 232, 0.25);
}

.badge__text {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.18em;
    /* important */
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.92);
    white-space: nowrap;
}

/* big title */
.hero__title {
    margin: 22px 0 14px;
    font-size: clamp(44px, 6vw, 74px);
    font-weight: 500;
    letter-spacing: -0.03em;
    line-height: 1.02;
    text-shadow: 0 10px 35px rgba(0, 0, 0, .45);
}

.hero__titleAccent {
    color: #00CFE8;
}


.hero__desc {
    margin: 0 0 30px;
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, .72);
    max-width: 680px;
    text-shadow: 0 8px 24px rgba(0, 0, 0, .35);
}

/* CTA ROW — force perfect alignment like Figma */
.hero__actions {
    display: flex;
    align-items: center;
    /* center all items */
    gap: 22px;
    flex-wrap: wrap;
}

/* Make ALL buttons the same height */
.hero .btn {
    height: 54px;
    /* Figma-like height */
    padding: 0 28px;
    /* horizontal only */
    line-height: 1;
    /* important: removes baseline jump */
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Primary CTA base (NO glow by default) */
.hero .btn--primary {
    position: relative;
    border-radius: 999px;
    background: #12d6e8;
    color: rgba(0, 0, 0, .72);
    border: 1px solid rgba(255, 255, 255, .10);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .35);
    transition: transform .15s ease, box-shadow .2s ease, filter .2s ease;
}

/* glow layers hidden initially */
.hero .btn--primary::before,
.hero .btn--primary::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 999px;
    z-index: -1;
    opacity: 0;
    /* IMPORTANT */
    transition: opacity .2s ease;
    /* fade in */
    pointer-events: none;
}

/* big soft bloom */
.hero .btn--primary::before {
    width: 170%;
    height: 180%;
    background: rgba(18, 214, 232, .35);
    filter: blur(28px);
}

/* smaller tighter bloom */
.hero .btn--primary::after {
    width: 120%;
    height: 125%;
    background: rgba(18, 214, 232, .25);
    filter: blur(14px);
}

/* show glow ONLY on hover/focus */
.hero .btn--primary:hover::before,
.hero .btn--primary:hover::after,
.hero .btn--primary:focus-visible::before,
.hero .btn--primary:focus-visible::after {
    opacity: 1;
}

/* optional hover lift + stronger shadow */
.hero .btn--primary:hover {
    transform: translateY(-1px);
    box-shadow:
        0 18px 40px rgba(18, 214, 232, .22),
        inset 0 1px 0 rgba(255, 255, 255, .40);
}



/* Ghost button should match same height & center */
.hero .btn--ghost {
    padding: 0 34px;
}

/* Buttons */
.btn {
    font-family: var(--font-sans);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid transparent;
    cursor: pointer;
    user-select: none;
    font-weight: 800;
    letter-spacing: .10em;
    text-transform: uppercase;
    text-decoration: none;
    transition: transform .15s ease, box-shadow .15s ease, background .15s ease,
        border-color .15s ease, color .15s ease, filter .15s ease;
}

.btn--pill {
    border-radius: 999px;
}

.btn--xl {
    padding: 16px 28px;
    font-size: 13px;
}

/* Primary (cyan) like Figma */
.btn--primary {
    color: rgba(0, 0, 0, .78);
    background: linear-gradient(180deg, #22E6F4 0%, #10D3E6 100%);
    border-color: rgba(255, 255, 255, .10);
    box-shadow:
        0 18px 45px rgba(18, 214, 232, .22),
        inset 0 1px 0 rgba(255, 255, 255, .35);
}

.btn--primary:hover {
    transform: translateY(-1px);
    filter: brightness(1.05);
    box-shadow:
        0 22px 58px rgba(18, 214, 232, .28),
        inset 0 1px 0 rgba(255, 255, 255, .38);
}

.btn--primary:active {
    transform: translateY(0px);
    filter: brightness(.98);
}

/* Ghost (Explore Auctions) — dark pill with stroke */
.btn--ghost {
    color: rgba(255, 255, 255, .92);
    background: rgba(0, 0, 0, .22);
    border-color: rgba(255, 255, 255, .22);
    box-shadow:
        0 14px 34px rgba(0, 0, 0, .25),
        inset 0 1px 0 rgba(255, 255, 255, .14);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.btn--ghost:hover {
    transform: translateY(-1px);
    border-color: rgba(255, 255, 255, .32);
    background: rgba(0, 0, 0, .28);
}

.btn--ghost:active {
    transform: translateY(0px);
    background: rgba(0, 0, 0, .24);
}

/* Small header button (Sign up) */
.btn--pill.btn--primary {
    padding: 10px 16px;
    font-size: 13px;
    letter-spacing: .08em;
}

/* nice focus */
.btn:focus-visible {
    outline: none;
    box-shadow:
        0 0 0 3px rgba(18, 214, 232, .35),
        0 18px 45px rgba(18, 214, 232, .18);
}

/* Marketplace link should align with buttons */
.hero__inlineLink {
    height: 54px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0 6px;
    /* no vertical padding */
    line-height: 1;
}

.hero__inlineLink:hover {
    color: rgba(255, 255, 255, .98);
}

.hero__arrow {
    display: inline-block;
    transform: translateY(-1px);
}

/* =========================
   RESPONSIVE
========================= */

@media (min-width:992px) and (max-width: 1200px) {
    .header__inner {
        max-width: fit-content;
        gap: 8px;
        justify-content: space-between;
    }

    .header__inner .nav__link {
        font-size: 10px !important;
    }

    .search {
        display: visible !important;
        max-width: 80px !important;
        max-height: 40px !important;
    }

    .brand__logo {
        margin-left: 0px !important;
        width: 30px !important;
        height: 30px !important;
    }

    .brand__title {
        font-size: 15px !important;
    }

    .brand__subtitle {
        font-size: 10px !important;
        width: 100px;
    }

    .header__inner .nav__link {
        font-size: 10px !important;
    }

    .nav__auth {
        margin-left: 10px;
        padding-left: 12px;
        gap: 10px;
    }

    .nav__auth .auth__link {
        font-size: 12px;
    }

    .nav__auth-form {
        padding-left: 0 !important;
    }

    .nav__auth-form button {
        font-size: 11px !important;
        max-width: 70px;
    }

    .hero__content {
        padding-top: 72px;
    }

    .hero {
        min-height: 620px;
    }

    .hero__bg {
        background-position: center top;
    }
}

@media (max-width: 980px) {
    .nav {
        position: fixed;
        top: var(--header-h);
        left: 0;
        right: 0;
        padding: 18px 20px 24px;
        background: rgba(7, 16, 45, .98);
        border-bottom: 1px solid rgba(255, 255, 255, .06);
        display: none;
        flex-direction: column;
        gap: 0;
        align-items: stretch;
        max-height: calc(100vh - var(--header-h));
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        z-index: 9998;
        margin-left: 0;
        box-shadow: 0 12px 40px rgba(0, 0, 0, .35);
    }

    .nav.is-open {
        display: flex;
        animation: navSlideIn .22s ease-out;
    }

    .nav__links {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }

    .nav__link {
        display: block;
        width: 100%;
        text-align: center;
        padding: 14px 10px;
    }

    .nav__auth {
        flex-direction: column;
        width: 100%;
        margin-left: 0;
        padding: 20px 8px 6px;
        margin-top: 8px;
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, .10);
        gap: 14px;
    }

    .nav__auth .auth__link {
        justify-content: center;
        padding: 12px;
        border-radius: 12px;
        background: rgba(255, 255, 255, .04);
    }

    .nav__auth .btn--pill {
        width: 100%;
        justify-content: center;
    }

    .nav__auth-form {
        width: 100%;
        justify-content: center;
    }

    .nav__auth-form .btn {
        width: 100%;
    }

    .hamburger {
        display: inline-flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-left: auto;
    }

    .search {
        max-width: 320px;
    }
}

@keyframes navSlideIn {
    from {
        opacity: 0.85;
        transform: translateY(-6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 720px) {
    .header__inner {
        gap: 12px;
        justify-content: space-between;

    }

    .search {
        display: none;
        /* keep header clean on small screens */
    }

    .hamburger {
        margin-left: 0;
    }

    .hero__content {
        padding-top: 72px;
    }

    .hero {
        min-height: 620px;
    }

    .hero__bg {
        background-position: center center;
    }
}

@media (max-width: 520px) {
    .brand__title {
        font-size: 28px;
    }

    .brand__subtitle {
        font-size: 11px;
    }

    .hero__desc {
        font-size: 15px;
    }

    .btn--xl {
        width: 100%;
    }

    .hero__inlineLink {
        padding-left: 0;
    }

    .btn--pill.btn--primary {
        padding: 8px 12px;
        font-size: 12px;
        letter-spacing: .06em;
    }

    .hero__bg {
        background-position: center 20%;
    }

}

/* ===== Figma-like feature rail ===== */
.features-rail {
    margin-top: 42px;
    position: relative;
}

/* top / bottom thin rails */
.features-rail__line {
    height: 1px;
    background: rgba(255, 255, 255, .10);
}

.features-rail__inner {
    /* important: this matches Figma spacing */
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 22px 28px;
    background: rgba(0, 0, 0, .12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    /* subtle inner gradient like figma bar */
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .05);
}

/* each feature item */
.feature {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 18px;
    border-radius: 14px;
    transition: background .2s ease, transform .2s ease;
}

/* short vertical separators */
.feature__sep {
    width: 1px;
    height: 44px;
    /* shorter like figma */
    background: rgba(255, 255, 255, .10);
}

/* icon circle: stroke + subtle fill */
.feature__icon {
    width: 44px;
    height: 44px;
    border-radius: 999px;

    display: grid;
    place-items: center;

    color: rgba(18, 214, 232, .95);
    background: rgba(0, 0, 0, .18);
    border: 1px solid rgba(255, 255, 255, .14);

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .08);
    transition: box-shadow .2s ease, border-color .2s ease, background .2s ease;
}

/* text styling */
.feature__title {
    font-size: 14px;
    font-weight: 800;
    color: rgba(255, 255, 255, .92);
}

.feature__sub {
    margin-top: 4px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .50);
    line-height: 1.25;
    max-width: 220px;
}

/* ===== Hover effect (missing in your version) ===== */
.feature:hover {
    background: rgba(255, 255, 255, .03);
    transform: translateY(-1px);
}

.feature:hover .feature__icon {
    background: rgba(0, 0, 0, .22);
    border-color: rgba(18, 214, 232, .35);
    box-shadow:
        0 0 0 6px rgba(18, 214, 232, .08),
        0 16px 30px rgba(0, 0, 0, .30),
        inset 0 1px 0 rgba(255, 255, 255, .10);
}

.feature:hover .feature__sub {
    color: rgba(255, 255, 255, .60);
}

/* responsive stacking */
@media (max-width: 980px) {
    .features-rail__inner {
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
        padding: 18px 14px;
    }

    .feature__sep {
        display: none;
    }

    .feature {
        padding: 12px 12px;
    }

    .feature__sub {
        max-width: none;
    }
}


/* =========================
   SECTION 2: TRANSACTIONS
========================= */
.transactions {
    position: relative;
    padding: 84px 0 88px;
    background: #071018;
    /* matches page */
}

/* subtle vignette like figma */
.transactions::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(900px 420px at 50% 15%, rgba(255, 255, 255, .06), rgba(255, 255, 255, 0) 65%),
        radial-gradient(900px 420px at 50% 90%, rgba(0, 0, 0, .35), rgba(0, 0, 0, 0) 60%);
    pointer-events: none;
}

.transactions__inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 980px;
    /* figma-like text width */
}

/* Title */
.transactions__title {
    margin: 0 0 18px;
    font-size: clamp(34px, 4vw, 52px);
    font-weight: 300;
    /* thin like figma */
    letter-spacing: -0.02em;
    color: rgba(255, 255, 255, .92);
}

.transactions__title span {
    color: #12d6e8;
    /* cyan word */
    font-weight: 700;
    /* heavier for emphasis */
}

/* Paragraphs */
.transactions__lead {
    margin: 0 auto;
    max-width: 860px;
    font-size: 16px;
    line-height: 1.9;
    color: rgba(255, 255, 255, .50);
}

.transactions__lead--spaced {
    margin-top: 22px;
}

/* emphasized words in 2nd paragraph */
.transactions__lead strong {
    font-weight: 800;
    color: rgba(255, 255, 255, .82);
}

/* Cards row */
.transactions__cards {
    margin-top: 54px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
}

/* Card base */
.tcard {
    text-align: left;
    padding: 34px 34px 30px;
    border-radius: 18px;

    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .10);

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .06),
        0 18px 45px rgba(0, 0, 0, .35);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

/* Active (left) card has teal tint like figma */
.tcard--active {
    background: rgba(18, 214, 232, .06);
    border-color: rgba(18, 214, 232, .18);
}

/* Number */
.tcard__num {
    font-size: 34px;
    font-weight: 300;
    color: rgba(255, 255, 255, .70);
    margin-bottom: 14px;
}

/* Titles */
.tcard__title {
    margin: 0 0 10px;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: .08em;
    color: rgba(255, 255, 255, .92);
}

/* Body */
.tcard__text {
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, .55);
    max-width: 420px;
}

/* Hover like modern figma */
.tcard:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, .18);
    background: rgba(255, 255, 255, .05);
}

.tcard--active:hover {
    border-color: rgba(18, 214, 232, .30);
    background: rgba(18, 214, 232, .075);
}

/* Responsive */
@media (max-width: 860px) {
    .transactions__inner {
        max-width: 720px;
    }

    .transactions__cards {
        grid-template-columns: 1fr;
        gap: 18px;
    }
}


/* =========================
   SECTION 3: PROCESS
========================= */
.process {
    padding: 92px 0 110px;
    background: #071018;
    position: relative;
}

.process::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(900px 520px at 50% 0%, rgba(255, 255, 255, .05), rgba(255, 255, 255, 0) 60%),
        radial-gradient(900px 520px at 50% 100%, rgba(0, 0, 0, .35), rgba(0, 0, 0, 0) 65%);
    pointer-events: none;
}

.process__inner {
    position: relative;
    z-index: 1;
    text-align: center;
}

.process__eyebrow {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .24em;
    color: rgba(18, 214, 232, .90);
    margin-bottom: 10px;
}

.process__title {
    margin: 0 0 64px;
    font-size: clamp(38px, 4.4vw, 56px);
    font-weight: 300;
    letter-spacing: -0.02em;
    color: rgba(255, 255, 255, .92);
}

/* Track area with line running through circles */
.process__track {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    align-items: start;
}

/* line centered behind icons */
.process__line {
    position: absolute;
    left: 7%;
    right: 7%;
    top: 34px;
    /* centers with 76px icon */
    height: 1px;
    background: rgba(18, 214, 232, .18);
    opacity: .55;
}

/* Each step */
.pstep {
    padding: 0 10px;
}

/* circle icon */
.pstep__icon {
    width: 76px;
    height: 76px;
    border-radius: 999px;
    margin: 0 auto 26px;

    display: grid;
    place-items: center;

    color: rgba(255, 255, 255, .85);
    background: rgba(0, 0, 0, .22);
    border: 1px solid rgba(18, 214, 232, .20);

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .06),
        0 18px 44px rgba(0, 0, 0, .35);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.pstep__title {
    margin: 0 0 14px;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: .10em;
    color: rgba(255, 255, 255, .92);
    text-transform: uppercase;
}

.pstep__text {
    margin: 0 auto;
    max-width: 320px;
    font-size: 14px;
    line-height: 1.9;
    color: rgba(255, 255, 255, .45);
}

/* Hover: subtle glow like figma */
.pstep:hover .pstep__icon {
    transform: translateY(-2px);
    border-color: rgba(18, 214, 232, .35);
    box-shadow:
        0 0 0 8px rgba(18, 214, 232, .06),
        0 22px 52px rgba(0, 0, 0, .42),
        inset 0 1px 0 rgba(255, 255, 255, .08);
}

/* Responsive */
@media (max-width: 980px) {
    .process__title {
        margin-bottom: 46px;
    }

    .process__track {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .process__line {
        display: none;
    }
}


/* =========================
   SECTION 4: INFO CARDS
========================= */
.info-cards {
    padding: 70px 0 100px;
    background: #071018;
    position: relative;
}

.info-cards::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(900px 520px at 30% 10%, rgba(255, 255, 255, .05), rgba(255, 255, 255, 0) 60%),
        radial-gradient(900px 520px at 70% 80%, rgba(0, 0, 0, .35), rgba(0, 0, 0, 0) 65%);
    pointer-events: none;
}

.info-cards__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 34px;
    align-items: stretch;
}

.icard {
    border-radius: 22px;
    padding: 44px 44px 38px;
    text-align: left;

    /* no visible border */
    border: none;

    /* glass background */
    background: rgba(255, 255, 255, .035);

    /* shape definition WITHOUT border */
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .07),
        /* top inner highlight */
        inset 0 -1px 0 rgba(0, 0, 0, .35),
        /* bottom inner edge */
        0 26px 70px rgba(0, 0, 0, .45);
    /* outer shadow */

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.icard:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, .045);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .09),
        inset 0 -1px 0 rgba(0, 0, 0, .40),
        0 30px 80px rgba(0, 0, 0, .55);
}

/* Icon badge */
.icard__icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    margin-bottom: 22px;

    background: rgba(0, 0, 0, .22);
    border: 1px solid rgba(255, 255, 255, .10);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06);

    color: rgba(255, 255, 255, .75);
}

/* Muted grey icon like left card */
.icard__icon--muted {
    color: rgba(255, 255, 255, .75);
}

/* Teal icon like right card */
.icard__icon--teal {
    color: rgba(18, 214, 232, .95);
    background: rgba(18, 214, 232, .06);
    border-color: rgba(18, 214, 232, .18);
}

/* Title */
.icard__title {
    margin: 0 0 14px;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: .10em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .92);
}

/* Body text */
.icard__text {
    margin: 0 0 26px;
    font-size: 14px;
    line-height: 1.9;
    color: rgba(255, 255, 255, .45);
    max-width: 520px;
}

/* Link */
.icard__link {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    font-size: 13px;
    font-weight: 800;
    letter-spacing: .10em;
    text-transform: uppercase;

    color: rgba(18, 214, 232, .92);
    text-decoration: none;
    transition: opacity .2s ease, transform .2s ease;
}

.icard__link:hover {
    opacity: 1;
    transform: translateX(2px);
}

/* Responsive */
@media (max-width: 980px) {
    .info-cards__grid {
        grid-template-columns: 1fr;
    }

    .icard {
        padding: 34px 22px 30px;
    }
}


/* =========================
   CTA BANNER (Your Next Vessel Awaits)
========================= */
.cta-banner {
    position: relative;
    padding: 92px 0 96px;
    background: #071018;
    overflow: hidden;

}

/* background image */
.cta-banner__bg {
    position: absolute;
    inset: 0;
    background-image: url("/frontend/assets/bottom.jpeg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    transform: scale(1.03);
    filter: saturate(.95) contrast(1.02);
}

@media (max-width: 900px) {
    .cta-banner__bg {
        transform: none;
        background-position: center center;
    }
}

/* dark overlay like figma */
.cta-banner__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom, rgba(7, 16, 24, .80), rgba(7, 16, 24, .72)),
        radial-gradient(900px 420px at 50% 55%, rgba(0, 0, 0, .25), rgba(0, 0, 0, .55));
}

/* thin top/bottom lines */
.cta-banner::before,
.cta-banner::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255, 255, 255, .10);
    z-index: 2;
}

.cta-banner::before {
    top: 0;
}

.cta-banner::after {
    bottom: 0;
}

.cta-banner__inner {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 980px;
}

/* Title */
.cta-banner__title {
    margin: 0 0 14px;
    font-size: clamp(34px, 4.2vw, 56px);
    font-weight: 300;
    letter-spacing: -0.02em;
    color: rgba(255, 255, 255, .92);
}

.cta-banner__title span {
    color: #12d6e8;
    font-weight: 800;
}

/* Subtitle */
.cta-banner__sub {
    margin: 0 0 34px;
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, .55);
}

/* Buttons row */
.cta-banner__actions {
    display: inline-flex;
    align-items: center;
    gap: 18px;
}

/* outlined button (figma style) */
.btn--outline {
    background: rgba(0, 0, 0, .12);
    border: 1px solid rgba(255, 255, 255, .32);
    color: rgba(255, 255, 255, .90);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
    transition: transform .15s ease, border-color .2s ease, background .2s ease;
}

.btn--outline:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, .04);
    border-color: rgba(255, 255, 255, .45);
}

/* primary button (same system) but keep hover glow only */
.cta-banner__btn {
    padding-left: 34px;
    padding-right: 34px;
}

/* Mobile */
@media (max-width: 700px) {
    .cta-banner__actions {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .cta-banner__btn {
        width: 100%;
        justify-content: center;
    }
}


/* =========================
   FOOTER
========================= */
.footer {
    background: #071018;
    position: relative;
    padding: 56px 0 34px;
}

.footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(900px 520px at 50% 0%, rgba(255, 255, 255, .04), rgba(255, 255, 255, 0) 60%),
        radial-gradient(900px 520px at 50% 100%, rgba(0, 0, 0, .45), rgba(0, 0, 0, 0) 65%);
    pointer-events: none;
}

.footer__inner {
    position: relative;
    z-index: 1;
}

.footer__top {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 70px;
    align-items: start;
}

/* Brand block */
.footer__brand {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.footer__mark {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    color: rgba(255, 255, 255, .85);
    background: rgba(255, 255, 255, .03);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06);
}

.footer__brandTitle {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: .18em;
    color: rgba(255, 255, 255, .92);
}

.footer__brandSub {
    margin-top: 4px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .22em;
    color: rgba(18, 214, 232, .90);
}

.footer__about {
    margin: 0 0 22px;
    font-size: 13px;
    line-height: 1.9;
    color: rgba(255, 255, 255, .42);
    max-width: 290px;
}

/* Social buttons */
.footer__social {
    display: flex;
    gap: 12px;
}

.footer__socialBtn {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    text-decoration: none;

    color: rgba(255, 255, 255, .70);
    background: rgba(255, 255, 255, .03);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06);

    transition: transform .15s ease, color .2s ease, background .2s ease;
}

.footer__socialBtn:hover {
    transform: translateY(-1px);
    color: rgba(18, 214, 232, .95);
    background: rgba(18, 214, 232, .06);
}

/* Columns */
.footer__cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 70px;
}

.footer__heading {
    margin: 6px 0 16px;
    font-size: 15px;
    font-weight: 800;
    color: rgba(255, 255, 255, .92);
}

.footer__link {
    display: block;
    padding: 8px 0;
    text-decoration: none;
    font-size: 13px;
    color: rgba(255, 255, 255, .45);
    transition: color .2s ease;
}

.footer__link:hover {
    color: rgba(255, 255, 255, .78);
}

/* Divider line */
.footer__divider {
    margin: 48px 0 20px;
    height: 1px;
    background: rgba(255, 255, 255, .10);
}

/* Bottom row */
.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer__copy {
    font-size: 12px;
    color: rgba(255, 255, 255, .40);
}

.footer__status {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    color: rgba(18, 214, 232, .90);
}

.footer__dot {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: rgba(18, 214, 232, .95);
    box-shadow: 0 0 0 6px rgba(18, 214, 232, .07);
}

/* Footer: responsive — single column on small screens */
@media (max-width: 900px) {
    .footer {
        padding: 44px 0 28px;
    }

    .footer__top {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .footer__about {
        max-width: 100%;
    }

    .footer__cols {
        grid-template-columns: 1fr;
        gap: 28px;
        padding-right: 0;
    }

    .footer__col {
        padding-bottom: 8px;
        border-bottom: 1px solid rgba(255, 255, 255, .06);
    }

    .footer__col:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .footer__bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }
}


/* =========================
   AUCTIONS PAGE
========================= */
.auction-page {
    background: #071018;
}

.auction-page .container {
    width: min(1240px, calc(100% - 56px));
}

/* Featured auction hero */
.auction-hero {
    position: relative;
    min-height: 460px;
    padding: 52px 0 44px;
    overflow: hidden;
}

.auction-hero__bg {
    position: absolute;
    inset: 0;
    background-image: url("../../frontend/auction-hero-bg.jpeg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center 35%;
    filter: saturate(.9) contrast(1.02);
}

.auction-hero__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg,
            rgba(7, 16, 24, .82) 0%,
            rgba(7, 16, 24, .60) 45%,
            rgba(7, 16, 24, .22) 100%),
        linear-gradient(180deg,
            rgba(0, 0, 0, .15) 0%,
            rgba(0, 0, 0, .25) 100%);
}

.auction-hero__content {
    position: relative;
    z-index: 2;
    padding-top: 22px;
}

.auction-hero__title {
    margin: 18px 0 12px;
    font-size: clamp(34px, 5.2vw, 60px);
    font-weight: 700;
    letter-spacing: -0.02em;
    text-shadow: 0 10px 30px rgba(0, 0, 0, .45);
}

.auction-hero__desc {
    margin: 0 0 24px;
    max-width: 640px;
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, .70);
}

.auction-hero__actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.auction-hero__btn {
    height: 44px;
    padding: 0 28px;
    border-radius: 999px;
    font-size: 13px;
    letter-spacing: .06em;
}

/* Outline dark button */
.btn--outline-dark {
    color: rgba(255, 255, 255, .92);
    background: rgba(7, 16, 45, .65);
    border: 1px solid rgba(255, 255, 255, .30);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06);
}

.btn--outline-dark:hover {
    background: rgba(7, 16, 45, .80);
    border-color: rgba(255, 255, 255, .45);
    transform: translateY(-1px);
}

/* Gold button */
.btn--gold {
    color: rgba(0, 0, 0, .85);
    background: linear-gradient(180deg, #d4a84a 0%, #c49a3c 100%);
    border-color: rgba(255, 255, 255, .10);
    box-shadow:
        0 14px 30px rgba(196, 162, 60, .25),
        inset 0 1px 0 rgba(255, 255, 255, .30);
}

.btn--gold:hover {
    transform: translateY(-1px);
    filter: brightness(1.08);
}

/* Stats */
.auction-stats {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin: 14px 0 24px;
    flex-wrap: wrap;
}

.auction-stat {
    padding-right: 0;
    border-right: none;
}

.auction-stat:first-child .auction-stat__value {
    color: #12d6e8;
}

.auction-stat__value {
    font-size: 20px;
    font-weight: 800;
    color: rgba(255, 255, 255, .95);
}

.auction-stat__label {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, .45);
    margin-top: 4px;
    text-transform: capitalize;
}

/* ===== FILTERS (Figma redesign) ===== */
.auction-filters {
    padding: 28px 0 24px;
}

.filter-card {
    background: rgba(7, 16, 45, 0.92);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 18px;
    padding: 24px 28px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .45);
}

.filter-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
}

.filter-header__left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.filter-header__icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    color: #12d6e8;
    background: rgba(18, 214, 232, .08);
    border: 1px solid rgba(18, 214, 232, .20);
}

.filter-header__title {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: rgba(255, 255, 255, .95);
}

.filter-header__sub {
    margin: 2px 0 0;
    font-size: 13px;
    color: rgba(18, 214, 232, .70);
}

.filter-header__close {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, .12);
    background: transparent;
    color: rgba(255, 255, 255, .55);
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: color .2s ease, border-color .2s ease;
}

.filter-header__close:hover {
    color: rgba(255, 255, 255, .85);
    border-color: rgba(255, 255, 255, .25);
}

/* Search bar */
.filter-search {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, .14);
    background: rgba(6, 14, 20, .45);
    margin-bottom: 22px;
}

.filter-search__icon {
    color: rgba(255, 255, 255, .45);
    flex-shrink: 0;
}

.filter-search__input {
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
    color: rgba(255, 255, 255, .90);
    font-size: 14px;
}

.filter-search__input::placeholder {
    color: rgba(255, 255, 255, .35);
}

.filter-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px 22px;
}

.filter-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.filter-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(18, 214, 232, .85);
}

.filter-input {
    height: 44px;
    padding: 0 14px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, .14);
    background: rgba(6, 14, 20, .50);
    color: rgba(255, 255, 255, .88);
    font-size: 13px;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    transition: border-color .2s ease;
}

select.filter-input {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.5)' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}

.filter-input:focus {
    border-color: rgba(18, 214, 232, .45);
}

.filter-input::placeholder {
    color: rgba(255, 255, 255, .35);
}

/* Actions divider */
.filter-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 22px 0 18px;
}

.filter-divider::before,
.filter-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, .08);
}

.filter-divider span {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .18em;
    color: rgba(255, 255, 255, .35);
    text-transform: uppercase;
}

.filter-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

.btn--sm {
    padding: 10px 20px;
    font-size: 12px;
    letter-spacing: .08em;
}

/* ===== AUCTION CARDS (Figma redesign) ===== */
.auction-listings {
    padding: 24px 0 54px;
}

.auction-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.auction-card {
    background: #0d1b2a;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 18px 36px rgba(0, 0, 0, .38);
    display: flex;
    flex-direction: column;
    min-height: 100%;
    position: relative;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.auction-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #12d6e8;
    border-radius: 0 0 18px 18px;
}

.auction-card:hover {
    transform: translateY(-4px);
    border-color: rgba(18, 214, 232, .25);
    box-shadow: 0 24px 50px rgba(0, 0, 0, .45);
}

.auction-card__media {
    position: relative;
    height: 210px;
    overflow: hidden;
}

.auction-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .35s ease;
}

.auction-card:hover .auction-card__media img {
    transform: scale(1.04);
}

.auction-card__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, .10) 0%, rgba(0, 0, 0, .45) 100%);
    opacity: .6;
    transition: opacity .2s ease;
}

.auction-card:hover .auction-card__media::after {
    opacity: .8;
}

.auction-card__mediaOverlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 8px;
    opacity: 0;
    background: rgba(0, 0, 0, .50);
    z-index: 2;
    transition: opacity .2s ease;
}

.auction-card:hover .auction-card__mediaOverlay {
    opacity: 1;
}

.auction-card__commentBtn {
    height: 36px;
    padding: 0 20px;
    border-radius: 8px;
    border: none;
    background: #12d6e8;
    color: #041219;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .04em;
    cursor: pointer;
    min-width: 170px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, .25);
}

.auction-card__commentCount {
    font-size: 12px;
    color: rgba(255, 255, 255, .90);
}

/* Tags */
.auction-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 5px 10px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    border-radius: 999px;
    background: rgba(0, 0, 0, .55);
    color: rgba(255, 255, 255, .95);
    border: 1px solid rgba(255, 255, 255, .18);
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.auction-tag__dot {
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: currentColor;
    flex-shrink: 0;
}

.auction-tag--reserve {
    background: #c0392b;
    border-color: #c0392b;
    color: #fff;
}

.auction-tag--reserve .auction-tag__dot {
    background: #ff8a80;
}

.auction-tag--met {
    background: rgba(180, 150, 50, .90);
    border-color: rgba(180, 150, 50, .90);
    color: #0d1b2a;
}

.auction-tag--met .auction-tag__dot {
    background: #0d1b2a;
}

.auction-tag--live {
    background: #1bb9ff;
    border-color: #1bb9ff;
    color: #03131d;
}

.auction-tag--upcoming {
    background: rgba(18, 214, 232, .85);
    border-color: rgba(18, 214, 232, 1);
}

/* Card body */
.auction-card__body {
    padding: 18px 18px 22px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.auction-card__title {
    margin: 0;
    font-size: 15px;
    font-weight: 700;
    color: rgba(255, 255, 255, .95);
    line-height: 1.35;
}

.auction-price {
    font-size: 18px;
    font-weight: 800;
    color: #12d6e8;
}

.auction-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 12px;
    color: rgba(255, 255, 255, .50);
    flex-wrap: wrap;
}

.auction-meta span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.auction-meta svg {
    opacity: .6;
}

/* Specs with label/value */
.auction-specs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding-top: 10px;
    margin-top: 4px;
    border-top: 1px solid rgba(255, 255, 255, .06);
}

.auction-spec {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.auction-spec__label {
    font-size: 11px;
    color: rgba(255, 255, 255, .40);
}

.auction-spec__value {
    font-size: 13px;
    font-weight: 700;
    color: rgba(255, 255, 255, .90);
}

/* Watch & Share row */
.auction-card__social {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 4px;
}

.auction-card__socialLink {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: rgba(255, 255, 255, .50);
    text-decoration: none;
    transition: color .2s ease;
}

.auction-card__socialLink:hover {
    color: #12d6e8;
}

/* Card actions */
.auction-card__actions {
    margin-top: 8px;
    display: grid;
    grid-template-columns: 1fr;
}

.auction-btn {
    height: 42px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .06em;
    border-radius: 999px;
    text-align: center;
}

.auction-btn:hover {
    transform: translateY(-1px);
}

.auction-btn--sold {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .15);
    color: rgba(255, 255, 255, .55);
    cursor: default;
}

.auction-btn--pending {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .12);
    color: rgba(255, 255, 255, .50);
    cursor: default;
}

/* ===== COMMENTS (Figma redesign) ===== */
.auction-comments {
    padding: 24px 0 70px;
}

.comments-card {
    background: rgba(7, 16, 45, 0.92);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .45);
}

.comments-title {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 800;
    color: rgba(255, 255, 255, .95);
    margin-bottom: 20px;
}

.comments-title__icon {
    color: #12d6e8;
}

.comments-input {
    width: 100%;
    min-height: 90px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, .14);
    background: rgba(6, 14, 20, .50);
    color: rgba(255, 255, 255, .88);
    padding: 14px;
    font-size: 14px;
    resize: vertical;
    outline: none;
    font-family: inherit;
    transition: border-color .2s ease;
}

.comments-input:focus {
    border-color: rgba(18, 214, 232, .45);
}

.comments-input::placeholder {
    color: rgba(255, 255, 255, .35);
}

.comments-error {
    display: block;
    margin-top: 6px;
    font-size: 12px;
    color: #e74c3c;
}

.comments-submit {
    margin-top: 14px;
}

.comments-list {
    margin-top: 28px;
    display: grid;
    gap: 22px;
}

.comments-empty {
    text-align: center;
    color: rgba(255, 255, 255, .40);
    padding: 2rem;
    font-size: 14px;
}

.comments-more {
    margin-top: 24px;
    display: flex;
    justify-content: center;
}

.comment {
    display: grid;
    grid-template-columns: 38px 1fr;
    gap: 12px;
    padding-top: 0;
    border-top: none;
}

.comment__avatar {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    background: rgba(196, 162, 60, .25);
    color: #d4a84a;
    display: grid;
    place-items: center;
    font-weight: 800;
    font-size: 12px;
}

.comment__meta {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.comment__meta strong {
    font-size: 13px;
    font-weight: 700;
    color: rgba(255, 255, 255, .92);
}

.comment__badge {
    display: inline-flex;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    background: rgba(18, 214, 232, .18);
    color: #12d6e8;
    border: 1px solid rgba(18, 214, 232, .30);
}

.comment__badge--seller {
    background: rgba(18, 214, 232, .18);
    color: #12d6e8;
}

.comment__time {
    font-size: 12px;
    color: rgba(255, 255, 255, .40);
    margin-top: 1px;
}

.comment__body p {
    margin: 6px 0 0;
    font-size: 14px;
    line-height: 1.65;
    color: rgba(255, 255, 255, .70);
}

/* ===== AUCTION PAGE RESPONSIVE ===== */
@media (max-width: 1100px) {
    .auction-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .filter-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .auction-hero__content {
        padding-top: 20px;
    }

    .auction-hero__bg {
        background-size: cover;
        background-position: center;
    }
}

@media (max-width: 680px) {
    .auction-grid {
        grid-template-columns: 1fr;
    }

    .filter-grid {
        grid-template-columns: 1fr;
    }

    .filter-card {
        padding: 20px 18px;
    }

    .auction-card__media {
        height: 200px;
    }

    .auction-meta {
        flex-direction: column;
        gap: 6px;
    }

    .auction-specs {
        grid-template-columns: 1fr 1fr;
    }

    .comments-card {
        padding: 20px 18px;
    }
}

/* =========================
   MARKETPLACE PAGE
========================= */
.marketplace-page {
    background: #071018;
}

.marketplace-page .container {
    width: min(1240px, calc(100% - 56px));
}

.marketplace-hero {
    position: relative;
    min-height: 460px;
    padding: 52px 0 44px;
    overflow: hidden;
}

.marketplace-hero__bg {
    padding: 50px 0 44px;
    position: absolute;
    inset: 0;
    background-image: url("../market-hero-bg-.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center 35%;
    filter: saturate(.9) contrast(1.02);
}

.marketplace-hero__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg,
            rgba(7, 16, 24, .85) 0%,
            rgba(7, 16, 24, .65) 45%,
            rgba(7, 16, 24, .18) 100%),
        linear-gradient(180deg,
            rgba(0, 0, 0, .20) 0%,
            rgba(0, 0, 0, .30) 100%);
}

.marketplace-hero__content {
    position: relative;
    z-index: 2;
    padding-top: 22px;
}

.marketplace-hero__title {
    margin: 18px 0 12px;
    font-size: clamp(34px, 5.2vw, 60px);
    font-weight: 700;
    letter-spacing: -0.02em;
    text-shadow: 0 10px 30px rgba(0, 0, 0, .45);
}

.marketplace-hero__desc {
    margin: 0 0 24px;
    max-width: 640px;
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, .70);
}

.badge--gold {
    background: rgba(210, 162, 80, .95);
    border-color: rgba(255, 255, 255, .18);
    gap: 0;
    padding: 8px 16px;
}

.badge--gold .badge__dot {
    display: none;
}

.badge--gold .badge__text {
    letter-spacing: .08em;
    font-size: 11px;
    color: rgba(0, 0, 0, .80);
}

/* Marketplace stats */
.marketplace-highlights {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin: 14px 0 24px;
    flex-wrap: wrap;
}

.marketplace-highlight {
    padding-right: 0;
    border-right: none;
}

.marketplace-highlight__value {
    font-size: 20px;
    font-weight: 800;
    color: rgba(255, 255, 255, .95);
}

.marketplace-highlight__value--accent {
    color: #12d6e8;
}

.marketplace-highlight__label {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, .45);
    margin-top: 4px;
}

.marketplace-hero__actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

/* Muted filter labels for marketplace */
.filter-label--muted {
    color: rgba(255, 255, 255, .60) !important;
    letter-spacing: .04em !important;
    text-transform: none !important;
    font-size: 12px !important;
}

.marketplace-filters {
    padding: 28px 0 24px;
}

.marketplace-listings {
    padding: 20px 0 54px;
}

.marketplace-section-title {
    margin: 0 0 22px;
    font-size: 22px;
    font-weight: 700;
    font-style: italic;
    letter-spacing: .01em;
    color: rgba(255, 255, 255, .92);
}

/* Cards */
.marketplace-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.marketplace-card {
    background: #0d1b2a;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 18px 36px rgba(0, 0, 0, .38);
    display: flex;
    flex-direction: column;
    min-height: 100%;
    position: relative;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.marketplace-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #12d6e8;
    border-radius: 0 0 18px 18px;
}

.marketplace-card:hover {
    transform: translateY(-4px);
    border-color: rgba(18, 214, 232, .25);
    box-shadow: 0 24px 50px rgba(0, 0, 0, .45);
}

.marketplace-card__media {
    position: relative;
    height: 210px;
    overflow: hidden;
}

.marketplace-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .35s ease;
}

.marketplace-card:hover .marketplace-card__media img {
    transform: scale(1.04);
}

.marketplace-card__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, .10) 0%, rgba(0, 0, 0, .45) 100%);
    opacity: .6;
    transition: opacity .2s ease;
}

.marketplace-card:hover .marketplace-card__media::after {
    opacity: .8;
}

.marketplace-card:hover .auction-card__mediaOverlay {
    opacity: 1;
}

.marketplace-card__body {
    padding: 18px 18px 22px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.marketplace-card__title {
    margin: 0;
    font-size: 15px;
    font-weight: 700;
    color: rgba(255, 255, 255, .95);
    line-height: 1.35;
}

.marketplace-price {
    font-size: 18px;
    font-weight: 800;
    color: #12d6e8;
}

.marketplace-card__actions {
    margin-top: 8px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.marketplace-comments {
    padding: 24px 0 70px;
}

@media (max-width: 1100px) {
    .marketplace-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .marketplace-hero__content {
        padding-top: 20px;
    }
}

@media (max-width: 680px) {
    .marketplace-grid {
        grid-template-columns: 1fr;
    }

    .marketplace-card__media {
        height: 200px;
    }

    .marketplace-highlight {
        border-right: none;
        padding-right: 0;
    }

    .marketplace-card__actions {
        grid-template-columns: 1fr;
    }
}

/* =========================
   BLOG PAGE BASE
========================= */
.blog-page {
    background: var(--bg);
    color: var(--text);
}

/* =========================
   BLOG GRID
========================= */
.blog-grid {
    padding: 60px 0 40px;
}

.blog-grid__items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* ✅ 2 cards per row */
    gap: 40px;
}

/* =========================
   BLOG CARD
========================= */
.blog-card {
    display: flex;
    gap: 28px;
    padding: 26px;
    min-height: 280px;
    /* ✅ bigger height */
    background: rgba(255, 255, 255, .04);
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, .08);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .35);
    transition: all .25s ease;
}

.blog-card:hover {
    transform: translateY(-4px);
    border-color: rgba(18, 214, 232, .35);
    box-shadow:
        0 0 0 1px rgba(18, 214, 232, .12),
        0 28px 64px rgba(0, 0, 0, .55);
}

/* =========================
   IMAGE
========================= */
.blog-card__image {
    width: 300px;
    /*height: 220px;*/
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 18px;
}

.blog-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.blog-card:hover .blog-card__image img {
    transform: scale(1.06);
}

/* =========================
   CONTENT
========================= */
.blog-card__body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* ✅ vertical center */
    align-items: flex-start;
    max-width: 520px;
}

/* META */
.blog-card__meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .55);
    margin-bottom: 10px;
}

.blog-card__category {
    font-weight: 700;
}

.blog-card__dot {
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, .35);
    border-radius: 50%;
}

.blog-card__comments {
    font-weight: 600;
    letter-spacing: 0;
    text-transform: none;
}

/* TITLE */
.blog-card__title {
    margin: 0 0 14px;
    font-size: 20px;
    line-height: 1.4;
    font-weight: 700;
    color: rgba(255, 255, 255, .96);
}

.blog-card__title a {
    color: inherit;
    text-decoration: none;
}

/* EXCERPT */
.blog-card__excerpt {
    font-size: 14px;
    line-height: 1.65;
    color: rgba(255, 255, 255, .70);
    margin: 0 0 20px;
    text-align: start;
    /* ✅ center text */
}

/* READ MORE */
.blog-card__link {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #12d6e8;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all .2s ease;
}

.blog-card:hover .blog-card__link {
    transform: translateX(4px);
    color: rgba(18, 214, 232, .95);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1024px) {
    .blog-grid__items {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .blog-card {
        flex-direction: column;
        min-height: auto;
        padding: 20px;
    }

    .blog-card__image {
        width: 100%;
        height: 230px;
    }

    .blog-card__body {
        max-width: 100%;
        align-items: flex-start;
    }

    .blog-card__excerpt {
        text-align: left;
    }
}

.blog-hero {
    background-size: cover;
    /* image properly fit */
    background-position: center;
    /* center image */
    background-repeat: no-repeat;
    min-height: 60vh;
    /* hero height */
    display: flex;
    align-items: center;
    /* vertical center */
    position: relative;
}

/* Dark overlay for readability */
.blog-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

/* Content wrapper */
.blog-hero__inner {
    position: relative;
    /* overlay ke upar */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: 60px;
    /* top se neeche */
    color: #fff;
}

/* Title */
.blog-hero__title {
    font-size: 48px;
    margin-bottom: 10px;
}

/* Breadcrumbs */
.blog-hero__crumbs {
    font-size: 16px;
}

.blog-hero__crumbs a {
    color: #fff;
    text-decoration: none;
}

/* Tablet */
@media (max-width: 768px) {
    .blog-hero {
        min-height: 50vh;
    }

    .blog-hero__title {
        font-size: 34px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .blog-hero {
        min-height: 40vh;
    }

    .blog-hero__title {
        font-size: 26px;
    }

    .blog-hero__crumbs {
        font-size: 14px;
    }
}

/* =========================
   CONTACT PAGE
========================= */
.contact-page {
    background: var(--bg);
    color: var(--text);
}

.contact-hero {
    padding: 72px 0 58px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background:
        radial-gradient(900px 520px at 20% 10%, rgba(18, 214, 232, 0.12), rgba(18, 214, 232, 0) 60%),
        linear-gradient(180deg, rgba(8, 18, 32, 0.9), rgba(7, 16, 24, 0.9));
}

.contact-hero__inner {
    text-align: center;
    max-width: 760px;
}

.contact-hero__eyebrow {
    margin: 0 0 12px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: rgba(18, 214, 232, 0.95);
}

.contact-hero__title {
    margin: 0 0 12px;
    font-size: clamp(36px, 4.6vw, 58px);
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
}

.contact-hero__subtitle {
    margin: 0 auto;
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.65);
}

.contact-body {
    padding: 54px 0 80px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 30px;
    align-items: start;
}

.contact-info__card,
.contact-form__card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 18px;
    padding: 26px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.contact-info__card+.contact-info__card {
    margin-top: 20px;
}

.contact-info__card--accent {
    background: rgba(18, 214, 232, 0.06);
    border-color: rgba(18, 214, 232, 0.22);
}

.contact-info__title {
    margin: 0 0 12px;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.contact-info__text {
    margin: 0 0 18px;
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.60);
}

.contact-info__list {
    display: grid;
    gap: 14px;
}

.contact-info__item {
    display: grid;
    gap: 6px;
}

.contact-info__label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.48);
}

.contact-info__value {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

.contact-info__tips {
    margin: 0;
    padding-left: 16px;
    font-size: 13px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.65);
}

.contact-form__title {
    margin: 0 0 6px;
    font-size: 22px;
    font-weight: 700;
}

.contact-form__subtitle {
    margin: 0 0 18px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
}

.contact-alert {
    padding: 12px 14px;
    border-radius: 12px;
    margin-bottom: 16px;
    font-size: 13px;
    font-weight: 600;
}

.contact-alert--success {
    background: rgba(46, 204, 113, 0.15);
    border: 1px solid rgba(46, 204, 113, 0.35);
    color: rgba(255, 255, 255, 0.95);
}

.contact-form__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 16px;
}

.contact-field {
    display: grid;
    gap: 8px;
}

.contact-label {
    font-size: 12px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
}

.contact-input {
    width: 100%;
    height: 44px;
    padding: 0 14px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(6, 14, 20, 0.6);
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.contact-input--textarea {
    height: auto;
    padding: 12px 14px;
    resize: vertical;
    min-height: 140px;
}

.contact-input:focus {
    border-color: rgba(18, 214, 232, 0.6);
    box-shadow: 0 0 0 3px rgba(18, 214, 232, 0.2);
}

.contact-input.is-invalid {
    border-color: rgba(231, 76, 60, 0.7);
}

.contact-error {
    font-size: 12px;
    color: rgba(231, 76, 60, 0.9);
}

.contact-submit {
    width: 100%;
    height: 50px;
    margin-top: 12px;
    border-radius: 12px;
}

.contact-submit__loader {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.contact-submit__loader .loader-dot {
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.6);
    animation: contact-dot 1s infinite ease-in-out;
}

.contact-submit__loader .loader-dot:nth-child(2) {
    animation-delay: .15s;
}

.contact-submit__loader .loader-dot:nth-child(3) {
    animation-delay: .3s;
}

@keyframes contact-dot {

    0%,
    80%,
    100% {
        transform: scale(0.8);
        opacity: .4;
    }

    40% {
        transform: scale(1.1);
        opacity: 1;
    }
}

@media (max-width: 1000px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-form__grid {
        grid-template-columns: 1fr;
    }
}

/* =========================
   SELL A BOAT LISTING (FIGMA MATCH)
========================= */
.sell-boat-page {
    background: var(--bg);
    color: var(--text);
}

.sell-hero {
    background:
        linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url('../../frontend/auction-hero-bg-.jpg');

    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    padding: 48px 0 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.sell-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(0, 0, 0, 0.9));
    pointer-events: none;
}

/* .sell-hero {
    background-image: url('../../frontend/auction-hero-bg-.jpg');
    width: 100%;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 48px 0 32px;
    background: var(--bg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
} */

.sell-hero__inner {
    display: flex;
    align-items: center;
    gap: 24px;
}

.sell-hero__inner--center {
    flex-direction: column;
    text-align: center;
    max-width: 720px;
}

.sell-hero__eyebrow {
    margin: 0 0 10px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: rgba(18, 214, 232, 0.95);
}

.sell-hero__title {
    margin: 0 0 12px;
    font-size: clamp(34px, 4vw, 52px);
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
}

.sell-hero__subtitle {
    margin: 0 0 20px;
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
}

.sell-hero__search {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(10, 20, 40, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.sell-hero__search--wide {
    width: min(620px, 100%);
}

.sell-hero__searchIcon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
}

.sell-hero__search input {
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
}

.sell-layout {
    padding: 18px 0 80px;
}

.sell-toolbar--full {
    margin-bottom: 18px;
}

.sell-layout__inner {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 24px;
    align-items: start;
}

.sell-sidebar__card {
    background: rgba(6, 13, 28, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 20px 20px 24px;
    min-height: 720px;
}

.sell-sidebar__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.sell-sidebar__icon {
    color: rgba(255, 255, 255, 0.5);
}

.sell-sidebar__header h3 {
    margin: 0;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.92);
}

.sell-filter {
    margin-bottom: 20px;
}

.sell-filter h4 {
    margin: 0 0 10px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
}

.sell-filter__list {
    display: grid;
    gap: 12px;
}

.sell-check {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.82);
}

.sell-check input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.sell-check__box {
    width: 16px;
    height: 16px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(10, 18, 36, 0.9);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
}

.sell-check__box::after {
    content: "";
    width: 8px;
    height: 5px;
    border-left: 2px solid transparent;
    border-bottom: 2px solid transparent;
    transform: rotate(-45deg);
}

.sell-check input:checked+.sell-check__box {
    background: #b7c0ff;
    border-color: #b7c0ff;
}

.sell-check input:checked+.sell-check__box::after {
    border-left-color: #0b1226;
    border-bottom-color: #0b1226;
}

.sell-check em {
    margin-left: auto;
    font-style: normal;
    color: rgba(123, 140, 255, 0.95);
    font-size: 12px;
}

.sell-range {
    display: grid;
    gap: 10px;
}

.sell-range input {
    height: 36px;
    padding: 0 10px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(6, 12, 24, 0.7);
    color: rgba(255, 255, 255, 0.85);
}

.sell-range--slider input {
    height: 4px;
    padding: 0;
    background: rgba(123, 140, 255, 0.35);
    border: none;
    border-radius: 999px;
}

.sell-range__labels {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.55);
}

.sell-filter__actions {
    display: flex;
    gap: 10px;
    margin-top: 8px;
}

.sell-results {
    display: grid;
    gap: 16px;
}

.sell-toolbar {
    background: rgba(6, 12, 28, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .04);
    width: 100%;
}

.sell-toolbar__count {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
}

.sell-toolbar__actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sell-sort {
    height: 34px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(10, 18, 40, 0.9);
    color: rgba(255, 255, 255, 0.88);
    font-size: 12px;
    padding: 0 12px;
}

.sell-view {
    display: flex;
    gap: 6px;
}

.sell-view__btn {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(10, 18, 40, 0.95);
    color: rgba(255, 255, 255, 0.75);
}

.sell-view__btn.is-active {
    background: #b7c0ff;
    color: #0b1226;
    border-color: #b7c0ff;
}

.sell-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.sell-card {
    background: rgba(10, 18, 36, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.35);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.sell-card__media {
    position: relative;
    height: 190px;
    overflow: hidden;
}

.sell-card__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 10, 20, 0) 0%, rgba(7, 10, 20, 0.45) 70%, rgba(7, 10, 20, 0.75) 100%);
    opacity: 0.6;
    transition: opacity .2s ease;
    pointer-events: none;
}

.sell-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .35s ease;
}

.sell-card:hover {
    transform: translateY(-3px);
    border-color: rgba(183, 192, 255, 0.4);
    box-shadow: 0 26px 40px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(183, 192, 255, 0.12);
}

.sell-card:hover .sell-card__media img {
    transform: scale(1.03);
}

.sell-card:hover .sell-card__media::after {
    opacity: 0.85;
}

.sell-card__tags {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.sell-tag {
    padding: 4px 8px;
    font-size: 10px;
    font-weight: 700;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.85);
}

.sell-tag--new {
    background: #94a5ff;
    color: #0b1226;
}

.sell-tag--reserve {
    background: #e6e6e6;
    color: #0b1226;
}

.sell-tag--ending {
    background: #ff5c5c;
    color: #fff;
}

.sell-card__titleRow {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
}

.sell-card__fav {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(8, 12, 24, 0.45);
    color: rgba(255, 255, 255, 0.75);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.sell-card__body {
    padding: 16px;
    display: grid;
    gap: 8px;
}

.sell-card__title {
    margin: 0;
    font-size: 14px;
    font-weight: 700;
}

.sell-card__meta {
    display: flex;
    gap: 12px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.55);
}

.sell-card__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.75);
}

.sell-card__row--muted {
    color: rgba(255, 255, 255, 0.45);
}

.sell-card__price {
    font-size: 16px;
    font-weight: 700;
    color: #9aa8ff;
}

.sell-card__cta {
    margin-top: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 34px;
    border-radius: 10px;
    background: #e6e6e6;
    color: #0b1226;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.sell-load {
    margin-top: 22px;
    display: flex;
    justify-content: center;
}

.sell-load__btn {
    height: 40px;
    padding: 0 28px;
}

@media (max-width: 1200px) {
    .sell-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 980px) {
    .sell-layout__inner {
        grid-template-columns: 1fr;
    }

    .sell-hero__inner {
        flex-direction: column;
        align-items: stretch;
    }
}

@media (max-width: 720px) {
    .sell-grid {
        grid-template-columns: 1fr;
    }

    .sell-toolbar {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
}

/* =========================
   SELL A BOAT DETAIL
========================= */
.sell-detail-page {
    background: var(--bg);
    color: var(--text);
}

.sell-detail-hero {
    padding: 42px 0 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--bg);
}

.sell-detail-breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 18px;
}

.sell-detail-breadcrumbs a {
    color: inherit;
}

.sell-detail-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 28px;
    align-items: start;
}

.sell-detail-media__main {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: inset 0 0 0 1px rgba(10, 18, 40, 0.6);
    background: rgba(6, 12, 28, 0.85);
}

.sell-detail-media__main img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
}

.sell-detail-media__countdown {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 16px;
    background: rgba(7, 16, 45, 0.86);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 10px 12px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity .2s ease, transform .2s ease;
    pointer-events: none;
}

.sell-detail-media__main:hover .sell-detail-media__countdown {
    opacity: 1;
    transform: translateY(0);
}

.sell-detail-media__share {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(8, 12, 24, 0.85);
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 10px;
    padding: 6px 12px;
    font-size: 11px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.sell-detail-media__shareIcon {
    display: inline-flex;
    align-items: center;
}

.sell-detail-media__thumbs {
    margin-top: 12px;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 14px;
}

.sell-detail-thumb {
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
}

.sell-detail-thumb img {
    width: 100%;
    height: 92px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(6, 12, 28, 0.9);
}

.sell-detail-thumb.is-active img {
    border-color: rgba(183, 192, 255, 0.85);
    box-shadow: 0 0 0 2px rgba(183, 192, 255, 0.35);
}

.sell-detail-side {
    display: grid;
    gap: 18px;
}

.sell-detail-card {
    background: rgba(6, 12, 28, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    padding: 18px;
}

.sell-detail-card h1 {
    margin: 0 0 10px;
    font-size: 18px;
}

.sell-detail-priceRow {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.sell-detail-priceRow span {
    font-size: 18px;
    font-weight: 700;
    color: #b7c0ff;
}

.sell-detail-priceRow small {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
}

.sell-detail-muted {
    margin: 6px 0 14px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
}

.sell-detail-statRow {
    display: flex;
    justify-content: space-between;
    padding: 10px 0 14px;
    border-top: 1px solid rgba(255, 255, 255, .08);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    margin-bottom: 14px;
}

.sell-detail-statRow div {
    display: grid;
    gap: 4px;
    font-size: 12px;
    color: rgba(255, 255, 255, .6);
}

.sell-detail-statRow strong {
    font-size: 14px;
    color: rgba(255, 255, 255, .9);
}

.sell-detail-input {
    width: 100%;
    height: 40px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, .18);
    background: rgba(10, 18, 36, 0.9);
    color: rgba(255, 255, 255, .9);
    padding: 0 12px;
    margin-bottom: 10px;
}

.sell-detail-btn {
    width: 100%;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .08);
    color: rgba(255, 255, 255, .9);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    cursor: pointer;
}

.sell-detail-btn--primary {
    background: #e6e6e6;
    color: #0b1226;
}

.sell-detail-btn--accent {
    background: #b7c0ff;
    color: #0b1226;
    margin-bottom: 10px;
}

.sell-detail-btn--success {
    background: #26c281;
    color: #071018;
    margin-bottom: 10px;
}

.sell-detail-btn:disabled,
.sell-detail-input:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

.sell-detail-divider {
    text-align: center;
    font-size: 11px;
    color: rgba(255, 255, 255, .5);
    margin: 10px 0;
}

.sell-detail-window {
    color: #b0b0b0;
    font-size: 0.9rem;
}

.sell-detail-winner-banner {
    border: 1px solid #2f9e44;
    border-radius: 10px;
    padding: 10px 12px;
    margin-bottom: 12px;
    background-color: rgba(47, 158, 68, 0.12);
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.9rem;
}

.sell-detail-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 10px;
}

.sell-detail-actions button {
    height: 34px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .05);
    color: rgba(255, 255, 255, .8);
    font-size: 12px;
}

.sell-payment-layout {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 20px;
}

.sell-payment-card h1 {
    margin-bottom: 12px;
}

.sell-payment-element {
    margin: 16px 0 12px;
    padding: 12px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(6, 14, 30, 0.6);
}

.sell-payment-message {
    margin-top: 10px;
    font-size: 0.875rem;
    color: #f6c343;
}

.sell-payment-summary {
    height: fit-content;
}

.sell-payment-summary p {
    color: #b0b0b0;
    margin-bottom: 10px;
}

.sell-payment-summary p strong {
    color: rgba(255, 255, 255, .92);
}

@media (max-width: 980px) {
    .sell-payment-layout {
        grid-template-columns: 1fr;
    }
}

.sell-detail-seller {
    display: flex;
    gap: 10px;
    align-items: center;
    margin: 12px 0 14px;
}

.sell-detail-seller__avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(183, 192, 255, .2);
    color: #b7c0ff;
    display: grid;
    place-items: center;
    font-weight: 700;
}

.sell-detail-seller span {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, .6);
    margin-top: 2px;
}

.sell-detail-btn--ghost {
    margin-top: 8px;
    background: rgba(255, 255, 255, .06);
}

.sell-detail-tabs {
    padding: 30px 0 90px;
}

.sell-detail-tablist {
    display: flex;
    gap: 18px;
    padding: 12px 18px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 12px;
    background: rgba(6, 12, 28, .9);
    margin-bottom: 18px;
}

.sell-detail-tablist button {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, .6);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .06em;
    padding: 6px 0;
}

.sell-detail-tablist button.is-active {
    color: #b7c0ff;
    border-bottom: 2px solid #b7c0ff;
}

.sell-detail-panel {
    background: rgba(6, 12, 28, .9);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 14px;
    padding: 20px;
    display: none;
}

.sell-detail-panel.is-active {
    display: block;
}

.sell-detail-paragraph {
    margin: 0;
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, .65);
}

.sell-detail-table {
    margin-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, .1);
}

.sell-detail-table__head {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    padding: 12px 6px;
    font-size: 11px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .55);
}

.sell-detail-table__row {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    padding: 12px 6px;
    border-top: 1px solid rgba(255, 255, 255, .08);
    font-size: 13px;
    color: rgba(255, 255, 255, .85);
    transition: background .2s ease;
}

.sell-detail-table__row:hover {
    background: rgba(183, 192, 255, .08);
}

.sell-detail-table__head--owner {
    grid-template-columns: 1.2fr 1fr 1.3fr 1fr;
}

.sell-detail-table__row--owner {
    grid-template-columns: 1.2fr 1fr 1.3fr 1fr;
}

.sell-detail-panel h2 {
    margin: 0 0 14px;
    font-size: 16px;
}

.sell-detail-specGrid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.sell-detail-specCard {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 10px;
    padding: 12px;
    display: grid;
    gap: 6px;
    font-size: 12px;
}

.sell-detail-specCard span {
    color: rgba(255, 255, 255, .5);
}

.sell-detail-specList {
    list-style: none;
    margin: 0;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 12px;
    overflow: hidden;
}

.sell-detail-specList li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    background: rgba(255, 255, 255, .03);
}

.sell-detail-specList li:last-child {
    border-bottom: 0;
}

.sell-detail-specList span {
    color: rgba(255, 255, 255, .62);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.sell-detail-specList strong {
    color: rgba(255, 255, 255, .92);
    font-size: 13px;
    text-align: right;
}

.sell-detail-highlights {
    margin-top: 18px;
}

.sell-detail-highlights ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding-left: 18px;
    font-size: 13px;
    color: rgba(255, 255, 255, .7);
}

@media (max-width: 1100px) {
    .sell-detail-grid {
        grid-template-columns: 1fr;
    }

    .sell-detail-specGrid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.sell-detail-hero__eyebrow {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: rgba(18, 214, 232, 0.9);
}

.sell-detail-hero__title {
    margin: 10px 0 12px;
    font-size: clamp(32px, 4vw, 52px);
}

.sell-detail-hero__subtitle {
    margin: 0 0 16px;
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.65);
}

.sell-detail-meta {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
}

.sell-detail-price {
    margin-top: 16px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sell-detail-price strong {
    font-size: 22px;
    color: #12d6e8;
}

.sell-detail-hero__card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.35);
}

.sell-detail-hero__cardRow {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.sell-detail-hero__cardRow strong {
    color: rgba(255, 255, 255, 0.9);
}

.sell-detail-hero__cardRow:last-of-type {
    border-bottom: none;
}

.sell-detail-hero__btn {
    width: 100%;
    margin-top: 16px;
    height: 44px;
}

.sell-detail-body {
    padding: 50px 0 90px;
}

.sell-detail-body__inner {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 26px;
}

.sell-detail-gallery {
    display: grid;
    gap: 16px;
}

.sell-detail-gallery__main {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.sell-detail-gallery__main img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    display: block;
}

.sell-detail-gallery__thumbs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
    gap: 10px;
}

.sell-detail-gallery__thumbs img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.sell-detail-info {
    display: grid;
    gap: 18px;
}

.sell-detail-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 22px;
}

.sell-detail-card h2 {
    margin: 0 0 12px;
    font-size: 18px;
}

.sell-detail-card p {
    margin: 0;
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.65);
}

.sell-detail-specs {
    display: grid;
    gap: 12px;
}

.sell-detail-spec {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 8px;
}

.sell-detail-spec strong {
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 1020px) {
    .sell-detail-hero__inner {
        grid-template-columns: 1fr;
    }

    .sell-detail-body__inner {
        grid-template-columns: 1fr;
    }

    .sell-detail-gallery__main img {
        height: 300px;
    }
}

.frontend-results-loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(180deg, rgba(18, 214, 232, 0.08) 0%, rgba(24, 188, 208, 0.10) 100%),
        rgba(248, 252, 255, 0.66);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.frontend-results-loader__box {
    display: grid;
    gap: 10px;
    min-width: 260px;
    width: min(92vw, 360px);
    padding: 16px 18px;
    border-radius: 14px;
    background: rgba(7, 16, 24, 0.90);
    border: 1px solid rgba(18, 214, 232, 0.32);
    color: var(--text);
    font-weight: 600;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.35);
}

.frontend-results-loader__spinner {
    width: 20px;
    height: 20px;
    border-radius: 999px;
    border: 2px solid rgba(255, 255, 255, 0.22);
    border-top-color: var(--accent);
    animation: frontend-loader-spin .8s linear infinite;
}

.frontend-results-loader__dots {
    display: inline-flex;
    gap: 4px;
    margin-left: 2px;
}

.frontend-results-loader__dots i {
    width: 5px;
    height: 5px;
    border-radius: 999px;
    background: var(--accent);
    opacity: .35;
    animation: frontend-loader-dot 1s ease-in-out infinite;
}

.frontend-results-loader__dots i:nth-child(2) {
    animation-delay: .15s;
}

.frontend-results-loader__dots i:nth-child(3) {
    animation-delay: .3s;
}

.frontend-results-loader__skeleton {
    display: grid;
    gap: 6px;
}

.frontend-results-loader__skeleton span {
    height: 8px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(18, 214, 232, 0.20) 25%, rgba(18, 214, 232, 0.55) 37%, rgba(18, 214, 232, 0.20) 63%);
    background-size: 220% 100%;
    animation: frontend-loader-shimmer 1.2s linear infinite;
}

.frontend-results-loader__skeleton span:nth-child(1) {
    width: 100%;
}

.frontend-results-loader__skeleton span:nth-child(2) {
    width: 86%;
}

.frontend-results-loader__skeleton span:nth-child(3) {
    width: 68%;
}

.frontend-loading-state {
    pointer-events: none;
    user-select: none;
    cursor: progress;
}

@keyframes frontend-loader-dot {

    0%,
    80%,
    100% {
        opacity: .35;
        transform: translateY(0);
    }

    40% {
        opacity: 1;
        transform: translateY(-2px);
    }
}

@keyframes frontend-loader-shimmer {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

@keyframes frontend-loader-spin {
    to {
        transform: rotate(360deg);
    }
}