        .product-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
        }

        .product-item {
            border: 1px solid #ddd;
            padding: 15px;
            width: calc(33.33% - 40px);
            box-sizing: border-box;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .product-item img {
            max-width: 150px;
            max-height: 150px;
            margin-bottom: 10px;
             object-fit: contain;
        }

        .product-item h3 {
            margin: 10px 0;
            text-align: center;
        }
         .product-item p {
            text-align: center;
         }
        .button-container {
            display: flex;
            justify-content: space-around;
            width: 100%;
            margin-top: auto;
        }

        .button-container a {
            display: inline-block;
            padding: 10px 20px;
            text-decoration: none;
             color: white;  /* added to this, so that it will be inherited */
            border-radius: 5px;
            text-align: center;
        }

        .royalmint-button {
             background-color: #002e6d;
             color: white; /* added this line so that the text will be white */
        }

         .ebay-button {
             background-color: #E53238;
             color: white; /* added this line so that the text will be white */
         }

         .ebay-button:hover {
             background-color: #FF5B5B;
         }

        .royalmint-button:hover {
             background-color: #2a5595;
         }

        @media (max-width: 768px) {
           .product-item {
              width: calc(50% - 40px);
            }
           .product-item img {
             max-width: 100px;
             max-height: 100px;
           }
        }

        @media (max-width: 480px) {
           .product-item {
              width: calc(100% - 40px);
           }
        }
