*,
*::before,
*::after {
  box-sizing: border-box;
}

body.m-body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  color: #000000;
  background: #ffcd4a;
  line-height: 1.5;
}
body.m-body.m-nav-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

.m-header {
  position: sticky;
  top: 0;
  z-index: 20;
  height: 56px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 16px;
  background: #ffcd4a;
  border-bottom: 1px solid #e2e2e2;
}
.m-header__menu-btn {
  background: none;
  border: none;
  font-size: 1.375rem;
  line-height: 1;
  padding: 8px;
  margin: -8px;
  cursor: pointer;
}
.m-header__logo {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 1rem;
  min-width: 0;
}
.m-header__logo img {
  height: 32px;
  width: auto;
}
.m-header__logo span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.m-header__account {
  font-size: 0.875rem;
  font-weight: 600;
  white-space: nowrap;
}

.m-nav__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 29;
}
.m-nav__backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.m-nav {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  width: 80%;
  max-width: 320px;
  background: #ffcd4a;
  z-index: 30;
  padding: 16px;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform 0.25s ease;
}
.m-nav.is-open {
  transform: translateX(0);
}
.m-nav__close {
  background: none;
  border: none;
  font-size: 1.25rem;
  padding: 8px;
  margin: -8px -8px 12px auto;
  display: block;
  cursor: pointer;
}
.m-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.m-nav__item {
  border-bottom: 1px solid #e2e2e2;
}
.m-nav__item > a {
  display: block;
  padding: 14px 4px;
  font-weight: 700;
  font-size: 1.0625rem;
}
.m-nav__submenu {
  list-style: none;
  margin: 0 0 12px;
  padding: 0 0 0 12px;
}
.m-nav__submenu a {
  display: block;
  padding: 10px 4px;
  color: #6b6b6b;
}

.m-main {
  padding: 16px;
  min-height: 60vh;
}

.m-footer {
  background: #212121;
  color: #ffffff;
  padding: 24px 16px;
  font-size: 0.8125rem;
}
.m-footer p {
  margin: 0 0 6px;
}
.m-footer__switch {
  margin-top: 16px;
}
.m-footer__switch a {
  text-decoration: underline;
  font-weight: 600;
}
.m-footer__copyright {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.6);
}

.auth-page h1 {
  font-size: 1.375rem;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 20px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-field span {
  font-size: 0.875rem;
  color: #6b6b6b;
}
.form-field input,
.form-field textarea {
  padding: 12px;
  border: 1px solid #e2e2e2;
  border-radius: 6px;
  font-size: 1rem;
  font-family: inherit;
}
.form-field input:focus,
.form-field textarea:focus {
  outline: 2px solid #1a1a1a;
  outline-offset: 1px;
}
.form-field--checkbox {
  flex-direction: row;
  align-items: center;
}
.form-field--checkbox input {
  width: auto;
}

.btn {
  padding: 12px 18px;
  border-radius: 6px;
  border: 1px solid #1a1a1a;
  font-size: 1rem;
  cursor: pointer;
}
.btn--primary {
  background: #1a1a1a;
  color: #fff;
}
.btn--secondary {
  background: transparent;
  color: #1a1a1a;
}

.auth-switch {
  margin-top: 16px;
  font-size: 0.875rem;
  color: #6b6b6b;
}
.auth-switch a {
  text-decoration: underline;
}

.profile-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px;
  border: 1px solid #e2e2e2;
  border-radius: 6px;
  margin-bottom: 24px;
}

.profile-info {
  margin: 0;
}
.profile-info dt {
  font-size: 0.875rem;
  color: #6b6b6b;
}
.profile-info dd {
  margin: 4px 0 12px;
  font-weight: 600;
}

.order-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.order-list__item a {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #e2e2e2;
}

.empty-state {
  color: #6b6b6b;
}

