﻿:root {
  --blue: #137bc0;
  --blue-dark: #0a5d99;
  --yellow: #ffb50f;
  --red: #df1f26;
  --ink: #333333;
  --muted: #777777;
  --line: #e8e8e8;
  --soft: #f5f5f5;
  --black: #191919;
  --white: #ffffff;
  --energy-navy: #07244b;
  --energy-blue: #0d4f93;
  --energy-yellow: #ffbd00;
  --energy-red: #e2232a;
  --energy-soft: #f6f8fb;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1.65;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

h1,
h2,
h3,
p {
  margin-top: 0;
  overflow-wrap: anywhere;
}

.container {
  width: min(1200px, calc(100% - 30px));
  margin: 0 auto;
}

.top-header {
  position: relative;
  z-index: 20;
  height: 61px;
  background: var(--white);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.header-row {
  display: grid;
  grid-template-columns: 330px 1fr;
  align-items: center;
  height: 61px;
}

.logo {
  display: flex;
  align-items: center;
  width: 147px;
  height: 61px;
}

.logo img {
  width: 100%;
  max-height: 52px;
  object-fit: contain;
  filter: grayscale(1) contrast(180%);
}

.main-nav {
  display: flex;
  justify-content: flex-end;
  align-items: stretch;
  height: 61px;
}

.main-nav > a,
.language-button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 61px;
  padding: 0 10px;
  color: #343434;
  background: transparent;
  border: 0;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.main-nav > a:hover,
.main-nav > a.active,
.language-button:hover,
.language-button.active {
  color: var(--blue);
}

.flag {
  position: relative;
  display: inline-block;
  flex: 0 0 auto;
  width: 22px;
  height: 14px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.24);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35);
}

.flag-gb {
  background:
    linear-gradient(27deg, transparent 42%, #ffffff 42% 48%, #c8102e 48% 52%, #ffffff 52% 58%, transparent 58%),
    linear-gradient(153deg, transparent 42%, #ffffff 42% 48%, #c8102e 48% 52%, #ffffff 52% 58%, transparent 58%),
    linear-gradient(to bottom, transparent 35%, #ffffff 35% 45%, #c8102e 45% 55%, #ffffff 55% 65%, transparent 65%),
    linear-gradient(to right, transparent 35%, #ffffff 35% 45%, #c8102e 45% 55%, #ffffff 55% 65%, transparent 65%),
    #012169;
}

.flag-es {
  background: linear-gradient(to bottom, #aa151b 0 25%, #f1bf00 25% 75%, #aa151b 75%);
}

.flag-de {
  background: linear-gradient(to bottom, #000000 0 33.333%, #dd0000 33.333% 66.666%, #ffce00 66.666%);
}

.mobile-menu {
  display: none;
  align-items: center;
  gap: 4px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 0;
}

.mobile-menu span {
  display: block;
  width: 23px;
  height: 2px;
  background: var(--ink);
}

.mobile-menu b {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.hero-slider {
  position: relative;
  height: min(533px, 42vw);
  min-height: 360px;
  overflow: hidden;
  background: #10151b;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 500ms ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.36) 38%, rgba(0, 0, 0, 0.04) 70%);
  content: "";
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
}

.hero-slide:not(:first-child) img {
  object-fit: contain;
  padding: 54px clamp(24px, 8vw, 120px) 54px clamp(420px, 39vw, 620px);
  background: linear-gradient(135deg, #f6f6f6, #ffffff);
}

.slide-copy {
  position: absolute;
  top: 50%;
  left: max(30px, calc((100vw - 1200px) / 2 + 15px));
  z-index: 3;
  width: min(460px, calc(100% - 60px));
  transform: translateY(-50%);
  color: var(--white);
}

.slide-copy span {
  display: inline-block;
  margin-bottom: 18px;
  padding: 7px 13px;
  background: var(--yellow);
  color: #111111;
  font-weight: 900;
  text-transform: uppercase;
}

.slide-copy h1 {
  margin-bottom: 16px;
  font-size: clamp(31px, 4vw, 50px);
  line-height: 1.08;
  font-weight: 900;
}

.slide-copy p {
  max-width: 430px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 17px;
  font-weight: 600;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 48px;
  height: 74px;
  background: rgba(0, 0, 0, 0.28);
  border: 0;
  transform: translateY(-50%);
}

.slider-arrow::before {
  width: 16px;
  height: 16px;
  border-top: 3px solid #ffffff;
  border-left: 3px solid #ffffff;
  content: "";
}

.slider-arrow.prev {
  left: 0;
}

.slider-arrow.prev::before {
  transform: rotate(-45deg);
}

.slider-arrow.next {
  right: 0;
}

.slider-arrow.next::before {
  transform: rotate(135deg);
}

.home-panels {
  padding: 54px 0;
  background: #ffffff;
}

.home-panel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.home-panel-grid a {
  position: relative;
  min-height: 210px;
  padding: 30px 28px;
  overflow: hidden;
  color: #ffffff;
  background: #222222;
  isolation: isolate;
}

.home-panel-grid a::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(135deg, rgba(19, 123, 192, 0.92), rgba(25, 25, 25, 0.96));
  content: "";
}

.home-panel-grid a:nth-child(2)::before {
  background: linear-gradient(135deg, rgba(255, 181, 15, 0.95), rgba(223, 31, 38, 0.86));
}

.home-panel-grid a:nth-child(3)::before {
  background: linear-gradient(135deg, rgba(25, 25, 25, 0.96), rgba(19, 123, 192, 0.86));
}

.home-panel-grid a::after {
  position: absolute;
  right: -24px;
  bottom: -30px;
  z-index: -1;
  width: 140px;
  height: 140px;
  border: 18px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  content: "";
}

.home-panel-grid span {
  display: inline-block;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 900;
  text-transform: uppercase;
}

.home-panel-grid h2 {
  margin: 0;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.16;
  font-weight: 900;
}

.page-hero {
  padding: 92px 0;
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.42)),
    url("assets/sovko-hero.png") right center / cover no-repeat;
}

.products-hero {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.74), rgba(0, 0, 0, 0.36)),
    url("assets/sovko-packaging-yellow.png") right center / contain no-repeat,
    linear-gradient(135deg, #eeeeee, #ffffff);
}

.contact-hero {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.42)),
    url("assets/sovko-packaging-silver.png") right center / contain no-repeat,
    linear-gradient(135deg, #e7e7e7, #ffffff);
}

.catalog-hero {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.34)),
    url("assets/catalogo/ZFR6U-9.jpg") right center / contain no-repeat,
    linear-gradient(135deg, #ededed, #ffffff);
}

.page-hero span {
  display: inline-block;
  margin-bottom: 14px;
  padding: 7px 13px;
  background: var(--yellow);
  color: #111111;
  font-weight: 900;
  text-transform: uppercase;
}

.page-hero h1 {
  width: min(700px, 100%);
  margin: 0;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.06;
  font-weight: 900;
}

.search-frame {
  padding: 46px 0;
  background: #ffffff;
}

.search-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 26px;
  align-items: stretch;
}

.search-title {
  display: grid;
  place-items: center;
  min-height: 99px;
  background: var(--yellow);
  text-align: center;
}

.search-title h2 {
  margin: 0;
  color: #222222;
  font-size: 30px;
  font-weight: 900;
}

.part-search {
  display: grid;
  grid-template-columns: minmax(184px, 0.9fr) minmax(220px, 1.6fr) 92px;
  align-items: center;
  padding: 26px;
  background: var(--yellow);
}

.part-search select,
.part-search input {
  width: 100%;
  height: 46px;
  border: 0;
}

.part-search select {
  padding: 0 16px;
  background: #ededed;
  color: #333333;
  font-weight: 700;
}

.part-search input {
  padding: 0 14px;
  background: #ffffff;
  color: #555555;
}

.part-search input.search-pulse {
  outline: 3px solid rgba(19, 123, 192, 0.35);
}

.part-search button {
  position: relative;
  height: 46px;
  background: transparent;
  border: 3px solid #ffffff;
}

.part-search button::before {
  position: absolute;
  top: 12px;
  left: 33px;
  width: 14px;
  height: 14px;
  border: 3px solid #ffffff;
  border-radius: 50%;
  content: "";
}

.part-search button::after {
  position: absolute;
  top: 29px;
  left: 48px;
  width: 13px;
  height: 3px;
  background: #ffffff;
  transform: rotate(45deg);
  content: "";
}

.product-categories {
  padding: 0 0 56px;
}

.category-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-bottom: 0;
}

