/*!***************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/scss/global.scss ***!
  \***************************************************************************************************************/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Inter;
  color: #FFFFFF;
}

#wpcf7-f288-o1, #wpcf7-f289-o1 {
  height: 100%;
}
#wpcf7-f288-o1 form, #wpcf7-f289-o1 form {
  height: inherit;
}
#wpcf7-f288-o1 .wpcf7-response-output, #wpcf7-f289-o1 .wpcf7-response-output {
  margin: 0 10px;
  color: green;
  display: none;
}

[class*=container] {
  width: 100%;
  height: 100%;
  padding: 0 20px;
  max-width: 1440px;
  margin: 0 auto;
}

[class*=main] {
  padding-top: 100px;
}

[class*=nav] ul {
  padding: 0 10px;
  font-weight: 600;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0%;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  row-gap: 20px;
  align-items: center;
  justify-content: center;
}
[class*=nav] ul li {
  list-style: none;
}
[class*=nav] ul a {
  text-decoration: none;
  color: #000000;
  transition: all 0.3s ease-in-out;
}
[class*=nav] ul a:hover {
  color: #ababab;
}

[class*=logo] {
  z-index: 1000;
  width: 128px;
}

h2 {
  font-weight: 600;
  font-size: 48px;
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: uppercase;
  color: #000000;
}

h3 {
  font-weight: 600;
  font-size: 40px;
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: uppercase;
  color: #000000;
}

.yith-wcan-filters, .filters-container {
  padding: 0;
  width: 250px;
}

.yith-wcan-filter {
  padding: 20px 0;
  border-top: 2px solid #C3C3C3;
  margin: 20px 0;
}

.filter-title {
  display: flex;
  justify-content: space-between;
  font-size: 20px;
  padding-bottom: 15px;
}

.filter-item label {
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
}
.filter-item label a {
  font-size: 20px;
}
.filter-item input {
  width: 20px;
}

.yith-wcan-reset-filters {
  background: transparent;
  border: none;
  color: #ff0000;
  font-size: 15px;
  font-weight: 600;
  padding-bottom: 15px;
  cursor: pointer;
}

.filter-content {
  overflow: hidden;
  transition: max-height 0.3s ease-in-out;
}

.filter-toggle-icon {
  color: #005eff;
  transition: all 0.3s ease;
}

.body-lock {
  overflow: hidden;
}

@media (max-width: 1200px) {
  h3 {
    font-size: 34px;
  }
}
/*!***************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/scss/header.scss ***!
  \***************************************************************************************************************/
.header {
  background-color: white;
  height: 100px;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 1000;
}
.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__container svg {
  width: 38px;
}
.header__filter-mobile {
  display: none;
}
.header__burger, .header__burger-nav {
  display: none;
}
.header__icons {
  gap: 50px;
  display: flex;
  align-items: center;
}

#preset_92 {
  display: none;
}

