/* =====================================================
   SEIZEBID PREMIUM HOMEPAGE
   CSS PIECE 1
===================================================== */


/* =====================================================
   RESET
===================================================== */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}


html {
    scroll-behavior: smooth;
}


body {
    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Arial,
        sans-serif;

    background: #f7f8fa;

    color: #172033;

    line-height: 1.6;
}


a {
    text-decoration: none;

    color: inherit;
}


button,
input,
select,
textarea {
    font: inherit;
}


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

.navbar {
    position: relative;

    z-index: 1000;

    width: 100%;

    min-height: 76px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding:
        0
        clamp(22px, 5vw, 80px);

    background: #0b1424;

    border-bottom:
        1px solid
        rgba(255, 255, 255, 0.08);
}


.logo {
    font-size: 28px;

    font-weight: 900;

    letter-spacing: -1.2px;

    color: #ffffff;

    white-space: nowrap;
}


.logo span {
    color: #c8a45d;
}


.navbar nav {
    display: flex;

    align-items: center;

    gap: 30px;
}


.navbar nav a {
    position: relative;

    color: #dce2ea;

    font-size: 13px;

    font-weight: 600;

    transition:
        color 0.25s ease;
}


.navbar nav a:hover {
    color: #c8a45d;
}


.navbar nav a:not(.login-btn)::after {
    content: "";

    position: absolute;

    left: 0;

    bottom: -8px;

    width: 0;

    height: 2px;

    background: #c8a45d;

    transition:
        width 0.25s ease;
}


.navbar nav a:not(.login-btn):hover::after {
    width: 100%;
}


/* =====================================================
   LOGIN BUTTON
===================================================== */

.login-btn {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-height: 40px;

    padding:
        0
        19px;

    border:
        1px solid
        #c8a45d;

    border-radius: 4px;

    color: #ffffff !important;

    background: transparent;

    transition:
        background 0.25s ease,
        color 0.25s ease;
}


.login-btn:hover {
    background: #c8a45d;

    color: #0b1424 !important;
}


/* =====================================================
   HERO
===================================================== */

.hero {
    position: relative;

    width: 100%;

    min-height: 650px;

    overflow: hidden;

    background: #0b1424;
}


.hero-slide {
    position: absolute;

    inset: 0;

    display: flex;

    align-items: center;

    background-size: cover;

    background-position: center;

    opacity: 0;

    transform: scale(1.03);

    transition:
        opacity 1s ease,
        transform 6s ease;

    pointer-events: none;
}


.hero-slide.active {
    opacity: 1;

    transform: scale(1);

    pointer-events: auto;
}


.hero-content {
    position: relative;

    z-index: 3;

    width: min(
        1180px,
        calc(100% - 44px)
    );

    margin: 0 auto;

    padding:
        80px
        0;
}


.hero-label {
    display: inline-block;

    margin-bottom: 18px;

    color: #c8a45d;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 3px;
}


.hero-content h1 {
    max-width: 760px;

    color: #ffffff;

    font-size:
        clamp(
            44px,
            6vw,
            78px
        );

    line-height: 1.03;

    letter-spacing: -2.5px;

    font-weight: 800;
}


.hero-content h1 span {
    display: block;

    color: #c8a45d;
}


.hero-content p {
    max-width: 620px;

    margin-top: 25px;

    color: #dce2ea;

    font-size: 17px;

    line-height: 1.8;
}


/* =====================================================
   HERO BUTTONS
===================================================== */

.hero-buttons {
    display: flex;

    align-items: center;

    gap: 13px;

    margin-top: 32px;

    flex-wrap: wrap;
}


.primary-btn,
.secondary-btn {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-height: 48px;

    padding:
        0
        25px;

    border-radius: 4px;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 0.4px;

    transition:
        transform 0.2s ease,
        background 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease;
}


.primary-btn {
    background: #c8a45d;

    color: #101827;

    border:
        1px solid
        #c8a45d;
}


.primary-btn:hover {
    transform: translateY(-2px);

    background: #d8b875;

    border-color: #d8b875;
}


.secondary-btn {
    background: rgba(
        255,
        255,
        255,
        0.06
    );

    color: #ffffff;

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            0.45
        );
}


.secondary-btn:hover {
    transform: translateY(-2px);

    background: #ffffff;

    color: #101827;

    border-color: #ffffff;
}


/* =====================================================
   HERO LOCATION
===================================================== */

.hero-location {
    display: flex;

    align-items: center;

    gap: 10px;

    margin-top: 30px;

    color: #b8c1ce;

    font-size: 11px;

    font-weight: 600;
}


.hero-location .divider {
    opacity: 0.4;

    margin:
        0
        5px;
}


/* =====================================================
   HERO DOTS
===================================================== */

.hero-dots {
    position: absolute;

    z-index: 10;

    bottom: 30px;

    left: 50%;

    transform: translateX(-50%);

    display: flex;

    align-items: center;

    gap: 8px;
}


.hero-dot {
    width: 30px;

    height: 3px;

    border: 0;

    border-radius: 10px;

    background:
        rgba(
            255,
            255,
            255,
            0.35
        );

    cursor: pointer;

    transition:
        width 0.3s ease,
        background 0.3s ease;
}


.hero-dot.active {
    width: 52px;

    background: #c8a45d;
}


/* =====================================================
   TRUST BAR
===================================================== */

.trust-bar {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    background: #ffffff;

    border-bottom:
        1px solid
        #e6e9ee;
}


.trust-item {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 13px;

    min-height: 82px;

    padding: 15px;

    border-right:
        1px solid
        #e6e9ee;
}


.trust-item:last-child {
    border-right: 0;
}


.trust-item strong {
    color: #c8a45d;

    font-size: 12px;

    font-weight: 900;
}


.trust-item span {
    color: #566174;

    font-size: 11px;

    font-weight: 700;
}


/* =====================================================
   RESPONSIVE NAVIGATION
===================================================== */

