:root {
  --white: #ffffff;
  --gray-50: #f5f5f5;
  --gray-100: #ececec;
  --gray-200: #dcdcdc;
  --gray-300: #cccccc;
  --gray-400: #999999;
  --steel: #555555;
  --ink: #222222;
  --text: #444444;
  --muted: #666666;
  --line: #dcdcdc;
  --accent: #a8a8a8;
  --accent-dark: #8f8f8f;
  --nav-blue: #14508e;
  --nav-hover: #d12b37;
  --brand: #4db1e4;
  --brand-red: #e84444;
  --white-80: rgba(255, 255, 255, 0.82);
  --container: 1280px;
  --gutter: clamp(20px, 4vw, 48px);
  --radius: 2px;
  --shadow-soft: 0 18px 50px rgba(70, 88, 102, 0.12);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
  overflow-x: clip;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--white);
  color: var(--text);
  font-family: Inter, "Helvetica Neue", Arial, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

img {
  display: block;
  max-width: 100%;
}

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

ul,
ol,
dl,
figure,
blockquote,
p {
  margin: 0;
}

ul,
ol {
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4,
dt {
  margin: 0;
  color: var(--ink);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

button {
  font: inherit;
  color: inherit;
  border: 0;
  background: none;
  cursor: pointer;
}

.container {
  width: min(100% - (var(--gutter) * 2), var(--container));
  margin-inline: auto;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.icon {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 30px;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  color: var(--ink);
  font-size: 15px;
  font-weight: 650;
  line-height: 1;
  white-space: nowrap;
  transition: transform 0.25s var(--ease), background-color 0.25s, color 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(18, 20, 22, 0.12);
}

.button-dark {
  background: var(--ink);
  color: var(--white);
}

.button-primary {
  border-color: var(--brand);
  background: var(--brand);
  color: var(--white);
}

/* .button-primary:hover,
.button-primary:focus-visible {
  background: var(--brand-red);
  border-color: var(--brand-red);
  color: var(--white);
} */

.button-dark:hover,
.button-dark:focus-visible {
  background: var(--steel);
  border-color: var(--steel);
  color: var(--white);
}

.button-light {
  border-color: var(--white-80);
  color: var(--white);
  backdrop-filter: blur(8px);
}

.button-light:hover,
.button-light:focus-visible {
  background: var(--white);
  border-color: var(--white);
  color: var(--ink);
}

.button-outline {
  background: #4db1e4;
  border-color:#4db1e4;
  color: var(--white);
}

.button-outline:hover,
.button-outline:focus-visible {
  background: #4db1e4;
  border-color:#4db1e4;
  color: var(--white);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 120;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
}

.topbar {
  overflow: hidden;
  max-height: 52px;
  background: var(--gray-100);
  color: var(--muted);
  font-size: 13px;
  transition: max-height 0.35s var(--ease), opacity 0.25s;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 46px;
}

.topbar-inner p {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.topbar-actions a:hover,
.topbar-actions a:focus-visible {
  color: var(--ink);
}

.topbar-divider {
  width: 1px;
  height: 14px;
  background: var(--gray-300);
}

.header-shell {
  position: relative;
  background: var(--white);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(20px, 2vw, 40px);
  min-height: 86px;
}

.brand {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 13px;
}

.brand-logo {
  display: block;
  height: 72px;
  width: auto;
}

.brand-text {
  display: grid;
  gap: 3px;
}

.brand-text strong {
  color: var(--ink);
  font-size: 21px;
  font-weight: 800;
  line-height: 1;
}

.brand-text small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 650;
  line-height: 1;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  align-items: center;
  min-width: 0;
  margin-left: auto;
}

.menu {
  display: flex;
  align-items: center;
  gap: clamp(34px, 3.6vw, 84px);
}

.menu > li {
  position: relative;
}

.menu-row {
  display: flex;
  align-items: center;
}

.menu-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 82px;
  color: var(--ink);
  font-size: 15.5px;
  font-weight: 600;
  white-space: nowrap;
  transition: color 0.2s;
}

.menu-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s var(--ease);
}

.menu-link:hover,
.menu-link:focus-visible,
.has-panel:hover > .menu-row .menu-link,
.has-panel.open > .menu-row .menu-link,
.is-current {
  color: var(--ink);
}

.menu-link:hover::after,
.menu-link:focus-visible::after,
.has-panel:hover > .menu-row .menu-link::after,
.has-panel.open > .menu-row .menu-link::after,
.is-current::after {
  transform: scaleX(1);
}

.dropdown-btn {
  display: none;
  width: 40px;
  height: 40px;
  margin-left: 2px;
  border-radius: var(--radius);
  color: var(--ink);
}

.dropdown-btn .icon {
  width: 18px;
  height: 18px;
  margin: auto;
  transition: transform 0.3s var(--ease);
}

.dropdown-panel {
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  width: max(100%, 280px);
  padding: 0;
  background: var(--brand);
  border-top: 0;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), visibility 0.25s;
}