@media (max-width: 800px) {
  .header__nav {
    display: none;
  }
  .header .header__burger {
    display: initial;
    width: 30px;
    height: 30px;
    position: relative;
    z-index: 2;
    overflow: hidden;
  }
  .header .header__burger span {
    width: 30px;
    height: 3px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #000000;
    transition: all 0.5s;
  }
  .header .header__burger span:nth-of-type(2) {
    top: calc(50% - 10px);
  }
  .header .header__burger span:nth-of-type(3) {
    top: calc(50% + 10px);
  }
  .header .header__burger.active span:nth-of-type(1) {
    display: none;
  }
  .header .header__burger.active span:nth-of-type(2) {
    top: 50%;
    transform: translate(-50%, 0%) rotate(45deg);
    background-color: #ef0000;
  }
  .header .header__burger.active span:nth-of-type(3) {
    top: 50%;
    transform: translate(-50%, 0%) rotate(-45deg);
    background-color: #ef0000;
  }
  .header .header__burger-nav {
    padding-top: 150px;
    display: block;
    overflow-y: auto;
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: #ffffff;
    transition: all 0.5s ease-in-out;
    opacity: 0;
    visibility: hidden;
  }
  .header .header__burger-nav ul {
    padding: 0;
    margin: 0;
    width: auto;
    height: auto;
    display: flex;
    flex-direction: column;
    row-gap: 20px;
  }
  .header .header__burger-nav hr {
    width: 100%;
    display: block;
    padding: 0;
    margin: 0;
    position: initial;
  }
  .header .header__burger-nav li {
    padding: 20px 25px;
    width: 100%;
    display: block;
    list-style-type: none;
  }
  .header .header__burger-nav li a:active,
  .header .header__burger-nav li a:visited,
  .header .header__burger-nav li a:hover,
  .header .header__burger-nav li a {
    font-size: 28px;
    text-decoration: none;
    color: #000000;
    -webkit-tap-highlight-color: transparent;
    outline: none;
  }
  .header .header__burger-nav li:hover {
    background-color: #000000;
    color: #ffffff;
  }
  .header .header__burger-nav li:hover a {
    color: #ffffff;
  }
  .header .header__burger-nav.active {
    right: 0;
    opacity: 1;
    visibility: visible;
  }
  .header__filter-mobile {
    z-index: 1001;
    padding-top: 50px;
    display: block;
    overflow-y: auto;
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    transition: all 1s ease-in-out;
    opacity: 0;
    visibility: hidden;
  }
  .header__filter-mobile.active {
    top: 0;
    opacity: 1;
    visibility: visible;
  }
  .header__filter-mobile-close span {
    width: 30px;
    height: 3px;
    position: absolute;
    left: 90%;
  }
  .header__filter-mobile-close span:nth-of-type(1) {
    transform: translate(-50%, 0%) rotate(45deg);
    background-color: #ef0000;
  }
  .header__filter-mobile-close span:nth-of-type(2) {
    transform: translate(-50%, 0%) rotate(-45deg);
    background-color: #ef0000;
  }
  .header__filter-mobile-title {
    text-align: center;
    padding-top: 20px;
    color: #000;
    font-weight: 600;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: 0%;
  }
  .header__icons {
    gap: 20px;
    display: flex;
    align-items: center;
  }
  #preset_92, #preset_189 {
    display: block;
    padding: 50px 20px 0px 20px;
    width: auto;
  }
}
.language-switcher {
  list-style: none;
  display: flex;
  gap: 10px;
  padding: 0;
  margin: 0;
}

.language-switcher li a {
  text-decoration: none;
  padding: 5px 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  color: #333;
}

.language-switcher li.active a {
  background-color: #333;
  color: #fff;
  font-weight: bold;
}
/*!***************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/scss/footer.scss ***!
  \***************************************************************************************************************/
