@charset "UTF-8";
.header {
  background-color: #1D1D1D;
}
.header .header-top {
  padding: 1rem 0;
  border-bottom: 1px solid rgb(49.4, 49.4, 49.4);
}
.header .header-top .navbar-brand .logo-img {
  max-width: 180px;
  height: auto;
  transition: transform 0.3s ease;
}
.header .header-top .navbar-brand .logo-img:hover {
  transform: scale(1.05);
}
.header .header-bottom {
  padding: 0.5rem 0;
}

.header-contacts {
  gap: 2rem;
}
.header-contacts .contact-item .contact-link {
  color: #FFFFFF;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.9rem;
  white-space: nowrap;
}
.header-contacts .contact-item .contact-link:hover {
  color: #43DDFF;
}
.header-contacts .contact-item:not(:last-child) {
  position: relative;
  padding-right: 2rem;
}
.header-contacts .contact-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 20px;
  background-color: #505050;
}

.btn-call {
  background-color: #43DDFF;
  color: #1D1D1D;
  border: none;
  padding: 0.6rem 1.8rem;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  white-space: nowrap;
  margin-left: 1rem;
}
.btn-call:hover {
  background-color: rgb(118, 230.2234042553, 255);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(67, 221, 255, 0.3);
}
.btn-call:active {
  transform: translateY(0);
}

.header-bottom .navbar-nav {
  gap: 0.5rem;
}
.header-bottom .navbar-nav .nav-item .nav-link {
  color: #FFFFFF !important;
  font-weight: 500;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  white-space: nowrap;
}
.header-bottom .navbar-nav .nav-item .nav-link:hover {
  color: #43DDFF !important;
  background-color: rgb(41.75, 41.75, 41.75);
}
.header-bottom .navbar-nav .nav-item .nav-link.dropdown-toggle::after {
  border-top-color: #FFFFFF;
  transition: border-top-color 0.3s ease;
  margin-left: 0.5rem;
}
.header-bottom .navbar-nav .nav-item .nav-link:hover.dropdown-toggle::after {
  border-top-color: #43DDFF;
}
.header-bottom .navbar-nav .nav-item.show .nav-link {
  color: #43DDFF !important;
  background-color: rgb(41.75, 41.75, 41.75);
}

.dropdown-menu {
  background-color: rgb(41.75, 41.75, 41.75);
  border: 1px solid rgb(67.25, 67.25, 67.25);
  border-radius: 8px;
  padding: 0.5rem 0;
  margin-top: 0.5rem !important;
}
.dropdown-menu .dropdown-item {
  color: #FFFFFF;
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
}
.dropdown-menu .dropdown-item:hover {
  background-color: #43DDFF;
  color: #1D1D1D;
}

.navbar-toggler {
  border: none;
  padding: 0.25rem;
  background: transparent;
  width: 30px;
  height: 30px;
  position: relative;
}
.navbar-toggler .burger-line {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #FFFFFF;
  margin: 6px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}
.navbar-toggler:hover .burger-line {
  background-color: #43DDFF;
}
.navbar-toggler[aria-expanded=true] .burger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}
.navbar-toggler[aria-expanded=true] .burger-line:nth-child(2) {
  opacity: 0;
}
.navbar-toggler[aria-expanded=true] .burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

