/* [project]/node_modules/simpledotcss/simple.css [app-client] (css) */
:root {
  --sans-font: -apple-system, BlinkMacSystemFont, "Avenir Next", Avenir,
    "Nimbus Sans L", Roboto, "Noto Sans", "Segoe UI", Arial, Helvetica,
    "Helvetica Neue", sans-serif;
  --mono-font: Consolas, Menlo, Monaco, "Andale Mono", "Ubuntu Mono", monospace;
  --standard-border-radius: 5px;
  --border-width: 1px;
  --bg: #fff;
  --accent-bg: #f5f7ff;
  --text: #212121;
  --text-light: #585858;
  --border: #898ea4;
  --accent: #0d47a1;
  --accent-hover: #1266e2;
  --accent-text: var(--bg);
  --code: #d81b60;
  --preformatted: #444;
  --marked: #fd3;
  --disabled: #efefef;
}

@media (prefers-color-scheme: dark) {
  :root {
    --lightningcss-light: ;
    --lightningcss-dark: initial;
    color-scheme: dark;
    --bg: #212121;
    --accent-bg: #2b2b2b;
    --text: #dcdcdc;
    --text-light: #ababab;
    --accent: #ffb300;
    --accent-hover: #ffe099;
    --accent-text: var(--bg);
    --code: #f06292;
    --preformatted: #ccc;
    --disabled: #111;
  }

  img, video {
    opacity: .8;
  }
}

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

textarea, select, input, progress {
  appearance: none;
}

html {
  font-family: var(--sans-font);
  scroll-behavior: smooth;
}

body {
  color: var(--text);
  background-color: var(--bg);
  grid-template-columns: 1fr min(45rem, 90%) 1fr;
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.5;
  display: grid;
}

body > * {
  grid-column: 2;
}

body > header {
  background-color: var(--accent-bg);
  border-bottom: var(--border-width) solid var(--border);
  text-align: center;
  grid-column: 1 / -1;
  padding: 0 .5rem 2rem;
}

body > header > :only-child {
  margin-block-start: 2rem;
}

body > header h1 {
  max-width: 1200px;
  margin: 1rem auto;
}

body > header p {
  max-width: 40rem;
  margin: 1rem auto;
}

main {
  padding-top: 1.5rem;
}

body > footer {
  color: var(--text-light);
  text-align: center;
  border-top: var(--border-width) solid var(--border);
  margin-top: 4rem;
  padding: 2rem 1rem 1.5rem;
  font-size: .9rem;
}

h1 {
  font-size: 3rem;
}

h2 {
  margin-top: 3rem;
  font-size: 2.6rem;
}

h3 {
  margin-top: 3rem;
  font-size: 2rem;
}

h4 {
  font-size: 1.44rem;
}

h5 {
  font-size: 1.15rem;
}

h6 {
  font-size: .96rem;
}

p {
  margin: 1.5rem 0;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

h1, h2, h3 {
  line-height: 1.1;
}

@media only screen and (max-width: 720px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2.1rem;
  }

  h3 {
    font-size: 1.75rem;
  }

  h4 {
    font-size: 1.25rem;
  }
}

a, a:visited {
  color: var(--accent);
}

a:hover {
  text-decoration: none;
}

button, .button, a.button, input[type="submit"], input[type="reset"], input[type="button"] {
  border: var(--border-width) solid var(--accent);
  background-color: var(--accent);
  color: var(--accent-text);
  padding: .5rem .9rem;
  line-height: normal;
  text-decoration: none;
}

.button[aria-disabled="true"], input:disabled, textarea:disabled, select:disabled, button[disabled] {
  cursor: not-allowed;
  background-color: var(--disabled);
  border-color: var(--disabled);
  color: var(--text-light);
}

input[type="range"] {
  padding: 0;
}

abbr[title] {
  cursor: help;
  text-decoration-line: underline;
  text-decoration-style: dotted;
}

button:enabled:hover, .button:not([aria-disabled="true"]):hover, input[type="submit"]:enabled:hover, input[type="reset"]:enabled:hover, input[type="button"]:enabled:hover {
  background-color: var(--accent-hover);
  border-color: var(--accent-hover);
  cursor: pointer;
}

.button:focus-visible, button:focus-visible:where(:enabled), input:enabled:focus-visible:where([type="submit"], [type="reset"], [type="button"]) {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
}

header nav {
  padding: 1rem 0 0;
  font-size: 1rem;
  line-height: 2;
}

header nav ul, header nav ol {
  flex-flow: wrap;
  place-content: space-around center;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: flex;
}

header nav ul li, header nav ol li {
  display: inline-block;
}

header nav a, header nav a:visited {
  border: var(--border-width) solid var(--border);
  border-radius: var(--standard-border-radius);
  color: var(--text);
  margin: 0 .5rem 1rem;
  padding: .1rem 1rem;
  text-decoration: none;
  display: inline-block;
}

header nav a:hover, header nav a.current, header nav a[aria-current="page"], header nav a[aria-current="true"] {
  border-color: var(--accent);
  color: var(--accent);
  cursor: pointer;
}

@media only screen and (max-width: 720px) {
  header nav a {
    border: none;
    padding: 0;
    line-height: 1;
    text-decoration: underline;
  }
}

aside, details, pre, progress {
  background-color: var(--accent-bg);
  border: var(--border-width) solid var(--border);
  border-radius: var(--standard-border-radius);
  margin-bottom: 1rem;
}

