/*============= ALIGNES ===============*/
.alignwide {
  width: 100%;
}

.alignfull {
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  max-width: 1920px;
}

@media only screen and (min-width: 1920px) {
  .alignfull {
    width: 100vw !important;
    max-width: unset;
  }
}
/* =========== BASE CONFIG =========== */
html {
  box-sizing: border-box;
}

:root {
  --bg-main: #ffffff;
  --bg-accent: #dad4d4;

  --primary: #f1f0eb;
  --secondary: #b2aba5;
  --black: #cebfb4;
  --gray1: #5a534e;
  --gray2: #d1d1d1;
  --gray3: #333333;
  --white: #ffffff;
  --20: calc(20 / 19.2 * 1vw);
  --20to15: max(var(--20), 15px);
  --20s: max(var(--20), 20px);
  --transition: all 0.3s ease-in;


  --text-color: #2c2c2c;
  --text-hover: #816b6b;
  --text-accent: #5a4d4d;
  --text-light: #cebfb4;
  --text-white: #ffffff;

  --btn-color: #5a4d4d;
  --btn-hover: #b9a9a9;
}

::selection {
  color: white;
  background-color: var(--text-hover);
}

.sidebar {
  position: fixed;
  right: 20px;
  height: fit-content;
  top: 0;
  bottom: 0;
  margin: auto;
  display: flex;
  gap: 10px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.sidebar .sidebar__item {
  width: 50px;
  height: 50px;
  padding: 10px;
  background: #ffffff;
  border: 1px solid var(--btn-color);
  border-radius: 50%;
}
.sidebar .sidebar__item img,
.sidebar .sidebar__item svg {
  object-fit: contain;
  width: 100%;
  height: 100%;
}
.sidebar .sidebar__item.sidebar__btn path {
  fill: rgb(90, 83, 78);
}

@media (max-width: 992px) {
  .sidebar {
    right: 10px;
  }
}

* {
  margin: 0;
  padding: 0;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  box-sizing: inherit;
  color: var(--text-color);
}

body {
  background-color: var(--bg-main);
  overflow-x: hidden;
  margin: 0 auto;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

a {
  text-decoration: none;
  font-family: "Inter";
  font-weight: 300;
  font-size: max(0.8333333333vw, 14px);
  line-height: 150%;
  color: var(--text-color);
  transition: all 0.3s ease-in;
}

ul li {
  list-style-position: inside;
  font-family: "Inter";
  font-weight: 300;
  font-size: max(0.8333333333vw, 14px);
  line-height: 150%;
  color: var(--text-color);
  margin-bottom: 10px;
}
ul li::marker {
  color: var(--secondary);
}

ol li {
  list-style-position: inside;
  font-family: "Inter";
  font-weight: 300;
  font-size: max(0.8333333333vw, 14px);
  line-height: 150%;
  color: var(--text-color);
  margin-bottom: 10px;
}

input {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}

strong {
  font-family: "Lithium Typeface";
}

table {
  font-size: 14px;
}

h1.page-title {
  margin-bottom: max(2.6041666667vw, 20px);
}

.breadcrumbs {
  padding: max(3.59375vw, 20px) 0 max(1.5625vw, 15px);
  font-family: "Lithium Typeface";
  font-weight: 400;
  font-size: max(1.0416666667vw, 16px);
  line-height: 86%;
  color: var(--color, var(--black));
}
.breadcrumbs span {
  font-family: "Lithium Typeface";
  font-weight: 400;
  font-size: max(1.0416666667vw, 16px);
  line-height: 86%;
  color: var(--color, var(--black));
  transition: var(--transition);
}

.container {
  max-width: max(91.6666666667vw, 1760px);
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--20s);
}

.page-container {
  max-width: max(67.34375vw, 1293px);
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--20s);
}

svg {
  transition: var(--transition);
  width: var(--svgWidth, 16px);
  height: var(--svgHeight, 16px);
  color: var(--svgColor, var(--black));
}

button {
  border: none;
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
}

.btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  outline: none;
  cursor: pointer;
  transition: var(--transition);
  padding: max(1.0416666667vw, 20px) max(1.8229166667vw, 20px);
  border: 1px solid var(--btn-color);
  background: transparent;
  font-family: "Inter";
  font-weight: 400;
  font-size: max(0.7291666667vw, 14px);
  line-height: 150%;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  color: var(--btn-color);
  overflow: hidden;
  flex-shrink: 0;
}
/* .btn:hover {
  border: 1px solid var(--btn-hover);
  color: var(--btn-hover);
} */
.btn:before {
  content: "";
  position: absolute;
  width: 150%;
  aspect-ratio: 1/1;
  background: var(--btn-hover);
  transition: transform 0.5s ease-out, opacity 0.5s ease-out;
  border-radius: 50%;
  transform: scale(0);
  transform-origin: bottom;
  z-index: 0;
  opacity: 0;
}
.btn span {
  z-index: 1;
}
.btn svg {
  transition: var(--transition);
}
.btn svg path {
  transition: var(--transition);
}
@media (min-width: 992px) {
  .btn:hover {
    --color: var(--white);
  }
  .btn:hover::before {
    transform: scale(1);
    opacity: 1;
    transition: transform 0.5s ease-out, opacity 0s ease-out;
  }
}
.btn--secondary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  outline: none;
  cursor: pointer;
  transition: var(--transition);
  padding: max(1.0416666667vw, 20px) max(1.8229166667vw, 20px);
  border: 1px solid var(--white);
  background: var(--background, transparent);
  font-family: "Inter";
  font-weight: 400;
  font-size: max(0.7291666667vw, 14px);
  line-height: 150%;
  color: var(--color, var(--black));
  letter-spacing: 0.7px;
  text-transform: uppercase;
  color: var(--color, var(--white));
}
.btn--secondary:before {
  content: "";
  position: absolute;
  width: 150%;
  aspect-ratio: 1/1;
  background: var(--white);
  transition: transform 0.5s ease-out, opacity 0.5s ease-out;
  border-radius: 50%;
  transform: scale(0);
  transform-origin: bottom;
  z-index: 0;
  opacity: 0;
}
.btn--secondary span {
  z-index: 1;
}
@media (min-width: 992px) {
  .btn--secondary:hover {
    --color: var(--black);
  }
}
.btn--circle {
  width: max(7.9166666667vw, 20px);
  height: max(7.9166666667vw, 20px);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Inter";
  font-weight: 400;
  font-size: max(0.7291666667vw, 14px);
  line-height: 150%;
  color: var(--color, var(--black));
  letter-spacing: 0.7px;
  text-transform: uppercase;
  position: relative;
  transform: scale(1);
  transition: var(--transition);
}
.btn--circle:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: var(--white);
  transform: scale(1);
  z-index: -1;
  transition: all 0.3s cubic-bezier(0.4, 0, 1, 1);
}
.btn--circle:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: var(--primary);
  transform: scale(0);
  z-index: -1;
  transition: transform 0.3s cubic-bezier(0.4, 0, 1, 1);
}
@media (min-width: 992px) {
  .btn--circle:hover:after {
    transform: scale(1.43);
    background-color: var(--primary);
  }
  .btn--circle:hover:before {
    transform: scale(0.856);
    background-color: var(--primary);
  }
}

.carousel__button svg {
  stroke: white !important;
}

.fancybox__thumbs .carousel__slide .fancybox__thumb::after {
  border: 5px solid white !important;
}

h1 {
  font-family: "Lithium Typeface";
  font-weight: 400;
  font-size: 48px;
  line-height: 86%;
  color: var(--text-accent);
}

h2 {
  font-family: "Lithium Typeface";
  font-weight: 400;
  font-size: 42px;
  line-height: 86%;
  color: var(--text-accent);
}

h3,
.h3 {
  font-family: "Lithium Typeface";
  font-weight: 400;
  font-size: max(2.0833333333vw, 25px);
  line-height: 150%;
  color: var(--text-accent);
}

