/* =============================================================
   BIDSZO — CUSTOM STYLESHEET
   Tokens: Primary Gold #D4A017 · Secondary Gold #C69214 · Dark #111111
   Font: Poppins (300–700)
   ============================================================= */

:root {
    --gold: #D4A017;
    --gold-2: #C69214;
    --gold-light: #F0C64A;
    --dark: #111111;
    --white: #FFFFFF;
    --bg-light: #FAFAF8;
    --grey: #6C757D;
    --border: #EAEAEA;
    --success: #22C55E;
    --danger: #DC3545;
    --id-pink: #E23E86;

    --gold-grad: linear-gradient(135deg, #E9C158 0%, #D4A017 45%, #A9780C 100%);
    --gold-grad-soft: linear-gradient(135deg, rgba(212, 160, 23, .12), rgba(198, 146, 20, .04));
    --dark-grad: linear-gradient(180deg, #171717 0%, #0A0A0A 100%);

    --radius-lg: 22px;
    --radius-md: 18px;
    --radius-sm: 16px;

    --shadow-soft: 0 10px 30px rgba(17, 17, 17, .06);
    --shadow-card: 0 20px 45px rgba(17, 17, 17, .10);
    --shadow-gold: 0 14px 34px rgba(212, 160, 23, .28);

    --ease: cubic-bezier(.22, 1, .36, 1);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    color: var(--dark);
    background: var(--bg-light);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: var(--dark);
    margin: 0;
}

p {
    color: var(--grey);
    margin: 0;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

button {
    font-family: 'Poppins', sans-serif;
    border: none;
    background: none;
    cursor: pointer;
}

::selection {
    background: var(--gold);
    color: var(--white);
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .001ms !important;
        scroll-behavior: auto !important;
    }
}

.container {
    max-width: 1260px;
}

.text-gold-grad {
    background: var(--gold-grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* =============================================================
   SCROLL PROGRESS + PRELOADER
   ============================================================= */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    z-index: 2000;
    background: transparent;
}

.scroll-progress__bar {
    height: 100%;
    width: 0%;
    background: var(--gold-grad);
    transition: width .1s linear;
}

.preloader {
    position: fixed;
    inset: 0;
    z-index: 3000;
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity .6s var(--ease), visibility .6s var(--ease);
}

.preloader.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader__mark {
    position: relative;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preloader__mark i {
    font-size: 28px;
    color: var(--gold);
}

.preloader__ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 3px solid rgba(212, 160, 23, .2);
    border-top-color: var(--gold);
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* =============================================================
   BUTTONS
   ============================================================= */
.btn {
    font-weight: 600;
    font-size: .95rem;
    padding: .7rem 1.6rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease);
    white-space: nowrap;
}

.btn-gold {
    background: var(--gold-grad);
    color: var(--white);
    box-shadow: var(--shadow-gold);
    border-color: var(--gold-grad);
}

.btn-gold:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 18px 40px rgba(212, 160, 23, .4);
    color: var(--white);
    border-color: var(--gold-grad);
}

.btn-ghost-gold {
    color: var(--gold-2);
    border: 1.5px solid var(--gold);
    background: transparent;
}

.btn-ghost-gold:hover {
    background: var(--gold-grad-soft);
    color: var(--gold-2);
}

.btn-outline-dark-pill {
    border: 1.5px solid var(--dark);
    color: var(--dark);
}

.btn-outline-dark-pill:hover {
    background: var(--dark);
    color: var(--white);
    transform: translateY(-3px);
}

.btn-outline-gold {
    border: 1.5px solid var(--gold);
    color: var(--gold-2);
    background: var(--white);
    border-radius: 50px;
    padding: .6rem 1.2rem;
    font-weight: 600;
    flex: 1;
}

.btn-outline-gold:hover {
    background: var(--gold-grad-soft);
    border-color: var(--gold-grad);
}

.btn-gold-outline-sm {
    border: 1.5px solid var(--gold);
    color: var(--gold-2);
    background: transparent;
    border-radius: 50px;
    padding: .5rem 1rem;
    font-size: .82rem;
    font-weight: 600;
}

.btn-gold-outline-sm:hover {
    background: var(--gold);
    color: var(--white);
}

/* Ripple */
.btn-ripple {
    position: relative;
    overflow: hidden;
    flex: 1;
}

.btn-ripple .ripple {
    position: absolute;
    border-radius: 50%;
    transform: scale(0);
    background: rgba(255, 255, 255, .55);
    animation: ripple .6s var(--ease);
    pointer-events: none;
}

@keyframes ripple {
    to {
        transform: scale(3);
        opacity: 0;
    }
}

/* =============================================================
   NAVBAR
   ============================================================= */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    transition: box-shadow .35s var(--ease), background .35s var(--ease);
    /* Needed so .mega-panel (position:absolute;top:100%) anchors to the header */
    isolation: isolate;
}

.site-header.is-scrolled {
    box-shadow: 0 10px 30px rgba(17, 17, 17, .08);
    background: rgba(255, 255, 255, .85);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.nav-row-1 {
    padding: 16px 0;
    transition: padding .35s var(--ease);
}

.site-header.is-scrolled .nav-row-1 {
    padding: 10px 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: .6rem;
}

.brand__mark {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--gold);
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 8px 18px rgba(17, 17, 17, .25);
}

.brand__mark--light {
    background: rgba(255, 255, 255, .15);
    color: var(--white);
    margin: 0 auto;
}

.brand__text {
    font-weight: 700;
    font-size: 1.15rem;
    line-height: 1.1;
    display: flex;
    flex-direction: column;
    color: var(--dark);
}

.brand__text small {
    font-weight: 400;
    font-size: .65rem;
    letter-spacing: .06em;
    color: var(--grey);
    text-transform: uppercase;
}

.main-nav ul {
    display: flex;
    gap: 1.75rem;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

/* === nav-link-item (used in all pages) === */
.nav-link-item {
    position: relative;
    font-size: .91rem;
    font-weight: 500;
    color: var(--dark);
    padding: 6px 0;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    text-decoration: none;
    white-space: nowrap;
    transition: color .25s var(--ease);
}

.nav-underline {
    position: absolute;
    left: 0;
    bottom: -2px;
    height: 2px;
    width: 0%;
    background: var(--gold-grad);
    border-radius: 2px;
    transition: width .3s var(--ease);
}

.nav-link-item:hover,
.nav-link-item.active {
    color: var(--gold-2);
}

.nav-link-item:hover .nav-underline,
.nav-link-item.active .nav-underline {
    width: 100%;
}

/* Legacy support — .main-nav a (kept for any inline usage) */
.main-nav a:not(.nav-link-item) {
    position: relative;
    font-size: .92rem;
    font-weight: 500;
    color: var(--dark);
    padding: 6px 0;
    display: inline-block;
    transition: color .25s var(--ease);
}
.main-nav a:not(.nav-link-item) span {
    position: absolute;
    left: 0; bottom: 0;
    height: 2px; width: 0%;
    background: var(--gold-grad);
    transition: width .3s var(--ease);
}
.main-nav a:not(.nav-link-item):hover,
.main-nav a:not(.nav-link-item).active { color: var(--gold-2); }
.main-nav a:not(.nav-link-item):hover span,
.main-nav a:not(.nav-link-item).active span { width: 100%; }

.nav-actions {
    align-items: center;
    gap: .9rem;
}

.nav-icon-btn {
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    font-size: 1rem;
    color: var(--dark);
    transition: all .3s var(--ease);
}

.nav-icon-btn:hover {
    border-color: var(--gold);
    color: var(--gold-2);
    transform: translateY(-2px);
}

.badge-dot {
    position: absolute;
    top: 6px;
    right: 7px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--danger);
    border: 1.5px solid var(--white);
}

.nav-row-2 {
    border-top: 1px solid var(--border);
    padding: 10px 0;
    background: var(--bg-light);
}

/* =============================================================
   MEGA TRIGGER BUTTON
   ============================================================= */
.mega-trigger {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: var(--dark);
    color: var(--white);
    border: none;
    border-radius: 50px;
    padding: .55rem 1.1rem;
    font-size: .85rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    white-space: nowrap;
    flex-shrink: 0;
    cursor: pointer;
    transition: background .3s var(--ease);
}
.mega-trigger:hover {
    background: var(--gold-grad);
}
.mega-trigger__chevron {
    transition: transform .3s var(--ease);
    font-size: .75rem;
}
.mega-trigger[aria-expanded="true"] .mega-trigger__chevron {
    transform: rotate(180deg);
}

/* =============================================================
   MEGA DROPDOWN PANEL
   ============================================================= */
.mega-panel {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--white);
    border-top: 3px solid var(--gold);
    box-shadow: 0 20px 60px rgba(17,17,17,.14);
    z-index: 990;
    padding: 2rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s var(--ease);
    pointer-events: none;
}
.mega-panel.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}
.mega-panel__heading {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: var(--grey);
    margin-bottom: .9rem;
    padding-bottom: .6rem;
    border-bottom: 1px solid var(--border);
}
.mega-panel__heading i { color: var(--gold); }
.mega-panel__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: .2rem;
}
.mega-panel__list li a {
    display: flex;
    align-items: center;
    gap: .55rem;
    font-size: .88rem;
    color: var(--dark);
    padding: .42rem .6rem;
    border-radius: 8px;
    transition: all .25s var(--ease);
    text-decoration: none;
}
.mega-panel__list li a:hover {
    background: var(--gold-grad-soft);
    color: var(--gold-2);
    padding-left: .9rem;
}
.mega-panel__list li a i { color: var(--gold-2); font-size: .9rem; }
.mega-panel__list--featured li a { font-weight: 600; }
.mega-badge {
    font-size: .6rem;
    font-weight: 700;
    padding: .18rem .55rem;
    border-radius: 50px;
    letter-spacing: .04em;
    flex-shrink: 0;
}
.mega-badge--live {
    background: var(--danger);
    color: var(--white);
}
.mega-badge--hot {
    background: var(--gold-grad);
    color: var(--white);
}
.mega-panel__promo {
    background: var(--dark-grad);
    border-radius: var(--radius-md);
    padding: 1.4rem 1.2rem;
    color: rgba(255,255,255,.8);
}
.mega-panel__promo h5 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: .35rem;
}
.mega-panel__promo p {
    font-size: .8rem;
    color: rgba(255,255,255,.6);
    margin-bottom: .9rem;
}
.mega-panel__promo-stat {
    display: flex;
    gap: 1.2rem;
    margin-top: .8rem;
}
.mega-panel__promo-stat div strong {
    display: block;
    color: var(--gold);
    font-size: 1.1rem;
}
.mega-panel__promo-stat div span {
    font-size: .72rem;
    color: rgba(255,255,255,.5);
}

