/* [project]/src/app/fashion-gallery/create/create.module.css [app-client] (css) */
.create-module__fkct1W__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

.create-module__fkct1W__loading {
  text-align: center;
  color: #888;
  padding: 3rem;
}

.create-module__fkct1W__pageTitle {
  color: #d4915c;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0 0 2rem;
  font-size: 1.5rem;
  font-weight: 600;
}

.create-module__fkct1W__error {
  color: #fca5a5;
  background: #dc26261a;
  border: 1px solid #dc262666;
  border-radius: 4px;
  margin-bottom: 1.5rem;
  padding: 1rem;
}

.create-module__fkct1W__form {
  flex-direction: column;
  gap: 2rem;
  display: flex;
}

.create-module__fkct1W__topRow {
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  display: grid;
}

.create-module__fkct1W__inputGroup label {
  color: #d4915c;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: .75rem;
}

.create-module__fkct1W__input, .create-module__fkct1W__select {
  color: #fdb;
  background: #232323;
  border: 1px solid #3c3c3c;
  border-radius: 4px;
  padding: .75rem 1rem;
  font-size: .9rem;
}

.create-module__fkct1W__input:focus, .create-module__fkct1W__select:focus {
  border-color: #d4915c;
  outline: none;
}

.create-module__fkct1W__input:disabled {
  opacity: .6;
  cursor: not-allowed;
}

.create-module__fkct1W__select option {
  color: #fdb;
  background: #232323;
}

.create-module__fkct1W__select:disabled, .create-module__fkct1W__selectDisabled {
  opacity: .5;
  cursor: not-allowed;
}

.create-module__fkct1W__inputGroup {
  flex-direction: column;
  gap: .5rem;
  display: flex;
  position: relative;
}

.create-module__fkct1W__selectLoader {
  border: 2px solid #d4915c4d;
  border-top-color: #d4915c;
  border-radius: 50%;
  width: 14px;
  height: 14px;
  animation: .8s linear infinite create-module__fkct1W__spin;
  position: absolute;
  bottom: 14px;
  right: 32px;
}

@keyframes create-module__fkct1W__spin {
  to {
    transform: rotate(360deg);
  }
}

.create-module__fkct1W__descriptionSection {
  flex-direction: column;
  gap: .5rem;
  display: flex;
}

.create-module__fkct1W__descriptionSection label {
  color: #d4915c;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: .75rem;
}

.create-module__fkct1W__textarea {
  color: #fdb;
  resize: vertical;
  background: #232323;
  border: 1px solid #3c3c3c;
  border-radius: 4px;
  min-height: 100px;
  padding: 1rem;
  font-size: .9rem;
}

.create-module__fkct1W__textarea:focus {
  border-color: #d4915c;
  outline: none;
}

.create-module__fkct1W__layoutSection {
  border-top: 1px solid #83838363;
  border-bottom: 1px solid #83838363;
  padding: 1.5rem 0;
}

.create-module__fkct1W__layoutLabel {
  text-align: center;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  font-size: .7rem;
}

.create-module__fkct1W__layoutSelector {
  justify-content: center;
  gap: .75rem;
  display: flex;
}

.create-module__fkct1W__layoutButton {
  cursor: pointer;
  background: #282828;
  border: 2px solid #0000;
  border-radius: 4px;
  width: 80px;
  height: 50px;
  padding: 6px;
  transition: all .2s;
}

.create-module__fkct1W__layoutButton:hover {
  border-color: #666;
}

.create-module__fkct1W__layoutButton.create-module__fkct1W__active {
  border-color: #d4915c;
}

.create-module__fkct1W__layoutPreview1 {
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  height: 100%;
  display: grid;
}

.create-module__fkct1W__layoutPreview1 > div {
  background: #464646;
  border-radius: 1px;
}

.create-module__fkct1W__layoutPreview2 {
  grid-template-columns: 2fr 1fr;
  gap: 2px;
  height: 100%;
  display: grid;
}

.create-module__fkct1W__lp2Main {
  background: #464646;
  border-radius: 1px;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding-bottom: 4px;
  display: flex;
}

.create-module__fkct1W__lp2Dots {
  gap: 2px;
  display: flex;
}

.create-module__fkct1W__lp2Dots > span {
  background: #d4915c;
  border-radius: 1px;
  width: 4px;
  height: 4px;
}