.category-row a {
  display: grid;
  place-items: center;
  min-height: 164px;
  color: var(--blue);
  border-bottom: 1px solid var(--line);
  transition: color 180ms ease, background 180ms ease;
}

.category-row a:hover {
  color: #ffffff;
  background: var(--blue);
}

.category-row span {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 16px;
  border: 3px solid currentColor;
  border-radius: 50%;
  font-size: 18px;
  font-weight: 900;
}

.category-row b {
  font-size: 16px;
  font-weight: 900;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.product-card {
  min-height: 570px;
  padding: 0 15px;
  color: var(--ink);
}

.product-card a,
.product-card {
  display: block;
}

.product-text {
  min-height: 273px;
  padding-top: 51px;
}

.product-text h3 {
  position: relative;
  margin-bottom: 20px;
  padding-left: 30px;
  font-size: 30px;
  line-height: 1.12;
  font-weight: 900;
}

.product-text h3::before {
  position: absolute;
  top: 5px;
  left: 0;
  width: 8px;
  height: 34px;
  background: var(--yellow);
  content: "";
}

.product-text p {
  min-height: 118px;
  margin-bottom: 16px;
  color: #6d6d6d;
}

.product-text strong {
  display: block;
  color: var(--blue);
  font-size: 17px;
  font-weight: 900;
}

.product-card figure {
  display: grid;
  place-items: center;
  min-height: 168px;
  margin: 26px 0;
  padding: 16px;
  background: #f5f7f9;
}

.product-card img {
  max-height: 178px;
  object-fit: contain;
  filter: drop-shadow(0 12px 14px rgba(0, 0, 0, 0.14));
}

.technology-section {
  padding: 74px 0;
  color: #ffffff;
  background: linear-gradient(120deg, #135f99, #0b3555);
}

.technology-grid,
.brand-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 42px;
  align-items: center;
}

.section-tag {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--yellow);
  font-weight: 900;
  text-transform: uppercase;
}

.technology-section h2,
.brand-section h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.15;
  font-weight: 900;
}

.technology-section p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
}

.tech-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tech-list li {
  display: grid;
  grid-template-columns: 110px 1fr;
  align-items: center;
  min-height: 86px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.1);
}

.tech-list b {
  color: var(--yellow);
  font-size: 36px;
  line-height: 1;
}

.tech-list span {
  color: #ffffff;
  font-weight: 800;
}

.news-section {
  padding: 60px 0 74px;
  background: #ffffff;
}

.news-section h2 {
  margin-bottom: 28px;
  color: var(--ink);
  font-size: 31px;
  font-weight: 900;
  text-align: center;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.news-grid article {
  background: #ffffff;
  border: 1px solid var(--line);
}

.news-grid img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  padding: 20px;
  background: #f4f6f8;
}

.news-grid div {
  padding: 22px;
}

.news-grid h3 {
  margin-bottom: 11px;
  font-size: 18px;
  font-weight: 900;
}

.news-grid p {
  color: var(--muted);
}

.brand-section {
  padding: 70px 0;
  background: #f4f4f4;
}

.brand-grid {
  grid-template-columns: 0.9fr 1.1fr;
}

.brand-grid > img {
  width: 100%;
  max-height: 360px;
  object-fit: contain;
  filter: drop-shadow(0 22px 22px rgba(0, 0, 0, 0.16));
}

.brand-section .section-tag {
  color: var(--blue);
}

.brand-section p {
  color: var(--muted);
  font-size: 16px;
}