/* Extra badge variants */
.mega-badge--new {
    background: #0ea5e9;
    color: var(--white);
}
.mega-badge--soon {
    background: rgba(17,17,17,.12);
    color: var(--dark);
}

/* Mega Featured card */
.mega-featured {
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid var(--border);
}
.mega-featured img {
    width: 100%;
    height: 120px;
    object-fit: cover;
}
.mega-featured__body {
    padding: .8rem;
    display: flex;
    flex-direction: column;
    gap: .3rem;
}
.mega-featured__tag {
    font-size: .68rem;
    color: var(--grey);
    text-transform: uppercase;
    letter-spacing: .05em;
    font-weight: 600;
}
.mega-featured__body strong {
    font-size: .92rem;
    color: var(--dark);
}
.mega-featured__bid {
    font-size: .8rem;
    color: var(--grey);
}
.mega-featured__bid span {
    color: var(--success);
    font-weight: 700;
}

/* Mobile categories panel */
.mobile-categories {
    margin-bottom: .8rem;
}
.mobile-cat-toggle {
    display: flex;
    align-items: center;
    gap: .6rem;
    width: 100%;
    background: var(--gold-grad-soft);
    border: 1px solid rgba(212,160,23,.2);
    border-radius: 10px;
    padding: .7rem 1rem;
    font-family: 'Poppins', sans-serif;
    font-size: .9rem;
    font-weight: 600;
    color: var(--gold-2);
    cursor: pointer;
}
.mobile-cat-toggle i:first-child { color: var(--gold); }
.mobile-cat-toggle .bi-chevron-down {
    margin-left: auto;
    transition: transform .3s var(--ease);
    font-size: .75rem;
}
.mobile-cat-panel {
    display: none;
    padding: .6rem 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .4rem;
    margin-top: .5rem;
    display: none;
}
.mobile-cat-panel a {
    display: flex;
    align-items: center;
    gap: .45rem;
    padding: .55rem .7rem;
    font-size: .85rem;
    font-weight: 500;
    color: var(--dark);
    background: var(--bg-light);
    border-radius: 8px;
    text-decoration: none;
    transition: all .2s;
}
.mobile-cat-panel a:hover {
    background: var(--gold-grad-soft);
    color: var(--gold-2);
}
.mobile-cat-panel a i { color: var(--gold-2); font-size: .85rem; }