@media (max-width: 950px) {

    .navbar {
        padding:
            0
            22px;
    }


    .navbar nav {
        gap: 17px;
    }


    .navbar nav a {
        font-size: 11px;
    }


    .hero {
        min-height: 600px;
    }


    .hero-content {
        padding-top: 70px;
    }

}


@media (max-width: 720px) {

    .navbar {
        min-height: 68px;
    }


    .logo {
        font-size: 24px;
    }


    .navbar nav {
        gap: 10px;
    }


    .navbar nav a:not(.login-btn) {
        display: none;
    }


    .login-btn {
        min-height: 36px;

        padding:
            0
            13px;

        font-size: 10px;
    }


    .hero {
        min-height: 620px;
    }


    .hero-content {
        width:
            calc(100% - 36px);

        padding-top: 60px;
    }


    .hero-content h1 {
        font-size: 45px;

        letter-spacing: -1.5px;
    }


    .hero-content p {
        font-size: 14px;

        line-height: 1.7;
    }


    .hero-location {
        flex-wrap: wrap;
    }


    .trust-bar {
        grid-template-columns:
            repeat(2, 1fr);
    }


    .trust-item {
        min-height: 70px;

        border-bottom:
            1px solid
            #e6e9ee;
    }

}

/* =====================================================
   SEIZEBID PREMIUM HOMEPAGE
   CSS PIECE 2
===================================================== */


/* =====================================================
   GENERAL SECTION STYLING
===================================================== */

.marketplace-intro,
.featured-section,
.how-it-works {
    width: 100%;

    padding:
        95px
        clamp(22px, 5vw, 80px);
}


.marketplace-intro {
    background: #f7f8fa;
}


.section-heading {
    width: min(
        850px,
        100%
    );

    margin:
        0
        auto
        55px;

    text-align: center;
}


.section-heading.centered {
    text-align: center;
}


.section-label {
    display: inline-block;

    margin-bottom: 13px;

    color: #b28c45;

    font-size: 10px;

    font-weight: 900;

    letter-spacing: 2.5px;
}


.section-heading h2 {
    color: #172033;

    font-size:
        clamp(
            32px,
            4vw,
            48px
        );

    line-height: 1.1;

    letter-spacing: -1.5px;

    font-weight: 800;
}


.section-heading h2 span {
    color: #b28c45;
}


.section-heading p {
    max-width: 650px;

    margin:
        18px
        auto
        0;

    color: #697386;

    font-size: 14px;

    line-height: 1.8;
}


/* =====================================================
   CATEGORY GRID
===================================================== */

.category-grid {
    width: min(
        1180px,
        100%
    );

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 22px;
}


.category-card {
    display: block;

    min-height: 470px;

    overflow: hidden;

    border-radius: 8px;

    background: #172033;

    box-shadow:
        0
        18px
        45px
        rgba(
            18,
            28,
            44,
            0.12
        );

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}


.category-card:hover {
    transform:
        translateY(-7px);

    box-shadow:
        0
        25px
        55px
        rgba(
            18,
            28,
            44,
            0.2
        );
}


.category-image {
    position: relative;

    width: 100%;

    height: 100%;

    min-height: 470px;

    background-size: cover;

    background-position: center;

    transition:
        transform 0.6s ease;
}


.category-card:hover
.category-image {
    transform: scale(1.04);
}


.category-content {
    position: absolute;

    inset: 0;

    display: flex;

    flex-direction: column;

    justify-content: flex-end;

    padding: 42px;
}


.category-content > span {
    color: #c8a45d;

    font-size: 10px;

    font-weight: 900;

    letter-spacing: 2.5px;
}


.category-content h3 {
    margin-top: 7px;

    color: #ffffff;

    font-size: 40px;

    line-height: 1.1;

    font-weight: 800;

    letter-spacing: -1px;
}


.category-content p {
    max-width: 360px;

    margin-top: 12px;

    color: #e0e5ec;

    font-size: 13px;

    line-height: 1.7;
}


.category-content strong {
    display: inline-flex;

    align-items: center;

    gap: 12px;

    width: fit-content;

    margin-top: 22px;

    padding-bottom: 7px;

    color: #ffffff;

    font-size: 11px;

    border-bottom:
        1px solid
        #c8a45d;
}


.category-content strong span {
    color: #c8a45d;

    font-size: 18px;

    line-height: 10px;

    transition:
        transform 0.25s ease;
}


.category-card:hover
.category-content strong span {
    transform:
        translateX(5px);
}


/* =====================================================
   FEATURED SECTION
===================================================== */

.featured-section {
    background: #ffffff;
}


.featured-heading {
    width: min(
        1180px,
        100%
    );

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 35px;

    text-align: left;
}


.featured-heading p {
    max-width: 390px;

    margin:
        0
        0
        4px;

    text-align: right;
}


/* =====================================================
   AUCTION GRID
===================================================== */

.auction-grid {
    width: min(
        1180px,
        100%
    );

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 22px;
}