.spec-section {
  background: linear-gradient(120deg, #111111, #0a5d99);
}

.contact-page {
  padding: 72px 0;
  background: #ffffff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 58px;
  align-items: start;
}

.contact-grid h2 {
  margin-bottom: 16px;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.12;
  font-weight: 900;
}

.contact-grid p {
  color: var(--muted);
  font-size: 16px;
}

.contact-lines {
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.contact-lines strong {
  color: var(--ink);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 32px;
  background: #f5f7f9;
  border-left: 8px solid var(--yellow);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: #333333;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #dddddd;
  background: #ffffff;
  color: #333333;
  font: inherit;
}

.contact-form input {
  height: 48px;
  padding: 0 14px;
}

.contact-form textarea {
  min-height: 130px;
  padding: 12px 14px;
  resize: vertical;
}

.contact-form button {
  justify-self: start;
  min-height: 48px;
  padding: 0 24px;
  color: #111111;
  background: var(--yellow);
  border: 0;
  font-weight: 900;
  text-transform: uppercase;
}

.catalog-page {
  padding: 56px 0 78px;
  background: #ffffff;
}

.catalog-shell {
  display: grid;
  grid-template-columns: 286px minmax(0, 1fr);
  gap: 32px;
  align-items: start;
}

.catalog-sidebar {
  min-width: 0;
}

.catalog-filter-panel {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 22px;
  padding: 22px;
  border: 1px solid var(--line);
  background: #ffffff;
}

.catalog-filter-panel h2 {
  margin: 0;
  font-size: 22px;
  font-weight: 900;
  text-transform: uppercase;
}

.catalog-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.catalog-result-count {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.catalog-result-count b {
  color: var(--ink);
}

.catalog-search {
  display: grid;
  grid-template-columns: 1fr;
  background: #f5f7f9;
  border: 1px solid var(--line);
}

.catalog-search input {
  width: 100%;
  min-width: 0;
  min-height: 48px;
  border: 0;
  padding: 0 14px;
  background: transparent;
  color: var(--ink);
}

.catalog-search button {
  min-height: 42px;
  border: 0;
  border-top: 1px solid var(--line);
  color: #111111;
  background: #ffffff;
  font-weight: 900;
  text-transform: uppercase;
}

.catalog-filter-group {
  display: grid;
  gap: 10px;
}

.catalog-filter-group h3 {
  margin: 0;
  color: #555555;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.catalog-filters,
.catalog-hex-filters,
.catalog-brand-filters {
  display: grid;
  gap: 8px;
}

.catalog-filters button,
.catalog-hex-filters button,
.catalog-brand-filters button {
  width: 100%;
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid var(--line);
  color: var(--ink);
  background: #ffffff;
  text-align: left;
  font-weight: 900;
}

.catalog-filters button.active,
.catalog-filters button:hover,
.catalog-hex-filters button.active,
.catalog-hex-filters button:hover,
.catalog-brand-filters button.active,
.catalog-brand-filters button:hover {
  border-color: var(--blue);
  color: #ffffff;
  background: var(--blue);
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.catalog-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #ffffff;
}

.catalog-card[hidden] {
  display: none;
}

.catalog-summary-card {
  display: grid;
  grid-template-rows: auto 1fr;
}

.catalog-summary-image {
  display: grid;
  place-items: center;
  min-height: 154px;
  background: #f6f7f8;
  border-bottom: 1px solid var(--line);
}

.catalog-summary-image img {
  width: 100%;
  height: 154px;
  object-fit: contain;
  padding: 12px;
}

.catalog-summary-content {
  display: grid;
  gap: 14px;
  padding: 16px;
}

.catalog-summary-specs {
  display: grid;
  gap: 7px;
  margin: 0;
}

.catalog-summary-specs div {
  display: grid;
  grid-template-columns: minmax(92px, auto) 1fr;
  gap: 10px;
  align-items: center;
  min-height: 34px;
  padding: 7px 8px;
  background: #f5f7f9;
}

.catalog-summary-specs dt {
  color: #666666;
  font-size: 11px;
  font-weight: 900;
  line-height: 1.15;
  text-transform: uppercase;
}

.catalog-summary-specs dd {
  margin: 0;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.catalog-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-top: auto;
}

.catalog-detail-button,
.catalog-store-button,
.catalog-back {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  color: #ffffff;
  background: var(--blue);
  font-size: 13px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.catalog-store-button {
  color: #111111;
  background: var(--yellow);
}

.catalog-back {
  justify-self: start;
  margin-bottom: 18px;
  background: #222222;
}

.catalog-detail-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #ffffff;
}

.catalog-detail-card header {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border-bottom: 1px solid var(--line);
}

.catalog-code {
  display: grid;
  place-items: center;
  min-width: 96px;
  min-height: 58px;
  color: #ffffff;
  background: #222222;
  font-size: 26px;
  font-weight: 900;
}

.catalog-detail-card h2 {
  margin: 0 0 3px;
  font-size: 24px;
  line-height: 1.08;
  font-weight: 900;
}

.catalog-detail-card header p {
  margin: 0;
  color: var(--blue);
  font-weight: 900;
  text-transform: uppercase;
}

.catalog-body {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: 0;
}

.catalog-data-panel {
  display: grid;
  gap: 24px;
  padding: 22px;
  border-right: 1px solid var(--line);
}

.catalog-detail-card h3 {
  margin-bottom: 14px;
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
}

.catalog-specs {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin: 0;
}

.catalog-specs div {
  min-height: 64px;
  padding: 11px 12px;
  background: #f5f7f9;
}

.catalog-specs dt {
  color: #6c6c6c;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.catalog-specs dd {
  margin: 5px 0 0;
  color: var(--ink);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.25;
}

.catalog-cross ul {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.catalog-cross li {
  display: grid;
  grid-template-columns: minmax(76px, auto) minmax(0, 1fr);
  align-items: center;
  min-height: 42px;
  background: #eef0f2;
  border-left: 4px solid var(--yellow);
}

.catalog-cross b,
.catalog-cross span {
  min-width: 0;
  padding: 9px 10px;
  line-height: 1.2;
}

.catalog-cross b {
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.catalog-cross span {
  color: #333333;
  font-size: 14px;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.catalog-applications {
  padding: 22px;
  border-top: 1px solid var(--line);
}

.catalog-applications p {
  margin: 0;
  color: #5e5e5e;
  font-size: 15px;
  line-height: 1.7;
}

.catalog-media {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 22px;
  background: #fbfbfb;
}

.catalog-image {
  display: block;
  background: #f6f6f6;
}

.catalog-image img {
  width: 100%;
  aspect-ratio: 2.12 / 1;
  object-fit: contain;
  background: #ffffff;
}

.catalog-empty {
  margin: 30px 0 0;
  padding: 26px;
  border: 1px solid var(--line);
  color: var(--muted);
  text-align: center;
  font-weight: 800;
}

.catalog-empty[hidden] {
  display: none;
}

.catalog-pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 30px;
}

.catalog-pagination button {
  min-width: 42px;
  min-height: 42px;
  border: 1px solid var(--line);
  color: var(--ink);
  background: #ffffff;
  font-weight: 900;
}

.catalog-pagination button.active,
.catalog-pagination button:hover:not(:disabled) {
  border-color: var(--blue);
  color: #ffffff;
  background: var(--blue);
}

.catalog-pagination button:disabled {
  color: #aaaaaa;
  cursor: not-allowed;
}

.footer {
  padding: 51px 0 0;
  background: var(--black);
  color: #aaaaaa;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  gap: 48px;
  align-items: center;
}

.footer-logo {
  width: 161px;
  max-height: 49px;
  object-fit: contain;
  margin-bottom: 18px;
  filter: grayscale(1) invert(1) contrast(180%);
  mix-blend-mode: lighten;
}

.footer p {
  margin-bottom: 8px;
}

.footer-contact {
  color: #d9d9d9;
  font-weight: 700;
}

.footer-qr {
  display: grid;
  place-items: center;
  width: 124px;
  height: 124px;
  color: #111111;
  background: #ffffff;
  text-align: center;
}

.footer-qr span {
  color: var(--red);
  font-size: 22px;
  font-weight: 900;
}

.footer-qr small {
  color: var(--ink);
  font-weight: 800;
}

.copyright {
  margin-top: 42px;
  padding: 18px 15px;
  color: #8a8a8a;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

@media (max-width: 1080px) {
  .header-row {
    grid-template-columns: 230px 1fr;
  }

  .logo {
    width: 126px;
  }

  .main-nav > a,
  .language-button {
    padding: 0 7px;
    font-size: 12px;
  }

  .search-grid,
  .technology-grid,
  .brand-grid,
  .contact-grid,
  .catalog-body,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .catalog-shell {
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 24px;
  }

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

  .catalog-data-panel {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .home-panel-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 760px) {
  .top-header {
    height: 61px;
  }

  .header-row {
    grid-template-columns: 1fr auto;
  }

  .logo {
    width: 109px;
  }

  .mobile-menu {
    display: grid;
    justify-items: center;
  }

  .main-nav {
    position: fixed;
    top: 61px;
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    height: auto;
    padding: 20px 24px;
    overflow: auto;
    background: #191919;
  }

  .main-nav.open {
    display: block;
  }

  .main-nav > a,
  .language-button {
    display: flex;
    width: 100%;
    min-height: 48px;
    padding: 0;
    color: #ffffff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    text-align: left;
  }

  .hero-slider {
    height: 520px;
  }

  .hero-slide img {
    object-fit: cover;
  }

  .hero-slide:not(:first-child) img {
    padding: 35px 18px 180px;
  }

  .slide-copy {
    top: auto;
    bottom: 46px;
    left: 18px;
    width: calc(100% - 36px);
    transform: none;
  }

  .slide-copy h1 {
    font-size: 34px;
  }

  .slider-arrow {
    width: 38px;
    height: 58px;
  }

  .search-grid,
  .part-search,
  .category-row,
  .product-grid,
  .home-panel-grid,
  .catalog-toolbar,
  .news-grid {
    grid-template-columns: 1fr;
  }

  .home-panels,
  .contact-page {
    padding: 42px 0;
  }

  .page-hero {
    padding: 62px 0;
    background-position: center;
  }

  .page-hero h1 {
    font-size: 36px;
  }

  .home-panel-grid a {
    min-height: 170px;
  }

  .contact-form {
    padding: 24px;
  }

  .catalog-page {
    padding: 40px 0 56px;
  }

  .catalog-shell {
    grid-template-columns: 1fr;
  }

  .catalog-filter-panel {
    position: static;
  }

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

  .catalog-search {
    grid-template-columns: 1fr;
  }

  .catalog-search button {
    min-height: 44px;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .catalog-specs {
    grid-template-columns: 1fr;
  }

  .catalog-cross ul {
    grid-template-columns: 1fr;
  }

  .catalog-detail-card header {
    grid-template-columns: 1fr;
  }

  .catalog-code {
    justify-self: start;
  }

  .part-search {
    gap: 10px;
  }

  .category-row a {
    min-height: 120px;
  }

  .product-card {
    min-height: auto;
  }

  .product-text {
    min-height: 0;
  }

  .tech-list li {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .footer-logo {
    width: 140px;
  }
}

.home-page {
  --energy-navy: #07244b;
  --energy-blue: #0d4f93;
  --energy-yellow: #ffbd00;
  --energy-red: #e2232a;
  --energy-soft: #f6f8fb;
  color: var(--energy-navy);
  background: #ffffff;
}

.home-page .container {
  width: min(1160px, calc(100% - 40px));
}

.energy-header {
  height: auto;
  background: #ffffff;
  border-bottom: 1px solid #edf0f4;
  box-shadow: 0 8px 22px rgba(7, 36, 75, 0.04);
}

.energy-header .container {
  width: min(1160px, calc(100% - 40px));
}

.energy-topbar {
  border-bottom: 1px solid #edf0f4;
  background: #ffffff;
}

.energy-topbar-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 42px;
  gap: 18px;
}

.energy-trust-strip,
.energy-language-strip {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 28px;
}

.energy-trust-strip span,
.energy-metrics span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.energy-trust-strip b,
.energy-language-strip .language-button {
  color: var(--energy-navy);
  font-size: 13px;
  font-weight: 700;
}

.energy-language-strip {
  gap: 12px;
}

.energy-language-strip .language-button {
  min-height: 28px;
  padding: 0 5px;
}

.energy-nav-row {
  grid-template-columns: 245px 1fr;
  height: 96px;
}

.energy-logo {
  display: grid;
  align-content: center;
  width: 190px;
  height: 96px;
}

.energy-logo img {
  width: 178px;
  max-height: 54px;
  filter: none;
}

.energy-logo span {
  margin-top: -7px;
  margin-left: 60px;
  color: var(--energy-yellow);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.14em;
  line-height: 1;
}

.energy-main-nav {
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
  height: 96px;
}

.energy-main-nav > a {
  position: relative;
  min-height: 44px;
  padding: 0;
  color: var(--energy-navy);
  font-size: 15px;
  font-weight: 800;
}

.energy-main-nav > a.active::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 3px;
  background: var(--energy-yellow);
  content: "";
}

.energy-main-nav > a:hover {
  color: var(--energy-blue);
}

.energy-search-link {
  min-height: 46px !important;
  padding: 0 16px !important;
  border-radius: 6px;
  background: var(--energy-yellow);
  color: #071b35 !important;
  gap: 12px;
}

.energy-search-link::after {
  display: none;
}

.energy-search-link i,
.energy-search-box button::before {
  width: 18px;
  height: 18px;
  border: 3px solid currentColor;
  border-radius: 50%;
  content: "";
}

.energy-search-link i {
  position: relative;
  display: inline-block;
}

.energy-search-link i::after,
.energy-search-box button::after {
  position: absolute;
  width: 10px;
  height: 3px;
  background: currentColor;
  transform: rotate(45deg);
  content: "";
}

.energy-search-link i::after {
  right: -7px;
  bottom: -4px;
}

.energy-hero {
  position: relative;
  min-height: 590px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.94) 33%, rgba(255, 255, 255, 0.55) 52%, rgba(255, 255, 255, 0.05) 70%),
    url("assets/sovko-header-hero.png") right center / cover no-repeat;
}

.energy-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 520px) 1fr;
  align-items: center;
  min-height: 590px;
}

.energy-hero-copy {
  position: relative;
  z-index: 2;
  padding: 56px 0 42px;
}

.energy-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-bottom: 20px;
  padding: 0 14px;
  border-radius: 5px;
  background: var(--energy-yellow);
  color: #071b35;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.energy-hero h1 {
  max-width: 580px;
  margin-bottom: 18px;
  color: var(--energy-navy);
  font-size: clamp(42px, 5.2vw, 64px);
  line-height: 1.02;
  font-weight: 900;
  text-transform: uppercase;
}

.energy-hero h1 span,
.energy-hero h1 strong {
  display: block;
}

.energy-hero h1 strong {
  color: var(--energy-yellow);
}

.energy-hero-copy > p {
  max-width: 475px;
  margin-bottom: 24px;
  color: #203855;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.55;
}

.home-page .energy-search {
  display: grid;
  grid-template-columns: 1fr;
  gap: 9px;
  max-width: 545px;
  padding: 0;
  background: transparent;
}

.energy-search label {
  color: var(--energy-navy);
  font-size: 17px;
  font-weight: 900;
  text-transform: uppercase;
}

.energy-search-box {
  display: grid;
  grid-template-columns: 165px minmax(0, 1fr) 56px;
  min-height: 56px;
  overflow: hidden;
  border: 1px solid #cfd7e2;
  border-radius: 6px;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(7, 36, 75, 0.08);
}

.energy-search-box select,
.energy-search-box input {
  width: 100%;
  height: 56px;
  border: 0;
}

.energy-search-box select {
  padding: 0 16px;
  color: var(--energy-navy);
  background: #ffffff;
  border-right: 1px solid #d7dee8;
  font-weight: 800;
}

.energy-search-box input {
  min-width: 0;
  padding: 0 16px;
  color: #425167;
  background: #ffffff;
}

.energy-search-box button {
  position: relative;
  height: 56px;
  border: 0;
  background: var(--energy-yellow);
  color: #071b35;
}

.energy-search-box button::before {
  position: absolute;
  top: 16px;
  left: 17px;
}

.energy-search-box button::after {
  top: 34px;
  left: 34px;
}

.energy-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  max-width: 700px;
  margin-top: 28px;
}

.energy-metrics span {
  min-height: 54px;
  padding-right: 14px;
  border-right: 1px solid #d9e0ea;
}

.energy-metrics span:last-child {
  border-right: 0;
}

.energy-metrics b {
  display: block;
  color: var(--energy-navy);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.1;
}

.energy-metrics small {
  display: block;
  color: #324967;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.15;
}

.energy-mini-icon,
.why-icon {
  position: relative;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  color: var(--energy-navy);
  border: 2px solid currentColor;
  border-radius: 50%;
}

.energy-mini-icon.shield,
.why-icon.shield {
  border-radius: 9px 9px 12px 12px;
}

.energy-mini-icon.gear::before,
.why-icon.clipboard::before {
  width: 12px;
  height: 12px;
  border: 2px solid currentColor;
  content: "";
}

.energy-mini-icon.globe::before,
.why-icon.dollar::before {
  font-size: 18px;
  font-weight: 900;
  content: "$";
}

.energy-mini-icon.globe::before {
  width: 16px;
  height: 16px;
  border: 2px solid currentColor;
  border-radius: 50%;
  content: "";
}

.energy-mini-icon.headset::before,
.why-icon.handshake::before {
  width: 14px;
  height: 8px;
  border: 2px solid currentColor;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  border-bottom: 0;
  content: "";
}

.energy-section {
  padding: 22px 0 0;
  background: #ffffff;
}

.energy-section-title {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 7px;
  margin: 0 0 22px;
  color: var(--energy-navy);
  font-size: 22px;
  line-height: 1.15;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.energy-section-title::after {
  position: absolute;
  bottom: -10px;
  left: 50%;
  width: 34px;
  height: 3px;
  background: var(--energy-yellow);
  transform: translateX(-50%);
  content: "";
}

.energy-type-grid,
.energy-featured-grid,
.energy-launch-grid {
  display: grid;
  gap: 24px;
}

.energy-type-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.energy-type-card {
  display: grid;
  grid-template-columns: 1fr 82px;
  gap: 12px;
  min-height: 224px;
  padding: 24px 20px;
  border: 1px solid #dfe5ed;
  border-top: 5px solid var(--energy-blue);
  border-radius: 7px;
  background: #ffffff;
  box-shadow: 0 12px 24px rgba(7, 36, 75, 0.05);
}

.energy-type-card.dark {
  border-top-color: #1b1f28;
}

.energy-type-card.cyan {
  border-top-color: #1586d1;
}

.energy-type-card.red {
  border-top-color: var(--energy-red);
}

.energy-type-card h3 {
  margin-bottom: 18px;
  color: var(--energy-blue);
  font-size: 21px;
  line-height: 1.1;
  font-weight: 900;
}

.energy-type-card.red h3 {
  color: var(--energy-red);
}

.energy-type-card p {
  color: var(--energy-navy);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.55;
}

.energy-type-card strong {
  display: block;
  margin-top: 18px;
  color: var(--energy-navy);
  font-weight: 900;
}

.energy-type-card img,
.energy-featured-grid img,
.energy-launch-grid img {
  width: 86px;
  height: 170px;
  object-fit: cover;
  object-position: 43% center;
  align-self: end;
}

.energy-why-panel {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  padding: 34px 28px;
  border-radius: 6px;
  background: linear-gradient(120deg, #062142, #0a376b);
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(7, 36, 75, 0.15);
}

.energy-why-panel article {
  min-height: 154px;
  padding: 0 22px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.32);
}

.energy-why-panel article:last-child {
  border-right: 0;
}

.why-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 18px;
  color: var(--energy-yellow);
}

.why-icon.chart::before {
  width: 22px;
  height: 18px;
  border-left: 4px solid currentColor;
  border-bottom: 4px solid currentColor;
  transform: skew(-18deg);
  content: "";
}

.energy-why-panel h3,
.energy-process h3 {
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.energy-why-panel p,
.energy-process p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
}

.energy-process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid #dfe5ed;
  border-radius: 7px;
  background: #ffffff;
}

.energy-process article {
  position: relative;
  min-height: 142px;
  padding: 30px 26px;
  text-align: center;
}

.energy-process article:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: -8px;
  width: 14px;
  height: 14px;
  border-top: 3px solid var(--energy-navy);
  border-right: 3px solid var(--energy-navy);
  transform: translateY(-50%) rotate(45deg);
  content: "";
}