.search-bar {
    display: flex;
    align-items: stretch;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 50px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.search-bar input {
    flex: 1;
    border: none;
    outline: none;
    padding: .75rem 1.2rem;
    font-size: .92rem;
    font-family: 'Poppins', sans-serif;
}

.search-category {
    border: none;
    border-right: 1px solid var(--border);
    background: transparent;
    padding: 0 1rem;
    font-size: .85rem;
    color: var(--grey);
    font-family: 'Poppins', sans-serif;
    outline: none;
    max-width: 170px;
}

.search-bar button {
    background: var(--gold-grad);
    color: var(--white);
    padding: 0 1.6rem;
    font-weight: 600;
    font-size: .9rem;
    display: flex;
    align-items: center;
    gap: .4rem;
}

.hamburger {
    width: 40px;
    height: 34px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
}

.hamburger span {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--dark);
    border-radius: 2px;
    transition: all .35s var(--ease);
}

.hamburger.is-open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.is-open span:nth-child(2) {
    opacity: 0;
}

.hamburger.is-open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(360px, 88vw);
    height: 100dvh;
    background: var(--white);
    z-index: 1200;
    padding: 1.5rem;
    transition: right .4s var(--ease);
    overflow-y: auto;
    box-shadow: -20px 0 50px rgba(0, 0, 0, .15);
    display: flex;
    flex-direction: column;
}

.mobile-menu.is-open { right: 0; }

.mobile-menu__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}
.mobile-menu__head button {
    font-size: 1.4rem;
    color: var(--dark);
}

/* Mobile search bar inside drawer */
.search-bar--mobile {
    margin-bottom: 1.2rem;
}
.search-bar--mobile form {
    display: flex;
    align-items: stretch;
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: 50px;
    overflow: hidden;
}
.search-bar--mobile input {
    flex: 1;
    border: none;
    outline: none;
    padding: .65rem 1rem;
    font-size: .88rem;
    font-family: 'Poppins', sans-serif;
    background: transparent;
}
.search-bar--mobile button {
    background: var(--gold-grad);
    color: var(--white);
    padding: 0 1rem;
    font-size: .9rem;
}

.mobile-menu__links {
    flex: 1;
}
.mobile-menu__links li a {
    display: flex;
    align-items: center;
    gap: .6rem;
    padding: .85rem .2rem;
    border-bottom: 1px solid var(--border);
    font-weight: 500;
    font-size: .95rem;
    color: var(--dark);
    text-decoration: none;
    transition: color .2s;
}
.mobile-menu__links li a:hover,
.mobile-menu__links li a.active { color: var(--gold-2); }
.mobile-menu__links li a i { color: var(--gold); width: 18px; }

.mobile-menu__actions {
    display: flex;
    flex-direction: column;
    gap: .7rem;
    margin-top: 1.4rem;
    padding-top: 1.2rem;
    border-top: 1px solid var(--border);
}

.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(17, 17, 17, .6);
    z-index: 1100;
    opacity: 0;
    visibility: hidden;
    transition: all .35s var(--ease);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
}
.mobile-menu-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

/* =============================================================
   HERO
   ============================================================= */
.hero {
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 15% 20%, rgba(212, 160, 23, .10), transparent 45%),
        radial-gradient(circle at 90% 80%, rgba(212, 160, 23, .08), transparent 40%),
        var(--bg-light);
    padding: 70px 0 90px;
}

.hero__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    opacity: .5;
    pointer-events: none;
}

.hero__glow--1 {
    width: 340px;
    height: 340px;
    background: var(--gold);
    top: -100px;
    left: -100px;
}

.hero__glow--2 {
    width: 300px;
    height: 300px;
    background: var(--gold-light);
    bottom: -100px;
    right: -60px;
}

.hero__coin {
    position: absolute;
    color: var(--gold);
    opacity: .35;
    font-size: 2rem;
    animation: floatCoin 6s ease-in-out infinite;
}

.hero__coin--1 {
    top: 14%;
    left: 6%;
    animation-delay: 0s;
}

.hero__coin--2 {
    top: 30%;
    right: 8%;
    font-size: 1.4rem;
    animation-delay: 1.2s;
}

.hero__coin--3 {
    bottom: 20%;
    left: 12%;
    font-size: 1.6rem;
    animation-delay: 2.1s;
}

.hero__coin--4 {
    bottom: 10%;
    right: 16%;
    font-size: 2.4rem;
    animation-delay: .6s;
}

@keyframes floatCoin {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-22px) rotate(15deg);
    }
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: .78rem;
    font-weight: 600;
    color: var(--gold-2);
    background: var(--gold-grad-soft);
    padding: .45rem 1rem;
    border-radius: 50px;
    letter-spacing: .03em;
    text-transform: uppercase;
    margin-bottom: 1.1rem;
}

.eyebrow--center {
    margin-inline: auto;
}

.eyebrow .dot--live {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--danger);
    animation: pulseDot 1.4s infinite;
}

.hero__title {
    font-size: clamp(2.1rem, 4vw, 3.2rem);
    line-height: 1.14;
    margin-bottom: 1.1rem;
    letter-spacing: -.01em;
}

