.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Create 4 equal columns */
    gap: 30px;
}

.product-item img {
    min-width: 135%;
  }

.product-label {
  background: #000;
  font-size: 16px;
  color: #fff;
  width: 90%;
  text-align: center;
  font-weight: 600;
  padding: 10px 0;
  margin-top: -45px;
  z-index: 9;
  position: absolute;
  margin-left: 5%;
}

.product-display {
    display: flex; 
    flex-direction: column; 
    border-bottom: 1px solid#D0D0D0;
    position: relative;
}

.product-item {
    grid-column: span 1; /* Default to 1 column for products */
}

.product-item.large-item {
    grid-column: span 2; /* Make the image span 2 columns */
    text-align: center;
}

.swatch.large-item img {
    width: 100%;
    height: auto;
    border-bottom-right-radius: 280px;
}



.swatch.large-item {position: relative;}

.tell-more {
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    position: absolute;
    bottom: 35px;
    left: 35px;
  }

  .tell-more:before {
content: '>';
background: #000;
margin-right: 5px;
border-radius: 50%;
padding: 3px 6px;
  }

.product-item1 {
    flex: 1 1 21%; /* You can adjust this percentage to change the width */
    text-align: center;
    padding: 10px;
	border-bottom: 1px solid #D0D0D0;
}

.product-desc h4 {
    margin-top: 10px;
    font-size: 16px;
    color: #333;
	text-align: left;
	text-decoration: none;
}

.product-desc a {
	text-decoration: none;
}

.product-desc .price {
    margin-top: 5px;
    font-size: 20px;
    color: #000;
	text-align: left;
	text-decoration: none;
}

.product-item a {
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #D0D0D0;
    overflow: hidden;
    width: 100%;
}

.product-item img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

