* {
  margin: 0;
  padding: 0;
  box-sizing: border-box; }

a {
  color: black;
  text-decoration: none;
  transition: 200ms; }

button {
  background-color: transparent;
  border: none; }

button {
  background-color: #fab617;
  border-radius: 10px;
  padding: 0.5em 1em;
  transition: 300ms; }
  button:hover {
    background-color: #E38C09; }

@font-face {
  font-family: "AubreyPro";
  src: url("/static/fonts/AubreyPro.otf"); }

@font-face {
  font-family: "BitterPro";
  src: url("/static/fonts/BitterPro.ttf"); }

.title-error, .code-error, .product-info__price, .product-info__title, .info-header__title, .panel-sort__title, .card-body__title, .post__title, .main-menu__item h2, .header-title, .cover__text_secondary, .cover__text_primary {
  font-weight: normal;
  font-style: normal;
  font-family: "AubreyPro";
  text-align: center; }

.desc-error, .product-info__price span, .product-info, .product-page__back-link, .info-body, .head-message, .panel-sort-row, .card-body .card-detail small, .card-body__price, .post-date__text, .post-content__comment, footer, button {
  font-size: 16px;
  font-family: "BitterPro"; }

.cover {
  background: url("/static/components/cover/cover.jpg");
  height: 220px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px; }
  @media (max-width: 680px) {
    .cover {
      display: none; } }
.cover__logo {
  width: 150px; }

.cover__text_primary {
  font-size: 32px;
  margin-bottom: 0.5em; }

.cover__text_secondary {
  font-size: 24px;
  margin-bottom: 0.3em; }

header {
  background-color: #fab617;
  height: 50px;
  box-shadow: 0px -5px 9px rgba(0, 0, 0, 0.4);
  display: flex;
  justify-content: center; }
  @media (max-width: 680px) {
    header {
      justify-content: center;
      align-items: center;
      height: 70px; } }
  @media (max-width: 500px) {
    header {
      justify-content: flex-end;
      padding: 2em; } }
.header-title {
  display: none; }
  @media (max-width: 680px) {
    .header-title {
      display: block;
      color: white;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
      font-size: 30px; } }
  @media (max-width: 500px) {
    .header-title {
      font-size: 24px;
      letter-spacing: 0.1em; } }
@keyframes show-select-item {
  from {
    border-top-width: 0; }
  to {
    border-top-width: 25px; } }

@keyframes show-select-item-right {
  from {
    border-right-width: 0; }
  to {
    border-right-width: 25px; } }

#js-page-id-label {
  display: none; }

.main-menu {
  display: flex;
  height: 100%; }
  @media (max-width: 680px) {
    .main-menu {
      position: absolute;
      background-color: white;
      top: 70px;
      left: 0;
      flex-direction: column;
      width: 100%;
      height: auto;
      z-index: 20;
      box-shadow: 0 3px 6px rgba(0, 28, 83, 0.4); }
      .main-menu_open .main-menu__item {
        height: 60px; } }
.main-menu__item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1em;
  width: 160px; }
  .main-menu__item h2 {
    font-size: 20px;
    letter-spacing: 0.1em;
    transition: 200ms; }
  .main-menu__item:hover h2 {
    color: white; }
  @media (max-width: 680px) {
    .main-menu__item {
      padding: 0 3em;
      width: 100%;
      height: 0;
      justify-content: flex-start;
      overflow-y: hidden;
      transition: 300ms ease-in; } }