.hero__desc {
    font-size: 1.02rem;
    max-width: 480px;
    margin-bottom: 1.8rem;
}

.hero__cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.2rem;
}

.hero__trust {
    display: flex;
    align-items: center;
    gap: .9rem;
}

.avatars {
    display: flex;
}

.avatars img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2.5px solid var(--white);
    margin-left: -12px;
    object-fit: cover;
}

.avatars img:first-child {
    margin-left: 0;
}

.hero__trust p {
    font-size: .85rem;
}

.hero__trust strong {
    color: var(--dark);
}

.hero__stage {
    position: relative;
}

.hero-swiper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.hero-swiper img {
    width: 100%;
    height: 460px;
    object-fit: cover;
}

.hero-swiper .swiper-pagination {
    bottom: 14px !important;
}

.hero-swiper .swiper-pagination-bullet {
    background: var(--white);
    opacity: .6;
}

.hero-swiper .swiper-pagination-bullet-active {
    background: var(--gold);
    opacity: 1;
}

.hero__badge-live {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 5;
    background: var(--dark);
    color: var(--white);
    padding: .5rem 1rem;
    border-radius: 50px;
    font-size: .78rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: .5rem;
}

.hero__badge-live .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--danger);
    animation: pulseDot 1.4s infinite;
}

.hero__timer {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 5;
    background: rgba(255, 255, 255, .92);
    color: var(--dark);
    padding: .5rem 1rem;
    border-radius: 50px;
    font-size: .78rem;
    font-weight: 600;
    backdrop-filter: blur(6px);
}

@keyframes pulseDot {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(220, 53, 69, .5);
    }

    50% {
        box-shadow: 0 0 0 6px rgba(220, 53, 69, 0);
    }
}

.hero__floatcard {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-card);
    padding: .9rem 1.1rem;
    display: flex;
    align-items: center;
    gap: .8rem;
    animation: floatCard 4s ease-in-out infinite;
}

.hero__floatcard i {
    font-size: 1.3rem;
    color: var(--gold-2);
    background: var(--gold-grad-soft);
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero__floatcard div {
    display: flex;
    flex-direction: column;
}

.hero__floatcard strong {
    font-size: 1rem;
}

.hero__floatcard span {
    font-size: .72rem;
    color: var(--grey);
}

.hero__floatcard--1 {
    bottom: -24px;
    left: -24px;
    animation-delay: 0s;
}

.hero__floatcard--2 {
    top: -20px;
    right: -16px;
    animation-delay: 1.5s;
}

@keyframes floatCard {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

@media (max-width: 991px) {
    .hero__floatcard {
        display: none;
    }

    .hero-swiper img {
        height: 320px;
    }
}

/* =============================================================
   TRUST FEATURES
   ============================================================= */
.trust-features {
    padding: 60px 0 10px;
}

.trust-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.8rem 1.4rem;
    text-align: center;
    height: 100%;
    transition: all .35s var(--ease);
    position: relative;
}

.trust-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card);
    /* border-color: transparent; */
}

.trust-card__icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-grad-soft);
    color: var(--gold-2);
    font-size: 1.6rem;
}

.trust-card h4 {
    font-size: 1rem;
    margin-bottom: .4rem;
}

.trust-card p {
    font-size: .85rem;
}

.trust-card--filled {
    background: var(--gold-grad);
    /* border-color: transparent; */
}

.trust-card--filled .trust-card__icon {
    background: rgba(255, 255, 255, .2);
    color: var(--white);
}

.trust-card--filled h4,
.trust-card--filled p {
    color: var(--white);
}

/* =============================================================
   SECTION HEAD (shared)
   ============================================================= */
.section-head {
    margin-bottom: 3rem;
    max-width: 640px;
    margin-inline: auto;
}

.section-head h2 {
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    margin-bottom: .6rem;
}

.section-head p {
    font-size: .95rem;
}

.section-head--split {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    max-width: 100%;
    margin-bottom: 2.2rem;
    text-align: left;
}

.section-nav {
    display: flex;
    gap: .6rem;
}

.section-nav__btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    transition: all .3s var(--ease);
}

.section-nav__btn:hover {
    background: var(--gold-grad);
    color: var(--white);
    /* border-color: transparent; */
}

/* =============================================================
   HOW IT WORKS
   ============================================================= */
.how-it-works {
    padding: 70px 0;
    background: var(--white);
}

.how-it-works__row {
    position: relative;
}

.step-card {
    text-align: center;
    position: relative;
    padding: 1.8rem 1.2rem;
    border-radius: var(--radius-md);
    transition: transform .35s var(--ease);
    height: 100%;
}

.step-card:hover {
    transform: translateY(-6px);
}

.step-card__num {
    font-size: .78rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: .1em;
}

.step-card__icon {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    border: 2px solid var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: .8rem auto 1.1rem;
    font-size: 1.6rem;
    color: var(--dark);
    position: relative;
    z-index: 2;
    background: var(--white);
    transition: all .35s var(--ease);
}

.step-card:hover .step-card__icon {
    background: var(--gold-grad);
    border-color: var(--gold-grad);
    color: var(--white);
    box-shadow: var(--shadow-gold);
}

.step-card h4 {
    font-size: 1.05rem;
    margin-bottom: .5rem;
}

.step-card p {
    font-size: .85rem;
}

/* =============================================================
   LIVE AUCTION
   ============================================================= */
.live-auction {
    padding: 70px 0;
    position: relative;
    background: var(--bg-light);
    overflow: hidden;
}

.live-auction__ribbon {
    position: absolute;
    top: 0;
    right: -10%;
    width: 60%;
    height: 140%;
    opacity: .5;
    background: conic-gradient(from 180deg at 50% 50%, rgba(212, 160, 23, .12), transparent 40%);
    pointer-events: none;
}

.eyebrow .dot--live {
    display: inline-block;
}

.auction-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 12px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border);
    height: 100%;
    position: relative;
    transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}

.auction-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card);
    border-color: rgba(212, 160, 23, .35);
}

