/* [project]/src/components/layout/Header/Header.module.scss.module.css [app-client] (css) */
.Header-module-scss-module__klcqGG__header {
  background: #fff;
  border-bottom: 1px solid #f0f0f0;
  flex-direction: column;
  padding: 10px 80px;
  display: flex;
  position: relative;
}

.Header-module-scss-module__klcqGG__header h2 {
  text-align: center;
  color: #f70;
  margin-top: -20px;
  font-size: 18px;
}

.Header-module-scss-module__klcqGG__flex {
  justify-content: space-between;
  align-items: center;
  height: 105px;
  display: flex;
}

.Header-module-scss-module__klcqGG__logo {
  width: 240px;
  height: auto;
}

.Header-module-scss-module__klcqGG__mobileMenuBtn {
  cursor: pointer;
  background: none;
  border: none;
  flex-direction: column;
  gap: 6px;
  margin-right: 20px;
  padding: 10px;
  display: none;
}

.Header-module-scss-module__klcqGG__mobileMenuBtn span {
  background: #fc3d27;
  border-radius: 2px;
  width: 32px;
  height: 3px;
  transition: all .3s;
}

.Header-module-scss-module__klcqGG__nav {
  flex: 1;
  align-items: center;
  gap: 0;
  display: flex;
}

.Header-module-scss-module__klcqGG__navItem {
  margin: 0;
  padding: 0;
  position: relative;
}

.Header-module-scss-module__klcqGG__navLabel {
  color: #333;
  cursor: pointer;
  white-space: nowrap;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  text-decoration: none;
  transition: color .2s;
  display: flex;
}

.Header-module-scss-module__klcqGG__navLabel:hover {
  color: #fc3d27;
}

.Header-module-scss-module__klcqGG__chevron {
  font-size: 12px;
  transition: transform .2s;
  display: inline-block;
}

.Header-module-scss-module__klcqGG__submenu {
  z-index: 1000;
  background: #fff;
  border-radius: 8px;
  width: 100%;
  min-width: 250px;
  padding: 16px 0 8px;
  animation: .2s ease-out Header-module-scss-module__klcqGG__slideDown;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  box-shadow: 0 4px 12px #0000001a;
}

.Header-module-scss-module__klcqGG__submenu:before {
  content: "";
  background: none;
  height: 16px;
  position: absolute;
  top: -16px;
  left: 0;
  right: 0;
}

@keyframes Header-module-scss-module__klcqGG__slideDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

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

