.shop-layout {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

.product-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  width: 100%;
  color: rgb(0, 0, 0);
}

.item {
  background: #f5f5f5;
  padding: 20px;
  border-radius: 10px;
  width: 300px;
  font-weight: 400;
  min-height: 460px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 12px;
}

.item h2 {
  margin: 10px 0;
  color: rgb(0, 0, 0);
}

.price-label {
  font-size: 1.30rem;
  color: rgb(0, 0, 0);
}

.price-display {
  font-size: 1.30rem;
  color: rgb(0, 0, 0);
}

.selectors {
  margin: 10px 0;
}

select {
  padding: 6px 10px;
  margin: 4px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

button {
  background: #6d049e;
  color: white;
  border: none;
  padding: 10px 16px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  margin-top: 10px;
}

button:hover {
  background: #4a0273;
}

#cart {
  background: #f0f0f0;
  color: rgb(0, 0, 0);
  padding: 40px;
  border-radius: 10px;
  width: 100%;
  max-width: 280px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

#cart ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  text-align: left;
  color: rgb(0, 0, 0);
}

#cashapp-instructions {
  font-size: 1.1rem;
  color: rgb(0, 0, 0);
  margin-top: 20px;
}

.clear-btn {
  background: #999;
  margin-top: 10px;
}

.clear-btn:hover {
  background: #777;
}

#popup {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: #6d049e;
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  display: none;
  z-index: 1000;
}