/* ---------- Media ---------- */
.auction-card__media {
    position: relative;
    overflow: hidden;
    height: 210px;
    border-radius: 14px;
}

.auction-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s var(--ease);
}

.auction-card:hover .auction-card__media img {
    transform: scale(1.08);
}

/* Ends-in timer pill, top-left over the image */
.auction-card__timer {
    position: absolute;
    left: 10px;
    top: 10px;
    background: rgba(255, 255, 255, .95);
    color: var(--dark);
    font-size: .7rem;
    font-weight: 500;
    padding: .38rem .7rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: .35rem;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(17, 17, 17, .12);
    backdrop-filter: blur(4px);
}

.auction-card__timer i {
    color: var(--gold-2);
    font-size: .78rem;
}

.auction-card__timer strong {
    color: var(--gold-2);
    font-weight: 600;
}

/* Gavel badge, top-right over the image */
.auction-card__gavel {
    position: absolute;
    right: 10px;
    top: 10px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--gold-grad);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    z-index: 2;
    border: 3px solid rgba(255, 255, 255, .85);
    box-shadow: 0 6px 16px rgba(212, 160, 23, .45);
    transition: transform .35s var(--ease);
}

.auction-card:hover .auction-card__gavel {
    transform: rotate(-12deg) scale(1.08);
}

/* ---------- Body ---------- */
.auction-card__body {
    padding: 1.1rem .5rem .4rem;
}

.auction-card__title {
    display: flex;
    flex-direction: column;
    margin-bottom: .5rem;
}

.auction-card__title h4 {
    font-size: 1.02rem;
    display: flex;
    align-items: center;
    gap: .35rem;
}

.auction-card__title span {
    font-size: .8rem;
    color: var(--grey);
}

.verified {
    color: var(--gold);
    font-size: .85rem;
}

.auction-card__id {
    font-size: .8rem;
    color: var(--grey);
    margin-bottom: .9rem;
    padding-bottom: .9rem;
    border-bottom: 1px dashed var(--border);
}

.auction-card__id strong {
    color: var(--id-pink);
    font-weight: 700;
}

/* MRP + discount row */
.auction-card__mrp-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: .9rem;
}

.auction-card__mrp small {
    display: block;
    font-size: .7rem;
    color: var(--grey);
    margin-bottom: .15rem;
}

.auction-card__mrp s {
    color: var(--grey);
    font-size: .92rem;
}

.badge-discount {
    background: var(--danger);
    color: var(--white);
    font-size: .72rem;
    font-weight: 700;
    padding: .35rem .7rem;
    border-radius: 50px;
    flex-shrink: 0;
}

/* Current bid / instant buy amount row */
.auction-card__bid-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.1rem;
}

.auction-card__bid-row small {
    display: block;
    font-size: .74rem;
    color: var(--grey);
    margin-bottom: .2rem;
}

.text-current-bid {
    color: var(--success);
    font-size: 1.05rem;
    font-weight: 700;
}

.text-instant-buy {
    color: var(--gold-2);
    font-size: 1.05rem;
    font-weight: 700;
}

/* Action buttons */
.auction-card__actions {
    display: flex;
    gap: .6rem;
}

.btn-bid,
.btn-instant {
    flex: 1;
    border-radius: 50px;
    padding: .68rem 1rem;
    font-weight: 600;
    font-size: .88rem;
    color: var(--white);
    text-align: center;
}

.btn-bid {
    background: var(--success);
    box-shadow: 0 10px 22px rgba(34, 197, 94, .28);
}

.btn-bid:hover {
    background: #1ba750;
    transform: translateY(-2px);
    color: var(--white);
}

.btn-instant {
    background: var(--gold-grad);
    box-shadow: var(--shadow-gold);
}

.btn-instant:hover {
    transform: translateY(-2px);
    color: var(--white);
}


.live-swiper {
    padding-bottom: 20px;
}

.live-swiper__pagination {
    position: relative;
    margin-top: 1.6rem;
    text-align: center;
}

.live-swiper .swiper-pagination-bullet-active {
    background: var(--gold);
}

/* =============================================================
   UPCOMING AUCTIONS
   ============================================================= */
/* Shared wishlist/share icon chip (used on upcoming-auction cards) */
.icon-chip {
    position: absolute;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .92);
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .9rem;
    z-index: 2;
    transition: all .3s var(--ease);
}

.icon-chip:hover {
    background: var(--gold);
    color: var(--white);
}

.icon-chip--wish {
    bottom: 14px;
    right: 14px;
}

.icon-chip--share {
    bottom: 14px;
    right: 56px;
}

.upcoming-auction {
    padding: 70px 0;
    background: var(--white);
}

.upcoming-card {
    display: flex;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 100%;
    border: 1px solid var(--border);
    transition: all .4s var(--ease);
}

.upcoming-card:hover {
    box-shadow: var(--shadow-card);
    transform: translateY(-6px);
}

.upcoming-card__media {
    position: relative;
    width: 42%;
    flex-shrink: 0;
    overflow: hidden;
}

.upcoming-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 210px;
    transition: transform .6s var(--ease);
}

.upcoming-card:hover .upcoming-card__media img {
    transform: scale(1.1);
}

.upcoming-card__media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(17, 17, 17, .55));
    opacity: 0;
    transition: opacity .4s var(--ease);
}

.upcoming-card:hover .upcoming-card__media::after {
    opacity: 1;
}

.badge-open {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--success);
    color: var(--white);
    font-size: .7rem;
    font-weight: 700;
    padding: .32rem .7rem;
    border-radius: 50px;
    z-index: 2;
}

.upcoming-card__body {
    padding: 1.3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
}

.upcoming-card__cat {
    font-size: .7rem;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--gold-2);
    font-weight: 700;
    margin-bottom: .3rem;
}

.upcoming-card__body h4 {
    font-size: 1.05rem;
    margin-bottom: .25rem;
}

.upcoming-card__body>p {
    font-size: .82rem;
    margin-bottom: 1rem;
}

.upcoming-card__footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .8rem 1.2rem;
}

.upcoming-card__footer small {
    display: block;
    font-size: .68rem;
    color: var(--grey);
}

