@charset "UTF-8";
/* 기본 설정 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  list-style: none;
}

a,
a:link,
a:visited {
  color: inherit;
}

body,
html {
  height: 100%;
  margin: 0;
  font-size: 16px;
}

img {
  display: block;
}

/* typography tokens */
/* 기본 컬러 팔레트 (Hex 기반) */
/* 이미지 기반 색상 스타일 (시맨틱 변수) */
.wrap {
  width: 100vw;
  max-width: 402px;
  margin: 0 auto;
  background: #050052;
  min-height: 100vh; /*아래로까지 배경이 이어지는 핵심*/
}

/* ================= HEADER ================= */
.header {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.banner {
  height: 240px;
}

.banner img {
  color: transparent; /* 깨진 이미지 텍스트 숨김 */
}

.header-banner {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.overlay {
  position: absolute;
  bottom: 0;
  bottom: -1px;
  width: 100%;
  height: 143px;
  background: linear-gradient(180deg, rgba(5, 0, 82, 0) 0%, #050052 100%);
}

.logo {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  cursor: pointer;
}

.header-top {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.home-icon,
.phone-icon {
  width: 36px;
  height: 36px;
}

button {
  all: unset;
  cursor: pointer;
}

.mobile-logo {
  cursor: pointer;
  width: 90px;
  height: 36px;
}

/* ================= CONTENT ================= */
.content {
  padding: 0 16px 12px 16px;
}

.product-section {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 30px;
}

.header-line {
  flex: 1;
  height: 1px;
  background: #f9f9f9;
  opacity: 40%;
}

.header-title {
  font-family: "Pretendard", sans-serif;
  color: #f9f9f9;
  font-size: 16px;
  letter-spacing: 0.16em;
  opacity: 0.6;
}

/* ================= CATEGORY ================= */
.category-list {
  padding: 12px 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
}

.category-item {
  width: 100%;
  height: 80px;
  background: #ffffff;
  border-radius: 10px;
  display: flex;
  overflow: hidden;
}

.thumb {
  flex: 1;
}

.thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.category-info {
  width: 204px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.title {
  font-family: "Noto Sans KR", sans-serif;
  font-size: 16px;
  color: #333333;
  letter-spacing: 0.06em;
}

/* ================= SUBPAGE PRODUCT GRID ================= */
.category-title {
  position: absolute;
  bottom: 16px;
  left: 16px;
  color: #ffffff;
  font-size: 36px;
  font-family: "Libre Baskerville", serif;
  letter-spacing: 0.06em;
}

.product-items {
  padding: 0 16px 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.product-item {
  width: calc((100% - 18px) / 2);
  min-width: 0;
  height: 200px;
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.product-img img {
  width: 100%;
  height: 108px;
  -o-object-fit: fill;
     object-fit: fill;
}

.product-text {
  height: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  white-space: pre-line;
  line-height: 1;
}

.product-text {
  padding: 18px 0;
}

.product-text.long {
  padding: 10px 0;
}

.product-title {
  font-family: "Noto Sans KR", sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  color: #333333;
  letter-spacing: 0.02em;
}

.product-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  align-items: center;
}

.origin {
  font-family: "Noto Sans KR", sans-serif;
  font-size: 10px;
  color: #666666;
  letter-spacing: 0.02em;
}

.info {
  font-family: "Pretendard", sans-serif;
  font-size: 10px;
  color: #666666;
}

/* ================= CONTACT ================= */
/* wrapper가 fixed + 가운데 정렬 담당 */
.contact-wrapper {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  align-items: center;
  justify-content: center;
  display: flex;
  flex-direction: column;
}

.contact-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.contact-modal {
  z-index: 1;
  width: 100%;
  max-width: 368px;
  height: auto;
  max-height: 90vh;
  background: #050052;
  border-radius: 10px;
  overflow-y: auto;
}

.contact-header {
  padding-top: 35px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-title {
  font-size: 36px;
  font-family: "Libre Baskerville", serif;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #ffffff;
  text-align: center;
}

.contact-divider {
  width: 100%;
  height: 30px;
  padding: 0 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.line {
  flex: 1;
  border-top: 1px solid #f9f9f9;
}

.contact-cards {
  width: 100%;
  padding: 0 20px 15px 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.contact-card {
  width: calc((100% - 14px) / 2);
  padding: 12px 8px;
  background: #ffffff;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 119px;
}

.card-info {
  height: 45px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-name {
  color: #333333;
  text-align: center;
}
.card-name .name {
  font-family: "Noto Sans KR", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
}
.card-name .subname {
  font-family: "Pretendard", sans-serif;
  font-size: 10px;
  letter-spacing: 0.04em;
  font-weight: 700;
  line-height: 1.4;
}

.card-role {
  font-family: "Pretendard", sans-serif;
  font-size: 9px;
  color: #050052;
  text-align: center;
}

.card-divider {
  width: 100%;
  border-top: 1px solid #666666;
  margin: 10px auto;
}

.card-contact {
  color: #333333;
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 10px;
  line-height: normal;
  letter-spacing: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  height: 30px;
}

.social-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.social-header {
  height: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 20px;
}

.social-title {
  font-family: "Pretendard", sans-serif;
  color: #f9f9f9;
  font-size: 16px;
  letter-spacing: 0.16em;
  opacity: 0.6;
}

.social-button-group {
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  gap: 10px;
}

.btn-label {
  font-family: "Noto Sans KR", sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #050052;
  white-space: nowrap;
}

.btn-officialmall,
.btn-instagram {
  width: calc((100% - 14px) / 2);
  padding: 10px 0px;
  background: #ffffff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.company-info {
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.company-address {
  font-family: "Pretendard", sans-serif;
  letter-spacing: 0.15em;
  text-align: center;
  color: #f9f9f9;
  font-size: 14px;
}

.certifications {
  background: #ffffff;
  border-radius: 10px;
  padding: 14px;
  display: flex;
  justify-content: space-between;
}

.close-button-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 90px;
}

@media (max-width: 350px) {
  .icon-shoppingbag,
  .icon-instagram {
    display: none;
  }
  .btn-officialmall,
  .btn-instagram {
    flex: 1;
  }
}/*# sourceMappingURL=main.css.map */