/* ==========================================================================
   Auction View Page Styles
   Used by: viewAuction.blade.php
   ========================================================================== */

.cookie-banner {
    display: none !important;
}
.auction-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 1px solid #f0f0f0 !important;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}
.auction-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px color-mix(in srgb, var(--brand-color) 12.5%, transparent);
    border-color: var(--brand-color) !important;
}

/* --------------------------------------------------------------------------
   Auction Hero
   -------------------------------------------------------------------------- */
.auction-hero {
    background: linear-gradient(135deg, var(--brand-color) 0%, color-mix(in srgb, var(--brand-color) 87%, transparent) 100%);
    border-radius: 12px;
    padding: 0;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.auction-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 80%;
    height: 150%;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 50%);
    pointer-events: none;
}
.auction-hero-header {
    position: relative;
    z-index: 1;
}
.auction-hero-image {
    border-radius: 0;
    overflow: hidden;
    transition: opacity 0.2s ease;
    position: relative;
    height: 300px;
}
.auction-hero-image > img,
.auction-hero-image > a[data-fancybox] > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.auction-hero-image > a[data-fancybox] {
    display: block;
    width: 100%;
    height: 100%;
}
.auction-hero-seller-mobile {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    gap: 0.5rem;
    align-items: center;
    background: rgba(0, 0, 0, 0.6);
    padding: 0.35rem 0.75rem 0.35rem 0.35rem;
    border-radius: 50px;
}
.auction-hero-seller-mobile img:not(.country-flag) {
    width: 32px;
    height: 32px;
    object-fit: cover;
    border: 2px solid #fff;
}
.auction-hero-seller-mobile span {
    font-size: 0.85rem;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}
.auction-card-padding {
    padding: 1rem 1.5rem 1.5rem;
}
.auction-hero-row {
    display: block;
}
.auction-hero-seller {
    display: none;
}
@media (min-width: 768px) {
    .auction-hero-row {
        display: flex;
    }
    .auction-hero-image {
        flex: 0 0 50%;
        max-width: 50%;
        max-height: none;
        padding-bottom: 0 !important;
        height: 300px;
        border-radius: 12px 0 0 0;
    }
    .auction-hero-seller {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        flex: 0 0 50%;
        max-width: 50%;
        height: 300px;
        position: relative;
        overflow: hidden;
        border-radius: 0 12px 0 0;
        background-size: cover;
        background-position: center;
    }
    .auction-hero-seller::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0,0,0,0.8);
    }
    .auction-hero-seller img:not(.country-flag) {
        width: 240px;
        height: 240px;
        object-fit: cover;
        border-radius: 50%;
        border: 5px solid #fff;
        box-shadow: 0 8px 30px rgba(0,0,0,0.4);
        position: relative;
        z-index: 1;
    }
    .auction-hero-seller-overlay {
        position: relative;
        z-index: 1;
        background: none;
        margin-top: 0.25rem;
    }
    .auction-hero-seller-overlay a {
        padding: 0.5rem !important;
    }
}
.auction-hero-image:hover {
    cursor: pointer;
}
.auction-hero-image .expand-icon {
    opacity: 0;
    transition: opacity 0.2s ease;
}
.auction-hero-image:hover .expand-icon {
    opacity: 1;
}

/* --------------------------------------------------------------------------
   Mobile Responsive - Hero
   -------------------------------------------------------------------------- */
