@charset "UTF-8";
:root {
  font-size: 14px;
  --line-height: 1.5;
  line-height: var(--line-height);
  --page-bg-color: #ffffff; /* #fefefe - цвет с лого; */
  --text-header-font-family: "Oswald", sans-serif;
  --text-font-family: "Oswald", sans-serif;
  --text-font-size: 1rem;
  --text-font-weight: 300;
  --text-color: #000000;
  --accent-color: rgb(153,131,98);
  --text-accent-color: var(--accent-color);
  --text-header-color: var(--text-accent-color);
}

@media screen and (min-width: 768px) {
  :root {
    font-size: 20px;
  }
}
.container,
.container-fluid,
.container-sm,
.container-md,
.container-lg,
.container-xl,
.container-xxl {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  background-color: var(--page-bg-color);
  font-size: 1rem;
  font-family: var(--text-font-family);
  font-size: var(--text-font-size);
  font-weight: var(--text-font-weight);
  color: var(--text-color);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--text-header-font-family);
  font-optical-sizing: auto;
  font-style: normal;
  text-decoration: none;
  font-weight: 200;
  color: var(--text-accent-color);
  padding: 0;
  margin: 2em 0 1em;
  line-height: 1.25;
}

h1 {
  font-size: 3.5rem;
}

h2 {
  font-size: 3rem;
}

h3 {
  font-size: 2.5rem;
}

h4 {
  font-size: 2rem;
}

h5 {
  font-size: 1.5rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin: 0 0 1rem;
  line-height: 1.5;
}

p:last-child {
  margin-bottom: 0;
}

a, a:visited, a:active, a:hover {
  color: var(--accent-color);
}

.text-demo {
  margin: 0 auto;
  width: 900px;
}

.prods-nav {
  display: flex;
  gap: 10px 30px;
  flex-wrap: wrap;
}

header {
  height: 120px;
}
@media (min-width: 768px) {
  header {
    height: 140px;
  }
}
header .col-12 {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  header .col-12 {
    justify-content: space-between;
  }
}
header .logo {
  height: 100px;
  margin: 10px 20px 10px 0px;
}
@media (min-width: 768px) {
  header .logo {
    height: 120px;
    margin: 10px 50px 10px 10px;
  }
}
header nav.menu {
  position: fixed;
  font-size: 32px;
  gap: 30px;
}
@media (max-width: 767px) {
  header nav.menu {
    height: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    right: 0;
    top: 0;
    width: 0;
    overflow: hidden;
    display: none;
    padding: 20px;
    z-index: 9999;
  }
}
@media screen and (min-width: 768px) {
  header nav.menu {
    gap: 10px 30px;
    position: static;
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding: 0;
    flex-wrap: wrap;
    line-height: 1.1;
  }
}
header nav.menu a {
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: 200;
  font-style: normal;
  text-decoration: none;
}
header nav.menu a:hover {
  border-bottom: 1px Solid var(--accent-color);
}
header nav.menu .closeBurger {
  position: absolute;
  right: 5px;
  top: 5px;
}
header nav.menu .closeBurger svg {
  width: 60px;
  height: 60px;
}
@media (min-width: 768px) {
  header nav.menu .closeBurger {
    display: none;
  }
}
header nav.menu.open {
  width: 100%;
  display: flex;
}
header #burgerMenuIcon {
  display: none;
}
@media (max-width: 767px) {
  header #burgerMenuIcon {
    display: inline-block;
    vertical-align: middle;
  }
}
header #burgerMenuIcon svg {
  width: 50px;
  height: 50px;
}

footer {
  text-align: center;
  border-top: 1px Solid var(--accent-color);
  margin-top: 1rem;
  padding: 1.5rem 0;
}

/* ----- кнопка "наверх" ----- */
.scroll-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 56px;
  height: 56px;
  border-radius: 16px; /* скруглённые края */
  background-color: #2c3e50;
  border: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.2s ease, background 0.2s;
  transform: translateY(8px);
  z-index: 999;
  /* улучшение доступности */
  outline: none;
}

