@charset "UTF-8";
/* ================== Normalize =================== */
:root {
  /* ШРИФТИ */
  --font-family-main: "CeraPro", sans-serif;
  /* ОСНОВНА БАЗА */
  --color-bg: #ffffff;
  --color-light: rgba(250, 250, 250, 1);
  /* ТИПОГРАФІКА */
  --color-text-main: rgba(10, 10, 10, 1);
  --color-text-muted: rgba(10, 10, 10, 0.55);
  --text-hover: .65;
  /* АКЦЕНТИ ТА ГРАФІКА */
  --color-accent: rgb(168, 124, 92);
  --color-divider: rgb(231, 229, 228);
  /* ДОДАТКОВІ КОЛЬОРИ */
  --color-surface: rgba(10, 10, 10, 1);
  --color-surface-light: rgba(10, 10, 10, 0.65);
  /* РОЗМІРИ ШРИФТІВ (Typography Scale) */
  --fs-xs: 0.75rem; /* 12px */
  --fs-sm: 0.875rem; /* 14px */
  --fs-base: 1rem; /* 16px - Основний текст */
  --fs-md: 1.125rem; /* 18px */
  --fs-lg: 1.25rem; /* 20px */
  --fs-xl: 1.5rem; /* 24px */
  --fs-2xl: 1.875rem; /* 30px */
  --fs-3xl: 2.25rem; /* 36px */
  --fs-4xl: 3rem; /* 48px */
}

* {
  box-sizing: border-box;
}

body,
html {
  min-height: 100%;
}

body {
  width: 100%;
  overflow-x: hidden;
  margin: 0 auto;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  display: block;
  position: relative;
  z-index: 1;
}

input,
textarea {
  padding: 0;
  margin: 0;
  outline: none;
  line-height: 1;
}

ul li,
ol li {
  position: relative;
  z-index: 2;
}

input:focus,
input:active {
  outline: none;
  outline: 0;
  outline-offset: 0;
}

button {
  all: unset;
  border: none;
  background: transparent;
  text-decoration: none;
  line-height: 1;
  position: relative;
  z-index: 2;
  padding: 0;
}
button:focus {
  outline: none;
}

a {
  text-decoration: none;
}

p {
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 1;
}

span {
  position: relative;
  z-index: 1;
}

/* ================== Layout =================== */
body.wp-theme-unitedsound {
  min-width: 375px;
  font-size: 16px;
  line-height: 1.54;
  font-weight: 400;
  position: relative;
  font-family: var(--font-family-main);
  color: var(--color-text-main);
  background-color: #fff;
}
body.wp-theme-unitedsound.body-hidden {
  overflow: hidden;
}

/* ================== General =================== */
.main {
  width: 100%;
  height: auto;
  position: relative;
  overflow: hidden;
  z-index: 3;
}

.container {
  width: 100%;
  max-width: 1472px;
  padding: 0 24px;
  margin: 0 auto;
  height: auto;
  position: relative;
}
.container-small {
  max-width: 992px;
}

section {
  position: relative;
  width: 100%;
  height: auto;
  padding: 35px 0;
  overflow: hidden;
}

.s-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}
.s-head__link {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 19px;
  font-weight: 500;
  transition: 0.3s ease;
}
.s-head__link:hover {
  opacity: 0.65;
}
.s-head .title {
  text-transform: uppercase;
}

.socials {
  position: relative;
  display: flex;
  gap: 12px;
}
.socials-item {
  display: flex;
  position: relative;
  cursor: pointer;
}
.socials-item svg {
  display: block;
  width: 24px;
  height: 24px;
}

#breadcrumbs {
  font-size: 16px;
  font-weight: 400;
  padding: 40px 0;
}
#breadcrumbs span,
#breadcrumbs a {
  font-size: inherit;
}
#breadcrumbs a {
  transition: 0.3s ease;
}
#breadcrumbs a:hover {
  opacity: 0.65;
}
#breadcrumbs .br-separator {
  display: inline-block;
  margin: 0 8px;
}
#breadcrumbs .breadcrumb_last {
  opacity: 0.65;
}

.not-found {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 340px;
  margin: 0 auto;
  padding: 112px 0;
}
.not-found .title {
  margin-bottom: 16px;
  text-align: center;
}
.not-found p {
  margin-bottom: 32px;
}
.not-found .btn {
  max-width: 250px;
}

.im-b {
  position: relative;
  overflow: hidden;
}
.im-b img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.input-search {
  position: relative;
  background: rgba(10, 10, 10, 0.05);
  height: 40px;
  width: 100%;
  border-radius: 40px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.input-search input[type=search] {
  padding-left: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  appearance: none;
  -webkit-appearance: none;
  box-sizing: border-box;
  font-size: 16px;
  font-weight: 400;
  color: var(--color-text-main);
  background-color: transparent;
  font-family: var(--font-family-main);
  border: none;
}
.input-search input[type=search]:focus {
  outline: none;
}
.input-search input[type=search]::placeholder {
  color: rgba(10, 10, 10, 0.55);
}
.input-search input[type=search]:disabled {
  background-color: #f0f0f0;
  cursor: not-allowed;
  opacity: 0.7;
}
.input-search input[type=search]::-webkit-search-decoration, .input-search input[type=search]::-webkit-search-cancel-button {
  display: none;
}

.swiper-nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 48px;
}

.swiper-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: fit-content;
  bottom: 0;
  gap: 8px;
}
.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: transparent;
  margin: 0;
  cursor: pointer;
  transition: 0.3s;
  opacity: 1;
  z-index: 10;
  display: block;
  border-radius: 40px;
}
.swiper-pagination-bullet:hover {
  background: #223145;
}
.swiper-pagination-bullet-active {
  width: 40px;
  background: rgb(250, 250, 250);
}

.custom-nav {
  position: relative;
  display: flex;
  gap: 16px;
}

.swiper-button-custom {
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 100%;
  background-color: rgb(250, 250, 250);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s ease;
  color: rgba(10, 10, 10, 0.5);
}
.swiper-button-custom:hover {
  background: rgba(10, 10, 10, 0.15);
}

.sw-naw {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 40px auto 0;
  padding: 16px 0;
}
@media (max-width: 767px) {
  .sw-naw {
    margin: 24px auto 0;
    padding: 12px 0;
  }
}
.sw-naw .sw-naw__progress {
  position: relative;
  width: 100%;
  max-width: 704px;
  height: 4px;
  border-radius: 40px;
  background: rgb(250, 250, 250);
  overflow: hidden;
}
.sw-naw .sw-naw__progress span.swiper-pagination-progressbar-fill {
  background: #0a0a0a;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left top;
  transition-duration: 300ms;
}
@media (max-width: 767px) {
  .sw-naw .custom-nav {
    display: none;
  }
}

/* ================== Text =================== */
h1,
h2,
h3 {
  line-height: 120%;
  font-weight: 700;
}

.fz-h1 {
  position: relative;
  font-size: 40px;
  font-weight: 700;
}

.fz-h2 {
  font-size: 32px;
  font-weight: 500;
}
@media (max-width: 767px) {
  .fz-h2 {
    font-size: 24px;
  }
}

.fz-h3 {
  font-size: 24px;
  font-weight: 500;
}
@media (max-width: 767px) {
  .fz-h3 {
    font-size: 18px;
  }
}

.fz-h4 {
  font-size: 20px;
  font-weight: 600;
}