@media (max-width: 576px) {
    .auction-hero {
        padding: 0;
        border-radius: 8px;
    }
    .auction-card-padding {
        padding: 0.75rem 1rem 1rem;
    }
    .auction-hero h5 {
        text-align: left;
    }
    .auction-hero .d-flex.align-items-start {
        text-align: left;
    }
    .auction-hero-thumb {
        width: 140px;
        height: 140px;
        min-width: 140px;
        margin-right: 0 !important;
        margin-bottom: 1rem;
    }
    .auction-hero .flex-grow-1 {
        width: 100%;
    }
    .bid-display {
        text-align: left !important;
    }
    .auction-hero-seller {
        padding: 0.4rem 0.6rem;
    }
    .auction-hero-seller img {
        width: 28px;
        height: 28px;
    }
    .bg-light > .container {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
    .auction-stat-card {
        padding: 0.75rem 0.5rem;
    }
    .stat-value {
        font-size: 0.95rem;
    }
    .stat-label {
        font-size: 0.6rem;
    }
}

/* --------------------------------------------------------------------------
   Status Badges
   -------------------------------------------------------------------------- */
.auction-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #fff;
    color: var(--brand-color);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.auction-bid-count {
    display: inline-flex;
    align-items: center;
    background: rgba(255,255,255,0.2);
    color: #fff;
    padding: 0.4rem 0.875rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.75rem;
    text-decoration: none;
    transition: all 0.2s ease;
}
.auction-bid-count:hover {
    background: rgba(255,255,255,0.3);
    color: #fff;
    text-decoration: none;
}
.auction-status-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 0.875rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.auction-status-success { background: #28a745; color: #fff; }
.auction-status-danger { background: #dc3545; color: #fff; }
.auction-status-warning { background: #ffc107; color: #212529; }
.auction-status-info { background: #17a2b8; color: #fff; }
.auction-status-secondary { background: rgba(255,255,255,0.2); color: #fff; }
.auction-live-badge .pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--brand-color);
    border-radius: 50%;
    animation: pulse-animation 1.5s infinite;
}
@keyframes pulse-animation {
    0% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(1.3); }
    100% { opacity: 1; transform: scale(1); }
}

/* --------------------------------------------------------------------------
   Bid Display
   -------------------------------------------------------------------------- */
.bid-display {
    text-align: left;
}
.bid-dollar {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #212529;
    display: block;
    line-height: 1.1;
}
.bid-dollar-lg {
    font-size: 3.5rem;
}
.bid-dollar-sm {
    font-size: 1.75rem;
}
.bid-dollar-white {
    color: #fff;
}
.bid-coins {
    font-size: 0.875rem;
    font-weight: 500;
    color: #6c757d;
    display: block;
    margin-top: 0.25rem;
}
.bid-coins .fa-coins {
    color: var(--brand-color);
    margin-right: 0.25rem;
}
.bid-coins-lg {
    font-size: 1rem;
}
.bid-coins-sm {
    font-size: 0.75rem;
}
.bid-coins-white {
    color: rgba(255, 255, 255, 0.85);
}

/* --------------------------------------------------------------------------
   Countdown
   -------------------------------------------------------------------------- */
.countdown-display {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 0.75rem 1.25rem;
    display: inline-block;
    backdrop-filter: blur(4px);
}
.countdown-display .countdown-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    font-variant-numeric: tabular-nums;
}
.countdown-display .countdown-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.snipe-info-icon {
    cursor: help;
    opacity: 0.8;
    font-size: 0.65rem;
}
.snipe-info-icon:hover {
    opacity: 1;
}

/* --------------------------------------------------------------------------
   Stat Cards
   -------------------------------------------------------------------------- */
.auction-stat-card {
    background: #fff;
    border-radius: 10px;
    padding: 1rem;
    text-align: center;
    border: 1px solid #f0f0f0;
    transition: all 0.2s ease;
    position: relative;
    z-index: 1;
}
.auction-stat-card:hover {
    border-color: var(--brand-color);
    box-shadow: 0 4px 15px rgba(237, 62, 106, 0.08);
}
.auction-stat-card .stat-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    background: rgba(237, 62, 106, 0.08);
    color: var(--brand-color);
}
.auction-stat-card .stat-icon.green { background: rgba(40, 167, 69, 0.08); color: #28a745; }
.auction-stat-card .stat-icon.blue { background: rgba(237, 62, 106, 0.08); color: var(--brand-color); }
.auction-stat-card .stat-icon.orange { background: rgba(253, 126, 20, 0.08); color: #fd7e14; }
.auction-stat-card .stat-icon.purple { background: rgba(237, 62, 106, 0.08); color: var(--brand-color); }
.auction-stat-card .stat-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: #212529;
}
.auction-stat-card .stat-label {
    font-size: 0.7rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* --------------------------------------------------------------------------
   Stats Inline
   -------------------------------------------------------------------------- */
.auction-stats-inline {
    display: flex;
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    overflow: hidden;
}
.auction-stats-item {
    flex: 1;
    padding: 0.6rem 0.75rem;
    text-align: center;
    border-right: 1px solid #e9ecef;
}
.auction-stats-item:last-child {
    border-right: none;
}
.auction-stats-label {
    display: block;
    font-size: 0.65rem;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 2px;
}
.auction-stats-value {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #212529;
}

/* --------------------------------------------------------------------------
   Bid Form
   -------------------------------------------------------------------------- */
.bid-form-card {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    padding: 1.5rem;
}
.bid-quick-buttons {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}
.bid-quick-btn {
    flex: 1;
    min-width: 70px;
    padding: 0.5rem 0.75rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    background: #fff;
    font-weight: 600;
    font-size: 0.875rem;
    color: #495057;
    cursor: pointer;
    transition: all 0.15s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.1;
}
.bid-quick-dollars {
    display: block;
}
.bid-quick-coins {
    display: block;
    font-size: 0.7rem;
    font-weight: 500;
    color: #6c757d;
    margin-top: 2px;
}
.bid-quick-btn.active .bid-quick-coins {
    color: var(--brand-color);
}
.bid-quick-btn:hover {
    border-color: var(--brand-color);
    color: var(--brand-color);
}
.bid-quick-btn.active {
    border-color: var(--brand-color);
    background: color-mix(in srgb, var(--brand-color) 6%, transparent);
    color: var(--brand-color);
}
.bid-input-group {
    position: relative;
}
.bid-input-group .form-control {
    font-size: 1.5rem;
    font-weight: 700;
    padding: 1rem 6rem 1rem 2.5rem;
    border-radius: 10px;
    border: 2px solid #e9ecef;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.bid-input-group .form-control:focus {
    border-color: var(--brand-color);
    box-shadow: 0 0 0 3px rgba(237, 62, 106, 0.1);
}
.bid-input-group .input-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.25rem;
    color: #999;
    font-weight: 700;
}
.bid-input-coins {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.875rem;
    color: #6c757d;
    font-weight: 600;
    pointer-events: none;
}

/* --------------------------------------------------------------------------
   Place Bid Button
   -------------------------------------------------------------------------- */
.btn-place-bid {
    background: linear-gradient(135deg, var(--brand-color) 0%, color-mix(in srgb, var(--brand-color) 87%, transparent) 100%);
    border: none;
    color: #fff;
    font-size: 1.15rem;
    font-weight: 700;
    padding: 1.1rem 2rem;
    border-radius: 12px;
    transition: all 0.2s ease;
    letter-spacing: 0.02em;
    box-shadow: 0 4px 15px color-mix(in srgb, var(--brand-color) 25%, transparent);
    position: relative;
    overflow: hidden;
}
.btn-place-bid::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
    pointer-events: none;
}
.btn-place-bid:hover::before {
    left: 100%;
}
.btn-place-bid:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px color-mix(in srgb, var(--brand-color) 31%, transparent);
    color: #fff;
}
.btn-place-bid:active {
    transform: translateY(0);
}
@keyframes gavel-bounce {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-10deg); }
    75% { transform: rotate(10deg); }
}
@keyframes bounceIn {
    0% { opacity: 0; transform: scale(0.9); }
    50% { transform: scale(1.02); }
    100% { opacity: 1; transform: scale(1); }
}