.energy-process span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--energy-yellow);
  color: var(--energy-navy);
  font-weight: 900;
}

.energy-process h3 {
  color: var(--energy-navy);
}

.energy-process p {
  color: #425167;
}

.energy-featured-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.energy-featured-grid a,
.energy-launch-grid a {
  display: grid;
  min-width: 0;
  border: 1px solid #dfe5ed;
  border-radius: 7px;
  background: #ffffff;
  box-shadow: 0 12px 24px rgba(7, 36, 75, 0.05);
}

.energy-featured-grid a {
  justify-items: center;
  min-height: 210px;
  padding: 18px 16px;
  text-align: center;
}

.energy-featured-grid img {
  width: 82px;
  height: 118px;
  object-position: 43% 55%;
  margin-bottom: 12px;
}

.energy-featured-grid h3 {
  margin-bottom: 4px;
  color: var(--energy-navy);
  font-size: 15px;
  font-weight: 900;
}

.energy-featured-grid p {
  margin: 0;
  color: #425167;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
}

.energy-launch-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.energy-launch-grid a {
  position: relative;
  grid-template-columns: 1fr 66px;
  gap: 10px;
  min-height: 190px;
  padding: 18px 14px;
}

.energy-launch-grid span {
  position: absolute;
  top: 12px;
  left: 14px;
  padding: 3px 8px;
  border-radius: 4px;
  background: var(--energy-yellow);
  color: var(--energy-navy);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.energy-launch-grid dl {
  margin: 30px 0 0;
}

.energy-launch-grid dt,
.energy-launch-grid dd {
  margin: 0;
  color: var(--energy-navy);
  font-size: 12px;
  line-height: 1.35;
}

.energy-launch-grid dt {
  color: #425167;
  font-weight: 700;
}

.energy-launch-grid dd {
  margin-bottom: 2px;
  font-weight: 900;
}

.energy-launch-grid img {
  width: 64px;
  height: 132px;
  align-self: end;
}

.energy-export-section {
  padding-bottom: 42px;
}

.energy-export-panel {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 34px;
  align-items: center;
  padding: 28px;
  border-radius: 7px;
  background: #f7f9fc;
}

.energy-map {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  border-radius: 6px;
  background:
    radial-gradient(circle at 20% 35%, rgba(7, 36, 75, 0.16) 0 2px, transparent 3px),
    radial-gradient(circle at 42% 48%, rgba(7, 36, 75, 0.13) 0 2px, transparent 3px),
    radial-gradient(circle at 63% 33%, rgba(7, 36, 75, 0.14) 0 2px, transparent 3px),
    radial-gradient(circle at 75% 55%, rgba(7, 36, 75, 0.12) 0 2px, transparent 3px),
    linear-gradient(135deg, #eef3f8, #ffffff);
  background-size: 26px 26px, 22px 22px, 24px 24px, 28px 28px, auto;
}

.energy-map::before {
  position: absolute;
  inset: 25px 34px;
  opacity: 0.5;
  background:
    radial-gradient(ellipse at 23% 36%, #b7c4d4 0 8%, transparent 9%),
    radial-gradient(ellipse at 32% 62%, #b7c4d4 0 6%, transparent 7%),
    radial-gradient(ellipse at 50% 45%, #b7c4d4 0 13%, transparent 14%),
    radial-gradient(ellipse at 68% 42%, #b7c4d4 0 16%, transparent 17%),
    radial-gradient(ellipse at 78% 66%, #b7c4d4 0 7%, transparent 8%);
  content: "";
}

.pin {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 4px solid #ffffff;
  border-radius: 50% 50% 50% 0;
  background: var(--energy-red);
  transform: rotate(-45deg);
  box-shadow: 0 5px 14px rgba(7, 36, 75, 0.18);
}

.energy-map .pin {
  position: absolute;
  z-index: 2;
}

.energy-map .p1 {
  top: 98px;
  left: 25%;
  background: #e2232a;
}

.energy-map .p2 {
  top: 62px;
  left: 46%;
  background: var(--energy-yellow);
}

.energy-map .p3 {
  top: 76px;
  left: 17%;
  background: var(--energy-blue);
}

.energy-map .p4 {
  top: 95px;
  left: 70%;
  background: #102a5a;
}

.energy-export-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 28px;
}

.energy-export-list article {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  align-items: start;
}

.energy-export-list .pin {
  width: 28px;
  height: 28px;
  border-width: 5px;
}

.energy-export-list .yellow {
  background: var(--energy-yellow);
}

.energy-export-list .navy {
  background: var(--energy-navy);
}

.energy-export-list .blue {
  background: var(--energy-blue);
}

.energy-export-list h3 {
  margin: 0 0 5px;
  color: var(--energy-navy);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.energy-export-list p {
  margin: 0;
  color: #425167;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
}

.energy-footer {
  position: relative;
  padding-top: 38px;
  background: #ffffff;
  color: var(--energy-navy);
  border-top: 1px solid #e4e9f0;
}

.energy-footer-grid {
  display: grid;
  grid-template-columns: 1.45fr repeat(4, 1fr);
  gap: 34px;
  align-items: start;
}

.energy-footer .footer-logo {
  width: 150px;
  margin-bottom: 0;
  filter: none;
  mix-blend-mode: normal;
}

.energy-footer-brand strong {
  display: block;
  margin: -5px 0 10px 46px;
  color: var(--energy-yellow);
  font-weight: 900;
  letter-spacing: 0.16em;
}

.energy-footer h3 {
  margin: 0 0 14px;
  color: var(--energy-navy);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.energy-footer p,
.energy-footer a {
  display: block;
  margin: 0 0 7px;
  color: #425167;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

.energy-socials {
  display: flex;
  gap: 11px;
}

.energy-socials a {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin: 0;
  border-radius: 50%;
  color: #ffffff;
  background: var(--energy-blue);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.energy-socials a:nth-child(2) {
  background: #e43d8d;
}

.energy-socials a:nth-child(3) {
  background: #e2232a;
}

.energy-socials a:nth-child(4) {
  background: #0a74b9;
}

.energy-whatsapp {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 12;
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border: 5px solid #e6fff0;
  border-radius: 50%;
  color: #ffffff;
  background: #22c55e;
  font-size: 14px;
  font-weight: 900;
}

.home-page .copyright {
  margin-top: 30px;
  background: var(--energy-navy);
  color: #ffffff;
  border-top: 0;
}

@media (max-width: 1080px) {
  .energy-topbar-row,
  .energy-main-nav {
    gap: 14px;
  }

  .energy-trust-strip {
    gap: 16px;
  }

  .energy-nav-row {
    grid-template-columns: 210px 1fr;
  }

  .energy-main-nav > a {
    font-size: 13px;
  }

  .energy-hero {
    min-height: 550px;
    background-position: 62% center;
  }

  .energy-hero-grid {
    min-height: 550px;
    grid-template-columns: minmax(0, 500px);
  }

  .energy-metrics,
  .energy-type-grid,
  .energy-process,
  .energy-featured-grid,
  .energy-launch-grid,
  .energy-export-panel,
  .energy-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .energy-why-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }

  .energy-why-panel article {
    border-right: 0;
  }

  .energy-footer-grid {
    gap: 26px;
  }
}

@media (max-width: 760px) {
  .home-page .container {
    width: min(100% - 28px, 560px);
  }

  .energy-topbar-row {
    justify-content: center;
    min-height: 42px;
  }

  .energy-trust-strip {
    display: none;
  }

  .energy-nav-row {
    grid-template-columns: 1fr auto;
    height: 61px;
  }

  .energy-logo {
    width: 128px;
    height: 61px;
  }

  .energy-logo img {
    width: 126px;
    max-height: 38px;
  }

  .energy-logo span {
    margin-top: -5px;
    margin-left: 40px;
    font-size: 12px;
  }

  .energy-header .main-nav {
    top: 103px;
  }

  .energy-main-nav {
    height: auto;
    gap: 0;
  }

  .energy-main-nav > a {
    min-height: 50px;
    color: #ffffff;
  }

  .energy-main-nav > a.active::after {
    display: none;
  }

  .energy-search-link {
    justify-content: center;
    margin-top: 16px;
  }

  .energy-hero {
    min-height: 650px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.92) 48%, rgba(255, 255, 255, 0.38) 70%),
      url("assets/sovko-header-hero.png") 68% bottom / auto 58% no-repeat,
      #ffffff;
  }

  .energy-hero-grid {
    min-height: 650px;
    grid-template-columns: 1fr;
    align-items: start;
  }

  .energy-hero-copy {
    padding-top: 38px;
  }

  .energy-hero h1 {
    font-size: 38px;
  }

  .energy-hero-copy > p {
    font-size: 15px;
  }

  .energy-search-box {
    grid-template-columns: 1fr;
  }

  .energy-search-box select,
  .energy-search-box input,
  .energy-search-box button {
    height: 50px;
  }

  .energy-search-box select {
    border-right: 0;
    border-bottom: 1px solid #d7dee8;
  }

  .energy-search-box button::before {
    left: calc(50% - 10px);
  }

  .energy-search-box button::after {
    left: calc(50% + 7px);
  }

  .energy-metrics,
  .energy-type-grid,
  .energy-why-panel,
  .energy-process,
  .energy-featured-grid,
  .energy-launch-grid,
  .energy-export-panel,
  .energy-export-list,
  .energy-footer-grid {
    grid-template-columns: 1fr;
  }

  .energy-metrics span {
    border-right: 0;
    border-bottom: 1px solid #d9e0ea;
  }

  .energy-metrics span:last-child {
    border-bottom: 0;
  }

  .energy-type-card {
    grid-template-columns: 1fr 86px;
  }

  .energy-why-panel {
    padding: 28px 20px;
  }

  .energy-process article:not(:last-child)::after {
    top: auto;
    right: 50%;
    bottom: -8px;
    transform: translateX(50%) rotate(135deg);
  }

  .energy-export-panel {
    padding: 18px;
  }

  .energy-footer-grid {
    gap: 20px;
  }

  .energy-whatsapp {
    right: 18px;
    bottom: 18px;
    width: 54px;
    height: 54px;
  }
}

.products-page {
  color: var(--energy-navy);
  background: #ffffff;
}

.products-page .container {
  width: min(1280px, calc(100% - 48px));
}

.products-showcase {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.99) 0%, rgba(255, 255, 255, 0.97) 38%, rgba(255, 255, 255, 0.72) 58%, rgba(255, 255, 255, 0.08) 100%),
    url("assets/sovko-header-hero.png") right center / cover no-repeat,
    #ffffff;
  border-bottom: 1px solid #edf1f6;
}

.products-showcase::after {
  position: absolute;
  right: 8%;
  bottom: 54px;
  width: 110px;
  height: 86px;
  opacity: 0.18;
  background-image: radial-gradient(#0c3a72 2px, transparent 2px);
  background-size: 18px 18px;
  content: "";
}

.products-showcase-grid {
  display: grid;
  min-height: 510px;
  align-items: center;
}

.products-hero-copy {
  width: min(610px, 100%);
  padding: 34px 0 30px;
}

.products-hero-copy h1 {
  position: relative;
  margin: 0 0 30px;
  color: var(--energy-navy);
  font-size: clamp(42px, 4.4vw, 64px);
  font-weight: 900;
  line-height: 0.98;
}

.products-hero-copy h1::after {
  position: absolute;
  left: 0;
  bottom: -18px;
  width: 58px;
  height: 5px;
  background: var(--energy-red);
  content: "";
}

.products-hero-copy h1 span,
.products-hero-copy h1 strong {
  display: inline;
}

.products-hero-copy h1 strong {
  color: var(--energy-yellow);
  font-style: normal;
}

.products-hero-copy > p {
  max-width: 590px;
  margin: 0 0 18px;
  color: #4f5d70;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
}

.products-search {
  display: block;
  max-width: 585px;
  margin: 0 0 18px;
  padding: 0;
  background: transparent;
}

.products-search-box {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr) 74px;
  overflow: hidden;
  min-height: 64px;
  background: #ffffff;
  border: 1px solid #eef2f7;
  border-radius: 6px;
  box-shadow: 0 16px 32px rgba(7, 36, 75, 0.11);
}

.products-search-box select,
.products-search-box input,
.products-search-box button {
  width: 100%;
  height: 64px;
  border: 0;
}

.products-search-box select {
  padding: 0 22px;
  background: #ffffff;
  color: var(--energy-navy);
  border-right: 1px solid #edf1f6;
  font-weight: 900;
}

.products-search-box input {
  padding: 0 20px;
  color: #43546a;
  background: #ffffff;
  font-size: 15px;
  font-weight: 600;
}

.products-search-box button {
  position: relative;
  background: var(--energy-yellow);
}

.products-search-box button::before {
  position: absolute;
  top: 20px;
  left: 25px;
  width: 17px;
  height: 17px;
  border: 3px solid #061b37;
  border-radius: 50%;
  content: "";
}

.products-search-box button::after {
  position: absolute;
  top: 39px;
  left: 43px;
  width: 13px;
  height: 3px;
  background: #061b37;
  transform: rotate(45deg);
  content: "";
}

.products-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 600px;
  gap: 0;
}

.products-metrics span {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  min-height: 54px;
  padding: 0 22px;
  border-right: 1px solid #cfd8e5;
}

.products-metrics span:first-child {
  padding-left: 0;
}

.products-metrics span:last-child {
  border-right: 0;
}

.products-metrics .energy-mini-icon {
  grid-row: span 2;
  width: 30px;
  height: 30px;
  color: var(--energy-navy);
}

.products-metrics .energy-mini-icon.clipboard::before {
  width: 14px;
  height: 17px;
  border: 2px solid currentColor;
  border-radius: 3px;
  content: "";
}

.products-metrics b,
.products-metrics small {
  display: block;
  color: var(--energy-navy);
  font-size: 15px;
  line-height: 1.14;
}

.products-metrics b {
  font-weight: 900;
}

.products-metrics small {
  font-weight: 600;
}

.products-lines {
  padding: 34px 0 34px;
  background: #ffffff;
  border-bottom: 14px solid var(--energy-yellow);
}

.products-lines-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
}

.products-line-card {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 326px;
  padding: 28px 30px 24px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #dfe6ef;
  border-radius: 6px;
  box-shadow: 0 14px 28px rgba(7, 36, 75, 0.04);
}

.products-line-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 5px;
  background: var(--energy-blue);
  content: "";
}

.products-line-card:nth-child(2)::before {
  background: #3a3f48;
}

.products-line-card:nth-child(3)::before {
  background: #1685d3;
}

.products-line-card:nth-child(4)::before {
  background: var(--energy-red);
}

.products-line-number {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: -34px;
  color: var(--energy-blue);
  border: 2px solid currentColor;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 900;
}

.products-line-content {
  padding-left: 58px;
}

.products-line-content h2 {
  position: relative;
  margin: 0 0 26px;
  color: var(--energy-navy);
  font-size: clamp(20px, 1.6vw, 27px);
  font-weight: 900;
  line-height: 1.05;
}

.products-line-content h2::after {
  position: absolute;
  left: 0;
  bottom: -14px;
  width: 45px;
  height: 3px;
  background: var(--energy-yellow);
  content: "";
}

.products-line-content p {
  min-height: 94px;
  margin: 0 0 16px;
  color: #415168;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
}

.line-feature {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--energy-blue);
  font-size: 15px;
  font-weight: 900;
}

.line-feature::before {
  display: inline-block;
  width: 19px;
  height: 19px;
  border: 2px solid currentColor;
  border-radius: 50%;
  content: "";
}

.line-feature.diamond::before {
  border-radius: 3px;
  transform: rotate(45deg);
}

.line-feature.bolt::before {
  width: 10px;
  border-top: 0;
  border-right: 3px solid currentColor;
  border-bottom: 0;
  border-left: 3px solid currentColor;
  border-radius: 0;
  transform: skew(-18deg);
}

.line-feature.power::before {
  border-top-color: transparent;
}

.products-line-card img {
  justify-self: center;
  width: min(220px, 88%);
  max-height: 132px;
  object-fit: contain;
  margin-top: 12px;
  filter: drop-shadow(0 12px 12px rgba(7, 36, 75, 0.16));
}

@media (max-width: 1080px) {
  .products-showcase {
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.99) 0%, rgba(255, 255, 255, 0.94) 52%, rgba(255, 255, 255, 0.42) 100%),
      url("assets/sovko-header-hero.png") 72% center / cover no-repeat,
      #ffffff;
  }

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