.create-module__fkct1W__lp2Cover {
  background: #464646;
  border-radius: 1px;
}

.create-module__fkct1W__layoutPreview3 {
  grid-template-columns: 2fr 1fr;
  gap: 2px;
  height: 100%;
  display: grid;
}

.create-module__fkct1W__lp3Grid {
  grid-template-rows: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  display: grid;
}

.create-module__fkct1W__lp3Grid > div, .create-module__fkct1W__lp3Cover {
  background: #464646;
  border-radius: 1px;
}

.create-module__fkct1W__layoutPreview4 {
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2px;
  height: 100%;
  display: grid;
}

.create-module__fkct1W__lp4Stack {
  flex-direction: column;
  gap: 2px;
  display: flex;
  position: relative;
}

.create-module__fkct1W__lp4Stack > div:not(.create-module__fkct1W__lp4Dots) {
  background: #464646;
  border-radius: 1px;
  flex: 1;
}

.create-module__fkct1W__lp4Dots {
  gap: 2px;
  display: flex;
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
}

.create-module__fkct1W__lp4Dots > span {
  background: #d4915c;
  border-radius: 1px;
  width: 4px;
  height: 4px;
}

.create-module__fkct1W__lp4Cover {
  background: #464646;
  border-radius: 1px;
}

.create-module__fkct1W__layoutPreview5 {
  grid-template-columns: 1fr 2fr 1fr;
  gap: 2px;
  height: 100%;
  display: grid;
}

.create-module__fkct1W__lp5Cover {
  background: #464646;
  border-radius: 1px;
}

.create-module__fkct1W__lp5Gallery {
  background: #464646;
  border-radius: 1px;
  justify-content: center;
  align-items: flex-end;
  padding-bottom: 4px;
  display: flex;
}

.create-module__fkct1W__lp5Dots {
  gap: 2px;
  display: flex;
}

.create-module__fkct1W__lp5Dots > span {
  background: #d4915c;
  border-radius: 1px;
  width: 4px;
  height: 4px;
}

.create-module__fkct1W__layoutPreview6 {
  grid-template-columns: 1fr 3fr;
  gap: 2px;
  height: 100%;
  display: grid;
}

.create-module__fkct1W__lp6Cover {
  background: #464646;
  border-radius: 1px;
}

.create-module__fkct1W__lp6Gallery {
  background: #464646;
  border-radius: 1px;
  justify-content: center;
  align-items: flex-end;
  padding-bottom: 4px;
  display: flex;
}

.create-module__fkct1W__lp6Dots {
  gap: 2px;
  display: flex;
}

.create-module__fkct1W__lp6Dots > span {
  background: #d4915c;
  border-radius: 1px;
  width: 4px;
  height: 4px;
}

.create-module__fkct1W__imageSection {
  flex-direction: column;
  gap: 1.5rem;
  display: flex;
}

.create-module__fkct1W__imageGrid {
  gap: 12px;
  height: 570px;
  display: grid;
}

.create-module__fkct1W__layout1 {
  grid-template-rows: 1fr;
  grid-template-columns: repeat(4, 1fr);
}

.create-module__fkct1W__layout1 .create-module__fkct1W__imageSlot {
  height: 100%;
}

.create-module__fkct1W__layout2 {
  grid-template-rows: 1fr;
  grid-template-columns: 3fr 1fr;
  gap: 12px;
}

.create-module__fkct1W__galleryWithPagination {
  background: #1e1e1e;
  border: 1px solid #323232;
  border-radius: 4px;
  height: 570px;
  position: relative;
  overflow: hidden;
}

.create-module__fkct1W__galleryImage {
  inset: 0;
  border: none !important;
  border-radius: 0 !important;
  width: 100% !important;
  height: 100% !important;
  position: absolute !important;
}

.create-module__fkct1W__galleryImage.create-module__fkct1W__activeImage {
  opacity: 1;
  z-index: 1;
}

.create-module__fkct1W__galleryImage.create-module__fkct1W__hiddenImage {
  opacity: 0;
  z-index: 0;
  pointer-events: none;
}

.create-module__fkct1W__inlinePagination {
  z-index: 5;
  gap: .5rem;
  display: flex;
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
}

.create-module__fkct1W__inlinePagination .create-module__fkct1W__pageButton {
  color: #888;
  background: #323232;
}