@keyframes Header-module-scss-module__klcqGG__slideRight {
  from {
    opacity: 0;
    transform: translateX(-10px);
  }

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

@keyframes Header-module-scss-module__klcqGG__fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.Header-module-scss-module__klcqGG__submenuItemWrapper {
  align-items: center;
  display: flex;
  position: relative;
}

.Header-module-scss-module__klcqGG__submenuItemWrapper:hover {
  background: #f8f8f8;
}

.Header-module-scss-module__klcqGG__submenuItem {
  color: #555;
  cursor: pointer;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 10px 16px;
  font-family: Nunito, sans-serif;
  font-size: 13px;
  text-decoration: none;
  transition: all .2s;
  display: flex;
}

.Header-module-scss-module__klcqGG__submenuItem:hover {
  color: #fc3d27;
  padding-left: 20px;
}

.Header-module-scss-module__klcqGG__arrow {
  margin-left: 8px;
  font-size: 16px;
  transition: transform .2s;
}

.Header-module-scss-module__klcqGG__undersubmenu {
  z-index: 1100;
  background: #fff;
  border-radius: 8px;
  min-width: 200px;
  margin-left: 4px;
  margin-right: -12px;
  padding: 8px 12px 8px 0;
  animation: .2s ease-out Header-module-scss-module__klcqGG__slideRight;
  position: absolute;
  top: 0;
  left: 100%;
  box-shadow: 0 4px 12px #0000001a;
}

.Header-module-scss-module__klcqGG__undersubmenu:before {
  content: "";
  background: none;
  width: 12px;
  height: 100%;
  position: absolute;
  top: 0;
  right: -12px;
}

.Header-module-scss-module__klcqGG__undersubmenuItem {
  color: #555;
  cursor: pointer;
  padding: 10px 16px;
  font-family: Nunito, sans-serif;
  font-size: 12px;
  text-decoration: none;
  transition: all .2s;
  display: block;
}

.Header-module-scss-module__klcqGG__undersubmenuItem:hover {
  color: #fc3d27;
  background: #f5f5f5;
  padding-left: 20px;
}

.Header-module-scss-module__klcqGG__actions {
  align-items: center;
  gap: 16px;
  margin-left: auto;
  display: flex;
}

.Header-module-scss-module__klcqGG__favoritesBtn {
  color: #fff;
  cursor: pointer;
  white-space: nowrap;
  background: linear-gradient(#009a3b 0%, #008229 100%);
  border: none;
  border-radius: 24px;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  font-family: Nunito, sans-serif;
  font-size: 14px;
  font-weight: 500;
  transition: all .3s;
  display: flex;
  position: relative;
}

.Header-module-scss-module__klcqGG__favoritesBtn:hover {
  color: #008229;
  background: #fff;
  border: 1px solid #009a3b;
}

.Header-module-scss-module__klcqGG__badge {
  color: #fff;
  background: #ff9800;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  position: absolute;
  top: -8px;
  right: -8px;
}

.Header-module-scss-module__klcqGG__mobileMenuOverlay {
  z-index: 999;
  background: #00000080;
  animation: .3s ease-out Header-module-scss-module__klcqGG__fadeIn;
  position: fixed;
  inset: 0;
}

.Header-module-scss-module__klcqGG__mobileMenuDrawer {
  z-index: 1001;
  background: #fff;
  flex-direction: column;
  width: 100%;
  height: 100vh;
  transition: transform .3s ease-out;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  transform: translateX(-100%);
}

.Header-module-scss-module__klcqGG__mobileMenuDrawer.Header-module-scss-module__klcqGG__open {
  transform: translateX(0);
}

.Header-module-scss-module__klcqGG__mobileMenuHeader {
  border-bottom: 1px solid #f0f0f0;
  justify-content: space-between;
  align-items: center;
  min-height: 60px;
  padding: 16px 20px;
  display: flex;
}

.Header-module-scss-module__klcqGG__mobileBackBtn {
  cursor: pointer;
  color: #fc3d27;
  background: none;
  border: none;
  justify-content: center;
  align-items: center;
  padding: 8px;
  display: flex;
}

.Header-module-scss-module__klcqGG__mobileMenuTitle {
  color: #333;
  text-align: center;
  flex: 1;
  font-family: Nunito, sans-serif;
  font-size: 16px;
  font-weight: 600;
}

.Header-module-scss-module__klcqGG__mobileCloseBtn {
  cursor: pointer;
  color: #fc3d27;
  background: none;
  border: none;
  justify-content: center;
  align-items: center;
  padding: 8px;
  display: flex;
}

.Header-module-scss-module__klcqGG__mobileMenuContent {
  flex: 1;
  padding: 0;
  overflow-y: auto;
}

.Header-module-scss-module__klcqGG__mobileMenuItem {
  border-bottom: 1px solid #f0f0f0;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  display: flex;
}

.Header-module-scss-module__klcqGG__mobileMenuItem:active {
  background: #f5f5f5;
}

.Header-module-scss-module__klcqGG__mobileMenuItemText {
  color: #333;
  cursor: pointer;
  flex: 1;
  font-family: Nunito, sans-serif;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  transition: color .2s;
  display: block;
}

.Header-module-scss-module__klcqGG__mobileMenuItemText:active {
  color: #fc3d27;
}

.Header-module-scss-module__klcqGG__mobileMenuArrow {
  cursor: pointer;
  color: #fc3d27;
  background: none;
  border: none;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  padding: 8px;
  display: flex;
}

.Header-module-scss-module__klcqGG__favoritesOverlay {
  z-index: 1001;
  background: #00000080;
  animation: .3s ease-out Header-module-scss-module__klcqGG__fadeIn;
  position: fixed;
  inset: 0;
}

.Header-module-scss-module__klcqGG__favoritesDrawer {
  z-index: 1002;
  background: #fff;
  flex-direction: column;
  width: 400px;
  height: 100vh;
  transition: transform .3s ease-out;
  display: flex;
  position: fixed;
  top: 0;
  right: 0;
  transform: translateX(100%);
  box-shadow: -4px 0 12px #0000001a;
}

.Header-module-scss-module__klcqGG__favoritesDrawer.Header-module-scss-module__klcqGG__open {
  transform: translateX(0);
}

.Header-module-scss-module__klcqGG__favoritesHeader {
  border-bottom: 1px solid #f0f0f0;
  justify-content: space-between;
  align-items: center;
  min-height: 60px;
  padding: 16px 20px;
  display: flex;
}

.Header-module-scss-module__klcqGG__favoritesHeader h2 {
  color: #333;
  margin: 0;
  padding: 0;
  font-family: Nunito, sans-serif;
  font-size: 18px;
  font-weight: 600;
}

.Header-module-scss-module__klcqGG__favoritesCloseBtn {
  cursor: pointer;
  color: #fc3d27;
  background: none;
  border: none;
  justify-content: center;
  align-items: center;
  padding: 8px;
  transition: all .2s;
  display: flex;
}

.Header-module-scss-module__klcqGG__favoritesCloseBtn:hover {
  transform: scale(1.1);
}

.Header-module-scss-module__klcqGG__favoritesList {
  flex-direction: column;
  flex: 1;
  gap: 12px;
  padding: 16px;
  display: flex;
  overflow-y: auto;
}

.Header-module-scss-module__klcqGG__emptyState {
  color: #999;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
  height: 100%;
  display: flex;
}

.Header-module-scss-module__klcqGG__emptyState p {
  margin: 0;
  font-family: Nunito, sans-serif;
  font-size: 14px;
}

.Header-module-scss-module__klcqGG__favoriteItem {
  background: #f8f8f8;
  border-radius: 8px;
  gap: 12px;
  padding: 12px;
  transition: all .2s;
  display: flex;
}

.Header-module-scss-module__klcqGG__favoriteItem:hover {
  background: #f0f0f0;
}

.Header-module-scss-module__klcqGG__favoriteItem img {
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
  width: 80px;
  height: 80px;
}

.Header-module-scss-module__klcqGG__favoriteInfo {
  flex-direction: column;
  flex: 1;
  gap: 6px;
  display: flex;
}

.Header-module-scss-module__klcqGG__favoriteInfo h3 {
  color: #333;
  margin: 0;
  padding: 0;
  font-family: Nunito, sans-serif;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
}

.Header-module-scss-module__klcqGG__favoriteInfo p {
  color: #999;
  margin: 0;
  padding: 0;
  font-family: Nunito, sans-serif;
  font-size: 11px;
}

.Header-module-scss-module__klcqGG__favoriteActions {
  gap: 8px;
  margin-top: auto;
  display: flex;
}

.Header-module-scss-module__klcqGG__favoriteCreateBtn {
  color: #fff;
  cursor: pointer;
  text-align: center;
  background: linear-gradient(#fc3d27 0%, #f80 100%);
  border: none;
  border-radius: 4px;
  flex: 1;
  padding: 6px 8px;
  font-family: Nunito, sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-decoration: none;
  transition: all .2s;
}

.Header-module-scss-module__klcqGG__favoriteCreateBtn:hover {
  background: linear-gradient(#f80 0%, #f70 100%);
}

.Header-module-scss-module__klcqGG__favoriteRemoveBtn {
  color: #f33;
  cursor: pointer;
  background: #ff33331a;
  border: none;
  border-radius: 4px;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  transition: all .2s;
  display: flex;
}

.Header-module-scss-module__klcqGG__favoriteRemoveBtn:hover {
  background: #f333;
}

@media (max-width: 1200px) {
  .Header-module-scss-module__klcqGG__header {
    padding: 15px 40px;
  }

  .Header-module-scss-module__klcqGG__navLabel {
    padding: 8px 12px;
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .Header-module-scss-module__klcqGG__actions {
    display: none;
  }

  .Header-module-scss-module__klcqGG__header {
    padding: 12px 20px;
  }

  .Header-module-scss-module__klcqGG__mobileMenuBtn {
    display: flex;
  }

  .Header-module-scss-module__klcqGG__logo {
    width: 150px;
  }

  .Header-module-scss-module__klcqGG__nav {
    display: none;
  }

  .Header-module-scss-module__klcqGG__favoritesBtn {
    padding: 8px 12px;
    font-size: 14px;
  }

  .Header-module-scss-module__klcqGG__favoritesDrawer {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .Header-module-scss-module__klcqGG__header {
    padding: 10px 16px;
  }

  .Header-module-scss-module__klcqGG__logo {
    width: 120px;
  }

  .Header-module-scss-module__klcqGG__mobileMenuDrawer {
    width: 100%;
  }

  .Header-module-scss-module__klcqGG__mobileMenuHeader {
    padding: 12px 16px;
  }

  .Header-module-scss-module__klcqGG__mobileMenuItem {
    padding: 14px 16px;
  }

  .Header-module-scss-module__klcqGG__mobileMenuItemText {
    font-size: 15px;
  }

  .Header-module-scss-module__klcqGG__favoritesHeader {
    padding: 12px 16px;
  }

  .Header-module-scss-module__klcqGG__favoritesHeader h2 {
    font-size: 16px;
  }

  .Header-module-scss-module__klcqGG__favoritesList {
    gap: 10px;
    padding: 12px;
  }

  .Header-module-scss-module__klcqGG__favoriteItem {
    padding: 10px;
  }

  .Header-module-scss-module__klcqGG__favoriteItem img {
    width: 70px;
    height: 70px;
  }

  .Header-module-scss-module__klcqGG__favoriteCreateBtn {
    font-size: 10px;
  }

  .Header-module-scss-module__klcqGG__favoriteRemoveBtn {
    width: 28px;
    height: 28px;
  }
}

/* [project]/src/components/layout/Header/FavoritesDrawer.module.scss.module.css [app-client] (css) */
.FavoritesDrawer-module-scss-module__ZZhqnq__favoritesOverlay {
  z-index: 1001;
  background: #0009;
  animation: .3s ease-out FavoritesDrawer-module-scss-module__ZZhqnq__fadeIn;
  position: fixed;
  inset: 0;
}

@keyframes FavoritesDrawer-module-scss-module__ZZhqnq__fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.FavoritesDrawer-module-scss-module__ZZhqnq__favoritesModal {
  z-index: 1002;
  background: #fff;
  border-radius: 12px;
  flex-direction: column;
  width: 90%;
  max-width: 900px;
  max-height: 90vh;
  animation: .3s ease-out FavoritesDrawer-module-scss-module__ZZhqnq__slideUp;
  display: flex;
  position: fixed;
  top: 50%;
  left: 50%;
  overflow: hidden;
  transform: translate(-50%, -50%);
  box-shadow: 0 8px 32px #00000026;
}

@keyframes FavoritesDrawer-module-scss-module__ZZhqnq__slideUp {
  from {
    opacity: 0;
    transform: translate(-50%, -45%);
  }

  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

.FavoritesDrawer-module-scss-module__ZZhqnq__favoritesModalHeader {
  background: linear-gradient(135deg, #fc3d27 0%, #f80 100%);
  border-bottom: 1px solid #f0f0f0;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  display: flex;
}

.FavoritesDrawer-module-scss-module__ZZhqnq__favoritesModalHeader h2 {
  color: #fff;
  margin: 0;
  padding: 0;
  font-family: Nunito, sans-serif;
  font-size: 24px;
  font-weight: 700;
}

.FavoritesDrawer-module-scss-module__ZZhqnq__favoritesModalCloseBtn {
  cursor: pointer;
  color: #fff;
  background: #fff3;
  border: none;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  transition: all .2s;
  display: flex;
}

.FavoritesDrawer-module-scss-module__ZZhqnq__favoritesModalCloseBtn:hover {
  background: #ffffff4d;
  transform: scale(1.1);
}

.FavoritesDrawer-module-scss-module__ZZhqnq__favoritesModalContent {
  flex: 1;
  padding: 24px;
  overflow-y: auto;
}

.FavoritesDrawer-module-scss-module__ZZhqnq__emptyState {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
  height: 100%;
  padding: 60px 20px;
  display: flex;
}

.FavoritesDrawer-module-scss-module__ZZhqnq__emptyText {
  color: #333;
  margin: 0;
  padding: 0;
  font-family: Nunito, sans-serif;
  font-size: 20px;
  font-weight: 600;
}

.FavoritesDrawer-module-scss-module__ZZhqnq__emptySubtext {
  color: #999;
  text-align: center;
  margin: 0;
  padding: 0;
  font-family: Nunito, sans-serif;
  font-size: 14px;
  font-weight: 400;
}

.FavoritesDrawer-module-scss-module__ZZhqnq__favoritesList {
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  display: grid;
}

.FavoritesDrawer-module-scss-module__ZZhqnq__favoriteItem {
  background: #f8f8f8;
  border-radius: 8px;
  flex-direction: column;
  transition: all .2s;
  display: flex;
  overflow: hidden;
}

.FavoritesDrawer-module-scss-module__ZZhqnq__favoriteItem:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px #0000001a;
}

.FavoritesDrawer-module-scss-module__ZZhqnq__favoriteItem:hover .FavoritesDrawer-module-scss-module__ZZhqnq__favoriteItemImage img {
  transform: scale(1.05);
}

.FavoritesDrawer-module-scss-module__ZZhqnq__favoriteItemImage {
  background: #f0f0f0 center / cover;
  width: 100%;
  padding-bottom: 100%;
  position: relative;
  overflow: hidden;
}

.FavoritesDrawer-module-scss-module__ZZhqnq__favoriteItemImage img {
  object-fit: contain;
  z-index: 2;
  background: none;
  width: 100%;
  height: 100%;
  transition: transform .3s;
  position: absolute;
  top: 0;
  left: 0;
}

.FavoritesDrawer-module-scss-module__ZZhqnq__favoriteInfo {
  flex-direction: column;
  gap: 8px;
  padding: 12px;
  display: flex;
}

.FavoritesDrawer-module-scss-module__ZZhqnq__favoriteInfo h3 {
  color: #333;
  margin: 0;
  padding: 0;
  font-family: Nunito, sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
}

.FavoritesDrawer-module-scss-module__ZZhqnq__favoriteInfo p {
  color: #999;
  margin: 0;
  padding: 0;
  font-family: Nunito, sans-serif;
  font-size: 12px;
  line-height: 1.3;
}

.FavoritesDrawer-module-scss-module__ZZhqnq__favoriteActions {
  gap: 8px;
  margin-top: auto;
  display: flex;
}

.FavoritesDrawer-module-scss-module__ZZhqnq__favoriteCreateBtn {
  color: #fff;
  cursor: pointer;
  text-align: center;
  background: linear-gradient(#fc3d27 0%, #f80 100%);
  border: none;
  border-radius: 6px;
  flex: 1;
  padding: 8px 12px;
  font-family: Nunito, sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all .2s;
}

.FavoritesDrawer-module-scss-module__ZZhqnq__favoriteCreateBtn:hover {
  background: linear-gradient(#f80 0%, #f70 100%);
  transform: translateY(-1px);
}

.FavoritesDrawer-module-scss-module__ZZhqnq__favoriteRemoveBtn {
  color: #f33;
  cursor: pointer;
  background: #ff33331a;
  border: none;
  border-radius: 6px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  transition: all .2s;
  display: flex;
}

.FavoritesDrawer-module-scss-module__ZZhqnq__favoriteRemoveBtn:hover {
  background: #f333;
  transform: scale(1.05);
}

.FavoritesDrawer-module-scss-module__ZZhqnq__favoritesModalFooter {
  background: #f8f8f8;
  border-top: 1px solid #e0e0e0;
  justify-content: center;
  padding: 16px 24px;
  display: flex;
}

.FavoritesDrawer-module-scss-module__ZZhqnq__favoritesContinueBtn {
  color: #fff;
  cursor: pointer;
  background: linear-gradient(#009a3b 0%, #008229 100%);
  border: none;
  border-radius: 24px;
  min-width: 200px;
  padding: 12px 48px;
  font-family: Nunito, sans-serif;
  font-size: 16px;
  font-weight: 600;
  transition: all .2s;
}

.FavoritesDrawer-module-scss-module__ZZhqnq__favoritesContinueBtn:hover {
  background: linear-gradient(#008229 0%, #006b1f 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px #009a3b4d;
}

.FavoritesDrawer-module-scss-module__ZZhqnq__favoritesContinueBtn:active {
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .FavoritesDrawer-module-scss-module__ZZhqnq__favoritesModal {
    width: 95%;
    max-height: 85vh;
  }

  .FavoritesDrawer-module-scss-module__ZZhqnq__favoritesModalHeader {
    padding: 20px;
  }

  .FavoritesDrawer-module-scss-module__ZZhqnq__favoritesModalHeader h2 {
    font-size: 20px;
  }

  .FavoritesDrawer-module-scss-module__ZZhqnq__favoritesModalContent {
    padding: 20px;
  }

  .FavoritesDrawer-module-scss-module__ZZhqnq__favoritesList {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 12px;
  }

  .FavoritesDrawer-module-scss-module__ZZhqnq__favoriteItemImage {
    padding-bottom: 100%;
  }

  .FavoritesDrawer-module-scss-module__ZZhqnq__favoriteInfo {
    gap: 6px;
    padding: 10px;
  }

  .FavoritesDrawer-module-scss-module__ZZhqnq__favoriteInfo h3 {
    font-size: 13px;
  }

  .FavoritesDrawer-module-scss-module__ZZhqnq__favoriteInfo p {
    font-size: 11px;
  }
}

@media (max-width: 768px) {
  .FavoritesDrawer-module-scss-module__ZZhqnq__favoritesModal {
    border-radius: 16px;
    width: 98%;
    max-height: 90vh;
  }

  .FavoritesDrawer-module-scss-module__ZZhqnq__favoritesModalHeader {
    padding: 16px 20px;
  }

  .FavoritesDrawer-module-scss-module__ZZhqnq__favoritesModalHeader h2 {
    font-size: 18px;
  }

  .FavoritesDrawer-module-scss-module__ZZhqnq__favoritesModalCloseBtn {
    width: 36px;
    height: 36px;
  }

  .FavoritesDrawer-module-scss-module__ZZhqnq__favoritesModalContent {
    padding: 16px;
  }

  .FavoritesDrawer-module-scss-module__ZZhqnq__favoritesList {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 10px;
  }

  .FavoritesDrawer-module-scss-module__ZZhqnq__favoriteItemImage {
    padding-bottom: 100%;
  }

  .FavoritesDrawer-module-scss-module__ZZhqnq__favoriteInfo {
    gap: 4px;
    padding: 8px;
  }

  .FavoritesDrawer-module-scss-module__ZZhqnq__favoriteInfo h3 {
    font-size: 12px;
  }

  .FavoritesDrawer-module-scss-module__ZZhqnq__favoriteInfo p {
    font-size: 10px;
  }

  .FavoritesDrawer-module-scss-module__ZZhqnq__favoriteCreateBtn, .FavoritesDrawer-module-scss-module__ZZhqnq__favoriteRemoveBtn {
    width: 32px;
    height: 32px;
    padding: 6px 10px;
    font-size: 11px;
  }

  .FavoritesDrawer-module-scss-module__ZZhqnq__favoritesModalFooter {
    padding: 12px 16px;
  }

  .FavoritesDrawer-module-scss-module__ZZhqnq__favoritesContinueBtn {
    min-width: 150px;
    padding: 10px 32px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .FavoritesDrawer-module-scss-module__ZZhqnq__favoritesModal {
    border-radius: 0;
    width: 100%;
    max-height: 100vh;
    top: 0;
    transform: translate(0);
  }

  .FavoritesDrawer-module-scss-module__ZZhqnq__favoritesModal.FavoritesDrawer-module-scss-module__ZZhqnq__open {
    top: 0;
  }

  .FavoritesDrawer-module-scss-module__ZZhqnq__favoritesModalHeader {
    padding: 14px 16px;
  }

  .FavoritesDrawer-module-scss-module__ZZhqnq__favoritesModalHeader h2 {
    font-size: 16px;
  }

  .FavoritesDrawer-module-scss-module__ZZhqnq__favoritesModalContent {
    padding: 12px;
  }

  .FavoritesDrawer-module-scss-module__ZZhqnq__emptyState {
    padding: 40px 16px;
  }

  .FavoritesDrawer-module-scss-module__ZZhqnq__emptyText {
    font-size: 18px;
  }

  .FavoritesDrawer-module-scss-module__ZZhqnq__emptySubtext {
    font-size: 13px;
  }

  .FavoritesDrawer-module-scss-module__ZZhqnq__favoritesList {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .FavoritesDrawer-module-scss-module__ZZhqnq__favoriteItemImage {
    padding-bottom: 100%;
  }

  .FavoritesDrawer-module-scss-module__ZZhqnq__favoriteInfo {
    gap: 3px;
    padding: 6px;
  }

  .FavoritesDrawer-module-scss-module__ZZhqnq__favoriteInfo h3 {
    font-size: 11px;
  }

  .FavoritesDrawer-module-scss-module__ZZhqnq__favoriteInfo p {
    font-size: 9px;
  }

  .FavoritesDrawer-module-scss-module__ZZhqnq__favoriteActions {
    gap: 6px;
  }

  .FavoritesDrawer-module-scss-module__ZZhqnq__favoriteCreateBtn {
    padding: 5px 8px;
    font-size: 10px;
  }

  .FavoritesDrawer-module-scss-module__ZZhqnq__favoriteRemoveBtn {
    width: 28px;
    height: 28px;
    font-size: 10px;
  }

  .FavoritesDrawer-module-scss-module__ZZhqnq__favoritesModalFooter {
    padding: 10px 12px;
  }

  .FavoritesDrawer-module-scss-module__ZZhqnq__favoritesContinueBtn {
    min-width: 120px;
    padding: 8px 24px;
    font-size: 13px;
  }
}

/* [project]/src/app/globals.scss.css [app-client] (css) */
@layer properties {
  @supports (((-webkit-hyphens: none)) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color: rgb(from red r g b)))) {
    *, :before, :after, ::backdrop {
      --tw-rotate-x: initial;
      --tw-rotate-y: initial;
      --tw-rotate-z: initial;
      --tw-skew-x: initial;
      --tw-skew-y: initial;
      --tw-border-style: solid;
    }
  }
}

@layer theme {
  :root, :host {
    --font-sans: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    --default-font-family: var(--font-sans);
    --default-mono-font-family: var(--font-mono);
  }
}

@layer base {
  *, :after, :before, ::backdrop {
    box-sizing: border-box;
    border: 0 solid;
    margin: 0;
    padding: 0;
  }

  ::file-selector-button {
    box-sizing: border-box;
    border: 0 solid;
    margin: 0;
    padding: 0;
  }

  html, :host {
    -webkit-text-size-adjust: 100%;
    tab-size: 4;
    line-height: 1.5;
    font-family: var(--default-font-family, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji");
    font-feature-settings: var(--default-font-feature-settings, normal);
    font-variation-settings: var(--default-font-variation-settings, normal);
    -webkit-tap-highlight-color: transparent;
  }

  hr {
    height: 0;
    color: inherit;
    border-top-width: 1px;
  }

  abbr:where([title]) {
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted;
  }

  h1, h2, h3, h4, h5, h6 {
    font-size: inherit;
    font-weight: inherit;
  }

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

  b, strong {
    font-weight: bolder;
  }

  code, kbd, samp, pre {
    font-family: var(--default-mono-font-family, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace);
    font-feature-settings: var(--default-mono-font-feature-settings, normal);
    font-variation-settings: var(--default-mono-font-variation-settings, normal);
    font-size: 1em;
  }

  small {
    font-size: 80%;
  }

  sub, sup {
    vertical-align: baseline;
    font-size: 75%;
    line-height: 0;
    position: relative;
  }

  sub {
    bottom: -.25em;
  }

  sup {
    top: -.5em;
  }

  table {
    text-indent: 0;
    border-color: inherit;
    border-collapse: collapse;
  }

  :-moz-focusring {
    outline: auto;
  }

  progress {
    vertical-align: baseline;
  }

  summary {
    display: list-item;
  }

  ol, ul, menu {
    list-style: none;
  }

  img, svg, video, canvas, audio, iframe, embed, object {
    vertical-align: middle;
    display: block;
  }

  img, video {
    max-width: 100%;
    height: auto;
  }

  button, input, select, optgroup, textarea {
    font: inherit;
    font-feature-settings: inherit;
    font-variation-settings: inherit;
    letter-spacing: inherit;
    color: inherit;
    opacity: 1;
    background-color: #0000;
    border-radius: 0;
  }

  ::file-selector-button {
    font: inherit;
    font-feature-settings: inherit;
    font-variation-settings: inherit;
    letter-spacing: inherit;
    color: inherit;
    opacity: 1;
    background-color: #0000;
    border-radius: 0;
  }

  :where(select:is([multiple], [size])) optgroup {
    font-weight: bolder;
  }

  :where(select:is([multiple], [size])) optgroup option {
    padding-inline-start: 20px;
  }

  ::file-selector-button {
    margin-inline-end: 4px;
  }

  ::placeholder {
    opacity: 1;
  }

  @supports (not ((-webkit-appearance: -apple-pay-button))) or (contain-intrinsic-size: 1px) {
    ::placeholder {
      color: currentColor;
    }

    @supports (color: color-mix(in lab, red, red)) {
      ::placeholder {
        color: color-mix(in oklab, currentcolor 50%, transparent);
      }
    }
  }

  textarea {
    resize: vertical;
  }

  ::-webkit-search-decoration {
    -webkit-appearance: none;
  }

  ::-webkit-date-and-time-value {
    min-height: 1lh;
    text-align: inherit;
  }

  ::-webkit-datetime-edit {
    display: inline-flex;
  }

  ::-webkit-datetime-edit-fields-wrapper {
    padding: 0;
  }

  ::-webkit-datetime-edit {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-year-field {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-month-field {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-day-field {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-hour-field {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-minute-field {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-second-field {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-millisecond-field {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-meridiem-field {
    padding-block: 0;
  }

  ::-webkit-calendar-picker-indicator {
    line-height: 1;
  }

  :-moz-ui-invalid {
    box-shadow: none;
  }

  button, input:where([type="button"], [type="reset"], [type="submit"]) {
    appearance: button;
  }

  ::file-selector-button {
    appearance: button;
  }

  ::-webkit-inner-spin-button {
    height: auto;
  }

  ::-webkit-outer-spin-button {
    height: auto;
  }

  [hidden]:where(:not([hidden="until-found"])) {
    display: none !important;
  }
}

@layer components;

@layer utilities {
  .absolute {
    position: absolute;
  }

  .relative {
    position: relative;
  }

  .container {
    width: 100%;
  }

  @media (min-width: 40rem) {
    .container {
      max-width: 40rem;
    }
  }

  @media (min-width: 48rem) {
    .container {
      max-width: 48rem;
    }
  }

  @media (min-width: 64rem) {
    .container {
      max-width: 64rem;
    }
  }

  @media (min-width: 80rem) {
    .container {
      max-width: 80rem;
    }
  }

  @media (min-width: 96rem) {
    .container {
      max-width: 96rem;
    }
  }

  .flex {
    display: flex;
  }

  .grid {
    display: grid;
  }

  .hidden {
    display: none;
  }

  .transform {
    transform: var(--tw-rotate-x, ) var(--tw-rotate-y, ) var(--tw-rotate-z, ) var(--tw-skew-x, ) var(--tw-skew-y, );
  }

  .border {
    border-style: var(--tw-border-style);
    border-width: 1px;
  }

  .underline {
    text-decoration-line: underline;
  }
}

@font-face {
  font-family: Arco;
  src: url("/fonts/ofont.ru_Arco.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: Gogono;
  src: url("/fonts/gogono-cocoa-mochi-cyrillic.otf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: FeltTipRomRegular;
  src: url("/fonts/FeltTipRomRegular.TTF") format("truetype");
  font-weight: 400;
  font-style: normal;
}

body {
  color: #333;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #fff;
  margin: 0;
  padding: 0;
  font-family: Nunito, sans-serif;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}

@media (min-width: 640px) {
  .container {
    padding-left: 24px;
    padding-right: 24px;
  }
}

.button {
  color: #fff;
  cursor: pointer;
  background: linear-gradient(#fc3d27 0% 100%);
  border: none;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  font-family: Nunito, sans-serif;
  font-size: 14px;
  font-weight: 600;
  transition: all .3s cubic-bezier(.4, 0, .2, 1);
  display: inline-flex;
  box-shadow: 0 4px 16px #0000001f;
}

.button:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px #f926;
}

.button:active:not(:disabled) {
  transform: translateY(0);
}

.button:disabled {
  opacity: .5;
  cursor: not-allowed;
}

.buttongreen {
  color: #fff;
  cursor: pointer;
  background: linear-gradient(#009a3b 0%, #008229 100%);
  border: none;
  border-radius: 24px;
  padding: 12px 32px;
  font-family: Nunito, sans-serif;
  font-size: 14px;
  font-weight: 600;
  transition: all .3s cubic-bezier(.4, 0, .2, 1);
  box-shadow: 0 4px 16px #0000001f;
}

.buttongreen:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px #009a3b66;
}

.buttongreen:disabled {
  opacity: .5;
  cursor: not-allowed;
}

.buttonblue {
  color: #fff;
  cursor: pointer;
  background: linear-gradient(#4a90e2 0%, #357abd 100%);
  border: none;
  border-radius: 24px;
  align-items: center;
  gap: 8px;
  padding: 12px 32px;
  font-family: Nunito, sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all .3s cubic-bezier(.4, 0, .2, 1);
  display: inline-flex;
  box-shadow: 0 4px 16px #0000001f;
}

.buttonblue:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px #4a90e266;
}

.buttonblue:disabled {
  opacity: .5;
  cursor: not-allowed;
}

.center {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

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

@keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translate(100%);
  }

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

@keyframes pulse {
  0%, to {
    opacity: 1;
  }

  50% {
    opacity: .7;
  }
}

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

  to {
    background-position: 1000px 0;
  }
}

@property --tw-rotate-x {
  syntax: "*";
  inherits: false
}

@property --tw-rotate-y {
  syntax: "*";
  inherits: false
}

@property --tw-rotate-z {
  syntax: "*";
  inherits: false
}

@property --tw-skew-x {
  syntax: "*";
  inherits: false
}

@property --tw-skew-y {
  syntax: "*";
  inherits: false
}

@property --tw-border-style {
  syntax: "*";
  inherits: false;
  initial-value: solid;
}

/* [project]/src/components/layout/Footer/Footer.module.scss.module.css [app-client] (css) */
.Footer-module-scss-module__EzUeIG__footer {
  background: #f8f8f8;
  border-top: 1px solid #e8e8e8;
  margin-top: 60px;
}

.Footer-module-scss-module__EzUeIG__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 80px;
}

.Footer-module-scss-module__EzUeIG__content {
  grid-template-columns: 200px 1fr 180px;
  align-items: flex-start;
  gap: 60px;
  padding: 40px 0;
  display: grid;
}

.Footer-module-scss-module__EzUeIG__logoSection {
  align-items: flex-start;
  display: flex;
}

.Footer-module-scss-module__EzUeIG__logoSection a {
  text-decoration: none;
}

.Footer-module-scss-module__EzUeIG__logoImg {
  opacity: .7;
  width: 150px;
  height: auto;
  transition: opacity .3s;
}

.Footer-module-scss-module__EzUeIG__logoImg:hover {
  opacity: 1;
}

.Footer-module-scss-module__EzUeIG__linksWrapper {
  align-items: center;
  gap: 40px;
  display: flex;
}

.Footer-module-scss-module__EzUeIG__column {
  flex-direction: column;
  gap: 16px;
  display: flex;
}

.Footer-module-scss-module__EzUeIG__columnTitle {
  color: #333;
  text-transform: capitalize;
  margin: 0;
  padding: 0;
  font-family: Nunito, sans-serif;
  font-size: 14px;
  font-weight: 700;
}

.Footer-module-scss-module__EzUeIG__linksList {
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}

.Footer-module-scss-module__EzUeIG__linksList li {
  margin: 0;
  padding: 0;
}

.Footer-module-scss-module__EzUeIG__link {
  color: #666;
  cursor: pointer;
  font-family: Nunito, sans-serif;
  font-size: 13px;
  font-weight: 400;
  text-decoration: none;
  transition: all .2s;
  display: inline;
}

.Footer-module-scss-module__EzUeIG__link:hover {
  color: #009a3b;
  text-decoration: underline;
}

.Footer-module-scss-module__EzUeIG__description {
  color: #999;
  margin: 0;
  padding: 0;
  font-family: Nunito, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.6;
}

.Footer-module-scss-module__EzUeIG__description a {
  text-decoration: none;
}

.Footer-module-scss-module__EzUeIG__socialSection {
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
  display: flex;
}

.Footer-module-scss-module__EzUeIG__socialLinks {
  align-items: center;
  gap: 12px;
  display: flex;
}

.Footer-module-scss-module__EzUeIG__socialLink {
  color: #333;
  background: #e8e8e8;
  border: 1px solid #0000;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all .3s;
  display: flex;
}

.Footer-module-scss-module__EzUeIG__socialLink:hover {
  color: #fff;
  background: #009a3b;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px #009a3b33;
}

.Footer-module-scss-module__EzUeIG__copyright {
  text-align: center;
  background: #efefef;
  border-top: 1px solid #e0e0e0;
  padding: 16px 80px;
}

.Footer-module-scss-module__EzUeIG__copyright p {
  color: #999;
  margin: 0;
  padding: 0;
  font-family: Nunito, sans-serif;
  font-size: 12px;
  font-weight: 400;
}

@media (max-width: 1024px) {
  .Footer-module-scss-module__EzUeIG__container {
    padding: 0 40px;
  }

  .Footer-module-scss-module__EzUeIG__content {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 30px 0;
  }

  .Footer-module-scss-module__EzUeIG__linksWrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .Footer-module-scss-module__EzUeIG__socialSection {
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .Footer-module-scss-module__EzUeIG__container {
    padding: 0 20px;
  }

  .Footer-module-scss-module__EzUeIG__content {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 20px 0;
  }

  .Footer-module-scss-module__EzUeIG__linksWrapper {
    flex-direction: column;
  }

  .Footer-module-scss-module__EzUeIG__logoImg {
    width: 120px;
  }

  .Footer-module-scss-module__EzUeIG__copyright {
    padding: 12px 20px;
  }

  .Footer-module-scss-module__EzUeIG__socialLinks {
    justify-content: flex-start;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .Footer-module-scss-module__EzUeIG__container {
    padding: 0 16px;
  }

  .Footer-module-scss-module__EzUeIG__content {
    gap: 20px;
    padding: 16px 0;
  }

  .Footer-module-scss-module__EzUeIG__linksWrapper {
    gap: 16px;
  }

  .Footer-module-scss-module__EzUeIG__link {
    font-size: 12px;
  }

  .Footer-module-scss-module__EzUeIG__description {
    font-size: 11px;
  }

  .Footer-module-scss-module__EzUeIG__socialLink {
    width: 32px;
    height: 32px;
    font-size: 12px;
  }
}

/* [project]/src/components/layout/FAQ/FAQ.module.scss.module.css [app-client] (css) */
.FAQ-module-scss-module__xEX0xq__fAQ {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 0 auto;
  display: flex;
}

.FAQ-module-scss-module__xEX0xq__fAQ h2 {
  text-align: center;
  color: #f80;
  font-family: Nunito, sans-serif;
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  line-height: 130%;
}

@media screen and (max-width: 800px) {
  .FAQ-module-scss-module__xEX0xq__fAQ h2 {
    text-wrap: nowrap;
    font-size: 34px;
    font-weight: 500;
  }
}

.FAQ-module-scss-module__xEX0xq__tel, .FAQ-module-scss-module__xEX0xq__wat {
  color: #fff;
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 70px;
  display: flex;
}

.FAQ-module-scss-module__xEX0xq__wat {
  background: #22ca46;
}

.FAQ-module-scss-module__xEX0xq__tel {
  background: #1c93e3;
}

.FAQ-module-scss-module__xEX0xq__flex {
  align-items: center;
  gap: 20px;
  display: flex;
}

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