.upcoming-card__footer strong {
    font-size: .92rem;
}

@media (max-width: 575px) {
    .upcoming-card {
        flex-direction: column;
    }

    .upcoming-card__media {
        width: 100%;
        height: 180px;
    }
}

/* =============================================================
   APP DOWNLOAD
   ============================================================= */
.app-download {
    padding: 30px 0 70px;
    position: relative;
    overflow: hidden;
}

.app-download__box {
    background: var(--gold-grad);
    border-radius: var(--radius-lg);
    padding: 3rem 2.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-gold);
}

.app-download__box h2 {
    color: var(--white);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    margin-bottom: .6rem;
}

.app-download__box p {
    color: rgba(255, 255, 255, .9);
    margin-bottom: 1.5rem;
}

.app-download__shape {
    position: absolute;
    border-radius: 50%;
    background: var(--gold);
    opacity: .15;
    filter: blur(50px);
}

.app-download__shape--1 {
    width: 260px;
    height: 260px;
    top: -80px;
    left: 10%;
}

.app-download__shape--2 {
    width: 220px;
    height: 220px;
    bottom: -80px;
    right: 8%;
}

.phone-mockup {
    width: 150px;
    height: 300px;
    margin: 0 auto;
    border-radius: 28px;
    background: var(--dark);
    padding: 10px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .35);
}

.phone-mockup__screen {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    background: linear-gradient(160deg, #1c1c1c, #000);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .4rem;
    padding: 1rem;
}

.phone-mockup__screen p {
    color: var(--white);
    font-weight: 600;
    font-size: .85rem;
    margin-bottom: .6rem;
}

.phone-mockup__bar {
    width: 70%;
    height: 6px;
    border-radius: 4px;
    background: rgba(255, 255, 255, .15);
}

.phone-mockup__bar--short {
    width: 45%;
}

.store-buttons {
    display: flex;
    gap: .9rem;
    flex-wrap: wrap;
}

.store-btn {
    display: flex;
    align-items: center;
    gap: .6rem;
    background: var(--dark);
    color: var(--white);
    padding: .65rem 1.2rem;
    border-radius: 14px;
    transition: transform .3s var(--ease);
}

.store-btn:hover {
    transform: translateY(-4px);
    color: var(--white);
}

.store-btn i {
    font-size: 1.5rem;
}

.store-btn span {
    display: flex;
    flex-direction: column;
    font-size: .9rem;
    font-weight: 600;
    line-height: 1.2;
}

.store-btn small {
    font-size: .62rem;
    font-weight: 400;
    opacity: .8;
}

.qr-box {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
    background: var(--white);
    padding: 1rem;
    border-radius: var(--radius-sm);
}

.qr-box span {
    font-size: .75rem;
    color: var(--grey);
    font-weight: 600;
}

/* =============================================================
   CATEGORIES
   ============================================================= */
.categories {
    padding: 70px 0;
    background: var(--bg-light);
}

.category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .8rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.8rem 1rem;
    text-align: center;
    transition: all .35s var(--ease);
    height: 100%;
}

.category-card i {
    font-size: 1.8rem;
    color: var(--gold-2);
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: var(--gold-grad-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .35s var(--ease);
}

.category-card span {
    font-weight: 600;
    font-size: .9rem;
    color: var(--dark);
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card);
    border-color: transparent;
}

.category-card:hover i {
    background: var(--gold-grad);
    color: var(--white);
    transform: rotate(-8deg) scale(1.05);
}

/* =============================================================
   WHY US
   ============================================================= */
.why-us {
    padding: 70px 0;
    background: var(--white);
}

/* .why-us .row {
    gap: 10px;
} */

.why-card {
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.8rem;
    height: 100%;
    display: flex;
    gap: 1rem;
    transition: all .35s var(--ease);
}

.why-card:hover {
    box-shadow: var(--shadow-card);
    transform: translateY(-4px);
    border-color: transparent;
}

.why-card i {
    font-size: 1.5rem;
    color: var(--gold-2);
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--gold-grad-soft);
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-card h4 {
    font-size: 1rem;
    margin-bottom: .35rem;
}

.why-card p {
    font-size: .85rem;
}

/* =============================================================
   STATISTICS
   ============================================================= */
.statistics {
    padding: 60px 0;
    background: var(--dark-grad);
    position: relative;
    overflow: hidden;
}

.statistics::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 30%, rgba(212, 160, 23, .14), transparent 45%),
        radial-gradient(circle at 85% 70%, rgba(212, 160, 23, .10), transparent 40%);
}

.stat-card {
    position: relative;
    z-index: 1;
}

.stat-card i {
    font-size: 1.7rem;
    color: var(--gold);
    margin-bottom: .6rem;
    display: inline-block;
}

.stat-card h3 {
    color: var(--white);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    margin-bottom: .3rem;
}

.stat-card p {
    color: rgba(255, 255, 255, .65);
    font-size: .85rem;
}

/* =============================================================
   WINNERS
   ============================================================= */
.winners {
    padding: 70px 0;
    background: var(--bg-light);
}

.winner-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.6rem 1rem;
    text-align: center;
    transition: all .35s var(--ease);
    height: 100%;
}

.winner-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card);
}

.winner-card img {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto .9rem;
    border: 3px solid var(--gold-light);
    padding: 2px;
}

.winner-card h5 {
    font-size: .95rem;
    margin-bottom: .2rem;
}

.winner-card p {
    font-size: .8rem;
    margin-bottom: .6rem;
}

.winner-card p strong {
    color: var(--dark);
}

.winner-card__amount {
    display: block;
    font-weight: 700;
    color: var(--success);
    font-size: 1rem;
}

.winner-card__id {
    display: block;
    font-size: .7rem;
    color: var(--grey);
    margin-top: .2rem;
}

/* =============================================================
   TESTIMONIALS
   ============================================================= */
.testimonials {
    padding: 70px 0;
    background: var(--white);
}

.testi-card {
    background: var(--gold-grad-soft);
    backdrop-filter: blur(6px);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    height: 100%;
    position: relative;
}

