:root {
  --clr-mainBG: #F8F9FE;
  --clr-mainDark: #050925;
  --clr-mainDarkBlue: #333963;
  --clr-lightBlue: #575E92;
  --clr-accentRedLight: #FFDFD3;
  --clr-accentOrange: #F15A22;
  --clr-accentRedDark: #C03400;
  --clr-mainLight: #F8F9FE;
  --clr-secondaryLight: #E5E7F2;
  --clr-error: #FF0000;
}
.btnAccent {
  background-color: var(--clr-accentOrange);
  color: var(--clr-mainLight);
  height: 60px;
  min-width: 200px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  border-radius: 0;
  border: none;
  transition: all 0.3s ease;
}
.btnAccent--big {
  height: 84px;
  font-size: 16px;
  line-height: 22px;
}
.btnAccent--small {
  height: 48px;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
}
.btnAccent:hover {
  opacity: 70%;
}
.btnAccent:active {
  border: 2px solid var(--clr-accentOrange);
}
body {
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  font-weight: 400;
  background-color: var(--clr-mainBG);
}
.navbar {
  transition: all 0.3s ease;
}
.navbar .navbar-brand {
  font-weight: 700;
  transition: all 0.3s ease;
}
.navbar .navbar-brand:hover {
  transform: scale(1.05);
}
.navbar .nav-link {
  transition: all 0.3s ease;
  position: relative;
}
.navbar .nav-link:hover {
  color: var(--clr-accentOrange) !important;
}
.navbar .nav-link.active {
  color: var(--clr-mainDark) !important;
}
.custom-navbar {
  background-color: var(--clr-mainLight) !important;
  border-bottom: 2px solid var(--clr-secondaryLight);
}
@media (max-width: 768px) {
  .custom-navbar .container {
    padding: 0 1rem;
  }
}
@media (max-width: 480px) {
  .custom-navbar .container {
    padding: 0 0.5rem;
  }
}
.custom-navbar .navbar-brand {
  color: var(--clr-mainDark) !important;
  font-weight: 600;
}
.custom-navbar .navbar-nav .nav-item {
  position: relative;
  margin: 0 15px;
}
@media (max-width: 768px) {
  .custom-navbar .navbar-nav .nav-item {
    margin: 0 5px;
  }
}
@media (max-width: 480px) {
  .custom-navbar .navbar-nav .nav-item {
    margin: 0.25rem 0;
    text-align: center;
  }
}
.custom-navbar .navbar-nav .nav-item .nav-link {
  color: var(--clr-mainDark) !important;
  font-weight: 500;
  font-size: 1rem;
  padding: 0.5rem 0;
  position: relative;
  text-decoration: none;
}
@media (max-width: 768px) {
  .custom-navbar .navbar-nav .nav-item .nav-link {
    font-size: 0.9rem;
    padding: 0.4rem 0;
  }
}
@media (max-width: 480px) {
  .custom-navbar .navbar-nav .nav-item .nav-link {
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    margin: 0.1rem 0;
    color: #fff !important;
    text-align: left;
  }
}
.custom-navbar .navbar-nav .nav-item .nav-link:hover {
  color: var(--clr-accentOrange) !important;
}
.custom-navbar .navbar-nav .nav-item .nav-link.active {
  color: var(--clr-accentOrange) !important;
}
.custom-navbar .navbar-nav .nav-item .nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--clr-accentOrange);
  transition: width 0.3s ease;
}
.custom-navbar .navbar-nav .nav-item .nav-link:hover::after,
.custom-navbar .navbar-nav .nav-item .nav-link.active::after {
  width: 100%;
}
.custom-navbar .navbar-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-left: auto;
}
.custom-navbar .control-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
}
.custom-navbar .control-btn:hover {
  text-decoration: none;
}
.custom-navbar .scan-btn {
  background-color: var(--clr-secondaryLight) !important;
  color: #495057 !important;
}
.custom-navbar .scan-btn:hover {
  background-color: #dee2e6 !important;
  color: #343a40 !important;
}
.custom-navbar .scan-btn .scan-icon {
  position: relative;
  width: 18px;
  height: 18px;
}
.custom-navbar .scan-btn .scan-icon .qr-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  width: 100%;
  height: 100%;
}
.custom-navbar .scan-btn .scan-icon .qr-grid .qr-square {
  background-color: #fa8072;
  border-radius: 1px;
}
.custom-navbar .scan-btn .scan-icon .qr-corner {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 5px;
  height: 5px;
  border: 1.5px solid #fa8072;
  border-top: none;
  border-right: none;
}
.custom-navbar .combined-controls {
  display: flex;
  align-items: center;
}
.custom-navbar .prize-shop-btn {
  background-color: var(--clr-accentOrange) !important;
  color: white !important;
  border-radius: 8px 0 0 8px;
  margin-right: -1px;
}
.custom-navbar .prize-shop-btn:hover {
  background-color: #e57373 !important;
  color: white !important;
}
.custom-navbar .prize-shop-btn i {
  color: white !important;
}
.custom-navbar .currency-btn {
  background-color: var(--clr-mainDarkBlue) !important;
  color: white !important;
  border-radius: 0 8px 8px 0;
  gap: 0.25rem;
}
.custom-navbar .currency-btn:hover {
  background-color: #2d3748 !important;
  color: white !important;
}
.custom-navbar .currency-btn .currency-amount {
  font-weight: 600;
}
.custom-navbar .currency-btn .currency-symbol {
  font-weight: 600;
  font-size: 0.9em;
}
.custom-navbar .currency-btn i {
  color: white !important;
  font-size: 0.8em;
}
.custom-navbar .user-btn {
  background-color: transparent !important;
  color: var(--clr-mainDark) !important;
  border: 2px solid var(--clr-accentOrange);
  border-radius: 8px;
}
.custom-navbar .user-btn:hover {
  background-color: var(--clr-accentOrange) !important;
  color: white !important;
}
.custom-navbar .user-btn i {
  color: inherit !important;
}
.custom-navbar .login-btn {
  color: var(--clr-mainDark) !important;
  border: 2px solid var(--clr-accentOrange);
  border-radius: 8px;
}
.custom-navbar .login-btn:hover {
  background-color: var(--clr-accentOrange);
  color: white !important;
  text-decoration: none;
}
.custom-navbar .navbar-toggler {
  border-color: var(--clr-accentOrange);
}
.custom-navbar .navbar-toggler .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(250, 128, 114, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.custom-navbar .dropdown-menu {
  background-color: var(--clr-mainDarkBlue);
  color: var(--clr-mainLight);
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(250, 128, 114, 0.15);
  margin-top: -1px !important;
  width: 250px !important;
}
.custom-navbar .dropdown-menu .dropdown-item {
  color: var(--clr-mainLight);
  transition: all 0.3s ease;
}
.custom-navbar .dropdown-menu .dropdown-item:hover {
  background-color: inherit;
  color: var(--clr-accentOrange);
}
.brand-navbar {
  background-color: var(--brand-navbar-bg, #2C1810);
  border-radius: 12px;
  margin: 10px auto;
  max-width: 1340px;
  box-shadow: 0 4px 20px rgba(44, 24, 16, 0.3);
  position: fixed;
  top: 0px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  width: calc(100% - 40px);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.brand-navbar.navbar-scrolled {
  top: 10px;
  box-shadow: 0 8px 32px rgba(44, 24, 16, 0.4);
}
.brand-navbar.navbar-hidden {
  transform: translateX(-50%) translateY(-100%);
  opacity: 0;
}
.brand-navbar .brand-navbar__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  gap: 40px;
}
.brand-navbar .brand-navbar__brand {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.brand-navbar .brand-navbar__brand .brand-navbar__back-btn {
  width: 36px;
  height: 36px;
  background-color: transparent;
  border: 1px solid var(--brand-navbar-text, #A78669);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-navbar-text, #A78669);
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.brand-navbar .brand-navbar__brand .brand-navbar__back-btn:hover {
  background-color: var(--brand-navbar-text, #A78669);
  color: var(--brand-navbar-bg, #2C1810);
  transform: translateX(-2px);
}
.brand-navbar .brand-navbar__brand .brand-navbar__brand-text {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
}
.brand-navbar .brand-navbar__brand .brand-navbar__brand-text .brand-navbar__brand-logo {
  width: auto;
  height: 38px;
}
.brand-navbar .brand-navbar__brand .brand-navbar__brand-text .brand-navbar__brand-name {
  color: var(--brand-navbar-text, #F5F5F5);
  font-size: 28px;
  font-weight: 400;
  font-family: 'Playfair Display', serif;
  line-height: 1;
}
.brand-navbar .brand-navbar__brand .brand-navbar__brand-text .brand-navbar__company {
  color: var(--brand-navbar-text, #F5F5F5);
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
}
.brand-navbar .brand-navbar__nav {
  display: flex;
  align-items: center;
  gap: 32px;
  flex: 1;
  justify-content: center;
}
.brand-navbar .brand-navbar__nav .brand-navbar__nav-link {
  color: var(--brand-navbar-text, #F5F5F5);
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  position: relative;
  padding: 8px 0;
  transition: all 0.3s ease;
}
.brand-navbar .brand-navbar__nav .brand-navbar__nav-link:hover {
  color: #FFB366;
}
.brand-navbar .brand-navbar__nav .brand-navbar__nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #FFB366;
  transition: width 0.3s ease;
}
.brand-navbar .brand-navbar__nav .brand-navbar__nav-link:hover::after {
  width: 100%;
}
.brand-navbar .navbar-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-left: auto;
}
.brand-navbar .control-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
}
.brand-navbar .control-btn:hover {
  text-decoration: none;
}
.brand-navbar .scan-btn {
  background-color: var(--clr-secondaryLight) !important;
  color: #495057 !important;
}
.brand-navbar .scan-btn:hover {
  background-color: #dee2e6 !important;
  color: #343a40 !important;
}
.brand-navbar .scan-btn .scan-icon {
  position: relative;
  width: 18px;
  height: 18px;
}
.brand-navbar .scan-btn .scan-icon .qr-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  width: 100%;
  height: 100%;
}
.brand-navbar .scan-btn .scan-icon .qr-grid .qr-square {
  background-color: #fa8072;
  border-radius: 1px;
}
.brand-navbar .scan-btn .scan-icon .qr-corner {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 5px;
  height: 5px;
  border: 1.5px solid #fa8072;
  border-top: none;
  border-right: none;
}
.brand-navbar .combined-controls {
  display: flex;
  align-items: center;
}
.brand-navbar .prize-shop-btn {
  background-color: var(--clr-accentOrange) !important;
  color: white !important;
  border-radius: 8px 0 0 8px;
  margin-right: -1px;
}
.brand-navbar .prize-shop-btn:hover {
  background-color: #e57373 !important;
  color: white !important;
}
.brand-navbar .prize-shop-btn i {
  color: white !important;
}
.brand-navbar .currency-btn {
  background-color: var(--clr-mainDarkBlue) !important;
  color: white !important;
  border-radius: 0 8px 8px 0;
  gap: 0.25rem;
}
.brand-navbar .currency-btn:hover {
  background-color: #2d3748 !important;
  color: white !important;
}
.brand-navbar .currency-btn .currency-amount {
  font-weight: 600;
}
.brand-navbar .currency-btn .currency-symbol {
  font-weight: 600;
  font-size: 0.9em;
}
.brand-navbar .currency-btn i {
  color: white !important;
  font-size: 0.8em;
}
.brand-navbar .user-btn {
  background-color: transparent !important;
  color: var(--clr-mainDark) !important;
  border: 2px solid var(--clr-accentOrange);
  border-radius: 8px;
}
.brand-navbar .user-btn:hover {
  background-color: var(--clr-accentOrange) !important;
  color: white !important;
}
.brand-navbar .user-btn i {
  color: inherit !important;
}
.brand-navbar .login-btn {
  color: white !important;
  background-color: var(--clr-accentOrange);
  border-radius: 8px;
}
.brand-navbar .login-btn:hover {
  outline: 2px solid var(--clr-accentOrange);
  text-decoration: none;
}
.brand-navbar .navbar-toggler {
  border-color: var(--clr-accentOrange);
}
.brand-navbar .navbar-toggler .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(250, 128, 114, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.brand-navbar .dropdown-menu {
  background-color: var(--clr-mainDarkBlue);
  color: var(--clr-mainLight);
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(250, 128, 114, 0.15);
  margin-top: -1px !important;
  width: 250px !important;
}
.brand-navbar .dropdown-menu .dropdown-item {
  color: var(--clr-mainLight);
  transition: all 0.3s ease;
}
.brand-navbar .dropdown-menu .dropdown-item:hover {
  background-color: inherit;
  color: var(--clr-accentOrange);
}
.brand-navbar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: inherit;
  border-radius: inherit;
  z-index: -1;
}
@media (max-width: 992px) {
  .brand-navbar {
    width: calc(100% - 20px);
    border-radius: 8px;
  }
  .brand-navbar .brand-navbar__container {
    padding: 12px 16px;
    gap: 20px;
  }
  .brand-navbar .brand-navbar__nav {
    gap: 20px;
  }
  .brand-navbar .brand-navbar__nav .brand-navbar__nav-link {
    font-size: 14px;
  }
  .brand-navbar .brand-navbar__brand .brand-navbar__brand-text .brand-navbar__brand-name {
    font-size: 24px;
  }
}
@media (max-width: 768px) {
  .brand-navbar {
    width: calc(100% - 16px);
  }
  .brand-navbar .brand-navbar__container {
    flex-direction: column;
    gap: 16px;
    padding: 16px;
  }
  .brand-navbar .brand-navbar__nav {
    order: 2;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }
  .brand-navbar .brand-navbar__controls {
    order: 3;
    justify-content: center;
  }
  .brand-navbar .brand-navbar__brand {
    order: 1;
    justify-content: center;
  }
}
@media (max-width: 480px) {
  .brand-navbar {
    width: calc(100% - 12px);
  }
  .brand-navbar .brand-navbar__nav .brand-navbar__nav-link {
    font-size: 12px;
  }
  .brand-navbar .brand-navbar__brand .brand-navbar__brand-text .brand-navbar__brand-name {
    font-size: 20px;
  }
  .brand-navbar .brand-navbar__brand .brand-navbar__brand-text .brand-navbar__company {
    font-size: 12px;
  }
}
.brand-navbar-spacer {
  height: 120px;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .brand-navbar-spacer {
    height: 160px;
  }
}
@media (max-width: 480px) {
  .brand-navbar-spacer {
    height: 180px;
  }
}
.hero-section {
  height: 760px;
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: center;
  gap: 5px;
  padding: 0 10px;
}
.hero-section .hero-image {
  transition: all 0.3s ease;
}
.hero-section .hero-image:hover {
  transform: scale(1.1);
}
.hero-section .btn {
  transition: all 0.3s ease;
}
.hero-section .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}
.hero-section .hero--main {
  width: 65vw;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero-section .hero--main-img {
  display: block;
  content: '';
  width: 100%;
  height: 100%;
  background: transparent url('/images/main/main-hero.jpg') no-repeat center center;
  background-size: cover;
  border-radius: 16px 0 0 0;
}
.hero-section .hero--main-text {
  width: 100%;
  height: 84px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  line-height: 16px;
  font-weight: 700;
  line-height: 28px;
  background-color: var(--clr-accentOrange);
  color: var(--clr-mainLight);
  border-radius: 0 0 0 16px;
}
.hero-section .hero--gallery {
  width: 35vw;
  height: 100%;
  margin: 0 auto;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero-section .hero--gallery-slider {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 0 16px 0 0;
}
.hero-section .hero--gallery-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
  background: transparent url('/images/main/main-slider.jpg') no-repeat center center;
  background-size: cover;
}
.hero-section .hero--gallery-slide.active {
  opacity: 1;
}
.hero-section .hero--gallery-controls {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  padding: 0 20px;
  position: absolute;
  bottom: 86px;
  left: 0;
}
.hero-section .hero--gallery-controls .control--nav {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  position: absolute;
  left: 0;
  bottom: 16px;
  width: 100%;
  height: 60px;
  padding: 0 10px;
}
.hero-section .hero--gallery-nav {
  width: 60px;
  height: 60px;
  background: transparent;
  border: none;
  border-radius: 16px;
  color: var(--clr-mainLight);
  border: 1px solid var(--clr-mainLight);
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-section .hero--gallery-nav:hover {
  background: #8B4513;
  transform: scale(1.1);
}
.hero-section .hero--gallery-pagination {
  display: flex;
  width: 100%;
  gap: 10px;
}
.hero-section .hero--gallery-text {
  width: 100%;
  height: 84px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  line-height: 16px;
  font-weight: 700;
  line-height: 28px;
  background-color: var(--clr-accentOrange);
  color: var(--clr-mainLight);
  border-radius: 0 0 16px 0 ;
}
.hero-section .pagination-dot {
  width: 100%;
  height: 4px;
  background: #654321;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.hero-section .pagination-dot.active {
  background: white;
}
.card {
  transition: all 0.3s ease;
  border: none;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}
.card .card-body {
  transition: all 0.3s ease;
}
.service-item {
  transition: all 0.3s ease;
}
.service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
}
.service-item i {
  transition: all 0.3s ease;
}
.service-item:hover i {
  transform: scale(1.2);
}
.form-control {
  transition: all 0.3s ease;
  border: 2px solid transparent;
}
.form-control:focus {
  border-color: #0d6efd;
  box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}
.btn {
  transition: all 0.3s ease;
}
.btn:hover {
  transform: translateY(-1px);
}
.btn:active {
  transform: translateY(0);
}
.social-links a {
  transition: all 0.3s ease;
  display: inline-block;
}
.social-links a:hover {
  transform: scale(1.2);
  color: #0d6efd !important;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}
@media (max-width: 768px) {
  .hero-section {
    min-height: 60vh;
    text-align: center;
    flex-direction: column;
    height: 100%;
  }
  .hero-section .hero-image {
    margin-top: 2rem;
  }
  .hero-section .hero--main {
    width: 100%;
    border-radius: 16px;
    height: 580px;
  }
  .hero-section .hero--main .hero--main-img {
    border-radius: 16px 16px 0 0;
  }
  .hero-section .hero--main .hero--main-text {
    border-radius: 0 0 16px 16px;
  }
  .hero-section .hero--gallery {
    width: 100%;
    border-radius: 16px !important;
    height: 500px;
  }
  .hero-section .hero--gallery .hero--gallery-slide {
    border-radius: 16px 16px 0 0;
  }
  .hero-section .hero--gallery .hero--gallery-text {
    border-radius: 0 0 16px 16px;
  }
  .navbar-nav {
    text-align: center;
  }
  .social-links {
    text-align: center !important;
    margin-bottom: 1rem;
  }
  .custom-navbar .navbar-controls {
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
    margin-top: 1rem;
    padding: 0 1rem;
  }
  .custom-navbar .combined-controls {
    width: 100%;
    flex-direction: column;
    gap: 0.5rem;
  }
  .custom-navbar .control-btn {
    width: 100%;
    justify-content: center;
    margin: 0;
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
  }
  .custom-navbar .control-btn span {
    display: inline;
  }
  .custom-navbar .prize-shop-btn {
    border-radius: 8px;
    margin-right: 0;
    margin-bottom: 0;
  }
  .custom-navbar .currency-btn {
    border-radius: 8px;
  }
  .custom-navbar .login-btn {
    font-size: 0.9rem;
  }
  .hero--gallery-slider {
    height: 400px;
  }
  .hero--gallery-content {
    padding: 20px;
  }
  .hero--gallery-title {
    font-size: 24px;
  }
  .hero--gallery-subtitle {
    font-size: 14px;
  }
  .hero--gallery-products {
    gap: 10px;
  }
  .hero--gallery-controls {
    padding: 0 10px;
  }
  .hero--gallery-nav {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }
  .product-pack {
    width: 80px;
    height: 120px;
    padding: 10px 5px;
  }
  .pack-label {
    font-size: 8px;
  }
  .pack-brand {
    font-size: 12px;
  }
  .pack-subtitle {
    font-size: 6px;
  }
  .pack-warning {
    font-size: 5px;
  }
  .pagination-dot {
    width: 20px;
    height: 3px;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  .custom-navbar .scan-btn {
    background-color: transparent !important;
    color: #fff !important;
  }
  .custom-navbar .scan-btn span {
    display: block !important;
  }
}
@media (max-width: 768px) and (max-width: 360px) {
  .custom-navbar .scan-btn span {
    display: none;
  }
}
@media (max-width: 768px) and (max-width: 480px) {
  .custom-navbar .prize-shop-btn span {
    font-size: 0.8rem;
  }
}
@media (max-width: 768px) and (max-width: 480px) {
  .custom-navbar .login-btn {
    font-size: 0.8rem;
    color: #fff !important;
  }
}
@media (max-width: 768px) and (max-width: 480px) {
  .custom-navbar .navbar-controls {
    padding: 0 0.5rem;
    margin-top: 0.5rem;
  }
  .custom-navbar .control-btn {
    padding: 0.6rem 0.75rem;
    font-size: 0.8rem;
  }
}
@media (max-width: 768px) and (max-width: 360px) {
  .custom-navbar .navbar-controls {
    padding: 0 0.25rem;
  }
  .custom-navbar .control-btn {
    padding: 0.5rem;
    font-size: 0.75rem;
  }
  .custom-navbar .combined-controls {
    gap: 0.25rem;
  }
}
.min-vh-75 {
  min-height: 75vh;
}
.bg-primary {
  background-color: #0d6efd !important;
}
.bg-success {
  background-color: #198754 !important;
}
.bg-warning {
  background-color: #ffc107 !important;
}
.text-primary {
  color: #0d6efd !important;
}
html {
  scroll-behavior: smooth;
}
.navbar-toggler {
  border: none;
}
.navbar-toggler:focus {
  box-shadow: none;
}
@media (max-width: 576px) {
  .display-4 {
    font-size: 2.5rem;
  }
  .display-5 {
    font-size: 2rem;
  }
  .btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }
}
#brands {
  padding: 0 10px;
}
#brands .brand__card {
  width: 100%;
  height: 700px;
  background: transparent url('/images/brands/bohem/cardBg.jpg') no-repeat center center;
  border-radius: 16px;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 400px;
  margin: auto;
}
#brands .brand__card .brand__logo {
  width: 160px;
  height: auto;
  margin-top: 50px;
}
#brands .brand__card .brand__descr {
  font-size: 14px;
  width: 250px;
  text-align: center;
  color: #FFEFD5;
  margin-top: 15px;
}
#brands .brand__card .brand__btn {
  width: 100%;
  max-width: 250px;
  height: 50px;
  background-color: var(--clr-accentOrange);
  border-radius: 16px;
  color: var(--clr-mainLight);
  text-align: center;
  font-size: 14px;
  line-height: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  margin-top: auto;
  margin-bottom: auto transition: all 0.3s ease;;
}
#brands .brand__card .brand__btn:hover {
  transform: scale(1.1);
}
#brands .brand__card .brand__pack {
  width: 100%;
  min-height: 300px;
  max-height: 380px;
  object-fit: cover;
  margin-top: 20px;
  margin-bottom: 0;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
#brands .brand__card .brand__pack.animate {
  opacity: 1;
  transform: translateY(0);
}
#brands .brand__card h2 {
  color: var(--clr-mainLight);
  font-size: 24px;
  font-weight: 700;
}
@media (max-width: 768px) {
  #brands .row {
    gap: 10px;
  }
  #brands .brand__descr {
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;
    text-align: center;
    color: #0B0A08;
  }
  #brands .brand__btn {
    margin-top: 1rem;
    margin-bottom: auto;
  }
}
.brand__pack.animate {
  opacity: 1;
  transform: translateY(0);
}
#promo {
  width: 100%;
  height: auto;
  min-height: 200px;
  background: #4B2B1D;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 120px 0;
  box-sizing: content-box;
  color: #FFFFFF;
}
#promo .promo-slider {
  position: relative;
  width: 100%;
  max-width: 1340px;
}
#promo .promo-slider .promo-banner {
  max-width: 1220px;
  width: 100%;
  position: relative;
  padding: 40px;
  overflow: hidden;
  display: none;
  opacity: 0;
  margin: auto;
  transform: translateX(20px);
  transition: all 0.5s ease-in-out;
}
#promo .promo-slider .promo-banner.active {
  display: block;
  opacity: 1;
  transform: translateX(0);
}
#promo .promo-slider .promo-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}
#promo .promo-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 2;
}
@media (max-width: 768px) {
  #promo .promo-content {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
}
#promo .promo-text {
  flex: 1;
  min-width: 0;
  max-width: 520px;
}
#promo .promo-text .promo-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}
@media (max-width: 768px) {
  #promo .promo-text .promo-title {
    font-size: 2rem;
  }
}
#promo .promo-text .promo-description {
  font-size: 24px;
  line-height: 1.3;
  margin: 0;
}
#promo .promo-image {
  flex-shrink: 0;
}
#promo .promo-image .promo-img {
  width: 200px;
  height: 150px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  background: #dee2e6;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6c757d;
  font-size: 3rem;
}
#promo .promo-image .promo-img::before {
  content: '🏔️';
  font-size: 4rem;
}
#promo .promo-action {
  flex-shrink: 0;
}
#promo .promo-action .promo-btn {
  background: var(--clr-secondaryLight);
  color: var(--clr-mainDark);
  border: none;
  border-radius: 12px;
  padding: 15px 30px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(253, 126, 20, 0.3);
  width: 250px;
}
#promo .promo-action .promo-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(253, 126, 20, 0.4);
  background: linear-gradient(135deg, #e55a00 0%, #cc4a00 100%);
  color: white;
}
#promo .promo-action .promo-btn:active {
  transform: translateY(0);
}
#promo .promo-navigation {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  pointer-events: none;
  z-index: 3;
}
#promo .promo-navigation .promo-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border: 2px solid var(--clr-accentRedLight);
  border-radius: 12px;
  background: transparent;
  color: var(--clr-accentRedLight);
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
#promo .promo-navigation .promo-nav:hover {
  background: #495057;
  color: white;
  border-color: #495057;
  transform: translateY(-50%) scale(1.05);
}
#promo .promo-navigation .promo-nav:active {
  transform: translateY(-50%) scale(0.95);
}
#promo .promo-navigation .promo-nav.promo-nav-prev {
  left: 20px;
}
#promo .promo-navigation .promo-nav.promo-nav-next {
  right: 20px;
}
#promo .promo-navigation .promo-pagination {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 3;
}
#promo .promo-navigation .promo-pagination .promo-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(108, 117, 125, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}
#promo .promo-navigation .promo-pagination .promo-dot:hover {
  background: rgba(108, 117, 125, 0.6);
  transform: scale(1.2);
}
#promo .promo-navigation .promo-pagination .promo-dot.active {
  background: #fd7e14;
  transform: scale(1.2);
}
@media (max-width: 768px) {
  #promo {
    height: auto;
    min-height: 550px;
  }
}
#news {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  width: 100%;
  max-width: 1340px;
  margin: auto;
  /* Планшеты: две колонки */
}
#news .news-title {
  font-size: 40px;
  line-height: 1.2;
  font-weight: 700;
  color: #333963;
}
#news .news-subtitle {
  width: 450px;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 400;
  color: #333963;
}
#news .news__block {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: start;
  width: 100%;
  margin-top: 30px;
  gap: 20px;
}
#news .news__block .news__item {
  width: 25%;
  max-width: 350px;
  height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 16px;
  overflow: hidden;
  background-color: #ffffff;
}
#news .news__block .news__item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 16px 16px 0 0;
}
#news .news__block .news__item .news__item-content {
  padding: 20px;
  color: #333963;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
