/* [project]/src/components/layout/Wrapper/style.module.css [app-client] (css) */
.style-module__ypZBDq__root {
  box-sizing: border-box;
  flex-direction: column;
  width: 100%;
  height: 100vh;
  margin: 0;
  padding: 0;
  display: flex;
  overflow-x: hidden;
}

.style-module__ypZBDq__navbar {
  box-sizing: border-box;
  flex-shrink: 0;
  width: 100%;
  position: relative;
  top: 0;
  left: 0;
  right: 0;
}

.style-module__ypZBDq__footer {
  box-sizing: border-box;
  flex-shrink: 0;
  width: 100%;
  margin-top: auto;
}

.style-module__ypZBDq__pageContent {
  box-sizing: border-box;
  flex-direction: column;
  flex: 1;
  width: 100%;
  max-width: 100%;
  display: flex;
  overflow-x: hidden;
}

.style-module__ypZBDq__contentWrapper {
  width: 100%;
  max-width: 100%;
}

/* [project]/src/components/ui/LanguageSwitcher/style.module.css [app-client] (css) */
.style-module__HJq-zW__root {
  letter-spacing: .01em;
  border: .07em solid var(--primary-7);
  background: linear-gradient(180deg, var(--primary-12) 0%, var(--primary-11) 100%);
  min-height: 2.5em;
  color: var(--primary-2);
  box-shadow: 0 .125em .25em #0000000a,
        0 .5em 1.25em color-mix(in srgb, var(--primary-8) 25%, transparent),
        inset 0 .0625em 0 var(--primary-12);
  -webkit-backdrop-filter: saturate(1.15) blur(.2em);
  backdrop-filter: saturate(1.15) blur(.2em);
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  border-radius: 999em;
  justify-content: center;
  align-items: center;
  gap: .5em;
  padding: .6em 1.2em;
  font-size: .9375em;
  font-weight: 550;
  line-height: 1;
  transition: transform .18s cubic-bezier(.2, .8, .2, 1), box-shadow .18s, background .18s, border-color .18s, color .18s;
  display: inline-flex;
  position: relative;
  font-size: .8em !important;
}

.style-module__HJq-zW__root:hover {
  border-color: var(--primary-6);
  background: linear-gradient(180deg, var(--primary-12) 0%, var(--primary-10) 100%);
  color: var(--primary-1);
  box-shadow: 0 .2em .4em #0000000d,
        0 .75em 1.5em color-mix(in srgb, var(--primary-7) 30%, transparent),
        inset 0 .0625em 0 var(--primary-12);
  transform: translateY(-.08em);
}

.style-module__HJq-zW__root:active {
  background: var(--primary-11);
  border-color: var(--primary-5);
  box-shadow: inset 0 .125em .25em color-mix(in srgb, var(--primary-4) 20%, transparent);
  transform: translateY(0);
}

.style-module__HJq-zW__root:focus-visible {
  box-shadow: 0 0 0 .15em var(--primary-12),
        0 0 0 .3em var(--primary-6);
  outline: none;
}

.style-module__HJq-zW__icon {
  opacity: .9;
  flex-shrink: 0;
  width: 1.15em;
  height: 1.15em;
  transition: transform .18s;
}

.style-module__HJq-zW__root:hover .style-module__HJq-zW__icon {
  transform: rotate(-8deg)scale(1.05);
}

@media (max-aspect-ratio: 1) {
  .style-module__HJq-zW__root {
    font-size: 1.4em !important;
  }
}

/* [project]/src/components/layout/Navbar/NavbarDesktop/style.module.css [app-client] (css) */
.style-module__9SCg_W__root {
  z-index: 20;
  background-color: var(--white-1);
  border-bottom: .0625em solid var(--cold-white-3);
  box-shadow: var(--shadow-1);
  transition: var(--transition);
  background-color: #ffffffd9;
  padding: .6em 4em;
  position: relative;
  top: 0;
}

.style-module__9SCg_W__container {
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
  max-width: 75em;
  margin-inline: auto;
  display: flex;
}

.style-module__9SCg_W__logoAndCart {
  flex-direction: row-reverse;
  align-items: center;
  gap: 2em;
  display: flex;
}

.style-module__9SCg_W__logoLink {
  align-items: center;
  text-decoration: none;
  display: flex;
}