.footer {
  height: 305px;
  background: #141414;
}
.footer__container {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
.footer__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer__logo {
  z-index: 1;
}
.footer__form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__form input {
  padding: 0 10px;
  width: 325px;
  height: 50px;
  color: #000000;
}
.footer__social {
  display: flex;
  gap: 20px;
  width: fit-content;
}
.footer__social svg {
  width: 38px;
}
.footer__nav ul {
  flex-direction: column;
  font-size: 16px;
  gap: 20px;
}
.footer__nav ul a {
  color: #FFFFFF;
}
.footer__contacts {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__copyright {
  border-top: 2px solid;
  height: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer__rules {
  display: flex;
  gap: 20px;
}
.footer__rules a {
  text-decoration: none;
  color: #FFFFFF;
}

@media (max-width: 850px) {
  .footer {
    height: 700px;
  }
  .footer__content {
    gap: 50px;
    flex-direction: column;
    padding: 50px 0;
  }
  .footer__nav ul {
    flex-direction: row;
  }
  .footer__copyright {
    gap: 20px;
    height: auto;
    padding: 10px 0;
    flex-direction: column;
    font-size: 14px;
  }
}
@media (max-width: 425px) {
  .footer {
    height: auto;
  }
  .footer__content {
    gap: 50px;
    flex-direction: column;
    padding: 0;
    padding-top: 40px;
  }
  .footer__nav ul {
    flex-direction: column;
    font-size: 16px;
    gap: 40px;
  }
  .footer__copyright {
    flex-direction: column;
    gap: 10px;
    padding: 20px 0;
  }
  .footer__logo {
    width: 280px;
  }
  .footer__form input {
    width: 300px;
  }
}
/*!*************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/scss/home.scss ***!
  \*************************************************************************************************************/
@charset "UTF-8";
.slider {
  height: 780px;
}
.slider__block {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.slider__content {
  width: 100%;
  height: 100%;
  display: flex;
  transition: transform 0.5s ease-in-out;
  position: relative;
}
.slider__slide {
  min-width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
}
.slider__slide-content {
  position: absolute;
  bottom: 80px;
  left: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 20px 15%;
  color: white;
  z-index: 5;
}
.slider__slide-title {
  font-weight: 700;
  font-size: clamp(40px, 5vw, 96px);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  color: white;
}
.slider__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 10;
  transition: background-color 0.3s;
}
.slider__arrow:hover {
  background-color: rgba(0, 0, 0, 0.8);
}
.slider__arrow-left {
  left: 20px;
}
.slider__arrow-right {
  right: 20px;
}
.slider__controls {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}
.slider__dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background-color 0.3s;
}
.slider__dot.active {
  background-color: white;
}

.new-disks {
  padding: 150px 0;
}
.new-disks__title {
  padding-bottom: 50px;
}
.new-disks__carusel-items {
  display: flex;
  justify-content: space-between;
}
.new-disks__carusel-item {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 380px;
  min-height: 555px;
}
.new-disks__carusel-item:hover {
  background: #F1F1F1;
  transition: background 0.2s ease-in-out;
  gap: 0px;
}
.new-disks__image {
  width: 380px;
  height: 380px;
  border-bottom: 2px solid #b9b6b6;
  padding-bottom: 20px;
}
.new-disks__image img {
  object-fit: cover;
  height: inherit;
  width: inherit;
}
.new-disks__info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 20px;
}
.new-disks__info p {
  font-weight: 500;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #434343;
}
.new-disks__subimage-items {
  display: none;
  flex-direction: row;
  gap: 20px;
}
.new-disks__subimage-item {
  width: 70px;
  height: 70px;
}
.new-disks__subimage-item img {
  object-fit: cover;
  width: inherit;
  height: inherit;
}

.new-disks__carusel-item:hover .new-disks__subimage-items {
  height: 167px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.new-disks__carusel-item:hover .new-disks__info {
  display: none;
}

.banner {
  height: 385px;
  background-size: cover;
  background-position: center;
}
.banner__text {
  font-weight: 700;
  font-size: clamp(32px, 6.51vw, 125px);
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: uppercase;
  text-align: center;
  color: #000000;
}
.banner .white {
  position: relative;
  color: #FFFFFF;
  top: -2.8vw;
}

.advantages {
  padding: 150px 0;
}
.advantages__items {
  display: flex;
  justify-content: space-between;
}
.advantages__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: 300px;
}
.advantages__item-image {
  width: 40px;
}
.advantages__item-title {
  font-weight: 600;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  text-transform: uppercase;
}
.advantages__item-text {
  font-weight: 500;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  color: #434343;
}

@media (max-width: 425px) {
  .slider {
    height: auto;
  }
  .slider__slide {
    aspect-ratio: 16/9; /* або як у твоїх картинок */
    min-width: 100%;
    background-size: cover;
    background-position: center;
  }
  .slider .slider__slide-content {
    position: relative;
    bottom: 0;
  }
  .new-disks {
    padding: 50px 0;
  }
  .new-disks__carusel-items {
    flex-direction: column;
    gap: 50px;
    align-items: center;
  }
  .new-disks__carusel-item {
    width: 300px;
  }
  .new-disks__image {
    width: 300px;
    height: 300px;
  }
  .new-disks__image img {
    height: inherit;
    width: inherit;
  }
  .new-disks__carusel-item:hover {
    background: #ffffff;
  }
  .slider__slide-content {
    padding: 20px;
  }
  .slider__slide-title {
    font-size: 25px;
  }
  .slider__arrow {
    width: 30px;
    height: 30px;
  }
  .banner {
    padding: 0;
    height: auto;
  }
  .banner__text {
    font-size: 40px;
  }
  .banner .white {
    top: -65px;
  }
  .advantages {
    padding: 50px 0;
  }
  .advantages__items {
    flex-direction: column;
    gap: 60px;
    align-items: center;
  }
  .new-disks__carusel-item:hover .new-disks__info {
    display: flex;
  }
  .new-disks__carusel-item:hover .new-disks__subimage-items {
    display: none;
  }
}
@media (max-width: 800px) and (min-width: 426px) {
  .new-disks__carusel-items {
    flex-direction: column;
    gap: 100px;
    align-items: center;
  }
  .new-disks__carusel-item {
    width: 375px;
    min-height: 255px;
  }
  .new-disks__carusel-item:hover {
    background: #ffffff;
  }
  .new-disks__image {
    width: 375px;
    height: 375px;
  }
  .new-disks__image img {
    height: inherit;
    width: inherit;
  }
  .new-disks__info p {
    font-size: 16px;
  }
  .new-disks__subimage-item {
    width: 60px;
    height: 60px;
  }
  .new-disks__subimage-item img {
    width: inherit;
    height: inherit;
  }
  .new-disks .new-disks__carusel-item:hover .new-disks__info {
    display: flex;
  }
  .new-disks .new-disks__carusel-item:hover .new-disks__subimage-items {
    display: none;
  }
  .banner {
    height: 216px;
  }
  .banner__text {
    font-size: clamp(54px, 8.72vw, 72px);
  }
  .banner .white {
    top: clamp(-91px, -10vw, -105px);
  }
  .advantages__items {
    flex-direction: column;
    gap: 100px;
    align-items: center;
  }
  .advantages__item-title {
    font-size: 20px;
  }
  .advantages__item-text {
    font-size: 16px;
  }
}
@media (max-width: 1200px) and (min-width: 801px) {
  .slider {
    height: 730px;
  }
  .new-disks__carusel-item {
    width: 250px;
    min-height: 255px;
  }
  .new-disks__image {
    width: 250px;
    height: 250px;
  }
  .new-disks__image img {
    height: inherit;
    width: inherit;
  }
  .new-disks__info p {
    font-size: 16px;
  }
  .new-disks__subimage-item {
    width: 60px;
    height: 60px;
  }
  .new-disks__subimage-item img {
    width: inherit;
    height: inherit;
  }
  .banner {
    height: 285px;
  }
  .advantages__item-title {
    font-size: 20px;
  }
  .advantages__item-text {
    font-size: 16px;
  }
}
/*!*****************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/scss/products.scss ***!
  \*****************************************************************************************************************/
.products {
  padding: 50px 0;
}
.products__content {
  display: flex;
  padding: 50px 0;
  column-gap: 250px;
}
.products__items {
  display: flex;
  flex-wrap: wrap;
  gap: 140px;
  justify-content: space-between;
  row-gap: 50px;
}
.products__item {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 380px;
  min-height: 555px;
}
.products__item:hover {
  background: #F1F1F1;
  transition: background 0.2s ease-in-out;
  gap: 0px;
}
.products__image {
  width: 380px;
  height: 380px;
  border-bottom: 2px solid #b9b6b6;
  padding-bottom: 20px;
}
.products__image img {
  object-fit: cover;
  height: inherit;
  width: inherit;
}
.products__info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 20px;
}
.products__info p {
  font-weight: 500;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #434343;
}
.products__subimage-items {
  display: none;
  flex-direction: row;
  gap: 20px;
}
.products__subimage-item {
  width: 70px;
  height: 70px;
}
.products__subimage-item img {
  object-fit: cover;
  width: 70px;
  height: 70px;
}
.products__filter-mobile {
  display: none;
}

