.sin-custom-price {
    font-size: 14px;
}

.oppio-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
  gap: 30px;
  margin: 40px 0;
  padding: 0 10px;
}

.oppio-product-item {
  background: transparent;
  border: none;
  border-radius: 0;
  /* padding: 15px; */
  text-align: center;
  position: relative;
  transition: box-shadow 0.2s ease-in-out;
  flex: 1 1 300px;
  width: 100%;
}
@media screen and (min-width: 670px) {
  .oppio-product-item {
    max-width: 420px;
  }
}

.oppio-product-item:hover {
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.oppio-product-image {
  position: relative;
  overflow: hidden;
  border-radius: 0;
}

.oppio-product-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
}


.oppio-product-image .oppio-product-link {
  position: relative;
  display: block;
  height: 425px;
}
.oppio-product-image img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
}
@media screen and (max-width: 670px) {
  .oppio-product-image .oppio-product-link {
    height: 525px;
  }
}
@media screen and (max-width: 570px) {
  .oppio-product-image .oppio-product-link {
    height: 425px;
  }
}
@media screen and (max-width: 480px) {
  .oppio-product-image .oppio-product-link {
    height: 330px;
  }
}

.oppio-icon-button {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  transition: transform 0.2s ease;
}
.oppio-icon-button i {
  font-style: normal;
  font-size: 22px;
  color: var(--project-green-light);

}

.oppio-icon-button:hover {
  transform: scale(1.1);
}

.oppio-icon-button img {
  width: 20px;
  height: 20px;
}

.oppio-product-title {
  font-size: 16px;
  font-weight: 600;
  margin-top: 15px;
  color: #222;
  text-align: left;
}

.oppio-product-price {
  font-size: 14px;
  color: #666;
  margin-top: 5px;
  text-align: left;
}
.oppio-product-price small {
  display: none !important;
}

/* RESPONSÍVNE PRAVIDLÁ */
.oppio-product-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 30px;
  padding: 0 10px;
}


.product-loop__title {
  position: relative;
  font-size: 45px;
  font-weight: 600;
  color: #1a1a1a;
  text-align: center;
  width: fit-content;
  margin: 15px auto 35px;
}
.product-loop__title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    /* transform: translateX(-50%); */
    width: 50px;
    height: 5px;
    background-color: var(--project-green-light);
}
.hidden .product-loop__title {
  display: none !important;
}


/* NAme product */
.product-name__loop {
  display: flex;
  flex-direction: column;
}
.product-name__loop span {
  font-size: 15px;
  font-weight: 400;
  text-align: left;
}