.product-container {
  width: 420px;
  padding: 20px;
  /* position: absolute; */
  /* top: 50%;
  transform: translate(50%); */
  box-shadow:1px 2px 3px 4px #333;
  border: none;
  border-radius: 4px solid ;
  background-color: #fff;
  font-family: Arial, sans-serif;
}
.close-btn {
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 20px;
  cursor: pointer;
  background: none;
  border: none;
}

.product-header {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-bottom: 20px;
}

.product-image {
  width: 50px;
  height: 50px;
  object-fit: cover;
}

.product-info h3 {
  margin: 0;
  font-size: 14px;
  color: #333;
}

.price-container {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 5px;
}

.current-price {
  font-weight: bold;
  color: #333;
}

.original-price {
  text-decoration: line-through;
  color: #999;
}

.discount {
  color: #ff3f6c;
  font-weight: 500;
  font-size: 12px;
}

.size-selector {
  margin-top: 20px;
}

.size-selector h4 {
  margin: 0 0 15px 0;
  color: #333;
}

.size-options {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.size-option {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 14px;
  background: white;
}

.size-option.selected {
  border: 1px solid #ff3f6c;
  color: #ff3f6c;
}

.size-option.disabled {
  color: #ccc;
  cursor: not-allowed;
  position: relative;
}

.size-option.disabled::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: #ccc;
  transform: rotate(-45deg);
}

.seller-info {
  font-size: 12px;
  color: #666;
  margin-bottom: 20px;
}

.done-btn {
  width: 100%;
  padding: 15px;
  background: #ff3f6c;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
}

.done-btn:hover {
  background: #ff2957;
}