#news .news__block .news__item .news__item-content h5 {
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
}
#news .news__block .news__item .news__item-content p {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
}
#news .news__block .news__item .news__item-content a {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: #6b5a2c;
  margin-top: auto;
  text-decoration: none;
}
#news .news__block .news__item .news__item-content a:hover {
  color: #946e1e;
}
#news .news__btn {
  width: 100%;
  height: 56px;
  color: var(--clr-mainDark);
  background-color: var(--clr-secondaryLight);
  border-radius: 16px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
  margin-top: 20px;
  transition: all 0.3s ease;
}
@media (max-width: 1024px) and (min-width: 769px) {
  #news .news__block {
    flex-wrap: wrap;
    gap: 16px;
  }
  #news .news__item {
    width: calc(50% - 8px);
    max-width: none;
    height: auto;
  }
  #news .news__item img {
    height: 200px;
    object-fit: cover;
  }
}
@media (max-width: 768px) {
  #news .news-title {
    font-size: 28px;
  }
  #news .news-subtitle {
    width: 100%;
    font-size: 16px;
  }
  #news .news__block {
    flex-direction: column;
    gap: 16px;
  }
  #news .news__item {
    width: 100%;
    max-width: none;
    height: auto;
  }
  #news .news__item img {
    height: auto;
  }
}
@media (max-width: 768px) {
  #news .news__block {
    align-items: center;
  }
  #news .news__item {
    width: 100% !important;
  }
  #news .news-title,
  #news .news-subtitle {
    max-width: 350px;
    margin: auto;
  }
}
#more {
  width: 100%;
  max-width: 1340px;
  margin: 160px auto;
  height: 220px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: content-box;
}
#more .more-banner {
  width: 100%;
  position: relative;
  padding: 40px;
  overflow: hidden;
  margin: auto;
}
#more .more-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}
#more .more-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 2;
}
@media (max-width: 768px) {
  #more .more-content {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
}
#more .more-text {
  flex: 1;
  min-width: 0;
  max-width: 520px;
}
#more .more-text .more-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--clr-mainDark);
  margin-bottom: 20px;
  line-height: 1.2;
}
@media (max-width: 768px) {
  #more .more-text .more-title {
    font-size: 2rem;
  }
}
#more .more-text .more-description {
  font-size: 24px;
  color: var(--clr-mainDark);
  line-height: 1.3;
  margin: 0;
}
#more .more-image {
  flex-shrink: 0;
}
#more .more-image .more-img {
  width: 200px;
  height: 150px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  background: #dee2e6;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6c757d;
  font-size: 3rem;
}
#more .more-image .more-img::before {
  content: '🏔️';
  font-size: 4rem;
}
#more .more-action {
  flex-shrink: 0;
}
#more .more-action .more-btn {
  background: linear-gradient(135deg, #fd7e14 0%, #e55a00 100%);
  border: none;
  border-radius: 12px;
  padding: 15px 30px;
  font-size: 1.1rem;
  font-weight: 600;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(253, 126, 20, 0.3);
  width: 250px;
}
#more .more-action .more-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(253, 126, 20, 0.4);
  background: linear-gradient(135deg, #e55a00 0%, #cc4a00 100%);
  color: white;
}
#more .more-action .more-btn:active {
  transform: translateY(0);
}
#about {
  width: 100%;
  min-height: 1300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  background: linear-gradient(180deg, #F8F9FE 80%, #050925 100%);
}
#about .about__slogan {
  width: 100%;
  max-width: 1300px;
  height: auto;
  object-fit: contain;
  margin-bottom: auto;
}
#about .about__slogan.animate {
  opacity: 1;
  transform: translateY(0);
}
#about .about__wrapper {
  background: transparent url('/images/main/aboutBG.png') no-repeat center center;
  background-size: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
