:root {
  --fontSizeExtraSmall: 13px;
  --fontSizeSmall: 15px;
  --fontSizeDefault: 17px;
  --fontSizeH1: 42px;
  --fontSizeH2: 30px;
  --fontSizeH3: 20px;
  --gapXXS: 12px;
  --gapXS: 24px;
  --gapS: 32px;
  --gapM: 36px;
  --gapL: 42px;
  --gapXL: 72px;
}

@media (max-width: 850px) {
  :root {
    --fontSizeExtraSmall: 13px;
    --fontSizeSmall: 15px;
    --fontSizeDefault: 17px;
    --fontSizeH1: 30px;
    --fontSizeH2: 24px;
    --fontSizeH3: 18px;
    --gapXXS: 10px;
    --gapXS: 16px;
    --gapS: 20px;
    --gapM: 24px;
    --gapL: 32px;
    --gapXL: 48px;
  }
}
@media (min-width: 850px) {
  .hideOnDesktop {
    display: none !important;
  }
}
@media (max-width: 850px) {
  .hideOnMobile {
    display: none !important;
  }
}
.gapXXS {
  height: var(--gapXXS);
}

.gapXS {
  height: var(--gapXS);
}

.gapS {
  height: var(--gapS);
}

.gapM {
  height: var(--gapM);
}

.gapL {
  height: var(--gapL);
}

.gapXL {
  height: var(--gapXL);
}

* {
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  box-sizing: border-box;
}

svg, img {
  display: block;
}

body {
  font-family: "Inter Display", -apple-system, helvetica, arial, sans-serif;
  font-weight: normal;
  -webkit-font-smoothing: antialiased;
  color: #111;
  background-color: #fff;
  font-size: var(--fontSizeDefault);
  line-height: 1.5;
}

.disable {
  opacity: 0.5;
  pointer-events: none;
}

a {
  cursor: pointer;
  color: #111;
  text-decoration: none;
  font-weight: 500;
  transition: 0.15s ease;
}

a:not(.btn):hover {
  color: #666;
}

h1 {
  font-size: var(--fontSizeH1);
  font-weight: 500;
  line-height: 1.2;
}

h2 {
  font-size: var(--fontSizeH2);
  font-weight: 500;
  line-height: 1.2;
}

h3 {
  font-size: var(--fontSizeH3);
  font-weight: 500;
  line-height: 1.2;
}
h3 span {
  margin-left: 5px;
  color: #999;
}

.smallText {
  font-size: var(--fontSizeSmall);
}

.t-light {
  color: #666;
}

.t-ultralight {
  color: #999;
}

strong {
  font-weight: 500;
}

hr {
  border: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.btnGrp {
  display: flex;
  align-items: center;
  gap: var(--gapS);
}
.btnGrp.center {
  justify-content: center;
}
.btnGrp.right {
  justify-content: flex-end;
}

.btn {
  border: 0;
  -webkit-appearance: none;
  cursor: pointer;
  display: inline-block;
  background-color: rgba(0, 0, 0, 0.05);
  padding: 8px 12px;
  border-radius: 10px;
  font-size: inherit;
  line-height: inherit;
  font-weight: 500;
  text-decoration: none;
  font-size: var(--fontSizeSmall);
}

.btn:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

.btn.wide {
  width: 100%;
  text-align: center;
}

.btn.white {
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.02);
}

.btn.white:hover {
  border-color: rgba(0, 0, 0, 0.15);
}

.btn.dark {
  background-color: #111;
  color: white;
}

.btn.dark:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.btn.big {
  font-size: var(--fontSizeDefault);
  padding: 10px 20px;
}

