.amazon-banner {
  position: relative;
  background: #fff;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  padding: 10px 30px;
  overflow: hidden;
}

.amazon-scroll {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
}

.amazon-scroll::-webkit-scrollbar { display: none; }

.amazon-card {
  flex: 0 0 140px;
  background: #fafafa;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 8px;
  text-align: center;
  text-decoration: none;
  color: #333;
  scroll-snap-align: start;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  transition: transform 0.2s;
}

.amazon-card:hover { transform: translateY(-3px); }

.amazon-card img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  margin-bottom: 6px;
}

.amazon-card h4 {
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 4px;
  line-height: 1.3;
}

.amazon-card .price {
  color: #a65d66;
  font-weight: bold;
}

.nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: #fff;
  border: none;
  font-size: 18px;
  padding: 6px 10px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 2;
}

.nav.prev { left: 5px; }
.nav.next { right: 5px; }

.nav:hover { background: rgba(0,0,0,0.7); }