#about .about__content {
  width: 100%;
  height: 100%;
  max-width: 800px;
  max-height: 715px;
  height: auto;
  object-fit: contain;
  margin-bottom: auto;
  background-color: #050925;
  border-radius: 16px 16px 0 0;
  color: #FFFFFF;
  padding: 80px;
  margin-top: auto;
  margin-bottom: 0;
  z-index: 1;
  text-align: center;
}
#about .about__content .about__logo {
  width: 100%;
  max-height: 160px;
  height: auto;
  object-fit: contain;
  margin-bottom: 50px;
}
#about .about__content .about__title {
  font-size: 28px;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 20px;
}
#about .about__content .about__description {
  font-size: 18px;
  line-height: 1.5;
  font-weight: 400;
  margin-bottom: 20px;
}
#now {
  background-color: #050925;
  width: 100%;
  min-height: 600px;
  color: #FFFFFF;
  padding: 100px;
}
#now .now__top {
  width: 100%;
  height: 100%;
  max-width: 1340px;
  margin: auto;
  background: transparent url('/images/main/nowBG.png') no-repeat center center;
  background-size: cover;
  border: 1px solid rgba(248, 249, 254, 0.25);
  border-radius: 16px 16px 0 0;
}
#now .now__top .text {
  width: 65%;
  padding: 56px;
}
#now .now__top .text .main {
  font-size: 32px;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 25px;
}
#now .now__top .text .sub {
  font-size: 16px;
  line-height: 1.2;
  font-weight: 400;
}
#now .now__bottom {
  width: 100%;
  height: 100%;
  max-width: 1340px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}