.dropdown-panel::before {
  content: "";
  position: absolute;
  top: -6px;
  right: 0;
  left: 0;
  height: 6px;
}

.has-panel:hover > .dropdown-panel,
.has-panel:focus-within > .dropdown-panel,
.has-panel.open > .dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-product {
  width: max(100%, 320px);
}

.dropdown-list {
  display: block;
}

.dropdown-list > li {
  position: relative;
}

.dropdown-list > li + li {
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.dropdown-list > li > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 46px;
  padding: 0 20px;
  color: var(--white);
  font-size: 14px;
  line-height: 1.35;
  text-align: left;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.dropdown-list > li > a:hover,
.dropdown-list > li > a:focus-visible {
  background: var(--brand-red);
  color: var(--white);
}

.dropdown-list > li > a .icon {
  width: 15px;
  height: 15px;
  color: var(--white);
}

.submenu {
  position: absolute;
  top: 0;
  left: 100%;
  margin-left: 0;
  z-index: 2;
  display: none;
  width: 260px;
  padding: 0;
  background: var(--brand);
  border-radius: 0;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

.has-submenu:hover > .submenu,
.has-submenu:focus-within > .submenu {
  display: block;
}

.submenu a {
  display: flex;
  align-items: center;
  min-height: 46px;
  padding: 0 20px;
  color: var(--white);
  font-size: 13px;
  line-height: 1.45;
  text-align: left;
}

.submenu li + li a {
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.submenu.is-flipped {
  left: auto;
  right: 100%;
}

.submenu a:hover,
.submenu a:focus-visible {
  background: var(--brand-red);
  color: var(--white);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex: 0 0 auto;
}

.header-contact {
  display: grid;
  gap: 2px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.2;
  text-align: right;
}

.header-contact strong {
  color: var(--ink);
  font-size: 20px;
  letter-spacing: -0.02em;
}

.header-button {
  min-height: 50px;
}

.nav-toggle {
  display: none;
  position: relative;
  z-index: 130;
  width: 46px;
  height: 46px;
  padding: 13px;
  border: 1px solid rgba(0, 0, 0, 0.35);
  border-radius: var(--radius);
  background: transparent;
  color: var(--ink);
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--ink);
  transition: transform 0.28s var(--ease), opacity 0.2s;
}

.nav-toggle span + span {
  margin-top: 5px;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Language switcher (translate.js injects a native <select> into #translate) */
.lang-switch {
  position: relative;
  z-index: 140;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 38px;
  margin-left: clamp(18px, 2vw, 48px);
  padding: 0 14px 0 12px;
  border: 1px solid rgba(0, 0, 0, 0.3);
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  transition: border-color 0.2s var(--ease), color 0.2s var(--ease), background-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.lang-switch svg {
  display: block;
  width: 17px;
  height: 17px;
  pointer-events: none;
}

.lang-switch-label {
  line-height: 1;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.lang-switch:hover,
.lang-switch:focus-within {
  border-color: var(--ink);
  background: var(--white);
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.1);
}

/* Cover the whole pill with the invisible native select so clicking it opens the list */
.lang-switch #translateSelectLanguage {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  opacity: 0;
  cursor: pointer;
}

.hero {
  position: relative;
  height: auto;
  background: transparent;
}

.hero-stage {
  position: relative;
  height: calc(100vh - 87px);
  height: calc(100svh - 87px);
  overflow: hidden;
}

.hero-track,
.hero-slide {
  width: 100%;
  height: 100%;
}

.hero-track {
  position: relative;
}

.hero-slide {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s;
}

.hero-slide.is-active {
  z-index: 2;
  opacity: 1;
  visibility: visible;
}

.hero-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1);
}

.hero-copy {
  position: absolute;
  top: 50%;
  left: max(var(--gutter), calc((100vw - var(--container)) / 2));
  z-index: 3;
  max-width: min(560px, 46vw);
  display: grid;
  gap: 14px;
  color: var(--white);
  transform: translateY(-50%);
}

/* Animation (not transition) so the intro also plays on first page load, when
   the first slide already carries .is-active in the server-rendered markup. */
.hero-slide.is-active .hero-kicker,
.hero-slide.is-active .hero-title,
.hero-slide.is-active .hero-sub {
  animation: hero-text-in 0.6s var(--ease) 0.35s both;
}

.hero-slide.is-active .hero-btn {
  animation: hero-btn-in 0.7s ease 0.65s both;
}

@keyframes hero-text-in {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-btn-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.hero-kicker {
  color: rgba(255, 255, 255, 0.85);
  font-size: clamp(13px, 1.2vw, 16px);
  font-weight: 650;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero-title {
  color: var(--white);
  font-size: clamp(1.7rem, 3.4vw, 3.1rem);
  text-shadow: 0 3px 22px rgba(0, 0, 0, 0.35);
}

.hero-sub {
  max-width: 46ch;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(14px, 1.25vw, 17px);
  line-height: 1.6;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.35);
}

.hero-btn {
  justify-self: start;
  margin-top: 6px;
}

.hero-controls {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: clamp(16px, 3vw, 48px);
  pointer-events: none;
}

.hero-controls > * {
  pointer-events: auto;
}

.hero-arrow,
.carousel-arrow {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  backdrop-filter: blur(10px);
  transition: background-color 0.25s, color 0.25s, border-color 0.25s, transform 0.25s var(--ease);
}

.hero-arrow:hover,
.hero-arrow:focus-visible {
  background: var(--white);
  border-color: var(--white);
  color: var(--ink);
  transform: translateY(-2px);
}

.hero-dots,
.carousel-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-dot {
  width: 26px;
  height: 3px;
  padding: 0;
  background: rgba(34, 34, 34, 0.28);
  transition: width 0.3s var(--ease), background-color 0.3s;
}

.hero-dot.is-active {
  width: 44px;
  background: var(--ink);
}

.hero-dots-wrap {
  position: absolute;
  left: 50%;
  bottom: clamp(12px, 2vw, 24px);
  z-index: 5;
  width: max-content;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
}

.section {
  position: relative;
  padding: clamp(48px, 4.5vw, 68px) 0;
}

.section-white {
  background: var(--white);
}

.section-gray {
  background: var(--gray-200);
  border: 0;
}

#products {
  background-color: var(--gray-200);
  background-image: url("../images/home-products-bg.jpg");
  background-size: auto, cover;
  background-position: center;
  background-repeat: repeat, no-repeat;
}

#about {
  background-color: var(--white);
  background-image: linear-gradient(rgba(255, 255, 255, 0.70), rgba(255, 255, 255, 0.70)), url("../images/home-about-line.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

@media (min-width: 1081px) {
  #about {
    /* Pin the drawing to the viewport and stretch it to always show in full
       while the section content scrolls over it. Mobile browsers ignore
       background-attachment: fixed, so keep cover scrolling there. */
    background-attachment: fixed;
    background-size: 100% 100%;
  }
}

.section-head {
  width: min(100%, 780px);
  margin: 0 auto clamp(30px, 3.4vw, 44px);
  text-align: center;
}

.section-title {
  font-size: clamp(2.1rem, 4.2vw, 3.5rem);
}

.section-title::after {
  content: "";
  display: block;
  width: 48px;
  height: 4px;
  margin: 16px auto 0;
  background: var(--accent);
}

.about-profile {
  max-width: min(100%, 1100px);
  margin: 0 auto;
  text-align: center;
}

/* Still used by the generic page template (page.php). */
.about-content h3 {
  font-size: clamp(1.5rem, 2.4vw, 2rem);
}

.about-content > p {
  margin-top: 20px;
}

.about-content > p:first-of-type {
  margin-top: 24px;
}

.about-profile h3 {
  font-size: clamp(1.5rem, 2.4vw, 2rem);
}

.about-profile > p {
  margin-top: 16px;
  color: #000;
  font-size: 17px;
  line-height: 2;
  text-align: justify;
}

.about-media {
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.about-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.about-media:hover img {
  transform: scale(1.04);
}

.about-media-band {
  max-width: min(100%, 1100px);
  margin: clamp(32px, 3.6vw, 52px) auto 0;
}

.about-action {
  margin-top: 26px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  max-width: min(100%, 1100px);
  margin: clamp(30px, 3.4vw, 44px) auto 0;
  padding: clamp(22px, 2.6vw, 34px) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.about-stats dt {
  color: var(--ink);
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
}

.about-stats dt sup {
  font-size: 0.45em;
}

.about-stats dd {
  margin: 6px 0 0;
  color: #000;
  font-size: 14px;
  line-height: 1.35;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: clamp(32px, 3.5vw, 48px);
}

.feature-card {
  height: 100%;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 13px;
  min-height: 226px;
  padding: 28px 22px;
  border: 1px solid var(--gray-300);
  border-top-width: 3px;
  background: var(--white);
  color: inherit;
  text-decoration: none;
  text-align: center;
  transition: border-color .28s, background-color .28s, color .28s, transform .28s var(--ease), box-shadow .28s;
}

.feature-card:hover,
.feature-card:focus-visible,
.feature-card:focus-within {
  border-color: var(--brand);
  background: var(--brand);
  transform: translateY(-6px);
  box-shadow: 0 20px 44px rgba(77, 177, 228, 0.35);
}

.feature-card:hover .feature-label,
.feature-card:focus-visible .feature-label,
.feature-card:focus-within .feature-label,
.feature-card:hover .feature-text,
.feature-card:focus-visible .feature-text,
.feature-card:focus-within .feature-text,
.feature-card:hover .feature-icon,
.feature-card:focus-visible .feature-icon,
.feature-card:focus-within .feature-icon {
  color: var(--white);
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  color: var(--ink);
  transition: color .28s;
}

.feature-icon .icon {
  width: 48px;
  height: 48px;
  stroke-width: 1.4;
}

.feature-text {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.feature-label {
  color: var(--ink);
  font-size: 17px;
  font-weight: 750;
  line-height: 1.3;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

.category-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 224px;
  padding: 22px 20px 20px;
  border: 1px solid var(--gray-300);
  border-top-width: 3px;
  background: var(--white);
  overflow: hidden;
  transition: border-color 0.28s, background-color 0.28s, transform 0.28s var(--ease), box-shadow 0.28s;
}

.category-card:hover,
.category-card:focus-visible {
  border-color: var(--brand);
  background: var(--brand);
  transform: translateY(-4px);
  box-shadow: 0 20px 44px rgba(77, 177, 228, 0.35);
}

.category-card:hover .category-name,
.category-card:focus-visible .category-name {
  color: var(--white);
}

.category-icon,
.feature-icon {
  transition: background-color 0.28s, color 0.28s, border-color 0.28s;
}

.category-icon {
  display: grid;
  place-items: center;
  width: 140px;
  height: 140px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
}

.category-icon .icon {
  width: 46px;
  height: 46px;
  color: var(--ink);
  stroke-width: 0.75;
}

.category-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.category-name {
  display: -webkit-box;
  overflow: hidden;
  color: var(--ink);
  font-size: 17px;
  font-weight: 750;
  line-height: 1.3;
  letter-spacing: -0.02em;
  text-align: center;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.category-card h3 {
  margin-top: 56px;
  font-size: 21px;
}

.category-card ul {
  margin-top: 16px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.category-card li + li {
  margin-top: 6px;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 24px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 650;
}

.card-link .icon {
  width: 18px;
  height: 18px;
  transition: transform 0.28s var(--ease);
}

.category-card:hover .card-link .icon,
.category-card:focus-visible .card-link .icon,
.news-card a:hover .card-link .icon,
.news-card a:focus-visible .card-link .icon {
  transform: translateX(4px);
}

.category-card-dark {
  border-color: var(--ink);
  background: var(--ink);
  color: rgba(255, 255, 255, 0.78);
}

.category-card-dark h3 {
  color: var(--white);
}

.category-card-dark ul {
  color: rgba(255, 255, 255, 0.72);
}

.category-card-dark .card-link {
  color: var(--white);
}

.category-card-dark:hover,
.category-card-dark:focus-visible {
  border-color: var(--ink);
  box-shadow: 0 24px 60px rgba(18, 20, 22, 0.2);
}

.hot-products {
  width: 100vw;
  margin-top: clamp(30px, 3.4vw, 46px);
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  padding-top: clamp(22px, 2.4vw, 30px);
  border-top: 1px solid var(--gray-300);
}

.hot-head {
  width: min(100% - (var(--gutter) * 2), var(--container));
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  margin-inline: auto;
  margin-bottom: 24px;
  padding-top: 0;
}

.hot-head h3 {
  font-size: clamp(1.3rem, 1.8vw, 1.6rem);
  line-height: 1.2;
}

.carousel-shell {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
}

.hot-products .carousel-shell {
  position: relative;
  display: block;
  padding-inline: clamp(12px, 2vw, 32px);
}

.carousel-arrows {
  display: flex;
  gap: 10px;
}

.carousel-arrow {
  border-color: var(--gray-300);
  background: var(--white);
  color: var(--ink);
}

.carousel-arrow:hover,
.carousel-arrow:focus-visible {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
  transform: translateY(-2px);
}

.carousel-viewport {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  outline-offset: 6px;
  padding: 8px 2px 16px;
}

.carousel-viewport::-webkit-scrollbar {
  display: none;
}

.product-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 80px) / 5);
  gap: 20px;
}

.product-track > li {
  scroll-snap-align: start;
}

.product-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--gray-300);
  border-top-width: 3px;
  background: var(--white);
  transition: border-color 0.28s, transform 0.28s var(--ease), box-shadow 0.28s;
}

.product-card:hover,
.product-card:focus-visible {
  border-color: var(--gray-300);
  border-top-color: var(--ink);
  transform: none;
  box-shadow: var(--shadow-soft);
}

.product-card figure {
  overflow: hidden;
  border-bottom: 1px solid var(--gray-200);
  background: var(--white);
}

.product-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  padding: 10px;
  background: var(--white);
  transition: transform 0.6s var(--ease);
}

.product-card:hover img,
.product-card:focus-visible img {
  transform: scale(1.05);
}

.product-tag {
  margin: 14px 16px 0;
  color: var(--muted);
  font-size: 13px;
}

.product-card h4 {
  display: -webkit-box;
  overflow: hidden;
  margin: 6px 16px 18px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 750;
  line-height: 1.3;
  letter-spacing: -0.02em;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.product-card:hover h4,
.product-card:focus-visible h4 {
  color: var(--brand);
}

.product-card.is-center {
  position: relative;
  z-index: 2;
  border-top-color: var(--ink);
  transform: scale(1.04);
  box-shadow: var(--shadow-soft);
}

.carousel-shell .carousel-arrow {
  width: 46px;
  height: 46px;
  border-color: var(--gray-300);
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 10px 26px rgba(70, 88, 102, .16);
}

.carousel-shell .carousel-arrow.is-disabled {
  opacity: .32;
  pointer-events: none;
}

.hot-products .carousel-shell .carousel-arrow {
  position: absolute;
  top: 40%;
  z-index: 3;
  width: 56px;
  height: 56px;
  border: 0;
  background: var(--gray-300);
  color: var(--ink);
  box-shadow: 0 10px 26px rgba(70, 88, 102, .22);
}

.hot-products .carousel-shell .carousel-arrow[data-carousel-previous] {
  left: clamp(8px, 1.2vw, 22px);
  transform: translateY(-50%);
}

.hot-products .carousel-shell .carousel-arrow[data-carousel-next] {
  right: clamp(8px, 1.2vw, 22px);
  transform: translateY(-50%);
}

.hot-products .carousel-viewport {
  padding-top: 14px;
}

.hot-products .carousel-shell .carousel-arrow:hover,
.hot-products .carousel-shell .carousel-arrow:focus-visible {
  background: #a7adb5;
  color: var(--ink);
  transform: translateY(-50%) scale(1.05);
}

.carousel-dots {
  justify-content: center;
  margin-top: 24px;
}

.carousel-dot {
  width: 26px;
  height: 3px;
  padding: 0;
  background: var(--gray-300);
  transition: background-color 0.25s;
}

.carousel-dot.is-active {
  background: var(--ink);
}

.news-fullbleed {
  width: 100vw;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  padding-inline: clamp(12px, 2vw, 32px);
}

.news-carousel {
  margin-top: 0;
}

.hot-action {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: clamp(20px, 2.4vw, 30px);
}

.hot-action .button .icon {
  width: 18px;
  height: 18px;
}

.news-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 88px) / 5);
  gap: 22px;
}

