

.shop-section {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-gap: 10px;
}

@media only screen and (max-width: 1000px) {
  .shop-section {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media only screen and (max-width: 800px) {
  .shop-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

@media only screen and (max-width: 400px) {
  .shop-section {
    display: grid;
    grid-template-columns: 1fr;
  }
}


.shop-section-item {
  padding: 10px;
  border: 1px solid rgb(220,220,220);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.shop-section-item-name {
  padding-top: 10px;
  font-size: 13px;
  text-align: center;
}

.shop-section-item-image {
  height: 150px; 
  text-align:center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}



.mr-2 {
  margin-right: 10px;
}

.mb-2 {
  margin-right: 10px;
}

.upl_pm {
  font-weight: 200;
  color: rgb(100, 100, 100);
}

.shop-section-button {
  padding: 6px 3px;
  text-align: center;
  color: white;
  font-size: 14px;
  background-color: rgb(0, 156, 219);
  border-radius: 3px;
  border: 1px solid rgb(0, 120, 185);
  margin-top: 10px;
  cursor: pointer;
}

.btn_to_cart_upl_input_text {
  padding: 6px 3px;
  text-align: center;
  font-size: 14px;
  border-radius: 3px;
  border: 1px solid rgb(0, 120, 185);
  width: 100%;
  display: block;
}

.shop-section-item-price-data {
  font-weight: 600;
  text-align: center;
}

.shop-section-button-not-active {
  padding: 6px 3px;
  text-align: center;
  color: black;
  font-size: 14px;
  background-color: rgb(220, 220, 220);
  border-radius: 3px;
  border: 1px solid rgb(180, 180, 180);
  margin-top: 10px;
}
