/* [project]/styles/globals.css [app-client] (css) */
:root {
  --bg: #fff;
  --bg-alt: #f5f5f5;
  --text: #2c2c2c;
  --text-sub: #6e6e6e;
  --text-muted: #a3a3a3;
  --border: #e0e0e0;
  --border-light: #eee;
  --border-strong: #d6d3cb;
  --border-soft: #e5e2da;
  --accent: #2c2c2c;
  --accent-inv: #fff;
  --danger: #b8453a;
  --success: #3a7d4a;
  --warning: #c67d1a;
  --surface-danger-soft: #b8453a0a;
  --font-sans: var(--font-inter), -apple-system, BlinkMacSystemFont, var(--font-pretendard), sans-serif;
  --font-mono: var(--font-inter), monospace;
  --max-w: 100%;
  --header-h: 56px;
  --footer-h: 48px;
  --transition: .28s cubic-bezier(.25, .1, .25, 1);
}

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

img, div:not(.product-card__img), section, article, aside {
  border-radius: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: -.01em;
  font-size: 16px;
  line-height: 1.5;
}

body.is-native-webview {
  -webkit-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
  transition: opacity var(--transition);
  text-decoration: none;
}

a:active {
  opacity: .6;
}

button {
  cursor: pointer;
  color: inherit;
  background: none;
  border: none;
  font-family: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  border: 1.8px solid var(--border);
  transition: border-color var(--transition);
  background: none;
  border-radius: 4px;
  outline: none;
  width: 100%;
  padding: .875rem 1rem;
}

input:disabled, textarea:disabled, select:disabled {
  background-color: #f0f0f0;
}

input:focus, textarea:focus, select:focus {
  border-color: var(--text);
}

body.is-native-webview input, body.is-native-webview textarea, body.is-native-webview select {
  -webkit-user-select: auto;
  user-select: auto;
}

input::placeholder, textarea::placeholder {
  color: var(--text-muted);
  letter-spacing: .02em;
}

h1 {
  letter-spacing: -.05em;
  text-transform: uppercase;
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 800;
  line-height: .88;
}

h2 {
  letter-spacing: -.03em;
  text-transform: uppercase;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  line-height: 1;
}

h3 {
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 600;
}

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 13rem;
}

.grid-line {
  border-top: 1px solid var(--text);
}

.grid-line--light {
  border-top: 1px solid var(--border);
}

.header {
  z-index: 1000;
  background: var(--bg);
  transition: box-shadow var(--transition);
  position: sticky;
  top: 0;
}

.header.scrolled {
  box-shadow: none;
}

.nav {
  height: var(--header-h);
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.nav-left .logo {
  letter-spacing: .1em;
  color: #141414;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.2;
}

.nav-left .logo:active {
  opacity: 1;
}

.nav-right {
  align-items: center;
  gap: 1.5rem;
  display: flex;
}

.nav-right a, .nav-right button {
  letter-spacing: .04em;
  text-transform: uppercase;
  font-family: inherit;
  font-size: .8125rem;
  font-weight: 600;
  position: relative;
}

.nav-right a:after, .nav-right button:after {
  content: "";
  background: var(--text);
  width: 0;
  height: 1px;
  transition: width var(--transition);
  position: absolute;
  bottom: -2px;
  left: 0;
}

.nav-right a:active:after, .nav-right button:active:after {
  width: 100%;
}

.nav-right a:active, .nav-right button:active {
  opacity: 1;
  color: var(--text-sub);
}

.footer {
  padding: 1rem 0;
}

.footer-line {
  border-top: 1px solid var(--border);
  margin-bottom: .75rem;
}

.footer-content {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.footer-links {
  gap: .8rem;
  display: flex;
}

.footer-links a, .footer-content p {
  letter-spacing: .05em;
  color: var(--text);
  font-size: .6875rem;
  font-weight: 600;
}

.btn {
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
  border: 1px solid #0000;
  justify-content: center;
  align-items: center;
  padding: 1rem 2.5rem;
  font-size: .75rem;
  font-weight: 600;
  display: inline-flex;
}

.btn-primary {
  background: var(--text);
  color: var(--accent-inv);
  border-color: var(--text);
}

.btn-primary:active {
  color: var(--text);
  background: none;
}

.btn-outline {
  color: var(--text);
  background: none;
  border-width: 2px;
  border-color: silver;
  padding: .5rem 1.5rem;
  font-size: .6875rem;
  border-radius: 5px !important;
}

.btn-outline:active {
  background: var(--text);
  color: var(--accent-inv);
}

.btn-danger {
  color: var(--danger);
  border-color: var(--danger);
  background: none;
}

.btn-danger:active {
  background: var(--danger);
  color: #fff;
}

.btn-full {
  width: 100%;
}

.btn:disabled {
  opacity: .35;
  cursor: not-allowed;
  pointer-events: none;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-sub);
  margin-bottom: .5rem;
  font-size: .6875rem;
  font-weight: 600;
  display: block;
}

.form-error {
  color: var(--danger);
  margin-top: .375rem;
  font-size: .75rem;
}

.product-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  display: grid;
}