.create-module__fkct1W__inlinePagination .create-module__fkct1W__pageButton:hover, .create-module__fkct1W__inlinePagination .create-module__fkct1W__pageButton.create-module__fkct1W__active {
  color: #fff;
  background: #d4915c;
}

.create-module__fkct1W__layout2 > .create-module__fkct1W__imageSlot {
  height: 570px;
}

.create-module__fkct1W__layout3 {
  grid-template-rows: 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
  display: grid;
}

.create-module__fkct1W__layout3 .create-module__fkct1W__imageSlot:first-child {
  grid-area: 1 / 1;
}

.create-module__fkct1W__layout3 .create-module__fkct1W__imageSlot:nth-child(2) {
  grid-area: 1 / 2;
}

.create-module__fkct1W__layout3 .create-module__fkct1W__imageSlot:nth-child(3) {
  grid-area: 2 / 1;
}

.create-module__fkct1W__layout3 .create-module__fkct1W__imageSlot:nth-child(4) {
  grid-area: 2 / 2;
}

.create-module__fkct1W__layout3 .create-module__fkct1W__imageSlot:nth-child(5) {
  grid-area: 1 / 3 / 3;
}

.create-module__fkct1W__layout4 {
  grid-template-rows: 1fr 1fr;
  grid-template-columns: 2fr 1fr 1fr;
}

.create-module__fkct1W__layout4 .create-module__fkct1W__imageSlot:first-child {
  grid-area: 1 / 1;
}

.create-module__fkct1W__layout4 .create-module__fkct1W__imageSlot:nth-child(2) {
  grid-area: 2 / 1;
}

.create-module__fkct1W__layout4 .create-module__fkct1W__imageSlot:nth-child(3) {
  grid-area: 1 / 2 / 3;
}

.create-module__fkct1W__layout4 .create-module__fkct1W__imageSlot:nth-child(4) {
  grid-area: 1 / 3 / 3;
}

.create-module__fkct1W__layout5 {
  grid-template-rows: 1fr;
  grid-template-columns: 1fr 2fr 1fr;
}

.create-module__fkct1W__layout6 {
  grid-template-rows: 1fr;
  grid-template-columns: 1fr 3fr;
}

.create-module__fkct1W__imageSlot {
  background: #1e1e1e;
  border: 1px solid #323232;
  border-radius: 4px;
  transition: border-color .2s;
  display: block;
  position: relative;
  overflow: hidden;
}

.create-module__fkct1W__imageSlot:hover {
  border-color: #d4915c;
}

.create-module__fkct1W__imageSlot.create-module__fkct1W__hasImage {
  cursor: default;
}

.create-module__fkct1W__imageActions {
  z-index: 20;
  opacity: 0;
  gap: 6px;
  transition: opacity .2s;
  display: flex;
  position: absolute;
  top: 8px;
  right: 8px;
}

.create-module__fkct1W__imageSlot:hover .create-module__fkct1W__imageActions {
  opacity: 1;
}

.create-module__fkct1W__actionBtn {
  cursor: pointer;
  background: #000000b3;
  border: none;
  border-radius: 4px;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  transition: background .2s;
  display: flex;
}

.create-module__fkct1W__actionBtn svg {
  color: #fff;
  width: 16px;
  height: 16px;
}

.create-module__fkct1W__actionBtn:hover {
  background: #d4915c;
}

.create-module__fkct1W__actionBtn.create-module__fkct1W__removeBtn:hover {
  background: #c44;
}

.create-module__fkct1W__draggableImage {
  cursor: grab;
  -webkit-user-select: none;
  user-select: none;
  position: absolute;
  inset: 0;
}

.create-module__fkct1W__draggableImage.create-module__fkct1W__dragging {
  cursor: grabbing;
}

.create-module__fkct1W__draggableImage img {
  pointer-events: none;
}

