/* ======================================================
   GOLF SYSTEM — EBAY LISTINGS
   ====================================================== */

.ebay-listings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 16px;
    margin: 20px 0;
}

.ebay-listing-card {
    border: 1px solid #ddd;
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
    transition: box-shadow 0.2s ease;
}

.ebay-listing-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.1); }

.ebay-listing-card img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: contain;
    background: #f7f7f7;
}

.ebay-listing-info { padding: 10px; }

.ebay-listing-title a {
    font-size: 12px;
    font-weight: 600;
    color: #111;
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ebay-listing-condition {
    font-size: 11px;
    color: #666;
    display: block;
    margin: 4px 0;
}

.ebay-listing-price {
    font-size: 14px;
    font-weight: 700;
    color: #e53935;
    margin: 6px 0;
}

.ebay-listing-btn {
    display: block;
    text-align: center;
    background: #0064d2;
    color: #fff;
    padding: 6px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 12px;
    margin-top: 6px;
}

.ebay-listing-btn:hover { background: #004a9f; }

.ebay-error { color: #d9534f; font-style: italic; }