.scroll-top-btn:hover {
  background-color: #1a2632;
  transform: translateY(4px) scale(1.02);
}

.scroll-top-btn:active {
  transform: scale(0.94);
}

/* когда кнопка видима */
.scroll-top-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* стили для SVG‑иконки */
.scroll-top-btn svg {
  width: 28px;
  height: 28px;
  stroke: #ffffff;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  display: block;
  transition: stroke 0.2s;
}

.scroll-top-btn:hover svg {
  stroke: #ffd966;
}

.cookiePopup {
  --side-pad: 10px;
  --vert-pad: 5px;
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 280px;
  border-radius: 10px;
  border: 1px Solid #aaaaaa;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.15);
  font-size: 14px;
  overflow: hidden;
  background-color: white;
  z-index: 1000;
  display: none;
}
.cookiePopup__header {
  font-weight: bold;
  background-color: var(--accent-color);
  padding: var(--vert-pad) var(--side-pad);
  border-bottom: 1px Solid #aaaaaa;
  color: white;
}
.cookiePopup__content {
  padding: var(--vert-pad) var(--side-pad);
}
.cookiePopup__controls {
  display: flex;
  justify-content: flex-end;
  padding: 0 5px var(--vert-pad);
}
.cookiePopup__aBtn, .cookiePopup__aBtn:hover, .cookiePopup__aBtn:active, .cookiePopup__aBtn:visited {
  background-color: var(--accent-color);
  text-decoration: none;
  color: white;
  padding: 5px 15px;
  border-radius: 5px;
  transition: all 0.2s ease-in-out;
}
.cookiePopup__aBtn:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.2s ease-in-out;
}

form {
  max-width: 520px;
  width: 100%;
}

.field-group {
  margin-bottom: 1.25rem;
  position: relative;
}
.field-group input,
.field-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  font-family: inherit;
  border: 2px solid rgb(153, 131, 98);
  border-radius: 10px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.2s;
  outline: none;
  color: #1e1e1e;
  box-sizing: border-box;
}
.field-group input::placeholder,
.field-group textarea::placeholder {
  color: #b5aba0;
  font-weight: 300;
}
.field-group input:focus,
.field-group textarea:focus {
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(153, 131, 98, 0.15);
}
.field-group textarea {
  resize: vertical;
  min-height: 110px;
  line-height: 1.5;
}
.field-group.error input,
.field-group.error textarea {
  border-color: #e74c3c;
  background: rgb(98.2594681708%, 87.0185334408%, 85.858178888%);
}
.field-group.error input:focus,
.field-group.error textarea:focus {
  box-shadow: 0 0 0 4px rgba(231, 76, 60, 0.15);
}
.field-group.error .error-message {
  display: block;
}
.field-group .error-message {
  display: none;
  font-size: 0.85rem;
  color: #e74c3c;
  margin-top: 0.3rem;
  font-weight: 500;
}