.auction-card {
    overflow: hidden;

    border:
        1px solid
        #e5e8ed;

    border-radius: 7px;

    background: #ffffff;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}


.auction-card:hover {
    transform:
        translateY(-5px);

    border-color:
        #d4b675;

    box-shadow:
        0
        18px
        40px
        rgba(
            23,
            32,
            51,
            0.1
        );
}


/* =====================================================
   AUCTION CARD IMAGE
===================================================== */

.auction-card-image {
    position: relative;

    width: 100%;

    height: 245px;

    overflow: hidden;

    background: #e9edf2;
}


.auction-card-image img {
    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 0.5s ease;
}


.auction-card:hover
.auction-card-image img {
    transform:
        scale(1.05);
}


.auction-card-placeholder {
    width: 100%;

    height: 100%;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        linear-gradient(
            135deg,
            #172033,
            #303c50
        );

    color: #c8a45d;

    font-size: 18px;

    font-weight: 900;

    letter-spacing: 2px;
}


/* =====================================================
   ASSET BADGE
===================================================== */

.asset-type-badge {
    position: absolute;

    top: 15px;

    left: 15px;

    display: inline-flex;

    align-items: center;

    min-height: 27px;

    padding:
        0
        11px;

    border-radius: 3px;

    background:
        rgba(
            11,
            20,
            36,
            0.9
        );

    color: #ffffff;

    font-size: 9px;

    font-weight: 900;

    letter-spacing: 1px;
}


/* =====================================================
   AUCTION CARD BODY
===================================================== */

.auction-card-body {
    padding: 23px;
}


.auction-location {
    display: block;

    margin-bottom: 7px;

    overflow: hidden;

    color: #9aa3b2;

    font-size: 9px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 1px;

    white-space: nowrap;

    text-overflow: ellipsis;
}


.auction-card-body h3 {
    min-height: 54px;

    color: #172033;

    font-size: 19px;

    line-height: 1.35;

    font-weight: 800;
}


/* =====================================================
   PRICE
===================================================== */

.auction-card-price {
    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 15px;

    margin-top: 20px;

    padding-top: 17px;

    border-top:
        1px solid
        #edf0f3;
}


.auction-card-price span {
    color: #8a94a4;

    font-size: 9px;

    font-weight: 700;

    line-height: 1.4;
}


.auction-card-price strong {
    color: #172033;

    font-size: 18px;

    font-weight: 900;

    white-space: nowrap;
}


/* =====================================================
   CARD LINK
===================================================== */

.auction-card-link {
    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-top: 18px;

    color: #172033;

    font-size: 10px;

    font-weight: 900;

    letter-spacing: 0.5px;
}


.auction-card-link span {
    color: #b28c45;

    font-size: 18px;

    transition:
        transform 0.25s ease;
}


.auction-card-link:hover span {
    transform:
        translateX(5px);
}


/* =====================================================
   LOADING STATE
===================================================== */

.auction-loading {
    grid-column:
        1 / -1;

    min-height: 230px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 15px;

    color: #8a94a4;

    font-size: 12px;
}


.loading-spinner {
    width: 32px;

    height: 32px;

    border:
        3px solid
        #e7eaf0;

    border-top-color:
        #c8a45d;

    border-radius: 50%;

    animation:
        seizebid-spin
        0.8s
        linear
        infinite;
}


@keyframes seizebid-spin {

    to {
        transform:
            rotate(360deg);
    }

}


/* =====================================================
   EMPTY STATE
===================================================== */

.auction-empty {
    grid-column:
        1 / -1;

    min-height: 220px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    padding: 30px;

    border:
        1px dashed
        #d9dee6;

    border-radius: 8px;

    background: #fafbfc;

    text-align: center;
}


.auction-empty div {
    color: #172033;

    font-size: 17px;

    font-weight: 800;
}


.auction-empty span {
    margin-top: 6px;

    color: #8a94a4;

    font-size: 11px;
}


/* =====================================================
   SECTION ACTIONS
===================================================== */

.section-action {
    width: min(
        1180px,
        100%
    );

    margin:
        40px
        auto
        0;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    flex-wrap: wrap;
}


.outline-btn {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-height: 44px;

    padding:
        0
        23px;

    border:
        1px solid
        #cbd1da;

    border-radius: 4px;

    color: #172033;

    background: #ffffff;

    font-size: 10px;

    font-weight: 900;

    letter-spacing: 0.5px;

    transition:
        border-color 0.25s ease,
        background 0.25s ease,
        color 0.25s ease;
}


.outline-btn:hover {
    border-color:
        #c8a45d;

    background:
        #c8a45d;

    color: #101827;
}


/* =====================================================
   CATEGORY + FEATURED RESPONSIVE
===================================================== */

@media (max-width: 900px) {

    .marketplace-intro,
    .featured-section,
    .how-it-works {
        padding:
            75px
            22px;
    }


    .category-grid {
        grid-template-columns:
            1fr;
    }


    .category-card,
    .category-image {
        min-height: 400px;
    }


    .auction-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }


    .featured-heading {
        align-items: flex-start;

        flex-direction: column;

        gap: 15px;
    }


    .featured-heading p {
        margin: 0;

        text-align: left;
    }

}


@media (max-width: 620px) {

    .section-heading h2 {
        font-size: 32px;
    }


    .category-content {
        padding: 28px;
    }


    .category-content h3 {
        font-size: 32px;
    }


    .category-card,
    .category-image {
        min-height: 360px;
    }


    .auction-grid {
        grid-template-columns:
            1fr;
    }


    .auction-card-image {
        height: 230px;
    }


    .section-action {
        flex-direction: column;
    }


    .outline-btn {
        width: 100%;

        max-width: 300px;
    }

}

/* =====================================================
   SEIZEBID PREMIUM HOMEPAGE
   CSS PIECE 3
===================================================== */


/* =====================================================
   HOW IT WORKS
===================================================== */

.how-it-works {
    background: #f7f8fa;
}


.steps-grid {
    width: min(
        1180px,
        100%
    );

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 18px;
}


.step-card {
    position: relative;

    min-height: 270px;

    padding: 30px 25px;

    background: #ffffff;

    border:
        1px solid
        #e5e8ed;

    border-radius: 7px;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}


.step-card:hover {
    transform:
        translateY(-5px);

    border-color:
        #d6b86d;

    box-shadow:
        0
        18px
        40px
        rgba(
            23,
            32,
            51,
            0.09
        );
}


.step-number {
    position: absolute;

    top: 20px;

    right: 20px;

    color: #e6e9ee;

    font-size: 28px;

    font-weight: 900;
}


.step-icon {
    width: 52px;

    height: 52px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 25px;

    border-radius: 50%;

    background:
        rgba(
            200,
            164,
            93,
            0.12
        );

    font-size: 20px;
}


.step-card h3 {
    color: #172033;

    font-size: 17px;

    line-height: 1.3;

    font-weight: 800;
}


.step-card p {
    margin-top: 12px;

    color: #7a8494;

    font-size: 12px;

    line-height: 1.75;
}


/* =====================================================
   WHY SEIZEBID
===================================================== */

.why-seizebid {
    width: 100%;

    min-height: 570px;

    display: grid;

    grid-template-columns:
        1fr
        1fr;

    background: #101a2b;
}


