/* eBay Smart Deck Grid */
.ebay-smart-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Desktop: 3 Items */
    gap: 20px;
    margin: 30px 0;
    font-family: inherit;
}

@media (max-width: 768px) {
    .ebay-smart-grid {
        grid-template-columns: repeat(2, 1fr); /* Mobile: 2 Columns */
    }
    
    /* HIDE the 3rd item on mobile to keep the grid perfect (2 items) */
    .ebay-product-card:nth-child(3) {
        display: none;
    }
}

/* Individual Card */
.ebay-product-card {
    border: 1px solid #e1e1e1;
    border-radius: 8px;
    background: #fff;
    padding: 15px;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.ebay-product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

/* Card Elements */
.ebay-card-image {
    width: 100%;
    height: 180px;
    object-fit: contain;
    background: #f9f9f9;
    border-radius: 4px;
    margin-bottom: 12px;
}

.ebay-card-title {
    font-size: 15px;
    font-weight: 600;
    margin: 0 0 8px 0;
    line-height: 1.4;
    color: #333;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ebay-card-price {
    font-size: 18px;
    font-weight: 700;
    color: #2c7a3f; /* Money Green */
    margin-bottom: 12px;
}

.ebay-card-btn {
    display: block;
    text-align: center;
    background: #0053a0; /* eBay Blue */
    color: #fff !important;
    text-decoration: none;
    padding: 10px;
    border-radius: 4px;
    font-weight: 500;
    transition: background 0.2s;
}

.ebay-card-btn:hover {
    background: #003f7a;
}

/* Deal Card Variant */
.ebay-product-card.ebay-deal-card {
    border: 2px solid #ff4757; /* Red Border */
    position: relative;
}

.ebay-deal-badge {
    position: absolute;
    top: -12px;
    right: 10px;
    background: #ff4757;
    color: white;
    font-size: 12px;
    font-weight: bold;
    padding: 4px 10px;
    border-radius: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    z-index: 2;
}

/* Disclaimer Fine Print */
.ebay-card-disclaimer {
    font-size: 10px !important;
    color: #999 !important;
    margin-top: 8px !important;
    line-height: 1.3 !important;
    text-align: center !important;
    border-top: 1px solid #eee;
    padding-top: 6px;
}