.product-card {
  background: var(--bg);
  transition: background var(--transition), box-shadow var(--transition);
  cursor: pointer;
  color: inherit;
  padding: 0;
  text-decoration: none;
  display: block;
}

.product-card--preview {
  background: linear-gradient(135deg, #345c9c14, transparent 34%), var(--bg);
  box-shadow: inset 0 0 0 1px #345c9c;
}

.product-card:active {
  background: var(--bg-alt);
  opacity: 1;
}

.product-card--preview:active {
  background: linear-gradient(135deg, #345c9c1f, transparent 34%), var(--bg-alt);
}

.product-card__img {
  aspect-ratio: 1;
  background: var(--bg-alt);
  border: 1.8px solid #d5d5d5;
  border-radius: 3px;
  margin-bottom: .5rem;
  position: relative;
  overflow: hidden;
}

.product-card__preview-badge {
  z-index: 1;
  color: #345c9c;
  letter-spacing: .12em;
  background: #ffffffeb;
  border: 1px solid #345c9c;
  padding: .22rem .45rem;
  font-size: .5625rem;
  font-weight: 700;
  position: absolute;
  top: .75rem;
  left: .75rem;
}

.product-card__img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: transform .6s;
}

.product-card:active .product-card__img img {
  transform: scale(1.04);
}

.product-card__info {
  flex-direction: column;
  gap: 2px;
  display: flex;
}

.product-card__brand {
  letter-spacing: .08em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin: 0;
  font-size: .625rem;
  font-weight: 600;
}

.product-card__name {
  color: #222;
  text-transform: uppercase;
  letter-spacing: 0;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  transform-origin: 0;
  -webkit-box-orient: vertical;
  margin: 0;
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  font-size: 13px;
  font-weight: 450;
  line-height: 1.4;
  display: -webkit-box;
  overflow: hidden;
  transform: scaleY(1.05);
}

.product-card__price {
  color: #222;
  margin: 0;
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  font-size: 12px;
  font-weight: 420;
}

.section-header {
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 1rem;
  padding-bottom: .75rem;
  display: flex;
}

.section-header h2 {
  letter-spacing: .06em;
  font-size: 1.125rem;
  font-weight: 700;
}

.section-header a {
  letter-spacing: .06em;
  font-size: .75rem;
  font-weight: 600;
}

.badge {
  letter-spacing: .08em;
  text-transform: uppercase;
  border: 1px solid;
  padding: .25rem .625rem;
  font-size: .625rem;
  font-weight: 700;
  display: inline-block;
}

.page-enter {
  animation: .4s forwards fadeIn;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.skeleton {
  background: linear-gradient(90deg, var(--bg-alt) 25%, var(--border-light) 50%, var(--bg-alt) 75%);
  background-size: 200% 100%;
  animation: 1.5s ease-in-out infinite shimmer;
}

@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --header-h: auto;
  }

  .container {
    padding: 0 1rem;
  }

  .nav {
    flex-wrap: wrap;
    gap: 0;
    height: auto;
    padding: .75rem 0;
    display: flex;
  }

  .nav-left {
    flex: 1;
  }

  .nav-left .logo {
    font-size: 1.125rem;
  }

  .nav-center {
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    order: 3;
    justify-content: flex-start;
    gap: 1.25rem;
    width: 100%;
    padding-top: .625rem;
    overflow-x: auto;
  }

  .nav-center::-webkit-scrollbar {
    display: none;
  }

  .nav-center a {
    white-space: nowrap;
    font-size: .5625rem;
  }

  .nav-right {
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: .5rem;
  }

  .nav-right a, .nav-right button {
    white-space: nowrap;
    font-size: .65rem !important;
  }

  .product-grid {
    background: none;
    border: none;
    grid-template-columns: repeat(2, 1fr);
    gap: .75rem;
  }

  .product-card {
    border: none;
    padding: 0;
  }

  .product-card--preview {
    padding: .375rem;
    box-shadow: inset 0 0 0 1px #345c9c;
  }

  .product-card__img {
    margin-bottom: .625rem;
  }

  .product-card__preview-badge {
    top: .5rem;
    left: .5rem;
  }

  .product-card__brand {
    margin-bottom: .125rem;
    font-size: .5rem;
  }

  .product-card__name {
    -webkit-line-clamp: 1;
    line-clamp: 1;
    min-height: auto;
  }

  h1 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  h2 {
    font-size: clamp(1.25rem, 5vw, 1.75rem);
  }

  .section-header {
    margin-bottom: 0;
  }

  .section-header h2 {
    font-size: .75rem;
  }

  .section-header a {
    font-size: .625rem;
  }

  .btn {
    padding: .75rem 1.5rem;
    font-size: .625rem;
  }

  input, textarea, select {
    padding: .75rem .875rem;
    font-size: 16px;
  }

  .footer {
    padding: 1rem 0;
  }

  .footer-links {
    flex-wrap: wrap;
  }

  .footer p {
    font-size: .5625rem;
  }
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: none;
}

