/* Shop page specific product grid */
    .shop-product-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
      padding: 0 20px;
    }

    .shop-product-card {
      background-color: #fff;
      border: 1px solid #ddd;
      border-radius: 8px;
      padding: 16px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.05);
      text-align: center;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    .shop-product-card img {
      width: 100%;
      height: 250px;
      object-fit: cover;
      border-radius: 6px;
    }


    .shop-product-card h3 {
      font-size: 16px;
      font-weight: 600;
      margin: 10px 0;
    }

    .shop-product-card p {
      font-size: 14px;
      color: #555;
    }

    .btn {
      font-size: 14px;
      padding: 8px 12px;
      border-radius: 4px;
    }
    .shop-product-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      padding: 0 20px;
    }

  /* #for centering the content and adding horizontal padding */
  .content-wrapper {
      margin: 0 auto;
      padding: 0 40px; /* horizontal padding */
      max-width: 1200px; /* optional: keeps content centered and readable */
    }
 



    @media (max-width: 1024px) {
      .shop-product-card {
        flex: 1 1 45%; /* 2 per row on tablets */
      }
    }

    @media (max-width: 639px) {
      .shop-product-card {
        flex: 1 1 90%; /* 1 per row on mobile */
        max-width: 305px!important;
      }
    }