.product-box {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-radius: 30px;
  padding: 1rem;
  background: var(--elsel-white);
}

.product-box > .tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  border-radius: 90px;
  background: var(--elsel-green);
  color: var(--elsel-green-2);
  padding: 0.75rem 1.5rem;
}

.product-box > figure {
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-box > figure > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  aspect-ratio: 1/1;
}

.product-box > .description {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
}

.product-box > .description > .navigation-btn {
  position: unset;
  width: 68px;
  height: 68px;
  min-width: 68px;
  min-height: 68px;
}

.product-box > .description > .group {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.product-box > .description > .group > small {
  color: var(--elsel-blue);
  font-size: var(--font-16);
  font-weight: 300;
}

.product-box > .description > .group > p {
  color: var(--elsel-black);
  font-size: var(--font-20);
  font-weight: 600;
}

@media (max-width: 1400px) {
  .product-box > .description > .navigation-btn {
    width: 50px;
    height: 50px;
    min-width: 50px;
    min-height: 50px;
  }
}

@media (max-width: 576px) {
  .product-box {
    border-radius: 20px;
  }
}
