@charset "UTF-8";
/* Light начертание */
@font-face {
  font-family: "Gotham";
  src: url(https://grivko.shop/fonts/gotham_light.otf) format("opentype");
  font-weight: 300;
  font-style: normal;
}
/* Book (Regular) начертание */
@font-face {
  font-family: "Gotham";
  src: url(https://grivko.shop/fonts/gotham_book.otf) format("opentype");
  font-weight: 400;
  font-style: normal;
}
/* Bold начертание */
@font-face {
  font-family: "Gotham";
  src: url(https://grivko.shop/fonts/gotham_bold.otf) format("opentype");
  font-weight: 700;
  font-style: normal;
}
:root {
  --color-black: rgb(30, 31, 34);
  --color-red: rgb(84, 7, 40);
  --color-yellow: rgb(237, 174, 131);
  --color-white: rgb(249, 238, 229);
}

.container {
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.content-body {
  position: relative;
  overflow: hidden;
  overflow-y: scroll;
  width: 100%;
  height: 100%;
  box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
  -ms-overflow-style: none;
  /* Для IE и Edge */
  scrollbar-width: none;
  /* Для Firefox */
}
.content-body::-webkit-scrollbar {
  display: none;
}

.background-images {
  position: absolute;
  overflow: hidden;
  z-index: -1;
  height: 100%;
  width: 100%;
}

.background-image {
  position: absolute;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-background-size: cover;
  background-position: top center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.background-image.active {
  opacity: 1;
}

.overlay-element:before {
  content: "";
  top: 5px !important;
  /* height: 10px !important; */
  background: repeating-linear-gradient(to right, rgba(249, 238, 229, 0.7), rgba(249, 238, 229, 0.7) 3px, transparent 3px, transparent 7px) !important;
}

.overlay-element:after {
  content: "";
  bottom: 5px !important;
  /* height: 10px !important; */
  background: repeating-linear-gradient(to right, rgba(249, 238, 229, 0.7), rgba(249, 238, 229, 0.7) 3px, transparent 3px, transparent 7px) !important;
}

.overlay-element {
  position: relative;
  --offset-top: 0px;
  --offset-bottom: 0px;
  --color: var(--color-white);
  --h: 4px;
  --w: 3px;
  --w-space: 3px;
}

.overlay-element[overlay-color=black] {
  --color: var(--color-black) ;
}

.overlay-element[overlay-color=white] {
  --color: var(--color-white) ;
}

.overlay-element[overlay-color=red] {
  --color: var(--color-red) ;
}

.overlay-element[overlay-color=yellow] {
  --color: var(--color-yellow) ;
}

.overlay-element[overlay=dot],
.overlay-element[overlay-hover=dot] {
  --gradient: repeating-linear-gradient(to right,
      var(--color),
      var(--color) var(--w),
      transparent var(--w),
      transparent calc(var(--w) + var(--w-space)));
}

.overlay-element::before,
.overlay-element::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: var(--h);
  opacity: 1;
}

.overlay-element[overlay=dot]::before,
.overlay-element[overlay-hover=dot]::before {
  top: var(--offset-top);
  background: var(--gradient);
}

.overlay-element[overlay=dot]::after,
.overlay-element[overlay-hover=dot]::after {
  bottom: 0;
  background: var(--gradient);
}

.overlay-element[overlay=dot]::before,
.overlay-element[overlay=dot]::after,
.overlay-element[overlay-hover=dot]:hover::before,
.overlay-element[overlay-hover=dot]:hover::after {
  opacity: 1;
}

.overlay-element-target-hover:hover .overlay-element[overlay-hover=dot]::before,
.overlay-element-target-hover:hover .overlay-element[overlay-hover=dot]::after {
  opacity: 1;
}

.overlay-element.overlay-element-active[overlay-hover=dot]::before,
.overlay-element.overlay-element-active[overlay-hover=dot]::after {
  opacity: 1;
}

body {
  color: black;
  font-family: "Gotham", sans-serif;
}

body.desktop-device .content-body {
  max-width: 800px;
  margin: 0 auto;
}

header {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  color: #f9eee5;
  background: rgba(26, 26, 26, 0.83) !important;
  position: relative;
}

.header-title {
  text-transform: uppercase;
  text-align: center;
  font-size: 0.8rem;
  letter-spacing: 2px;
}

.menu {
  position: absolute;
  left: 10px;
  display: flex;
  flex-direction: column;
  font-size: 30px;
}
.menu sl-icon:first-child {
  top: 0;
  position: absolute;
}
.menu sl-icon:last-child {
  bottom: 0;
  position: absolute;
}

.hero-title {
  padding: 0 20px 20px 20px;
  margin: -25px 0 calc(100dvh - 457px) 0;
}
.hero-title p {
  text-transform: uppercase;
  color: #f9eee5;
  margin-bottom: -2px;
  margin-top: 34px;
}
.hero-title h1 {
  color: #f9eee5;
  font-size: 1.1rem;
  text-align: right;
}

.item-list {
  position: absolute;
  margin-left: 10px;
  display: flex;
  width: auto;
}

.item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  margin: 5px;
  width: 170px;
  height: 220px;
  border-radius: 10px;
  background-color: #f9eee5;
}

.item .info {
  display: none;
}

.item.active {
  position: absolute;
  bottom: 0;
  height: 340px;
  width: 100%;
  border-radius: 0;
  margin: 0;
  z-index: 2000;
}

.item-list > div {
  z-index: 1900;
}

.item-img {
  position: absolute;
  align-self: center;
  display: block;
  height: auto;
  bottom: 100px;
  max-width: 75%;
  border-radius: 6px;
}

.item-description {
  position: absolute;
  bottom: 0;
}
.item-description h1 {
  text-transform: uppercase;
  padding: 0px 15px 0 15px;
  font-size: 0.7rem;
  margin-bottom: -9px;
  text-align: center;
}
.item-description p {
  padding: 0 15px 15px 15px;
  color: gray;
  text-align: center;
}
.item-description select {
  display: none;
}
.item-description .btn {
  display: none;
}

.item.active .item-img {
  max-width: 45%;
  bottom: 240px;
}


.item.active .item-description {
  bottom: 0;
  padding: 25px;
  max-height: 92px;
  bottom: 26px;
}
.item.active .item-description h1 {
  margin-top: 140 px;
  padding: 0;
  font-size: 1rem;
}
.item.active .item-description p {
  padding: 0;
  margin-top: 10px;
  margin-bottom: 20px;
}
.item.active .item-description select {
  background-color: #f9eee5 !important;
  border: none !important;
  width: min-content !important;
  box-shadow: 2px 3px 5px rgba(0, 0, 0, 0.2);
  font-size: 14px !important;
  background: rgb(249, 238, 229) !important;
  border-width: 1px !important;
  border-style: solid !important;
  border-color: rgb(30, 31, 34) !important;
  border-radius: 0px !important;
  max-width: 500px;
  padding: 5px 10px !important;
  line-height: 1.3;
  color: #555;
  display: block;
  margin-bottom: 25px;
}

.btn_beautiful {
  background: linear-gradient(135deg, #540728, #8B1538);
  color: #ffffff;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(84, 7, 40, 0.3);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  width: fit-content;
}

.btn_beautiful::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  animation: shimmer 5s infinite;
  transition: left 0.6s ease;
}

.item.active .item-description .btn {
  display: block;
  margin: 0 auto;
  background: linear-gradient(135deg, #540728, #8B1538);
  color: #ffffff;
  border: none;
  padding: 14px 18px;
  cursor: pointer;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(84, 7, 40, 0.3);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  width: fit-content;
}

.item.active .item-description .btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  animation: shimmer 5s infinite;
  transition: left 0.6s ease;
}

.item.active .item-description .btn:hover {
  background: linear-gradient(135deg, #8B1538, #540728);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(84, 7, 40, 0.4);
}
.item.active .item-description .btn:hover::before {
  animation: none;
  left: 100%;
}
.item.active .item-description .btn:active {
  transform: translateY(0);
  box-shadow: 0 4px 15px rgba(84, 7, 40, 0.3);
}
.item.active .item-description .info {
  display: block;
  margin: 0 -28px;
  margin-top: 25px !important;
  padding: 25px;
  background: linear-gradient(135deg, rgba(249, 238, 229, 0.9), rgba(222, 184, 135, 0.15));
  box-shadow: 0 8px 32px rgba(84, 7, 40, 0.12);
  border: 1px solid rgba(84, 7, 40, 0.08);
  position: relative;
  overflow: hidden;
}
.item.active .item-description .info::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: #540728;
}
.item.active .item-description .info .product-article {
  font-size: 0.8rem;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
  font-weight: 500;
}
.item.active .item-description .info .product-article .article-label {
  color: #1e1f22;
  margin-right: 8px;
}
.item.active .item-description .info .product-article .article-value {
  color: #540728;
  font-family: "Courier New", monospace;
  font-weight: 600;
  user-select: all;
}
.item.active .item-description .info .product-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #4a4a4a;
  margin-bottom: 20px;
  font-weight: 400;
  letter-spacing: 0.3px;
}
.item.active .item-description .info .product-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.item.active .item-description .info .product-details .detail-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(84, 7, 40, 0.08);
  transition: all 0.3s ease;
}
.item.active .item-description .info .product-details .detail-item:last-child {
  border-bottom: none;
}
.item.active .item-description .info .product-details .detail-item .detail-label {
  font-size: 0.9rem;
  color: #666;
  font-weight: 500;
}
.item.active .item-description .info .product-details .detail-item .detail-value {
  font-size: 0.9rem;
  color: #333;
  font-weight: 600;
  text-align: right;
  user-select: all;
}
.item.active .item-description .info .elegance-divider {
  height: 1px;
  background: rgba(84, 7, 40, 0.2);
  margin: 20px 0;
}

.gslide-description {
  display: none;
}

body {
  margin: 0 auto;
  background-color: rgb(30, 31, 34);
  background-color: rgb(249, 238, 229);
  box-sizing: border-box;
}

a {
  color: inherit;
  text-decoration: none;
}

li {
  list-style-type: none;
}

h1 {
  font-weight: 200;
}

h2 {
  font-weight: 400;
}

p {
  font-weight: 200;
}

.sidebar {
  position: fixed;
  top: 0;
  left: -250px;
  height: 100%;
  width: 250px;
  background-color: #f9eee5;
  color: #1e1f22;
  z-index: 999999;
  transition: left 0.3s ease;
  box-shadow: 2px 0 10px rgba(30, 31, 34, 0.2);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.sidebar.active {
  left: 0;
}
.sidebar .sidebar-header {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  font-weight: bold;
  color: #540728;
}
.sidebar .close-btn {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #540728;
}
.sidebar .sidebar-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sidebar .sidebar-menu li a {
  display: block;
  padding: 15px 20px;
  text-decoration: none;
  color: #1e1f22;
  transition: background-color 0.3s;
}
.sidebar .sidebar-menu li a:hover, .sidebar .sidebar-menu li a:focus {
  background-color: #edae83;
  color: #540728;
}

/* Стили для контактной информации в sidebar */
.sidebar .sidebar-contacts {
  margin-top: auto;
  padding: 20px;
  border-top: 1px solid rgba(84, 7, 40, 0.15);
}

.sidebar .contacts-header {
  display: flex;
  justify-content: center;
  margin-bottom: 15px;
}

.sidebar .contact-logo {
  width: 50%;
  max-width: 125px;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

.sidebar .contact-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sidebar .contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 4px 0;
}

.sidebar .contact-item-mini {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0px 0;
  font-size: 9px;
  justify-content: center;
  text-align: center;
}

.sidebar .contact-item i {
  font-size: 13px;
  color: #540728;
  width: 14px;
  flex-shrink: 0;
}

.sidebar .contact-value {
  font-size: 12px;
  color: #1e1f22;
  font-weight: 400;
  line-height: 1.3;
  text-decoration: none;
  transition: color 0.3s ease;
}

.sidebar .contact-value:hover {
  color: #540728;
  text-decoration: none;
}

.sidebar .contact-item a.contact-value {
  cursor: pointer;
}

.sidebar .contact-item a.contact-value:hover {
  color: #540728;
  text-decoration: underline;
}

/* Адаптивность для контактов */
@media (max-width: 768px) {
  .sidebar .sidebar-contacts {
    padding: 15px;
  }

  .sidebar .contacts-header {
    margin-bottom: 12px;
  }

  .sidebar .contact-logo {
    max-width: 100px;
  }

  .sidebar .contact-info {
    gap: 6px;
  }

  .sidebar .contact-item {
    gap: 8px;
    padding: 3px 0;
  }

  .sidebar .contact-item i {
    font-size: 12px;
    width: 12px;
  }

  .sidebar .contact-value {
    font-size: 11px;
  }
}

.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(30, 31, 34, 0.6);
  z-index: 9999;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(30, 31, 34, 0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}

.modal {
  background-color: #f9eee5;
  padding: 40px 35px;
  border-radius: 20px;
  max-width: 480px;
  width: 95%;
  position: relative;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  font-family: "Gotham", sans-serif;
  max-height: 90vh;
  overflow-y: auto;
}
@media (max-width: 768px) {
  .modal {
    padding: 30px 25px;
    border-radius: 15px;
    max-width: 95%;
    width: 95%;
  }
}
@media (max-width: 480px) {
  .modal {
    padding: 25px 20px;
    border-radius: 12px;
  }
}
.modal h2 {
  font-size: 1.4rem;
  color: #1e1f22;
  margin-bottom: 15px;
  font-weight: 600;
  text-align: center;
  line-height: 1.3;
}
.modal p {
  font-weight: 400;
  font-size: 1rem;
  margin-bottom: 25px;
  color: #555;
  text-align: center;
  line-height: 1.4;
}
.modal .modal-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.modal .modal-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.modal .modal-form .form-group label {
  font-size: 0.95rem;
  color: #333;
  font-weight: 500;
  display: flex;
  align-items: center;
}

.modal .modal-form input[type=text],
.modal .modal-form input[type=tel],
.modal .modal-form select {
  padding: 16px 20px;
  border: none;
  border-radius: 12px;
  background-color: rgba(222, 184, 135, 0.12);
  font-family: "Gotham", sans-serif;
  color: #333;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.06);
  width: 100%;
  box-sizing: border-box;
}
.modal .modal-form input[type=text]:focus,
.modal .modal-form input[type=tel]:focus,
.modal .modal-form select:focus {
  outline: none;
  background-color: rgba(222, 184, 135, 0.2);
  box-shadow: 0 0 0 3px rgba(84, 7, 40, 0.15);
}
.modal .modal-form input[type=text]::placeholder,
.modal .modal-form input[type=tel]::placeholder,
.modal .modal-form select::placeholder {
  color: #888;
}
.modal .modal-form select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
}
.modal .modal-form .btn-submit {
  background: linear-gradient(135deg, #540728, #8B1538);
  color: #ffffff;
  border: none;
  padding: 18px 20px;
  cursor: pointer;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(84, 7, 40, 0.3);
  margin-top: 10px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}
.modal .modal-form .btn-submit::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  animation: shimmer 5s infinite;
  transition: left 0.6s ease;
}
.modal .modal-form .btn-submit:hover {
  background: linear-gradient(135deg, #8B1538, #540728);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(84, 7, 40, 0.4);
}
.modal .modal-form .btn-submit:hover::before {
  animation: none;
  left: 100%;
}
.modal .modal-form .btn-submit:active {
  transform: translateY(0);
  box-shadow: 0 4px 15px rgba(84, 7, 40, 0.3);
}
@keyframes shimmer {
  0% {
    left: -100%;
  }
  50% {
    left: 100%;
  }
  100% {
    left: -100%;
  }
}
.modal .modal-form .checkbox-group {
  margin-top: 5px;
}
.modal .modal-form .checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.85rem;
  color: #666;
  line-height: 1.4;
  cursor: pointer;
}
.modal .modal-form .checkbox-label input[type=checkbox] {
  display: none;
}
.modal .modal-form .checkbox-label .checkmark {
  width: 20px;
  height: 20px;
  background-color: rgba(160, 120, 80, 0.3);
  border: 2px solid rgba(84, 7, 40, 0.2);
  border-radius: 4px;
  position: relative;
  flex-shrink: 0;
  transition: all 0.3s ease;
  margin-top: 2px;
}
.modal .modal-form .checkbox-label input[type=checkbox]:checked + .checkmark {
  background-color: #540728;
  border-color: #540728;
}
.modal .modal-form .checkbox-label input[type=checkbox]:checked + .checkmark::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 12px;
  font-weight: bold;
}
.modal .modal-form .checkbox-label.error .checkmark {
  border-color: #dc3545;
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.15);
}
.modal .modal-form .checkbox-error {
  color: #dc3545;
  font-size: 0.8rem;
  margin-top: 5px;
  display: none;
}
.modal .modal-form .checkbox-error.show {
  display: block;
}
.modal .modal-form .policy-link {
  color: #540728;
  text-decoration: underline;
  transition: color 0.3s ease;
}
.modal .modal-form .policy-link:hover {
  color: #8B1538;
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  background: none;
  border: none;
  color: #540728;
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.modal-close:hover {
  background-color: rgba(84, 7, 40, 0.1);
  transform: rotate(90deg);
}

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