.why-content {
    display: flex;

    flex-direction: column;

    justify-content: center;

    padding:
        85px
        clamp(
            30px,
            7vw,
            110px
        );
}


.why-content .section-label {
    color: #c8a45d;
}


.why-content h2 {
    max-width: 650px;

    color: #ffffff;

    font-size:
        clamp(
            34px,
            4vw,
            52px
        );

    line-height: 1.08;

    letter-spacing: -1.8px;

    font-weight: 800;
}


.why-content h2 span {
    display: block;

    color: #c8a45d;
}


.why-content > p {
    max-width: 620px;

    margin-top: 22px;

    color: #b7c0ce;

    font-size: 14px;

    line-height: 1.8;
}


/* =====================================================
   BENEFITS
===================================================== */

.benefits-grid {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap:
        25px
        30px;

    max-width: 680px;

    margin-top: 35px;
}


.benefit-item {
    display: flex;

    align-items: flex-start;

    gap: 13px;
}


.benefit-icon {
    flex-shrink: 0;

    width: 27px;

    height: 27px;

    display: flex;

    align-items: center;

    justify-content: center;

    border:
        1px solid
        rgba(
            200,
            164,
            93,
            0.7
        );

    border-radius: 50%;

    color: #c8a45d;

    font-size: 12px;

    font-weight: 900;
}


.benefit-item div:last-child {
    display: flex;

    flex-direction: column;
}


.benefit-item strong {
    color: #ffffff;

    font-size: 12px;

    font-weight: 800;
}


.benefit-item span {
    margin-top: 4px;

    color: #8994a5;

    font-size: 10px;

    line-height: 1.6;
}


/* =====================================================
   WHY IMAGE
===================================================== */

.why-image {
    position: relative;

    min-height: 570px;

    background-image:
        linear-gradient(
            rgba(
                9,
                17,
                30,
                0.15
            ),
            rgba(
                9,
                17,
                30,
                0.72
            )
        ),
        url(
            "https://images.unsplash.com/photo-1560518883-ce09059eeffa?auto=format&fit=crop&w=1800&q=85"
        );

    background-size: cover;

    background-position: center;
}


.why-image-overlay {
    position: absolute;

    right: 0;

    bottom: 0;

    left: 0;

    display: flex;

    flex-direction: column;

    padding:
        40px
        clamp(
            30px,
            6vw,
            80px
        );

    background:
        linear-gradient(
            transparent,
            rgba(
                8,
                15,
                28,
                0.92
            )
        );
}


.why-image-overlay span {
    color: #c8a45d;

    font-size: 10px;

    font-weight: 900;

    letter-spacing: 3px;
}


.why-image-overlay strong {
    max-width: 500px;

    margin-top: 8px;

    color: #ffffff;

    font-size:
        clamp(
            25px,
            3vw,
            40px
        );

    line-height: 1.1;

    font-weight: 800;
}


/* =====================================================
   CLIENT CTA
===================================================== */

.client-cta {
    position: relative;

    min-height: 440px;

    display: flex;

    align-items: center;

    justify-content: center;

    padding:
        80px
        22px;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #172033,
            #0b1424
        );

    text-align: center;
}


.client-cta::before {
    content: "";

    position: absolute;

    width: 500px;

    height: 500px;

    top: -250px;

    right: -150px;

    border-radius: 50%;

    background:
        rgba(
            200,
            164,
            93,
            0.08
        );
}


.client-cta::after {
    content: "";

    position: absolute;

    width: 400px;

    height: 400px;

    bottom: -220px;

    left: -120px;

    border-radius: 50%;

    background:
        rgba(
            200,
            164,
            93,
            0.05
        );
}


.client-cta-content {
    position: relative;

    z-index: 2;

    max-width: 800px;
}


.client-cta .section-label {
    color: #c8a45d;
}


.client-cta h2 {
    color: #ffffff;

    font-size:
        clamp(
            35px,
            5vw,
            57px
        );

    line-height: 1.05;

    letter-spacing: -2px;

    font-weight: 800;
}


.client-cta h2 span {
    display: block;

    color: #c8a45d;
}


.client-cta p {
    max-width: 610px;

    margin:
        22px
        auto
        0;

    color: #b8c1ce;

    font-size: 14px;

    line-height: 1.8;
}


.cta-buttons {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    margin-top: 30px;

    flex-wrap: wrap;
}


/* =====================================================
   CTA BUTTON OVERRIDES
===================================================== */

.client-cta
.secondary-btn {
    background:
        transparent;

    border-color:
        rgba(
            255,
            255,
            255,
            0.35
        );
}


.client-cta
.secondary-btn:hover {
    background: #ffffff;

    border-color: #ffffff;

    color: #101827;
}


/* =====================================================
   SECTION ANIMATION
===================================================== */

.category-card,
.auction-card,
.step-card,
.benefit-item {
    animation:
        seizebid-fade-up
        0.7s
        ease
        both;
}


@keyframes seizebid-fade-up {

    from {

        opacity: 0;

        transform:
            translateY(15px);

    }

    to {

        opacity: 1;

        transform:
            translateY(0);

    }

}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 950px) {

    .steps-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }


    .why-seizebid {
        grid-template-columns:
            1fr;
    }


    .why-content {
        padding:
            75px
            30px;
    }


    .why-image {
        min-height: 450px;
    }

}


@media (max-width: 620px) {

    .steps-grid {
        grid-template-columns:
            1fr;
    }


    .step-card {
        min-height: 230px;
    }


    .why-content {
        padding:
            65px
            22px;
    }


    .why-content h2 {
        font-size: 34px;

        letter-spacing: -1px;
    }


    .benefits-grid {
        grid-template-columns:
            1fr;

        gap: 20px;
    }


    .why-image {
        min-height: 390px;
    }


    .why-image-overlay {
        padding:
            30px
            22px;
    }


    .why-image-overlay strong {
        font-size: 28px;
    }


    .client-cta {
        min-height: 410px;

        padding:
            70px
            20px;
    }


    .client-cta h2 {
        font-size: 36px;

        letter-spacing: -1px;
    }


    .cta-buttons {
        flex-direction: column;
    }


    .cta-buttons a {
        width: 100%;

        max-width: 280px;
    }

}

