:root {
  --bg: #f4f7f0;
  --surface: #ffffff;
  --surface-soft: #eaf1e4;

  --text: #101410;
  --text-soft: #4f5a4f;
  --muted: #7c8679;

  --primary: #0b3d2c;
  --primary-dark: #06140f;
  --primary-soft: #133f31;
  --accent: #8fbf4d;
  --accent-strong: #c7e56d;

  --border: rgba(16, 20, 16, 0.12);
  --shadow: 0 18px 45px rgba(6, 20, 15, 0.14);

  --container: 1560px;
  --radius: 24px;
  --header-height: 112px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

body,
main,
section,
.container {
  min-width: 0;
}

h1,
h2,
h3,
p,
li,
a,
span {
  overflow-wrap: break-word;
}

.container {
  width: min(100% - 40px, var(--container));
  margin: 0 auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  padding: 10px 14px;
  background: var(--primary-dark);
  color: #ffffff;
  border-radius: 10px;
  transform: translateY(-140%);
}

.skip-link:focus {
  transform: translateY(0);
}

/* ==============================
   HEADER
============================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 80;
  min-height: var(--header-height);
  padding: 22px 0 12px;
  background: transparent;
  pointer-events: none;
}

.site-header > .container {
  pointer-events: auto;
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 12px 18px 12px 30px;
  border: 1px solid rgba(255, 255, 255, 0.70);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  min-width: 0;
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  flex: 0 0 44px;
  border-radius: 10px;
  overflow: hidden;
  background: transparent;
  box-shadow: none;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.brand-mark--footer {
  background: transparent;
  box-shadow: none;
}

.brand-text {
  display: grid;
  min-width: 0;
  line-height: 1.05;
}

.brand-text strong {
  color: var(--text);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.brand-text small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-left: auto;
}

.site-nav a,
.site-nav__lang {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border-radius: 999px;
  color: #565d56;
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.site-nav a:hover {
  color: var(--primary-dark);
  background: rgba(11, 61, 44, 0.08);
  transform: translateY(-1px);
}

.site-nav__lang {
  display: none;
  color: var(--muted);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-left: 18px;
  border-left: 1px solid rgba(16, 20, 16, 0.12);
}

.header-icon-link,
.header-language {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 999px;
  color: #3e463e;
  font-size: 15px;
  font-weight: 900;
  white-space: nowrap;
}

.header-icon-link {
  padding: 0 14px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.header-icon-link:hover {
  transform: translateY(-2px);
}

.header-icon-link svg,
.header-language svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.header-cart-icon {
  width: 48px;
  height: 48px;
  display: block;
  object-fit: contain;
  flex: 0 0 48px;
}

.header-language {
  padding: 0 16px;
  cursor: default;
}

.header-cta {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-radius: 999px;
  color: #ffffff;
  background: #111111;
  font-size: 15px;
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.20);
  transition: transform 0.2s ease, background 0.2s ease;
}

.header-cta:hover {
  background: var(--primary);
  transform: translateY(-1px);
}

.header-mobile-actions {
  display: none;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.nav-toggle {
  position: relative;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(11, 61, 44, 0.18);
  border-radius: 50%;
  color: #ffffff;
  background:
    radial-gradient(circle at 30% 18%, rgba(199, 229, 109, 0.42), transparent 30%),
    linear-gradient(135deg, #0b3d2c, #06140f);
  box-shadow:
    0 12px 28px rgba(6, 20, 15, 0.18),
    inset 0 0 0 1px rgba(255, 255, 255, 0.12);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.nav-toggle:hover {
  transform: translateY(-1px);
  box-shadow:
    0 16px 34px rgba(6, 20, 15, 0.24),
    inset 0 0 0 1px rgba(255, 255, 255, 0.16);
}

.nav-toggle span {
  position: absolute;
  left: 50%;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform: translateX(-50%);
  transition: top 0.2s ease, transform 0.2s ease, opacity 0.2s ease, width 0.2s ease;
}

.nav-toggle span:nth-child(1) {
  top: 16px;
}

.nav-toggle span:nth-child(2) {
  top: 23px;
  width: 16px;
}

.nav-toggle span:nth-child(3) {
  top: 30px;
}

.site-header.is-menu-open .nav-toggle span:nth-child(1) {
  top: 23px;
  transform: translateX(-50%) rotate(45deg);
}

.site-header.is-menu-open .nav-toggle span:nth-child(2) {
  opacity: 0;
  width: 0;
}

.site-header.is-menu-open .nav-toggle span:nth-child(3) {
  top: 23px;
  transform: translateX(-50%) rotate(-45deg);
}

/* ==============================
   SHARED FULLSCREEN HERO
   Use on each page:
   style="--hero-bg: url('images/hero-index.webp'); --hero-position: center right; --hero-position-mobile: center;"
============================== */

.home-hero,
.page-hero {
  --hero-bg: linear-gradient(135deg, #06140f, #0b3d2c);
  --hero-position: center;
  --hero-position-mobile: center;

  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  padding:
    calc(var(--header-height, 112px) + 44px)
    clamp(24px, 6vw, 112px)
    80px;
  color: #ffffff;
  background: #06140f;
}

.home-hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: var(--hero-bg);
  background-size: cover;
  background-position: var(--hero-position);
  background-repeat: no-repeat;
  transform: scale(1.02);
}

.home-hero__overlay,
.page-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 72% 28%, rgba(143, 191, 77, 0.22), transparent 34%),
    linear-gradient(90deg,
      rgba(2, 5, 4, 0.94) 0%,
      rgba(6, 20, 15, 0.84) 42%,
      rgba(6, 20, 15, 0.42) 100%),
    linear-gradient(180deg, rgba(2, 5, 4, 0.12), rgba(2, 5, 4, 0.44));
}