/* --------------------------------------------------------------------------
   Bid Slideup Modal
   -------------------------------------------------------------------------- */
.tooltip {
    z-index: 10000;
}
.bid-slideup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.bid-slideup-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.bid-slideup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-radius: 20px 20px 0 0;
    padding: 1.5rem;
    padding-bottom: 2rem;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.3s ease, opacity 0.3s ease;
    max-height: 90vh;
    overflow-y: auto;
    pointer-events: none;
}
.bid-slideup.active {
    transform: translateY(0);
    pointer-events: auto;
}
@media (min-width: 768px) {
    .bid-slideup {
        top: 50%;
        left: 50%;
        bottom: auto;
        right: auto;
        width: 100%;
        max-width: 500px;
        border-radius: 12px;
        transform: translate(-50%, -50%) scale(0.95);
        opacity: 0;
        box-shadow: 0 10px 40px rgba(0,0,0,0.15);
        padding: 1.5rem;
        pointer-events: none;
    }
    .bid-slideup.active {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
        pointer-events: auto;
    }
    .bid-slideup-handle {
        display: none;
    }
}
.bid-slideup-handle {
    width: 40px;
    height: 4px;
    background: #dee2e6;
    border-radius: 2px;
    margin: 0 auto 1rem;
}
.bid-slideup-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}
.bid-slideup-close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f8f9fa;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease;
}
.bid-slideup-close:hover {
    background: #e9ecef;
}
.bid-slideup-item {
    display: flex;
    align-items: center;
    padding: 0.75rem;
    background: #f8f9fa;
    border-radius: 10px;
    margin-bottom: 1rem;
}
.bid-slideup-item img {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    object-fit: cover;
    margin-right: 0.75rem;
}
.bid-slideup-item-info h6 {
    margin: 0 0 0.25rem;
    font-size: 0.9rem;
}
.bid-slideup-item-info span {
    font-size: 0.8rem;
    color: #6c757d;
}
.bid-slideup-current {
    background: linear-gradient(135deg, color-mix(in srgb, var(--brand-color) 8%, transparent) 0%, color-mix(in srgb, var(--brand-color) 3%, transparent) 100%);
    border-radius: 10px;
    padding: 1rem;
    border: 1px solid color-mix(in srgb, var(--brand-color) 12.5%, transparent);
}
.bid-slideup-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand-color);
    display: block;
}
.bid-slideup-coins {
    font-size: 0.875rem;
    font-weight: 600;
    color: #6c757d;
    margin-left: 0.25rem;
}
.bid-slideup-time {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--brand-color);
}