aside {
  float: right;
  width: 30%;
  margin-inline-start: 15px;
  padding: 0 15px;
  font-size: 1rem;
}

[dir="rtl"] aside {
  float: left;
}

@media only screen and (max-width: 720px) {
  aside {
    float: none;
    width: 100%;
    margin-inline-start: 0;
  }
}

article, fieldset, dialog {
  border: var(--border-width) solid var(--border);
  border-radius: var(--standard-border-radius);
  margin-bottom: 1rem;
  padding: 1rem;
}

article h2:first-child, section h2:first-child, article h3:first-child, section h3:first-child {
  margin-top: 1rem;
}

section {
  border-top: var(--border-width) solid var(--border);
  border-bottom: var(--border-width) solid var(--border);
  margin: 3rem 0;
  padding: 2rem 1rem;
}

section + section, section:first-child {
  border-top: 0;
  padding-top: 0;
}

section + section {
  margin-top: 0;
}

section:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

details {
  padding: .7rem 1rem;
}

summary {
  cursor: pointer;
  word-break: break-all;
  margin: -.7rem -1rem;
  padding: .7rem 1rem;
  font-weight: bold;
}

details[open] > summary + * {
  margin-top: 0;
}

details[open] > summary {
  margin-bottom: .5rem;
}

details[open] > :last-child {
  margin-bottom: 0;
}

table {
  border-collapse: collapse;
  margin: 1.5rem 0;
}

figure > table {
  width: max-content;
  margin: 0;
}

td, th {
  border: var(--border-width) solid var(--border);
  text-align: start;
  padding: .5rem;
}

th {
  background-color: var(--accent-bg);
  font-weight: bold;
}

tr:nth-child(2n) {
  background-color: var(--accent-bg);
}

table caption {
  margin-bottom: .5rem;
  font-weight: bold;
}

textarea, select, input, button, .button {
  font-size: inherit;
  border-radius: var(--standard-border-radius);
  box-shadow: none;
  max-width: 100%;
  margin-bottom: .5rem;
  padding: .5em;
  font-family: inherit;
  display: inline-block;
}

textarea, select, input {
  color: var(--text);
  background-color: var(--bg);
  border: var(--border-width) solid var(--border);
}

label {
  display: block;
}

textarea:not([cols]) {
  width: 100%;
}

select:not([multiple]) {
  background-image: linear-gradient(45deg, transparent 49%, var(--text) 51%),
    linear-gradient(135deg, var(--text) 51%, transparent 49%);
  background-position: calc(100% - 15px), calc(100% - 10px);
  background-repeat: no-repeat;
  background-size: 5px 5px, 5px 5px;
  padding-inline-end: 25px;
}

[dir="rtl"] select:not([multiple]) {
  background-position: 10px, 15px;
}

input[type="checkbox"], input[type="radio"] {
  vertical-align: middle;
  width: min-content;
  position: relative;
}

input[type="checkbox"] + label, input[type="radio"] + label {
  display: inline-block;
}

input[type="radio"] {
  border-radius: 100%;
}

input[type="checkbox"]:checked, input[type="radio"]:checked {
  background-color: var(--accent);
}

input[type="checkbox"]:checked:after {
  content: " ";
  border-right: solid var(--bg) .08em;
  border-bottom: solid var(--bg) .08em;
  background-color: #0000;
  border-radius: 0;
  width: .2em;
  height: .4em;
  font-size: 1.8em;
  position: absolute;
  top: .04em;
  left: .18em;
  transform: rotate(45deg);
}

input[type="radio"]:checked:after {
  content: " ";
  background-color: var(--bg);
  border-radius: 100%;
  width: .3em;
  height: .3em;
  font-size: 1.8em;
  position: absolute;
  top: .125em;
  left: .125em;
}

@media only screen and (max-width: 720px) {
  textarea, select, input {
    width: 100%;
  }
}

input[type="color"] {
  height: 2.5rem;
  padding: .2rem;
}

input[type="file"] {
  border: 0;
}

hr {
  height: var(--border-width);
  background: var(--border);
  border: none;
  margin: 1rem auto;
}

mark {
  border-radius: var(--standard-border-radius);
  background-color: var(--marked);
  color: #000;
  padding: 2px 5px;
}

mark a {
  color: #0d47a1;
}

img, video {
  border-radius: var(--standard-border-radius);
  max-width: 100%;
  height: auto;
}

figure {
  margin: 0;
  display: block;
  overflow-x: auto;
}

figure > img, figure > picture > img {
  margin-inline: auto;
  display: block;
}

figcaption {
  text-align: center;
  color: var(--text-light);
  margin-block: 1rem;
  font-size: .9rem;
  position: sticky;
  left: 0;
}

blockquote {
  border-inline-start: .35rem solid var(--accent);
  color: var(--text-light);
  margin-block: 2rem;
  margin-inline: 2rem 0;
  padding: .4rem .8rem;
  font-style: italic;
}

cite {
  color: var(--text-light);
  font-size: .9rem;
  font-style: normal;
}

dt {
  color: var(--text-light);
}

code, pre, pre span, kbd, samp {
  font-family: var(--mono-font);
  color: var(--code);
}

kbd {
  color: var(--preformatted);
  border: var(--border-width) solid var(--preformatted);
  border-bottom: 3px solid var(--preformatted);
  border-radius: var(--standard-border-radius);
  padding: .1rem .4rem;
}

pre {
  max-width: 100%;
  color: var(--preformatted);
  padding: 1rem 1.4rem;
  overflow: auto;
}

