@charset "UTF-8";

/* Light начертание */
@font-face {
  font-family: "Gotham";
  src: url(https://grivko.com/fonts/gotham_light.otf) format("opentype");
  font-weight: 300;
  font-style: normal;
}

/* Book (Regular) начертание */
@font-face {
  font-family: "Gotham";
  src: url(https://grivko.com/fonts/gotham_book.otf) format("opentype");
  font-weight: 400;
  font-style: normal;
}

/* Bold начертание */
@font-face {
  font-family: "Gotham";
  src: url(https://grivko.com/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);
}

/* * {
  box-sizing: border-box;
} */

.container {
  width: 100vw;
  min-height: 100vh;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;

  -ms-overflow-style: none;
  scrollbar-width: none;
}

.container::-webkit-scrollbar {
  display: none;
}


body::-webkit-scrollbar {
  display: none;
}


.content-body {
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  width: 100%;
  height: 100vh;
  -ms-overflow-style: none;
  /* Для IE и Edge */
  scrollbar-width: none;
  /* Для Firefox */
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
  overscroll-behavior-y: contain;
}

.content-body.no-scroll-snap {
  scroll-snap-type: none !important;
  scroll-behavior: auto !important;
  overscroll-behavior-y: auto !important;
}

.content-body.snap-enabled {
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
  overscroll-behavior-y: contain;
}

.snap-section-enabled {
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.banner-body,
.slider-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
}

.content-body::-webkit-scrollbar {
  display: none;
}

.snap-section {
  min-height: 100vh;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.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: fixed;
  top: 0;
  width: 100%;
  max-width: 100%;
  --offset-top: 0px;
  --offset-bottom: 0px;
  --color: var(--color-white);
  --h: 4px;
  --w: 3px;
  --w-space: 3px;
  box-sizing: border-box;
}

.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;
  height: 100vh;
  margin: 0 auto;
  /* margin-top: 50px; */
  box-sizing: border-box;
}

body.desktop-device .snap-section {
  max-width: 800px;
  margin: 0 auto;
  box-sizing: border-box;
}

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

header .cont {
  max-width: 800px;
  width: 100%;
  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: 57px 20px 20px 20px;
  margin: -25px 0 calc(100dvh - 457px) 0;
}

.hero-title p {
  text-transform: uppercase;
  color: var(--color-black);
  margin-bottom: -2px;
  margin-top: 34px;
}

.hero-title h1 {
  color: var(--color-black);
  font-size: 1.1rem;
  text-align: right;
  opacity: 0;
}

.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;
  box-shadow: 0 0 40px rgb(0 0 0 / 20%)
}

.item .info {
  display: none;
}

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

.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;
  box-shadow: 0 0 40px rgb(0 0 0 / 20%);
}

.item-description {
  position: absolute;
  bottom: 0;
}

.item-description h1 {
  text-transform: uppercase;
  padding: 0px 15px 0 15px;
  font-size: 0.7rem;
  margin-bottom: -14px;
  text-align: center;
}

.item-description p {
  padding: 0 15px 15px 15px;
  color: gray;
  text-align: center;
}

.item .item-description p.old-price {
  margin-bottom: -31px;
  text-decoration: line-through;
}

.item .item-description p.new-price {
  margin-bottom: 0px;
  color: rgb(191 0 0);
  font-weight: 400;
}


.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 p.new-price {
  margin-top: -20px;
  margin-bottom: 11px;
}


.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: 13px !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;
  padding: 0;
  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);
}












































/* Новая секция */




.intro-empty-section {
  position: relative;
  background-color: #efeee9;
  color: #000;
  overflow: hidden;
  overflow-x: hidden;
}

.intro-empty-section__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 100%;
  transform-origin: left bottom;
  pointer-events: none;
  z-index: 0;
  top: 141px;
  overflow: visible;
}

.intro-hero {
  position: relative;
  width: 100%;
  height: 100%;
}

.intro-hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 4vw, 32px);
  width: 100%;
}

.intro-hero__content--top {
  gap: clamp(20px, 5vw, 40px);
}

.intro-hero__sale-ticker {
  width: 100%;
  font-family: "Gotham", sans-serif;
  font-weight: 500;
  font-size: min(35px, 4.2vw);
  letter-spacing: 0;
  color: #f80007;
  padding-top: 60px;
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  width: 100%;
  white-space: nowrap;
}

.intro-hero__sale-word {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.intro-hero__top-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: clamp(16px, 5vw, 36px);
  flex-wrap: wrap;
}

.intro-hero__title {
  flex: 1 1 240px;
  margin: 0;
  font-family: "Gotham", sans-serif;
  font-weight: 400;
  font-size: 17.68px;
  line-height: 18px;
  margin-left: auto;
}

