/* Start Item desing */
.item-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.item-name h2 {
  font-size: 20px;
}
.item-name p {
  color: var(--text-color);
}
.item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #fff;
  border-radius: 12px;
  padding: 10px;
  margin-bottom: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.166);
  transition: transform 0.2s;
  width: 90%;
}

.item:hover {
  transform: translateY(-2px);
}

.item-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  border-radius: 10px;
  flex-shrink: 0;
}

.item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.item-content {
  flex-grow: 1;
  padding-right: 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 90%;
  margin-top: 5px;
}

.item-name h2 {
  font-size: 1.2rem;
  margin: 0;
  font-weight: 600;
}

.item-name p {
  font-size: 0.9rem;
  color: #666;
  margin: 4px 0 0;
}

.item-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}

.price {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--main-color);
}

.item-price i {
  cursor: pointer;
  font-size: 1.5rem;
  background-color: var(--main-color);
  padding: 4px;
  color: white;
  border-radius: 50%;
}
.logo-cate {
  display: none;
  position: absolute;
  background-color: #0000008b;
  padding: 0.5rem;
  border-radius: 50%;
  height: 75px;
  width: auto;
  z-index: 2;
  padding: 5px;
  margin: 10px;
}
.back-icon {
  top: 45px;
  margin-right: 20px;
  position: fixed;
  display: flex;
  text-decoration: none;

  height: 40px;
  width: 40px;
  border-radius: 100%;
  box-shadow: 0 0 5px 2px rgba(64, 64, 64, 0.283);
  color: var(--main-color);
  text-align: center;
  justify-content: center;
  align-items: center;
  background-color: white;
  z-index: 500;
}
.back-icon a i {
  width: 100%;
  height: 100%;
}