pre code {
  color: var(--preformatted);
  background: none;
  margin: 0;
  padding: 0;
}

progress {
  width: 100%;
}

progress:indeterminate {
  background-color: var(--accent-bg);
}

progress::-webkit-progress-bar {
  border-radius: var(--standard-border-radius);
  background-color: var(--accent-bg);
}

progress::-webkit-progress-value {
  border-radius: var(--standard-border-radius);
  background-color: var(--accent);
}

progress::-moz-progress-bar {
  border-radius: var(--standard-border-radius);
  background-color: var(--accent);
  transition-property: width;
  transition-duration: .3s;
}

progress:indeterminate::-moz-progress-bar {
  background-color: var(--accent-bg);
}

dialog {
  background-color: var(--bg);
  max-width: 40rem;
  margin: auto;
}

dialog::backdrop {
  background-color: var(--bg);
  opacity: .8;
}

@media only screen and (max-width: 720px) {
  dialog {
    max-width: calc(100vw - 2rem);
  }
}

sup, sub {
  vertical-align: baseline;
  position: relative;
}

sup {
  top: -.4em;
}

sub {
  top: .3em;
}

.notice {
  background: var(--accent-bg);
  border: var(--border-width) solid var(--border);
  border-radius: var(--standard-border-radius);
  margin: 2rem 0;
  padding: 1.5rem;
}

@media print {
  @page {
    margin: 1cm;
  }

  body {
    display: block;
  }

  body > header {
    background-color: unset;
  }

  body > header nav, body > footer {
    display: none;
  }

  article {
    border: none;
    padding: 0;
  }

  a[href^="http"]:after {
    content: " <" attr(href) ">";
  }

  abbr[title]:after {
    content: " (" attr(title) ")";
  }

  a {
    text-decoration: none;
  }

  p {
    widows: 3;
    orphans: 3;
  }

  hr {
    border-top: var(--border-width) solid var(--border);
  }

  mark {
    border: var(--border-width) solid var(--border);
  }

  pre, table, figure, img, svg {
    break-inside: avoid;
  }

  pre code {
    white-space: pre-wrap;
  }
}

/* [project]/app/global.css [app-client] (css) */
:root {
  --green: #087443;
  --green-dark: #0d3d2a;
  --green-pale: #e9f8df;
  --line: #dfe8e2;
  --muted: #68766e;
  --surface: #fff;
  --accent: var(--green);
  --accent-hover: var(--green);
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  color: #17221c;
  background: #f8faf8;
  grid-template-columns: 1fr min(1280px, 100% - 40px) 1fr;
  font-family: Arial, Noto Sans KR, sans-serif;
  display: grid;
}

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

button, input, select {
  font: inherit;
}

button {
  cursor: pointer;
  transition: border-color .2s, background-color .2s, color .2s, transform .2s;
}

input, select, textarea {
  transition: border-color .2s, box-shadow .2s, background-color .2s;
}

input:focus, select:focus, textarea:focus {
  border-color: var(--green);
  outline: none;
  box-shadow: 0 0 0 3px #0874431f;
}

.page-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

.page-section {
  padding-block: 52px 80px;
}

.site-header {
  z-index: 10;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  background: #fffffff0;
  border-bottom: 1px solid #0874431f;
  position: sticky;
  top: 0;
  box-shadow: 0 4px 18px #1432200a;
}

.header-inner {
  align-items: center;
  gap: 24px;
  width: min(1280px, 100% - 40px);
  min-height: 72px;
  margin: auto;
  display: flex;
}

.logo, .logo:visited {
  color: var(--green);
  white-space: nowrap;
  align-items: center;
  font-size: 22px;
  font-weight: 800;
  display: flex;
}

.search-form {
  flex: 1;
  max-width: 430px;
  margin: 0;
  display: flex;
}

.search-form input {
  border-right: 0;
  border-radius: 24px 0 0 24px;
  width: 100%;
  margin: 0;
}

.search-form button {
  background: var(--green);
  color: #fff;
  border-radius: 0 24px 24px 0;
  width: 60px;
  margin: 0;
}

.site-header nav {
  gap: 18px;
  margin-left: auto;
  font-size: 14px;
  display: flex;
  border: none !important;
}

.site-header nav a {
  color: #314239;
  border-radius: 9px;
  padding: 7px 10px;
  transition: background-color .2s, color .2s;
}

.site-header nav a:hover {
  background: var(--green-pale);
  color: var(--green);
}

header nav a, header nav a:visited {
  border: none;
}

.register-button, .register-button:visited, .primary-button {
  background: var(--green);
  color: #fff;
  border-radius: 10px;
  padding: 11px 18px;
  font-weight: 700;
  box-shadow: 0 5px 14px #08744329;
}

.register-button:hover, .primary-button:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
}

.signout-form {
  margin: 0;
}

.signout-form button {
  border: 1px solid var(--line);
  color: var(--green);
  background: #fff;
  margin: 0;
  padding: 10px 14px;
}

.signout-form button:hover {
  color: #fff;
}

.hero {
  aspect-ratio: 1280 / 375;
  background: var(--green-pale);
  border-radius: 24px;
  align-items: center;
  width: 100%;
  margin: 28px 0 64px;
  padding: 54px;
  display: flex;
  position: relative;
}

.hero-banner-background {
  z-index: 0;
  object-fit: cover;
  border-radius: inherit;
}