.hero-carousel {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  border-radius: 6px;
  margin-bottom: 24px;
  scrollbar-width: none;
}
.hero-carousel::-webkit-scrollbar {
  display: none;
}
.hero-carousel__track {
  display: flex;
}
.hero-carousel__slide {
  flex: 0 0 100%;
  scroll-snap-align: start;
  display: block;
  min-height: 180px;
}
.hero-carousel__slide img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
}

.carousel-row-section {
  padding-top: 24px;
  margin-bottom: 8px;
  border-top: 1px solid #e2e2e2;
}
.carousel-row-section h2 {
  margin: 0 0 12px;
  font-size: 1.125rem;
}

.carousel-row__track {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 4px;
  scrollbar-width: none;
}
.carousel-row__track::-webkit-scrollbar {
  display: none;
}
.carousel-row__item {
  flex: 0 0 150px;
  scroll-snap-align: start;
}
.carousel-row--wide-items .carousel-row__item {
  flex-basis: 260px;
  height: 96px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.product-card {
  display: block;
  padding: 12px;
  border: 1px solid #e2e2e2;
  border-radius: 6px;
}
.product-card__image {
  position: relative;
  aspect-ratio: 1/1;
  margin: -12px -12px 16px;
  background: rgba(0, 0, 0, 0.08);
}
.product-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px 6px 0 0;
}
.product-card__title {
  display: flex;
  flex-direction: column;
  margin: 0 0 12px;
  font-size: 0.9375rem;
  line-height: 1.4;
}
.product-card__tag {
  font-size: 0.6875rem;
  font-weight: 700;
  color: #1a1a1a;
}
.product-card__tag::before {
  content: "[";
}
.product-card__tag::after {
  content: "]";
}
.product-card__name {
  font-weight: 700;
}
.product-card__subtitle {
  font-size: 0.75rem;
  font-weight: 400;
  color: #6b6b6b;
}
.product-card__price {
  position: absolute;
  left: 10px;
  bottom: -12px;
  display: inline-block;
  background: #000000;
  color: #ffcd4a;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 700;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}
.product-card--horizontal {
  display: flex;
  padding: 0;
  overflow: hidden;
  min-height: 96px;
}
.product-card--horizontal .product-card__image {
  position: static;
  flex: 0 0 50%;
  aspect-ratio: auto;
  margin: 0;
}
.product-card--horizontal .product-card__image img {
  border-radius: 0;
}
.product-card--horizontal .product-card__body {
  flex: 1;
  min-width: 0;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.product-card--horizontal .product-card__body h3 {
  margin: 0 0 4px;
  font-size: 0.875rem;
}
.product-card--horizontal .product-card__price {
  position: static;
  display: inline-block;
  align-self: flex-start;
  background: #000000;
  color: #ffcd4a;
  padding: 4px 9px;
  margin-top: 2px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.product-detail__image {
  aspect-ratio: 4/3;
  margin: 0 -16px 16px;
  background: rgba(0, 0, 0, 0.08);
  overflow: hidden;
}
.product-detail__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-detail h1 {
  font-size: 1.25rem;
}
.product-detail__price {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 8px 0;
}
.product-detail__stock {
  color: #6b6b6b;
  margin: 0 0 16px;
}
.product-detail__description {
  white-space: pre-line;
}

.notice-list h1 {
  font-size: 1.25rem;
}
.notice-list__items {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
}
.notice-list__item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 0;
  border-bottom: 1px solid #e2e2e2;
}
.notice-list__date {
  color: #6b6b6b;
  font-size: 0.8125rem;
}

.notice-detail h1 {
  font-size: 1.25rem;
}
.notice-detail__date {
  color: #6b6b6b;
  font-size: 0.8125rem;
  margin: 0 0 20px;
}
.notice-detail__body {
  white-space: pre-line;
}

.faq-list h1 {
  font-size: 1.25rem;
}

.faq-item {
  border-bottom: 1px solid #e2e2e2;
  padding: 14px 0;
}
.faq-item summary {
  cursor: pointer;
  font-weight: 600;
}
.faq-item__answer {
  margin-top: 12px;
  color: #6b6b6b;
  white-space: pre-line;
}

/*# sourceMappingURL=mobile.css.map */