.news-track > li {
  display: flex;
  min-height: 100%;
}

.news-card {
  width: 100%;
  min-height: 350px;
  display: flex;
  border: 1px solid var(--gray-300);
  border-top-width: 3px;
  background: var(--white);
  transition: border-color 0.28s, transform 0.28s var(--ease), box-shadow 0.28s;
}

.news-card:hover,
.news-card:focus-within {
  border-color: var(--gray-300);
  border-top-color: var(--ink);
  transform: none;
  box-shadow: var(--shadow-soft);
}

.news-card a {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.news-card figure {
  overflow: hidden;
  border-bottom: 1px solid var(--gray-200);
}

.news-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.news-card a:hover img,
.news-card a:focus-visible img {
  transform: scale(1.05);
}

.news-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 18px 18px 20px;
}

.news-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
}

.news-tag {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 9px;
  border-left: 3px solid var(--accent);
  background: var(--gray-100);
  color: var(--steel);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.news-body h3 {
  display: -webkit-box;
  overflow: hidden;
  margin-top: 13px;
  font-size: 17px;
  line-height: 1.25;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.news-body p {
  display: -webkit-box;
  overflow: hidden;
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.news-body .card-link {
  margin-top: auto;
  padding-top: 18px;
  font-size: 14px;
}

.news-card a:hover h3,
.news-card a:focus-visible h3 {
  color: var(--brand);
}

.news-card a:hover .card-link,
.news-card a:focus-visible .card-link {
  color: var(--brand);
}

.empty-message {
  padding: 52px 24px;
  border: 1px dashed var(--gray-300);
  background: var(--gray-50);
  color: var(--muted);
  text-align: center;
}

.section-action {
  display: flex;
  justify-content: center;
  margin-top: clamp(36px, 5vw, 52px);
}

.site-footer {
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
  color: var(--text);
}

.footer-shell {
  width: min(100% - (var(--gutter) * 2), 1720px);
  margin-inline: auto;
}

.footer-brandline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(20px, 3vw, 48px);
  padding: clamp(34px, 4vw, 56px) 0 clamp(20px, 2.6vw, 32px);
  border-bottom: 1px solid var(--gray-200);
}

.footer-logo {
  height: clamp(48px, 4.6vw, 68px);
  width: auto;
}

.footer-slogan {
  max-width: 760px;
  color: var(--steel);
  font-size: clamp(15px, 1.5vw, 21px);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.01em;
  text-align: right;
}

.footer-grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr 1.4fr 1.15fr;
  gap: clamp(28px, 3.4vw, 60px);
  padding: clamp(40px, 4.6vw, 64px) 0;
}

.footer-column h3 {
  color: var(--ink);
  font-size: 18px;
}

.footer-column ul {
  margin-top: 22px;
}

.footer-column li + li {
  margin-top: 12px;
}

.footer-column a {
  color: var(--muted);
  transition: color 0.2s;
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: var(--brand);
}

.footer-contact li {
  display: flex;
  gap: 12px;
}

.footer-contact li + li {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-200);
}