ul {
  padding: 0;
  margin: 0;
}
ul li {
  padding: 0;
  list-style: none;
}

a {
  color: rgb(10, 10, 10);
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  border-radius: 40px;
  font-size: 18px;
  transition: 0.3s ease;
  cursor: pointer;
  padding: 0 24px;
  font-weight: 500;
  transition: 0.3s ease;
  border: 1px solid var(--color-surface);
  z-index: 2;
  cursor: pointer;
}
@media (max-width: 991px) {
  .btn {
    position: relative;
  }
}
.btn-primary {
  background-color: var(--color-surface);
  font-size: 18px;
  font-weight: 500;
  height: 56px;
  color: var(--color-light);
  border: none;
}
.btn-primary:hover {
  background-color: var(--color-surface-light);
}
.btn:hover {
  background: rgba(10, 10, 10, 0.05);
}

.pageError {
  display: flex;
  min-height: inherit;
  padding: 182px 0;
}
.pageError .container {
  min-height: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pageError .wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.pageError h1 {
  font-size: 100px;
  line-height: 1;
  font-weight: 700;
  margin-bottom: 10px;
}
.pageError-text1 {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 30px;
  display: block;
  text-align: center;
}
.pageError-text2 {
  font-size: 16px;
  text-align: center;
  max-width: 320px;
}
.pageError .btn {
  margin-top: 20px;
  min-width: 200px;
}

/* ================== MEDIA =================== */
/* ================== Template Parts =================== */
.head {
  position: relative;
  z-index: 11;
}
.head-top {
  height: auto;
  padding: 5px 0;
  background: rgb(10, 10, 10);
  width: 100%;
  display: flex;
  align-items: center;
}
@media (max-width: 1199px) {
  .head-top {
    padding: 12px 0;
  }
}
.head .wrap {
  display: grid;
  align-items: center;
  justify-content: space-between;
  grid-template-columns: 1fr 1fr 1fr;
}
@media (max-width: 1199px) {
  .head .wrap {
    grid-template-columns: 1fr;
  }
}
.head-left {
  position: relative;
  display: flex;
}
@media (max-width: 1199px) {
  .head-left {
    display: none;
  }
}
.head-center {
  display: flex;
  justify-content: center;
}
.head-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
@media (max-width: 1199px) {
  .head-right {
    display: none;
  }
}

.btn-free-shipping {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #fff;
  font-size: 15px;
  font-weight: 400;
  cursor: pointer;
}
.btn-free-shipping svg {
  display: block;
  width: 24px;
  height: auto;
}
.btn-free-shipping.active svg {
  transform: rotate(180deg);
}

.header {
  position: relative;
  width: 100%;
  z-index: 10;
  border-bottom: 1px solid rgba(10, 10, 10, 0.15);
}
@media (max-width: 1199px) {
  .header {
    padding: 10px 0;
  }
}
.header .container {
  position: initial;
  padding: 0 16px;
}
.header .logo {
  display: flex;
}
.header .logo img {
  height: 52px;
  width: auto;
}
@media (max-width: 1199px) {
  .header .logo img {
    position: relative;
    height: 38px;
  }
}
.header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1199px) {
  .header__menu {
    display: none;
  }
}
.header .menu {
  display: flex;
}
.header .menu > li > a {
  font-weight: 400;
  line-height: 84px;
  padding: 0 16px;
  display: block;
  font-size: 18px;
  transition: 0.3s ease;
  white-space: nowrap;
}
.header .menu > li > a:hover {
  opacity: var(--text-hover);
}
.header .menu .menu-item-has-children {
  position: initial;
  display: flex;
  align-items: center;
  gap: 4px;
}
.header .menu .menu-item-has-children:hover .sub-menu {
  visibility: visible;
  opacity: 1;
}
.header .menu .sub-menu {
  background-color: #fff;
  position: absolute;
  left: 0;
  top: 84px;
  width: 100%;
  padding: 24px 24% 70px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  visibility: hidden;
  opacity: 0;
  transition: 0.2s ease;
}
.header .menu .sub-menu li a {
  position: relative;
  transition: 0.3s ease;
}
.header .menu .sub-menu li a:hover {
  opacity: var(--text-hover);
}
.header__left {
  display: flex;
  align-items: center;
  gap: 4px;
  position: relative;
  min-width: 338px;
}
@media (max-width: 1199px) {
  .header__left {
    min-width: 84px;
  }
}
@media (max-width: 1199px) {
  .header__left .logo {
    display: none;
  }
}
.header__center .logo {
  display: none;
}
@media (max-width: 1199px) {
  .header__center .logo {
    display: block;
  }
}
.header__right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  min-width: 338px;
}
@media (max-width: 1199px) {
  .header__right {
    min-width: 84px;
  }
}
.header .input-search {
  max-width: 186px;
}
@media (max-width: 1199px) {
  .header .input-search {
    display: none;
  }
}
.header .input-search input {
  pointer-events: none;
}

.free-shipping {
  position: absolute;
  width: 100%;
  color: #fff;
  padding: 24px 0 70px;
  background: rgb(10, 10, 10);
  z-index: 11;
  display: none;
}
@media (max-width: 1199px) {
  .free-shipping {
    padding: 40px 0;
  }
}
.free-shipping .container {
  max-width: 1188px;
}
.free-shipping .wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}
@media (max-width: 767px) {
  .free-shipping .wrap {
    grid-template-columns: repeat(1, 1fr);
    gap: 40px;
  }
}
.free-shipping__item {
  display: grid;
  gap: 16px;
}
.free-shipping span {
  font-size: 18px;
  font-weight: 500;
}
.free-shipping p {
  font-size: 15px;
  font-weight: 400;
  color: rgba(250, 250, 250, 0.65);
}

.user-navigation {
  display: flex;
  align-items: center;
  gap: 4px;
}
.user-navigation .user-account,
.user-navigation .btn-favorite,
.user-navigation .basket {
  transition: 0.3s ease;
}
.user-navigation .user-account:hover,
.user-navigation .btn-favorite:hover,
.user-navigation .basket:hover {
  opacity: 0.65;
}
.user-navigation .user-account {
  display: flex;
}
.user-navigation .btn-favorite {
  display: flex;
}
@media (max-width: 1199px) {
  .user-navigation .btn-favorite {
    display: none;
  }
}
.user-navigation .basket {
  position: relative;
  display: flex;
}
.user-navigation .basket .cart-count {
  position: absolute;
  left: 50%;
  top: 58%;
  transform: translate(-50%, -50%);
  font-size: 8px;
}

.hamburger {
  position: relative;
  display: none;
}
@media (max-width: 1199px) {
  .hamburger {
    display: flex;
  }
}

.header-search-btn {
  display: none;
}
@media (max-width: 1199px) {
  .header-search-btn {
    display: flex;
  }
}

.mobileMenu {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 100;
  display: none;
}
.mobileMenu-close {
  position: absolute;
  right: 10px;
  top: 10px;
  padding: 0;
}
.mobileMenu .wrap {
  padding: 48px 32px;
}
.mobileMenu .btn {
  position: relative;
  color: rgb(26, 29, 53);
  padding: 0 24px;
  border-radius: 40px;
}
.mobileMenu .menu {
  display: grid;
  gap: 12px;
  margin-bottom: 24px;
}
.mobileMenu .menu li a {
  position: relative;
  display: block;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 600;
  line-height: 24px;
}