.create-module__fkct1W__dragHintOverlay {
  opacity: 0;
  pointer-events: none;
  background: linear-gradient(#0000, #000000d9);
  padding: 10px 12px;
  transition: opacity .2s;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.create-module__fkct1W__imageSlot:hover .create-module__fkct1W__dragHintOverlay {
  opacity: 1;
}

.create-module__fkct1W__dragHint {
  color: #fdb;
  text-transform: none;
  letter-spacing: .3px;
  text-shadow: 0 1px 3px #000c;
  font-size: 1rem;
}

.create-module__fkct1W__fileInput {
  opacity: 0;
  cursor: pointer;
  z-index: 10;
  position: absolute;
  inset: 0;
}

.create-module__fkct1W__coverSlot {
  grid-row: span 2;
}

.create-module__fkct1W__imagePlaceholder {
  color: #666;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: .5rem;
  display: flex;
  position: absolute;
  inset: 0;
}

.create-module__fkct1W__uploadIcon {
  opacity: .5;
  justify-content: center;
  align-items: center;
  gap: 4px;
  display: flex;
}

.create-module__fkct1W__uploadIcon svg {
  width: 20px;
  height: 20px;
}

.create-module__fkct1W__imageLabel {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: .8rem;
}

.create-module__fkct1W__imageSize {
  opacity: .6;
  font-size: .7rem;
}

.create-module__fkct1W__imageUrlInput {
  flex-direction: column;
  gap: .5rem;
  display: flex;
}

.create-module__fkct1W__imageUrlInput label {
  color: #d4915c;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: .75rem;
}

.create-module__fkct1W__imagePagination {
  justify-content: center;
  gap: .5rem;
  display: flex;
}

.create-module__fkct1W__pageButton {
  color: #888;
  cursor: pointer;
  background: #323232;
  border: none;
  border-radius: 4px;
  width: 40px;
  height: 40px;
  font-size: .9rem;
  transition: all .2s;
}

.create-module__fkct1W__pageButton:hover {
  background: #3c3c3c;
}

.create-module__fkct1W__pageButton.create-module__fkct1W__active {
  color: #fff;
  background: #c44;
}

.create-module__fkct1W__tagsSection {
  border-top: 1px solid #83838363;
  padding-top: 1.5rem;
}

.create-module__fkct1W__tagsSectionTitle {
  color: #d4915c;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  font-size: .9rem;
}

.create-module__fkct1W__autoTags {
  background: #1e1e1e;
  border: 1px solid #323232;
  border-radius: 4px;
  margin-bottom: 1.5rem;
  padding: 1rem;
}

.create-module__fkct1W__autoTagsTitle {
  color: #888;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: .75rem;
  font-size: .75rem;
}

.create-module__fkct1W__tagsList {
  flex-wrap: wrap;
  gap: .5rem;
  display: flex;
}

.create-module__fkct1W__tag {
  color: #fdb;
  background: #323232;
  border-radius: 4px;
  padding: .35rem .75rem;
  font-size: .8rem;
}

.create-module__fkct1W__tagDropdownContainer {
  background: #1e1e1e;
  border: 1px solid #323232;
  border-radius: 4px;
  overflow: hidden;
}

.create-module__fkct1W__selectedTagsRow {
  border-bottom: 1px solid #323232;
  flex-wrap: wrap;
  gap: .5rem;
  padding: 1rem;
  display: flex;
}

.create-module__fkct1W__selectedTag {
  color: #fdb;
  cursor: pointer;
  background: #502832;
  border: none;
  border-radius: 4px;
  align-items: center;
  gap: .5rem;
  padding: .5rem .75rem;
  font-size: .85rem;
  transition: background .2s;
  display: flex;
}

.create-module__fkct1W__selectedTag:hover {
  background: #64323c;
}

.create-module__fkct1W__removeX {
  color: #fdb;
  font-size: .75rem;
}

.create-module__fkct1W__tagDropdown {
  border-bottom: 1px solid #323232;
}

.create-module__fkct1W__tagDropdown:last-child {
  border-bottom: none;
}

.create-module__fkct1W__tagDropdownHeader {
  color: #d4915c;
  cursor: pointer;
  background: none;
  border: none;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1rem;
  font-size: .9rem;
  font-weight: 500;
  transition: background .2s;
  display: flex;
}

.create-module__fkct1W__tagDropdownHeader:hover {
  background: #282828;
}

.create-module__fkct1W__dropdownArrow {
  color: #d4915c;
  transition: transform .2s;
}

.create-module__fkct1W__dropdownArrow svg {
  width: 18px;
  height: 18px;
}

.create-module__fkct1W__dropdownArrow.create-module__fkct1W__open {
  transform: rotate(180deg);
}

.create-module__fkct1W__tagDropdownContent {
  flex-direction: column;
  gap: .25rem;
  padding: .5rem 1rem 1rem;
  display: flex;
}

.create-module__fkct1W__tagCheckboxItem {
  color: #aaa;
  cursor: pointer;
  align-items: center;
  gap: .75rem;
  padding: .5rem 0;
  font-size: .9rem;
  transition: color .2s;
  display: flex;
}

.create-module__fkct1W__tagCheckboxItem:hover {
  color: #fdb;
}

.create-module__fkct1W__tagCheckboxItem input[type="checkbox"] {
  accent-color: #d4915c;
  cursor: pointer;
  width: 18px;
  height: 18px;
}

.create-module__fkct1W__tagCategory {
  margin-bottom: 1.5rem;
}

.create-module__fkct1W__tagCategoryTitle {
  color: #888;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 1px solid #323232;
  margin-bottom: .75rem;
  padding-bottom: .5rem;
  font-size: .75rem;
}

.create-module__fkct1W__tagOptions {
  flex-wrap: wrap;
  gap: .75rem;
  display: flex;
}

.create-module__fkct1W__tagCheckbox {
  color: #aaa;
  cursor: pointer;
  align-items: center;
  gap: .5rem;
  font-size: .85rem;
  display: flex;
}

.create-module__fkct1W__tagCheckbox input[type="checkbox"] {
  accent-color: #d4915c;
  width: 16px;
  height: 16px;
}

.create-module__fkct1W__tagCheckbox:hover {
  color: #fdb;
}

.create-module__fkct1W__loadingText {
  color: #888;
  padding: 1rem 0;
  font-style: italic;
}

.create-module__fkct1W__submitButton {
  color: #d4c4a0;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  background: #5a7a5a;
  border: none;
  border-radius: 4px;
  align-self: flex-start;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 500;
  transition: all .2s;
}

.create-module__fkct1W__submitButton:hover {
  background: #6a8a6a;
}

.create-module__fkct1W__submitButton:disabled {
  opacity: .6;
  cursor: not-allowed;
}

@media (max-width: 768px) {
  .create-module__fkct1W__container {
    padding: 1rem;
  }

  .create-module__fkct1W__topRow {
    grid-template-columns: 1fr;
  }

  .create-module__fkct1W__layoutSelector {
    flex-wrap: wrap;
  }

  .create-module__fkct1W__imageGrid {
    grid-template-columns: 1fr !important;
  }

  .create-module__fkct1W__coverSlot {
    grid-row: span 1;
  }

  .create-module__fkct1W__tagOptions {
    flex-direction: column;
  }
}

/* [project]/src/components/fashion-gallery/fashion-gallery.module.css [app-client] (css) */
.fashion-gallery-module__6w5BRq__pageWrapper {
  z-index: 1;
  min-height: 100vh;
  padding-top: var(--height-navigation-scrolled, 72px);
  background: #171717;
  position: relative;
}

.fashion-gallery-module__6w5BRq__banner {
  background-image: url("/images/fashion-gallery.png");
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 250px;
  position: relative;
}

.fashion-gallery-module__6w5BRq__bannerOverlay {
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 0;
}

.fashion-gallery-module__6w5BRq__bannerTitle {
  color: #d4915c;
  text-transform: uppercase;
  letter-spacing: 4px;
  text-shadow: 2px 2px 8px #000c;
  margin: 0;
  font-size: 3rem;
  font-weight: 700;
}

.fashion-gallery-module__6w5BRq__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.5rem 3rem;
}

.fashion-gallery-module__6w5BRq__filterBar {
  border-bottom: 1px solid #ffffff1a;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1rem 0;
  display: flex;
}

.fashion-gallery-module__6w5BRq__filterGroup {
  flex-direction: column;
  gap: .25rem;
  display: flex;
}

.fashion-gallery-module__6w5BRq__filterLabel {
  color: #888;
  text-transform: uppercase;
  letter-spacing: .5px;
  font-size: .7rem;
}

.fashion-gallery-module__6w5BRq__filterSelect {
  color: #ccc;
  cursor: pointer;
  background: none;
  border: none;
  padding: .25rem 0;
  font-size: .85rem;
}

.fashion-gallery-module__6w5BRq__filterSelect:focus {
  outline: none;
}

.fashion-gallery-module__6w5BRq__searchInput {
  color: #fff;
  background: #ffffff0d;
  border: 1px solid #ffffff1a;
  border-radius: 4px;
  width: 200px;
  padding: .5rem 1rem;
  font-size: .85rem;
}

.fashion-gallery-module__6w5BRq__searchInput::placeholder {
  color: #666;
}

.fashion-gallery-module__6w5BRq__grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 1rem 0;
  display: grid;
}