.testi-card__quote {
    font-size: 2rem;
    color: var(--gold);
    opacity: .5;
    margin-bottom: .5rem;
}

.testi-card__stars {
    color: var(--gold);
    font-size: .85rem;
    margin-bottom: .8rem;
}

.testi-card p {
    font-size: .92rem;
    color: var(--dark);
    margin-bottom: 1.4rem;
    font-style: italic;
}

.testi-card__user {
    display: flex;
    align-items: center;
    gap: .8rem;
}

.testi-card__user img {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
}

.testi-card__user strong {
    display: block;
    font-size: .9rem;
}

.testi-card__user span {
    font-size: .76rem;
    color: var(--grey);
}

.testi-swiper {
    padding-bottom: 10px;
}

/* =============================================================
   FAQ
   ============================================================= */
.faq {
    padding: 70px 0;
    background: var(--bg-light);
}

.faq-accordion {
    max-width: 820px;
    margin: 0 auto;
}

.accordion-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-sm) !important;
    margin-bottom: 1rem;
    overflow: hidden;
    background: var(--white);
}

.accordion-button {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: .95rem;
    color: var(--dark);
    padding: 1.2rem 1.4rem;
    background: var(--white);
}

.accordion-button:not(.collapsed) {
    background: var(--gold-grad-soft);
    color: var(--gold-2);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.accordion-button::after {
    background-size: 1rem;
}

.accordion-body {
    font-size: .88rem;
    padding: 0 1.4rem 1.3rem;
}

/* =============================================================
   FOOTER
   ============================================================= */
.site-footer {
    background: var(--dark-grad);
    padding: 70px 0 0;
    color: rgba(255, 255, 255, .7);
}

/* Gold top accent bar on footer */
.footer-gold-bar {
    height: 3px;
    background: var(--gold-grad);
    margin-bottom: 0;
}

.brand--footer .brand__text {
    color: var(--white);
}

.footer-about {
    font-size: .86rem;
    margin: 1.1rem 0 1.4rem;
    color: rgba(255, 255, 255, .55);
    max-width: 340px;
    line-height: 1.7;
}

/* Footer trust badges row */
.footer-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: .7rem;
    margin-bottom: 1.4rem;
}

.footer-trust-badges span {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    font-size: .75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .7);
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 50px;
    padding: .3rem .8rem;
}

.footer-trust-badges span i {
    color: var(--gold);
    font-size: .8rem;
}

/* Newsletter widget */
.newsletter {
    display: flex;
    flex-direction: column;
    gap: .6rem;
    max-width: 340px;
}

.newsletter__label {
    font-size: .8rem;
    color: rgba(255, 255, 255, .5);
    margin: 0;
}

.newsletter__form {
    display: flex;
    border-radius: 50px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .15);
}

.newsletter__form input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    padding: .65rem 1.1rem;
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-size: .84rem;
}

.newsletter__form input::placeholder {
    color: rgba(255, 255, 255, .35);
}

.newsletter__form button {
    background: var(--gold-grad);
    color: var(--white);
    padding: 0 1.2rem;
    font-size: .95rem;
    flex-shrink: 0;
}

/* Legacy newsletter (flat form) support */
.newsletter > input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    padding: .7rem 1.1rem;
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-size: .85rem;
}

.newsletter > input::placeholder {
    color: rgba(255, 255, 255, .4);
}

.newsletter > button {
    background: var(--gold-grad);
    color: var(--white);
    padding: 0 1.2rem;
}

/* Footer headings */
.footer-heading {
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    letter-spacing: .02em;
}

.site-footer h5 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 1.2rem;
}

/* Footer link lists */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: .75rem;
}

.footer-links li a {
    display: flex;
    align-items: center;
    gap: .4rem;
    font-size: .85rem;
    color: rgba(255, 255, 255, .6);
    transition: color .25s var(--ease), padding-left .25s var(--ease);
    text-decoration: none;
}

.footer-links li a i {
    font-size: .65rem;
    color: var(--gold);
    opacity: .7;
}

.footer-links li a:hover {
    color: var(--gold);
    padding-left: .3rem;
}

.site-footer ul li {
    margin-bottom: .8rem;
}

.site-footer ul li a {
    font-size: .86rem;
    color: rgba(255, 255, 255, .6);
    transition: color .3s;
}

.site-footer ul li a:hover {
    color: var(--gold);
}

/* Footer contact list */
.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: .6rem;
    font-size: .86rem;
    margin-bottom: .85rem;
    color: rgba(255, 255, 255, .65);
}

.contact-list li i {
    color: var(--gold);
    margin-top: .15rem;
    flex-shrink: 0;
}

/* Social links */
.social-links {
    display: flex;
    gap: .7rem;
    flex-wrap: wrap;
}

.social-links a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: .95rem;
    transition: all .3s var(--ease);
    text-decoration: none;
}

.social-links a:hover {
    background: var(--gold-grad);
    border-color: transparent;
    transform: translateY(-3px);
    color: var(--white);
}

/* Payment methods row */
.footer-payments {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    flex-wrap: wrap;
    padding: 1.6rem 0;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, .1);
    font-size: 1.5rem;
    color: rgba(255, 255, 255, .35);
}

.footer-payments span {
    font-size: .78rem;
    color: rgba(255, 255, 255, .4);
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
    margin-right: .4rem;
}

.footer-payments i:hover {
    color: var(--gold);
    transition: color .25s;
}

.payment-methods {
    display: flex;
    gap: 1.6rem;
    justify-content: center;
    padding: 2.4rem 0;
    margin-top: 2.6rem;
    border-top: 1px solid rgba(255, 255, 255, .1);
    font-size: 1.5rem;
    color: rgba(255, 255, 255, .35);
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: .6rem;
    padding: 1.4rem 0;
    font-size: .8rem;
    color: rgba(255, 255, 255, .4);
    border-top: 1px solid rgba(255, 255, 255, .1);
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, .4);
}

.footer-bottom strong {
    color: var(--gold);
}

.footer-bottom__links {
    display: flex;
    gap: 1.2rem;
}