/* =====================================================
   SEIZEBID PREMIUM HOMEPAGE
   CSS PIECE 4
===================================================== */


/* =====================================================
   FOOTER
===================================================== */

.site-footer {
    background: #080f1c;

    color: #ffffff;
}


.footer-main {
    width: min(
        1180px,
        calc(100% - 44px)
    );

    margin: 0 auto;

    padding:
        70px
        0;

    display: grid;

    grid-template-columns:
        2fr
        1fr
        1fr
        1fr;

    gap: 50px;
}


.footer-brand {
    max-width: 330px;
}


.footer-logo {
    margin-bottom: 15px;
}


.footer-brand p {
    color: #8994a5;

    font-size: 12px;

    line-height: 1.8;
}


.footer-column {
    display: flex;

    flex-direction: column;

    gap: 11px;
}


.footer-column h4 {
    margin-bottom: 8px;

    color: #ffffff;

    font-size: 11px;

    font-weight: 900;

    letter-spacing: 1px;

    text-transform: uppercase;
}


.footer-column a,
.footer-column span {
    color: #8994a5;

    font-size: 11px;

    transition:
        color 0.25s ease;
}


.footer-column a:hover {
    color: #c8a45d;
}


/* =====================================================
   FOOTER BOTTOM
===================================================== */

.footer-bottom {
    width: min(
        1180px,
        calc(100% - 44px)
    );

    margin: 0 auto;

    min-height: 65px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    border-top:
        1px solid
        rgba(
            255,
            255,
            255,
            0.08
        );

    color: #687386;

    font-size: 9px;
}


/* =====================================================
   FINAL IMAGE POLISH
===================================================== */

.category-image,
.why-image {
    background-color: #172033;

    background-repeat: no-repeat;
}


.auction-card-image img {
    background: #e9edf2;
}


/* =====================================================
   BUTTON FOCUS
===================================================== */

.primary-btn:focus-visible,
.secondary-btn:focus-visible,
.outline-btn:focus-visible,
.login-btn:focus-visible,
.auction-card-link:focus-visible {
    outline:
        2px solid
        #c8a45d;

    outline-offset: 3px;
}


/* =====================================================
   REMOVE UNWANTED OLD HOMEPAGE ELEMENTS
===================================================== */

/*
 * These classes are intentionally hidden if an older
 * version of the homepage still contains them.
 */

.live-auction,
.live-auctions,
.live-auction-section,
.virtual-account,
.virtual-account-section,
.homepage-virtual-account {
    display: none !important;
}


/* =====================================================
   MOBILE FOOTER
===================================================== */

@media (max-width: 850px) {

    .footer-main {
        grid-template-columns:
            repeat(2, 1fr);

        gap:
            40px
            30px;

        padding:
            60px
            0;
    }


    .footer-brand {
        grid-column:
            1 / -1;

        max-width: 500px;
    }

}


@media (max-width: 550px) {

    .footer-main {
        width:
            calc(100% - 40px);

        grid-template-columns:
            1fr 1fr;

        gap:
            35px
            20px;

        padding:
            50px
            0;
    }


    .footer-brand {
        grid-column:
            1 / -1;
    }


    .footer-bottom {
        width:
            calc(100% - 40px);

        min-height: auto;

        padding:
            20px
            0;

        flex-direction: column;

        align-items: flex-start;

        gap: 7px;
    }

}


/* =====================================================
   VERY SMALL SCREENS
===================================================== */

@media (max-width: 380px) {

    .hero-content h1 {
        font-size: 38px;
    }


    .hero-buttons {
        flex-direction: column;

        align-items: stretch;
    }


    .hero-buttons a {
        width: 100%;

        text-align: center;
    }


    .category-content h3 {
        font-size: 28px;
    }


    .section-heading h2 {
        font-size: 29px;
    }

}


/* =====================================================
   REDUCED MOTION
===================================================== */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }


    *,
    *::before,
    *::after {
        animation-duration:
            0.01ms !important;

        animation-iteration-count:
            1 !important;

        transition-duration:
            0.01ms !important;
    }

}

/* =========================================================
   SEIZEBID MOBILE NAVIGATION
========================================================= */

.mobile-menu-btn {
    display: none;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: inherit;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 24px;
    align-items: center;
    justify-content: center;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 22px;
    height: 2px;
    margin: 4px 0;
    background: currentColor;
    transition: 0.25s ease;
}

@media (max-width: 768px) {

    .navbar {
        position: relative;
        flex-wrap: wrap;
    }

    .navbar .mobile-menu-btn {
        display: flex;
    }

    .navbar nav {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        margin-top: 15px;
        padding: 10px 0;
    }

    .navbar.mobile-nav-open nav {
        display: flex;
    }

    .navbar nav a {
        display: block;
        width: 100%;
        padding: 14px 16px;
        text-align: left;
    }

    .navbar.mobile-nav-open .mobile-menu-btn span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .navbar.mobile-nav-open .mobile-menu-btn span:nth-child(2) {
        opacity: 0;
    }

    .navbar.mobile-nav-open .mobile-menu-btn span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }
}

/* =========================================================
   SEIZEBID MOBILE NAVIGATION
========================================================= */