.style-module__9SCg_W__logo {
  border-radius: var(--border-radius-1);
  object-fit: contain;
  height: 2.5em;
  transition: var(--transition);
  outline: .1em solid #0000;
}

.style-module__9SCg_W__logo:hover {
  outline: .1em solid var(--primary-4);
  scale: 1.05;
}

.style-module__9SCg_W__cartLink {
  background-color: var(--white-light-2);
  padding: var(--space-2) var(--space-3);
  border-radius: var(--border-radius-pill);
  transition: var(--transition);
  align-items: center;
  text-decoration: none;
  display: flex;
  position: relative;
}

.style-module__9SCg_W__cartLink:hover {
  background-color: var(--white-light-3);
}

.style-module__9SCg_W__cartIcon {
  width: 1.125em;
  height: 1.125em;
  color: var(--text-2);
  display: block;
}

.style-module__9SCg_W__cartLink:hover .style-module__9SCg_W__cartIcon {
  color: var(--primary-3);
}

.style-module__9SCg_W__cartCount {
  background-color: var(--primary-4);
  color: var(--white-1);
  font-size: var(--font-size-1);
  font-weight: var(--weight-bold);
  border-radius: var(--border-radius-pill);
  min-width: 1.35em;
  height: 1.35em;
  box-shadow: var(--shadow-1);
  justify-content: center;
  align-items: center;
  padding: 0 .25em;
  display: flex;
  position: absolute;
  top: -.5em;
  right: -.5em;
}

.style-module__9SCg_W__navLinks {
  gap: var(--space-5);
  align-items: center;
  display: flex;
}

.style-module__9SCg_W__link {
  font-size: var(--font-size-3);
  font-weight: var(--weight-normal);
  color: var(--text-3);
  align-items: center;
  gap: var(--space-2);
  transition: var(--transition);
  transition: var(--transition);
  border-bottom: .1em solid #0000;
  text-decoration: none;
  display: flex;
}

.style-module__9SCg_W__link:hover {
  color: var(--primary-3);
}

.style-module__9SCg_W__icon {
  width: 1em;
  height: 1em;
}

@media (max-width: 48em) {
  .style-module__9SCg_W__root {
    display: none;
  }
}

.style-module__9SCg_W__activeLink {
  color: var(--primary-3);
  border-bottom-color: var(--primary-3);
}

.style-module__9SCg_W__toolbar {
  align-items: center;
  gap: 1rem;
  display: flex;
}

.style-module__9SCg_W__adminLink {
  background-color: #0000000d;
  border-radius: 2rem;
  padding: .25rem .75rem;
}

.style-module__9SCg_W__mobileLanguage {
  text-align: center;
  border-top: 1px solid #fff3;
  margin-top: 1rem;
  padding-top: .5rem;
}

/* [project]/src/components/layout/Navbar/NavbarMobile/style.module.css [app-client] (css) */
.style-module__VQzBiG__root {
  z-index: 20;
  -webkit-backdrop-filter: blur(.625em);
  border-bottom: .0625em solid var(--cold-white-3);
  background-color: #fff;
  padding: .65em 1em;
  transition: background-color .3s, box-shadow .3s;
  position: sticky;
  top: 0;
  box-shadow: 0 .0625em .1875em #0000000a, 0 .0625em .125em #0000000f;
}

@media (min-width: 48.01em) {
  .style-module__VQzBiG__root {
    display: none;
  }
}

.style-module__VQzBiG__root .style-module__VQzBiG__container {
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  max-width: 75em;
  margin-inline: auto;
  display: flex;
}

.style-module__VQzBiG__root .style-module__VQzBiG__container .style-module__VQzBiG__logoAndCart {
  flex-direction: row-reverse;
  align-items: center;
  gap: 1.75em;
  display: flex;
}

.style-module__VQzBiG__root .style-module__VQzBiG__container .style-module__VQzBiG__logoAndCart .style-module__VQzBiG__cartLink {
  background-color: var(--white-light-2);
  padding: var(--space-2) var(--space-3);
  border-radius: var(--border-radius-pill);
  align-items: center;
  text-decoration: none;
  transition: all .2s;
  display: flex;
  position: relative;
}

.style-module__VQzBiG__root .style-module__VQzBiG__container .style-module__VQzBiG__logoAndCart .style-module__VQzBiG__cartLink:hover {
  background-color: var(--white-light-3);
  transform: scale(1.05);
}

