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

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

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

.site-header {
  border-bottom: 1px solid #e2e2e2;
}
.site-header__top {
  max-width: 100%;
  margin: 0 auto;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.site-header__logo {
  font-weight: 700;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.site-header__logo h1 {
  margin: 0;
  font-size: 2.5rem;
}
.site-header__logo img {
  height: 110px;
  width: auto;
}

.site-nav {
  border-top: 1px solid #e2e2e2;
}
.site-nav__list {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  list-style: none;
  display: flex;
  justify-content: flex-start;
  gap: 24px;
  flex-wrap: wrap;
}
.site-nav__item {
  position: relative;
  padding: 12px 0;
}
.site-nav__item > a {
  font-weight: 700;
}
.site-nav__item > a:hover {
  text-decoration: underline;
}
.site-nav__item--has-submenu:hover .site-nav__submenu {
  display: block;
}
.site-nav__submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  list-style: none;
  margin: 0;
  padding: 8px 0;
  min-width: 160px;
  background: #ffcd4a;
  border: 1px solid #e2e2e2;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  z-index: 10;
}
.site-nav__submenu li {
  padding: 0;
}
.site-nav__submenu a {
  display: block;
  padding: 8px 16px;
  white-space: nowrap;
}
.site-nav__submenu a:hover {
  background: #e2e2e2;
}

.site-main {
  max-width: 100%;
  margin: 0 auto;
  padding: 32px 20px;
  min-height: 60vh;
}

.site-footer {
  background: #212121;
  color: #ffffff;
  padding: 32px 0 20px;
  font-size: 0.875rem;
}
.site-footer__top {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px 24px;
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.site-footer__nav {
  flex: 1 1 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.site-footer__nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 1.05rem;
}
.site-footer__nav a:hover {
  text-decoration: underline;
}
.site-footer .bio {
  flex: 1 1 0;
  text-align: left;
}
.site-footer .copyright {
  max-width: 100%;
  margin: 16px auto 0;
  padding: 0 20px;
  text-align: center;
}

.auth-page {
  max-width: 360px;
  margin: 0 auto;
}

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

.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: 10px 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: 10px 16px;
  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: 20px;
  border: 1px solid #e2e2e2;
  border-radius: 6px;
  margin-bottom: 32px;
}

.profile-info {
  margin: 0;
}
.profile-info dt {
  font-size: 0.875rem;
  color: #6b6b6b;
}
.profile-info dd {
  margin: 4px 0 0;
  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 {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  margin-bottom: 32px;
}
.hero-carousel__track {
  display: flex;
  transition: transform 0.4s ease;
}
.hero-carousel__slide {
  flex: 0 0 100%;
  display: block;
  position: relative;
  min-height: 260px;
  background: #e2e2e2;
}
.hero-carousel__slide img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}
.hero-carousel__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
}
.hero-carousel__arrow--prev {
  left: 12px;
}
.hero-carousel__arrow--next {
  right: 12px;
}
.hero-carousel__arrow:hover {
  background: rgba(0, 0, 0, 0.55);
}
.hero-carousel__dots {
  position: absolute;
  left: 50%;
  bottom: 12px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}
.hero-carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  padding: 0;
}
.hero-carousel__dot.is-active {
  background: #fff;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}

.carousel-row-section {
  padding-top: 32px;
  margin-bottom: 8px;
  border-top: 1px solid #e2e2e2;
}
.carousel-row-section h2 {
  margin: 0 0 16px;
}

.carousel-row {
  position: relative;
}
.carousel-row__track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 4px;
  scrollbar-width: none;
}
.carousel-row__track::-webkit-scrollbar {
  display: none;
}
.carousel-row__item {
  flex: 0 0 180px;
  scroll-snap-align: start;
}
.carousel-row--wide-items .carousel-row__item {
  flex-basis: 300px;
  height: 300px;
}
.carousel-row__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #ffcd4a;
  color: #000000;
  border: 1px solid #e2e2e2;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  z-index: 1;
}
.carousel-row__arrow--prev {
  left: -12px;
}
.carousel-row__arrow--next {
  right: -12px;
}
.carousel-row__arrow:hover {
  border-color: #1a1a1a;
}

.product-card {
  display: block;
  padding: 16px;
  border: 1px solid #e2e2e2;
  border-radius: 6px;
}
.product-card:hover {
  border-color: #1a1a1a;
}
.product-card__image {
  position: relative;
  aspect-ratio: 1/1;
  margin: -16px -16px 20px;
  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: 1rem;
  line-height: 1.4;
}
.product-card__tag {
  font-size: 0.75rem;
  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.8125rem;
  font-weight: 400;
  color: #6b6b6b;
}
.product-card__price {
  position: absolute;
  left: 12px;
  bottom: -14px;
  display: inline-block;
  background: #000000;
  color: #ffcd4a;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.875rem;
  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: 12px 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.product-card--horizontal .product-card__body h3 {
  margin: 0 0 4px;
  font-size: 1rem;
}
.product-card--horizontal .product-card__price {
  position: static;
  display: inline-block;
  align-self: flex-start;
  background: #000000;
  color: #ffcd4a;
  padding: 4px 10px;
  margin-top: 2px;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 700;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

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

.notice-list__items {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
}
.notice-list__item {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid #e2e2e2;
}
.notice-list__date {
  color: #6b6b6b;
  font-size: 0.875rem;
  white-space: nowrap;
}

.notice-detail {
  max-width: 640px;
}
.notice-detail__date {
  color: #6b6b6b;
  font-size: 0.875rem;
  margin: 0 0 24px;
}
.notice-detail__body {
  white-space: pre-line;
}

.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=site.css.map */