.footer-contact .icon {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  color: var(--brand);
}

.footer-contact-body {
  display: block;
}

.footer-contact-body > span:first-child {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.footer-contact-body a,
.footer-contact-body p {
  display: block;
  margin-top: 2px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
}

.footer-contact-body p {
  font-weight: 400;
}

.footer-qr {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
}

.footer-qr img {
  width: 96px;
  height: 96px;
  object-fit: contain;
  padding: 6px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(18, 20, 22, 0.08);
}

.footer-qr span {
  display: block;
  max-width: 150px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.footer-social-link {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: #fff;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

/* Outrank the generic .footer-column a color so the glyphs stay white. */
.footer-column a.footer-social-link,
.footer-column a.footer-social-link:hover,
.footer-column a.footer-social-link:focus-visible {
  color: #fff;
}

.footer-social-link:hover,
.footer-social-link:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(18, 20, 22, 0.18);
}

.footer-social-link svg {
  width: 17px;
  height: 17px;
}

.footer-social-link.is-facebook {
  background: #1877f2;
}

.footer-social-link.is-youtube {
  background: #f00;
}

.footer-social-link.is-tiktok {
  background: #010101;
}

.footer-social-link.is-instagram {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
}

.footer-message-hint {
  margin-top: 14px;
  color: var(--muted);
  font-size: 14px;
}

.footer-form {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.footer-form input,
.footer-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  font: inherit;
  font-size: 14px;
  line-height: 1.5;
}

.footer-form input:focus,
.footer-form textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(77, 177, 228, 0.18);
}

.footer-form textarea {
  min-height: 96px;
  resize: vertical;
}

.footer-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.footer-submit {
  width: 100%;
}

.footer-form-note {
  margin-top: 14px;
  padding: 10px 14px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 14px;
  line-height: 1.5;
}

.footer-form-note.is-success {
  border-color: rgba(77, 177, 228, 0.45);
  background: rgba(77, 177, 228, 0.14);
  color: #1e6e96;
}

.footer-form-note.is-error {
  border-color: rgba(232, 68, 68, 0.4);
  background: rgba(232, 68, 68, 0.1);
  color: #b32626;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
  border-top: 1px solid var(--gray-200);
  color: var(--muted);
  font-size: 14px;
}

.footer-bottom ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  color: var(--brand);
}