.style-module__VQzBiG__root .style-module__VQzBiG__container .style-module__VQzBiG__logoAndCart .style-module__VQzBiG__cartLink:hover .style-module__VQzBiG__cartIcon {
  color: var(--primary-3);
}

.style-module__VQzBiG__root .style-module__VQzBiG__container .style-module__VQzBiG__logoAndCart .style-module__VQzBiG__cartLink:active {
  transform: scale(.97);
}

.style-module__VQzBiG__root .style-module__VQzBiG__container .style-module__VQzBiG__logoAndCart .style-module__VQzBiG__cartLink .style-module__VQzBiG__cartIcon {
  width: 1.125em;
  height: 1.125em;
  color: var(--text-2);
  transition: color .2s;
  display: block;
}

.style-module__VQzBiG__root .style-module__VQzBiG__container .style-module__VQzBiG__logoAndCart .style-module__VQzBiG__cartLink .style-module__VQzBiG__cartCount {
  background-color: var(--primary-4);
  color: var(--white-1);
  font-size: var(--font-size-1);
  font-weight: var(--weight-bold);
  border-radius: var(--border-radius-pill);
  justify-content: center;
  align-items: center;
  min-width: 1.4em;
  height: 1.4em;
  padding: 0 .25em;
  animation: .25s style-module__VQzBiG__countPop;
  display: flex;
  position: absolute;
  top: -.45em;
  right: -.45em;
  box-shadow: 0 .125em .25em #00000026;
}

.style-module__VQzBiG__root .style-module__VQzBiG__container .style-module__VQzBiG__logoAndCart .style-module__VQzBiG__logoLink {
  align-items: center;
  text-decoration: none;
  display: flex;
}

.style-module__VQzBiG__root .style-module__VQzBiG__container .style-module__VQzBiG__logoAndCart .style-module__VQzBiG__logoLink .style-module__VQzBiG__logo {
  border-radius: var(--border-radius-1);
  object-fit: contain;
  height: 2.5em;
}

.style-module__VQzBiG__root .style-module__VQzBiG__container .style-module__VQzBiG__hamburger {
  cursor: pointer;
  color: var(--text-2);
  border-radius: var(--border-radius-1);
  z-index: 30;
  background: none;
  border: none;
  justify-content: center;
  align-items: center;
  padding: .5em;
  transition: background-color .2s, color .2s;
  display: flex;
}

.style-module__VQzBiG__root .style-module__VQzBiG__container .style-module__VQzBiG__hamburger:hover {
  background-color: var(--white-light-2);
  color: var(--primary-3);
}

.style-module__VQzBiG__root .style-module__VQzBiG__container .style-module__VQzBiG__hamburger .style-module__VQzBiG__hamburgerIcon {
  width: 1.5em;
  height: 1.5em;
  transition: transform .25s;
}

.style-module__VQzBiG__root .style-module__VQzBiG__navLinks {
  background: var(--white-1);
  align-items: flex-start;
  gap: var(--space-2);
  z-index: 40;
  opacity: 0;
  flex-direction: column;
  gap: 1em;
  max-width: 80%;
  margin: 0;
  padding: 3em 1em 3em 3em;
  transition: transform .3s cubic-bezier(.4, 0, .2, 1), opacity .25s;
  display: flex;
  position: fixed;
  top: 0;
  bottom: 0;
  overflow-y: auto;
  box-shadow: 0 0 1.5em #0000001f;
}

[dir="ltr"] :is(.style-module__VQzBiG__root .style-module__VQzBiG__navLinks) {
  padding: 3em 3em 3em 1em;
  left: 0;
  transform: translateX(-100%);
  box-shadow: .25em 0 1.5em #0000001f;
}

[dir="rtl"] :is(.style-module__VQzBiG__root .style-module__VQzBiG__navLinks) {
  right: 0;
  transform: translateX(100%);
  box-shadow: -.25em 0 1.5em #0000001f;
}

.style-module__VQzBiG__root .style-module__VQzBiG__navLinks.style-module__VQzBiG__navLinksOpen {
  opacity: 1;
  transform: translateX(0);
}