@media (max-width: 760px) {
  .products-page .container {
    width: min(100% - 28px, 560px);
  }

  .products-showcase {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(255, 255, 255, 0.96) 58%, rgba(255, 255, 255, 0.36) 100%),
      url("assets/sovko-header-hero.png") 67% bottom / auto 44% no-repeat,
      #ffffff;
  }

  .products-showcase-grid {
    min-height: 720px;
    align-items: start;
  }

  .products-hero-copy {
    padding: 36px 0 300px;
  }

  .products-hero-copy h1 {
    font-size: 42px;
  }

  .products-hero-copy > p {
    font-size: 15px;
  }

  .products-search-box,
  .products-metrics,
  .products-lines-grid {
    grid-template-columns: 1fr;
  }

  .products-search-box select {
    border-right: 0;
    border-bottom: 1px solid #edf1f6;
  }

  .products-search-box button::before {
    left: calc(50% - 10px);
  }

  .products-search-box button::after {
    left: calc(50% + 8px);
  }

  .products-metrics span {
    padding: 12px 0;
    border-right: 0;
    border-bottom: 1px solid #d7dee8;
  }

  .products-metrics span:last-child {
    border-bottom: 0;
  }

  .products-line-card {
    min-height: auto;
  }

  .products-line-content {
    padding-left: 56px;
  }
}