.hero-content {
  z-index: 1;
  width: min(45%, 480px);
  position: relative;
}

.hero-content > a {
  background: var(--green);
  color: #fff;
  border-radius: 24px;
  margin-top: 8px;
  padding: 13px 22px;
  font-weight: 700;
  display: inline-block;
}

.price-adjustment-demo {
  z-index: 2;
  text-align: right;
  background: #ffffffeb;
  border: 1px solid #0874432e;
  border-radius: 14px;
  min-width: 190px;
  margin: 0;
  padding: 14px;
  position: absolute;
  bottom: 24px;
  right: 28px;
  box-shadow: 0 8px 24px #0d3d2a24;
}

.price-adjustment-demo > span {
  color: var(--muted);
  margin-bottom: 7px;
  font-size: 11px;
  font-weight: 700;
  display: block;
}

.price-adjustment-demo button {
  background: var(--green);
  color: #fff;
  border: 0;
  border-radius: 10px;
  margin: 0;
  padding: 10px 15px;
  font-weight: 800;
}

.price-adjustment-demo button:disabled {
  cursor: wait;
  background: #7d9b89;
}

.price-adjustment-demo p {
  min-height: 17px;
  color: var(--green-dark);
  margin: 7px 0 0;
  font-size: 11px;
}

.price-adjustment-demo .price-adjustment-error {
  color: #a82e27;
}

.hero-image div {
  background: #ffffffa6;
  border-radius: 50%;
  place-items: center;
  width: 230px;
  height: 230px;
  font-size: 110px;
  display: grid;
  position: relative;
}

.hero-image strong {
  font-size: 60px;
  position: absolute;
  bottom: 25px;
  right: 8px;
  transform: rotate(-20deg);
}

.product-section {
  margin-bottom: 72px;
}

.section-header, .page-heading {
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 22px;
  display: flex;
}

.section-header h2, .page-heading h1 {
  letter-spacing: -.025em;
  margin: 0;
}

.section-header p:not(.eyebrow) {
  color: var(--muted);
  margin: 6px 0 0;
}

.section-header > a, .section-header > span {
  color: var(--green);
  font-size: 14px;
  font-weight: 700;
}

.product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  display: grid;
}

.home-product-carousel {
  min-width: 0;
}

.home-product-carousel-track {
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: inline mandatory;
  scrollbar-width: none;
  grid-auto-columns: calc(25% - 15px);
  grid-auto-flow: column;
  gap: 20px;
  display: grid;
  overflow-x: auto;
}

.home-product-carousel-track::-webkit-scrollbar {
  display: none;
}

.home-product-carousel-track > * {
  scroll-snap-align: start;
  min-width: 0;
  margin: 0;
}

.home-product-carousel-controls {
  justify-content: flex-end;
  gap: 8px;
  margin-top: 18px;
  display: flex;
}

.home-product-carousel-controls button {
  border: 1px solid var(--line);
  width: 42px;
  height: 42px;
  color: var(--green);
  background: #fff;
  border-radius: 50%;
  place-items: center;
  margin: 0;
  padding: 0;
  font-size: 20px;
  font-weight: 800;
  display: grid;
}

.home-product-carousel-controls button:hover {
  border-color: var(--green);
  background: var(--green-pale);
}

.product-card {
  background: var(--surface);
  border: 1px solid #0874431f;
  border-radius: 16px;
  padding: 0;
  transition: transform .2s, box-shadow .2s, border-color .2s;
  overflow: hidden;
  box-shadow: 0 5px 18px #1432200b;
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px #1432201a;
}

.product-image-wrap {
  position: relative;
}

.product-image {
  aspect-ratio: 1;
  object-fit: cover;
  background: #eef2ef;
  width: 100%;
  display: block;
}

.sale-status, .watch-count {
  background: #ffffffeb;
  border-radius: 20px;
  padding: 6px 9px;
  font-size: 12px;
  font-weight: 700;
  position: absolute;
  top: 12px;
}

.sale-status {
  color: var(--green);
  left: 12px;
}

.watch-count {
  right: 12px;
}

.product-info {
  padding: 15px;
}

.product-category {
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  display: inline-block;
}

.product-title {
  min-height: 44px;
  margin: 9px 0 4px;
  font-size: 16px;
  line-height: 1.35;
}

.product-region {
  color: var(--muted);
  text-overflow: ellipsis;
  white-space: nowrap;
  margin: 0 0 12px;
  font-size: 12px;
  overflow: hidden;
}

.product-price-row {
  align-items: center;
  gap: 8px;
  display: flex;
}

.product-price {
  font-size: 19px;
}

.discount-rate {
  color: #d13b32;
  font-weight: 800;
}

.product-before-price {
  color: #98a19c;
  margin-top: 3px;
  font-size: 12px;
  display: block;
}

.next-evaluation {
  color: var(--muted);
  border-top: 1px solid #edf1ee;
  margin: 12px 0 0;
  padding-top: 10px;
  font-size: 11px;
}

.introduce {
  background: #f3faf4;
  display: flex;
}

.introduce article {
  border: 0;
}

.introduce article p {
  color: #98a19c;
}

.features {
  background: #edf8ef;
  border-radius: 22px;
  margin: 80px 0;
  padding: 44px;
}

.section-title {
  text-align: center;
}

.section-title p {
  color: var(--green);
  font-weight: 800;
}

.feature-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 28px;
  display: grid;
}

.feature-grid article {
  text-align: center;
  background: #fff;
  border-radius: 14px;
  padding: 24px;
}

