/* [2026-05-14] START: Mobile Responsive Auction Directory Styles (Elegant Theme & Layout Fixes) */
.auction-dir-panel {
    border: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border-radius: 12px;
    overflow: hidden;
}

/* [2026-05-14] START: Redesigned Fancy Cyan Banner with Dynamic Single-Line Text */
.auction-dir-heading {
    /* Updated gradient to match the OpenCart Categories Menu theme (#229ac8) */
    background: linear-gradient(135deg, #229ac8 0%, #157396 100%);
    color: #fff;
    padding: 25px 20px;
    text-align: center;
    position: relative;
    border-bottom: 4px solid #105a77;
}

.auction-dir-heading h2 {
    margin: 0;
    color: #fff;
    font-weight: 700;
    /* Forces text to stay on a single line */
    white-space: nowrap;
    /* Dynamically scales between 15px and 32px based on screen size */
    font-size: clamp(15px, 4.5vw, 32px);
    text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
    letter-spacing: 0.5px;
}

.auction-dir-heading p {
    margin: 10px 0 0 0;
    font-size: clamp(12px, 2.5vw, 15px);
    color: #e6f2ff;
    font-weight: 300;
}
/* [2026-05-14] END: Redesigned Fancy Cyan Banner with Dynamic Single-Line Text */

.auction-dir-body {
    background: #f4f9f8;
    padding: 20px;
}

.auction-filters-wrap {
    margin-bottom: 20px;
    text-align: center;
}

/* Fixed the search bar width and display properties */
.auction-search-group {
    max-width: 330px;
    width: 100%;
    display: inline-table;
    margin-left: 10px;
}

.auction-card {
    background: #fff;
    border-radius: 10px;
    border: 1px solid #e1e1e1;
    padding: 15px;
    text-align: center;
    height: 100%;
    transition: 0.3s;
    position: relative;
    margin-bottom: 25px;
}

.auction-card:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}

.auction-card-img-wrap {
    margin-bottom: 15px;
    position: relative;
}

.auction-card-img-wrap img {
    border-radius: 6px;
    margin: 0 auto;
}

.auction-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    color: #fff;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: bold;
    z-index: 1;
}

.auction-badge.live { background: #27ae60; }
.auction-badge.scheduled { background: #f39c12; }
.auction-badge.ended { background: #e74c3c; }

.auction-card-title {
    font-weight: 700;
    min-height: 40px;
    margin-top: 0;
}

.auction-card-title a {
    color: #333;
    text-decoration: none;
}

.auction-card-bid-box {
    background: #f9f9f9;
    padding: 10px;
    border-radius: 6px;
    margin-bottom: 15px;
}

.auction-card-bid-box p {
    margin: 0;
    font-size: 12px;
    color: #777;
}

.auction-card-bid-box strong {
    font-size: 18px;
    color: #2096c9;
}

.auction-card-stats {
    font-size: 12px;
    color: #555;
    margin-bottom: 15px;
    min-height: 40px;
    text-align: left;
}

.auction-btn {
    border-radius: 30px;
    font-weight: bold;
}

.empty-state {
    padding: 40px;
    text-align: center;
}

.empty-state i {
    font-size: 48px;
    color: #ccc;
    margin-bottom: 15px;
}

.empty-state h3 {
    color: #777;
}

/* Mobile Responsiveness Improvements */
@media (max-width: 767px) {
    .auction-dir-heading {
        padding: 20px 10px;
    }
    
    .auction-filters-wrap {
        display: block; /* Removed flex to prevent width issues */
    }
    
    .auction-filters-wrap .btn-group {
        display: flex;
        width: 100%;
        margin-bottom: 10px;
    }
    
    .auction-filters-wrap .btn-group .btn {
        flex: 1;
        padding: 8px 4px;
        font-size: 12px;
    }
    
    /* Fixed right-side cutoff by keeping Bootstrap's table display */
    .auction-search-group {
        max-width: 100%;
        margin-left: 0;
        display: table;
        box-sizing: border-box;
    }
    
    .auction-card {
        margin-bottom: 15px;
    }
}
/* [2026-05-14] END: Mobile Responsive Auction Directory Styles (Elegant Theme & Layout Fixes) */