.captcha-block {
  margin: 0.5rem 0 1.25rem 0;
  font-size: 1rem;
  color: rgb(1.7647058824%, 1.7647058824%, 1.7647058824%);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem 0.8rem;
  background: #faf8f6;
  padding: 0.7rem 1rem;
  border-radius: 10px;
  border-left: 4px solid rgb(153, 131, 98);
}
.captcha-block strong {
  font-weight: 600;
}
.captcha-block .captcha-question {
  font-weight: 600;
  color: rgb(1.7647058824%, 1.7647058824%, 1.7647058824%);
  background: rgb(92.324929972%, 89.2549019608%, 86.1848739496%);
  padding: 0.2rem 0.8rem;
  border-radius: 6px;
  font-size: 1.1rem;
  cursor: pointer;
  user-select: none;
  transition: background 0.2s;
}
.captcha-block .captcha-question:hover {
  background: rgb(87.324929972%, 82.2549019608%, 77.1848739496%);
}
.captcha-block input {
  flex: 1;
  min-width: 120px;
  padding: 0.5rem 0.8rem;
  background: #ffffff;
  border: 2px solid rgb(153, 131, 98);
  border-radius: 10px;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.captcha-block input:focus {
  box-shadow: 0 0 0 4px rgba(153, 131, 98, 0.15);
}
.captcha-block.error input {
  border-color: #e74c3c;
  background: rgb(98.2594681708%, 87.0185334408%, 85.858178888%);
}
.captcha-block.error input:focus {
  box-shadow: 0 0 0 4px rgba(231, 76, 60, 0.15);
}
.captcha-block.error .error-message {
  display: block;
}
.captcha-block .error-message {
  flex-basis: 100%;
  margin-top: 0.2rem;
  display: none;
  font-size: 0.85rem;
  color: #e74c3c;
  font-weight: 500;
}

input[type=submit] {
  width: 100%;
  padding: 0.85rem 1.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  background: rgb(153, 131, 98);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.1s, box-shadow 0.2s;
  letter-spacing: 0.5px;
  margin-top: 0.25rem;
}
input[type=submit]:hover {
  background: #7f6b50;
  box-shadow: 0 4px 14px rgba(153, 131, 98, 0.35);
}
input[type=submit]:active {
  transform: scale(0.97);
}

/*@media (max-width: 480px) {
  form {
    padding: 1.75rem 1.25rem;
  }

  .captcha-block {
    flex-direction: column;
    align-items: stretch;

    input {
      width: 100%;
    }
  }

  .field-group input,
  .field-group textarea,
  .captcha-block input {
    font-size: 0.95rem;
    padding: 0.65rem 0.9rem;
  }
}*/
.product_expandable {
  margin: 50px 0;
  border-radius: 20px;
  border: 1px Solid #cccccc;
  box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  gap: 30px;
  min-height: 8em;
  padding: 10px;
  position: relative;
}
.product_expandable__pics {
  min-width: 300px;
}
.product_expandable__pics .slider_holder .slider {
  margin: 0 auto;
}
@media (max-width: 767px) {
  .product_expandable__pics .slider_holder .slider {
    width: 100%;
    aspect-ratio: 0.75;
  }
}
.product_expandable__texts {
  height: 400px;
  overflow: hidden;
  position: relative;
  flex-grow: 1;
  transition: height 0.4s linear, padding-bottom 0.4s linear;
  padding-bottom: 0;
}
.product_expandable__texts h3 {
  margin-top: 0;
}
.product_expandable__texts .fade {
  background: linear-gradient(to top, white 0%, rgba(255, 255, 255, 0.65) 25%, rgba(255, 255, 255, 0.35) 66%, transparent 100%);
  width: 100%;
  height: 6em;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: all 0.4s linear;
}
.product_expandable__texts .toggle {
  position: absolute;
  left: 50%;
  bottom: 0;
  margin-left: -100px;
  border-radius: 20px;
  height: 40px;
  width: 200px;
  text-align: center;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background: white;
  border: 1px Solid #666666;
  box-sizing: border-box;
  text-decoration: none;
}
.product_expandable.expanded .product_expandable__texts {
  padding-bottom: 45px;
  transition: height 0.4s linear, padding-bottom 0.4s linear;
}
.product_expandable.expanded .fade {
  height: 0;
  transition: all 0.4s linear;
}
.product_expandable .priceHolder {
  text-align: right;
  flex-shrink: 0;
}
.product_expandable .priceHolder .price {
  font-size: 32px;
  font-weight: 500;
  white-space: nowrap;
}

@media (min-width: 768px) {
  .product_expandable {
    flex-direction: row;
  }
}
.slider {
  --arrows-offset: 3px;
  --arrows-height: 26px;
  overflow: hidden;
  position: relative;
  box-sizing: border-box;
}
.slider.productSlider {
  width: 300px;
  height: 400px;
  border: 1px Solid var(--accent-color);
  border-radius: 10px;
}
.slider .prev, .slider .next {
  position: absolute;
  top: 50%;
  margin-top: calc(-1 * var(--arrows-height) / 2);
  cursor: pointer;
  background-size: var(--arrows-height) var(--arrows-height);
}
.slider .prev .icon, .slider .next .icon {
  color: #FFFFFF;
  height: var(--arrows-height);
}
.slider .prev {
  left: var(--arrows-offset);
}
.slider .next {
  right: var(--arrows-offset);
}
.slider .dots {
  position: absolute;
  bottom: 3px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2px;
}
.slider .dots__bg {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2px;
}
.slider .dots .dot {
  width: 10px;
  height: 10px;
  background: rgb(255, 255, 255);
  border-radius: 10px;
  margin: 3px;
  background-clip: padding-box;
}
.slider .dots .dot:hover {
  cursor: pointer;
  margin: 0;
  border: 3px solid rgba(255, 255, 255, 0.65);
}
.slider .dots .dot.active, .slider .dots .dot.active:hover {
  margin: 0;
  width: 16px;
  height: 16px;
  border-radius: 16px;
  border: 4px solid rgb(255, 255, 255);
  background: transparent;
  box-sizing: border-box;
}
.slider .slides {
  height: 100%;
  display: flex;
  flex-wrap: nowrap;
  position: relative;
}
.slider .slide {
  width: 100%;
  height: 100%;
  flex: 0 0 auto;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.message {
  position: relative;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19);
  padding: 10px 32px 10px 10px;
  max-width: 300px;
}
.message__body {
  border: 1px Solid rgba(0, 0, 0, 0.25);
  border-radius: 5px;
  background-color: rgba(255, 255, 255, 0.5);
  padding: 0 5px;
}
.message__close {
  position: absolute;
  top: 0;
  right: 0px;
}
.message__close svg {
  width: 35px;
}
.message.success {
  background-color: #c7ff77;
}
.message.error {
  background-color: #ffabab;
}

#main_banner {
  --main-banner-height: 1000px;
  --arrows-height: calc(0.02 * var(--main-banner-height));
  --arrows-offset: calc(0.5 * var(--arrows-height));
  padding: 0;
  max-width: 1760px;
  background-color: #cccccc;
  aspect-ratio: calc(1760px / var(--main-banner-height));
}
@media (min-width: 1000px) {
  #main_banner {
    --main-banner-height: 900px;
    --arrows-height: calc(0.1 * var(--main-banner-height));
    --arrows-offset: calc(0.5 * var(--arrows-height));
    margin-top: 0;
  }
}
@media (min-width: 1440px) {
  #main_banner {
    --main-banner-height: 800px;
    margin-top: 2em;
  }
}
@media (min-width: 1760px) {
  #main_banner {
    --main-banner-height: 700px;
    margin-top: 4em;
    border-radius: 40px;
  }
}
#main_banner .slides {
  width: 100%;
}
#main_banner .prev, #main_banner .next {
  display: none;
}