/* --------------------------------------------------------------------------
   Sticky Bottom Bid Banner
   -------------------------------------------------------------------------- */
.bid-sticky-banner-wrapper {
    position: fixed;
    bottom: 1rem;
    left: 0;
    right: 0;
    z-index: 1000;
    pointer-events: none;
}
.bid-sticky-banner {
    max-width: calc(66.666% - 15px);
    background: #fff;
    box-shadow: 0 4px 30px rgba(0,0,0,0.2);
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    border-radius: 12px;
    pointer-events: auto;
}
@media (max-width: 991px) {
    .bid-sticky-banner {
        max-width: calc(100% - 30px);
    }
}
.bid-sticky-banner .bid-info {
    display: flex;
    flex-direction: column;
}
.bid-sticky-banner .bid-info-label {
    font-size: 0.7rem;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}
.bid-sticky-banner .bid-info-value {
    font-size: 1.4rem;
    font-weight: 700;
    color: #212529;
}
.bid-sticky-banner .bid-info-time {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--brand-color);
}
.bid-sticky-banner .btn-sticky-bid {
    background: var(--brand-color);
    color: #fff;
    font-weight: 700;
    padding: 1rem 2rem;
    border-radius: 10px;
    border: none;
    font-size: 1.1rem;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
    box-shadow: 0 4px 15px color-mix(in srgb, var(--brand-color) 25%, transparent);
}
.bid-sticky-banner .btn-sticky-bid:hover {
    background: color-mix(in srgb, var(--brand-color) 87%, transparent);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px color-mix(in srgb, var(--brand-color) 31%, transparent);
}
@media (max-width: 575px) {
    .bid-sticky-banner-wrapper {
        bottom: 0;
    }
    .bid-sticky-banner-wrapper .container {
        padding: 0;
        max-width: 100%;
    }
    .bid-sticky-banner {
        max-width: 100%;
        border-radius: 0;
        padding: 0.85rem 1rem;
        gap: 1rem;
    }
    .bid-sticky-banner .bid-info-value {
        font-size: 1.15rem;
    }
    .bid-sticky-banner .bid-info-time {
        font-size: 1rem;
    }
    .bid-sticky-banner .btn-sticky-bid {
        padding: 0.85rem 1.25rem;
        font-size: 0.95rem;
    }
}
/* Add padding to page when sticky banner is shown */
.has-sticky-banner {
    padding-bottom: 90px;
}

/* --------------------------------------------------------------------------
   Hero Bid Button
   -------------------------------------------------------------------------- */
.btn-hero-bid {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: var(--brand-color);
    font-size: 1.1rem;
    font-weight: 700;
    padding: 1rem 2rem;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}
.btn-hero-bid::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: hero-shine 2s ease-in-out infinite;
    pointer-events: none;
}
.btn-hero-bid i,
.btn-hero-bid span {
    pointer-events: none;
}
@keyframes hero-shine {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}
.btn-hero-bid:hover {
    background: #fff;
    color: color-mix(in srgb, var(--brand-color) 87%, transparent);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    text-decoration: none;
}
.btn-hero-bid:active {
    transform: translateY(0);
}

/* --------------------------------------------------------------------------
   Bid History Table
   -------------------------------------------------------------------------- */