@media (max-width: 1399.98px) {
  .header-bottom .navbar-collapse {
    display: none !important;
  }
  .logo-img {
    max-width: 150px !important;
  }
}
@media (max-width: 768px) {
  .logo-img {
    max-width: 130px !important;
  }
}
@media (min-width: 1400px) {
  .navbar-toggler {
    display: none !important;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.dropdown-menu {
  animation: fadeIn 0.3s ease;
}

.offcanvas {
  background-color: #1D1D1D;
}
.offcanvas .offcanvas-header {
  border-bottom: 1px solid rgb(54.5, 54.5, 54.5);
  padding: 1.5rem;
}
.offcanvas .offcanvas-header .offcanvas-title {
  color: #FFFFFF;
  font-weight: 600;
}
.offcanvas .offcanvas-header .btn-close {
  filter: invert(1);
  opacity: 0.8;
}
.offcanvas .offcanvas-header .btn-close:hover {
  opacity: 1;
}
.offcanvas .offcanvas-body {
  padding: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.offcanvas-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  flex-grow: 1;
}
.offcanvas-menu .offcanvas-link {
  display: block;
  color: #FFFFFF;
  text-decoration: none;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgb(41.75, 41.75, 41.75);
  transition: all 0.3s ease;
  position: relative;
}
.offcanvas-menu .offcanvas-link:hover {
  color: #43DDFF;
  background-color: rgb(36.65, 36.65, 36.65);
}
.offcanvas-menu .offcanvas-link.dropdown-toggle::after {
  content: "›";
  position: absolute;
  right: 1.5rem;
  transform: rotate(90deg);
  transition: transform 0.3s ease;
  border: 0 none;
}
.offcanvas-menu .offcanvas-dropdown.active .offcanvas-link.dropdown-toggle::after {
  transform: rotate(-90deg);
}

.offcanvas-submenu {
  list-style: none;
  padding: 0;
  margin: 0;
  background-color: rgb(36.65, 36.65, 36.65);
  display: none;
}
.offcanvas-submenu.show {
  display: block;
}
.offcanvas-submenu .offcanvas-link {
  padding-left: 2.5rem;
  font-size: 0.9rem;
  border-bottom: 1px solid rgb(34.1, 34.1, 34.1);
}

.offcanvas-contacts {
  padding: 1.5rem;
  border-top: 1px solid rgb(54.5, 54.5, 54.5);
  background-color: rgb(34.1, 34.1, 34.1);
}
.offcanvas-contacts .contact-item {
  margin-bottom: 1rem;
}
.offcanvas-contacts .contact-item:last-child {
  margin-bottom: 1.5rem;
}
.offcanvas-contacts .contact-item .contact-link {
  color: #FFFFFF;
  text-decoration: none;
  display: block;
  transition: color 0.3s ease;
}
.offcanvas-contacts .contact-item .contact-link:hover {
  color: #43DDFF;
}
.offcanvas-contacts .btn-call {
  width: 100%;
  padding: 0.75rem;
  margin-left: 0;
}

.block.text {
  background-color: #1D1D1D;
  color: #ADB5BD;
}
h2.text-center {
  color: #FFFFFF;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
}
h2.text-center::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #43DDFF, transparent);
}

#exportToExcel {
  background: linear-gradient(135deg, #242D2E 0%, #1D1D1D 100%);
  color: #FFFFFF;
  border: 1px solid #43DDFF;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
}
#exportToExcel::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(67, 221, 255, 0.2), transparent);
  transition: left 0.5s ease;
}
#exportToExcel:hover {
  background: linear-gradient(135deg, #43DDFF 0%, #242D2E 100%);
  color: #1D1D1D;
  box-shadow: 0 0 20px rgba(67, 221, 255, 0.4);
  transform: translateY(-2px);
}
#exportToExcel:hover::before {
  left: 100%;
}
#exportToExcel:active {
  transform: translateY(0);
}