.catalog-page-body {
  color: var(--energy-navy);
  background: #ffffff;
}

.catalog-page-body .container {
  width: min(1420px, calc(100% - 48px));
}

.catalog-showcase {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  color: #ffffff;
  background:
    radial-gradient(circle at 82% 20%, rgba(255, 189, 0, 0.22), transparent 22%),
    linear-gradient(135deg, rgba(7, 36, 75, 0.96), rgba(1, 20, 43, 0.98)),
    #061b37;
}

.catalog-showcase::before {
  position: absolute;
  inset: 0;
  opacity: 0.28;
  background:
    linear-gradient(130deg, transparent 0 38%, rgba(255, 255, 255, 0.07) 38% 39%, transparent 39% 100%),
    radial-gradient(#ffffff 1px, transparent 1px);
  background-size: auto, 18px 18px;
  content: "";
}

.catalog-showcase::after {
  position: absolute;
  right: 12%;
  top: -70px;
  width: 440px;
  height: 440px;
  background: linear-gradient(135deg, transparent 44%, var(--energy-yellow) 45% 48%, transparent 49%);
  opacity: 0.75;
  content: "";
}

.catalog-showcase-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 640px) minmax(420px, 1fr);
  gap: 54px;
  align-items: center;
  min-height: 330px;
  padding: 28px 0 44px;
}