.products-count {
  color: #000000;
}

.products__item:hover .products__subimage-items {
  height: 167px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.products__item:hover .products__info {
  display: none;
}

@media (max-width: 800px) {
  #preset_74, #preset_188 {
    display: none;
  }
  .products svg {
    width: 35px;
  }
  .products__content {
    align-items: center;
    flex-direction: column;
  }
  .products__items {
    justify-content: center;
    flex-wrap: nowrap;
    flex-direction: column;
  }
  .products__item {
    min-height: auto;
    width: 300px;
  }
  .products__image {
    width: 300px;
    height: 300px;
  }
  .products__image img {
    height: inherit;
    width: inherit;
  }
  .products__filter-mobile {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    width: 300px;
    text-align: left;
    padding: 10px;
    font-weight: 400;
    font-size: 21px;
    line-height: 100%;
    letter-spacing: 0%;
    color: black;
    background-color: transparent;
  }
  .products__item:hover {
    background: rgb(255, 255, 255);
    transition: background 0.2s ease-in-out;
    gap: 0px;
  }
  .products__item:hover .products__info {
    display: flex;
  }
  .products__item:hover .products__subimage-items {
    display: none;
  }
}
@media (max-width: 1134px) and (min-width: 801px) {
  .products__content {
    column-gap: 125px;
  }
}
@media (max-width: 1440px) and (min-width: 1135px) {
  .products__content {
    column-gap: clamp(60px, 5vw, 250px);
  }
  .products__items {
    gap: 20px;
  }
}
/*!***********************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/scss/single-product.scss ***!
  \***********************************************************************************************************************/
