body {
  font-family: 'Apple SD Gothic Neo', 'sans-serif';
  margin: 0;
  background-color: #fff;
   color: #333;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 2px solid #ddd;
}

.header h1 a {
  text-decoration: none;
  color: #000;
  font-size: 24px;
}

.header nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #000;
}

.product-container {
  display: flex;
  justify-content: center;
  gap: 150px;
  padding: 40px;
}

.product-image img{
  width: 400px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.product-info {
  width: 400px; /* 혹은 100%나 원하는 픽셀 단위로 */
  flex-shrink: 0; /* flexbox 상황에서도 폭 유지 */
}

.product-info h2 {
  font-size: 28px;
  margin-bottom: 10px;
}


.product-info h1 {
  font-size: 28px;
  margin-bottom: 10px;
}

.product-info .price {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px
}

.product-info .desc {
  font-size: 14px;
  margin-bottom: 20px;
  line-height: 1.5;
}

.form-group {
  margin-bottom: 10px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
}

.form-group select {
  width: 100%;
  padding: 5px;
}


.button-group a{
  display: flex;
  gap: 10px;
  text-decoration: none;
  margin: 10px; 
}

.button-group button {
  flex: 1;
  padding: 10px;
  border: none;
  cursor: pointer;
  background-color: #000;
  color: #fff;
}

.button-group button:hover {
  background-color: #333;
}


footer {
    background-color: #fff;
    color: #333;
    text-align: center;
    padding: 10px;
    margin: 0;
}