.video-inline-player {
  position: relative;
  overflow: hidden;
  background: #101418;
}

.video-inline-player > img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.video-inline-player:hover > img {
  transform: scale(1.04);
}

.video-cover {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.video-play {
  width: clamp(64px, 7vw, 88px);
  height: clamp(64px, 7vw, 88px);
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(77, 177, 228, 0.92);
  color: var(--white);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.28);
  transition: transform 0.28s var(--ease), background-color 0.28s;
}

.video-cover:hover .video-play,
.video-cover:focus-visible .video-play {
  transform: scale(1.08);
  background: var(--brand-red);
}

.video-play .icon {
  width: 42%;
  height: 42%;
  margin-left: 4px;
  fill: currentColor;
  stroke: none;
}

.video-inline {
  display: none;
  width: 100%;
  height: auto;
  background: #000;
}

.about-media.is-playing .video-inline-player > img,
.about-media.is-playing .video-cover {
  display: none;
}

.about-media.is-playing .video-inline {
  display: block;
}

#news {
  background: transparent;
  border: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
  transition-delay: var(--delay, 0s);
}

.about-media-band.reveal {
  --delay: 0.08s;
}

.category-grid > .category-card.reveal:nth-child(2) {
  --delay: 0.06s;
}

.category-grid > .category-card.reveal:nth-child(3) {
  --delay: 0.12s;
}