.main-menu__item_select {
  background-color: #E38C09;
  position: relative; }
  .main-menu__item_select h2 {
    z-index: 10; }
  .main-menu__item_select:hover h2 {
    color: black; }
  .main-menu__item_select::before {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    border-style: solid;
    border-color: transparent;
    border-width: 0 80px;
    border-top-color: #E38C09;
    animation: show-select-item 1s forwards; }
  @media (max-width: 680px) {
    .main-menu__item_select {
      background-color: transparent;
      border-left: 6px solid #E38C09;
      color: #E38C09; }
      .main-menu__item_select::before {
        display: none; } }
.burger-button {
  display: none; }
  @media (max-width: 680px) {
    .burger-button {
      position: absolute;
      left: 1em;
      display: flex;
      flex-direction: column;
      justify-content: space-around;
      width: 50px;
      height: 50px;
      cursor: pointer; } }
  .burger-button__line {
    width: 100%;
    height: 6px;
    background: white;
    border-radius: 3px;
    transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease; }
    .burger-button__line:nth-child(1) {
      transform-origin: 0% 0%; }
    .burger-button__line:nth-child(3) {
      transform-origin: 0% 100%; }
  .burger-button_active .burger-button__line:nth-child(1) {
    transform: rotate(45deg) translate(-1px, -1px); }
  .burger-button_active .burger-button__line:nth-child(2) {
    opacity: 0;
    transform: rotate(0deg) scale(0.2, 0.2); }
  .burger-button_active .burger-button__line:nth-child(3) {
    transform: rotate(-45deg) translate(0, -1px); }

footer {
  letter-spacing: 0.1em;
  background-color: #fab617;
  box-shadow: inset 0px 4px 4px rgba(0, 0, 0, 0.25);
  padding: 1em;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6em; }

.email-info {
  display: flex;
  flex-direction: column;
  gap: 0.2em; }
  .email-info__text {
    text-align: center; }
  .email-info a:hover {
    color: white; }

.social-networks {
  display: flex;
  gap: 1em; }
  .social-networks__icon {
    transition: 1s;
    width: 40px;
    height: 40px; }
    .social-networks__icon:hover {
      transform: rotate(360deg); }

.btn-phone {
  display: flex;
  align-items: center;
  background-color: #E38C09;
  border-radius: 50px;
  overflow: hidden;
  cursor: pointer;
  transition: opacity 0.3s ease;
  font-size: 18px;
  font-weight: 500;
  color: white; }
  .btn-phone:hover {
    opacity: 0.9; }
  .btn-phone:active {
    opacity: 0.85; }
  .btn-phone__icon-block {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background-color: #bc7407;
    flex-shrink: 0; }
    .btn-phone__icon-block svg {
      width: 24px;
      height: 24px;
      fill: white; }
  .btn-phone__number {
    flex: 1;
    padding: 0 20px;
    text-align: center;
    user-select: none; }
  .btn-phone__copy-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 56px;
    flex-shrink: 0; }
    .btn-phone__copy-icon svg {
      width: 20px;
      height: 20px;
      fill: white;
      opacity: 0.8;
      transition: opacity 0.2s ease; }
  .btn-phone:hover .btn-phone__copy-icon svg {
    opacity: 1; }
  .btn-phone.copied {
    animation: pulse 0.4s ease; }

@keyframes pulse {
  0%, 100% {
    transform: scale(1); }
  50% {
    transform: scale(1.05); } }

.swiper {
  width: 800px;
  padding-bottom: 30px; }
  @media (max-width: 900px) {
    .swiper {
      width: auto;
      margin: 0 2em; } }
  @media (max-width: 680px) {
    .swiper {
      margin: 0 1em; } }
  @media (max-width: 500px) {
    .swiper {
      display: none; } }