.home-hero__inner,
.page-hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}

.home-hero__content,
.page-hero__content {
  width: 100%;
  max-width: 780px;
  min-width: 0;
}

.home-hero__label,
.home-section-label,
.page-hero__label {
  margin: 0 0 16px;
  color: var(--accent-strong);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.22em;
}

.home-hero h1,
.page-hero h1 {
  margin: 0;
  max-width: 920px;
  color: #ffffff;
  font-size: clamp(48px, 7vw, 104px);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.075em;
}

.home-hero h1 span,
.page-hero h1 span {
  display: block;
  color: var(--accent-strong);
}

.home-hero__text,
.page-hero__text {
  max-width: 650px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.80);
  font-size: 20px;
  line-height: 1.55;
}

.home-hero__actions,
.page-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
}

.home-hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin: 36px 0 0;
  padding: 0;
  list-style: none;
}

.home-hero__trust li {
  position: relative;
  padding-left: 20px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  font-weight: 800;
}

.home-hero__trust li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-strong);
}

/* ==============================
   SHARED BUTTONS
============================== */

.home-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  max-width: 100%;
  padding: 0 26px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.home-btn:hover {
  transform: translateY(-2px);
}

.home-btn--primary {
  color: #07140f;
  background: linear-gradient(135deg, #c7e56d, #8fbf4d);
  box-shadow: 0 16px 40px rgba(143, 191, 77, 0.28);
}

.home-btn--ghost {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(12px);
}

.home-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.13);
}

.home-btn--dark {
  color: #ffffff;
  background: var(--primary-dark);
}

.btn-icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.btn-icon img {
  width: 100%;
  height: 100%;
  display: block;
}

/* ==============================
   FOOTER
============================== */