::-webkit-scrollbar-thumb {
  background: var(--border);
}

::selection {
  background: var(--text);
  color: var(--bg);
}

@media (hover: hover) and (pointer: fine) {
  a:hover {
    opacity: .6;
  }

  .nav-left .logo:hover {
    opacity: 1;
  }

  .nav-right a:hover:after, .nav-right button:hover:after {
    width: 100%;
  }

  .nav-right a:hover, .nav-right button:hover {
    opacity: 1;
    color: var(--text-sub);
  }

  .btn-primary:hover {
    color: var(--text);
    background: none;
  }

  .btn-outline:hover {
    background: var(--text);
    color: var(--accent-inv);
  }

  .btn-danger:hover {
    background: var(--danger);
    color: #fff;
  }

  .product-card:hover {
    background: var(--bg-alt);
    opacity: 1;
  }

  .product-card--preview:hover {
    background: linear-gradient(135deg, #345c9c1f, transparent 34%), var(--bg-alt);
  }

  .product-card:hover .product-card__img img {
    transform: scale(1.04);
  }

  ::-webkit-scrollbar-thumb:hover {
    background: var(--text-muted);
  }
}

.page-shell {
  padding-top: 3rem;
  padding-bottom: 6rem;
}

.page-title {
  letter-spacing: -.04em;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1;
}

.empty-state {
  text-align: center;
  padding: 5rem 0;
}

.empty-state__title {
  letter-spacing: .2em;
  color: var(--text-muted);
  font-size: 1rem;
  font-weight: 700;
}

.empty-state__sub {
  color: var(--text-muted);
  margin-top: .5rem;
  font-size: .875rem;
}

.section-label {
  letter-spacing: .15em;
  color: var(--text-sub);
  text-transform: uppercase;
  font-size: .6875rem;
  font-weight: 700;
}

.summary-row {
  color: var(--text-sub);
  justify-content: space-between;
  margin-bottom: .75rem;
  font-size: .8125rem;
  display: flex;
}

.summary-total {
  justify-content: space-between;
  font-size: 1rem;
  font-weight: 800;
  display: flex;
}

.pagination {
  border-top: 1px solid var(--border-strong);
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 2rem;
  display: flex;
}

.pagination__btn {
  letter-spacing: .12em;
  font-size: .6875rem;
  font-weight: 600;
  font-family: var(--font-inter), sans-serif;
  color: var(--text);
  text-decoration: none;
}

.pagination__btn--disabled {
  opacity: .3;
  cursor: default;
  pointer-events: none;
}

.pagination__info {
  font-size: .75rem;
  font-weight: 500;
  font-family: var(--font-inter), monospace;
  letter-spacing: .1em;
  color: var(--text-sub);
}

.breadcrumb {
  letter-spacing: .1em;
  color: var(--text-muted);
  align-items: center;
  gap: .5rem;
  margin-bottom: 1rem;
  font-size: .6875rem;
  display: flex;
}

.breadcrumb__link {
  color: var(--text-sub);
}

.breadcrumb__sep {
  color: var(--border-strong);
}

/* [project]/app/inter_a3a6de04.module.css [app-client] (css) */
@font-face {
  font-family: inter;
  src: url("../media/Inter_VariableFont_opsz,wght-s.p.cf290510.ttf") format("truetype");
  font-display: swap;
  font-weight: 100 900;
  font-style: normal;
}

@font-face {
  font-family: inter;
  src: url("../media/Inter_Italic_VariableFont_opsz,wght-s.p.008c6788.ttf") format("truetype");
  font-display: swap;
  font-weight: 100 900;
  font-style: italic;
}

@font-face {
  font-family: inter Fallback;
  src: local(Arial);
  ascent-override: 89.79%;
  descent-override: 22.36%;
  line-gap-override: 0.0%;
  size-adjust: 107.89%;
}

.inter_a3a6de04-module__gdr2jq__className {
  font-family: inter, inter Fallback;
}

.inter_a3a6de04-module__gdr2jq__variable {
  --font-inter: "inter", "inter Fallback";
}

/* [project]/app/pretendard_b3c4fe18.module.css [app-client] (css) */
@font-face {
  font-family: pretendard;
  src: url("../media/PretendardVariable-s.p.77d5d991.woff2") format("woff2");
  font-display: swap;
  font-weight: 100 900;
}

@font-face {
  font-family: pretendard Fallback;
  src: local(Arial);
  ascent-override: 93.76%;
  descent-override: 23.75%;
  line-gap-override: 0.0%;
  size-adjust: 101.55%;
}

.pretendard_b3c4fe18-module__G2YPAq__className {
  font-family: pretendard, pretendard Fallback;
}

.pretendard_b3c4fe18-module__G2YPAq__variable {
  --font-pretendard: "pretendard", "pretendard Fallback";
}

/* [project]/components/full-screen-loader/FullScreenLoader.module.css [app-client] (css) */
.FullScreenLoader-module__ZMqPjW__overlay {
  z-index: 9999;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  opacity: 1;
  background-color: #ffffffe6;
  justify-content: center;
  align-items: center;
  transition: opacity .6s cubic-bezier(.22, 1, .36, 1);
  display: flex;
  position: fixed;
  inset: 0;
}

.FullScreenLoader-module__ZMqPjW__exiting {
  opacity: 0;
}

.FullScreenLoader-module__ZMqPjW__content {
  opacity: 0;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  transition: opacity .8s cubic-bezier(.22, 1, .36, 1) .2s, transform .8s cubic-bezier(.22, 1, .36, 1) .2s;
  display: flex;
  transform: translateY(8px);
}

.FullScreenLoader-module__ZMqPjW__contentActive {
  opacity: 1;
  transform: translateY(0);
}

.FullScreenLoader-module__ZMqPjW__loader {
  --loader-size: 64px;
  --loader-speed: 1.8s;
  --loader-color: #141414;
  width: var(--loader-size);
  height: var(--loader-size);
  justify-content: space-between;
  align-items: center;
  display: flex;
  position: relative;
}

.FullScreenLoader-module__ZMqPjW__dot {
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
  inset: 0;
}

.FullScreenLoader-module__ZMqPjW__dot:before {
  content: "";
  width: calc(var(--loader-size) * .22);
  height: calc(var(--loader-size) * .22);
  background-color: var(--loader-color);
  will-change: transform;
  border-radius: 50%;
  display: block;
}

.FullScreenLoader-module__ZMqPjW__dot:first-child {
  animation: FullScreenLoader-module__ZMqPjW__leapFrog var(--loader-speed) ease infinite;
}

.FullScreenLoader-module__ZMqPjW__dot:nth-child(2) {
  transform: translateX(calc(var(--loader-size) * .4));
  animation: FullScreenLoader-module__ZMqPjW__leapFrog var(--loader-speed) ease calc(var(--loader-speed) / -1.5) infinite;
}

.FullScreenLoader-module__ZMqPjW__dot:nth-child(3) {
  transform: translateX(calc(var(--loader-size) * .8));
  animation: FullScreenLoader-module__ZMqPjW__leapFrog var(--loader-speed) ease calc(var(--loader-speed) / -3) infinite;
}

.FullScreenLoader-module__ZMqPjW__message {
  color: #1414148c;
  letter-spacing: .24em;
  opacity: 0;
  margin: 0;
  font-size: 11px;
  transition: opacity .5s;
}

.FullScreenLoader-module__ZMqPjW__messageActive {
  opacity: 1;
}

@keyframes FullScreenLoader-module__ZMqPjW__leapFrog {
  0% {
    transform: translateX(0)rotate(0);
  }

  33.333% {
    transform: translateX(0)rotate(180deg);
  }

  66.666% {
    transform: translateX(calc(var(--loader-size) * -.4)) rotate(180deg);
  }

  99.999% {
    transform: translateX(calc(var(--loader-size) * -.8)) rotate(180deg);
  }

  100% {
    transform: translateX(0)rotate(0);
  }
}

/* [project]/app/brandlogofont_63a9d9e7.module.css [app-client] (css) */
@font-face {
  font-family: brandLogoFont;
  src: url("../media/Recoleta Regular-s.p.03c28d3b.woff2") format("woff2");
  font-display: swap;
  font-weight: 450;
  font-style: normal;
}

@font-face {
  font-family: brandLogoFont Fallback;
  src: local(Arial);
  ascent-override: 100.87%;
  descent-override: 36.3%;
  line-gap-override: 0.0%;
  size-adjust: 99.14%;
}

.brandlogofont_63a9d9e7-module__p7x8XG__className {
  font-family: brandLogoFont, brandLogoFont Fallback;
  font-style: normal;
  font-weight: 450;
}

/* [project]/app/header.module.css [app-client] (css) */
.header-module__u7VJiG__adminLink {
  color: #3a7d4a;
}

.header-module__u7VJiG__logoutButton {
  font-size: .6875rem;
  font-family: var(--font-inter), monospace;
  letter-spacing: .06em;
  font-weight: 500;
}

/* [project]/components/LegalFooter.module.css [app-client] (css) */
.LegalFooter-module__P1PGGa__legalFooter {
  background: var(--bg-alt);
  border-top: 1px solid var(--border-light);
  padding: 2rem 0 2.5rem;
}

.LegalFooter-module__P1PGGa__grid {
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: .5rem 2rem;
  margin: 0;
  display: grid;
}

.LegalFooter-module__P1PGGa__entry {
  color: var(--text-muted);
  font-size: 10px;
  line-height: 1.8;
}

.LegalFooter-module__P1PGGa__entry dt {
  font-weight: 500;
  display: inline;
}

.LegalFooter-module__P1PGGa__entry dt:after {
  content: ": ";
}

.LegalFooter-module__P1PGGa__entry dd {
  margin: 0;
  font-weight: 400;
  display: inline;
}

.LegalFooter-module__P1PGGa__links {
  border-top: 1px solid var(--border-light);
  align-items: center;
  gap: .375rem;
  margin-top: .875rem;
  padding-top: .75rem;
  font-size: 10px;
  display: flex;
}

.LegalFooter-module__P1PGGa__dot {
  color: var(--border);
  -webkit-user-select: none;
  user-select: none;
}

.LegalFooter-module__P1PGGa__link {
  color: var(--text-muted);
  text-decoration: underline;
  -webkit-text-decoration-color: var(--border);
  text-decoration-color: var(--border);
  text-underline-offset: 2px;
  transition: color var(--transition), text-decoration-color var(--transition);
}

.LegalFooter-module__P1PGGa__link:active {
  color: var(--text-sub);
  -webkit-text-decoration-color: var(--text-sub);
  text-decoration-color: var(--text-sub);
  opacity: 1;
}

.LegalFooter-module__P1PGGa__escrow {
  border-top: 1px solid var(--border-light);
  color: var(--text-muted);
  margin-top: .75rem;
  padding-top: .75rem;
  font-size: 10px;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .LegalFooter-module__P1PGGa__grid {
    grid-template-columns: 1fr;
    gap: .25rem;
  }
}

@media (hover: hover) and (pointer: fine) {
  .LegalFooter-module__P1PGGa__link:hover {
    color: var(--text-sub);
    -webkit-text-decoration-color: var(--text-sub);
    text-decoration-color: var(--text-sub);
    opacity: 1;
  }
}

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