.slide.banner1,
.slide.banner2,
.slide.banner3,
.slide.banner4 {
  background-size: cover;
  background-position: center center;
}

.slide.banner1 {
  background-image: url(../imgs/banner/banner1.jpg);
}

.slide.banner2 {
  background-image: url(../imgs/banner/banner2.jpg);
}

.slide.banner3 {
  background-image: url(../imgs/banner/banner3.jpg);
}

.slide.banner4 {
  background-image: url(../imgs/banner/banner4.jpg);
}

.reviews {
  --reviews-gap: 30px;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  padding: var(--bs-gutter-x) var(--bs-gutter-x) calc(var(--bs-gutter-x) + 20px) var(--bs-gutter-x);
  margin: calc(var(--bs-gutter-x) * -1);
}
.reviews .slides {
  width: 100%;
}
.reviews .review__holder {
  width: 100%;
  position: relative;
  flex: 1 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.reviews .review {
  max-width: 320px;
  padding: 10px;
  border: 1px solid var(--accent-color);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.25);
  background-color: white;
  border-radius: 20px;
  flex-shrink: 0;
  box-sizing: border-box;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .reviews .review {
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.25);
    border-radius: 20px;
    padding: 15px;
    max-width: 500px;
  }
}
@media screen and (min-width: 1200px) {
  .reviews .review {
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.25);
    border-radius: 30px;
    padding: 20px;
    max-width: 750px;
  }
}
.reviews .review__header {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  margin-top: -0.25em;
  margin-bottom: 0.5em;
}
.reviews .review__header .author {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
}
.reviews .review__header .author .ava {
  width: 3em;
  height: 3em;
  background: #eeeeee;
  border-radius: 50%;
  border: 1px solid var(--accent-color);
  margin-right: 0.5em;
}
.reviews .review__content__wrap {
  height: auto;
  max-height: calc(5em * var(--line-height));
  overflow: hidden;
  transition: all 1s linear 0s;
}
.reviews .review.expanded .review__content__wrap {
  max-height: fit-content;
}
.reviews .dots {
  width: calc(100% - 60px);
}
.reviews .dots__bg {
  border-radius: 20px;
  background-color: rgba(0, 0, 0, 0.1);
  margin: 0 auto;
  padding: 7px;
}
.reviews .prev, .reviews .next {
  display: none;
}