.tagGroup {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.tag {
  border: 1px solid rgba(0, 0, 0, 0.07);
  padding: 2px 8px;
  border-radius: 50px;
}
.tag:hover {
  color: #111 !important;
  background-color: rgba(0, 0, 0, 0.05);
}

.aiBar {
  background: rgba(0, 0, 0, 0.05);
  padding: 5px 10px;
  font-size: var(--fontSizeExtraSmall);
  font-weight: 500;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.main {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.expandedSection {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--gapS);
}

.container.small {
  max-width: 640px;
}

.sidebarPage {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: var(--gapM);
}

@media (max-width: 850px) {
  .sidebarPage {
    grid-template-columns: 1fr;
  }
}
.mainImgWrap {
  height: 100%;
  max-height: calc(100vh - var(--gapL) * 2);
  display: flex;
  align-items: center;
  position: sticky;
  top: var(--gapL);
}

.flows {
  display: flex;
  flex-direction: column;
  gap: var(--gapL);
}

.subFlow {
  padding-left: var(--gapS);
  border-left: 1px solid rgba(0, 0, 0, 0.07);
}

.flowsList {
  display: flex;
  flex-direction: column;
  gap: var(--gapXXS);
}

.flowsList a {
  padding: 8px 12px;
  margin: 0 -12px;
  border-radius: 10px;
}
.flowsList a:hover {
  background-color: rgba(0, 0, 0, 0.05);
  color: #111;
}

.flowsList .subFlow {
  padding-left: var(--gapXS);
  border-left: 0;
}

.header {
  background-color: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  padding: 0 var(--gapS);
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: 0.15s ease;
}

.header {
  height: 80px;
}

.headerSpacer {
  height: calc(80px - var(--gapXS));
}

.header.scrolled {
  box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.05);
  height: 60px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: var(--fontSizeSmall);
  position: relative;
}

.logoIcon {
  width: 26px;
  height: 26px;
  background: #111;
  border-radius: 5px;
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  color: white;
}
.logoIcon svg {
  width: 16px;
  height: 16px;
}

.nav {
  display: flex;
  align-items: center;
  gap: var(--gapXS);
  font-size: var(--fontSizeSmall);
}

.nav a:not(.btn) {
  display: flex;
  text-decoration: none;
  font-weight: 500;
  color: #999;
}
.nav a:not(.btn):hover, .nav a:not(.btn).active {
  color: #111;
}

.mobNavToggle {
  display: none;
}

@media (min-width: 900px) {
  .hideOnDesktop {
    display: none;
  }
}
@media (max-width: 900px) {
  .mobNavToggle {
    display: block;
  }
  .nav {
    display: none;
  }
  .mobNavToggleBtnAlt {
    display: none;
  }
  .header.open .mobNavToggleBtn {
    display: none;
  }
  .header.open .mobNavToggleBtnAlt {
    display: block;
    position: relative;
    z-index: 2;
  }
  .header.open .nav.mainNav {
    z-index: 1;
    display: flex;
    position: fixed;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    padding: var(--gapS);
    text-align: left;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100vh;
    background-color: #fff;
  }
  .header.open .nav a:not(.btn) {
    border-top: 1px solid rgba(0, 0, 0, 0.07);
    padding-top: var(--gapXS);
  }
  .header.open .nav a:first-of-type {
    border-top: 0;
  }
  .header.open .nav .btn {
    margin-top: 16px;
    margin-right: auto;
  }
}
.footer {
  margin-top: auto;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
  padding: var(--gapS);
  font-size: var(--fontSizeSmall);
  color: #666;
}

.footerContent {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: var(--gapS);
  flex-wrap: wrap;
}

.footerBio {
  max-width: 400px;
}

.footerLegal {
  text-align: right;
}

@media (max-width: 850px) {
  .footerContent {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footerLegal {
    text-align: center;
  }
}
.mainSearch .searchForm {
  width: 100%;
  position: relative;
}

.searchFieldWrap {
  position: relative;
}

.field {
  width: 100%;
  padding: 12px 18px;
  border: 0;
  margin: 0;
  display: block;
  outline: none;
  -webkit-appearance: none;
  border-radius: 10px;
  resize: none;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  background: rgba(0, 0, 0, 0.05);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  height: 50px;
  transition: height 0.2s ease;
}
.field.round {
  border-radius: 25px;
}

.searchForm[data-mode=ask] .field {
  height: 120px;
}

.headerSearch {
  position: absolute;
  left: 50%;
  margin-left: -180px;
  width: 360px;
  top: 50%;
  margin-top: -22px;
}
.headerSearch .field {
  white-space: nowrap;
  overflow: hidden;
  padding-top: 0;
  padding-bottom: 0;
  height: 44px;
  font-size: var(--fontSizeSmall);
}
@media (max-width: 850px) {
  .headerSearch {
    display: none;
  }
}

.fakeSearchField {
  cursor: text;
  display: flex;
  align-items: center;
  color: #999;
}

.searchToggle {
  position: relative;
  z-index: 5;
  margin-left: auto;
  cursor: pointer;
}

.mainSearch {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  gap: var(--gapS);
  margin: 0;
  width: 100%;
  height: 100vh;
  padding: var(--gapS);
  background: #fff;
  z-index: 100;
}
.mainSearch .searchToggle {
  position: absolute;
  top: 28px;
  right: 22px;
}

.searchModeSwitcher {
  gap: 8px;
  align-items: stretch;
}
.searchModeSwitcher .btn {
  border-radius: 50px;
  padding: 4px 12px;
  height: 32px;
}

.searchForm[data-mode=standard] .searchModeSwitcher .btn[data-mode=standard] {
  background-color: rgba(0, 0, 0, 0.05);
}

.searchForm[data-mode=ask] .searchModeSwitcher .btn[data-mode=ask] {
  background-color: rgba(0, 0, 0, 0.05);
}

.miniSearchBtn {
  position: absolute;
  bottom: 9px;
  right: 9px;
  z-index: 2;
  padding: 0;
  width: 32px;
  height: 32px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.miniSearchBtn svg {
  flex-shrink: 0;
  margin-right: -1px;
}

.aiLoader {
  display: inline-block;
  margin-bottom: -2px;
}
.aiLoader svg {
  width: var(--fontSizeH3);
  height: var(--fontSizeH3);
}

.loading .aiLoader {
  animation: loaderSpin 3s ease-in-out infinite;
}

@keyframes loaderSpin {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(360deg);
  }
  50% {
    transform: rotate(360deg);
  }
  75% {
    transform: rotate(720deg);
  }
  100% {
    transform: rotate(720deg);
  }
}
.aiResultsContent {
  opacity: 0;
  transform: translateY(20px);
  transition: 0.2s ease;
}

.aiResultsContent.visible {
  opacity: 1;
  transform: translateY(0px);
}

.libPopup {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  padding: 24px;
  display: none;
  transition: 0.15s ease;
  opacity: 0;
  pointer-events: none;
}
.libPopup .libPopupContent {
  transition: 0.15s ease;
  opacity: 0;
  transform: scale(0.5) translateY(40px);
}

.libPopup.animateIn {
  opacity: 1;
  pointer-events: all;
}
.libPopup.animateIn .libPopupContent {
  opacity: 1;
  transform: scale(1) translateY(0px);
}

.libPopupOverlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.5);
}