@media (max-width: 768px) {

    .navbar {
        position: relative;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        min-height: 76px;
        padding: 14px 18px;
    }

    /* Hamburger button */
    .navbar .mobile-menu-btn {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;

        width: 44px;
        height: 44px;

        padding: 0;
        margin: 0;

        background: transparent;
        border: 1px solid rgba(255, 255, 255, 0.45);
        border-radius: 8px;

        color: #ffffff;
        cursor: pointer;

        position: relative;
        z-index: 1001;
    }

    .mobile-menu-btn span {
        display: block;
        width: 22px;
        height: 2px;

        margin: 0;

        background: #ffffff;
        border-radius: 2px;

        transition: transform 0.25s ease,
                    opacity 0.25s ease;
    }

    /* Navigation closed */
    .navbar nav {
        display: none;
        width: 100%;

        flex-direction: column;
        align-items: stretch;

        gap: 0;

        margin-top: 12px;
        padding: 8px 0;
    }

    /* Navigation opened */
    .navbar.mobile-nav-open nav {
        display: flex;
    }

    .navbar nav a {
        display: block;
        width: 100%;

        padding: 13px 16px;

        text-align: left;

        color: #ffffff;
        text-decoration: none;

        border-radius: 6px;

        font-size: 15px;
        font-weight: 600;

        transition:
            background 0.2s ease,
            color 0.2s ease;
    }

    .navbar nav a:hover {
        background: rgba(255, 255, 255, 0.08);
    }

    /* Account button */
    .navbar nav a.account-link {
        margin-top: 6px;

        border: 1px solid rgba(220, 180, 80, 0.8);
        background: rgba(255, 255, 255, 0.04);
    }

    /* Hamburger animation */
    .navbar.mobile-nav-open .mobile-menu-btn span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .navbar.mobile-nav-open .mobile-menu-btn span:nth-child(2) {
        opacity: 0;
    }

    .navbar.mobile-nav-open .mobile-menu-btn span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
}

/* =========================================================
   SEIZEBID MOBILE NAVIGATION — FINAL
========================================================= */

@media (max-width: 768px) {

    /* Main header */
    .navbar {
        position: relative !important;
        width: 100% !important;
        min-height: 70px !important;
        z-index: 1000 !important;
    }

    /* Header inner container */
    .navbar .container {
        position: relative !important;
        width: 100% !important;
        display: flex !important;
        flex-wrap: wrap !important;
        align-items: center !important;
        justify-content: space-between !important;
        padding: 14px 16px !important;
    }

    /* Logo */
    .navbar .logo {
        display: block !important;
        margin: 0 !important;
        position: relative !important;
        z-index: 1002 !important;
    }

    /* Hamburger button */
    .navbar .mobile-menu-btn {
        display: flex !important;
        position: absolute !important;
        right: 16px !important;
        top: 50% !important;

        transform: translateY(-50%) !important;

        width: 44px !important;
        height: 44px !important;

        padding: 0 !important;
        margin: 0 !important;

        align-items: center !important;
        justify-content: center !important;
        flex-direction: column !important;

        background: transparent !important;
        border: 1px solid rgba(255, 255, 255, 0.65) !important;
        border-radius: 8px !important;

        color: #ffffff !important;

        cursor: pointer !important;
        z-index: 1005 !important;

        visibility: visible !important;
        opacity: 1 !important;
    }

    /* Hamburger lines */
    .navbar .mobile-menu-btn span {
        display: block !important;
        width: 22px !important;
        height: 2px !important;

        margin: 3px 0 !important;

        background: #ffffff !important;
        border-radius: 2px !important;

        transition: transform 0.25s ease,
                    opacity 0.25s ease !important;
    }

    /* Closed menu */
    .navbar .container > nav {
        display: none !important;

        width: 100% !important;

        flex-direction: column !important;
        align-items: stretch !important;

        margin: 14px 0 0 !important;
        padding: 0 !important;

        gap: 0 !important;
    }

    /* Open menu */
    .navbar.mobile-nav-open .container > nav {
        display: flex !important;
    }

    /* Mobile navigation links */
    .navbar .container > nav > a {
        display: block !important;

        width: 100% !important;

        padding: 15px 16px !important;
        margin: 0 !important;

        text-align: left !important;

        border-radius: 6px !important;

        text-decoration: none !important;

        box-sizing: border-box !important;
    }

    /* Space between links */
    .navbar .container > nav > a + a {
        margin-top: 3px !important;
    }

    /* Client Login button */
    .navbar .container > nav > .login-button {
        margin-top: 8px !important;
        width: 100% !important;
    }

    /* Hamburger becomes X */
    .navbar.mobile-nav-open .mobile-menu-btn span:nth-child(1) {
        transform: translateY(8px) rotate(45deg) !important;
    }

    .navbar.mobile-nav-open .mobile-menu-btn span:nth-child(2) {
        opacity: 0 !important;
    }

    .navbar.mobile-nav-open .mobile-menu-btn span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg) !important;
    }

}

/* =========================================================
   SEIZEBID — FINAL MOBILE NAVIGATION
========================================================= */

.mobile-menu-btn {
    display: none;
}