.delivery h2 {
  margin-bottom: 0;
}
.delivery__line {
  position: relative;
  border-top: 1px Solid var(--accent-color);
  margin-top: 2em;
  margin-bottom: 2em;
}
.delivery__line:before, .delivery__line:after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  top: 0;
}
.delivery__line:before {
  border-radius: 10px;
  background-color: white;
  width: 20px;
  height: 20px;
  margin-top: -10px;
  margin-left: -10px;
}
.delivery__line:after {
  background-color: var(--accent-color);
  width: 8px;
  height: 8px;
  margin-top: -4px;
  margin-left: -4px;
  transform: rotate(45deg);
}
@media (max-width: 767px) {
  .delivery__line {
    margin-left: calc(0.5 * var(--bs-gutter-x));
    margin-right: calc(0.5 * var(--bs-gutter-x));
  }
}
.delivery__variant {
  display: flex;
  gap: 30px;
  width: 50%;
}
@media (max-width: 767px) {
  .delivery__variant {
    flex-direction: column;
  }
}
.delivery__pre {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}
@media (max-width: 767px) {
  .delivery__pre {
    flex-direction: row;
    justify-content: center;
    gap: 20px;
  }
}
.delivery__num {
  color: var(--accent-color);
  font-size: 3em;
}
.delivery__icon {
  border: 1px Solid var(--accent-color);
  border-radius: 50%;
  width: 3em;
  height: 3em;
  background-color: white;
  display: flex;
  align-content: center;
  align-items: center;
  justify-content: center;
}
.delivery__icon svg {
  width: 2em;
  height: 2em;
}
.delivery__info h4 {
  margin-top: 0.5em;
}
.delivery__separator {
  padding: 0;
}
@media (min-width: 768px) {
  .delivery__separator {
    width: 0;
    margin-left: 50px;
    margin-right: 50px;
    border-left: 1px solid var(--accent-color);
  }
}
@media (max-width: 767px) {
  .delivery__separator {
    width: 75%;
    height: 0;
    margin: 50px 12.5%;
    border-top: 1px solid var(--accent-color);
  }
}

#founder {
  margin-top: 7em;
}
#founder h2 {
  margin-top: 0;
}
@media (max-width: 767px) {
  #founder h2 {
    margin-top: 0.5em;
  }
}

.founderPhoto {
  width: 300px;
  aspect-ratio: 1;
  border: 3px Solid var(--accent-color);
  border-radius: 213px;
  overflow: hidden;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .founderPhoto {
    width: 100%;
    max-width: 420px;
    margin: 0;
  }
}
.founderPhoto img {
  width: 100%;
}

.roundedImg {
  width: 100%;
  border-radius: 15px;
}

#contacts {
  margin-bottom: 2em;
}

.sendMessage {
  position: relative;
}
.sendMessage:after {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 50%;
  left: 30px;
  background-image: url("/imgs/sendMessage.svg");
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.contact-icon {
  width: 60px;
  vertical-align: middle;
  margin-right: 20px;
  position: relative;
}

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