/** Shopify CDN: Minification failed

Line 31:2 "transtion" is not a known CSS property
Line 121:0 Unexpected "}"

**/
.title {
  color: rgba(var(--color-foreground), 0.75);
}

.placeholder-image-style{
    height:150px;
    width:100%;
  }

.tab-buttons {
  display: flex;
  margin: 10px;
  justify-content:center;
  /*   border-bottom: 4px solid #f7d9d7; */
}

.tab-button {
  border: none;
  color: rgb(var(--color-foreground));
  font-size: 16px;
  font-family: inherit;
  padding: 12px 10px;
  position: relative;
  cursor: pointer;
  transtion: 0.25s all linear;
  background-color: white;
}

.tab-button::after {
  content: "";
  width: 0%;
  height: 1px;
  position: absolute;
  bottom: -4px;
  left: 50%;
  /*   background-color:#f0b1ad; */
  cursor: pointer;
  transition: 0.25s all linear;
}

.tab-button:hover::after {
  left: 0;
  width: 100%;
}

.tab-content {
  display: none;
}
.active-tab {
  display: block;
}

.active-button::after {
  width: 100%;
  left: 0;
}
.grids_wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  padding-top: 10px;
}
.grid-item .image {
  width: 100%;
  object-fit: cover;
  height: 100%;
  cursor: pointer;
  transition: 0.1s all linear;
}
.grid-item .image:hover {
  transform: scale(1.1);
}

.grid-item {
  background-color: #fafafa;
/*   display: flex; */
  display:grid;
  
  overflow: hidden;
  /*   border-radius:4px; */
  position: relative;
}

@media (min-width: 640px) {
  .grids_wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
}

@media (min-width: 900px) {
  .grids_wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding-top: 20px;
  }

  .hide_button {
    display: visible;
  }
}
@media (max-width: 900px) {
  .hide_button {
    display: none;
  }
}

@media (max-width: 639px) {
  #tab3 {
/*     display: none; */
  }
  }
}

.product_price {
  
     position: absolute;
    cursor: pointer;
    margin: 1rem;
  
}

.grid-item a {
  height: 100%;
  width: 100%;
}