.site-footer {
  color: #dfe8dd;
  background:
    radial-gradient(circle at 12% 0%, rgba(143, 191, 77, 0.16), transparent 28%),
    linear-gradient(180deg, #06140f 0%, #020504 100%);
}

.home-ready {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #ffffff;
  text-align: center;
  background-image:
    linear-gradient(135deg, rgba(6, 20, 15, 0.34), rgba(2, 5, 4, 0.12)),
    url("../images/footer-wildlife-camera.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.home-ready__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 50% 0%, rgba(143, 191, 77, 0.24), transparent 34%),
    linear-gradient(180deg, rgba(6, 20, 15, 0.72), rgba(2, 5, 4, 0.94)),
    linear-gradient(90deg, rgba(2, 5, 4, 0.84), rgba(6, 20, 15, 0.38), rgba(2, 5, 4, 0.84));
}

.home-ready__inner {
  position: relative;
  z-index: 2;
  max-width: 1150px;
  padding: 110px 0;
}

.home-ready h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(54px, 7vw, 98px);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: -0.075em;
}

.home-ready h2 span {
  color: var(--accent-strong);
}

.home-ready p {
  max-width: 760px;
  margin: 28px auto 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.45;
}

.home-ready__actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
  margin-top: 44px;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
  gap: 34px;
  padding: 56px 0;
}

.brand-footer .brand-text strong {
  color: #ffffff;
}

.brand-footer .brand-text small {
  color: rgba(223, 232, 221, 0.62);
}

.footer-brand p {
  max-width: 420px;
  margin: 18px 0 0;
  color: rgba(223, 232, 221, 0.74);
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 9px;
}

.footer-column h2 {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer-column a,
.footer-column p {
  margin: 0;
  color: rgba(223, 232, 221, 0.74);
  font-size: 15px;
}

.footer-column a:hover {
  color: var(--accent-strong);
}

.footer-areas {
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.03);
}

.footer-areas-inner {
  padding: 26px 0;
}

.footer-areas h2 {
  margin: 0 0 18px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.22em;
}

.footer-areas p {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  margin: 0;
  color: rgba(223, 232, 221, 0.70);
  font-size: 15px;
}

.footer-areas p + p {
  margin-top: 10px;
}

.footer-areas strong {
  margin-right: 5px;
  color: rgba(223, 232, 221, 0.84);
  font-weight: 700;
}

.footer-areas span {
  color: rgba(255, 255, 255, 0.92);
}

.footer-areas span:not(:last-child)::after {
  content: " · ";
  color: rgba(223, 232, 221, 0.48);
  margin: 0 5px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
}

.footer-bottom p {
  margin: 0;
  color: rgba(223, 232, 221, 0.58);
  font-size: 14px;
}

/* ==============================
   RESPONSIVE
============================== */

@media (max-width: 1220px) {
  .header-inner {
    gap: 18px;
    padding-left: 22px;
  }

  .site-nav a {
    padding: 0 10px;
    font-size: 14px;
  }

  .header-language span,
  .header-cart span {
    display: none;
  }
}