.search-fancybox .fancybox__backdrop {
  background: rgba(0, 0, 0, 0.5);
}
.search-fancybox .fancybox__slide {
  padding: 0 !important;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: row;
}
.search-fancybox #search-modal {
  width: 100%;
}
.search-fancybox .is-close-button {
  display: none;
}

.custom-search-wrapper {
  background: #fff;
  padding: 24px 24px 70px !important;
}
.custom-search-wrapper .wrap {
  max-width: 748px;
  margin: 0 auto;
}

.search-input-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
}

.input-field-group {
  display: flex;
  align-items: center;
  background: rgba(10, 10, 10, 0.05);
  border-radius: 40px;
  padding: 0px 14px;
  width: 100%;
  gap: 8px;
}
.input-field-group .search-icon {
  display: flex;
}
.input-field-group #product-search-input {
  border: none;
  background: transparent;
  appearance: none;
  -webkit-appearance: none;
  box-sizing: border-box;
  outline: none;
  width: 100%;
  font-size: 16px;
  font-weight: 400;
  color: var(--color-text-main);
  font-family: var(--font-family-main);
  height: 40px;
  border: none;
}
.input-field-group #product-search-input:focus {
  outline: none;
}
.input-field-group #product-search-input::placeholder {
  color: rgba(10, 10, 10, 0.55);
}
.input-field-group #product-search-input:disabled {
  background-color: #f0f0f0;
  cursor: not-allowed;
  opacity: 0.7;
}
.input-field-group #product-search-input::-webkit-search-decoration, .input-field-group #product-search-input::-webkit-search-cancel-button {
  display: none;
}

#search-results-overlay {
  display: grid;
  gap: 40px;
}

.results-section h3 {
  font-size: 20px;
  font-weight: 500;
}

.results-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 32px;
  padding-top: 32px;
  display: none;
}
.results-grid a {
  color: #000;
  text-decoration: none;
  font-weight: 400;
  transition: 0.3s;
}
.results-grid a:hover {
  opacity: 0.6;
}

.close-search-custom {
  background: none;
  border: none;
  cursor: pointer;
  font-weight: 500;
  font-size: 18px;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 8px;
}
.close-search-custom svg {
  position: relative;
}

.btn-input-search {
  position: relative;
  background: rgba(10, 10, 10, 0.05);
  height: 40px;
  width: 100%;
  border-radius: 40px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 400;
  color: rgba(10, 10, 10, 0.55);
  cursor: pointer;
}
@media (max-width: 1199px) {
  .btn-input-search {
    display: none;
  }
}

.footer {
  position: relative;
  padding: 70px 0;
  background-color: rgb(10, 10, 10);
}
@media (max-width: 767px) {
  .footer {
    padding: 50px 0 80px;
  }
}
.footer-logo img {
  width: 132px;
  height: auto;
}
@media (max-width: 1199px) {
  .footer-logo img {
    width: 44px;
    height: auto;
    display: block;
  }
}
.footer .wrap {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
@media (max-width: 767px) {
  .footer .wrap {
    flex-direction: column;
    gap: 40px;
  }
}
@media (max-width: 767px) {
  .footer-col:first-child {
    order: 3;
  }
}
.footer-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 22px;
  color: rgb(249, 255, 255);
}
@media (max-width: 767px) {
  .footer-title {
    padding: 8px 0;
    font-size: 20px;
  }
}
.footer-title .icon-fluid {
  display: none;
}
@media (max-width: 767px) {
  .footer-title .icon-fluid {
    display: block;
  }
}
@media (max-width: 767px) {
  .footer__menu {
    display: none;
  }
}
.footer-menu {
  display: flex;
  gap: 110px;
}
@media (max-width: 1199px) {
  .footer-menu {
    gap: 40px;
  }
}
@media (max-width: 767px) {
  .footer-menu {
    flex-direction: column;
    gap: 24px;
  }
}
.footer .menu {
  display: grid;
  gap: 16px;
  padding-top: 24px;
}
@media (max-width: 767px) {
  .footer .menu {
    padding-top: 10px;
  }
}
.footer .menu li a {
  position: relative;
  color: rgba(250, 250, 250, 0.6);
  transition: 0.3s ease;
}
.footer .menu li a:hover {
  color: rgb(250, 250, 250);
}
.footer-contacts {
  padding-top: 24px;
}
@media (max-width: 767px) {
  .footer-contacts {
    display: none;
    padding-top: 10px;
  }
}
.footer-contacts__wrap {
  display: grid;
  gap: 16px;
}
.footer-contacts a {
  color: rgb(255, 255, 255);
  opacity: 0.8;
  display: flex;
  align-items: center;
  gap: 4px;
}
.footer-contacts a:hover {
  opacity: 1;
}
.footer .socials {
  padding-top: 24px;
}
.footer .socials-item {
  position: relative;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 34px;
}
.footer-copyright {
  position: relative;
}

.pagination {
  list-style: none;
  padding: 0;
  margin-top: 36px;
}
.pagination .ajax-pagination {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px;
}
.pagination-btn {
  font-size: 16px;
  line-height: 1;
  border-radius: 1px;
  text-decoration: none;
  transition: all 0.3s ease;
  background: transparent;
  border: none;
  height: 24px;
  width: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: rgba(0, 0, 0, 0.4);
}
.pagination-btn.active {
  color: rgb(0, 0, 0);
  pointer-events: none;
}
.pagination-btn:hover {
  color: rgb(0, 0, 0);
  opacity: 1 !important;
}
.pagination-btn.prev, .pagination-btn.next {
  font-weight: 400;
  padding: 0;
  opacity: 0.4;
}

.entry-content {
  font-size: 1.125rem;
  line-height: 1.7;
  word-wrap: break-word;
}
.entry-content .container {
  position: relative;
  max-width: 1024px;
}
.entry-content .wp-block-group__inner-container {
  max-width: 704px;
  margin: 0 auto;
}
.entry-content > *:first-child {
  margin-top: 0 !important;
}
.entry-content p,
.entry-content blockquote,
.entry-content ul,
.entry-content ol,
.entry-content dl,
.entry-content table,
.entry-content pre,
.entry-content figure {
  margin-top: 0;
  margin-bottom: 1.5rem;
}
.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
  color: #111;
  line-height: 1.3;
  font-weight: 700;
  margin-top: 2.5rem;
  margin-bottom: 1.25rem;
}
.entry-content h1 {
  font-size: 2.5rem;
}
.entry-content h2 {
  font-size: 2rem;
}
.entry-content h3 {
  font-size: 1.75rem;
}
.entry-content h4 {
  font-size: 1.5rem;
}
.entry-content h5 {
  font-size: 1.25rem;
}
.entry-content h6 {
  font-size: 1rem;
}
.entry-content ul,
.entry-content ol {
  padding-left: 1.5rem;
}
.entry-content ul li,
.entry-content ol li {
  margin-bottom: 0.5rem;
  list-style: disc;
}
.entry-content ul li ul,
.entry-content ul li ol,
.entry-content ol li ul,
.entry-content ol li ol {
  margin-top: 0.5rem;
  margin-bottom: 0;
}
.entry-content ul {
  list-style: disc;
}
.entry-content ol {
  list-style: decimal;
}
.entry-content blockquote {
  padding: 1rem 1.5rem;
  border-left: 4px solid #0073aa;
  background-color: #f9f9f9;
  font-style: italic;
}
.entry-content blockquote p:last-child {
  margin-bottom: 0;
}
.entry-content blockquote cite {
  display: block;
  margin-top: 0.75rem;
  font-size: 0.9rem;
  font-style: normal;
  color: #666;
}
.entry-content blockquote cite:before {
  content: "— ";
}
.entry-content figure {
  margin-left: 0;
  margin-right: 0;
}
.entry-content figure img {
  max-width: 100%;
  height: auto;
  display: block;
}
.entry-content figure figcaption {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  text-align: center;
  color: #666;
  line-height: 1.4;
}
.entry-content pre {
  background: #222;
  color: #eee;
  padding: 1.25rem;
  overflow-x: auto;
  border-radius: 4px;
  font-size: 0.9rem;
}
.entry-content pre code {
  background: transparent;
  padding: 0;
  border-radius: 0;
  color: inherit;
}
.entry-content code {
  background: #f0f0f0;
  padding: 0.2rem 0.4rem;
  border-radius: 3px;
  font-family: SFMono-Regular, Consolas, "Liberation Mono", Menlo, monospace;
  font-size: 0.9em;
}
.entry-content table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 1rem;
}
.entry-content table th,
.entry-content table td {
  padding: 0.75rem;
  border: 1px solid #ddd;
  text-align: left;
  vertical-align: top;
}
.entry-content table th {
  background: #f5f5f5;
  font-weight: 600;
}
.entry-content a {
  color: #0073aa;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.entry-content a:hover {
  text-decoration: none;
}
.entry-content hr {
  border: 0;
  border-top: 1px solid #eee;
  margin: 3rem 0;
}

