@charset "UTF-8";

.hero-wrapper {
  min-height: 100vh;
  width: 100%;
  background: #1e1a17;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0;
  transition: opacity 1.2s ease;
  will-change: opacity;
}
.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(18, 14, 12, 0.28) 0%,
    rgba(18, 14, 12, 0.5) 100%
  );
}
.hero-slide.is-visible {
  opacity: 1;
}

.hero {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  text-align: center;
}

.hero-title {
  color: #eee7e3;
  text-align: center;
  font-feature-settings: "liga" off;
  font-family: "Adobe Myungjo Std";
  font-size: 72px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
}
@media screen and (max-width: 768px) {
  .hero-title {
    font-size: 40px;
    font-weight: 500;
    line-height: 120%;
  }
}

.hero-subtitle {
  color: #eee7e3;
  text-align: right;
  font-feature-settings: "liga" off;
  font-family: "Adobe Myungjo Std";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  margin-bottom: 16px;
  padding-right: 0.25em;
}

.categories {
  padding: 80px 0;
}
.categories__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 31px;
}
.categories__content {
  position: relative;
  background-color: var(--luxor-color-ribbon);
  overflow: hidden;
}
.categories__content .categories__container {
  --cards-per-view: 4;
  --card-gap: 30px;
  display: flex;
  gap: var(--card-gap);
  scroll-behavior: smooth;
  padding: 10px 0 20px;
  margin: 0 auto;
  max-width: 1240px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
@media (min-width: 1120px) {
  .categories__content .categories__container {
    padding: 0 0 10px;
    justify-content: flex-start;
    flex-wrap: nowrap;
  }
}
@media (max-width: 1120px) {
  .categories__content .categories__container {
    --cards-per-view: 3;
    --card-gap: 20px;
  }
}
@media (max-width: 1000px) {
  .categories__content .categories__container {
    --cards-per-view: 2;
  }
}
@media (max-width: 780px) {
  .categories__content .categories__container {
    --card-gap: 12px;
    padding: 10px 16px 20px;
  }
}
@media (min-width: 1120px) {
  .categories__content .categories__container.is-centered {
    justify-content: center;
  }
}
.categories__content .categories__container::-webkit-scrollbar {
  display: none;
}
.categories__content .categories__container {
  -ms-overflow-style: none;
  scrollbar-width: none;
  padding: 32px 0 50px !important;
}
@media (max-width: 1120px){
  .categories__content .categories__container{
    padding: 32px 0 80px !important;
  }
}
.categories__content .scroll-arrow {
  position: absolute;
  top: 50%;
  width: 30px;
  height: 30px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
  transition: all 0.3s ease;
}
.categories__content .scroll-arrow.left {
  left: 20px;
}
.categories__content .scroll-arrow.right {
  right: 20px;
}
@media (max-width: 1120px) {
  .categories__content .scroll-arrow {
    top: auto;
    bottom: 24px;
    transform: none;
    width: 30px;
    height: 30px;
  }
  .categories__content .scroll-arrow:hover {
    transform: scale(1.1);
  }
  .categories__content .scroll-arrow.left {
    left: 20px;
    right: auto;
    transform: none;
  }
  .categories__content .scroll-arrow.left:hover {
    transform: scale(1.1);
  }
  .categories__content .scroll-arrow.right {
    right: 20px;
    left: auto;
    transform: none;
  }
  .categories__content .scroll-arrow.right:hover {
    transform: scale(1.1);
  }
}

.category-card {
  border-radius: 16px;
  border: 1px solid #e2e2e2;
  background: var(--luxor-color-surface);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  cursor: pointer;
  flex: 0 0 calc((100% - (var(--card-gap) * (var(--cards-per-view) - 1))) / var(--cards-per-view));
  max-width: calc((100% - (var(--card-gap) * (var(--cards-per-view) - 1))) / var(--cards-per-view));
  min-width: 0;
}
@media (max-width: 1120px) {
  .category-card {
    flex: 0 0 calc((100% - (var(--card-gap) * (var(--cards-per-view) - 1))) / var(--cards-per-view));
    max-width: calc((100% - (var(--card-gap) * (var(--cards-per-view) - 1))) / var(--cards-per-view));
    min-width: 0;
  }
}
@media (max-width: 780px) {
  .category-card {
    flex: 0 0 clamp(210px, 72vw, 240px);
    max-width: clamp(210px, 72vw, 240px);
  }
}
@media (hover: hover) and (pointer: fine) {
  .category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  }
}
.category-card__image {
  width: calc(100% - 32px);
  height: 206px;
  margin: 16px 16px 0;
  overflow: hidden;
  border-radius: 8px;
}
@media (max-width: 1120px) {
  .category-card__image {
    height: 160px;
    margin: 12px 12px 0;
    width: calc(100% - 24px);
  }
}
.category-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.category-card__image a {
  display: block;
  width: 100%;
  height: 100%;
}
.category-card__media {
  display: block;
  width: 100%;
  height: 100%;
  padding: 12px;
  overflow: hidden;
  border-radius: 12px;
  background: #fff;
}
.category-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: inherit;
}
.category-card__content {
  padding: 16px;
}
.category-card__title {
  min-height: 76px;
  height: auto;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  align-self: stretch;
  overflow: hidden;
}
.category-card__title a {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  font: inherit;
  line-height: inherit;
  color: var(--luxor-color-text);
  text-overflow: ellipsis;
  font-family: "Palatino Linotype";
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  letter-spacing: -0.8px;
  margin-bottom: 12px;
}
@media (max-width: 1120px) {
  .category-card__title {
    font-size: 16px;
    margin-bottom: 8px;
  }
}
.category-card__colors {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}
.category-card__colors .color-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 768px) {
  .category-card__colors .color-dot {
    width: 10px;
    height: 10px;
  }
}
.category-card__colors .color-dot.color-black {
  background-color: #352317;
}
.category-card__colors .color-dot.color-white {
  background-color: #fff;
  border-color: #ccc;
}
.category-card__colors .color-dot.color-red {
  background-color: #e85b5b;
}
.category-card__colors .color-dot:hover {
  transform: scale(1.15);
}
.category-card__colors .color-dot.active {
  box-shadow: 0 0 0 2px var(--luxor-color-text);
}
.category-card__price {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.category-card__price .price-amount {
  color: var(--luxor-color-text);
  font-family: "Palatino Linotype";
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: -0.96px;
}
@media (max-width: 1120px) {
  .category-card__price .price-amount {
    font-size: 16px;
  }
}
.category-card__price .price-currency {
  color: var(--luxor-color-text);
  font-family: "Palatino Linotype";
  font-size: 14px;
}
@media (max-width: 780px) {
  .category-card__price .price-currency {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    margin-left: 8px;
  }
}
.category-card__price .price-code {
  color: var(--luxor-color-text-soft);
  font-family: "Palatino Linotype";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: -0.56px;
  order: -1;
  text-align: end;
}
@media (max-width: 780px) {
  .category-card__price .price-code {
    font-size: 14px;
  }
}

.brands {
  margin-bottom: 80px;
}

.brands__header {
  margin-bottom: 31px;
}

.brands__scroll-container {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
}

.brands__icons-wrapper {
  position: relative;
  width: 100%;
  background-color: var(--luxor-color-ribbon);
  padding: 32px 30px;
}
@media screen and (max-width: 768px) {
  .brands__icons-wrapper {
    padding-bottom: 56px;
  }
}

.brands__icons {
  display: flex;
  align-items: center;
  gap: 60px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
  flex: 1;
}
.brands__icons::-webkit-scrollbar {
  display: none;
}

.brands__item {
  flex: 0 0 auto;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--luxor-color-ribbon);
  border-radius: 8px;
}
.brands__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  background: var(--luxor-color-ribbon)/cover no-repeat;
  mix-blend-mode: multiply;
}