.intro-hero__season-card {
  align-self: flex-start;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: clamp(10px, 2vw, 18px);
  padding: clamp(18px, 4vw, 28px);
  background: #f7ece2;
  border-radius: clamp(18px, 3vw, 30px);
  box-shadow: 0 28px 64px rgba(30, 31, 34, 0.22);
  text-align: center;
}

.intro-hero__content.intro-hero__content--bottom {
  align-items: center;
  position: absolute;
  top: 71%;
  gap: 35px;
}

.intro-hero__season-inline {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(6px, 2vw, 12px);
  text-align: center;
}

.intro-hero__season {
  font-family: "Gotham", sans-serif;
  font-weight: 400;
  font-size: 52px;
  letter-spacing: 0.18em;
  color: #F7ECE2;
}

.intro-hero__discount {
  font-family: "Gotham", sans-serif;
  font-weight: 900;
  font-size: 52px;
  letter-spacing: 0.12em;
  color: #FF473B;
  text-shadow: 0px 2.96296px 10.3704px rgba(0, 0, 0, 0.25);
}

.intro-hero__arrow {
  width: 132px;
  height: auto;
  display: block;
}

.intro-hero__gradient {
  position: absolute;
  width: 100%;
  height: 44%;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgb(0 0 0 / 60%) 100%);
  pointer-events: none;
}

.intro-hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 43px;
  max-width: 100%;
  text-transform: uppercase;
  text-align: right;
  padding: 0 31px;
  box-sizing: border-box;
}

@media (max-width: 500px) {
  .intro-hero {
    position: relative;
    width: 100%;
    height: 100%;
  }

  .intro-hero__content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 43px;
    width: 100%;
    text-transform: uppercase;
    text-align: right;
    padding: 0 19px;
    box-sizing: border-box;
  }

  .intro-hero__content--top {
    gap: clamp(20px, 5vw, 40px);
  }

  .intro-hero__sale-ticker {
    width: 100%;
    font-family: "Gotham", sans-serif;
    font-weight: 500;
    font-size: 4.4vw;
    letter-spacing: 0;
    color: #f80007;
    text-align: center;
  }

  .intro-hero__top-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: clamp(16px, 5vw, 36px);
    flex-wrap: wrap;
  }

  .intro-hero__title {
    margin: 0;
    font-family: "Gotham", sans-serif;
    font-weight: 400;
    font-size: 18.38px;
    line-height: 25.8px;
    margin-left: auto;
  }

  .intro-hero__season-card {
    align-self: flex-start;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: clamp(10px, 2vw, 18px);
    padding: clamp(18px, 4vw, 28px);
    background: #f7ece2;
    border-radius: clamp(18px, 3vw, 30px);
    box-shadow: 0 28px 64px rgba(30, 31, 34, 0.22);
    text-align: center;
  }

  .intro-hero__content.intro-hero__content--bottom {
    align-items: center;
    position: absolute;
    top: 66%;
    gap: 35px;
  }

  .intro-hero__season-inline {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(6px, 2vw, 12px);
    text-align: center;
  }

  .intro-hero__season {
    font-family: "Gotham", sans-serif;
    font-weight: 400;
    font-size: 40px;
    letter-spacing: 0.18em;
    color: #F7ECE2;
  }

  .intro-hero__discount {
    font-family: "Gotham", sans-serif;
    font-weight: 900;
    font-size: 40px;
    letter-spacing: 0.12em;
    color: #FF473B;
    text-shadow: 0px 2.96296px 10.3704px rgba(0, 0, 0, 0.25);
  }

  .intro-hero__arrow {
    width: 127px;
    height: auto;
    display: block;
  }

  .intro-hero__gradient {
    width: 100%;
    height: 44%;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgb(0 0 0 / 60%) 100%);
    pointer-events: none;
  }
}

@media (max-width: 450px) {
  .intro-hero {
    position: relative;
    width: 100%;
    height: 100%;
  }

  .intro-hero__content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 43px;
    width: 100%;
    text-transform: uppercase;
    text-align: right;
    padding: 0 31px;
    box-sizing: border-box;
  }

  .intro-hero__content--top {
    gap: 16px;
  }

  .intro-hero__sale-ticker {
    width: 100%;
    font-family: "Gotham", sans-serif;
    font-weight: 500;
    letter-spacing: 0;
    color: #f80007;
    text-align: center;
    font-size: min(35px, 4vw);
  }

  .intro-hero__top-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: clamp(16px, 5vw, 36px);
    flex-wrap: wrap;
  }

  .intro-hero__title {
    flex: 1 1 240px;
    margin: 0;
    font-family: "Gotham", sans-serif;
    font-weight: 400;
    font-size: 12.88px;
    line-height: 19px;
    margin-left: auto;
  }

  .intro-hero__season-card {
    align-self: flex-start;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: clamp(10px, 2vw, 18px);
    padding: clamp(18px, 4vw, 28px);
    background: #f7ece2;
    border-radius: clamp(18px, 3vw, 30px);
    box-shadow: 0 28px 64px rgba(30, 31, 34, 0.22);
    text-align: center;
  }

  .intro-hero__content.intro-hero__content--bottom {
    align-items: center;
    position: absolute;
    top: 66%;
    gap: 25px;
  }

  .intro-hero__season-inline {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(6px, 2vw, 12px);
    text-align: center;
  }

  .intro-hero__season {
    font-family: "Gotham", sans-serif;
    font-weight: 400;
    font-size: 35px;
    letter-spacing: 0.18em;
    color: #F7ECE2;
  }

  .intro-hero__discount {
    font-family: "Gotham", sans-serif;
    font-weight: 900;
    font-size: 35px;
    letter-spacing: 0.12em;
    color: #FF473B;
    text-shadow: 0px 2.96296px 10.3704px rgba(0, 0, 0, 0.25);
  }

  .intro-hero__arrow {
    width: 124px;
    height: auto;
    display: block;
  }

  .intro-hero__gradient {
    width: 100%;
    height: 44%;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgb(0 0 0 / 60%) 100%);
    pointer-events: none;
  }
}