.catalog {
  position: relative;
  padding-bottom: 35px;
  padding-top: 40px;
}
@media (max-width: 1199px) {
  .catalog {
    padding-top: 8px;
  }
}
.catalog #breadcrumbs {
  margin-bottom: 24px;
}
@media (max-width: 1199px) {
  .catalog #breadcrumbs {
    display: none;
  }
}
.catalog .popular-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 16px;
  list-style: none;
}
@media (max-width: 1199px) {
  .catalog .popular-products-grid {
    grid-template-columns: 1fr;
    gap: 32px 16px;
  }
}
.catalog .popular-products-grid .not-found {
  grid-column: 1/-1;
  width: 100%;
}
.catalog-main {
  position: relative;
}
.catalog-main .load-more {
  position: relative;
  margin: 70px auto 0;
  font-size: 18px;
  padding: 12px 24px;
  width: fit-content;
  display: block;
  cursor: pointer;
}
.catalog-main .load-more__wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}
.catalog-header {
  position: relative;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: space-between;
}
@media (max-width: 1199px) {
  .catalog-header {
    margin-bottom: 32px;
  }
}

.catalog-controls {
  display: flex;
  align-items: center;
  gap: 24px;
}

.filter-toggle {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 18px;
  transition: 0.3s ease;
}
.filter-toggle:hover {
  opacity: var(--text-hover);
}
@media (max-width: 1199px) {
  .filter-toggle {
    display: none;
  }
}

.filter-toggle-mobile {
  display: none;
  padding: 4px;
}
.filter-toggle-mobile svg {
  display: block;
  width: 32px;
  height: auto;
}
@media (max-width: 1199px) {
  .filter-toggle-mobile {
    display: block;
  }
}

.catalog-sorting {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 18px;
}
@media (max-width: 1199px) {
  .catalog-sorting {
    display: none;
  }
}

.catalog-layout {
  display: grid;
  grid-template-columns: 312px 1fr;
  gap: 48px;
  transition: grid-template-columns 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 1199px) {
  .catalog-layout {
    grid-template-columns: 1fr;
  }
}

/* Стан, коли фільтри сховані */
.catalog-layout.filters-hidden {
  grid-template-columns: 0px 1fr;
  gap: 0;
}

.catalog-layout.filters-hidden .catalog-sidebar {
  opacity: 0;
  transform: translateX(-350px);
  pointer-events: none;
}

/* Основний контент автоматично займає все місце */
.catalog-main {
  width: 100%;
  transition: all 0.4s ease;
}

.catalog-sidebar {
  display: grid;
  gap: 24px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease, opacity 0.3s ease, width 0.4s ease, margin 0.4s ease;
  opacity: 1;
  width: 100%;
}
.catalog-sidebar.is-active {
  transform: translateX(0%);
}
@media (max-width: 1199px) {
  .catalog-sidebar {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    background-color: #fff;
    z-index: 30;
    padding: 40px 24px;
    overflow: auto;
    transform: translateX(-100%);
    transition: 0.3s;
  }
}