.swiper-pagination-bullet {
  background-color: #E38C09; }

.swiper-button {
  color: black;
  width: 40px;
  height: 60px;
  margin-top: -30px;
  transition: 200ms; }
  .swiper-button:hover {
    background-color: rgba(0, 0, 0, 0.6);
    color: white; }
  .swiper-button:active {
    color: #E38C09; }
  .swiper-button-prev {
    left: 0;
    border-radius: 0 25% 25% 0; }
  .swiper-button-next {
    right: 0;
    border-radius: 25% 0 0 25%; }
  .swiper-button::after {
    font-size: 30px; }

.post {
  width: 700px;
  box-shadow: 0px 4px 7px rgba(0, 28, 83, 0.4);
  border-radius: 0 0 10px 10px; }
  .post__title {
    font-size: 20px;
    letter-spacing: 0.09em;
    height: 50px;
    background-color: #fab617;
    display: flex;
    align-items: center;
    padding-left: 70px;
    border-radius: 0 0 10px 10px;
    margin-bottom: 30px; }
    @media (max-width: 900px) {
      .post__title {
        margin-bottom: 1em; } }
    @media (max-width: 680px) {
      .post__title {
        margin-bottom: 0.5em;
        padding-left: 0;
        justify-content: center; } }
  @media (max-width: 900px) {
    .post {
      width: auto;
      margin: 0 2em; } }
  @media (max-width: 680px) {
    .post {
      margin: 0 1em; } }
.post-content {
  padding: 0 50px; }
  .post-content__comment {
    text-indent: 20px; }
  @media (max-width: 900px) {
    .post-content {
      padding: 0 1em; } }
.post-media {
  margin-top: 1em;
  margin-bottom: 1em; }
  .post-media__image, .post-media__video {
    width: 100%; }

.post-date {
  display: flex;
  align-items: center;
  gap: 1em;
  margin: 0em 2em 2em; }
  .post-date__line {
    border-top: 1px solid #E38C09;
    flex-grow: 1; }
  .post-date__text {
    display: block;
    font-size: 14px;
    letter-spacing: 0.1em;
    font-style: italic;
    color: #E38C09; }

.news-feed {
  margin-top: 4em;
  margin-bottom: 4em;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4em; }
  @media (max-width: 680px) {
    .news-feed {
      margin-top: 1.5em;
      gap: 2em; } }
.card {
  border: 1px solid #e0e0e0;
  border-radius: 15px;
  padding: 1em;
  width: calc(240px + 2em);
  transition: 500ms;
  cursor: pointer; }
  .card:hover {
    box-shadow: 0px 4px 7px rgba(0, 28, 83, 0.4); }
    .card:hover .card-body__price {
      color: #E38C09; }
  @media (max-width: 680px) {
    .card {
      width: 100%;
      display: flex;
      gap: 1em; } }
  @media (max-width: 500px) {
    .card {
      flex-direction: column; } }
.card-preview {
  margin-bottom: 1em; }
  .card-preview__preview-skeleton {
    width: 240px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #a6a6a6;
    color: white; }
  @media (max-width: 680px) {
    .card-preview {
      margin: 0; } }
.card-body__title {
  text-align: start;
  text-indent: 0.5em;
  font-size: 20px; }

.card-body__price {
  display: block;
  font-size: 18px;
  margin-top: 0.5em;
  transition: 400ms; }

.card-body .card-detail {
  display: flex;
  justify-content: space-between; }
  .card-body .card-detail small {
    font-size: 14px;
    color: #4c4c4c; }
  .card-body .card-detail__label {
    display: none; }

@media (max-width: 680px) {
  .card-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5em; }
    .card-body__title {
      text-align: center; }
    .card-body__price {
      align-self: flex-end;
      margin-right: 1em; }
    .card-body .card-detail {
      flex-direction: column;
      justify-content: flex-start;
      flex-grow: 1; }
      .card-body .card-detail small {
        font-size: 16px;
        display: flex;
        justify-content: space-between; }
      .card-body .card-detail__label {
        display: inline; } }

.panel-sort {
  width: 300px;
  box-shadow: 0px 4px 7px rgba(0, 28, 83, 0.4);
  border-radius: 0 0 10px 10px;
  align-self: flex-start; }
  @media (max-width: 1500px) {
    .panel-sort {
      width: auto;
      align-self: center;
      display: flex;
      align-items: center;
      gap: 1.5em;
      box-shadow: none; } }
  @media (max-width: 900px) {
    .panel-sort {
      display: none; } }
  .panel-sort__title {
    font-size: 18px;
    letter-spacing: 0.09em;
    background-color: #fab617;
    padding: 0.4em; }
    @media (max-width: 1500px) {
      .panel-sort__title {
        background-color: transparent;
        padding: 0; } }
    @media (max-width: 1100px) {
      .panel-sort__title {
        display: none; } }
  .panel-sort_small {
    display: none; }
    @media (max-width: 900px) {
      .panel-sort_small {
        display: flex;
        justify-content: space-between;
        gap: 1em; } }
.panel-sort-body {
  padding: 1em 2em 2em;
  display: flex;
  flex-direction: column;
  gap: 0.5em; }
  @media (max-width: 1500px) {
    .panel-sort-body {
      flex-direction: row;
      padding: 0;
      gap: 1em; } }
  .panel-sort-body__submit {
    margin-top: 1em; }
    @media (max-width: 1500px) {
      .panel-sort-body__submit {
        margin: 0; } }
.panel-sort-row {
  display: flex;
  align-items: center;
  gap: 1em; }
  @media (max-width: 1500px) {
    .panel-sort-row {
      gap: 0.2em; } }
  .panel-sort-row input {
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #E38C09;
    box-sizing: border-box;
    transition: 300ms;
    display: flex;
    align-items: center;
    justify-content: center; }
    .panel-sort-row input::before {
      content: "";
      width: 10px;
      height: 10px;
      border-radius: 50%;
      transition: 300ms;
      cursor: pointer; }
    .panel-sort-row input:hover {
      box-shadow: 0 0 5px 2px rgba(227, 140, 9, 0.5); }
    .panel-sort-row input:checked::before {
      background-color: #E38C09; }
  .panel-sort-row label {
    cursor: pointer; }

.select-input {
  position: relative;
  width: 240px;
  height: 40px; }
  .select-input[data-state="active"] .select-input__title::before {
    transform: translate(-3px, -50%) rotate(-45deg); }
  .select-input[data-state="active"] .select-input__title::after {
    transform: translate(3px, -50%) rotate(45deg); }
  .select-input[data-state="active"] .select-input__content {
    opacity: 1; }
    .select-input[data-state="active"] .select-input__content label {
      max-height: 40px; }
  .select-input__title {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 8px 16px;
    border-radius: 5px;
    border: solid 1px #e0e0e0;
    cursor: pointer; }
    .select-input__title::before, .select-input__title::after {
      content: "";
      position: absolute;
      top: 50%;
      right: 16px;
      display: block;
      width: 10px;
      height: 2px;
      transition: 300ms;
      background-color: #333333;
      transform: translate(-3px, -50%) rotate(45deg); }
    .select-input__title::after {
      transform: translate(3px, -50%) rotate(-45deg); }
    .select-input__title:hover {
      border-color: #E38C09; }
      .select-input__title:hover::before, .select-input__title:hover::after {
        background-color: #E38C09; }
  .select-input__content {
    position: absolute;
    top: 40px;
    left: 3px;
    display: flex;
    flex-direction: column;
    width: calc(100% - 6px);
    background-color: white;
    border: 1px solid #e0e0e0;
    border-top: none;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    transition: 300ms;
    opacity: 0;
    z-index: 8; }
    .select-input__content input {
      display: none; }
      .select-input__content input:checked + label {
        background-color: #e0e0e0; }
    .select-input__content label {
      display: flex;
      align-items: center;
      width: 100%;
      height: 40px;
      max-height: 0;
      padding: 0 16px;
      transition: 200ms;
      cursor: pointer;
      overflow: hidden; }
      .select-input__content label:hover {
        background-color: #E38C09 !important;
        color: #ffffff; }

.head-message {
  letter-spacing: 0.1em;
  font-style: italic;
  background-color: #EEEEEE;
  width: 1000px;
  border-radius: 15px;
  margin: auto;
  padding: 1em 2em;
  text-align: center; }
  @media (max-width: 1100px) {
    .head-message {
      width: auto;
      margin: 0 2em; } }
  @media (max-width: 680px) {
    .head-message {
      margin: 0 1em;
      padding: 1em; } }
.container-products {
  margin-top: 2em;
  margin-bottom: 3em;
  display: flex;
  justify-content: center;
  gap: 2em;
  padding: 0 2em; }
  @media (max-width: 1500px) {
    .container-products {
      flex-direction: column-reverse; } }
  @media (max-width: 680px) {
    .container-products {
      padding: 0 1em; } }
  @media (max-width: 500px) {
    .container-products {
      gap: 1em; } }
.products-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1em;
  max-width: 75vw; }
  @media (max-width: 1500px) {
    .products-list {
      max-width: none; } }
  @media (max-width: 680px) {
    .products-list {
      flex-direction: column;
      justify-content: flex-start; } }
  @media (max-width: 500px) {
    .products-list {
      align-items: center; } }
.info-header {
  display: flex;
  align-items: center;
  gap: 1.5em;
  cursor: pointer;
  border: 1px solid transparent;
  padding: 0.5em 1em;
  transition: 300ms; }
  .info-header::marker {
    display: none; }
  .info-header__title {
    font-size: 20px;
    line-height: 30px;
    flex-grow: 1;
    display: flex;
    align-items: center;
    gap: 1em; }
    .info-header__title::after {
      content: "";
      display: block;
      flex-grow: 1;
      border-top: 2px solid transparent;
      transition: 300ms; }
  .info-header::before {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #fab617;
    transition: 300ms; }
  .info-header::after {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    box-sizing: border-box;
    border-top: 4px solid #E38C09;
    border-right: 4px solid #E38C09;
    transform: rotate(45deg);
    transition: 300ms; }
  .info-header:focus {
    outline: 0;
    border-color: #e0e0e0; }

.info-body {
  font-size: 18px;
  border-left: 3px solid #fab617;
  margin-top: 0.5em;
  margin-left: 2em;
  padding: 1em;
  padding-left: 2em; }
  .info-body ul {
    margin-left: 2em; }
  .info-body ol {
    margin-left: 2em; }
    .info-body ol li {
      padding-left: 1em; }
  @media (max-width: 900px) {
    .info-body {
      font-size: 16px;
      margin-left: 1.5em;
      padding-left: 1.5em;
      padding-top: 0.5em; } }
.info-block:first-child .info-header {
  border-radius: 10px 10px 0 0; }

.info-block:last-child .info-header {
  border-radius: 0 0 10px 10px; }

.info-block[open] {
  padding-bottom: 1em; }
  .info-block[open] .info-header::before {
    width: 25px;
    height: 25px; }
  .info-block[open] .info-header::after {
    transform: rotate(135deg) translateX(-5px); }
  .info-block[open] .info-header__title::after {
    border-color: #fab617; }

.container-page {
  margin: auto;
  width: 1000px;
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  margin-bottom: 100px; }
  @media (max-width: 1100px) {
    .container-page {
      width: auto;
      margin: 0 2em; } }
  @media (max-width: 680px) {
    .container-page {
      margin: 0 1em; } }
.product-page {
  display: flex;
  justify-content: space-between;
  width: 1250px;
  margin: 20px auto 50px;
  position: relative; }
  .product-page__back-link {
    font-size: 18px;
    color: #E38C09;
    position: absolute;
    top: -20px;
    left: 25px;
    display: block;
    transition: 300ms;
    border-bottom: 1px solid transparent;
    line-height: 20px; }
    .product-page__back-link::before {
      content: "";
      box-sizing: border-box;
      position: absolute;
      top: 5px;
      left: -25px;
      width: 15px;
      height: 15px;
      border: 3px solid transparent;
      border-top-color: #E38C09;
      border-left-color: #E38C09;
      transform: rotate(-45deg);
      transition: 300ms; }
    .product-page__back-link:hover {
      border-bottom-color: #E38C09; }
      .product-page__back-link:hover::before {
        left: -35px; }
    @media (max-width: 1500px) {
      .product-page__back-link {
        left: 5em; } }
    @media (max-width: 500px) {
      .product-page__back-link {
        left: 40px; } }
  .product-page__image, .product-page__preview-skeleton {
    border-radius: 15px;
    border: 1px solid #e0e0e0;
    margin-top: 1.5em;
    width: 800px;
    height: 600px;
    padding: 1em; }
    @media (max-width: 1500px) {
      .product-page__image, .product-page__preview-skeleton {
        width: 600px;
        height: 400px; } }
    @media (max-width: 1100px) {
      .product-page__image, .product-page__preview-skeleton {
        width: 60vw;
        height: auto; } }
    @media (max-width: 900px) {
      .product-page__image, .product-page__preview-skeleton {
        width: 100%; } }
    @media (max-width: 680px) {
      .product-page__image, .product-page__preview-skeleton {
        padding: 0;
        border: none; } }
  .product-page__preview-skeleton {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #a6a6a6;
    color: white; }
    @media (max-width: 900px) {
      .product-page__preview-skeleton {
        height: 300px; } }
  @media (max-width: 1500px) {
    .product-page {
      width: auto;
      justify-content: center;
      gap: 2em; } }
  @media (max-width: 1100px) {
    .product-page {
      gap: 1em;
      padding: 0 2em; } }
  @media (max-width: 900px) {
    .product-page {
      padding: 0 50px;
      flex-direction: column;
      align-items: center;
      gap: 1.5em; } }
  @media (max-width: 680px) {
    .product-page {
      padding: 0 1em; } }
.product-aside {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px; }

.product-info {
  font-size: 18px;
  align-self: flex-start;
  margin-top: 1.5em;
  border: 1px solid #e0e0e0;
  border-radius: 15px;
  padding: 1em;
  display: flex;
  flex-direction: column;
  gap: 0.6em;
  width: 400px; }
  .product-info__title {
    font-size: 30px; }
  .product-info__desc {
    text-indent: 1em;
    margin-bottom: 1em; }
  .product-info__block {
    display: flex;
    flex-direction: column;
    gap: 0.5em; }
  .product-info__details {
    display: flex;
    justify-content: space-between; }
  .product-info__price {
    font-size: 24px;
    margin-top: 3em; }
    .product-info__price span {
      font-size: 20px; }
    @media (max-width: 1500px) {
      .product-info__price {
        flex-grow: 1;
        margin-top: 0;
        display: flex;
        justify-content: center;
        align-items: flex-end;
        gap: 0.5em; } }
  @media (max-width: 1500px) {
    .product-info {
      font-size: 16px;
      width: 300px;
      align-self: stretch; }
      .product-info__title {
        font-size: 24px; } }
  @media (max-width: 900px) {
    .product-info {
      border-top: 15px solid #fab617;
      width: auto;
      margin-top: 0;
      gap: 1.5em; }
      .product-info__block {
        display: flex;
        flex-direction: row;
        gap: 5em; }
      .product-info__details {
        width: 50%; } }
  @media (max-width: 500px) {
    .product-info__block {
      flex-direction: column;
      gap: 0.5em; }
    .product-info__details {
      width: auto; } }
.error-container {
  display: flex;
  flex-direction: column;
  gap: 1em;
  align-items: center;
  justify-content: center; }

.code-error {
  font-size: 36px; }

.title-error {
  font-size: 24px; }

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column; }

.wrap {
  flex-grow: 1;
  margin-top: 40px; }
  @media (max-width: 500px) {
    .wrap {
      margin-top: 1em; } }