.catalog-hero-copy {
  max-width: 660px;
}

.catalog-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-bottom: 18px;
  padding: 0 15px;
  border-radius: 5px;
  background: var(--energy-yellow);
  color: var(--energy-navy);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.catalog-hero-copy h1 {
  position: relative;
  margin: 0 0 30px;
  color: #ffffff;
  font-size: clamp(42px, 4vw, 64px);
  font-weight: 900;
  line-height: 1.05;
}

.catalog-hero-copy h1::after {
  position: absolute;
  left: 0;
  bottom: -16px;
  width: 46px;
  height: 4px;
  background: var(--energy-yellow);
  content: "";
}

.catalog-hero-copy p {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
}

.catalog-hero-media {
  position: relative;
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
}

.catalog-hero-plug {
  width: 112px;
  height: 260px;
  object-fit: cover;
  object-position: 48% center;
  border-radius: 999px;
  filter: drop-shadow(0 20px 22px rgba(0, 0, 0, 0.28));
}

.catalog-hero-card {
  overflow: hidden;
  padding: 18px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 8px;
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.3);
}

.catalog-hero-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  object-position: left center;
  border-radius: 4px;
}

.catalog-page-body .catalog-page {
  padding: 0 0 76px;
  background: #ffffff;
}

.catalog-top-search {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(260px, 1.8fr) minmax(150px, 0.95fr) minmax(150px, 0.95fr) minmax(170px, 1fr) 170px;
  gap: 22px;
  align-items: end;
  margin: -44px 0 28px;
  padding: 22px 30px;
  background: #ffffff;
  border: 1px solid #e1e7ef;
  border-radius: 10px;
  box-shadow: 0 18px 44px rgba(7, 36, 75, 0.13);
}