#now .now__bottom .item {
  flex: 1;
  align-items: start;
  flex-basis: 22%;
  height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: start;
  border: 1px solid rgba(248, 249, 254, 0.25);
  padding: 20px;
  color: #F8F9FF;
}
#now .now__bottom .item .item__year {
  font-size: 36px;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 20px;
  border-bottom: 2px solid #AD3341;
}
#now .now__bottom .item .item__text {
  font-size: 18px;
  line-height: 1.2;
  font-weight: 400;
}
#now .now__bottom .item--bl {
  border-radius: 0 0 0 16px;
}
#now .now__bottom .item--br {
  border-radius: 0 0 16px 0;
}
footer {
  background-color: #FFFFFF;
  width: 100%;
}
footer .footer__top-bar {
  height: 4px;
  background-color: #050925;
  width: 100%;
}
footer .footer__content {
  padding: 60px 0;
}
footer .footer__main {
  display: flex;
  align-items: flex-start;
  gap: 60px;
  max-width: 1340px;
  margin: 0 auto;
}
footer .footer__logo {
  flex-shrink: 0;
}
footer .footer__logo .footer__logo-img {
  height: 60px;
  width: auto;
}
footer .footer__nav {
  display: flex;
  gap: 80px;
  flex: 1;
}
footer .footer__nav .footer__nav-column .footer__nav-title {
  font-size: 18px;
  font-weight: 700;
  color: #050925;
  margin-bottom: 20px;
  line-height: 1.2;
}
footer .footer__nav .footer__nav-column .footer__nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
footer .footer__nav .footer__nav-column .footer__nav-list li {
  margin-bottom: 12px;
}
footer .footer__nav .footer__nav-column .footer__nav-list li .footer__nav-link {
  color: #050925;
  text-decoration: underline;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  transition: color 0.3s ease;
}
footer .footer__nav .footer__nav-column .footer__nav-list li .footer__nav-link:hover {
  color: #AD3341;
}
footer .footer__contacts {
  flex-shrink: 0;
  max-width: 400px;
}
footer .footer__contacts .footer__contact-item {
  margin-bottom: 20px;
}
footer .footer__contacts .footer__contact-item strong {
  color: var(--clr-mainDark);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.2;
  display: block;
  margin-bottom: 0;
}
footer .footer__contacts .footer__contact-item .footer__contact-link {
  color: #050925;
  text-decoration: underline;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  transition: color 0.3s ease;
}
footer .footer__contacts .footer__contact-item .footer__contact-link:hover {
  color: #AD3341;
}
footer .footer__contacts .footer__contact-item .footer__contact-text {
  color: var(--clr-mainDark);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: underline;
}
footer .footer__contacts .footer__button {
  background-color: #FF6B35;
  color: #FFFFFF;
  border: none;
  border-radius: 16px;
  padding: 16px 32px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-top: 20px;
  width: 100%;
  height: 60px;
}
footer .footer__contacts .footer__button:hover {
  background-color: #E55A2B;
}
footer .footer__bottom-bar {
  height: 2px;
  background-color: #E5E5E5;
  width: 100%;
}
footer .footer__warning {
  background-color: #ECEDF5;
  border-top: 1px solid #DADDF2;
  border-bottom: 1px solid #DADDF2;
  position: relative;
}
footer .footer__warning .footer__warning-content {
  max-width: 1340px;
  margin: 0 auto;
  padding: 20px 0;
  text-align: center;
}
footer .footer__warning .footer__warning-content .footer__warning-text {
  color: var(--clr-mainDark);
  font-size: 56px;
  font-weight: 300;
  letter-spacing: 25%;
}
footer .footer__copyright {
  background-color: var(--clr-mainLight);
}
footer .footer__copyright .footer__copyright-content {
  max-width: 1340px;
  margin: 0 auto;
  padding: 30px 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 30px;
}
footer .footer__copyright .footer__age-restriction {
  flex-shrink: 0;
}
footer .footer__copyright .footer__age-restriction .footer__age-circle {
  width: 60px;
  height: 60px;
  border: 1px solid #050925;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
}
footer .footer__copyright .footer__age-restriction .footer__age-circle .footer__age-number {
  color: #050925;
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
}
footer .footer__copyright .footer__age-restriction .footer__age-circle .footer__age-plus {
  color: #050925;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  margin-left: 2px;
}
footer .footer__copyright .footer__legal-info .footer__legal-text {
  margin-bottom: 20px;
}
footer .footer__copyright .footer__legal-info .footer__legal-text p {
  color: #050925;
  font-size: 14px;
  font-weight: 300;
  line-height: 1;
  margin-bottom: 8px;
}
footer .footer__copyright .footer__legal-info .footer__legal-text p strong {
  font-weight: 300;
}
footer .footer__copyright .footer__legal-info .footer__legal-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
footer .footer__copyright .footer__legal-info .footer__legal-links .footer__legal-link {
  color: #050925;
  text-decoration: underline;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  transition: color 0.3s ease;
}
footer .footer__copyright .footer__legal-info .footer__legal-links .footer__legal-link:hover {
  color: #AD3341;
}
@media (max-width: 1200px) {
  footer .footer__main {
    gap: 40px;
  }
  footer .footer__nav {
    gap: 50px;
  }
}
@media (max-width: 992px) {
  footer .footer__main {
    flex-direction: column;
    gap: 40px;
  }
  footer .footer__nav {
    gap: 40px;
    flex-wrap: wrap;
  }
  footer .footer__contacts {
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  footer .footer__content {
    padding: 40px 0;
  }
  footer .footer__nav {
    flex-direction: column;
    gap: 30px;
  }
  footer .footer__contacts .footer__contact-item {
    margin-bottom: 15px;
  }
  footer .footer__copyright .footer__copyright-content {
    flex-direction: column;
    gap: 20px;
    padding: 20px 0;
  }
  footer .footer__copyright .footer__age-restriction {
    align-self: center;
  }
  footer .footer__copyright .footer__legal-info .footer__legal-links {
    flex-direction: column;
    gap: 10px;
  }
}
.brand-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.brand-main section {
  max-width: 100% !important;
  min-height: 200px !important;
  margin: 0 !important;
  padding: 0 !important;
}
.brand-main .brandhero-section {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: center;
  gap: 5px;
  padding: 0 10px;
  background-size: cover;
  background-position: center top;
}
.brand-main .brandhero-section .brandhero-image {
  transition: all 0.3s ease;
}
.brand-main .brandhero-section .brandhero-image:hover {
  transform: scale(1.1);
}
.brand-main .brandhero-section .btn {
  transition: all 0.3s ease;
}
.brand-main .brandhero-section .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}
.brand-main .brandhero-section .brandhero--main {
  width: 65vw;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.brand-main .brandhero-section .brandhero--main-img {
  display: block;
  content: '';
  width: 100%;
  height: 100%;
  background: transparent url('/images/main/main-hero.jpg') no-repeat center center;
  background-size: cover;
  border-radius: 16px 0 0 0;
}
.brand-main .brandhero-section .brandhero--main-text {
  width: 100%;
  height: 84px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  line-height: 16px;
  font-weight: 700;
  line-height: 28px;
  background-color: var(--clr-accentOrange);
  color: var(--clr-mainLight);
  border-radius: 0 0 0 16px;
}
.brand-main #about {
  width: 100%;
  min-height: 200px;
  padding: 100px 0 !important;
  background: linear-gradient(180deg, #0B0A08 0%, #4C2B1D 100%);
}
.brand-main #about .brandabout__slogan {
  width: 780px;
  font-weight: 700;
  font-size: 32px;
  line-height: 38px;
  text-align: center;
}
.brand-main #about .brandabout__tabs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 100px 0;
}
.brand-main #about .brandabout__tabs .brandabout__item {
  width: 330px;
  height: 330px;
  font-size: 20px;
  line-height: 24px;
  background-color: #F7ECCE;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  border-radius: 16px;
  padding: 30px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
}
.brand-main #about .brandabout__tabs .brandabout__item:hover {
  outline: 2px solid var(--clr-accentOrange);
}
.brand-main #about .brandabout__tabs .brandabout__item .brandabout__item-title {
  font-size: 20px;
  line-height: 24px;
  font-weight: 700;
}
.brand-main #about .brandabout__tabs .brandabout__item .brandabout__item-text {
  font-size: 20px;
  line-height: 26px;
  font-weight: 400;
  margin-top: auto;
  width: 220px;
}
.brand-main #about .brandabout__descr {
  width: 780px;
  font-weight: 400;
  font-size: 24px;
  line-height: 32px;
  text-align: center;
}
.brand-main #promo {
  width: 100%;
  height: auto;
  min-height: 200px;
  background: #4B2B1D;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.brand-main #promo .brandpromo__container {
  width: 100%;
  max-width: 1340px !important;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 0 24px;
}
.brand-main #promo .brandpromo__item {
  flex: 1 1 30%;
  border: 1px solid #ECD08D;
  border-radius: 16px;
  height: 480px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 40px;
}
.brand-main #promo .brandpromo__item--wide {
  flex: 1 1 100%;
  height: 580px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand-main #promo .brandpromo__item-title {
  font-size: 34px;
  line-height: 1.2;
  font-weight: 700;
}
.brand-main #promo .brandpromo__item-descr {
  font-size: 20px;
  line-height: 1.2;
}
.brand-main #lines {
  width: 100%;
  min-height: 800px;
  height: auto;
}
.brand-main #lines .wrapper {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 190px 0;
}
.brand-main #lines .info {
  width: 380px;
  color: #F7ECCE;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-right: 50px;
}
.brand-main #lines .title {
  font-size: 40px;
  line-height: 1.2;
  font-weight: 700;
  background: var(--var-bg);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.brand-main #lines .body {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
}
.brand-main #lines .line__item {
  width: 220px;
  height: 480px;
  position: relative;
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
}
.brand-main #lines .line__item-inner {
  width: 100%;
  height: 320px;
  position: relative;
  flex: 1 1 auto;
}
.brand-main #lines .line__item-content {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  border-radius: 16px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  padding: 20px;
}
.brand-main #lines .line__item-shield {
  width: 100%;
  height: 125px;
  background-size: cover;
  background-position: center;
  border-radius: 16px;
  margin-top: 8px;
  z-index: 0;
}
.brand-main #lines .line__item-title {
  font-size: 16px;
  line-height: 1.2;
  font-weight: 500;
}
.brand-main #lines .line__item-descr {
  font-size: 12px;
  line-height: 1.2;
  font-weight: 400;
  margin-top: 10px;
}
.brand-main #lines .line__item-pack {
  width: 168px;
  height: 348px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
  position: absolute;
  bottom: 0;
  left: calc(50% - 84px);
}
.brand-main #products {
  width: 100%;
  min-height: 200px;
  position: relative;
  background: linear-gradient(180deg, var(--var-mBG) 0%, #000000 80%);
}
.brand-main #products .product__gallery {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  gap: 20px;
  overflow-x: hidden;
  scroll-behavior: smooth;
  padding-left: 50px;
}
.brand-main #products .product__gallery-item {
  min-width: 1000px;
  width: 1000px;
  height: 600px;
  background-size: cover;
  background-position: center;
  border: 1px solid #ECD08D;
  border-radius: 16px;
  padding: 30px 50px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.brand-main #products .product__gallery-item .product__gallery-item-title {
  background: var(--var-titleColor);
  font-weight: 700;
  font-size: 44px;
  line-height: 58px;
  width: 400px;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.brand-main #products .product__gallery-item .product__gallery-item-descr {
  width: 380px;
  font-weight: 400;
  font-size: 20px;
  line-height: 26px;
  margin-top: 14px;
  margin-bottom: auto;
}
.brand-main #products .product__gallery-item .product__gallery-item-items {
  margin-top: auto;
  width: 530px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-weight: 400;
  font-size: 20px;
  line-height: 16px;
  margin-top: 14px;
  cursor: pointer;
}
.brand-main #products .product__gallery-item .product__gallery-item-items.two-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
  align-items: start;
}
.brand-main #products .product__gallery-item .product__gallery-item-items.two-columns .product__gallery-item-items-title {
  grid-column: 1 / -1;
}
.brand-main #products .product__gallery-item .product__gallery-item-items.two-columns::after {
  content: '';
  display: none;
}
.brand-main #products .product__gallery-item .product__gallery-item-items.two-columns .product__gallery-item-item {
  break-inside: avoid;
}
.brand-main #products .product__gallery-item .product__gallery-item-items .product__gallery-item-items-title {
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  flex-grow: 0;
}
.brand-main #products .product__gallery-item .product__gallery-item-items .product__gallery-item-item {
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  text-decoration-line: underline;
  text-transform: uppercase;
}
.brand-main #products .product-navigation {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
  z-index: 10;
}
.brand-main #products .product-nav {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background-color: #4C2B1D;
  color: #F7ECCE;
  border: 1px solid #F7ECCE;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  pointer-events: auto;
}
.brand-main #products .product-nav:hover {
  background-color: #5A3424;
  transform: scale(1.05);
}
.brand-main #products .product-nav:active {
  transform: scale(0.95);
}
.brand-main #products .product-nav-prev {
  margin-left: 20px;
}
.brand-main #products .product-nav-next {
  margin-right: 20px;
}
.brand-main #history {
  width: 100%;
  min-height: 800px;
  background: #000000;
  padding: 100px 0 !important;
  position: relative;
}
.brand-main #history .wrapper {
  max-width: 1340px;
  margin: auto;
  padding: 0 50px;
}
.brand-main #history .history__header {
  margin-bottom: 0;
  position: relative;
}
.brand-main #history .history__header .history__title {
  font-weight: 700;
  font-size: 48px;
  line-height: 56px;
  margin-bottom: 20px;
  background: linear-gradient(94.97deg, #ECD08D 0%, #DAB171 53.14%, #FDE6C2 81.87%), #F7ECCE;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.brand-main #history .history__header .history__description {
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  color: #F7ECCE;
  max-width: 600px;
}
.brand-main #history .history__timeline-container {
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 20px;
  position: relative;
}
.brand-main #history .history__timeline-container::-webkit-scrollbar {
  height: 8px;
}
.brand-main #history .history__timeline-container::-webkit-scrollbar-track {
  background: rgba(247, 236, 206, 0.1);
  border-radius: 4px;
}
.brand-main #history .history__timeline-container::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, #F15A22 0%, #F7ECCE 100%);
  border-radius: 4px;
}
.brand-main #history .history__timeline-container::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(90deg, #E04A1A 0%, #E6D4A6 100%);
}
.brand-main #history .scroll-indicator {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: rgba(241, 90, 34, 0.8);
  border: 2px solid #F7ECCE;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #F7ECCE;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  pointer-events: none;
}
.brand-main #history .scroll-indicator:hover {
  background: #f15a22;
  transform: translateY(-50%) scale(1.1);
}
.brand-main #history .scroll-indicator--left {
  left: 10px;
}
.brand-main #history .scroll-indicator--right {
  right: 10px;
}
.brand-main #history .history__timeline {
  position: relative;
  display: flex;
  align-items: flex-start;
  min-height: 500px;
  min-width: 1200px;
  width: fit-content;
  padding: 0 50px;
}
.brand-main #history .history__timeline::before {
  content: '';
  position: absolute;
  top: 100px;
  left: 50px;
  right: 50px;
  height: 8px;
  margin: 0 100px;
  width: calc(100% - 300px);
  background: linear-gradient(90deg, #F15A22 0%, #F7ECCE 100%);
  background: linear-gradient(94.97deg, #ECD08D 0%, #DAB171 53.14%, #FDE6C2 81.87%), #4B2B1D;
  border-radius: 100px;
  z-index: 1;
}
.brand-main #history .history__timeline .timeline__item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: start;
  flex: 0 0 200px;
  margin-top: 140px;
  margin-right: 100px;
  z-index: 2;
}
.brand-main #history .history__timeline .timeline__item:last-child {
  margin-right: 0;
}
.brand-main #history .history__timeline .timeline__item::before {
  content: '';
  position: absolute;
  top: -53px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 36px;
  background: #000000;
  border: 4px solid #ECD08D;
  border-radius: 50%;
  z-index: 3;
}
.brand-main #history .history__timeline .timeline__item .timeline__product img {
  width: auto;
  max-width: 220px;
  height: 160px;
  object-fit: contain;
}
.brand-main #history .history__timeline .timeline__item .timeline__year {
  margin-top: 8px;
  margin-bottom: 8px;
  font-weight: 700;
  font-size: 32px;
  line-height: 38px;
  background: linear-gradient(94.97deg, #ECD08D 0%, #DAB171 53.14%, #FDE6C2 81.87%), #F7ECCE;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.brand-main #history .history__timeline .timeline__item .timeline__product-name {
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  background: linear-gradient(94.97deg, #ECD08D 0%, #DAB171 53.14%, #FDE6C2 81.87%), #F7ECCE;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  margin-bottom: 8px;
}
.brand-main #history .history__timeline .timeline__item .timeline__description {
  width: 190px;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: #F7ECCE;
  opacity: 0.8;
  text-align: start;
}
.brand-main #history .history__timeline .timeline__item .timeline__description b {
  display: block;
  font-size: 30px;
  font-weight: bold;
  padding: 8px 0;
}
@media (max-width: 768px) {
  .brand-main #history {
    padding: 50px 0;
  }
  .brand-main #history .wrapper {
    padding: 0 20px;
  }
  .brand-main #history .history__header {
    margin-bottom: 40px;
  }
  .brand-main #history .history__header .history__title {
    font-size: 32px;
    line-height: 38px;
  }
  .brand-main #history .history__header .history__description {
    font-size: 16px;
    line-height: 22px;
  }
  .brand-main #history .history__timeline {
    min-width: 800px;
    padding: 0 20px;
  }
  .brand-main #history .history__timeline::before {
    left: 20px;
    right: 20px;
  }
  .brand-main #history .history__timeline .timeline__item {
    flex: 0 0 150px;
    margin-right: 50px;
  }
  .brand-main #history .history__timeline .timeline__item .timeline__products .timeline__product {
    width: 50px;
    height: 70px;
  }
  .brand-main #history .history__timeline .timeline__item .timeline__year {
    font-size: 20px;
    line-height: 24px;
  }
  .brand-main #history .history__timeline .timeline__item .timeline__product-name {
    font-size: 14px;
    line-height: 18px;
  }
  .brand-main #history .history__timeline .timeline__item .timeline__description {
    font-size: 12px;
    line-height: 16px;
  }
}
.brand-main #news {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  width: 100%;
  margin: auto;
  padding: 200px 0!important;
}
.brand-main #news .wrapper {
  max-width: 1340px;
  margin: auto;
}
.brand-main #news .news-title {
  font-size: 40px;
  line-height: 1.2;
  font-weight: 700;
  color: #333963;
}
.brand-main #news .news-subtitle {
  width: 500px;
  font-style: normal;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 400;
  color: #F7ECCE;
}
.brand-main #news .news__block {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: start;
  width: 100%;
  margin-top: 30px;
}
.brand-main #news .news__block .news__item {
  width: 25%;
  max-width: 350px;
  height: 460px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #F7ECCE;
  border-radius: 16px;
}
.brand-main #news .news__block .news__item img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 16px 16px 0 0;
}
.brand-main #news .news__block .news__item .news__item-content {
  padding: 20px;
  color: #333963;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.brand-main #news .news__block .news__item .news__item-content h5 {
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  color: #4C2B1D;
}
.brand-main #news .news__block .news__item .news__item-content p {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #0B0A08;
}
.brand-main #news .news__block .news__item .news__item-content a {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: #979BB3;
  margin-top: auto;
}
.brand-main #news .news__btn {
  width: 100%;
  height: 60px;
  background: linear-gradient(94.97deg, #ECD08D 0%, #DAB171 53.14%, #FDE6C2 81.87%), #F7ECCE;
  color: var(--clr-mainDark);
  border-radius: 16px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  text-align: center;
  color: #050925;
  margin-top: 10px;
  padding: 0px 24px;
  box-shadow: 0px 12px 16px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
}
.brand-main #where-to-buy {
  width: 100%;
  min-height: 800px;
  background: linear-gradient(180deg, #4C2B1D 0%, #2B1710 100%);
}
.brand-main #where-to-buy .wrapper {
  max-width: 1340px !important;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin: auto;
  gap: 50px;
}
.brand-main #where-to-buy .where-to-buy__left {
  flex: 0 0 480px;
  display: flex;
  flex-direction: column;
}
.brand-main #where-to-buy .where-to-buy__left .where-to-buy__content {
  margin-bottom: 40px;
}
.brand-main #where-to-buy .where-to-buy__left .where-to-buy__content .where-to-buy__title {
  font-size: 40px;
  line-height: 48px;
  font-weight: 700;
  background: linear-gradient(94.97deg, #ECD08D 0%, #DAB171 53.14%, #FDE6C2 81.87%), #F7ECCE;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  margin: 0 0 16px 0;
}
.brand-main #where-to-buy .where-to-buy__left .where-to-buy__content .where-to-buy__subtitle {
  font-size: 20px;
  line-height: 24px;
  font-weight: 400;
  color: #F7ECCE;
  margin: 0 0 32px 0;
}
.brand-main #where-to-buy .where-to-buy__left .where-to-buy__content .where-to-buy__search {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.brand-main #where-to-buy .where-to-buy__left .where-to-buy__content .where-to-buy__search .geo-button {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  background: linear-gradient(94.97deg, #ECD08D 0%, #DAB171 53.14%, #FDE6C2 81.87%), #F7ECCE;
  border: none;
  border-radius: 16px;
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
  color: #4C2B1D;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
}
.brand-main #where-to-buy .where-to-buy__left .where-to-buy__content .where-to-buy__search .geo-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}
.brand-main #where-to-buy .where-to-buy__left .where-to-buy__content .where-to-buy__search .geo-button svg {
  flex-shrink: 0;
}
.brand-main #where-to-buy .where-to-buy__left .where-to-buy__content .where-to-buy__search .search-divider {
  text-align: center;
  font-size: 16px;
  line-height: 20px;
  color: #F7ECCE;
  opacity: 0.7;
}
.brand-main #where-to-buy .where-to-buy__left .where-to-buy__content .where-to-buy__search .city-selector {
  position: relative;
}
.brand-main #where-to-buy .where-to-buy__left .where-to-buy__content .where-to-buy__search .city-selector .city-select {
  width: 100%;
  padding: 16px 24px;
  padding-right: 48px;
  background: rgba(247, 236, 206, 0.1);
  border: 2px solid rgba(247, 236, 206, 0.3);
  border-radius: 16px;
  font-size: 16px;
  line-height: 20px;
  color: #F7ECCE;
  appearance: none;
  cursor: pointer;
}
.brand-main #where-to-buy .where-to-buy__left .where-to-buy__content .where-to-buy__search .city-selector .city-select:focus {
  outline: none;
  border-color: #ECD08D;
}
.brand-main #where-to-buy .where-to-buy__left .where-to-buy__content .where-to-buy__search .city-selector .city-select option {
  background: #4C2B1D;
  color: #F7ECCE;
}
.brand-main #where-to-buy .where-to-buy__left .where-to-buy__content .where-to-buy__search .city-selector .select-arrow {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #F7ECCE;
  pointer-events: none;
}
.brand-main #where-to-buy .address__block {
  flex: 1;
}
.brand-main #where-to-buy .address__block .address__list {
  background: rgba(247, 236, 206, 0.1);
  border-radius: 16px;
  height: 400px;
  overflow-y: auto;
  margin: 0;
  padding: 20px;
  list-style: none;
}
.brand-main #where-to-buy .address__block .address__list::-webkit-scrollbar {
  width: 8px;
}
.brand-main #where-to-buy .address__block .address__list::-webkit-scrollbar-track {
  background: rgba(247, 236, 206, 0.1);
  border-radius: 4px;
}
.brand-main #where-to-buy .address__block .address__list::-webkit-scrollbar-thumb {
  background: #ECD08D;
  border-radius: 4px;
}
.brand-main #where-to-buy .address__block .address__list::-webkit-scrollbar-thumb:hover {
  background: #DAB171;
}
.brand-main #where-to-buy .address__block .address__item {
  padding: 16px;
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 18px;
  color: #F7ECCE;
  border: 2px solid transparent;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.brand-main #where-to-buy .address__block .address__item span:first-child {
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  display: block;
  margin-bottom: 4px;
}
.brand-main #where-to-buy .address__block .address__item .address__min {
  font-size: 12px;
  line-height: 16px;
  opacity: 0.7;
  margin-top: 4px;
}
.brand-main #where-to-buy .address__block .address__item:hover,
.brand-main #where-to-buy .address__block .address__item--active {
  background: rgba(247, 236, 206, 0.1);
  border-color: #ECD08D;
}
.brand-main #where-to-buy .where-to-buy__right {
  flex: 1;
}
@media (max-width: 1024px) {
  .brand-main #where-to-buy {
    flex-direction: column;
  }
  .brand-main #where-to-buy .where-to-buy__left {
    flex: none;
    padding: 40px 20px;
  }
  .brand-main #where-to-buy .where-to-buy__right {
    padding: 0 20px 40px;
  }
  .brand-main #where-to-buy .where-to-buy__right #map {
    height: 400px;
  }
}
@media (max-width: 768px) {
  #more {
    height: auto !important;
  }
  #about {
    padding: 60px 20px !important;
    min-height: 820px;
  }
  #about .about__content {
    max-width: 100%;
    width: auto !important;
    padding: 40px 30px !important;
    margin: 0 20px;
    text-align: start;
  }
  #about .about__content .about__logo {
    max-height: 100px;
    margin-bottom: 30px;
    width: 200px;
  }
  #about .about__content .about__title {
    font-size: 22px;
    line-height: 1.3;
    margin-bottom: 15px;
  }
  #about .about__content .about__description {
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 15px;
  }
  #now {
    padding: 60px 20px;
    min-height: auto;
  }
  #now .now__top {
    border-radius: 16px;
  }
  #now .now__top .text {
    width: 100%;
    padding: 40px 30px;
    text-align: center;
  }
  #now .now__top .text .main {
    font-size: 24px;
    line-height: 1.3;
    margin-bottom: 20px;
  }
  #now .now__top .text .sub {
    font-size: 14px;
    line-height: 1.4;
  }
  #now .now__bottom {
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
  }
  #now .now__bottom .item {
    flex-basis: auto;
    height: auto;
    min-height: 200px;
    padding: 25px 20px;
    text-align: center;
  }
  #now .now__bottom .item .item__year {
    font-size: 28px;
    margin-bottom: 15px;
  }
  #now .now__bottom .item .item__text {
    font-size: 16px;
    line-height: 1.3;
  }
  #now .now__bottom .item--bl,
  #now .now__bottom .item--br {
    border-radius: 16px;
  }
  #history {
    padding: 60px 0 !important;
    min-height: auto;
  }
  #history .wrapper {
    padding: 0 20px;
  }
  #history .history__header {
    text-align: center;
    margin-bottom: 40px;
  }
  #history .history__header .history__title {
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 15px;
  }
  #history .history__header .history__description {
    font-size: 16px;
    line-height: 1.4;
    max-width: 100%;
  }
  #history .history__timeline {
    gap: 30px;
  }
  #history .history__timeline .history__timeline-item .history__year {
    font-size: 32px;
    margin-bottom: 15px;
  }
  #history .history__timeline .history__timeline-item .history__text {
    font-size: 14px;
    line-height: 1.4;
  }
}
@media (max-width: 480px) {
  #about {
    padding: 40px 15px !important;
  }
  #about .about__wrapper {
    min-height: 420px !important;
  }
  #about .about__content {
    padding: 30px 20px !important;
    margin: 0 10px;
    border-radius: 12px;
  }
  #about .about__content .about__logo {
    max-height: 80px;
    margin-bottom: 20px;
  }
  #about .about__content .about__title {
    font-size: 20px;
    line-height: 1.2;
    margin-bottom: 12px;
  }
  #about .about__content .about__description {
    font-size: 14px;
    line-height: 1.3;
    margin-bottom: 12px;
  }
  #now {
    padding: 40px 15px;
  }
  #now .now__top {
    border-radius: 12px;
  }
  #now .now__top .text {
    padding: 30px 20px;
  }
  #now .now__top .text .main {
    font-size: 18px;
    line-height: 1.2;
    margin-bottom: 15px;
  }
  #now .now__top .text .sub {
    font-size: 13px;
    line-height: 1.3;
  }
  #now .now__bottom {
    gap: 12px;
    margin-top: 15px;
  }
  #now .now__bottom .item {
    min-height: 180px;
    padding: 20px 15px;
    border-radius: 12px;
  }
  #now .now__bottom .item .item__year {
    font-size: 24px;
    margin-bottom: 12px;
  }
  #now .now__bottom .item .item__text {
    font-size: 14px;
    line-height: 1.2;
  }
  #history {
    padding: 40px 0 !important;
  }
  #history .wrapper {
    padding: 0 15px;
  }
  #history .history__header {
    margin-bottom: 30px;
  }
  #history .history__header .history__title {
    font-size: 26px;
    line-height: 1.1;
    margin-bottom: 12px;
  }
  #history .history__header .history__description {
    font-size: 14px;
    line-height: 1.3;
  }
  #history .history__timeline {
    gap: 20px;
  }
  #history .history__timeline .history__timeline-item .history__year {
    font-size: 28px;
    margin-bottom: 12px;
  }
  #history .history__timeline .history__timeline-item .history__text {
    font-size: 13px;
    line-height: 1.3;
  }
  #history .scroll-indicator {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }
}
@media (max-width: 360px) {
  #about {
    padding: 30px 10px !important;
  }
  #about .about__content {
    padding: 25px 15px;
    margin: 0 5px;
  }
  #about .about__content .about__logo {
    max-height: 70px;
    margin-bottom: 15px;
  }
  #about .about__content .about__title {
    font-size: 18px;
    margin-bottom: 10px;
  }
  #about .about__content .about__description {
    font-size: 13px;
    margin-bottom: 10px;
  }
  #now {
    padding: 30px 10px;
  }
  #now .now__top .text {
    padding: 25px 15px;
  }
  #now .now__top .text .main {
    font-size: 18px;
    margin-bottom: 12px;
  }
  #now .now__top .text .sub {
    font-size: 12px;
  }
  #now .now__bottom {
    gap: 10px;
  }
  #now .now__bottom .item {
    min-height: 160px;
    padding: 15px 12px;
  }
  #now .now__bottom .item .item__year {
    font-size: 22px;
    margin-bottom: 10px;
  }
  #now .now__bottom .item .item__text {
    font-size: 13px;
  }
  #history {
    padding: 30px 0 !important;
  }
  #history .wrapper {
    padding: 0 10px;
  }
  #history .history__header {
    margin-bottom: 25px;
  }
  #history .history__header .history__title {
    font-size: 22px;
    margin-bottom: 10px;
  }
  #history .history__header .history__description {
    font-size: 13px;
  }
  #history .history__timeline {
    gap: 15px;
  }
  #history .history__timeline .history__timeline-item .history__year {
    font-size: 24px;
    margin-bottom: 10px;
  }
  #history .history__timeline .history__timeline-item .history__text {
    font-size: 12px;
  }
  #history .scroll-indicator {
    width: 30px;
    height: 30px;
    font-size: 12px;
  }
}
@media (max-width: 768px) {
  .mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--clr-mainDarkBlue);
    z-index: 1050;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
  }
  .desktop-menu {
    display: none;
  }
  .mobile-menu-header {
    background: var(--clr-mainDarkBlue);
    padding: 0 0.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
  }
  .mobile-menu-brand {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .mobile-menu-logo {
    height: 32px;
    width: auto;
  }
  .mobile-menu-brand-graphic {
    width: 24px;
    height: 24px;
    position: relative;
  }
  .brand-graphic-element {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #4A90E2 0%, var(--clr-accentOrange) 50%, #4CAF50 100%);
    border-radius: 4px;
    transform: rotate(45deg);
    position: relative;
  }
  .brand-graphic-element::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    width: 12px;
    height: 12px;
    background: white;
    border-radius: 2px;
  }
  .mobile-menu-balance {
    background: var(--clr-mainDarkBlue);
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 4px;
  }
  .balance-amount {
    font-size: 18px;
    font-weight: 700;
  }
  .balance-symbol {
    font-size: 16px;
    font-weight: 600;
  }
  .mobile-menu-close {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
  }
  .mobile-menu-close:hover {
    background: rgba(255, 255, 255, 0.1);
  }
  .mobile-nav-main {
    background: var(--clr-mainDarkBlue);
    margin: 0;
    padding: 0;
  }
  .mobile-nav-main .nav-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .mobile-nav-main .nav-item:last-child {
    border-bottom: none;
  }
  .mobile-nav-main .nav-link {
    color: white !important;
    font-weight: 500;
    font-size: 18px;
    padding: 20px 24px;
    text-decoration: none;
    display: block;
    position: relative;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
  }
  .mobile-nav-main .nav-link:hover {
    background: rgba(255, 255, 255, 0.05);
    border-bottom-color: var(--clr-accentOrange);
  }
  .mobile-nav-main .nav-link.active {
    background: rgba(255, 255, 255, 0.1);
    border-bottom-color: var(--clr-accentOrange);
  }
  .mobile-nav-controls {
    background: var(--clr-accentOrange);
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: start !important;
  }
  .mobile-control-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    width: 100% !important;
  }
  .mobile-control-item:last-child {
    border-bottom: none;
  }
  .mobile-control-btn {
    background: none;
    border: none;
    color: white;
    font-weight: 500;
    font-size: 16px;
    padding: 10px 24px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
    text-align: left;
    transition: background-color 0.3s ease;
    cursor: pointer;
  }
  .mobile-control-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
  }
  .mobile-control-btn i {
    font-size: 18px;
    width: 20px;
    text-align: center;
  }
  .mobile-control-btn span {
    flex: 1;
  }
  .mobile-control-btn .scan-icon {
    position: relative;
    width: 20px;
    height: 20px;
  }
  .mobile-control-btn .scan-icon .qr-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    width: 100%;
    height: 100%;
  }
  .mobile-control-btn .scan-icon .qr-square {
    background-color: white;
    border-radius: 1px;
  }
  .mobile-control-btn .scan-icon .qr-corner {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 6px;
    height: 6px;
    background-color: white;
    border-radius: 0 0 0 2px;
  }
}
@media (min-width: 769px) {
  .mobile-menu {
    display: none;
  }
  .desktop-menu {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
  }
}
