* {
  box-sizing: border-box;
  font-family: 'Apple SD Gothic Neo', sans-serif;
}

body {
  margin: 0;
  min-height: 100vh;
  background: linear-gradient(
    180deg,
    #ffe4ec 0%,
    #fff0f5 50%,
    #ffffff 100%
  );
}

.container {
  max-width: 900px;
  margin: auto;
  padding: 40px 20px;
}

/* 검색 섹션 */
.search-section {
  text-align: center;
  margin-bottom: 50px;
}

.search-section h1 {
  color: #d85c8a;
  margin-bottom: 20px;
}

.search-box {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.search-box input {
  width: 60%;
  padding: 12px;
  border-radius: 30px;
  border: 1px solid #f3b6c8;
  outline: none;
}

.search-box button {
  padding: 12px 20px;
  border-radius: 30px;
  border: none;
  background-color: #f3a7c0;
  color: white;
  cursor: pointer;
}

.search-extra {
  margin-top: 15px;
  display: flex;
  justify-content: center;
  gap: 15px;
}

.upload-btn {
  background: #ffeaf1;
  padding: 8px 14px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 14px;
}

/* 추천 상품 */
.recommend-section h2 {
  color: #c84c78;
  margin-bottom: 20px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.product-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  transition: transform 0.2s;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.product-card h3 {
  margin: 10px;
  font-size: 16px;
}

.product-card p {
  margin: 0 10px 15px;
  color: #e26b92;
  font-weight: bold;
}