.catalog-top-search label {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.catalog-top-search label > span {
  color: var(--energy-navy);
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.catalog-search-field {
  position: relative;
}

.catalog-search-field > span.catalog-search-icon {
  position: absolute;
  left: 16px;
  bottom: 15px;
  width: 15px;
  height: 15px;
  border: 2px solid #7d8a9d;
  border-radius: 50%;
}

.catalog-search-field > span.catalog-search-icon::after {
  position: absolute;
  right: -7px;
  bottom: -4px;
  width: 9px;
  height: 2px;
  background: #7d8a9d;
  transform: rotate(45deg);
  content: "";
}

.catalog-top-search input,
.catalog-top-search select {
  width: 100%;
  height: 46px;
  color: #24364f;
  background: #ffffff;
  border: 1px solid #d8e0eb;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 700;
}

.catalog-top-search input {
  padding: 0 16px 0 42px;
}

.catalog-top-search select {
  padding: 0 14px;
}

.catalog-top-search button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: 46px;
  color: #061b37;
  background: var(--energy-yellow);
  border: 0;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 900;
}

.catalog-top-search button i {
  position: relative;
  width: 18px;
  height: 18px;
  border: 3px solid currentColor;
  border-radius: 50%;
}

.catalog-top-search button i::after {
  position: absolute;
  right: -8px;
  bottom: -5px;
  width: 11px;
  height: 3px;
  background: currentColor;
  transform: rotate(45deg);
  content: "";
}

.catalog-page-body .catalog-shell {
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 32px;
}

.catalog-page-body .catalog-filter-panel {
  top: 130px;
  gap: 18px;
  padding: 22px 22px 20px;
  border: 1px solid #dfe6ef;
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(7, 36, 75, 0.06);
}

.catalog-page-body .catalog-filter-group h3 {
  position: relative;
  padding-left: 24px;
  color: var(--energy-navy);
  font-size: 13px;
}

.catalog-page-body .catalog-filter-group h3::before {
  position: absolute;
  left: 0;
  top: 1px;
  width: 15px;
  height: 15px;
  border: 2px solid currentColor;
  border-radius: 4px;
  content: "";
}

.catalog-page-body .catalog-filters,
.catalog-page-body .catalog-hex-filters,
.catalog-page-body .catalog-brand-filters {
  gap: 6px;
}

.catalog-page-body .catalog-filters button,
.catalog-page-body .catalog-hex-filters button,
.catalog-page-body .catalog-brand-filters button {
  min-height: 26px;
  padding: 0 13px;
  color: var(--energy-navy);
  background: #ffffff;
  border: 1px solid #d9e1eb;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 900;
  text-align: left;
}

.catalog-page-body .catalog-filters button.active,
.catalog-page-body .catalog-filters button:hover,
.catalog-page-body .catalog-hex-filters button.active,
.catalog-page-body .catalog-hex-filters button:hover,
.catalog-page-body .catalog-brand-filters button.active,
.catalog-page-body .catalog-brand-filters button:hover {
  border-color: var(--energy-navy);
  color: #ffffff;
  background: var(--energy-navy);
}

.catalog-page-body .catalog-toolbar {
  min-height: 34px;
  margin-bottom: 22px;
}

.catalog-page-body .catalog-result-count {
  color: var(--energy-navy);
  font-size: 13px;
  font-weight: 800;
}

.catalog-page-body .catalog-result-count b {
  font-weight: 900;
}

.catalog-count-divider {
  display: inline-block;
  margin: 0 13px;
  color: #b7c2d1;
}

.catalog-sort-control {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 9px;
  border: 1px solid #d8e0eb;
  border-radius: 5px;
  color: #647287;
  background: #ffffff;
  font-size: 12px;
  font-weight: 700;
}

.catalog-sort-control select {
  height: 30px;
  color: var(--energy-navy);
  border: 0;
  background: transparent;
  font-weight: 800;
}

.catalog-page-body .catalog-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.catalog-page-body .catalog-card {
  border: 1px solid #dfe6ef;
  border-radius: 7px;
  box-shadow: 0 12px 28px rgba(7, 36, 75, 0.05);
}

.catalog-page-body .catalog-summary-image {
  min-height: 92px;
  padding: 10px 12px 0;
  background: #ffffff;
  border-bottom: 0;
}

.catalog-page-body .catalog-summary-image img {
  height: 86px;
  padding: 0;
  object-fit: cover;
  object-position: left center;
  border: 1px solid #e7edf4;
}

.catalog-page-body .catalog-summary-content {
  gap: 10px;
  padding: 10px 16px 16px;
}

.catalog-page-body .catalog-summary-specs {
  gap: 4px;
}

.catalog-page-body .catalog-summary-specs div {
  min-height: auto;
  padding: 0;
  background: transparent;
  grid-template-columns: 82px 1fr;
}

.catalog-page-body .catalog-summary-specs dt {
  color: #66758a;
  font-size: 10px;
}

.catalog-page-body .catalog-summary-specs dd {
  color: var(--energy-navy);
  font-size: 12px;
}

.catalog-page-body .catalog-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.catalog-page-body .catalog-detail-button,
.catalog-page-body .catalog-store-button,
.catalog-page-body .catalog-back {
  min-height: 34px;
  border-radius: 5px;
  font-size: 12px;
}

.catalog-page-body .catalog-detail-button {
  color: var(--energy-navy);
  background: #ffffff;
  border: 1px solid #9aa9bc;
}

.catalog-page-body .catalog-store-button {
  color: #061b37;
  background: var(--energy-yellow);
  border-color: var(--energy-yellow);
}

.catalog-page-body .catalog-store-button::before {
  display: inline-block;
  width: 13px;
  height: 11px;
  margin-right: 6px;
  border: 2px solid currentColor;
  border-top: 0;
  content: "";
}

.catalog-page-body .catalog-pagination button.active,
.catalog-page-body .catalog-pagination button:hover:not(:disabled) {
  border-color: var(--energy-navy);
  background: var(--energy-navy);
}

.catalog-page-body .catalog-detail {
  grid-column: 2;
}

@media (max-width: 1180px) {
  .catalog-showcase-grid {
    grid-template-columns: 1fr;
  }

  .catalog-hero-media {
    display: none;
  }

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

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

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

  .catalog-page-body .catalog-detail {
    grid-column: 1;
  }

  .catalog-page-body .catalog-filter-panel {
    position: static;
  }

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

@media (max-width: 760px) {
  .catalog-page-body .container {
    width: min(100% - 28px, 560px);
  }

  .catalog-showcase-grid {
    min-height: auto;
    padding: 42px 0 82px;
  }

  .catalog-hero-copy h1 {
    font-size: 38px;
  }

  .catalog-top-search,
  .catalog-page-body .catalog-grid,
  .catalog-page-body .catalog-actions {
    grid-template-columns: 1fr;
  }

  .catalog-top-search {
    margin-top: -58px;
    padding: 18px;
  }
}