@media (max-width: 1060px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 940px) {
  :root {
    --header-height: 100px;
  }

  .site-header {
    padding: 16px 0 10px;
  }

  .header-inner {
    position: relative;
    min-height: 68px;
    padding: 10px 12px 10px 18px;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    display: none;
    margin-left: 0;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.82);
    border-radius: 28px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 247, 240, 0.98));
    box-shadow: 0 24px 70px rgba(6, 20, 15, 0.24);
    backdrop-filter: blur(18px);
  }

  .site-nav::before {
    content: "";
    display: block;
    height: 3px;
    margin: 0 8px 8px;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent, var(--accent-strong), transparent);
  }

  .site-header.is-menu-open .site-nav {
    display: grid;
    gap: 5px;
  }

  .site-nav a,
  .site-nav__lang {
    width: 100%;
    justify-content: flex-start;
    min-height: 48px;
    padding: 0 16px;
    border-radius: 18px;
    color: #1b241c;
    background: rgba(11, 61, 44, 0.035);
  }

  .site-nav a:hover {
    color: #06140f;
    background: rgba(143, 191, 77, 0.18);
    transform: none;
  }

  .site-nav__lang {
    display: inline-flex;
    background: rgba(16, 20, 16, 0.04);
  }

  .header-actions {
    display: none;
  }

  .header-mobile-actions {
    display: flex;
  }

  .header-mobile-actions .header-icon-link {
    width: 48px;
    height: 48px;
    padding: 0;
  }

  .header-mobile-actions .header-cart-icon {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }

  .home-hero,
  .page-hero {
    padding:
      calc(var(--header-height, 100px) + 28px)
      26px
      64px;
  }

  .home-hero::before,
  .page-hero::before {
    background-position: var(--hero-position-mobile, center);
  }

  .home-hero__overlay,
  .page-hero__overlay {
    background:
      radial-gradient(circle at 50% 18%, rgba(143, 191, 77, 0.18), transparent 32%),
      linear-gradient(180deg,
        rgba(2, 5, 4, 0.78) 0%,
        rgba(6, 20, 15, 0.82) 48%,
        rgba(2, 5, 4, 0.94) 100%);
  }
}

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

  .home-ready {
    min-height: 480px;
  }

  .home-ready__inner {
    padding: 82px 0;
  }

  .home-ready h2 {
    font-size: clamp(42px, 12vw, 66px);
    letter-spacing: -0.055em;
  }

  .home-ready p {
    font-size: 18px;
  }

  .home-ready__actions {
    display: grid;
    gap: 14px;
  }

  .home-ready__actions .home-btn {
    width: 100%;
  }
}

@media (max-width: 640px) {
  :root {
    --header-height: 94px;
  }

  .container {
    width: min(100% - 24px, var(--container));
  }

  .site-header {
    padding-top: 14px;
  }

  .header-inner {
    min-height: 64px;
    padding: 9px 10px 9px 14px;
  }

  .brand {
    gap: 9px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
    border-radius: 9px;
  }

  .brand-text strong {
    font-size: 16px;
  }

  .brand-text small {
    display: none;
  }

  .header-mobile-actions {
    gap: 8px;
  }

  .header-mobile-actions .header-icon-link,
  .nav-toggle {
    width: 46px;
    height: 46px;
  }

  .header-mobile-actions .header-cart-icon {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
  }

  .home-hero,
  .page-hero {
    padding:
      calc(var(--header-height, 94px) + 22px)
      20px
      56px;
  }

  .home-hero__content,
  .page-hero__content {
    max-width: 100%;
  }

  .home-hero__label,
  .home-section-label,
  .page-hero__label {
    font-size: 11px;
    letter-spacing: 0.18em;
  }

  .home-hero h1,
  .page-hero h1 {
    font-size: clamp(44px, 13vw, 76px);
    letter-spacing: -0.06em;
  }

  .home-hero__text,
  .page-hero__text {
    font-size: 17px;
  }

  .home-hero__actions,
  .page-hero__actions {
    display: grid;
  }

  .home-btn {
    width: 100%;
    min-height: 52px;
  }

  .home-hero__trust {
    display: grid;
    gap: 12px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    padding: 42px 0;
  }

  .footer-bottom-inner {
    display: grid;
  }

  .footer-areas-inner {
    padding: 24px 0;
  }

  .footer-areas h2 {
    font-size: 12px;
    letter-spacing: 0.18em;
  }

  .footer-areas p {
    display: block;
    line-height: 1.8;
  }

  .footer-areas strong {
    display: block;
    margin: 0 0 2px;
  }

  .footer-areas span:not(:last-child)::after {
    content: " · ";
    margin: 0 4px;
  }
}

@media (max-width: 420px) {
  .brand-text strong {
    font-size: 15px;
  }

  .header-mobile-actions .header-icon-link,
  .nav-toggle {
    width: 42px;
    height: 42px;
  }

  .header-mobile-actions .header-cart-icon {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
  }

  .home-ready h2 {
    font-size: clamp(38px, 12vw, 54px);
    letter-spacing: -0.045em;
  }
}
/*  */
/* ==============================
   BACKGROUND SOUND BUTTON
============================== */

