body {
  font-family: 'Noto Sans KR', sans-serif;
  background: #fff;
  margin: 0;
  color: #232323;
}
header nav {
  background: #f4f6fa;
  padding: 14px 32px;
  display: flex;
  gap: 24px;
  font-size: 1.12em;
  font-weight: bold;
}
header nav a {
  color: #1a1a33;
  text-decoration: none;
}
header nav a:hover {
  color: #2d69ff;
}
main {
  max-width: 900px;
  margin: 40px auto;
  min-height: 60vh;
  padding: 0 18px;
}
.brand-tabs {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-bottom: 34px;
}
.tab-btn {
  border: none;
  background: #f6f8fb;
  color: #2d69ff;
  font-weight: 600;
  font-size: 1.17em;
  padding: 13px 48px 13px 36px;
  border-radius: 20px;
  box-shadow: 0 2px 10px #e6eaf8;
  cursor: pointer;
  transition: 0.17s;
  outline: none;
  display: flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.01em;
  font-family: inherit;
}
.tab-btn.galaxy-font {
  font-family: 'Segoe UI', 'Malgun Gothic', 'Arial Black', sans-serif;
  letter-spacing: 0.08em;
  font-weight: 800;
}
.tab-btn:hover,
.tab-btn:focus {
  background: #eaf2ff;
  color: #1659d6;
  transform: scale(1.05);
}
.tab-btn.active {
  background: #2d69ff;
  color: #fff;
  box-shadow: 0 6px 18px #b7d1ff;
}
.icon-apple svg {
  margin-right: 2px;
}
.product-list {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  justify-content: center;
}
.product-card {
  border: 1px solid #eee;
  border-radius: 13px;
  background: #fff;
  width: 220px;
  padding: 20px 12px 10px 12px;
  box-shadow: 0 2px 8px 0 #e6e9f6;
  text-align: center;
  transition: 0.2s;
}
.product-card:hover {
  box-shadow: 0 6px 18px 0 #dae2fa;
  transform: translateY(-5px) scale(1.03);
}
.product-card img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 10px;
}
.pname {
  margin: 11px 0 6px 0;
  font-size: 1.13em;
  font-weight: bold;
}
.pprice {
  font-size: 1em;
  color: #3667ad;
}
footer {
  margin-top: 60px;
  padding: 26px 0 18px 0;
  color: #6b7684;
  font-size: 1em;
  background: #f7faff;
  text-align: center;
}
.detail-box {
  display: flex;
  gap: 44px;
  align-items: flex-start;
}
.detail-img {
  min-width: 280px;
}
.detail-img img {
  border-radius: 12px;
  box-shadow: 0 2px 10px 0 #d6e1fc;
}
.detail-info h2 {
  font-size: 1.9em;
  margin: 0 0 15px 0;
}
.detail-info table {
  border-collapse: collapse;
  width: 270px;
  margin-bottom: 12px;
}
.detail-info table td {
  padding: 8px 10px;
  border-bottom: 1px solid #eee;
}
@media (max-width: 800px) {
  .detail-box {
    flex-direction: column;
    gap: 16px;
  }
  main {
    max-width: 100vw;
  }
  .product-list {
    flex-direction: column;
    gap: 18px;
  }
}

/* ✅ 후기 카드 이미지 스타일 추가 */
.review-card {
  background-color: #f9fafe;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  padding: 20px;
  text-align: center;
  max-width: 280px;
}
.review-image {
  width: 80px;
  height: 120px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 12px;
}
