/*Popular Section*/

.popular .box-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.popular .box-container .box {
  padding: 2rem;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  border: 0.1rem solid rgba(0, 0, 0, 0.12);
  border-radius: var(--radius-md);
  text-align: center;
  flex: 1 1 30rem;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.popular .box-container .box:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.popular .box-container .box img {
  height: 25rem;
  object-fit: cover;
  width: 100%;
  border-radius: 0.5rem;
}

.popular .box-container .box .price {
  position: absolute;
  top: 3rem;
  left: 3rem;
  background: var(--red);
  color: #fff;
  font-size: 1.7rem;
  font-weight: 700;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
}

.popular .box-container .box h3 {
  color: var(--text-dark);
  font-size: 2.4rem;
  padding-top: 1rem;
}

.popular .box-container .box li {
  color: gold;
  font-size: 1.7rem;
  padding: 1rem 0.1rem;
}

.popular .box-container .box li:last-of-type {
  color: rgb(134, 134, 134);
}