@media (max-width: 768px) {

    .navbar {
        position: relative !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        min-height: 72px !important;
        padding: 12px 16px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .navbar .mobile-menu-btn {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;

        position: absolute !important;
        right: 16px !important;
        top: 50% !important;
        transform: translateY(-50%) !important;

        width: 44px !important;
        height: 44px !important;
        padding: 8px !important;
        margin: 0 !important;

        background: transparent !important;
        border: 1px solid rgba(255,255,255,.35) !important;
        border-radius: 8px !important;

        color: currentColor !important;
        cursor: pointer !important;

        z-index: 99999 !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .navbar .mobile-menu-btn span {
        display: block !important;
        width: 22px !important;
        height: 2px !important;
        margin: 3px 0 !important;
        background: currentColor !important;
        border-radius: 2px !important;
    }

    /* Hide desktop navigation */
    .navbar > nav {
        display: none !important;
        width: 100% !important;
    }

    /* Show navigation when menu is opened */
    .navbar.mobile-nav-open > nav {
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        width: 100% !important;
        margin-top: 15px !important;
    }

    .navbar.mobile-nav-open {
        flex-wrap: wrap !important;
    }

    .navbar.mobile-nav-open > nav a {
        display: block !important;
        width: 100% !important;
        padding: 14px 16px !important;
        box-sizing: border-box !important;
    }

}

/* =========================================================
   SEIZEBID - FINAL MOBILE NAVIGATION OVERRIDE
   Keep this at the VERY BOTTOM of style.css
========================================================= */

@media (max-width: 768px) {

    /* Header */
    .navbar {
        position: relative !important;
        display: flex !important;
        flex-wrap: wrap !important;
        align-items: center !important;
        justify-content: space-between !important;
        min-height: 72px !important;
        padding: 14px 18px !important;
    }

    /* Hamburger */
    .navbar .mobile-menu-btn {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;

        width: 44px !important;
        height: 44px !important;

        padding: 0 !important;
        margin: 0 !important;

        background: rgba(255, 255, 255, 0.03) !important;
        border: 1px solid rgba(255, 255, 255, 0.55) !important;
        border-radius: 8px !important;

        color: #ffffff !important;
        cursor: pointer !important;

        z-index: 1001 !important;
    }

    /* The three hamburger lines */
    .navbar .mobile-menu-btn span {
        display: block !important;

        width: 22px !important;
        height: 3px !important;

        margin: 3px 0 !important;

        background: #ffffff !important;
        border-radius: 3px !important;

        opacity: 1 !important;

        transform: none !important;
        transition: all 0.25s ease !important;
    }

    /* Closed menu */
    .navbar nav {
        display: none !important;

        width: 100% !important;

        flex-direction: column !important;
        align-items: stretch !important;

        gap: 2px !important;

        margin: 12px 0 0 0 !important;
        padding: 6px 0 !important;
    }

    /* Open menu */
    .navbar.mobile-nav-open nav {
        display: flex !important;
    }

    /* Menu links */
    .navbar.mobile-nav-open nav a,
    .navbar nav a {
        display: block !important;

        width: 100% !important;

        box-sizing: border-box !important;

        padding: 12px 16px !important;
        margin: 0 !important;

        text-align: left !important;

        font-size: 15px !important;
        line-height: 1.3 !important;
        font-weight: 600 !important;

        color: #ffffff !important;
        text-decoration: none !important;

        border-radius: 6px !important;

        background: transparent !important;
    }

    .navbar nav a:hover,
    .navbar nav a:active {
        background: rgba(255, 255, 255, 0.08) !important;
    }

    /* My Account */
    .navbar nav a:last-child {
        margin-top: 6px !important;

        border: 1px solid rgba(220, 180, 80, 0.9) !important;

        background: rgba(255, 255, 255, 0.04) !important;
    }

    /* Hamburger -> X */
    .navbar.mobile-nav-open .mobile-menu-btn span:nth-child(1) {
        transform: translateY(9px) rotate(45deg) !important;
    }

    .navbar.mobile-nav-open .mobile-menu-btn span:nth-child(2) {
        opacity: 0 !important;
    }

    .navbar.mobile-nav-open .mobile-menu-btn span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg) !important;
    }
}

/* =========================================================
   FINAL HAMBURGER ICON FIX
========================================================= */

@media (max-width: 768px) {

    .navbar .mobile-menu-btn {
        position: relative !important;
        overflow: hidden !important;
    }

    .navbar .mobile-menu-btn span {
        position: absolute !important;
        left: 50% !important;

        width: 22px !important;
        height: 3px !important;

        margin: 0 !important;

        transform-origin: center !important;
        transition: transform 0.25s ease,
                    opacity 0.25s ease !important;
    }

    .navbar .mobile-menu-btn span:nth-child(1) {
        transform: translateX(-50%) translateY(-7px) !important;
    }

    .navbar .mobile-menu-btn span:nth-child(2) {
        transform: translateX(-50%) !important;
    }

    .navbar .mobile-menu-btn span:nth-child(3) {
        transform: translateX(-50%) translateY(7px) !important;
    }

    /* OPEN = clean X */
    .navbar.mobile-nav-open .mobile-menu-btn span:nth-child(1) {
        transform: translateX(-50%) rotate(45deg) !important;
    }

    .navbar.mobile-nav-open .mobile-menu-btn span:nth-child(2) {
        opacity: 0 !important;
        transform: translateX(-50%) !important;
    }

    .navbar.mobile-nav-open .mobile-menu-btn span:nth-child(3) {
        transform: translateX(-50%) rotate(-45deg) !important;
    }
}

/* =========================================================
   MOBILE MENU — TEXT VISIBILITY
========================================================= */

@media (max-width: 768px) {

    .navbar nav a {
        color: #1f2937 !important;
        font-weight: 600 !important;
    }

    .navbar nav a:hover,
    .navbar nav a:focus {
        color: #b8862b !important;
    }

    .navbar nav a.active {
        color: #b8862b !important;
    }

    .navbar nav .login-btn,
    .navbar nav .login-button {
        color: #ffffff !important;
        background: #2f343b !important;
    }

    .navbar nav .login-btn:hover,
    .navbar nav .login-button:hover {
        color: #ffffff !important;
        background: #b8862b !important;
    }

}

@media (max-width: 768px) {

    .public-page-header .eyebrow {
        color: #8a6724 !important;
        font-weight: 700 !important;
    }

    .public-page-header h1 {
        color: #1f2937 !important;
    }

    .public-page-header p {
        color: #4b5563 !important;
    }

    .public-search {
        color: #1f2937 !important;
        background: #ffffff !important;
    }

    .public-search::placeholder {
        color: #6b7280 !important;
        opacity: 1 !important;
    }

    .public-count {
        color: #374151 !important;
        font-weight: 600 !important;
    }

}

/* =========================================================
   SEIZEBID — MOBILE HAMBURGER VISIBILITY FIX
========================================================= */

@media (max-width: 768px) {

    .navbar .mobile-menu-btn {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;

        width: 46px !important;
        height: 46px !important;

        position: absolute !important;
        right: 16px !important;
        top: 50% !important;

        transform: translateY(-50%) !important;

        padding: 0 !important;
        margin: 0 !important;

        /* DARK BUTTON */
        background: #1c2026 !important;

        /* GOLD/WHITE BORDER */
        border: 1px solid #d9b45c !important;
        border-radius: 8px !important;

        /* Make sure it is above everything */
        z-index: 10000 !important;

        visibility: visible !important;
        opacity: 1 !important;

        cursor: pointer !important;
    }

    .navbar .mobile-menu-btn span {
        display: block !important;

        width: 23px !important;
        height: 3px !important;

        margin: 3px 0 !important;

        background: #ffffff !important;

        border-radius: 3px !important;

        opacity: 1 !important;
    }

}