@charset "UTF-8";
.single-product__content {
  gap: 20px;
  padding: 50px 0;
  display: flex;
  justify-content: space-between;
}
.single-product__gallery {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.single-product__image {
  height: 610px;
  width: 610px;
}
.single-product__image img {
  object-fit: cover;
  width: inherit;
  height: inherit;
}
.single-product__subimages-items {
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  width: 610px;
  overflow-x: auto;
  display: flex;
  gap: 20px;
}
.single-product__subimage-item {
  overflow: hidden;
  flex: 0 0 auto;
  width: 190px;
  height: 190px;
}
.single-product__subimage-item img {
  width: inherit;
  height: inherit;
  object-fit: cover;
}
.single-product__info {
  display: flex;
  flex-direction: column;
  gap: 35px;
  width: 600px;
}
.single-product__finish {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.single-product__finish-title {
  color: black;
  font-weight: 400;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0%;
}
.single-product__finish-items {
  display: flex;
  gap: 10px;
}
.single-product__finish-item {
  width: 80px;
  height: 80px;
}
.single-product__options {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.single-product__options-title {
  color: black;
  font-weight: 600;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0%;
}
.single-product__options select {
  border: 2px solid #000000;
  border-radius: 0%;
  color: #000000;
  padding: 10px;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
}
.single-product__options option {
  padding: 10px;
  color: #000000;
}
.single-product__button {
  background: #000000;
  color: #ffffff;
  border: none;
  height: 50px;
  font-weight: 600;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: uppercase;
}
.single-product__details td {
  color: #000000;
}

.current-finish {
  color: black;
  font-weight: 400;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: uppercase;
}

@media (max-width: 800px) {
  .single-product__content {
    padding: 0;
    gap: 50px;
    flex-direction: column;
    align-items: center;
  }
  .single-product__image {
    height: 100%;
    width: 100%;
    height: 100%;
    width: -webkit-fill-available;
  }
  .single-product__subimages-items {
    width: clamp(229px, 96.25vw, 760px);
  }
  .single-product__subimage-item {
    aspect-ratio: 1/1;
    width: 205px;
    height: 205px;
  }
  .single-product__info {
    width: 100%;
    width: -webkit-fill-available;
  }
  .single-product__title {
    font-size: 47px;
  }
}
@media (max-width: 500px) {
  .single-product__subimage-item {
    width: 150px;
    height: 150px;
  }
}
@media (max-width: 1000px) and (min-width: 801px) {
  .single-product__image {
    height: 425px;
    width: 425px;
  }
  .single-product__subimages-items {
    width: 425px;
  }
  .single-product__subimage-item {
    width: 129px;
    height: 129px;
  }
  .single-product__info {
    width: 300px;
  }
}
.single-product-gallery {
  position: relative;
  margin: 50px 0;
}

.single-product-gallery .spg-viewport {
  overflow: hidden;
  position: relative;
}

.single-product-gallery .spg-track {
  display: flex;
  gap: 24px;
  transform: translate3d(0, 0, 0);
  transition: transform 0.35s ease;
  will-change: transform;
  cursor: grab;
}

.single-product-gallery .spg-track.is-dragging {
  cursor: grabbing;
  transition: none;
}

.single-product-gallery .spg-item {
  flex: 0 0 280px;
}

.single-product-gallery .spg-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 6px;
  display: block;
  pointer-events: none;
}

.single-product-gallery .spg-item a {
  display: block;
  cursor: zoom-in;
}

.single-product-gallery .spg-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  z-index: 10;
  font-size: 20px;
  line-height: 36px;
  text-align: center;
  color: #000;
}

.single-product-gallery .spg-prev {
  left: -18px;
}

.single-product-gallery .spg-next {
  right: -18px;
}

.single-product-gallery .spg-nav.is-disabled {
  opacity: 0.35;
  pointer-events: none;
}

/* Fancybox — строго по центру */
.fancybox__slide {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}

.fancybox__content {
  margin: 0 auto !important;
}

.fancybox__container {
  max-width: 100%;
}

.spg-caption {
  margin-top: 8px;
  text-align: center;
}

.spg-car {
  font-size: 14px;
  color: #666;
}

.spg-wheel {
  font-size: 16px;
  font-weight: 600;
  color: #111;
}

.vehicle_gallery_title {
  margin-bottom: 20px;
}
/*!*****************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/scss/contacts.scss ***!
  \*****************************************************************************************************************/
.contacts {
  height: 530px;
  background-size: 1200px;
  background-position-y: -7px;
}
.contacts__content {
  gap: 20px;
  height: inherit;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.contacts h2 {
  color: #fff;
  font-weight: 600;
  font-size: 64px;
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: uppercase;
  padding-bottom: 50px;
}
.contacts__form {
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  width: 460px;
  height: inherit;
  background-color: #fff;
  border-top: 1px solid #C3C3C3;
}
.contacts__form-title {
  color: #000;
  font-weight: 600;
  font-size: 15px;
  line-height: 100%;
  letter-spacing: 0%;
}
.contacts__field-title {
  color: #000;
  font-weight: 600;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0%;
  padding-bottom: 20px;
}
.contacts input {
  width: 380px;
  height: 50px;
  background: #ffffff;
  border: 1px solid #000000;
  padding: 10px;
  font-weight: 400;
  font-size: 15px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #000;
}
.contacts textarea {
  width: 380px;
  height: 120px;
  background: #ffffff;
  border: 1px solid #000000;
  padding: 10px;
  font-weight: 400;
  font-size: 15px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #000;
  resize: none;
}
.contacts__form-button {
  width: 380px;
  height: 50px;
  background: #000000;
  color: #fff;
  font-weight: 600;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0%;
  border: none;
}

@media (max-width: 425px) {
  .contacts {
    height: auto;
    background-position-y: -240px;
  }
  .contacts__content {
    flex-direction: column;
    align-items: center;
  }
  .contacts__content h2 {
    text-align: center;
    padding-top: 20px;
    font-size: 48px;
  }
  .contacts__form {
    padding: 0;
    gap: 30px;
    width: 320px;
  }
  .contacts input {
    width: 300px;
  }
  .contacts textarea {
    width: 300px;
  }
  .contacts__form-button {
    width: 300px;
  }
}
@media (max-width: 800px) and (min-width: 426px) {
  .contacts {
    height: 700px;
    background-position-y: -240px;
  }
  .contacts__form {
    padding: 0 20px;
    width: auto;
  }
  .contacts__content {
    flex-direction: column;
    align-items: center;
  }
  .contacts__content h2 {
    padding-top: 20px;
    font-size: 56px;
  }
  .contacts input {
    width: 340px;
  }
  .contacts textarea {
    width: 340px;
  }
}
@media (max-width: 885px) and (min-width: 801px) {
  .contacts__form {
    width: 350px;
  }
  .contacts input {
    width: 250px;
  }
  .contacts textarea {
    width: 250px;
  }
  .contacts button {
    width: 250px;
  }
}
/*!*************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/scss/news.scss ***!
  \*************************************************************************************************************/
.news-list__block {
  padding: 50px 0;
}
.news-list__block p {
  color: black;
}
.news-list__block figcaption {
  color: rgb(104, 104, 104);
}
.news-list__block em, .news-list__block strong {
  color: inherit;
}
.news-list__title {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: #2c3e50;
  position: relative;
}
.news-list__title:after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: #000000;
  margin: 15px auto 0;
  border-radius: 2px;
}
.news-list__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}
.news-list__card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.news-list__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 20px rgba(0, 0, 0, 0.15);
}
.news-list__image {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.news-list__content {
  padding: 20px 25px 25px;
}
.news-list__meta {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-size: 14px;
  color: #7f8c8d;
}
.news-list__date {
  margin-right: 15px;
  display: flex;
  align-items: center;
}
.news-list__date svg {
  margin-right: 5px;
  width: 16px;
  height: 16px;
}
.news-list__category {
  display: flex;
  align-items: center;
}
.news-list__category svg {
  margin-right: 5px;
  width: 16px;
  height: 16px;
}
.news-list__category a {
  color: #3498db;
  text-decoration: none;
  transition: color 0.2s;
}
.news-list__category a:hover {
  color: #2980b9;
}
.news-list__card-title {
  font-size: 22px;
  margin: 0 0 15px;
  font-weight: 700;
  line-height: 1.3;
}
.news-list__card-link {
  color: #2c3e50;
  text-decoration: none;
  transition: color 0.2s;
}
.news-list__card-link:hover {
  color: #3498db;
}
.news-list__excerpt {
  color: #5d6778;
  margin-bottom: 20px;
  font-size: 16px;
}
.news-list__read-more {
  display: inline-block;
  color: white;
  background-color: #000000;
  padding: 10px 20px;
  border: 2px solid transparent;
  border-radius: 5px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: background-color 0.2s;
}
.news-list__read-more:hover {
  border: 2px solid #000000;
  background-color: #ffffff;
  color: #000000;
}

.news__block {
  padding: 50px 0;
}
.news__block p {
  color: black;
}
.news__block figcaption {
  color: rgb(104, 104, 104);
}
.news__block em, .news__block strong {
  color: inherit;
}
.news__title {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin: 15px 0;
  color: #2c3e50;
  line-height: 1.2;
}
.news__title:after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: #000000;
  margin: 15px auto 0;
  border-radius: 2px;
}
.news__article {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.news__header {
  margin-bottom: 30px;
}
.news__meta {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #7f8c8d;
  font-size: 15px;
  margin-bottom: 20px;
}
.news__date {
  margin-right: 15px;
  display: flex;
  align-items: center;
}
.news__date svg {
  margin-right: 5px;
  width: 16px;
  height: 16px;
}
.news__date-text {
  color: #7f8c8d;
  font-size: 14px;
}
.news__content {
  font-size: 18px;
  line-height: 1.8;
  color: #34495e;
  padding: 20px 25px 25px;
}
.news__content p {
  margin-bottom: 20px;
}
.news__content h2 {
  font-size: 28px;
  margin: 40px 0 20px;
  color: #2c3e50;
}
.news__content h3 {
  font-size: 24px;
  margin: 30px 0 15px;
  color: #2c3e50;
}
.news__content img {
  max-width: 100%;
  border-radius: 8px;
  margin: 20px 0;
}
.news__content blockquote {
  border-left: 4px solid #3498db;
  padding-left: 20px;
  margin: 30px 0;
  font-style: italic;
  color: #5d6778;
}
.news__featured-image {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 30px;
}

.aligncenter {
  text-align: center;
}

@media (max-width: 768px) {
  .news__title {
    font-size: 28px;
  }
  .news__content {
    padding: 15px;
  }
}
/*!************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/scss/contact-us-form.scss ***!
  \************************************************************************************************************************/
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.284);
  z-index: 1000;
  justify-content: center;
  align-items: center;
  transition: opacity 0.5s ease;
  opacity: 0;
}

.modal.show {
  opacity: 1;
}

.modal-content {
  border-radius: 40px;
  position: relative;
  text-align: center;
}

.close-modal {
  position: absolute;
  top: 10px;
  right: 25px;
  border: none;
  background: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: red;
}

.wpcf7 form .wpcf7-response-output {
  padding: 0.2em 1em;
  border: 2px solid #00a0d2;
  word-wrap: break-word;
  max-width: 400px;
  color: #ff0000;
  text-align: center;
  background-color: #323232;
  border-radius: 15px;
  margin: 0;
  margin-top: 5%;
}

.wpcf7 form.invalid .wpcf7-response-output {
  border-color: transparent;
}

.wpcf7 form.sent .wpcf7-response-output {
  border-color: transparent;
  color: rgb(0, 174, 32);
}

.create-modal {
  cursor: pointer;
}

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