.feature-grid article > span {
  font-size: 34px;
}

.feature-grid p {
  color: var(--muted);
  font-size: 14px;
}

.product-filters {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 16px;
  grid-template-columns: 1.3fr 1fr 1fr .7fr .7fr 1fr auto;
  align-items: end;
  gap: 12px;
  margin: 0 0 30px;
  padding: 20px;
  display: grid;
}

.product-filters label {
  color: var(--muted);
  margin: 0;
  font-size: 12px;
  font-weight: 700;
}

.product-filters input, .product-filters select {
  width: 100%;
  margin: 6px 0 0;
}

.product-filters button {
  white-space: nowrap;
  background: var(--green);
  color: #fff;
  margin: 0;
}

.empty-state {
  color: var(--muted);
  text-align: center;
  background: #fff;
  border-radius: 16px;
  padding: 80px;
}

.auth-page {
  background: radial-gradient(circle at 50% 22%, #e9f8dfe6, #0000 34%);
  place-items: center;
  width: 100%;
  min-height: calc(100vh - 72px);
  padding-block: 64px 80px;
  display: grid;
}

.auth-form {
  background: #fffffff7;
  border: 1px solid #08744324;
  border-radius: 22px;
  width: min(100%, 480px);
  margin: 0;
  padding: 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 18px 48px #14322017;
}

.auth-form:before {
  background: linear-gradient(90deg, var(--green), #5ebc78);
  content: "";
  height: 5px;
  position: absolute;
  inset: 0 0 auto;
}

.auth-form .eyebrow {
  color: var(--green);
  letter-spacing: .12em;
  margin: 0 0 5px;
  font-size: 12px;
  font-weight: 800;
}

.auth-form h1 {
  letter-spacing: -.035em;
  margin: 0;
  font-size: 34px;
}

.auth-description {
  color: var(--muted);
  margin: 10px 0 28px;
  font-size: 14px;
  line-height: 1.6;
}

.auth-form label {
  color: var(--muted);
  margin-bottom: 14px;
  font-size: 13px;
  font-weight: 700;
  display: block;
}

.auth-form input {
  border-color: var(--line);
  background: #fbfdfb;
  width: 100%;
  margin: 7px 0 0;
}

.auth-form > button {
  border-color: var(--green);
  background: var(--green);
  color: #fff;
  width: 100%;
  margin: 10px 0 0;
  font-weight: 800;
  box-shadow: 0 7px 18px #0874432e;
}

.auth-form > button:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
}

.address-field {
  margin-bottom: 14px;
}

.address-field > label {
  margin-bottom: 0;
}

.address-control {
  align-items: stretch;
  gap: 8px;
  display: flex;
}

.address-control input {
  background: #f3f6f4;
  flex: 1;
  min-width: 0;
}

.address-control button {
  border-color: var(--green);
  width: auto;
  color: var(--green);
  white-space: nowrap;
  background: #fff;
  margin-top: 6px;
  font-weight: 700;
}

.address-control button:hover {
  background: var(--pale);
}

.address-field small {
  color: var(--muted);
  margin-top: 6px;
  font-size: 11px;
  display: block;
}

.address-error {
  color: #a82e27;
  margin: 8px 0 0;
  font-size: 12px;
}

.address-search-layer {
  z-index: 100;
  background: #0d261b8c;
  padding: 20px;
  position: fixed;
  inset: 0;
}

.address-search-layer[hidden] {
  display: none;
}

.address-search-layer section {
  background: #fff;
  border-radius: 14px;
  width: min(100%, 520px);
  margin: 5vh auto 0;
  padding: 0;
  overflow: hidden;
}

.address-search-header {
  border-bottom: 1px solid var(--line);
  justify-content: space-between;
  align-items: center;
  min-height: 52px;
  padding: 8px 14px;
  display: flex;
}

.address-search-header button {
  width: auto;
  color: var(--green);
  background: #fff;
  margin: 0;
  padding: 7px 12px;
}

.address-search-content {
  height: min(72vh, 520px);
}

.auth-form > p:last-child {
  color: var(--muted);
  text-align: center;
  margin-bottom: 0;
  font-size: 13px;
}

.auth-form > p:last-child a {
  color: var(--green);
  font-weight: 700;
}

.form-error {
  color: #a82e27;
  background: #fff0ef;
  border: 1px solid #f2cbc7;
  border-radius: 9px;
  margin: 0 0 18px;
  padding: 11px 13px;
  font-size: 13px;
}

.product-form {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 18px;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin: 0;
  padding: 30px;
  display: grid;
}

.product-form label {
  color: var(--muted);
  margin: 0;
  font-size: 13px;
  font-weight: 700;
}

.product-form input, .product-form select, .product-form textarea {
  width: 100%;
  margin: 6px 0 0;
}

.product-form textarea {
  resize: vertical;
}

.product-form .wide-field {
  grid-column: 1 / -1;
}

.product-form button {
  background: var(--green);
  color: #fff;
  margin: 0;
}

.form-help {
  color: var(--muted);
  background: #edf8ef;
  border-radius: 8px;
  margin: 0;
  padding: 12px;
  font-size: 13px;
}

.image-upload-field > label {
  display: block;
}

.image-upload-field > small {
  color: var(--muted);
  margin-top: 6px;
  font-size: 12px;
  display: block;
}

.image-upload-error {
  color: #a82e27;
  margin: 8px 0 0;
  font-size: 12px;
}

.image-preview-list {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
  display: grid;
}

.image-preview-list figure {
  min-width: 0;
  margin: 0;
  position: relative;
}

.image-preview-list img {
  aspect-ratio: 1;
  border: 1px solid var(--line);
  object-fit: cover;
  background: #eef2ef;
  border-radius: 10px;
  width: 100%;
  display: block;
}

.image-preview-list figcaption {
  color: var(--muted);
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-top: 5px;
  font-size: 11px;
  font-weight: 400;
  overflow: hidden;
}

.product-form .image-preview-remove {
  color: #fff;
  background: #17221cd1;
  border: 0;
  border-radius: 50%;
  width: 26px;
  height: 26px;
  margin: 0;
  padding: 0;
  line-height: 1;
  position: absolute;
  top: 5px;
  right: 5px;
}

.product-detail {
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, .95fr);
  gap: 56px;
  display: grid;
}