.pagination-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-top: 80px;
}
.pagination-wrapper .page-numbers {
  position: relative;
  color: rgba(10, 10, 10, 0.5);
  font-size: 18px;
  width: 46px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pagination-wrapper .page-numbers.current {
  color: rgb(10, 10, 10);
}
.pagination-wrapper .page-numbers.prev, .pagination-wrapper .page-numbers.next {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: rgba(10, 10, 10, 0.05);
  width: 56px;
  height: 56px;
  border-radius: 100%;
  transition: 0.3s ease;
}
.pagination-wrapper .page-numbers.prev:hover, .pagination-wrapper .page-numbers.next:hover {
  background: rgba(10, 10, 10, 0.15);
}

.category-navigation {
  position: relative;
  overflow: auto;
  border-bottom: 1px solid rgba(10, 10, 10, 0.15);
  margin-bottom: 24px;
  display: none;
  width: calc(100% + 48px);
  margin-left: -24px;
}
@media (max-width: 767px) {
  .category-navigation {
    display: block;
  }
}
.category-navigation::-webkit-scrollbar {
  display: none;
}
.category-navigation .category-menu {
  display: flex;
}
.category-navigation .category-menu li a {
  position: relative;
  line-height: 56px;
  padding: 0 12px;
  white-space: nowrap;
  color: rgba(10, 10, 10, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
}
.category-navigation .category-menu li a.is-active {
  font-size: 18px;
  font-weight: 600;
  color: rgb(10, 10, 10);
}
.category-navigation .category-menu li a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: rgb(10, 10, 10);
  height: 2px;
}

.lang-switcher {
  background: rgba(250, 250, 250, 0.15);
  border-radius: 40px;
  margin-left: 32px;
  padding: 2px;
}
.lang-switcher__container {
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
}
.lang-switcher__item {
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  position: relative;
  width: 44px;
  height: 30px;
  border-radius: 40px;
  color: rgb(250, 250, 250);
  font-size: 14px;
}
.lang-switcher__item.is-active {
  background: rgba(250, 250, 250, 0.25);
}

body.wp-theme-unitedsound .product {
  position: relative;
}
body.wp-theme-unitedsound .product-image-wrapper {
  position: relative;
  padding: 24px;
  background-color: var(--color-light);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: auto;
  aspect-ratio: 16/16;
}
body.wp-theme-unitedsound .product-image-wrapper img {
  position: relative;
  height: 100%;
}
body.wp-theme-unitedsound .product .yith-wcwl-add-to-wishlist,
body.wp-theme-unitedsound .product span.onsale,
body.wp-theme-unitedsound .product .add_to_cart_button {
  display: none;
}
body.wp-theme-unitedsound .product .price {
  font-size: var(--fs-lg);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 12px;
}
body.wp-theme-unitedsound .product .price del {
  color: rgb(223, 81, 66);
  order: 2;
  font-size: 18px;
}
body.wp-theme-unitedsound .product .price ins {
  text-decoration: none;
  font-size: inherit;
}
body.wp-theme-unitedsound .product .woocommerce-loop-product__title {
  font-size: var(--fs-md);
  font-weight: 400;
  margin-bottom: 8px;
}

.filter-group {
  position: relative;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}
.filter-group-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.filter-group-header__title {
  position: relative;
  font-size: 20px;
  font-weight: 500;
}
.filter-group-content {
  padding-top: 24px;
}
.filter-group:last-child {
  border-bottom: none;
}

.active-filters {
  position: relative;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.filter-scroll-area {
  display: grid;
  gap: 20px;
}

.search-within-filter {
  position: relative;
  margin-bottom: 24px;
}

.custom-checkbox {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: 0.3s ease;
}
.custom-checkbox .checkbox-box {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border: 1px solid rgba(10, 10, 10, 0.25);
  border-radius: 4px;
  min-width: 24px;
  max-width: 24px;
  height: 24px;
}
.custom-checkbox .checkbox-text {
  font-size: 18px;
}
.custom-checkbox input {
  position: relative;
  display: none;
}
.custom-checkbox input:checked ~ .checkbox-box {
  position: relative;
  background: rgb(10, 10, 10);
}
.custom-checkbox:hover {
  opacity: var(--text-hover);
}

.price-range-inputs {
  display: flex;
  align-items: center;
  margin-top: 24px;
}
.price-range-inputs input {
  height: 42px;
  border-radius: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(10, 10, 10, 0.15);
  font-size: 16px;
  color: rgb(10, 10, 10);
  text-align: center;
  width: 130px;
}
.price-range-inputs input::placeholder {
  color: rgba(10, 10, 10, 0.55);
}
.price-range-inputs .divider {
  display: block;
  color: rgba(10, 10, 10, 0.55);
  font-size: 24px;
  margin: 0 8px;
}
.price-range-inputs .currency {
  display: block;
  color: rgba(10, 10, 10, 0.55);
  font-size: 24px;
  margin-left: 8px;
}

.reset-group {
  transition: opacity 0.3s ease;
  display: none;
  cursor: pointer;
}
.reset-group:hover {
  opacity: var(--text-hover);
}
.reset-group.is-active {
  opacity: 1;
  pointer-events: auto;
}

.is-limit-hidden {
  display: none !important;
}

/* Коли розгорнуто — показуємо всі */
.filter-group.expanded .is-limit-hidden {
  display: flex !important;
}

.show-more-terms {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
}
.show-more-terms:hover {
  text-decoration: underline;
}
.show-more-terms span {
  font-size: 18px;
}

.catalog-sorting {
  position: relative;
  z-index: 10;
}

.custom-select {
  position: relative;
}
.custom-select.is-open .custom-select-options {
  display: block;
}
.custom-select-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  border: none;
  width: 100%;
  font-size: 18px;
  transition: 0.3s ease;
}
.custom-select-trigger:hover {
  opacity: var(--text-hover);
}
.custom-select-trigger svg {
  width: 20px;
  margin-left: 10px;
}
.custom-select-options {
  position: absolute;
  top: 100%;
  right: 0;
  background: #fff;
  border: 1px solid #eee;
  box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.03);
  box-shadow: 0px 15px 15px 0px rgba(0, 0, 0, 0.03);
  box-shadow: 0px 33px 20px 0px rgba(0, 0, 0, 0.02);
  box-shadow: 0px 58px 23px 0px rgba(0, 0, 0, 0);
  box-shadow: 0px 91px 25px 0px rgba(0, 0, 0, 0);
  display: none;
  min-width: 240px;
  margin-top: 5px;
  padding: 16px;
}

.custom-option {
  padding: 8px 0;
  cursor: pointer;
  transition: background 0.2s;
  font-size: 18px;
  display: block;
  text-align: right;
}

/* Стрілка або іконка сортування */
.active-filters-head {
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}
.active-filters-head__title {
  font-size: 24px;
  font-weight: 500;
}
.active-filters-head__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.active-filters-head__right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.active-filters-selected {
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  display: none;
}
.active-filters-selected__wrap {
  display: grid;
  gap: 4px;
  width: 100%;
}
.active-filters-selected__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  line-height: 32px;
  cursor: pointer;
  transition: 0.3s ease;
}
.active-filters-selected__item:hover {
  opacity: var(--text-hover);
}

.reset-all {
  position: relative;
  cursor: pointer;
  display: none;
  transition: 0.3s ease;
}
.reset-all:hover {
  opacity: var(--text-hover);
}

.close-catalog-sidebar {
  display: none;
  cursor: pointer;
}
@media (max-width: 1199px) {
  .close-catalog-sidebar {
    display: flex;
  }
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease;
  overflow: auto;
}
.mobile-menu-overlay.is-active {
  visibility: visible;
  opacity: 1;
}
.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(10, 10, 10, 0.15);
  width: calc(100% + 48px);
  margin-left: -24px;
  padding: 12px 0;
  margin-bottom: 24px;
  position: relative;
  min-height: 64px;
}
.mobile-menu-header .logo img {
  display: block;
  height: 38px;
  width: auto;
}
.mobile-menu-content {
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  padding: 0 24px;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}
.mobile-menu-close {
  position: absolute;
  right: 16px;
  display: flex;
}
.mobile-menu-footer {
  display: flex;
  justify-content: center;
  margin-top: auto;
  text-align: center;
  padding: 24px 0;
  border-top: 1px solid rgba(10, 10, 10, 0.15);
  width: calc(100% + 48px);
  margin-left: -24px;
}
.mobile-menu-footer .socials svg {
  width: 32px;
  height: 32px;
}
.mobile-menu-footer .socials svg path {
  stroke: var(--color-surface);
}

.mobile-menu-overlay.is-active .mobile-menu-content {
  transform: translateX(0);
}

/* Стилізація пунктів меню (wp_nav_menu) */
.main-mobile-links {
  display: grid;
  list-style: none;
  padding: 0;
  gap: 10px;
}
.main-mobile-links .menu-item-has-children > a::after {
  content: "→";
  font-size: 14px;
}
.main-mobile-links li {
  position: relative;
  position: unset;
}
.main-mobile-links li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 20px;
  font-weight: 500;
  text-decoration: none;
  line-height: 40px;
}

.mobile-nav-viewport {
  overflow: hidden;
  position: relative;
  transition: height 0.3s ease;
  width: 100%;
}
.mobile-nav-container {
  display: flex;
  transition: transform 0.3s ease;
  width: 200%;
  align-items: flex-start;
}
.mobile-nav-line {
  width: 100%;
  height: 1px;
  margin: 24px 0;
  border: 1px solid rgba(10, 10, 10, 0.15);
}

.main-mobile-links {
  width: 50%;
  list-style: none;
  padding: 0;
  transition: opacity 0.3s;
}
.main-mobile-links .sub-menu {
  display: none;
  position: absolute;
  top: 0;
  left: 50%;
  width: 50%;
  min-height: 100%;
  background: #fff;
  list-style: none;
  padding: 0;
  margin: 0;
  z-index: 10;
}
.main-mobile-links .sub-menu li a {
  font-weight: 400;
}