.libPopupContent {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  border: 0;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
}

.libPopupControls {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: fixed;
  top: 48px;
  right: 48px;
  z-index: 2;
}
.libPopupControls a {
  width: 38px;
  height: 38px;
  padding: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cardGrid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--gapS);
}

@media (max-width: 650px) {
  .cardGrid {
    grid-template-columns: 1fr;
  }
}
.card {
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  overflow: hidden;
  font-weight: normal;
}
.card.noMeta {
  background-color: rgba(255, 0, 0, 0.1);
}
.card:hover {
  color: #111 !important;
}

.cardList .cardListRow {
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}
.cardList .cardListRow:last-child {
  border-bottom: 0;
}

.cardPadd {
  padding: var(--gapXS);
}

.imageSizer {
  width: 100%;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.imageSizer.alt {
  aspect-ratio: 5/3;
}

.imageLink .imageSizer img,
.imageLink .cardImg {
  transition: 0.15s ease;
}

.imageLink:hover .imageSizer img,
.imageLink:hover .cardImg {
  transform: scale(1.02);
}

.imageSizer img,
.cardImg {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  width: auto;
  height: auto;
  border-radius: 4px;
}

.productTitle {
  display: flex;
  align-items: center;
  gap: 16px;
}
@media (max-width: 650px) {
  .productTitle {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

.lockedIcon svg {
  width: 16px;
  height: 16px;
}

.productIconWrap {
  position: relative;
}

.productIconWrap:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 25%;
}

.productIcon {
  width: 44px;
  height: auto;
  border-radius: 25%;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.02);
}

.productIconWrap.small .productIcon {
  width: 28px;
}

.productIconWrap.big .productIcon {
  width: 64px;
}
@media (max-width: 650px) {
  .productIconWrap.big .productIcon {
    width: 44px;
  }
}

.productTag {
  display: flex;
  align-items: center;
  gap: 8px;
}

.productCoverWrap {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.productCover {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
}

.collectionScroller {
  padding: 0 var(--gapS);
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  scroll-snap-align: center;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.collectionScroller::-webkit-scrollbar {
  display: none;
}

.collectionScrollerItem {
  border-radius: 100px;
  flex-shrink: 0;
}

.randomPage {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background: #fff;
}
.randomPage .panArea {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.randomPage .panContentWrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.randomPage .panContent {
  display: flex;
  gap: 5vw;
  padding: 5vw;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  margin: auto;
}
.randomPage .column {
  width: 400px;
  display: flex;
  flex-direction: column;
  gap: 5vw;
  flex-shrink: 0;
}
.randomPage .subColumn {
  display: flex;
  flex-direction: column;
  gap: 5vw;
}
.randomPage .subColumn.topColumn {
  flex-direction: column-reverse;
}
.randomPage .sizer {
  width: 100%;
  aspect-ratio: 4/3;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.randomPage .bookmark-wrapper {
  perspective: 800px;
  position: relative;
}
.randomPage .bookmark {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: 5px;
  transform-style: preserve-3d;
  transition: 0.15s ease;
  overflow: hidden;
}
.randomPage .bookmark a {
  display: block;
}
.randomPage .bookmark a:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 5px;
}
.randomPage .bookmark img {
  opacity: 0;
  pointer-events: none;
  border-radius: 5px;
  display: block;
  margin: 0;
}
.randomPage .bookmark img.loading {
  visibility: hidden;
}
.randomPage .bookmark:hover {
  box-shadow: 0px 167px 179px rgba(0, 0, 0, 0.04), 0px 69.7686px 74.7819px rgba(0, 0, 0, 0.0287542), 0px 37.3016px 39.982px rgba(0, 0, 0, 0.0238443), 0px 20.911px 22.4136px rgba(0, 0, 0, 0.02), 0px 11.1057px 11.9037px rgba(0, 0, 0, 0.0161557), 0px 4.62132px 4.95339px rgba(0, 0, 0, 0.0112458);
  z-index: 2;
}
@media only screen and (max-width: 800px) {
  .randomPage {
    display: none;
  }
}/*# sourceMappingURL=styles.css.map */