.fashion-gallery-module__6w5BRq__gridSizer {
  display: none;
}

.fashion-gallery-module__6w5BRq__card {
  color: inherit;
  text-decoration: none;
  display: block;
  position: relative;
  overflow: hidden;
}

.fashion-gallery-module__6w5BRq__cardInner {
  background: #1a1a1a;
  position: relative;
  overflow: hidden;
}

.fashion-gallery-module__6w5BRq__cardImage {
  object-fit: cover;
  width: 100%;
  height: auto;
  display: block;
}

.fashion-gallery-module__6w5BRq__professionIcon {
  z-index: 2;
  filter: drop-shadow(0 2px 4px #00000080);
  position: absolute;
  top: 10px;
  left: 10px;
}

.fashion-gallery-module__6w5BRq__hoverOverlay {
  opacity: 0;
  pointer-events: none;
  background: linear-gradient(#0000, #000000f2);
  padding: 1.5rem 1rem 3rem;
  transition: all .3s;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  transform: translateY(100%);
}

.fashion-gallery-module__6w5BRq__hoverOverlay.fashion-gallery-module__6w5BRq__visible {
  opacity: 1;
  transform: translateY(0);
}

.fashion-gallery-module__6w5BRq__cardTitle {
  color: #fdb;
  border-bottom: 3px solid #d4915c;
  width: 85%;
  margin: 0 0 .5rem;
  padding-bottom: .5rem;
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 400;
}

.fashion-gallery-module__6w5BRq__cardAuthor {
  color: #d4915c;
  margin: 0;
  font-size: .85rem;
}

.fashion-gallery-module__6w5BRq__cardFooter {
  z-index: 3;
  background: linear-gradient(#0000, #000000b3);
  padding: 12px 14px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.fashion-gallery-module__6w5BRq__likesInfo {
  justify-content: flex-end;
  align-items: center;
  gap: 6px;
  display: flex;
}

.fashion-gallery-module__6w5BRq__likesCount {
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
}

.fashion-gallery-module__6w5BRq__likeButton {
  cursor: pointer;
  color: #aaa;
  background: none;
  border: none;
  justify-content: center;
  align-items: center;
  padding: 2px;
  transition: all .2s;
  display: flex;
}

.fashion-gallery-module__6w5BRq__likeButton svg {
  width: 26px;
  height: 24px;
}

.fashion-gallery-module__6w5BRq__likeButton:hover {
  color: #e74c3c;
  transform: scale(1.1);
}

.fashion-gallery-module__6w5BRq__likeButton.fashion-gallery-module__6w5BRq__liked {
  color: #e74c3c;
}

.fashion-gallery-module__6w5BRq__likeButton:disabled {
  cursor: not-allowed;
  opacity: .5;
}

.fashion-gallery-module__6w5BRq__pagination {
  color: #888;
  justify-content: flex-end;
  align-items: center;
  gap: .5rem;
  padding: 2rem 0;
  font-size: .9rem;
  display: flex;
}

.fashion-gallery-module__6w5BRq__paginationLabel {
  margin-right: .5rem;
}

.fashion-gallery-module__6w5BRq__pageNumber {
  color: #888;
  cursor: pointer;
  background: none;
  border: none;
  padding: .25rem .5rem;
  font-size: .9rem;
  transition: color .2s;
}

.fashion-gallery-module__6w5BRq__pageNumber:hover {
  color: #d4af37;
}

.fashion-gallery-module__6w5BRq__pageNumber.fashion-gallery-module__6w5BRq__active {
  color: #d4af37;
  font-weight: 600;
}

.fashion-gallery-module__6w5BRq__ellipsis {
  color: #666;
  padding: 0 .25rem;
}

.fashion-gallery-module__6w5BRq__skeleton {
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  display: grid;
}

.fashion-gallery-module__6w5BRq__skeletonCard {
  aspect-ratio: 3 / 4;
  background: linear-gradient(90deg, #2a2a2a 0%, #3a3a3a 50%, #2a2a2a 100%) 0 0 / 200% 100%;
  border-radius: 8px;
  animation: 1.5s infinite fashion-gallery-module__6w5BRq__shimmer;
}

@keyframes fashion-gallery-module__6w5BRq__shimmer {
  0% {
    background-position: -200% 0;
  }

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

.fashion-gallery-module__6w5BRq__loadingMore {
  text-align: center;
  color: #888;
  padding: 2rem;
}

.fashion-gallery-module__6w5BRq__noMore {
  text-align: center;
  color: #666;
  padding: 2rem;
}

.fashion-gallery-module__6w5BRq__noPosts {
  text-align: center;
  color: #666;
  padding: 3rem;
}

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

@media (max-width: 768px) {
  .fashion-gallery-module__6w5BRq__grid, .fashion-gallery-module__6w5BRq__skeleton {
    grid-template-columns: repeat(2, 1fr);
  }

  .fashion-gallery-module__6w5BRq__filterBar {
    gap: .75rem;
  }

  .fashion-gallery-module__6w5BRq__searchInput {
    width: 150px;
  }
}

@media (max-width: 480px) {
  .fashion-gallery-module__6w5BRq__grid, .fashion-gallery-module__6w5BRq__skeleton {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .fashion-gallery-module__6w5BRq__container {
    padding: 1rem;
  }
}

/* [project]/src/components/ui/CustomSelect.module.css [app-client] (css) */
.CustomSelect-module__f4QqHa__container {
  outline: none;
  width: 100%;
  position: relative;
}

.CustomSelect-module__f4QqHa__container:focus .CustomSelect-module__f4QqHa__trigger {
  border-color: #d4915c;
}

.CustomSelect-module__f4QqHa__disabled {
  opacity: .5;
  pointer-events: none;
}

.CustomSelect-module__f4QqHa__trigger {
  cursor: pointer;
  background: #232323;
  border: 1px solid #3c3c3c;
  border-radius: 4px;
  justify-content: space-between;
  align-items: center;
  padding: .75rem 1rem;
  transition: border-color .2s;
  display: flex;
}

.CustomSelect-module__f4QqHa__trigger:hover {
  border-color: #505050;
}

.CustomSelect-module__f4QqHa__trigger.CustomSelect-module__f4QqHa__open {
  border-color: #d4915c;
}

.CustomSelect-module__f4QqHa__value {
  color: #fdb;
  font-size: .9rem;
}

.CustomSelect-module__f4QqHa__placeholder {
  color: #888;
  font-size: .9rem;
}

.CustomSelect-module__f4QqHa__arrow {
  color: #d4915c;
  align-items: center;
  transition: transform .2s;
  display: flex;
}

.CustomSelect-module__f4QqHa__arrow svg {
  width: 16px;
  height: 16px;
}

.CustomSelect-module__f4QqHa__trigger.CustomSelect-module__f4QqHa__open .CustomSelect-module__f4QqHa__arrow {
  transform: rotate(180deg);
}

.CustomSelect-module__f4QqHa__dropdown {
  z-index: 100;
  background: #232323;
  border: 1px solid #3c3c3c;
  border-radius: 4px;
  max-height: 250px;
  margin: 0;
  padding: 4px 0;
  list-style: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  overflow-y: auto;
}

.CustomSelect-module__f4QqHa__option {
  color: #fdb;
  cursor: pointer;
  padding: .6rem 1rem;
  font-size: .9rem;
  transition: background .15s;
}

.CustomSelect-module__f4QqHa__option.CustomSelect-module__f4QqHa__highlighted {
  background: #d4915c4d;
}

.CustomSelect-module__f4QqHa__option.CustomSelect-module__f4QqHa__selected {
  color: #d4915c;
}

.CustomSelect-module__f4QqHa__option:active {
  color: #171717;
  background: #d4915c;
}

.CustomSelect-module__f4QqHa__dropdown::-webkit-scrollbar {
  width: 6px;
}

.CustomSelect-module__f4QqHa__dropdown::-webkit-scrollbar-track {
  background: #1e1e1e;
}

.CustomSelect-module__f4QqHa__dropdown::-webkit-scrollbar-thumb {
  background: #464646;
  border-radius: 3px;
}

.CustomSelect-module__f4QqHa__dropdown::-webkit-scrollbar-thumb:hover {
  background: #5a5a5a;
}

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