.mobile-user-menu {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mobile-user-menu a {
  line-height: 40px;
  display: flex;
}

/* Стан при відкритому субменю */
.mobile-menu-content.sub-menu-open .mobile-nav-container {
  transform: translateX(-50%);
}
.mobile-menu-content.sub-menu-open .logo {
  display: none;
}
.mobile-menu-content.sub-menu-open .menu-back {
  display: flex;
}
.mobile-menu-content.sub-menu-open .menu-title {
  display: block;
}

/* Елементи керування в хедері */
.menu-back {
  display: none;
  position: absolute;
  left: 16px;
  background: none;
  border: none;
}

.menu-title {
  display: none;
  font-size: 20px;
  font-weight: 500;
}

/* ================== Woocomerce =================== */
.product-gallery {
  position: relative;
  width: 100%;
}
.product-gallery .f-carousel {
  width: 100%;
  height: auto;
  aspect-ratio: 16/16;
}
.product-gallery .f-carousel__slide {
  display: flex;
  justify-content: center;
  align-items: center;
}
.product-gallery .f-carousel__slide img {
  display: block;
  height: auto;
  width: auto;
}
.product-gallery .f-thumbs__viewport {
  gap: 8px;
  overflow: hidden !important;
}
.product-gallery .custom-thumb-addon {
  min-width: 100px;
  max-width: 100px;
  height: 100px;
  background: rgb(250, 250, 250);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
}
@media (max-width: 1199px) {
  .product-gallery .custom-thumb-addon {
    min-width: 64px;
    max-width: 64px;
    height: 64px;
  }
}
.product-gallery .custom-thumb-addon span {
  line-height: 24px;
}
@media (max-width: 767px) {
  .product-gallery .custom-thumb-addon span {
    display: none;
  }
}
.product-gallery {
  /* Контейнер прев'ю */
}
.product-gallery .f-thumbs {
  --f-thumb-width: 100px;
  --f-thumb-height: 100px;
  --f-thumb-outline: 0;
  margin-top: 15px;
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 8px;
}
@media (max-width: 1199px) {
  .product-gallery .f-thumbs {
    --f-thumb-width: 64px;
    --f-thumb-height: 64px;
  }
}
.product-gallery {
  /* Кожен слайд прев'ю */
}
.product-gallery .f-thumbs__slide {
  flex: 0 0 auto !important;
  width: 100px !important;
  height: 100px !important;
  transition: opacity 0.3s ease;
  padding: 0 !important;
  border: 1px solid transparent !important;
}
@media (max-width: 1199px) {
  .product-gallery .f-thumbs__slide {
    width: 64px !important;
    height: 64px !important;
  }
}
.product-gallery .f-thumbs__slide.is-selected {
  border-bottom: 1px solid rgb(10, 10, 10) !important;
}
.product-gallery .f-thumbs__slide button {
  margin: 0 !important;
  padding: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
}
.product-gallery .f-thumbs__slide button:after {
  display: none;
}
.product-gallery {
  /* Активний елемент — робимо напівпрозорим */
}
.product-gallery .f-thumbs__slide.is-nav-selected {
  opacity: 0.4;
}
.product-gallery {
  /* Зображення всередині прев'ю */
}
.product-gallery .f-thumbs__slide__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px; /* Опціонально */
}
.product-gallery {
  /* Контейнер кастомного прев'ю */
}
.product-gallery .f-thumbs__custom-media {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  background: #f5f5f5; /* Світлий фон як на скрині */
  color: #333;
  font-size: 12px;
  font-family: sans-serif;
  gap: 4px;
}
.product-gallery .f-thumbs__custom-media svg {
  width: 20px;
  height: 20px;
}
.product-gallery {
  /* Прибираємо стандартні стилі картинки, якщо вони заважають у цьому блоці */
}
.product-gallery .f-thumbs__track__button.is-nav-selected .f-thumbs__custom-media {
  border: 1px solid #000;
}

.custom-product-card {
  position: relative;
  padding-bottom: 35px;
}
.custom-product-card .brand-name {
  font-size: 20px;
  font-weight: 900;
  display: inline-block;
  margin-bottom: 24px;
}
.custom-product-card .product-title {
  margin-bottom: 8px;
}
.custom-product-card .product-meta {
  margin-bottom: 24px;
  display: inline-block;
  color: var(--color-text-muted);
}
.custom-product-card .short-description {
  position: relative;
  margin-bottom: 16px;
}
.custom-product-card .current-price {
  position: relative;
  margin-bottom: 12px;
  display: flex;
  align-items: flex-end;
  gap: 12px;
}
.custom-product-card .current-price del {
  font-size: 32px;
  font-weight: 700;
  color: rgb(223, 81, 66);
  order: 3;
  line-height: 40px;
}
.custom-product-card .current-price ins {
  font-size: 40px;
  font-weight: 700;
  line-height: 40px;
  text-decoration: none;
}
.custom-product-card .stock-status {
  display: flex;
  align-items: center;
  font-size: 18px;
  font-weight: 500;
  gap: 8px;
}

.product-main-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  padding-bottom: 70px;
}
@media (max-width: 1199px) {
  .product-main-container {
    gap: 40px;
  }
}
@media (max-width: 767px) {
  .product-main-container {
    grid-template-columns: 1fr;
  }
}

.scroll-to-reviews {
  position: relative;
  display: block;
  width: fit-content;
  border-bottom: 1px dashed rgb(10, 10, 10);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 32px;
}

.product-benefits {
  position: relative;
  margin-top: 32px;
  display: grid;
  gap: 12px;
}
.product-benefits .benefit-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}
.product-benefits .benefit-item span {
  font-size: 20px;
}

.main-video {
  position: relative;
  margin-bottom: 70px;
}
.main-video iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}

.product-accordion-item {
  border-top: 1px solid rgba(10, 10, 10, 0.15);
}
.product-accordion-item.ac-reviews {
  border-bottom: 1px solid rgba(10, 10, 10, 0.15);
}

.product-description-accordion {
  border-top: 1px solid #eee;
  margin-bottom: 70px;
}

.accordion-trigger {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 0;
  cursor: pointer;
}
.accordion-trigger__title {
  text-transform: uppercase;
  font-size: 24px;
  font-weight: 700;
}

.accordion-trigger h2 {
  margin: 0;
  font-size: 20px;
  text-transform: uppercase;
}

/* Контейнер для контенту */
.accordion-content {
  display: grid;
  transition: grid-template-rows 0.4s ease;
  overflow: hidden;
  grid-template-rows: 0fr;
}

.accordion-trigger.is-active + .accordion-content {
  grid-template-rows: 1fr;
  padding-bottom: 40px;
}
.accordion-trigger.is-active .plus-icon svg rect:first-child {
  display: none;
}

.content-inner {
  min-height: 0;
}

.similar-products {
  position: relative;
}

.recently-viewed {
  position: relative;
  padding-bottom: 70px;
}

.purchase-actions {
  position: relative;
  display: flex;
  gap: 8px;
  margin-top: 2rem;
}
.purchase-actions form {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
}

.custom-product-card .single_add_to_cart_button {
  position: relative;
  height: 56px !important;
  background-color: var(--color-surface) !important;
  border-radius: 40px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0 !important;
  width: 100%;
  text-align: center;
  font-size: 18px !important;
  font-weight: 500 !important;
  font-family: var(--font-family-main);
  transition: 0.3s ease;
}
.custom-product-card .single_add_to_cart_button:hover {
  background-color: var(--color-surface-light) !important;
}