.style-module__VQzBiG__root .style-module__VQzBiG__navLinks .style-module__VQzBiG__link {
  width: 100%;
  font-size: 1.4em;
  font-weight: var(--weight-medium);
  color: var(--text-3);
  align-items: center;
  gap: var(--space-2);
  padding: .85em 0;
  padding-inline-start: 1em;
  text-decoration: none;
  transition: color .15s, padding-inline-start .2s;
  display: flex;
  position: relative;
}

.style-module__VQzBiG__root .style-module__VQzBiG__navLinks .style-module__VQzBiG__link:hover, .style-module__VQzBiG__root .style-module__VQzBiG__navLinks .style-module__VQzBiG__link:focus-visible {
  color: var(--primary-3);
  padding-inline-start: .5em;
}

.style-module__VQzBiG__root .style-module__VQzBiG__navLinks .style-module__VQzBiG__link:last-child {
  border-bottom: none;
}

.style-module__VQzBiG__root .style-module__VQzBiG__navLinks .style-module__VQzBiG__link .style-module__VQzBiG__icon {
  flex-shrink: 0;
  width: 1.25em;
  height: 1.25em;
}

.style-module__VQzBiG__root .style-module__VQzBiG__navLinks .style-module__VQzBiG__link:after {
  content: "";
  bottom: -.4em;
  background: var(--white-2);
  height: .05em;
  position: absolute;
  inset-inline: 0 0;
}

.style-module__VQzBiG__root .style-module__VQzBiG__navLinks .style-module__VQzBiG__link:last-child:after {
  content: none;
}

.style-module__VQzBiG__root .style-module__VQzBiG__navLinks .style-module__VQzBiG__activeLink {
  color: var(--primary-3);
  background-color: var(--primary-11);
  border-inline-start: .2em solid var(--primary-3);
  border-top-left-radius: var(--border-radius-2);
  border-bottom-left-radius: var(--border-radius-2);
}

[dir="ltr"] :is(.style-module__VQzBiG__root .style-module__VQzBiG__navLinks .style-module__VQzBiG__activeLink) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: var(--border-radius-2);
  border-bottom-right-radius: var(--border-radius-2);
}

.style-module__VQzBiG__root .style-module__VQzBiG__backdrop {
  z-index: 10;
  background: #00000059;
  animation: .25s forwards style-module__VQzBiG__fadeIn;
  position: fixed;
  inset: 0;
}

@keyframes style-module__VQzBiG__countPop {
  0% {
    opacity: 0;
    transform: scale(.8);
  }

  60% {
    transform: scale(1.1);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes style-module__VQzBiG__fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.style-module__VQzBiG__toolbar {
  align-items: center;
  gap: 1rem;
  display: flex;
}

.style-module__VQzBiG__adminLink {
  background-color: #0000000d;
  border-radius: 2rem;
  padding: .25rem .75rem;
}

.style-module__VQzBiG__mobileLanguage {
  text-align: center;
  border-top: 1px solid #fff3;
  margin-top: 1rem;
  padding-top: .5rem;
}

/* [project]/src/components/layout/Footer/style.module.css [app-client] (css) */
.style-module__RPaQla__root {
  background-color: var(--black-2);
  padding: var(--space-5) var(--space-4);
  border-top: .2em solid var(--primary-4);
  box-shadow: var(--shadow-1);
  color: var(--white-5);
  transition: var(--transition);
  margin-top: auto;
}

.style-module__RPaQla__container {
  justify-content: space-between;
  align-items: center;
  gap: var(--space-3);
  max-width: 80em;
  font-size: var(--font-size-2);
  flex-direction: column;
  margin: 0 auto;
  line-height: 1.6;
  display: flex;
}

.style-module__RPaQla__copyright {
  color: var(--white-4);
  font-weight: var(--weight-normal);
  order: 2;
}

.style-module__RPaQla__note {
  text-align: center;
  max-width: 80%;
  color: var(--gray-4);
  font-weight: var(--weight-normal);
  order: 1;
}

.style-module__RPaQla__root a {
  color: var(--primary-3);
  transition: var(--transition);
  text-decoration: none;
}

.style-module__RPaQla__root a:hover {
  color: var(--white-1);
  text-decoration: underline;
}

@media (min-width: 40em) {
  .style-module__RPaQla__container {
    gap: var(--space-4);
    flex-direction: row;
  }

  .style-module__RPaQla__copyright {
    order: 1;
  }

  .style-module__RPaQla__note {
    text-align: right;
    order: 2;
  }
}

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