@media (max-width: 400px) {
  .intro-empty-section__image {
    object-position: center 173%;
  }

  .intro-hero {
    position: relative;
    width: 100%;
    height: 100%;
  }

  .intro-hero__content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 43px;
    width: 100%;
    text-transform: uppercase;
    text-align: right;
    padding: 0 20px;
    box-sizing: border-box;
  }

  .intro-hero__content--top {
    gap: clamp(20px, 5vw, 40px);
  }

  .intro-hero__sale-ticker {
    width: 100%;
    font-family: "Gotham", sans-serif;
    font-weight: 500;
    font-size: 3.98vw;
    letter-spacing: 0;
    color: #f80007;
    text-align: center;
  }

  .intro-hero__top-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: clamp(16px, 5vw, 36px);
    flex-wrap: wrap;
  }

  .intro-hero__title {
    flex: 1 1 240px;
    margin: 0;
    font-family: "Gotham", sans-serif;
    font-weight: 400;
    font-size: 12.48px;
    line-height: 17.2px;
    margin-left: auto;
  }

  .intro-hero__season-card {
    align-self: flex-start;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: clamp(10px, 2vw, 18px);
    padding: clamp(18px, 4vw, 28px);
    background: #f7ece2;
    border-radius: clamp(18px, 3vw, 30px);
    box-shadow: 0 28px 64px rgba(30, 31, 34, 0.22);
    text-align: center;
  }

  .intro-hero__content.intro-hero__content--bottom {
    align-items: center;
    position: absolute;
    top: 68%;
    gap: 19px;
  }

  .intro-hero__season-inline {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(6px, 2vw, 12px);
    text-align: center;
  }

  .intro-hero__season {
    font-family: "Gotham", sans-serif;
    font-weight: 400;
    font-size: 30px;
    letter-spacing: 0.18em;
    color: #F7ECE2;
  }

  .intro-hero__discount {
    font-family: "Gotham", sans-serif;
    font-weight: 900;
    font-size: 30px;
    letter-spacing: 0.12em;
    color: #FF473B;
    text-shadow: 0px 2.96296px 10.3704px rgba(0, 0, 0, 0.25);
  }

  .intro-hero__arrow {
    width: 79px;
    height: auto;
    display: block;
  }

  .intro-hero__gradient {
    width: 100%;
    height: 44%;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgb(0 0 0 / 60%) 100%);
    pointer-events: none;
  }
}

@media (max-width: 369px) and (min-height: 661px) {
  .intro-empty-section__image {
    object-position: center;
  }
}

@media (max-width: 350px) {
  .intro-empty-section__image {
    object-position: center;
  }

  .intro-hero__sale-ticker {
    font-size: 3.9vw;
  }

  .intro-hero__season,
  .intro-hero__discount {
    font-size: 24px;
  }
}

@media (max-width: 300px) {
  .intro-empty-section__image {
    object-position: center;
  }

  .intro-hero__sale-ticker {
    font-size: 35.56px;
  }
}

@media (max-width: 250px) {
  .intro-empty-section__image {
    object-position: left 100%;
  }

  .intro-hero__sale-ticker {
    font-size: 35.56px;
  }

  .intro-hero__season,
  .intro-hero__discount {
    font-size: 52px;
  }
}

@media (max-width: 200px) {
  .intro-empty-section__image {
    object-position: left 146px;
  }

  .intro-hero__sale-ticker {
    font-size: 35.56px;
    padding-top: 90px;
  }

  .intro-hero__title {
    font-size: 25.78px;
    line-height: 33px;
  }

  .intro-hero__season,
  .intro-hero__discount {
    font-size: 52px;
  }

  .intro-hero__arrow {
    width: 144px;
  }
}