@media (max-width: 768px) {

    .navbar.mobile-nav-open nav {
        background: #171a1f !important;
        color: #ffffff !important;
    }

    .navbar.mobile-nav-open nav a {
        color: #ffffff !important;
    }

    .navbar.mobile-nav-open nav a:hover,
    .navbar.mobile-nav-open nav a.active {
        color: #d9b45c !important;
        background: #252a31 !important;
    }

}

/* =========================================================
   MOBILE AUCTIONS HEADER — LOGO LEFT
========================================================= */

@media (max-width: 768px) {

    .navbar {
        text-align: left !important;
    }

    .navbar .container {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 20px !important;
        box-sizing: border-box !important;
    }

    .navbar .logo {
        position: static !important;
        display: block !important;
        margin: 0 !important;
        padding: 0 !important;
        text-align: left !important;
        transform: none !important;
        float: none !important;
    }

    .navbar .mobile-menu-btn {
        position: static !important;
        margin-left: auto !important;
        transform: none !important;
        flex-shrink: 0 !important;
    }
}

/* =========================================================
   SEIZEBID — FINAL MOBILE HEADER
   Logo LEFT / Hamburger RIGHT
========================================================= */

@media (max-width: 768px) {

    /* Header */
    .navbar {
        position: relative !important;
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between !important;
        width: 100% !important;
        min-height: 78px !important;
        height: 78px !important;
        padding: 0 18px !important;
        margin: 0 !important;
        box-sizing: border-box !important;
        text-align: left !important;
    }

    /* SeizeBid logo */
    .navbar .logo {
        position: static !important;
        display: block !important;
        flex: 0 0 auto !important;
        width: auto !important;
        margin: 0 !important;
        padding: 0 !important;
        text-align: left !important;
        transform: none !important;
        float: none !important;
    }

    /* Hamburger */
    .navbar .mobile-menu-btn {
        position: static !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        flex: 0 0 44px !important;
        width: 44px !important;
        height: 44px !important;
        margin: 0 0 0 auto !important;
        padding: 0 !important;
        box-sizing: border-box !important;

        background: #252525 !important;
        color: #ffffff !important;
        border: 1px solid #d9a441 !important;
        border-radius: 8px !important;

        z-index: 9999 !important;
        cursor: pointer !important;
    }

    /* Hamburger lines */
    .navbar .mobile-menu-btn span {
        display: block !important;
        width: 22px !important;
        height: 2px !important;
        margin: 3px 0 !important;
        padding: 0 !important;
        background: #ffffff !important;
        border-radius: 2px !important;
    }

    /* Desktop navigation hidden */
    .navbar > nav {
        display: none !important;
    }

    /* Mobile navigation opened */
    .navbar.mobile-nav-open > nav {
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        position: absolute !important;
        top: 78px !important;
        left: 0 !important;
        width: 100% !important;
        padding: 12px 18px 18px !important;
        box-sizing: border-box !important;
        background: #151515 !important;
        z-index: 9998 !important;
    }

    .navbar.mobile-nav-open > nav a {
        display: block !important;
        width: 100% !important;
        padding: 14px 12px !important;
        box-sizing: border-box !important;
        text-align: left !important;
        color: #ffffff !important;
    }

    .navbar.mobile-nav-open > nav .login-btn {
        margin-top: 8px !important;
    }
}

/* =========================================================
   SEIZEBID — FORCE HAMBURGER LINES INSIDE BUTTON
========================================================= */

@media (max-width: 768px) {

    .navbar .mobile-menu-btn {
        position: relative !important;
        display: block !important;

        width: 46px !important;
        min-width: 46px !important;
        max-width: 46px !important;

        height: 46px !important;
        min-height: 46px !important;
        max-height: 46px !important;

        padding: 0 !important;
        margin: 0 0 0 auto !important;

        background: #252525 !important;
        border: 2px solid #d9a441 !important;
        border-radius: 8px !important;

        box-sizing: border-box !important;

        float: none !important;
        transform: none !important;

        overflow: hidden !important;
        z-index: 99999 !important;
    }

    /* FORCE ALL THREE LINES TO STAY INSIDE BUTTON */
    .navbar .mobile-menu-btn span {
        position: absolute !important;

        left: 50% !important;
        top: 50% !important;

        display: block !important;

        width: 24px !important;
        height: 3px !important;

        margin: 0 !important;
        padding: 0 !important;

        background: #ffffff !important;

        border: 0 !important;
        border-radius: 3px !important;

        transform: translate(-50%, -50%) !important;

        float: none !important;
    }

    .navbar .mobile-menu-btn span:nth-child(1) {
        top: calc(50% - 8px) !important;
    }

    .navbar .mobile-menu-btn span:nth-child(2) {
        top: 50% !important;
    }

    .navbar .mobile-menu-btn span:nth-child(3) {
        top: calc(50% + 8px) !important;
    }

}

/* =========================================================
   SEIZEBID — LOGIN / MY ACCOUNT VISIBILITY FIX
   ========================================================= */

.navbar .login-btn,
.navbar nav .login-btn,
.navbar #clientNavLink {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    color: #ffffff !important;
    background: #3b4148 !important;

    border: 1px solid #d9ad45 !important;
    opacity: 1 !important;
    visibility: visible !important;

    text-decoration: none !important;
    font-weight: 700 !important;

    min-width: 130px !important;
    min-height: 44px !important;
    padding: 10px 18px !important;

    border-radius: 6px !important;

    -webkit-text-fill-color: #ffffff !important;
}

/* Hover */
.navbar .login-btn:hover,
.navbar nav .login-btn:hover,
.navbar #clientNavLink:hover {
    color: #ffffff !important;
    background: #d9ad45 !important;
    border-color: #d9ad45 !important;

    -webkit-text-fill-color: #ffffff !important;
}

/* Active / visited states */
.navbar .login-btn:visited,
.navbar .login-btn:active,
.navbar #clientNavLink:visited,
.navbar #clientNavLink:active {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
}