.wishlist-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-width: 56px;
  height: 56px;
  border: 1px solid var(--color-surface);
  cursor: pointer;
  border-radius: 100%;
  gap: 8px;
}
@media (max-width: 767px) {
  .wishlist-btn {
    width: 100%;
  }
}
.wishlist-btn span {
  font-size: 18px;
  font-weight: 500;
  display: none;
}
@media (max-width: 767px) {
  .wishlist-btn span {
    display: block;
  }
}
.wishlist-btn svg path {
  transition: 0.3s ease;
}
.wishlist-btn:hover svg path {
  fill: var(--color-surface);
}

.woo-breadcrumbs {
  position: relative;
  padding: 10px 0;
}

.product-media {
  position: relative;
  display: grid;
  gap: 16px;
}
.product-media iframe {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}
.product-media.count-2 {
  position: relative;
  grid-template-columns: repeat(2, 1fr);
}
.product-media.count-3 {
  position: relative;
  grid-template-columns: repeat(2, 1fr);
}
.product-media.count-3 > *:first-child {
  grid-column: 1/-1;
}
.product-media.count-4 {
  position: relative;
  grid-template-columns: repeat(3, 1fr);
}
.product-media.count-4 > *:first-child {
  grid-column: 1/-1;
}

.product-article {
  position: relative;
}
.product-article__link {
  width: 100%;
  height: auto;
  aspect-ratio: 16/5.8;
  cursor: pointer;
  display: flex;
  position: relative;
}
.product-article__link img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.product-article__link .m-version {
  display: none;
}

body.wp-theme-unitedsound .shortcode-wcpr-grid-style-item {
  position: relative;
}
body.wp-theme-unitedsound .shortcode-wcpr-grid-style {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
}
body.wp-theme-unitedsound .shortcode-wcpr-filter-container {
  display: none !important;
}
body.wp-theme-unitedsound .shortcode-review-content-container-top {
  display: grid !important;
}
body.wp-theme-unitedsound .shortcode-wcpr-review-content-short {
  color: rgb(10, 10, 10);
  font-size: 18px;
}
body.wp-theme-unitedsound .shortcode-wcpr-grid.shortcode-wcpr-grid-style .shortcode-review-content-container-top .shortcode-review-content-image .shortcode-reviews-images {
  max-width: 100px;
  max-height: 100px;
}
body.wp-theme-unitedsound .review-author-container-bottom-left {
  display: none !important;
}
body.wp-theme-unitedsound .shortcode-wcpr-review-content {
  font-size: 18px !important;
}
body.wp-theme-unitedsound .shortcode-wcpr-grid.shortcode-wcpr-grid-style .shortcode-review-content-container-top {
  background-color: transparent !important;
  padding: 0;
  margin: 0;
}
body.wp-theme-unitedsound .shortcode-wcpr-grid.shortcode-wcpr-grid-style .shortcode-review-content-container-top:after {
  display: none !important;
}
body.wp-theme-unitedsound .shortcode-wcpr-grid.shortcode-wcpr-grid-style .shortcode-review-content-container-top .shortcode-review-content-container {
  padding: 0;
  display: grid;
}
body.wp-theme-unitedsound .shortcode-wcpr-grid.shortcode-wcpr-grid-style .shortcode-review-content-container-top .shortcode-review-content-image {
  width: fit-content;
}
body.wp-theme-unitedsound .shortcode-wcpr-content {
  display: grid;
}
body.wp-theme-unitedsound .shortcode-review-author-container {
  order: -1;
  margin-bottom: 12px;
}
body.wp-theme-unitedsound .shortcode-wcpr-comment-author {
  font-size: 18px;
  font-weight: 500;
}
body.wp-theme-unitedsound .wcpr-review-date {
  font-size: 16px;
  color: rgba(10, 10, 10, 0.55);
  font-style: normal;
  position: absolute;
  bottom: -32px;
}
body.wp-theme-unitedsound .video-initialized {
  width: 100%;
}
body.wp-theme-unitedsound .shortcode-wcpr-wrap-review-custom-fields {
  order: 2;
}

.heroBanner {
  position: relative;
  width: 100%;
  height: calc(100vh - 128px);
  padding: 0;
}
@media (max-width: 1199px) {
  .heroBanner {
    height: 500px;
  }
}
.heroBanner .swiper {
  width: 100%;
  height: 100%;
}
.heroBanner-slider {
  position: relative;
  width: 100%;
  height: 100%;
}
.heroBanner-slider img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.heroBanner-slider::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.7) 100%);
  z-index: 2;
}
.heroBanner .swiper-pagination {
  position: absolute;
  z-index: 3;
  bottom: 40px;
}
.heroBanner .swiper-pagination-bullet {
  background: rgba(250, 250, 250, 0.25);
}
.heroBanner .swiper-pagination-bullet-active {
  background: rgb(250, 250, 250);
}
.heroBanner .swiper-pagination-bullet:hover {
  background: rgb(250, 250, 250);
}
.heroBanner-img-desktop {
  position: relative;
}
@media (max-width: 767px) {
  .heroBanner-img-desktop {
    display: none;
  }
}
.heroBanner-img-mobile {
  position: relative;
  display: none;
}
@media (max-width: 767px) {
  .heroBanner-img-mobile {
    display: block;
  }
}
.heroBanner-link {
  position: absolute;
  z-index: 6;
  bottom: 90px;
  left: 50%;
  transform: translate(-50%);
  background: #fff;
  height: 46px;
  padding: 0 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 40px;
  cursor: pointer;
  font-size: 18px;
}

.woo-categories {
  position: relative;
}
.woo-categories__list {
  position: relative;
}
.woo-categories .swiper {
  overflow: visible;
}
.woo-categories .swiper-slide {
  position: relative;
  min-width: 280px;
  max-width: 280px;
  height: auto;
}
@media (max-width: 767px) {
  .woo-categories .swiper-slide {
    min-width: 212px;
    max-width: 212px;
  }
}

.woo-category-card {
  position: relative;
  background-color: rgb(250, 250, 250);
  padding: 24px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}
.woo-category-card__image img {
  display: block;
  height: 184px;
  width: auto;
}
@media (max-width: 767px) {
  .woo-category-card__image img {
    height: 160px;
  }
}
.woo-category-card__title {
  display: block;
  text-align: center;
  margin-top: 24px;
}
@media (max-width: 767px) {
  .woo-category-card__title {
    margin-top: 16px;
  }
}

.bestsellers {
  position: relative;
  padding-top: 70px;
}

.products-slider .swiper-slide {
  position: relative;
  min-width: 344px;
  max-width: 344px;
}
@media (max-width: 767px) {
  .products-slider .swiper-slide {
    min-width: 324px;
    max-width: 324px;
  }
}
.products-slider .swiper {
  overflow: visible;
}

.hblog {
  position: relative;
}

.hblog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
@media (max-width: 767px) {
  .hblog-grid {
    grid-template-columns: 1fr;
  }
}

.hblog-card {
  position: relative;
  overflow: hidden;
  background-color: rgb(250, 250, 250);
}
.hblog-card__thumbnail {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.hblog-card__thumbnail img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hblog-card__content {
  position: relative;
  padding: 24px;
}
.hblog-card-title {
  position: relative;
  font-size: 20px;
  font-weight: 500;
}

.reviews {
  position: relative;
  padding-bottom: 70px;
}
.reviews .swiper {
  overflow: visible;
}
.reviews .swiper-slide {
  position: relative;
  min-width: 464px;
  max-width: 464px;
  height: auto;
  display: flex;
}

.reviews-item {
  position: relative;
  padding: 52px 16px 52px;
  position: relative;
  background-color: rgb(250, 250, 250);
}
.reviews-item .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  width: 64px;
  height: 64px;
  border-radius: 100%;
  position: absolute;
  left: 50%;
  top: -32px;
  transform: translateX(-50%);
}
.reviews-item p {
  text-align: center;
  display: block;
  font-size: 18px;
  color: rgba(10, 10, 10, 0.75);
  font-weight: 400;
}
.reviews-item span {
  display: block;
  text-align: center;
  margin-top: 32px;
}