.footer-bottom__links a {
    color: rgba(255, 255, 255, .4);
    font-size: .8rem;
    text-decoration: none;
    transition: color .25s;
}

.footer-bottom__links a:hover {
    color: var(--gold);
}

/* =============================================================
   INNER PAGE — SHARED COMPONENTS
   ============================================================= */

/* Page hero (used in about, contact, terms, auctionsearch) */
.page-hero {
    position: relative;
    padding: 80px 0;
    background: var(--dark-grad);
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(212,160,23,.18), transparent 55%),
                radial-gradient(circle at 80% 20%, rgba(212,160,23,.10), transparent 40%);
    pointer-events: none;
}

.page-hero h1 {
    color: var(--white);
    position: relative;
    z-index: 1;
}

.page-hero .breadcrumb {
    position: relative;
    z-index: 1;
}

.page-hero .breadcrumb-item a {
    color: rgba(255,255,255,.65);
    text-decoration: none;
    transition: color .25s;
}

.page-hero .breadcrumb-item a:hover { color: var(--gold); }
.page-hero .breadcrumb-item.active { color: var(--gold); }
.page-hero .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.3); }

.page-hero p {
    color: rgba(255,255,255,.65);
    position: relative;
    z-index: 1;
}

/* Background surface for inner page sections */
.bg-surface {
    background: var(--bg-light);
}

/* Text gold utility (works on any bg) */
.text-gold {
    color: var(--gold) !important;
}

/* Section cards used in inner pages */
.inner-card {
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
    transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}

.inner-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}

/* =============================================================
   BACK TO TOP
   ============================================================= */
.back-to-top {
    position: fixed;
    bottom: 26px;
    right: 26px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gold-grad);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: var(--shadow-gold);
    z-index: 900;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all .35s var(--ease);
}

.back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-4px);
}

/* =============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================= */

/* ---- Large Desktop (1200px+) fine-tuning ---- */
@media (min-width: 1200px) {
    .container { max-width: 1280px; }
}

/* ---- Tablet landscape (≤1199px) ---- */
@media (max-width: 1199px) {
    .hero__title { font-size: clamp(1.9rem, 3.5vw, 2.8rem); }
    .main-nav ul { gap: 1.3rem; }
    .nav-link-item { font-size: .87rem; }
    .nav-actions { gap: .6rem; }
    .search-category { max-width: 130px; }
}

/* ---- Tablet portrait (≤991px) ---- */
@media (max-width: 991px) {
    /* Sections */
    .hero { padding: 50px 0 70px; }
    .trust-features,
    .how-it-works,
    .live-auction,
    .upcoming-auction,
    .app-download,
    .categories,
    .why-us,
    .winners,
    .testimonials,
    .faq { padding: 52px 0; }
    .statistics { padding: 48px 0; }

    /* Auction cards — 2 per row */
    .hero-swiper img { height: 340px; }
    .hero__floatcard { display: none; }

    /* App download */
    .app-download__box { padding: 2.5rem 2rem; }
    .phone-mockup { width: 120px; height: 240px; }

    /* Footer columns */
    .footer-bottom { flex-direction: column; text-align: center; }
}

/* ---- Mobile (≤767px) ---- */
@media (max-width: 767px) {
    /* Hero */
    .hero {
        padding: 36px 0 52px;
        text-align: center;
    }
    .hero__title { font-size: clamp(1.7rem, 6vw, 2.2rem); }
    .hero__cta { justify-content: center; }
    .hero__trust { justify-content: center; }
    .hero__desc { margin-inline: auto; max-width: 340px; }
    .hero-swiper img { height: 260px; }

    /* Section heads */
    .section-head { margin-bottom: 2rem; }
    .section-head h2 { font-size: clamp(1.5rem, 5vw, 1.9rem); }
    .section-head--split {
        flex-direction: column;
        align-items: flex-start;
        gap: .8rem;
    }

    /* Sections spacing */
    .trust-features,
    .how-it-works,
    .live-auction,
    .upcoming-auction,
    .categories,
    .why-us,
    .winners,
    .testimonials,
    .faq { padding: 40px 0; }
    .statistics { padding: 36px 0; }
    .app-download { padding: 20px 0 40px; }

    /* App download box */
    .app-download__box {
        padding: 2rem 1.4rem;
        text-align: center;
    }
    .store-buttons { justify-content: center; }
    .qr-box { display: none; }

    /* Auction cards */
    .auction-card__media { height: 180px; }

    /* Step cards — 2 per row on small screens */
    .step-card { padding: 1.4rem .8rem; }

    /* Trust cards */
    .trust-card { padding: 1.4rem 1rem; }

    /* Winner cards */
    .winner-card { padding: 1.2rem .8rem; }

    /* Testi cards */
    .testi-card { padding: 1.5rem; }

    /* Footer */
    .site-footer { padding: 48px 0 0; }
    .footer-about { max-width: 100%; }
    .newsletter { max-width: 100%; }
    .payment-methods { flex-wrap: wrap; gap: 1rem; }

    /* Back to top */
    .back-to-top { bottom: 16px; right: 16px; width: 42px; height: 42px; font-size: 1rem; }
}

/* ---- Small mobile (≤575px) ---- */
@media (max-width: 575px) {
    .hero__title { font-size: 1.65rem; }
    .hero__cta .btn { width: 100%; justify-content: center; }
    .hero__cta { flex-direction: column; }

    /* Upcoming card stacks vertically */
    .upcoming-card { flex-direction: column; }
    .upcoming-card__media { width: 100%; height: 180px; }

    /* Category cards — 3 per row */
    .category-card { padding: 1.2rem .6rem; }
    .category-card i { width: 52px; height: 52px; font-size: 1.4rem; }

    /* Statistics — 2x2 grid */
    .stat-card h3 { font-size: 1.8rem; }

    /* Brand text */
    .brand__text small { display: none; }

    /* Search bar condensed */
    .search-category { display: none; }

    /* Buttons */
    .btn { padding: .62rem 1.2rem; font-size: .88rem; }

    /* FAQ */
    .accordion-button { font-size: .88rem; padding: 1rem; }
    .accordion-body { padding: 0 1rem 1rem; }
}