.category-grid > .category-card.reveal:nth-child(4) {
  --delay: 0.18s;
}

.category-grid > .category-card.reveal:nth-child(5) {
  --delay: 0.24s;
}

.news-track > li:nth-child(2) .news-card.reveal,
.news-track > li:nth-child(3) .news-card.reveal,
.news-track > li:nth-child(4) .news-card.reveal,
.news-track > li:nth-child(5) .news-card.reveal,
.news-track > li:nth-child(6) .news-card.reveal,
.news-track > li:nth-child(7) .news-card.reveal,
.news-track > li:nth-child(8) .news-card.reveal {
  --delay: 0.06s;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

::selection {
  background: var(--ink);
  color: var(--white);
}

:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
}

@media (max-width: 1180px) {
  .header-contact {
    display: none;
  }

  .category-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .category-card {
    min-height: 184px;
  }

  .news-track {
    grid-auto-columns: calc((100% - 44px) / 3);
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1080px) {
  html {
    scroll-padding-top: 84px;
  }

  .header-inner {
    min-height: 70px;
  }

  .brand-logo {
    height: 56px;
  }

  .nav-toggle {
    display: block;
    margin-left: auto;
    flex: 0 0 auto;
  }

  .header-button {
    display: none;
  }

  .primary-nav {
    position: fixed;
    inset: 0;
    z-index: 110;
    display: block;
    margin: 0;
    padding: 104px var(--gutter) 40px;
    background: var(--white);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-14px);
    overflow-y: auto;
    transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0.3s;
  }

  body.nav-open .primary-nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  body.nav-open {
    overflow: hidden;
  }

  .menu {
    display: block;
    max-width: 620px;
    margin-inline: auto;
  }

  .menu > li + li {
    border-top: 1px solid rgba(0, 0, 0, 0.12);
  }

  .menu-row {
    width: 100%;
    justify-content: space-between;
  }

  .menu-link,
  .site-header.is-scrolled .menu-link {
    min-height: 68px;
    padding: 20px 0;
    font-size: 19px;
  }

  .menu-link::after {
    display: none;
  }

  .dropdown-btn {
    display: grid;
    place-items: center;
  }

  .dropdown-panel {
    position: static;
    display: none;
    padding: 4px 0 18px;
    opacity: 1;
    visibility: visible;
    transform: none;
    border: 0;
    box-shadow: none;
  }

  .dropdown-panel::before {
    display: none;
  }

  .has-panel:hover > .dropdown-panel {
    display: none;
  }

  .has-panel.open > .dropdown-panel {
    display: block;
  }

  .has-panel.open > .menu-row .menu-link {
    color: var(--ink);
  }

  .has-panel.open .dropdown-btn .icon {
    transform: rotate(180deg);
  }

  .dropdown-panel {
    width: auto;
    background: var(--gray-50);
    backdrop-filter: blur(10px);
  }

  .dropdown-list > li + li {
    border-top: 1px solid rgba(0, 0, 0, 0.12);
  }

  .dropdown-list > li > a {
    min-height: 48px;
    padding: 0;
    background: transparent;
    color: var(--ink);
    font-size: 15px;
  }

  .dropdown-list > li > a:hover,
  .dropdown-list > li > a:focus-visible {
    background: rgba(255, 255, 255, 0.55);
    color: var(--ink);
  }

  .dropdown-item > a .icon {
    display: none;
  }

  .submenu {
    position: static;
    display: block;
    width: auto;
    padding: 0 0 0 18px;
    background: var(--gray-50);
  }

  .submenu li + li a {
    border-top: 0;
  }

  .submenu a {
    min-height: 48px;
    height: auto;
    padding: 0;
    background: transparent;
    color: var(--ink);
  }

  .submenu a:hover,
  .submenu a:focus-visible {
    background: rgba(255, 255, 255, 0.55);
    color: var(--ink);
  }

  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-card {
    min-height: 210px;
  }

  .hero-stage {
    height: calc(100vh - 71px);
    height: calc(100svh - 71px);
  }

  .hero-copy {
    max-width: min(560px, 80vw);
  }

  .hero-controls {
    padding-inline: 12px;
  }
}