.scroll-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  border: none;
  border-radius: 50%;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
}
@media (max-width: 780px) {
  .scroll-arrow {
    top: auto;
    bottom: 24px;
    transform: none;
    width: 30px;
    height: 30px;
  }
  .scroll-arrow:hover {
    transform: scale(1.1);
  }
  .scroll-arrow.left {
    left: 20px;
    right: auto;
    transform: none;
  }
  .scroll-arrow.left:hover {
    transform: scale(1.1);
  }
  .scroll-arrow.right {
    right: 20px;
    left: auto;
    transform: none;
  }
  .scroll-arrow.right:hover {
    transform: scale(1.1);
  }
}

.scroll-arrow.left {
  left: 20px;
}

.scroll-arrow.right {
  right: 20px;
}

/* =========================
   Idea section
========================= */
.idea-section {
  padding-bottom: 80px;
  overflow-x: hidden;
}

.idea-content {
  display: flex;
  justify-content: space-between;
  gap: 80px;
}
.idea-content__left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  max-width: 500px;
}
.idea-content__right {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.file-drop {
  width: 100%;
  height: 200px;
  margin-bottom: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px dashed var(--luxor-color-text-soft);
  border-radius: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.file-drop:hover {
  background-color: #f0ede9;
}
.file-drop input[type="file"] {
  display: none;
}
.file-drop__text {
  color: var(--luxor-color-text);
  text-align: center;
  font-family: "Palatino Linotype", serif;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: -0.32px;
}

.idea-btn_left {
  align-self: flex-start;
}

.idea-title {
  margin-bottom: 16px;
}

.idea-form {
  display: flex;
  align-items: flex-end;
  gap: 24px;
  margin-top: 40px;
}
.idea-form__field {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.idea-form__label {
  margin-bottom: 6px;
  color: var(--luxor-color-text);
  font-family: "Palatino Linotype", serif;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: -0.32px;
}
.idea-form__input {
  padding: 10px 16px;
  border-radius: 20px;
  background: #f3f3f3;
  border: none;
  color: var(--luxor-color-text-soft);
  font-family: "Palatino Linotype", serif;
  font-size: 16px;
}
.idea-form__input::-moz-placeholder {
  color: var(--luxor-color-text-soft);
  opacity: 0.7;
}
.idea-form__input::placeholder {
  color: var(--luxor-color-text-soft);
  opacity: 0.7;
}
.idea-form__input:focus {
  outline: none;
  box-shadow: 0 0 0 1px var(--luxor-color-text);
}

/* =========================
   Adaptive ?1200px
========================= */
@media (max-width: 1200px) {
  .idea-content {
    gap: 40px;
  }
  .idea-content__left {
    max-width: 420px;
  }
  .idea-form {
    gap: 16px;
  }
}
/* =========================
   Adaptive ?780px (mobile)
========================= */
@media (max-width: 780px) {
  .idea-content {
    flex-direction: column;
    gap: 32px;
  }
  /* РїРѕСЂСЏРґРѕРє СЌР»РµРјРµРЅС‚РѕРІ */
  .idea-title {
    order: 1;
  }
  .idea-content__right .text-block {
    order: 2;
  }
  .idea-content__left {
    order: 3;
    max-width: 100%;
  }
  .idea-form {
    order: 4;
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
    margin-top: 32px;
  }
  .file-drop {
    height: 160px;
    margin-bottom: 24px;
  }
  .idea-btn_left,
  .idea-form__button {
    margin: 0 auto;
  }
}
/* =========================
   Brand slogan
========================= */
.brand-slogan {
  overflow: hidden;
}
.brand-slogan__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 80px;
}
@media (max-width: 1024px) {
  .brand-slogan__container {
    gap: 30px;
  }
}
@media (max-width: 780px) {
  .brand-slogan__container {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }
}
@media screen and (max-width: 768px) {
  .brand-slogan__image {
    width: calc(100% + 30px);
    margin-left: -15px;
    height: auto;
    aspect-ratio: 375/349;
  }
  .brand-slogan__image > div {
    width: 100%;
    height: 100%;
  }
  .brand-slogan__image > div img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
}
.brand-slogan .brand-slogan__title {
  width: 547px;
  margin-bottom: 16px;
}
@media (max-width: 780px) {
  .brand-slogan .brand-slogan__title {
    width: 100%;
  }
}
.brand-slogan .brand-slogan__text {
  margin-bottom: 32px;
}
.brand-slogan__left {
  flex: 1;
  max-width: 547px;
}
@media (max-width: 1024px) {
  .brand-slogan__left {
    max-width: 50%;
  }
}
@media (max-width: 780px) {
  .brand-slogan__left {
    max-width: 100%;
  }
}
.brand-slogan__right {
  flex-shrink: 0;
  position: relative;
  width: 710px;
  height: 349px;
}
@media (max-width: 1024px) {
  .brand-slogan__right {
    width: 50%;
    height: auto;
    aspect-ratio: 2/1;
  }
}
@media (max-width: 780px) {
  .brand-slogan__right {
    width: 100%;
    height: 350px;
    aspect-ratio: auto;
    order: 2;
  }
}
.brand-slogan__right img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 16px;
}

/* =========================
   Brand promo
========================= */
.brand-promo {
  padding-bottom: 80px;
  overflow-x: hidden;
}
.brand-promo__container {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 32px;
}
.brand-promo__left,
.brand-promo__right {
  flex: 1;
}
.brand-promo__left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.brand-promo .brand-promo__title {
  width: 100%;
  max-width: 608px;
  margin-bottom: 24px;
}
.brand-promo .brand-promo__text {
  margin-bottom: 24px;
}
.brand-promo .button {
  align-self: flex-start;
}
.zen-ui-select__option{
  color: #352317 !important;
}
.zen-ui-select__value>svg path{
  fill: #352317 !important;
}
.brand-promo__right {
  display: flex;
  gap: 16px;
}
.brand-promo__right__image-wrapper {
  flex: 1;
  overflow: hidden;
  border-radius: 16px;
}
.brand-promo__right__image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 1200px) {
  .brand-promo {
    padding-bottom: 64px;
  }
  .brand-promo__container {
    gap: 24px;
  }
  .brand-promo .brand-promo__title {
    max-width: 500px;
  }
}
@media (max-width: 768px) {
  .brand-promo {
    padding-bottom: 48px;
  }
  .brand-promo__container {
    flex-direction: column;
    gap: 20px;
  }
  .brand-promo .brand-promo__title {
    max-width: 100%;
    margin-bottom: 16px;
  }
  .brand-promo .brand-promo__text {
    margin-bottom: 16px;
  }
  .brand-promo .button {
    align-self: flex-start;
    margin-top: 24px;
  }
  .brand-promo__right {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 8px;
  }
  .brand-promo__right__image-wrapper {
    border-radius: 12px;
    min-width: 200px;
    flex-shrink: 0;
  }
} /*# sourceMappingURL=home.css.map */
