/* === Recently Viewed Section === */
.recently-viewed-wrapper {
  background: #fff;
  padding: 10px 12px;
  border-bottom: 1px solid #eee;
}

.recently-viewed-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

/* Horizontal Scroll */
.recently-viewed-container {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.recently-viewed-container::-webkit-scrollbar {
  display: none;
}

/* Product Card */
.recent-product-card {
  min-width: 110px;
  max-width: 110px;
  background: #fffbea;
  border-radius: 12px;
  padding: 8px;
  flex-shrink: 0;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

/* Image */
.recent-product-card img {
  width: 100%;
  height: 90px;
  object-fit: contain;
}

/* Title */
.recent-product-title {
  font-size: 12px;
  margin: 6px 0;
  height: 30px;
  overflow: hidden;
}

/* Price */
.recent-product-price {
  font-size: 13px;
  font-weight: bold;
  color: #1a1a1a;
}

/* Add Button */
.recent-add-btn {
  background: #6c2bd9;
  color: #fff;
  border-radius: 8px;
  padding: 4px 0;
  font-size: 12px;
  margin-top: 5px;
  cursor: pointer;
}

.recent-add-btn:hover {
  background: #5a23b5;
}

/* Desktop */
@media screen and (min-width: 768px) {
  .recent-product-card {
    min-width: 140px;
    max-width: 140px;
  }

  .recent-product-card img {
    height: 110px;
  }
}