@media (max-width: 900px) {
  .carousel-shell {
    grid-template-columns: 1fr;
  }

  .carousel-shell .carousel-arrow {
    display: none;
  }

  .about-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .category-card {
    min-height: 0;
  }

  .news-track {
    grid-auto-columns: calc((100% - 22px) / 2);
  }

  .product-track {
    grid-auto-columns: calc((100% - 20px) / 2);
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .lang-switch {
    height: 36px;
    margin-left: auto;
    margin-right: 0;
  }

  .nav-toggle {
    margin-left: 0;
  }
}

@media (max-width: 620px) {
  .brand-logo {
    height: 48px;
  }

  .hero-stage {
    height: calc(100vh - 71px);
    height: calc(100svh - 71px);
  }

  .hero-copy {
    gap: 10px;
    max-width: min(560px, 86vw);
  }

  .footer-brandline {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .footer-slogan {
    text-align: left;
  }

  .section {
    padding-top: 44px;
    padding-bottom: 44px;
  }

  .category-grid {
    grid-template-columns: 1fr;
  }

  .about-stats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    margin-top: 22px;
    padding-top: 18px;
  }

  .about-stats dt {
    font-size: clamp(1rem, 3.8vw, 1.15rem);
  }

  .about-stats dd {
    margin-top: 3px;
    font-size: 10px;
    line-height: 1.25;
  }

  .about-profile > p {
    text-align: left;
  }

  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 20px;
  }

  .feature-card {
    gap: 6px;
    min-height: 0;
    padding: 14px 10px;
  }

  .feature-icon {
    width: 34px;
    height: 34px;
  }

  .feature-icon .icon {
    width: 28px;
    height: 28px;
  }

  .feature-label {
    font-size: 13px;
    line-height: 1.25;
  }

  .feature-text {
    font-size: 10px;
    line-height: 1.45;
  }

  .news-track {
    grid-auto-columns: 100%;
  }

  .product-track {
    grid-auto-columns: 100%;
    gap: 0;
  }

  .product-track > li,
  .product-track .product-card {
    width: 100%;
  }

  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .category-card {
    gap: 10px;
    min-height: 0;
    padding: 12px 8px 10px;
  }

  .category-icon {
    width: 72px;
    height: 72px;
  }

  .category-name {
    font-size: 12px;
  }

  .news-card {
    min-height: 0;
  }

  .news-card img {
    aspect-ratio: 4 / 3;
  }

  .news-body {
    padding: 14px 14px 16px;
  }

  .product-card img {
    padding: 8px;
  }

  .product-card h4 {
    margin: 5px 12px 14px;
    font-size: 14px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom ul {
    gap: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .hero-media {
    transform: none;
  }
}

/* Floating side quick-contact bar (phone / WhatsApp / email / top) */
.side-nav {
  position: fixed;
  top: 65%;
  right: 8px;
  transform: translateY(-50%);
  z-index: 80;
}

.side-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.side-nav-box {
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.side-nav-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  padding: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--brand);
  font-family: inherit;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(70, 88, 102, 0.1);
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}

.side-nav-item .icon {
  width: 24px;
  height: 24px;
  fill: currentColor;
  stroke: none;
  pointer-events: none;
}

.side-nav-panel {
  position: absolute;
  right: calc(100% + 6px);
  top: 50%;
  transform: translate(10px, -50%);
  display: flex;
  align-items: center;
  height: 56px;
  padding: 0 20px;
  background: var(--brand);
  color: var(--white);
  font-size: 15px;
  letter-spacing: 0.02em;
  white-space: nowrap;
  border-radius: var(--radius);
  box-shadow: 0 2px 10px rgba(70, 88, 102, 0.1);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), visibility 0s linear 0.25s;
}

.side-nav-panel-media {
  height: auto;
  padding: 8px;
}

.side-nav-panel-media img {
  display: block;
  width: 132px;
  max-width: none;
  height: auto;
}

.side-nav-box:hover .side-nav-item,
.side-nav-item:focus-visible {
  background: var(--brand);
  border-color: var(--brand);
  color: var(--white);
}

.side-nav-box:hover .side-nav-panel {
  opacity: 1;
  visibility: visible;
  transform: translate(0, -50%);
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
}

@media (max-width: 720px) {
  .side-nav-item {
    width: 44px;
    height: 44px;
  }

  .side-nav-item .icon {
    width: 19px;
    height: 19px;
  }

  .side-nav-panel-media img {
    width: 104px;
    max-width: none;
    height: auto;
  }
}