h4,
.h4 {
  font-family: "Inter";
  font-weight: 500;
  font-size: max(1.6666666667vw, 18px);
  line-height: 150%;
  color: var(--text-accent);
}

h5,
.h5 {
  font-family: "Inter";
  font-weight: 400;
  font-size: max(1.4583333333vw, 16px);
  line-height: 150%;
  color: var(--text-accent);
}

h6,
.h6 {
  font-family: "Inter";
  font-weight: 500;
  font-size: max(0.8333333333vw, 16px);
  line-height: 150%;
  color: var(--text-accent);
}

.h6-L {
  font-family: "Lithium Typeface";
  font-weight: 400;
  font-size: max(1.0416666667vw, 16px);
  line-height: 86%;
  color: var(--text-accent);
}

.h6-14 {
  font-family: "Inter";
  font-weight: 500;
  font-size: max(0.7291666667vw, 14px);
  line-height: 150%;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

@media (max-width: 1400px) {
  h1 {
    font-size: 38px;
  }
}
@media (max-width: 1200px) {
  h1 {
    font-size: 34px;
  }

  h2 {
    font-family: "Lithium Typeface";
    font-weight: 400;
    font-size: 34px;
    line-height: 86%;
    color: var(--text-accent);
  }
}

@media (max-width: 1100px) {
  h1 {
    font-size: 30px;
  }

  h2 {
    font-family: "Lithium Typeface";
    font-weight: 400;
    font-size: 28px;
    line-height: 86%;
    color: var(--text-accent);
  }
}
@media (max-width: 767px) {
  h1 {
    font-size: 26px;
  }

  h2 {
    font-family: "Lithium Typeface";
    font-weight: 400;
    font-size: 26px;
    line-height: 86%;
    color: var(--text-accent);
  }
}
@media (max-width: 480px) {
  h1 {
    font-size: 24px;
  }

  h2 {
    font-family: "Lithium Typeface";
    font-weight: 400;
    font-size: 24px;
    line-height: 86%;
    color: var(--text-accent);
  }
}
.text-block > h2 {
  text-transform: none !important;
}

.p-24 {
  font-family: "Inter";
  font-weight: 400;
  font-size: max(1.25vw, 16px);
  line-height: 150%;
  color: var(--text-color);
}

.p-20 {
  font-family: "Inter";
  font-weight: 400;
  font-size: max(1.0416666667vw, 16px);
  line-height: 150%;
  color: var(--text-color);
}

p,
.p {
  font-family: "Inter";
  font-weight: 300;
  font-size: max(0.8333333333vw, 14px);
  line-height: 150%;
  color: var(--text-color);
}

.p-14 {
  font-family: "Inter";
  font-weight: 400;
  font-size: max(0.7291666667vw, 14px);
  line-height: 150%;
  color: var(--text-color);
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.compensate-for-scrollbar {
  margin-right: auto !important;
}

body.compensate-for-scrollbar {
  overflow: auto !important;
  overflow-x: hidden !important;
}

.block-number {
  margin-bottom: max(1.71875vw, 15px);
  font-family: "Lithium Typeface";
  font-size: max(1.0416666667vw, 16px);
  font-weight: 400;
  line-height: 86%;
}

/*============ SLIDER =================*/
.slider-btn {
  width: max(2.0833333333vw, 40px);
  height: max(2.0833333333vw, 40px);
  border-radius: 50%;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: transparent;
  transition: var(--transition);
  border: 2px solid var(--primary);
}
.slider-btn svg {
  width: max(1.0416666667vw, 20px);
  height: max(1.0416666667vw, 20px);
  --svgColor: var(--black);
}
.slider-btn--prev svg {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .slider-btn:hover {
    background-color: var(--white);
  }
  .slider-btn:hover svg {
    --svgColor: var(--black);
  }
}
.slider-btn.swiper-button-disabled {
  opacity: 0.6;
  pointer-events: none !important;
}
.slider-btn.swiper-button-disabled svg {
  color: var(--stroke);
}

.slider-pagination {
  position: static !important;
  text-align: start !important;
  max-width: 65%;
  --swiper-pagination-bullet-horizontal-gap: max(0.2604166667vw, 5px);
  --swiper-pagination-color: var(--primary);
  --swiper-pagination-bullet-inactive-color: var(--secondary);
  --swiper-pagination-bullet-inactive-opacity: 1;
  --swiper-pagination-bullet-width: max(0.4166666667vw, 8px);
  --swiper-pagination-bullet-height: max(0.4166666667vw, 8px);
}

.slider-nav {
  display: flex;
}
.slider-nav > *:not(:last-child) {
  margin-right: max(0.5208333333vw, 5px);
}

.swiper-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: max(2.0833333333vw, 20px);
}

.block-head {
  margin-bottom: max(3.6458333333vw, 30px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: max(0.5208333333vw, 10px);
}
.block-head .block-title {
  margin-bottom: 0;
  max-width: 85%;
}
.block-head__navigation {
  display: flex;
}
.block-head__navigation > *:not(:last-child) {
  margin-right: max(1.0416666667vw, 10px);
}

.block-subtitle {
  display: flex;
  align-items: center;
  font-family: "Inter";
  font-weight: 500;
  font-size: max(0.8333333333vw, 16px);
  line-height: 150%;
  color: var(--color, var(--black));
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: max(1.5104166667vw, 15px);
}
.block-subtitle:before {
  content: "";
  display: block;
  width: max(0.3125vw, 6px);
  height: max(0.3125vw, 6px);
  border-radius: 50%;
  background-color: var(--black);
  margin-right: max(1.25vw, 5px);
}

.fancybox__content .logo {
  width: 100%;
  height: auto;
  margin-bottom: 20px;
  object-fit: contain;
  background: #c0bfbf;
}

.fancybox__slide * {
  color: #242424;
}

/*============ TEMPLATES ===============*/
.product {
  display: flex;
  position: relative;
  height: max-content;
  overflow: hidden;
  height: 100%;
}
/* .product:after {
  content: "";
  display: block;
  padding-bottom: 124.5%;
  background: linear-gradient(180deg, rgba(217, 217, 217, 0) 0%, #bababa 100%);
  mix-blend-mode: multiply;
  z-index: 1;
} */
.product__content {  
  display: flex;
  position: relative;
  flex-direction: column;
  justify-content: flex-end;
  padding: 15px;
  gap: 5px;
  z-index: 2;
  --color: var(--white);
}
.product__button {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  opacity: 0;
  z-index: 3;
}
.product__title {
  letter-spacing: 0.8px;
  text-transform: uppercase;
}
.product__volume {
  letter-spacing: 0.7px;
  text-transform: uppercase;
}
.product__price {
  letter-spacing: 0.8px;
  text-transform: uppercase;
}
.product__top {
  display: flex;
  justify-content: space-between;
  gap: max(0.5208333333vw, 10px);
}
.product__image-hover, .product__image-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  transition: 0.3s all linear;
  transform: scale(1);
  object-fit: cover;
}
.product__image-bg {
  filter: blur(5px);
  z-index: -1;
}


.product__gallery {
  display: flex;
  position: absolute;
  align-items: end;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: 0.3s all linear;
}
.product__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  object-fit: cover;
  cursor: pointer;
  transform: scale(1);
  transition: 0.3s all linear;
}
.product__image:not(:first-child) {
  opacity: 0;
  position: absolute;
  z-index: -1;
}
.product__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}




@media (min-width: 992px) {
  .product:hover .product__image-hover {
    transform: scale(0.888);
  }
  .product:hover .product__image-bg {
    transform: scale(1.05);
  }
  .product:hover .product__button {
    transform: translate(-50%, -50%);
    top: 50%;
    opacity: 1;
  }
}

@media (max-width: 991px) {
  .product__button {
    width: 90px;
    height: 90px;
    top: 5px;
    left: 5px;
    transform: none;
    opacity: 1;
  }
}
/* ============== MODAL ============= */
/* ============= MEDIA QUERIES =========== */

/*# sourceMappingURL=main.css.map */