.product-detail > * {
  min-width: 0;
}

.detail-image-panel img {
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 20px;
  width: 100%;
}

.product-slider-main {
  background: #eef2ef;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.detail-image-panel .product-slider-image {
  border-radius: 20px;
  display: block;
}

.product-slider-control {
  width: 42px;
  height: 42px;
  color: var(--green-dark);
  background: #ffffffe6;
  border: 0;
  border-radius: 50%;
  margin: 0;
  padding: 0 0 4px;
  font-size: 32px;
  line-height: 1;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  box-shadow: 0 3px 12px #0d3d2a33;
}

.product-slider-control.previous {
  left: 14px;
}

.product-slider-control.next {
  right: 14px;
}

.product-slider-count {
  color: #fff;
  background: #17221cbf;
  border-radius: 20px;
  padding: 5px 10px;
  font-size: 12px;
  position: absolute;
  bottom: 14px;
  right: 14px;
}

.product-slider-thumbnails {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 9px;
  margin-top: 12px;
  display: grid;
}

.product-slider-thumbnails button {
  background: #fff;
  border: 2px solid #0000;
  border-radius: 11px;
  min-width: 0;
  margin: 0;
  padding: 3px;
}

.product-slider-thumbnails button.selected {
  border-color: var(--green);
}

.detail-image-panel .product-slider-thumbnails img {
  border-radius: 7px;
  display: block;
}

.detail-summary h1 {
  margin: 12px 0;
  font-size: 34px;
}

.detail-summary > p {
  color: var(--muted);
  line-height: 1.7;
}

.product-facts {
  border-block: 1px solid var(--line);
  margin: 28px 0;
}

.product-facts div {
  border-bottom: 1px solid #edf1ee;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 0;
  display: flex;
}

.product-facts div:last-child {
  border-bottom: 0;
}

.product-facts dt {
  color: var(--muted);
}

.product-facts dd {
  text-align: right;
  margin: 0;
  font-weight: 700;
}

.seller-box {
  background: #edf8ef;
  border-radius: 12px;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 18px;
  padding: 16px;
  display: flex;
}

.seller-box span {
  color: var(--muted);
  font-size: 13px;
}

.primary-button {
  border: 0;
  width: 100%;
}

.primary-button:disabled {
  cursor: not-allowed;
  background: #9ca7a0;
}

.watch-form {
  margin: 10px 0 0;
}

.watch-form button {
  border: 1px solid var(--green);
  width: 100%;
  color: var(--green);
  background: #fff;
  border-radius: 10px;
  margin: 0;
}

.watch-form button:hover {
  color: #fff;
}

.activity-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  display: grid;
}

.activity-grid article, .activity-grid > a {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 16px;
  padding: 28px;
}

.activity-grid > a {
  transition: border-color .2s, transform .2s;
  display: block;
}

.activity-grid > a:hover {
  border-color: var(--green);
  transform: translateY(-2px);
}

.activity-grid span {
  color: var(--green);
  font-weight: 700;
}

.activity-grid strong {
  margin: 18px 0 5px;
  font-size: 38px;
  display: block;
}

.activity-grid p {
  color: var(--muted);
  margin: 0;
  font-size: 13px;
}

.price-history {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 20px;
  margin-top: 70px;
  padding: 32px;
}

.price-chart {
  border-bottom: 1px solid var(--line);
  align-items: end;
  gap: 16px;
  height: 260px;
  padding: 22px 12px 0;
  display: flex;
}

.price-point {
  text-align: center;
  flex-direction: column;
  flex: 1;
  justify-content: end;
  align-items: center;
  gap: 7px;
  height: 100%;
  font-size: 12px;
  display: flex;
}

