/* ============================================================
   AUCTION.CSS — 1333 Covenant Live Art Auction
   Matches home.html / shop.html aesthetic
   ============================================================ */

:root {
    --purple-main:           #C4A8E8;
    --purple-dark:           #96799c;
    --purple-deeper:         #96799c;
    --purple-mid:            #96799c;
    --purple-gradient-start: rgba(224,208,248,0.96);
    --purple-gradient-mid:   rgba(107,40,200,0.92);
    --purple-gradient-end:   rgba(156,100,210,0.90);
    --text-dark:             #1a0a2e;
    --text-white:            #fff;
    --accent-purple:         #5B18A8;
    --accent-hover:          #96799c;
    --display-violet:        #DDB8FF;
    --panel-bg: radial-gradient(circle, rgba(255,255,255,1) 58%, rgba(242,232,255,1) 85%, rgba(220,200,248,1) 100%);
    --chrome-light:   rgba(255,255,255,0.85);
    --chrome-shadow:  rgba(58,15,114,0.35);
    --teal:           #84c4c4;
    --border-purple:  #9B6CD8;
}

*, *::before, *::after {
    margin: 0; padding: 0; box-sizing: border-box;
    cursor: url(https://cur.cursors-4u.net/games/gam-10/gam987.png), auto !important;
}

body {
    font-family: 'MS UI Gothic', 'Segoe UI', Arial, sans-serif;
    font-size: 13px;
    color: var(--text-dark);
    background-color: #1a0a2e;
    background-image: url('https://1333covenant.com/images/junebackground.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
    background-attachment: fixed;
    min-height: 100vh;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 3px,
        rgba(0,0,0,0.06) 3px,
        rgba(0,0,0,0.06) 4px
    );
    pointer-events: none;
    z-index: 1;
}

a { color: var(--accent-purple); text-decoration: none; font-weight: bold; }
a:hover { color: var(--accent-hover); }

::selection {
    text-shadow: 0 0 8px #96799c, 0 0 16px #96799c;
    color: white; background: transparent;
}

/* ── SCROLLBAR ────────────────────────────────────────────────── */
::-webkit-scrollbar { width: 15px; height: 10px; }
::-webkit-scrollbar-thumb:vertical {
    background: linear-gradient(180deg, #c4a8e8, #96799c);
    border-top: 1px solid #ddc8f8; border-left: 1px solid #ddc8f8;
    border-right: 1px solid #96799c; border-bottom: 1px solid #96799c;
}
::-webkit-scrollbar-track { background: #f0e8ff; }
::-webkit-scrollbar-button:vertical:increment,
::-webkit-scrollbar-button:vertical:decrement {
    background: linear-gradient(180deg, #ddc8f8, #9b6cd8);
    width: 14px; height: 16px;
    border-top: 1px solid #ddc8f8; border-left: 1px solid #ddc8f8;
    border-right: 1px solid #96799c; border-bottom: 1px solid #96799c;
}

/* ── TOP NAV ──────────────────────────────────────────────────── */
.topnav {
    background: linear-gradient(180deg, #ede0ff 0%, #dcc8f8 40%, #ede0ff 100%);
    border-radius: 0 0 16px 16px;
    border: 2px solid #9B6CD8;
    border-top: none;
    box-shadow: 0 4px 18px rgba(107,40,200,0.2),
                inset 0 1px 0 rgba(255,255,255,0.7),
                inset 0 -1px 0 rgba(107,40,200,0.15);
    margin: 0 20px 14px;
    position: sticky; top: 0; z-index: 100;
    transform: translateZ(0);
}
.topnav ul {
    display: flex; justify-content: center; align-items: center;
    flex-wrap: wrap; gap: 2px; margin: 0; padding: 7px 15px; list-style: none;
}
.topnav a {
    color: #322036; text-align: center; padding: 6px 11px; display: inline-block;
    font-family: 'MS UI Gothic', Arial, sans-serif; font-size: 11px;
    background: transparent; border: none;
    letter-spacing: 1px; text-transform: uppercase;
    border-radius: 3px;
    transition: background 0.15s, color 0.15s;
}
.topnav a:hover { background: rgba(180,140,255,0.2); color: #1a0438; text-shadow: none; }
.topnav a.active { background: rgba(180,140,255,0.15); color: #1a0438; }

/* ── MAIN CONTAINER ───────────────────────────────────────────── */
.main-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px 40px;
    position: relative; z-index: 2;
}

/* ── HEADER TITLE ─────────────────────────────────────────────── */
.header-title {
    background: linear-gradient(180deg, #ede0ff 0%, #dcc8f8 50%, #ede0ff 100%);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.8), 0 3px 14px rgba(107,40,200,0.15);
    padding: 14px 20px; color: #322036; text-align: center;
    border-radius: 0 0 0 40px;
    border: 2px solid #9B6CD8;
    border-top: none;
    margin-bottom: 15px;
}
.header-title h1 { font-size: 22px; margin-bottom: 5px; letter-spacing: 2px; }
.header-title p  { font-size: 11px; opacity: 0.85; letter-spacing: 1.5px; text-transform: uppercase; }

/* ── PANELS ───────────────────────────────────────────────────── */
.panel {
    background: var(--panel-bg);
    border: 2px solid #9B6CD8;
    border-top: 3px solid #C4A8E8;
    border-radius: 0 0 0 40px;
    padding: 20px; margin-bottom: 15px;
    box-shadow: 3px 3px 0 rgba(58,15,114,0.2), inset 0 1px 0 rgba(255,255,255,0.9);
}
.panel-alt {
    background: var(--panel-bg);
    border: 2px solid #9B6CD8;
    border-top: 3px solid #C4A8E8;
    border-radius: 40px 0 0 0;
    padding: 20px; margin-bottom: 15px;
    box-shadow: 3px 3px 0 rgba(58,15,114,0.2), inset 0 1px 0 rgba(255,255,255,0.9);
}
.panel-header {
    background: linear-gradient(180deg, #e8d4ff 0%, #d8bef8 60%, #e8d4ff 100%);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.7), inset 0 -1px 0 rgba(107,40,200,0.15);
    padding: 7px 15px; color: #322036; font-size: 12px; font-weight: bold;
    margin: -20px -20px 15px -20px;
    letter-spacing: 1px; text-transform: uppercase;
    text-shadow: 0 1px 0 rgba(255,255,255,0.6);
}
.panel-alt .panel-header { border-radius: 38px 0 0 0; }
.panel .panel-header      { border-radius: 0; }

/* ── AUCTION MARQUEE ──────────────────────────────────────────── */
.auction-banner {
    background: linear-gradient(180deg, #e8d4ff 0%, #d8bef8 100%);
    border-top: 2px solid #9B6CD8;
    border-bottom: 2px solid #9B6CD8;
    padding: 7px 0;
    margin-bottom: 14px;
    position: relative; z-index: 2;
}
.auction-banner marquee {
    font-family: 'MS UI Gothic', Arial, sans-serif;
    font-size: 11px; font-weight: bold;
    color: #322036; letter-spacing: 1.5px; text-transform: uppercase;
}

/* ── COUNTDOWN ────────────────────────────────────────────────── */
.countdown-wrap { text-align: center; padding: 10px 10px 5px; }
.countdown-label {
    font-family: 'MS UI Gothic', Arial, sans-serif;
    font-size: 9px; font-weight: bold; color: #96799c;
    letter-spacing: 4px; text-transform: uppercase; margin-bottom: 14px;
}
.countdown-display {
    display: flex; align-items: flex-start; justify-content: center;
    gap: 8px; flex-wrap: wrap;
}
.time-block { display: flex; flex-direction: column; align-items: center; gap: 3px; }
.time-num {
    font-family: 'VT323', monospace;
    font-size: clamp(3rem, 9vw, 5.5rem);
    color: var(--teal);
    text-shadow: 0 0 14px rgba(132,196,196,0.5);
    line-height: 1; min-width: 1.6em; text-align: center; display: block;
}
.time-lbl {
    font-family: 'MS UI Gothic', Arial, sans-serif;
    font-size: 8px; font-weight: bold;
    color: #96799c; letter-spacing: 2px; text-transform: uppercase;
}
.time-colon {
    font-family: 'VT323', monospace;
    font-size: clamp(2.5rem, 8vw, 5rem);
    color: #C4A8E8; line-height: 1.1;
    align-self: flex-start;
    animation: colonBlink 1s step-end infinite;
}
@keyframes colonBlink {
    0%,49%  { opacity: 1; }
    50%,100%{ opacity: 0.15; }
}
.countdown-display.urgent .time-num {
    color: #e8a070;
    text-shadow: 0 0 14px rgba(232,160,112,0.5);
    animation: urgentPulse 0.6s ease-in-out infinite alternate;
}
@keyframes urgentPulse {
    from { transform: scale(1); }
    to   { transform: scale(1.04); }
}
.auction-ended-msg {
    font-family: 'VT323', monospace;
    font-size: 2rem; color: #e8b44c;
    text-shadow: 0 0 10px rgba(232,180,76,0.4);
    padding: 8px;
    animation: endGlow 2s ease-in-out infinite alternate;
}
@keyframes endGlow {
    from { text-shadow: 0 0 10px rgba(232,180,76,0.4); }
    to   { text-shadow: 0 0 25px rgba(232,180,76,0.7); }
}
.end-date-note {
    font-size: 9px; color: #96799c; margin-top: 10px;
    text-transform: uppercase; letter-spacing: 1px;
}

/* ── GOAL BAR ─────────────────────────────────────────────────── */
.goal-bar-box { margin-top: 15px; }
.goal-labels {
    display: flex; justify-content: space-between;
    font-size: 9px; font-weight: bold; color: #322036;
    margin-bottom: 5px; letter-spacing: 0.5px; text-transform: uppercase;
}
.goal-labels.small { margin-top: 3px; font-size: 8px; color: #96799c; }
.goal-total { font-family: 'VT323', monospace; font-size: 18px; color: var(--teal); }
.goal-track {
    height: 14px;
    background: rgba(196,168,232,0.15);
    border: 1px solid #9B6CD8;
    overflow: hidden;
}
.goal-fill {
    height: 100%; width: 0%;
    background: linear-gradient(90deg, var(--teal), #C4A8E8, #96799c);
    transition: width 0.9s ease;
}

/* ── RALPH SECTION ────────────────────────────────────────────── */
.ralph-inner { display: flex; gap: 20px; flex-wrap: wrap; align-items: flex-start; }
.ralph-photos { flex: 0 0 270px; max-width: 270px; }
.ralph-main-photo {
    width: 100%; display: block;
    border: 2px solid #9B6CD8;
    cursor: pointer !important;
    transition: transform 0.2s;
}
.ralph-main-photo:hover { transform: scale(1.02); }
.ralph-thumb-row { display: flex; gap: 8px; margin-top: 8px; }
.ralph-thumb {
    flex: 1; height: 90px; object-fit: cover;
    border: 2px solid #C4A8E8;
    cursor: pointer !important;
    transition: border-color 0.2s;
}
.ralph-thumb:hover { border-color: #9B6CD8; }

.ralph-story { flex: 1; min-width: 200px; }
.ralph-story h2 { font-size: 18px; color: #322036; margin-bottom: 10px; letter-spacing: 1px; }
.ralph-story p  { line-height: 1.7; margin-bottom: 8px; color: #322036; }
.ralph-story strong { color: var(--accent-purple); }

/* ── CUSTOM PRINT INFO ────────────────────────────────────────── */
.custom-print-body { display: flex; gap: 20px; flex-wrap: wrap; align-items: flex-start; }
.custom-print-text { flex: 1; min-width: 220px; }
.custom-print-headline {
    font-size: 13px; font-weight: bold; color: #322036;
    letter-spacing: 1px; text-transform: uppercase; margin-bottom: 10px;
}
.custom-print-text p  { line-height: 1.7; margin-bottom: 8px; color: #322036; }
.custom-print-text strong { color: var(--accent-purple); }
.social-inline-link { color: var(--accent-purple); border-bottom: 1px solid #9B6CD8; }
.social-inline-link:hover { color: var(--accent-hover); }

.size-options { display: flex; gap: 8px; flex-wrap: wrap; margin: 10px 0; }
.size-chip {
    padding: 5px 14px;
    background: rgba(196,168,232,0.12);
    border: 1px solid #9B6CD8;
    font-size: 10px; font-weight: bold; color: #322036;
    text-transform: uppercase; letter-spacing: 1px;
}
.size-note { font-size: 10px; color: #96799c; font-style: italic; }

.custom-print-examples {
    position: relative; flex: 0 0 240px;
    display: flex; flex-direction: column; gap: 10px;
}
.example-img {
    width: 100%; display: block;
    border: 2px solid #C4A8E8;
    cursor: pointer !important;
    transition: border-color 0.2s;
    background: linear-gradient(160deg, rgba(232,218,255,0.5) 0%, rgba(175,130,238,0.6) 100%);
}
.example-img:hover { border-color: #9B6CD8; }
.example-badge {
    position: absolute; top: -8px; right: -8px;
    font-size: 8px; font-weight: bold; letter-spacing: 1px; text-transform: uppercase;
    background: linear-gradient(180deg, #e8d4ff 0%, #d8bef8 100%);
    border: 1px solid #9B6CD8; color: #322036; padding: 3px 8px;
}

/* ── LOTS GRID ────────────────────────────────────────────────── */
.lots-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.lot-img-wrap {
    position: relative; margin-bottom: 12px;
    border: 2px solid #C4A8E8; overflow: hidden;
    background: linear-gradient(160deg, rgba(232,218,255,0.5) 0%, rgba(175,130,238,0.6) 100%);
}
.lot-image {
    width: 100%; display: block;
    cursor: pointer !important;
    transition: transform 0.3s;
    aspect-ratio: 1; object-fit: cover;
}
.lot-img-wrap:hover .lot-image { transform: scale(1.03); }
.lot-badge {
    position: absolute; top: 8px; left: 8px;
    background: linear-gradient(180deg, #e8d4ff 0%, #d8bef8 100%);
    border: 1px solid #9B6CD8;
    font-size: 8px; font-weight: bold; letter-spacing: 1px; text-transform: uppercase;
    color: #322036; padding: 3px 8px;
}
.lot-example-tag {
    position: absolute; bottom: 6px; right: 6px;
    background: rgba(26,10,46,0.78);
    font-size: 7px; letter-spacing: 1px; text-transform: uppercase;
    color: #C4A8E8; padding: 3px 7px;
    border: 1px solid rgba(196,168,232,0.4);
}

.lot-title {
    font-size: 11px; font-weight: bold; color: #322036;
    text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 6px;
}
.lot-desc { font-size: 11px; line-height: 1.6; color: #5a4070; margin-bottom: 12px; }
.lot-desc strong { color: var(--accent-purple); }

/* ── BID STATUS BOX ───────────────────────────────────────────── */
.bid-status-box {
    background: #1a0a2e;
    border: 1px solid #9B6CD8;
    padding: 12px; margin-bottom: 12px; text-align: center;
}
.bid-status-label {
    font-size: 8px; font-weight: bold; color: #C4A8E8;
    text-transform: uppercase; letter-spacing: 2px; margin-bottom: 4px;
}
.bid-amount {
    font-family: 'VT323', monospace;
    font-size: 3rem; color: var(--teal);
    text-shadow: 0 0 10px rgba(132,196,196,0.4); line-height: 1;
}
.bid-amount.bid-flash { animation: bidFlash 0.65s ease-out; }
@keyframes bidFlash {
    0%   { color: var(--teal); text-shadow: 0 0 10px rgba(132,196,196,0.4); }
    40%  { color: #fff; text-shadow: 0 0 20px #fff, 0 0 35px var(--teal); transform: scale(1.1); }
    100% { color: var(--teal); text-shadow: 0 0 10px rgba(132,196,196,0.4); }
}
.bid-count-text { font-size: 10px; color: #C4A8E8; margin-top: 4px; }

/* ── BID FORM ─────────────────────────────────────────────────── */
.bid-form { display: flex; flex-direction: column; gap: 6px; }
.bid-input {
    width: 100%; background: #f5f0ff; color: #322036;
    border: 1px solid #9B6CD8; padding: 7px 10px;
    font-family: 'MS UI Gothic', Arial, sans-serif; font-size: 11px;
    outline: none; transition: border-color 0.15s;
}
.bid-input:focus { border-color: var(--accent-purple); }
.bid-amount-row {
    display: flex; border: 1px solid #9B6CD8; background: #f5f0ff;
    transition: border-color 0.15s;
}
.bid-amount-row:focus-within { border-color: var(--accent-purple); }
.dollar-prefix {
    padding: 7px 10px;
    background: rgba(196,168,232,0.25); border-right: 1px solid #9B6CD8;
    font-size: 11px; font-weight: bold; color: var(--accent-purple);
    display: flex; align-items: center; flex-shrink: 0;
}
.amount-field {
    flex: 1; border: none !important; background: transparent;
    padding: 7px 10px;
    font-family: 'MS UI Gothic', Arial, sans-serif; font-size: 11px;
    color: #322036; outline: none; min-width: 0;
    box-shadow: none !important;
}
.bid-submit-btn {
    display: block; width: 100%;
    padding: 9px 18px; margin-top: 2px;
    background: #96799c; border: 1px solid #7a5f80;
    color: #fff; font-family: 'MS UI Gothic', Arial, sans-serif;
    font-size: 10px; font-weight: bold;
    text-transform: uppercase; letter-spacing: 1.5px;
    box-shadow: 0 2px 6px rgba(150,121,156,0.35), inset 0 1px 0 rgba(255,255,255,0.2);
    cursor: pointer !important; transition: all 0.2s;
}
.bid-submit-btn:hover   { background: #7a5f80; box-shadow: 0 4px 14px rgba(150,121,156,0.5); transform: translateY(-2px); }
.bid-submit-btn:active  { transform: translateY(0); }
.bid-submit-btn:disabled{ opacity: 0.55; cursor: not-allowed !important; transform: none; }
.bid-feedback { font-size: 11px; min-height: 1.4em; margin-top: 2px; }
.bid-feedback.success { color: #357a45; }
.bid-feedback.error   { color: #b33030; }

/* ── LEADERBOARD ──────────────────────────────────────────────── */
.leaderboard { border: 1px solid #C4A8E8; margin-top: 10px; }
.lb-header {
    background: linear-gradient(180deg, #e8d4ff 0%, #d8bef8 100%);
    padding: 5px 10px; font-size: 9px; font-weight: bold; color: #322036;
    text-transform: uppercase; letter-spacing: 1px;
    border-bottom: 1px solid #C4A8E8;
}
.lb-body { max-height: 155px; overflow-y: auto; background: rgba(255,255,255,0.9); }
.lb-body::-webkit-scrollbar { width: 6px; }
.lb-body::-webkit-scrollbar-thumb { background: #C4A8E8; }
.lb-body::-webkit-scrollbar-track { background: #f0e8ff; }
.lb-empty { font-size: 11px; color: #96799c; padding: 12px; text-align: center; }
.lb-row {
    display: flex; align-items: center; gap: 8px;
    padding: 6px 10px; border-bottom: 1px solid rgba(196,168,232,0.2);
    font-size: 11px;
}
.lb-row:last-child { border-bottom: none; }
.lb-row.lb-top { background: rgba(196,168,232,0.1); }
.lb-rank { min-width: 24px; font-size: 11px; }
.lb-name { flex: 1; color: #322036; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.lb-amt  { font-family: 'VT323', monospace; font-size: 18px; color: var(--teal); }
.lb-row.lb-top .lb-amt { color: #96799c; }

/* ── HOW IT WORKS ─────────────────────────────────────────────── */
.how-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 12px; margin-bottom: 15px;
}
.how-step {
    background: rgba(196,168,232,0.08);
    border: 1px solid #C4A8E8; padding: 14px;
    transition: background 0.2s;
}
.how-step:hover { background: rgba(196,168,232,0.18); }
.step-num {
    font-family: 'VT323', monospace;
    font-size: 2.2rem; color: #C4A8E8;
    margin-bottom: 6px; line-height: 1; display: block;
}
.how-step p  { font-size: 11px; line-height: 1.6; color: #322036; }
.how-step strong { color: var(--accent-purple); }
.how-link { color: var(--accent-purple); border-bottom: 1px solid #C4A8E8; }
.how-link:hover { color: var(--accent-hover); }

.payment-info {
    background: #1a0a2e; border: 1px solid #9B6CD8;
    padding: 15px; text-align: center;
}
.pm-title {
    font-size: 9px; font-weight: bold; color: #C4A8E8;
    text-transform: uppercase; letter-spacing: 2px; margin-bottom: 12px;
}
.pm-methods { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 8px; }
.pm-item {
    font-size: 12px; color: #fff;
    background: rgba(196,168,232,0.12); border: 1px solid #9B6CD8;
    padding: 6px 18px;
}
.pm-note { font-size: 10px; color: #C4A8E8; }

/* ── LIGHTBOX ─────────────────────────────────────────────────── */
.lightbox-overlay {
    display: none; position: fixed; inset: 0;
    background: rgba(8,2,28,0.95);
    z-index: 8000; align-items: center; justify-content: center;
    padding: 20px; cursor: pointer !important;
}
.lightbox-overlay.open { display: flex; }
.lightbox-img {
    max-width: 90vw; max-height: 88vh; object-fit: contain;
    border: 2px solid #9B6CD8;
    cursor: default !important;
}
.lightbox-close {
    position: fixed; top: 16px; right: 20px;
    font-family: 'MS UI Gothic', Arial, sans-serif;
    font-size: 11px; font-weight: bold; color: #322036;
    background: linear-gradient(180deg, #e8d4ff 0%, #d8bef8 100%);
    border: 1px solid #9B6CD8; padding: 6px 12px;
    cursor: pointer !important; z-index: 8001;
    text-transform: uppercase; letter-spacing: 1px;
    box-shadow: 2px 2px 0 rgba(58,15,114,0.2);
}
.lightbox-close:hover { background: linear-gradient(180deg, #d8bef8 0%, #c4a8e8 100%); }

/* ── TOAST ────────────────────────────────────────────────────── */
.bid-toast {
    position: fixed; bottom: 20px; right: 20px;
    background: linear-gradient(180deg, #e8d4ff 0%, #d8bef8 100%);
    border: 2px solid #9B6CD8; color: #322036;
    font-family: 'MS UI Gothic', Arial, sans-serif;
    font-size: 11px; font-weight: bold;
    padding: 12px 18px; max-width: 260px;
    box-shadow: 3px 3px 0 rgba(58,15,114,0.2);
    text-transform: uppercase; letter-spacing: 0.5px;
    transform: translateY(120px); opacity: 0;
    transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), opacity 0.25s;
    z-index: 7000; pointer-events: none;
}
.bid-toast.show { transform: translateY(0); opacity: 1; }

/* ── FLOATING DECORATIVES ─────────────────────────────────────── */
.deco-float {
    position: fixed; pointer-events: none; z-index: 0;
    opacity: 0.75;
    filter: drop-shadow(0 0 8px rgba(196,168,232,0.4));
    animation: floatImg 9s ease-in-out infinite;
}
.deco-float.top-left  { top: 120px; left: 10px;  max-width: 120px; animation-delay: 0s; }
.deco-float.top-right { top: 120px; right: 10px; max-width: 100px; animation-delay: -4s; animation-direction: reverse; }
.deco-float.bot-left  { bottom: 100px; left: 15px;  max-width: 110px; animation-delay: -2s; }
.deco-float.bot-right { bottom: 80px;  right: 15px; max-width: 130px; animation-delay: -6s; animation-direction: reverse; }
@keyframes floatImg {
    0%,100% { transform: translateY(0) rotate(-2deg); }
    50%     { transform: translateY(-18px) rotate(2deg); }
}
@media (max-width: 1100px) { .deco-float { display: none; } }

/* ── FOOTER ───────────────────────────────────────────────────── */
.auction-footer {
    text-align: center; padding: 20px;
    font-size: 11px; color: rgba(196,168,232,0.6);
    border-top: 1px solid rgba(155,108,216,0.3);
    position: relative; z-index: 2;
}
.auction-footer a { color: #C4A8E8; }
.auction-footer a:hover { color: #fff; }

/* ── RESPONSIVE ───────────────────────────────────────────────── */
@media (max-width: 900px) {
    .lots-grid { grid-template-columns: 1fr; }
    .how-grid  { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
    .ralph-inner          { flex-direction: column; }
    .ralph-photos         { flex: none; max-width: 100%; }
    .custom-print-body    { flex-direction: column; }
    .custom-print-examples{ flex: none; width: 100%; }
    .how-grid             { grid-template-columns: 1fr; }
    .main-container       { padding: 0 12px 30px; }
    .topnav               { margin: 0 8px 10px; }
    .size-options         { flex-direction: column; }
}
