    /*----redbubble-----*/
    .container88 {
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px;
        margin-top: 10px;
      }
      
      .sort-controls {
        display: flex;
        justify-content: flex-end;
        margin-bottom: 20px;
      }
      .sort-controls select {
        padding: 5px;
        font-size: 14px;
      }
      .product-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
        margin-bottom: 30px;
      }
      .product-card {
        background: #fff;
        border-radius: 10px;
        box-shadow: 0 2px 19px rgba(0, 0, 0, 0.1);
        overflow: hidden;
      }
      .product-card img {
        width: 100%;
        height: auto;
        border-bottom: 1px solid #ddd;
      }
      .product-card .info {
        padding: 15px;
      }
      .product-card .info h3 {
        font-size: 18px;
        margin: 0 0 10px;
      }
      .product-card .info p {
        font-size: 14px;
        color: #777;
      }
      .pagination {
        display: flex;
        justify-content: center;
        margin-top: 20px;
      }
      .pagination button {
        padding: 10px;
        margin: 0 5px;
        background-color: #007bff;
        color: white;
        border: none;
        border-radius: 5px;
        cursor: pointer;
      }
      .pagination button.disabled {
        background-color: #ccc;
        cursor: not-allowed;
      }
      .product-card a {
      text-decoration: none;
      color: inherit;
      }

      .responsive-banner img {
      width: 100%;
      height: auto;
      max-width: 1200px;
      display: block;
      margin: 0 auto;
      }