.datatable-wrapper {
  margin: 20px 0;
}
.datatable-wrapper .datatable-top,
.datatable-wrapper .datatable-bottom {
  margin: 0;
  padding: 15px 20px;
  background: linear-gradient(135deg, #1D1D1D 0%, #242D2E 100%) !important;
  border: 1px solid rgba(67, 221, 255, 0.2) !important;
  border-radius: 10px !important;
  color: #ADB5BD !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3) !important;
}
.datatable-wrapper .datatable-top > nav:first-child,
.datatable-wrapper .datatable-top > div:first-child,
.datatable-wrapper .datatable-bottom > nav:first-child,
.datatable-wrapper .datatable-bottom > div:first-child {
  float: left;
}
.datatable-wrapper .datatable-top > nav:last-child,
.datatable-wrapper .datatable-top > div:not(:first-child),
.datatable-wrapper .datatable-bottom > nav:last-child,
.datatable-wrapper .datatable-bottom > div:not(:first-child) {
  float: right;
}
.datatable-wrapper .datatable-top {
  margin-bottom: 15px;
}
.datatable-wrapper .datatable-bottom {
  margin-top: 15px;
}

.datatable-wrapper .datatable-selector,
.datatable-wrapper .datatable-input {
  padding: 10px 15px !important;
  background: rgba(29, 29, 29, 0.9) !important;
  border: 1px solid #43DDFF !important;
  border-radius: 6px !important;
  color: #FFFFFF !important;
  font-size: 14px !important;
  transition: all 0.3s ease !important;
  margin: 0 5px !important;
}
.datatable-wrapper .datatable-selector:focus,
.datatable-wrapper .datatable-input:focus {
  outline: none !important;
  box-shadow: 0 0 15px rgba(67, 221, 255, 0.4) !important;
  border-color: #43DDFF !important;
}
.datatable-wrapper .datatable-selector {
  -webkit-appearance: none !important;
     -moz-appearance: none !important;
          appearance: none !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2343DDFF' d='M6 8L2 4h8z'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 12px center !important;
  background-size: 12px !important;
  padding-right: 35px !important;
  cursor: pointer !important;
}
.datatable-wrapper .datatable-selector option {
  background: #1D1D1D !important;
  color: #ADB5BD !important;
  padding: 10px !important;
  border: none !important;
}
.datatable-wrapper .datatable-selector optgroup {
  background: #242D2E !important;
  color: #FFFFFF !important;
  font-weight: bold !important;
}
.datatable-wrapper .datatable-input::-moz-placeholder {
  color: #ADB5BD !important;
  opacity: 0.7 !important;
}
.datatable-wrapper .datatable-input::placeholder {
  color: #ADB5BD !important;
  opacity: 0.7 !important;
}
.datatable-wrapper .datatable-info {
  margin: 8px 0 !important;
  color: #ADB5BD !important;
  font-weight: 500 !important;
}

.datatable-pagination ul {
  margin: 0 !important;
  padding-left: 0 !important;
}
.datatable-pagination li {
  list-style: none !important;
  float: left !important;
}
.datatable-pagination li.datatable-hidden {
  visibility: hidden !important;
}
.datatable-pagination li a,
.datatable-pagination li button {
  border: 1px solid #43DDFF !important;
  float: left !important;
  margin-left: 6px !important;
  padding: 8px 14px !important;
  text-decoration: none !important;
  color: #FFFFFF !important;
  cursor: pointer !important;
  background: linear-gradient(135deg, #1D1D1D 0%, #242D2E 100%) !important;
  border-radius: 6px !important;
  transition: all 0.3s ease !important;
  font-weight: 500 !important;
  min-width: 40px !important;
  text-align: center !important;
}
.datatable-pagination li a:hover,
.datatable-pagination li button:hover {
  background: linear-gradient(135deg, #43DDFF 0%, #242D2E 100%) !important;
  color: #1D1D1D !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 5px 15px rgba(67, 221, 255, 0.3) !important;
}
.datatable-pagination li a.datatable-active,
.datatable-pagination li button.datatable-active {
  background: linear-gradient(135deg, #43DDFF 0%, #1D1D1D 100%) !important;
  color: #FFFFFF !important;
  box-shadow: 0 0 15px rgba(67, 221, 255, 0.5) !important;
  transform: none !important;
}
.datatable-pagination li a.datatable-disabled,
.datatable-pagination li button.datatable-disabled {
  opacity: 0.4 !important;
  cursor: not-allowed !important;
}
.datatable-pagination li a.datatable-disabled:hover,
.datatable-pagination li button.datatable-disabled:hover {
  background: linear-gradient(135deg, #1D1D1D 0%, #242D2E 100%) !important;
  color: #FFFFFF !important;
  transform: none !important;
  box-shadow: none !important;
}

.datatable-container {
  background: linear-gradient(135deg, #1D1D1D 0%, #242D2E 100%) !important;
  border: 1px solid rgba(67, 221, 255, 0.15) !important;
  border-radius: 12px !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4) !important;
  overflow: hidden !important;
  margin: 10px 0 !important;
}

.datatable-table {
  max-width: 100% !important;
  width: 100% !important;
  border-spacing: 0 !important;
  border-collapse: separate !important;
  background: linear-gradient(135deg, #1D1D1D 0%, #242D2E 100%) !important;
  color: #ADB5BD !important;
  margin: 0 !important;
}
.datatable-table > tbody > tr > td,
.datatable-table > tbody > tr > th,
.datatable-table > tfoot > tr > td,
.datatable-table > tfoot > tr > th,
.datatable-table > thead > tr > td,
.datatable-table > thead > tr > th {
  vertical-align: top !important;
  padding: 14px 16px !important;
  border-bottom: 1px solid rgba(67, 221, 255, 0.1) !important;
  background: transparent !important;
  color: #ADB5BD !important;
}
.datatable-table > thead > tr > th {
  vertical-align: bottom !important;
  text-align: left !important;
  border-bottom: 2px solid #43DDFF !important;
  background: linear-gradient(135deg, #151515 0%, #1a1a1a 100%) !important;
  color: #FFFFFF !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  font-size: 0.85rem !important;
  position: relative !important;
  padding: 16px !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8) !important;
  border-right: 1px solid rgba(67, 221, 255, 0.1) !important;
  transition: all 0.3s ease !important;
}
.datatable-table > thead > tr > th button {
  background: transparent !important;
  border: none !important;
  color: inherit !important;
  font: inherit !important;
  text-align: inherit !important;
  padding: 0 !important;
  margin: 0 !important;
  width: 100% !important;
  cursor: pointer !important;
  text-transform: inherit !important;
  letter-spacing: inherit !important;
}
.datatable-table > thead > tr > th button:hover {
  background: transparent !important;
  color: inherit !important;
}
.datatable-table > thead > tr > th:last-child {
  border-right: none !important;
}
.datatable-table > thead > tr > th:hover {
  background: linear-gradient(135deg, rgba(67, 221, 255, 0.15) 0%, #1a1a1a 100%) !important;
  color: #43DDFF !important;
  text-shadow: 0 0 10px rgba(67, 221, 255, 0.3) !important;
}
.datatable-table > tfoot > tr > th {
  vertical-align: bottom !important;
  text-align: left !important;
  border-top: 2px solid #43DDFF !important;
  background: linear-gradient(135deg, #151515 0%, #1a1a1a 100%) !important;
  color: #FFFFFF !important;
}

.datatable-sorter,
.datatable-filter {
  display: inline-block !important;
  height: 100% !important;
  position: relative !important;
  width: 100% !important;
  padding-right: 25px !important;
}
.datatable-sorter::before, .datatable-sorter::after,
.datatable-filter::before,
.datatable-filter::after {
  content: "" !important;
  height: 0 !important;
  width: 0 !important;
  position: absolute !important;
  right: 8px !important;
  border-left: 4px solid transparent !important;
  border-right: 4px solid transparent !important;
  opacity: 0.5 !important;
}

.datatable-sorter::before {
  border-bottom: 4px solid #43DDFF !important;
  top: 50% !important;
  margin-top: -8px !important;
}
.datatable-sorter::after {
  border-top: 4px solid #43DDFF !important;
  bottom: 50% !important;
  margin-bottom: -8px !important;
}

.datatable-ascending .datatable-sorter::after {
  opacity: 1 !important;
  border-top-color: #FFFFFF !important;
}

.datatable-descending .datatable-sorter::before {
  opacity: 1 !important;
  border-bottom-color: #FFFFFF !important;
}

.datatable-filter::before {
  border-left: 6px solid transparent !important;
  border-right: 6px solid transparent !important;
  border-top: 8px solid #43DDFF !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  border-radius: 0 !important;
}
.datatable-filter.datatable-filter-active::before {
  opacity: 1 !important;
}

.datatable-table > tbody > tr {
  transition: all 0.3s ease !important;
  background: transparent !important;
}
.datatable-table > tbody > tr:nth-child(even) {
  background: rgba(29, 29, 29, 0.7) !important;
}
.datatable-table > tbody > tr:nth-child(odd) {
  background: rgba(36, 45, 46, 0.5) !important;
}
.datatable-table > tbody > tr:hover {
  background: linear-gradient(135deg, rgba(67, 221, 255, 0.15) 0%, rgba(29, 29, 29, 0.9) 100%) !important;
  transform: translateX(3px) !important;
  box-shadow: 0 4px 20px rgba(67, 221, 255, 0.25) !important;
}
.datatable-table > tbody > tr:hover > th,
.datatable-table > tbody > tr:hover > td {
  color: #FFFFFF !important;
  text-shadow: 0 0 10px rgba(67, 221, 255, 0.3) !important;
}

.datatable-table > tbody > tr > th:nth-child(4) {
  color: #43DDFF !important;
  font-weight: 600 !important;
}

.datatable-table > tbody > tr:hover > th:nth-child(4) {
  color: #FFFFFF !important;
  text-shadow: 0 0 15px rgba(67, 221, 255, 0.6) !important;
}

.datatable-empty {
  text-align: center !important;
  color: #ADB5BD !important;
  padding: 40px 20px !important;
}

table.datatable-table:focus {
  outline: solid 1px #43DDFF !important;
  outline-offset: -1px !important;
}
table.datatable-table:focus tr.datatable-cursor > td:first-child {
  border-left: 3px solid #43DDFF !important;
}

.datatable-top::after,
.datatable-bottom::after {
  clear: both !important;
  content: " " !important;
  display: table !important;
}

@media (max-width: 768px) {
  .block.text {
    padding: 2rem 0;
  }
  h2.text-center {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  .datatable-wrapper .datatable-top,
  .datatable-wrapper .datatable-bottom {
    text-align: center;
  }
  .datatable-wrapper .datatable-top > nav:first-child,
  .datatable-wrapper .datatable-top > div:first-child,
  .datatable-wrapper .datatable-top > nav:last-child,
  .datatable-wrapper .datatable-top > div:last-child,
  .datatable-wrapper .datatable-bottom > nav:first-child,
  .datatable-wrapper .datatable-bottom > div:first-child,
  .datatable-wrapper .datatable-bottom > nav:last-child,
  .datatable-wrapper .datatable-bottom > div:last-child {
    float: none;
    margin-bottom: 1rem;
    display: block;
    width: 100%;
  }
  .datatable-wrapper .datatable-selector,
  .datatable-wrapper .datatable-input {
    margin: 5px 0 !important;
    width: 100% !important;
  }
  .datatable-table {
    font-size: 0.9rem;
  }
  .datatable-table > thead > tr > th {
    padding: 1rem 0.75rem !important;
    font-size: 0.85rem !important;
  }
  .datatable-table > tbody > tr > th {
    padding: 0.85rem 0.75rem !important;
  }
}
@media (max-width: 480px) {
  h2.text-center {
    font-size: 1.5rem;
  }
  #exportToExcel {
    width: 100%;
    margin-bottom: 1rem;
  }
  .datatable-table {
    font-size: 0.8rem;
  }
  .datatable-table > thead > tr > th,
  .datatable-table > tbody > tr > th {
    padding: 0.75rem 0.5rem !important;
  }
  .datatable-pagination li a,
  .datatable-pagination li button {
    padding: 6px 10px !important;
    min-width: 35px !important;
    margin-left: 3px !important;
    font-size: 0.8rem !important;
  }
}
@keyframes glow {
  0% {
    box-shadow: 0 0 5px rgba(67, 221, 255, 0.3);
  }
  50% {
    box-shadow: 0 0 20px rgba(67, 221, 255, 0.6);
  }
  100% {
    box-shadow: 0 0 5px rgba(67, 221, 255, 0.3);
  }
}
@keyframes rowHighlight {
  0% {
    background: rgba(67, 221, 255, 0.1);
  }
  50% {
    background: rgba(67, 221, 255, 0.2);
  }
  100% {
    background: rgba(67, 221, 255, 0.15);
  }
}
.glow-effect {
  animation: glow 2s ease-in-out infinite;
}

.row-highlight {
  animation: rowHighlight 1s ease-in-out;
}

@media (max-width: 640px) {
  table#price_table td:nth-child(1),
  table#price_table td:nth-child(2),
  table#price_table th:nth-child(1),
  table#price_table th:nth-child(2) {
    display: none;
  }
  table#price_table td:nth-child(3),
  table#price_table td:nth-child(4),
  table#price_table th:nth-child(3),
  table#price_table th:nth-child(4) {
    display: table-cell;
  }
}
@media (min-width: 641px) and (max-width: 799px) {
  table#price_table td:nth-child(3),
  table#price_table th:nth-child(3) {
    display: table-cell;
  }
}
@media (min-width: 800px) {
  table#price_table td,
  table#price_table th {
    display: table-cell;
  }
}

.price-container {
  position: relative;
}
.price-container::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: linear-gradient(45deg, #43DDFF, transparent, #43DDFF);
  border-radius: 16px;
  z-index: -1;
  opacity: 0.05;
  pointer-events: none;
}

.price-table-container {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.price-table-container.loaded {
  opacity: 1;
  visibility: visible;
}

.category-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.category-item {
  background: linear-gradient(135deg, #242D2E 0%, #1D1D1D 100%);
  border: 1px solid rgba(67, 221, 255, 0.2);
  border-radius: 10px;
  transition: all 0.3s ease;
  overflow: hidden;
}
.category-item:hover {
  border-color: #43DDFF;
  box-shadow: 0 5px 20px rgba(67, 221, 255, 0.2);
}
.category-item:hover .category-link {
  color: #43DDFF;
  padding-left: 25px;
}
.category-item:hover .category-link::after {
  opacity: 1;
}

.category-link {
  display: block;
  padding: 20px;
  color: #ADB5BD;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
}
.category-link::after {
  content: "→";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #43DDFF;
  opacity: 0;
  transition: opacity 0.3s ease;
  font-weight: bold;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.category-item {
  animation: fadeIn 0.4s ease forwards;
  opacity: 0;
}
.category-item:nth-child(1) {
  animation-delay: 0.05s;
}
.category-item:nth-child(2) {
  animation-delay: 0.1s;
}
.category-item:nth-child(3) {
  animation-delay: 0.15s;
}
.category-item:nth-child(4) {
  animation-delay: 0.2s;
}
.category-item:nth-child(5) {
  animation-delay: 0.25s;
}
.category-item:nth-child(6) {
  animation-delay: 0.3s;
}
.category-item:nth-child(7) {
  animation-delay: 0.35s;
}
.category-item:nth-child(8) {
  animation-delay: 0.4s;
}
.category-item:nth-child(9) {
  animation-delay: 0.45s;
}
.category-item:nth-child(10) {
  animation-delay: 0.5s;
}
.category-item:nth-child(11) {
  animation-delay: 0.55s;
}
.category-item:nth-child(12) {
  animation-delay: 0.6s;
}
.category-item:nth-child(13) {
  animation-delay: 0.65s;
}
.category-item:nth-child(14) {
  animation-delay: 0.7s;
}
.category-item:nth-child(15) {
  animation-delay: 0.75s;
}
.category-item:nth-child(16) {
  animation-delay: 0.8s;
}
.category-item:nth-child(17) {
  animation-delay: 0.85s;
}
.category-item:nth-child(18) {
  animation-delay: 0.9s;
}
.category-item:nth-child(19) {
  animation-delay: 0.95s;
}
.category-item:nth-child(20) {
  animation-delay: 1s;
}

@media (max-width: 768px) {
  .category-list {
    gap: 10px;
  }
  .category-link {
    padding: 18px 20px;
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  .category-link {
    padding: 16px 20px;
    font-size: 0.95rem;
  }
}
.category-list:empty::before {
  content: "Категории не найдены";
  display: block;
  text-align: center;
  color: #ADB5BD;
  font-size: 1.1rem;
  padding: 3rem;
  background: linear-gradient(135deg, #242D2E 0%, #1D1D1D 100%);
  border-radius: 12px;
  border: 1px solid rgba(67, 221, 255, 0.2);
}

.block.text {
  animation: pageFadeIn 0.6s ease;
}

@keyframes pageFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.modern-footer {
  background: linear-gradient(135deg, #0A0A0A 0%, #1a1a1a 100%);
  color: #A1A7AF;
  padding: 4rem 0 1.5rem;
  position: relative;
  overflow: hidden;
}
.modern-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #43DDFF, transparent);
}
.modern-footer .footer-main {
  margin-bottom: 3rem;
}
.modern-footer .footer-main .footer-brand .company-badge {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}
.modern-footer .footer-main .footer-brand .company-badge .company-name {
  color: #FFFFFF;
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, #FFFFFF 0%, #A1A7AF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.modern-footer .footer-main .footer-brand .company-badge .logo-wrapper .footer-logo {
  height: 40px;
  width: auto;
}
.modern-footer .footer-main .footer-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1rem;
}
.modern-footer .footer-main .footer-actions .privacy-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  background: rgba(67, 221, 255, 0.1);
  border: 1px solid rgba(67, 221, 255, 0.2);
  border-radius: 6px;
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.modern-footer .footer-main .footer-actions .privacy-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(67, 221, 255, 0.2), transparent);
  transition: left 0.5s ease;
}
.modern-footer .footer-main .footer-actions .privacy-btn:hover {
  background: rgba(67, 221, 255, 0.2);
  border-color: #43DDFF;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(67, 221, 255, 0.15);
}
.modern-footer .footer-main .footer-actions .privacy-btn:hover::before {
  left: 100%;
}
.modern-footer .footer-main .footer-actions .privacy-btn:hover .fa.arrow {
  transform: translateX(3px);
}
.modern-footer .footer-main .footer-actions .privacy-btn .fa.arrow {
  transition: transform 0.3s ease;
}
.modern-footer .footer-main .footer-actions .footer-tagline {
  color: #A1A7AF;
  margin: 0;
  font-size: 0.85rem;
  opacity: 0.8;
}
.modern-footer .footer-divider {
  margin: 2rem 0 3rem;
}
.modern-footer .footer-divider .divider-line {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(67, 221, 255, 0.3) 50%, transparent 100%);
}
.modern-footer .fa {
  font-style: normal;
  font-size: 1.25rem;
  opacity: 0.8;
}
.modern-footer .footer-info-grid {
  margin-bottom: 3rem;
}
.modern-footer .footer-info-grid .info-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 1.5rem;
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
}
.modern-footer .footer-info-grid .info-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #43DDFF, transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.modern-footer .footer-info-grid .info-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(67, 221, 255, 0.2);
  transform: translateY(-5px);
}
.modern-footer .footer-info-grid .info-card:hover::before {
  opacity: 1;
}
.modern-footer .footer-info-grid .info-card .card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.modern-footer .footer-info-grid .info-card .card-header .card-title {
  color: #FFFFFF;
  font-weight: 600;
  font-size: 0.95rem;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.modern-footer .footer-info-grid .info-card .card-content .info-block {
  margin-bottom: 1rem;
}
.modern-footer .footer-info-grid .info-card .card-content .info-block:last-child {
  margin-bottom: 0;
}
.modern-footer .footer-info-grid .info-card .card-content .info-block .info-label {
  color: #FFFFFF;
  font-weight: 500;
  font-size: 0.8rem;
  margin-bottom: 0.25rem;
}
.modern-footer .footer-info-grid .info-card .card-content .info-block .info-text {
  color: #A1A7AF;
  font-size: 0.8rem;
  line-height: 1.4;
}
.modern-footer .footer-info-grid .info-card .card-content .time-slot {
  margin-bottom: 1rem;
}
.modern-footer .footer-info-grid .info-card .card-content .time-slot:last-child {
  margin-bottom: 0;
}
.modern-footer .footer-info-grid .info-card .card-content .time-slot .time-label {
  color: #FFFFFF;
  font-weight: 500;
  font-size: 0.8rem;
  margin-bottom: 0.25rem;
}
.modern-footer .footer-info-grid .info-card .card-content .time-slot .time-value {
  color: #A1A7AF;
  font-size: 0.8rem;
}
.modern-footer .footer-info-grid .info-card .card-content .contact-item {
  margin-bottom: 1rem;
}
.modern-footer .footer-info-grid .info-card .card-content .contact-item:last-child {
  margin-bottom: 0;
}
.modern-footer .footer-info-grid .info-card .card-content .contact-item .contact-label {
  color: #FFFFFF;
  font-weight: 500;
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
}
.modern-footer .footer-info-grid .info-card .card-content .contact-item .contact-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #A1A7AF;
  text-decoration: none;
  font-size: 0.8rem;
  transition: all 0.3s ease;
}
.modern-footer .footer-info-grid .info-card .card-content .contact-item .contact-link:hover {
  color: #43DDFF;
  transform: translateX(5px);
}
.modern-footer .footer-info-grid .info-card .card-content .contact-item .contact-link.small {
  font-size: 0.75rem;
}
.modern-footer .footer-info-grid .info-card .card-content .contact-item .email-group {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.modern-footer .footer-info-grid .info-card .card-content .address-block .address-city {
  color: #FFFFFF;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}
.modern-footer .footer-info-grid .info-card .card-content .address-block .address-text {
  color: #A1A7AF;
  font-size: 0.8rem;
  line-height: 1.4;
}
.modern-footer .footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.modern-footer .footer-bottom .tech-info .tech-text {
  color: #A1A7AF;
  font-size: 0.8rem;
  opacity: 0.6;
}
.modern-footer .footer-bottom .footer-meta {
  text-align: right;
}
.modern-footer .footer-bottom .footer-meta .meta-text {
  color: #A1A7AF;
  font-size: 0.8rem;
  opacity: 0.6;
}

@media (max-width: 992px) {
  .modern-footer {
    padding: 3rem 0 1.5rem;
  }
  .modern-footer .footer-main .footer-brand .company-badge {
    align-items: center;
    margin-bottom: 1.5rem;
  }
  .modern-footer .footer-main .footer-actions {
    align-items: center;
    text-align: center;
  }
  .modern-footer .footer-bottom .footer-meta {
    text-align: center;
    margin-top: 1rem;
  }
}
@media (max-width: 768px) {
  .modern-footer .footer-main .footer-brand .company-badge {
    text-align: center;
  }
  .modern-footer .info-card {
    text-align: center;
  }
  .modern-footer .info-card .card-header {
    justify-content: center;
  }
}
@media (max-width: 576px) {
  .modern-footer {
    padding: 2rem 0 1rem;
  }
  .modern-footer .footer-main .footer-actions .privacy-btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
  }
  .modern-footer .footer-info-grid .info-card {
    padding: 1.25rem;
  }
}/*# sourceMappingURL=catalog.css.map */