.sound-toggle {
  position: fixed;
  left: 22px;
  bottom: 22px;
  z-index: 90;
  min-width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 18px;
  border: 1px solid rgba(199, 229, 109, 0.24);
  border-radius: 999px;
  color: #ffffff;
  background:
    radial-gradient(circle at 30% 18%, rgba(199, 229, 109, 0.32), transparent 32%),
    linear-gradient(135deg, rgba(11, 61, 44, 0.96), rgba(6, 20, 15, 0.96));
  box-shadow:
    0 18px 44px rgba(2, 5, 4, 0.28),
    inset 0 0 0 1px rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(14px);
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

.sound-toggle:hover {
  transform: translateY(-2px);
  border-color: rgba(199, 229, 109, 0.42);
  box-shadow:
    0 22px 54px rgba(2, 5, 4, 0.34),
    inset 0 0 0 1px rgba(255, 255, 255, 0.14);
}

.sound-toggle__icon {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: flex-end;
  justify-content: center;
  gap: 4px;
  flex: 0 0 24px;
}

.sound-toggle__icon span {
  width: 4px;
  border-radius: 999px;
  background: var(--accent-strong, #c7e56d);
  box-shadow: 0 0 14px rgba(199, 229, 109, 0.42);
  transition:
    height 0.2s ease,
    opacity 0.2s ease,
    transform 0.2s ease;
}

.sound-toggle__icon span:nth-child(1) {
  height: 9px;
}

.sound-toggle__icon span:nth-child(2) {
  height: 18px;
}

.sound-toggle__icon span:nth-child(3) {
  height: 13px;
}

.sound-toggle__text {
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

/* Sound is ON */

.sound-toggle.is-playing .sound-toggle__icon span:nth-child(1) {
  animation: soundBarOne 0.75s ease-in-out infinite;
}

.sound-toggle.is-playing .sound-toggle__icon span:nth-child(2) {
  animation: soundBarTwo 0.68s ease-in-out infinite;
}

.sound-toggle.is-playing .sound-toggle__icon span:nth-child(3) {
  animation: soundBarThree 0.82s ease-in-out infinite;
}

/* Sound is OFF */

.sound-toggle.is-muted {
  color: rgba(255, 255, 255, 0.72);
  background:
    linear-gradient(135deg, rgba(16, 20, 16, 0.86), rgba(2, 5, 4, 0.92));
}

.sound-toggle.is-muted .sound-toggle__icon span {
  height: 4px;
  opacity: 0.46;
  transform: translateY(-7px);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: none;
}

@keyframes soundBarOne {
  0%, 100% {
    height: 8px;
  }

  50% {
    height: 17px;
  }
}

@keyframes soundBarTwo {
  0%, 100% {
    height: 18px;
  }

  50% {
    height: 10px;
  }
}

@keyframes soundBarThree {
  0%, 100% {
    height: 12px;
  }

  50% {
    height: 21px;
  }
}

@media (max-width: 640px) {
  .sound-toggle {
    left: 14px;
    bottom: 14px;
    width: 54px;
    min-width: 54px;
    height: 54px;
    padding: 0;
  }

  .sound-toggle__text {
    display: none;
  }
}
/*  */
.btn-icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.btn-icon img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}
/*  */
.header-cart-btn {
  position: relative;
  width: 52px;
  height: 52px;
  display: inline-grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(11, 61, 44, 0.12);
  border-radius: 16px;
  background: #ffffff;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.header-cart-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(143, 191, 77, 0.36);
  box-shadow: 0 14px 30px rgba(6, 20, 15, 0.10);
}

.header-cart-icon {
  width: 31px;
  height: 31px;
  display: block;
  object-fit: contain;
}

.header-cart-count {
  position: absolute;
  top: -7px;
  right: -7px;
  min-width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  padding: 0 6px;
  border: 2px solid #ffffff;
  border-radius: 999px;
  color: #07140f;
  background: var(--accent-strong, #c7e56d);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
}