.price-bar {
  background: linear-gradient(#62b97f, var(--green));
  border-radius: 8px 8px 0 0;
  width: min(70px, 70%);
  max-height: 170px;
  display: block;
}

.price-point time, .price-reasons time {
  color: var(--muted);
  font-size: 11px;
}

.price-reasons {
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.price-reasons li {
  border-bottom: 1px solid #edf1ee;
  align-items: start;
  gap: 15px;
  padding: 14px 0;
  display: flex;
}

.price-reasons li div {
  gap: 4px;
  display: grid;
}

.change-status {
  text-align: center;
  background: #edf1ee;
  border-radius: 12px;
  min-width: 52px;
  padding: 4px 7px;
  font-size: 11px;
  font-weight: 800;
}

.change-status.down {
  color: var(--green);
  background: #e8f5ec;
}

.purchase-link {
  text-align: center;
  display: block;
}

.checkout-page {
  grid-column: 1 / -1;
  width: min(1040px, 100% - 40px);
  max-width: 1040px;
  margin: 0 auto;
  padding-block: 52px 80px;
}

.checkout-page-heading {
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 28px;
  display: flex;
}

.checkout-page-heading h1 {
  margin: 0;
}

.checkout-page-heading p:not(.eyebrow) {
  color: var(--muted);
  margin-bottom: 0;
}

.checkout-page-heading > a {
  color: var(--green);
  font-weight: 700;
}

.checkout-layout {
  grid-template-columns: minmax(0, .8fr) minmax(420px, 1.2fr);
  align-items: start;
  gap: 24px;
  display: grid;
}

.checkout-summary, .checkout-form, .mock-payment-complete, .checkout-unavailable {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 18px;
  margin: 0;
  padding: 28px;
}

.checkout-summary h2, .checkout-form h2 {
  margin-top: 0;
}

.checkout-product {
  border-bottom: 1px solid var(--line);
  align-items: center;
  gap: 16px;
  padding-bottom: 22px;
  display: flex;
}

.checkout-product img {
  object-fit: cover;
  background: #eef2ef;
  border-radius: 12px;
  width: 110px;
  height: 110px;
}

.checkout-product div {
  gap: 5px;
  min-width: 0;
  display: grid;
}

.checkout-product span, .checkout-product small {
  color: var(--muted);
}

.checkout-product strong {
  font-size: 18px;
}

.checkout-summary dl {
  margin-bottom: 0;
}

.checkout-summary dl div, .mock-payment-complete dl div {
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  display: flex;
}

.checkout-summary dd, .mock-payment-complete dd {
  text-align: right;
  margin: 0;
  font-weight: 700;
}

.checkout-summary .checkout-total {
  border-top: 1px solid var(--line);
  color: var(--green);
  margin-top: 8px;
  padding-top: 18px;
  font-size: 18px;
  font-weight: 800;
}

.checkout-form-heading {
  margin-bottom: 22px;
}

.checkout-form label:not(.payment-methods label):not(.mock-payment-notice label) {
  color: var(--muted);
  margin-bottom: 15px;
  font-size: 13px;
  font-weight: 700;
  display: block;
}

.checkout-form input:not([type="radio"]):not([type="checkbox"]) {
  width: 100%;
  margin: 6px 0 0;
}

.payment-methods {
  border: 1px solid var(--line);
  border-radius: 12px;
  margin: 22px 0;
  padding: 18px;
}

.payment-methods legend {
  color: var(--muted);
  padding: 0 6px;
  font-size: 13px;
  font-weight: 700;
}

.payment-methods label {
  align-items: center;
  gap: 7px;
  margin: 8px 0;
  display: flex;
}

.payment-methods input, .mock-payment-notice input {
  width: auto;
  margin: 0;
}

.mock-payment-notice {
  background: #fff8df;
  border-radius: 12px;
  margin-bottom: 20px;
  padding: 16px;
  font-size: 13px;
}

.mock-payment-notice p {
  color: var(--muted);
  margin: 6px 0 12px;
  line-height: 1.55;
}

.mock-payment-notice label {
  align-items: center;
  gap: 8px;
  font-weight: 700;
  display: flex;
}

.checkout-form > button.primary-button {
  background: var(--green);
  color: #fff;
  width: 100%;
  margin: 0;
}

.mock-payment-complete {
  text-align: center;
}

.mock-payment-complete > span {
  background: var(--green-pale);
  width: 58px;
  height: 58px;
  color: var(--green);
  border-radius: 50%;
  place-items: center;
  margin: 0 auto 18px;
  font-size: 28px;
  font-weight: 800;
  display: grid;
}

.mock-payment-complete dl {
  border-block: 1px solid var(--line);
  max-width: 460px;
  margin: 20px auto;
  padding-block: 8px;
}

.mock-payment-links {
  justify-content: center;
  align-items: center;
  gap: 12px;
  display: flex;
}

.mock-payment-links > a:first-child {
  color: var(--green);
  font-weight: 700;
}

.checkout-unavailable {
  text-align: center;
}

.checkout-unavailable .primary-button {
  width: auto;
  margin-top: 10px;
  display: inline-block;
}

.mypage-page {
  grid-column: 1 / -1;
  width: min(1280px, 100% - 40px);
  max-width: 1280px;
  margin: 0 auto;
  padding-block: 52px 80px;
}

.mypage-heading {
  margin-bottom: 28px;
}

.mypage-heading h1 {
  margin: 0;
}

.mypage-heading > p:last-child {
  color: var(--muted);
}

.mypage-activity-section {
  margin-top: 54px;
  scroll-margin-top: 96px;
}

.mypage-section-heading {
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 18px;
  display: flex;
}

.mypage-section-heading h2 {
  margin: 0;
}

.mypage-section-heading > a {
  color: var(--green);
  font-size: 14px;
  font-weight: 700;
}

.mypage-product-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
}

.mypage-product-list li {
  margin: 0;
}

.mypage-product-list a {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 14px;
  grid-template-columns: 110px minmax(0, 1fr) auto;
  align-items: center;
  gap: 15px;
  min-height: 138px;
  padding: 14px;
  transition: border-color .2s, transform .2s;
  display: grid;
}

.mypage-product-list a:hover {
  border-color: var(--green);
  transform: translateY(-2px);
}

.mypage-product-list img {
  object-fit: cover;
  background: #eef2ef;
  border-radius: 10px;
  width: 110px;
  height: 110px;
}

.mypage-product-list a > div {
  gap: 4px;
  min-width: 0;
  display: grid;
}

.mypage-product-list a > div > span {
  background: var(--green-pale);
  width: fit-content;
  color: var(--green);
  border-radius: 20px;
  padding: 3px 7px;
  font-size: 11px;
  font-weight: 800;
}

.mypage-product-list strong, .mypage-product-list small {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.mypage-product-list small {
  color: var(--muted);
}

.mypage-product-list p {
  justify-content: space-between;
  gap: 10px;
  margin: 7px 0 0;
  display: flex;
}

.mypage-product-list time {
  color: var(--muted);
  font-size: 11px;
}

.mypage-product-list a > span {
  color: var(--green);
  font-size: 26px;
}

.mypage-empty {
  border: 1px dashed var(--line);
  color: var(--muted);
  text-align: center;
  background: #fff;
  border-radius: 14px;
  margin: 0;
  padding: 34px;
}

.my-board-page {
  padding-block: 52px 80px;
}

.my-board-product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  display: grid;
}

.my-board-product-grid > * {
  min-width: 0;
  margin: 0;
}

.legal-page {
  max-width: 840px;
  margin: 0 auto;
}

.legal-page > header {
  margin-bottom: 32px;
}

.legal-effective-date {
  color: var(--muted);
  font-size: 14px;
}

.legal-notice {
  border: 1px solid var(--line);
  background: var(--green-pale);
  border-radius: 14px;
  margin-bottom: 36px;
  padding: 20px;
}

.legal-notice p {
  margin-bottom: 0;
}

.legal-page section {
  padding-block: 8px;
}

.legal-page section p, .legal-page li {
  line-height: 1.75;
}

.legal-page section a {
  color: var(--green);
  font-weight: 700;
  text-decoration: underline;
}

.legal-supplement {
  border-top: 1px solid var(--line);
  color: inherit;
  background: none;
  margin-top: 32px;
  padding-top: 24px;
}

footer {
  background: var(--green-dark);
  color: #fff;
  margin-top: 70px;
  padding: 36px 0;
}

.footer-inner {
  justify-content: space-between;
  gap: 20px;
  width: min(1180px, 100% - 40px);
  margin: auto;
  display: flex;
}

.footer-inner p {
  color: #b9cec2;
  margin-bottom: 0;
}

.footer-inner nav {
  align-items: center;
  gap: 20px;
  font-size: 13px;
  display: flex;
}

@media (max-width: 980px) {
  .site-header nav {
    display: none;
  }

  .product-grid, .feature-grid, .my-board-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-product-carousel-track {
    grid-auto-columns: calc(50% - 10px);
  }

  .product-filters {
    grid-template-columns: repeat(3, 1fr);
  }

  .checkout-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 650px) {
  .page-container, .header-inner, .footer-inner {
    width: min(100% - 24px, 1180px);
  }

  .header-inner {
    min-height: 64px;
  }

  .search-form, .register-button {
    display: none;
  }

  .auth-page {
    min-height: calc(100vh - 64px);
    padding-block: 34px 50px;
  }

  .auth-form {
    border-radius: 18px;
    padding: 32px 22px;
  }

  .auth-form h1 {
    font-size: 30px;
  }

  .hero {
    aspect-ratio: auto;
    flex-direction: column;
    align-items: flex-start;
    min-height: 560px;
    padding: 34px 25px;
  }

  .hero-content {
    width: min(62%, 480px);
  }

  .price-adjustment-demo {
    align-self: flex-end;
    margin-top: 18px;
    padding: 10px;
    position: relative;
    bottom: auto;
    right: auto;
  }

  .price-adjustment-demo > span {
    display: none;
  }

  .price-adjustment-demo p {
    max-width: 160px;
  }

  .hero-image {
    display: none;
  }

  .product-grid, .feature-grid, .my-board-product-grid, .product-filters, .product-detail, .product-form, .activity-grid {
    grid-template-columns: 1fr;
  }

  .home-product-carousel-track {
    grid-auto-columns: 86%;
    gap: 12px;
  }

  .features {
    padding: 28px 18px;
  }

  .product-detail {
    gap: 28px;
  }

  .price-history {
    padding: 20px 14px;
  }

  .price-chart {
    overflow-x: auto;
  }

  .price-point {
    min-width: 90px;
  }

  .image-preview-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .checkout-page {
    width: min(100% - 24px, 1040px);
    padding-block: 34px 60px;
  }

  .checkout-page-heading {
    flex-direction: column;
    align-items: start;
  }

  .checkout-layout {
    grid-template-columns: 1fr;
  }

  .checkout-summary, .checkout-form, .mock-payment-complete, .checkout-unavailable {
    padding: 20px;
  }

  .mock-payment-links {
    flex-direction: column;
    align-items: stretch;
  }

  .mypage-page {
    width: min(100% - 24px, 1280px);
    padding-block: 34px 60px;
  }

  .my-board-page {
    padding-block: 34px 60px;
  }

  .mypage-product-list {
    grid-template-columns: 1fr;
  }

  .mypage-product-list a {
    grid-template-columns: 82px minmax(0, 1fr) auto;
  }

  .mypage-product-list img {
    width: 82px;
    height: 82px;
  }

  .footer-inner {
    flex-direction: column;
  }
}

/*# sourceMappingURL=_1b0gphr._.css.map*/