.bid-history-table {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #f0f0f0;
}
.bid-history-table thead {
    background: #fafafa;
}
.bid-history-table thead th {
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.65rem;
    letter-spacing: 0.05em;
    padding: 0.5rem 0.75rem;
    border: none;
    border-bottom: 1px solid #f0f0f0;
}
.bid-history-table tbody tr {
    transition: background-color 0.15s ease;
}
.bid-history-table tbody tr:hover {
    background-color: #fafafa;
}
.bid-history-table tbody td {
    padding: 0.5rem 0.75rem;
    vertical-align: middle;
    border-bottom: 1px solid #f5f5f5;
    font-size: 0.85rem;
}
.winner-badge {
    background: var(--brand-color);
    color: #fff;
    padding: 0.2rem 0.6rem;
    border-radius: 50px;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}
.this-is-you-badge {
    background: #17a2b8;
    color: #fff;
    padding: 0.2rem 0.6rem;
    border-radius: 50px;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

/* --------------------------------------------------------------------------
   Misc
   -------------------------------------------------------------------------- */
.auction-faq-card {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #f0f0f0;
}
.snipe-protection-badge {
    background: #f8f9fa;
    color: #666;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid #e9ecef;
    font-size: 0.875rem;
}
.snipe-protection-badge i {
    color: var(--brand-color);
}
.bidder-avatar {
    width: 28px;
    height: 28px;
    min-width: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-color) 0%, color-mix(in srgb, var(--brand-color) 87%, transparent) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 600;
    font-size: 0.75rem;
}
.refresh-button {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: #fff;
    font-size: 0.85rem;
}
.refresh-button:hover {
    background: rgba(255,255,255,0.3);
    transform: rotate(90deg);
}

/* --------------------------------------------------------------------------
   Anonymous Tooltip
   -------------------------------------------------------------------------- */
.anon-tooltip-wrapper {
    position: relative;
    display: inline-block;
    cursor: pointer;
}
.anon-tooltip-text {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    background: #333;
    color: #fff;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: normal;
    width: 250px;
    text-align: center;
    z-index: 9999;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    line-height: 1.4;
}
.anon-tooltip-text::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: #333;
}
.anon-tooltip-wrapper:hover .anon-tooltip-text {
    visibility: visible;
    opacity: 1;
}

/* --------------------------------------------------------------------------
   Seller Can't Bid Overlay
   -------------------------------------------------------------------------- */
.bid-slideup-cant-bid {
    text-align: center;
    padding: 1.5rem 1rem;
}
.bid-slideup-cant-bid i {
    font-size: 2.5rem;
    color: #6c757d;
    margin-bottom: 1rem;
}
.bid-slideup-cant-bid p {
    color: #6c757d;
    margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   View Page Utilities (moved from style.css)
   -------------------------------------------------------------------------- */
.auction-image-count {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
}
.auction-refresh-btn {
    opacity: 0.6;
    position: absolute;
    top: 1rem;
    right: 1rem;
}
.auction-refresh-btn i {
    font-size: 0.85rem;
}
.auction-info-gap {
    gap: 0.5rem;
}
.bid-label {
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 0.05em;
}
.bid-username {
    color: rgba(255, 255, 255, 0.7);
}
.countdown-label {
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 0.05em;
}
.countdown-value {
    color: #fff;
}
.countdown-extension {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.7rem;
}
.auction-section {
    border-radius: 12px;
}
.auction-share-gap {
    gap: 1rem;
}
.auction-share-dropdown {
    position: relative;
}
.auction-share-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.2);
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.2s ease;
}
.auction-share-toggle:hover {
    background: rgba(255,255,255,0.3);
}
.auction-share-menu {
    display: none;
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    background: #fff;
    border-radius: 10px;
    padding: 0.5rem;
    gap: 0.4rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    z-index: 100;
    flex-direction: row;
}
.auction-share-dropdown.open .auction-share-menu {
    display: flex;
}
.auction-share-menu a,
.auction-share-menu button {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 0.8rem;
    transition: opacity 0.2s ease;
}
.auction-share-menu a:hover,
.auction-share-menu button:hover {
    opacity: 0.85;
}
.success-badge {
    background: #28a74515;
    border: 1px solid #28a74530;
    border-radius: 50px;
}
.bid-amount-small {
    font-size: 0.7rem;
}
.share-btn-x { background: #000; }
.share-btn-reddit { background: #FF4500; }
.share-btn-whatsapp { background: #25D366; }
.share-btn-facebook { background: #4267B2; }
.share-btn-copy { background: #6c757d; }
.seller-thumb-clickable {
    cursor: pointer;
}