.brands-section {
  position: relative;
}
.brands-section .swiper-slide {
  position: relative;
  min-width: 344px;
  max-width: 344px;
}
@media (max-width: 767px) {
  .brands-section .swiper-slide {
    min-width: 324px;
    max-width: 324px;
  }
}
.brands-section .swiper {
  overflow: visible;
}

.brand-card {
  position: relative;
  width: 100%;
}
.brand-card__image {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 440px;
  background-color: var(--color-light);
}
@media (max-width: 767px) {
  .brand-card__image {
    height: 414px;
  }
}
.brand-card__content {
  padding-top: 16px;
  padding-left: 8px;
}
.brand-card__title {
  position: relative;
  display: block;
  margin-bottom: 12px;
  font-size: 20px;
  font-weight: 500;
  text-transform: uppercase;
}
.brand-card__excerpt {
  position: relative;
  font-size: var(--fs-md);
  font-weight: 400;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  color: rgba(10, 10, 10, 0.65);
}

.hsubscribe {
  position: relative;
  padding: 100px 0;
  background-size: cover;
  background-repeat: no-repeat;
  color: #fff;
}
@media (max-width: 767px) {
  .hsubscribe {
    padding: 48px 0;
  }
}
.hsubscribe::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(42, 42, 42, 0.4);
}
.hsubscribe .wrap {
  display: grid;
  position: relative;
  z-index: 3;
  max-width: 600px;
  gap: 32px;
}
.hsubscribe .wpcf7-form {
  position: relative;
  height: 52px;
  width: 100%;
  display: flex;
  border-radius: 40px;
  background-color: #fff;
  padding: 2px;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .hsubscribe .wpcf7-form {
    height: 45px;
  }
}
.hsubscribe .wpcf7-form .wpcf7-form-control-wrap {
  width: 100%;
  height: 100%;
}
.hsubscribe .wpcf7-form input[type=email] {
  padding-left: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  appearance: none;
  -webkit-appearance: none;
  box-sizing: border-box;
  font-size: 18px;
  font-weight: 400;
  color: rgb(10, 10, 10);
  padding-left: 24px;
  background-color: transparent;
  border: none;
}
@media (max-width: 767px) {
  .hsubscribe .wpcf7-form input[type=email] {
    font-size: 16px;
    padding-left: 16px;
  }
}
.hsubscribe .wpcf7-form input[type=email]:focus {
  outline: none;
}
.hsubscribe .wpcf7-form input[type=email]::placeholder {
  color: rgba(10, 10, 10, 0.55);
}
.hsubscribe .wpcf7-form input[type=email]:disabled {
  background-color: #f0f0f0;
  cursor: not-allowed;
  opacity: 0.7;
}
.hsubscribe .wpcf7-form input[type=email]::-webkit-search-decoration, .hsubscribe .wpcf7-form input[type=email]::-webkit-search-cancel-button {
  display: none;
}
.hsubscribe .wpcf7-form .wpcf7-submit {
  position: relative;
  min-width: 162px;
  height: 100%;
  background: rgb(10, 10, 10);
  cursor: pointer;
  font-size: 18px;
  color: rgb(250, 250, 250);
  border-radius: 40px;
  border: none;
  outline: none;
}
@media (max-width: 767px) {
  .hsubscribe .wpcf7-form .wpcf7-submit {
    min-width: 137px;
    font-size: 16px;
  }
}
.hsubscribe .wpcf7-form .wpcf7-spinner {
  display: none !important;
}

.blog-page {
  position: relative;
  padding-bottom: 90px;
  padding-top: 40px;
}
.blog-page-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 70px 26px;
}
.blog-page__divider {
  display: block;
  position: relative;
  width: 100%;
  height: 1px;
  background-color: rgba(10, 10, 10, 0.15);
  margin: 90px 0;
}

.blog-card-large {
  position: relative;
  background: rgb(250, 250, 250);
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 70px;
}
.blog-card-large .label {
  position: relative;
  text-transform: uppercase;
  font-weight: 600;
}
.blog-card-large .title {
  color: inherit;
  font-size: 48px;
  font-weight: 400;
  line-height: 1;
}
.blog-card-large__block {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.blog-card-large__img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/16;
  padding: 32px;
}
.blog-card-large__img img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.blog-card-large__content {
  padding: 0 70px;
  display: grid;
  gap: 32px;
}
.blog-card-large__content p {
  font-size: 20px;
  line-height: 1.5;
  font-weight: 400;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 4;
}

.section-istorii-brendiv .blog-card-large {
  background: rgb(10, 10, 10);
  color: rgb(250, 250, 250);
}
.section-istorii-brendiv .blog-card-large__img {
  order: -1;
}

.blog-card {
  position: relative;
}
.blog-card__thumbnail {
  position: relative;
  width: 100%;
  aspect-ratio: 16/16;
  overflow: hidden;
  margin-bottom: 16px;
}
.blog-card__thumbnail img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.blog-card__title {
  font-size: 20px;
  font-weight: 500;
}

.all-brands {
  position: relative;
  padding: 40px 0 170px;
}
@media (max-width: 767px) {
  .all-brands {
    padding: 32px 0 70px;
  }
}
.all-brands .wrapper {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 154px;
}
.all-brands__logo {
  position: relative;
  margin-top: 50px;
}
@media (max-width: 1199px) {
  .all-brands__logo {
    display: none;
  }
}
.all-brands .wrap {
  display: grid;
  gap: 24px;
  width: 100%;
}
@media (max-width: 767px) {
  .all-brands .wrap {
    gap: 44px;
  }
}

.card-brand {
  position: relative;
  display: grid;
  align-items: center;
  grid-template-columns: 464px auto;
}
@media (max-width: 767px) {
  .card-brand {
    grid-template-columns: 1fr;
  }
}
.card-brand__image {
  width: 100%;
  height: auto;
  aspect-ratio: 16/20.5;
  background-color: var(--color-light);
}
.card-brand__content {
  padding-left: 70px;
}
@media (max-width: 767px) {
  .card-brand__content {
    padding-left: 0;
    padding-top: 2rem;
    position: relative;
  }
}
.card-brand__title {
  position: relative;
  display: block;
  font-size: 58px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
}
@media (max-width: 767px) {
  .card-brand__title {
    font-size: 40px;
    margin-bottom: 1.5rem;
  }
}
.card-brand__excerpt {
  position: relative;
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 2.5rem;
}
@media (max-width: 767px) {
  .card-brand__excerpt {
    font-size: 18px;
    margin-bottom: 2rem;
  }
}
.card-brand .btn {
  width: fit-content;
}
.card-brand .btn svg {
  display: none;
}
@media (max-width: 767px) {
  .card-brand .btn svg {
    display: block;
  }
}
@media (max-width: 767px) {
  .card-brand .btn {
    font-size: 0;
    width: 56px;
    padding: 0;
    margin: 0 auto;
  }
}
