.ebay-product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 16px;

    .ebay-product-item {
            border: 1px solid #ccc;
            padding: 15px;
            display: flex;
            flex-direction: column;
            gap: 10px;
            align-items: baseline;
	        margin-top: auto;
        }

        .ebay-product-title {
            font-size: 18px;
            font-weight: bold;
        }

        .ebay-product-image img {
            width: 320px;
            height: 300px;

        .ebay-product-details {
            flex-grow: 1; /* Make this section grow to fill available space */
        }

        .ebay-product-button a {
            display: inline-block;
            width: 100%;
            padding: 12px 0;
            text-align: center;
            background-color: #e53238;  /* eBay Red */
            color: black;
            text-decoration: none;
            font-weight: bold;
            font-size: 16px;
            border-radius: 5px;
            border: 2px solid transparent;
            transition: background-color 0.3s, color 0.3s;
            box-sizing: border-box;
        }

        .ebay-product-button a:hover {
            background-color: #f5af02; /* eBay Yellow */
            color: black;
        }

        .ebay-product-button {
            margin-top: 10px;
        }
