:root {
  --dst-shop-pink: #ff1493;
  --dst-shop-green: #39ff14;
  --dst-shop-black: #070709;
  --dst-shop-white: #fff;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  height: auto;
}

img,
video {
  max-width: 100%;
}

.dst-store-bar {
  position: sticky;
  top: 0;
  z-index: 10000;
  width: 100%;
  color: var(--dst-shop-white);
  background: rgba(7, 7, 9, 0.96);
  border-bottom: 2px solid var(--dst-shop-pink);
  box-shadow: 0 0 22px rgba(255, 20, 147, 0.38);
  font-family: Arial, Helvetica, sans-serif;
}

.dst-store-bar__inner {
  width: min(1160px, calc(100% - 24px));
  min-height: 58px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.dst-store-bar__brand,
.dst-store-bar__shop,
.dst-shop-now {
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 0.09em;
}

.dst-store-bar__brand {
  color: var(--dst-shop-white);
  font-size: 0.82rem;
}

.dst-store-bar__brand span {
  color: var(--dst-shop-green);
}

.dst-store-bar__shop,
.dst-shop-now {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 18px;
  color: #050505;
  background: var(--dst-shop-green);
  border: 2px solid var(--dst-shop-green);
  border-radius: 999px;
  box-shadow: 4px 4px 0 var(--dst-shop-pink), 0 0 18px rgba(57, 255, 20, 0.36);
  font-size: 0.82rem;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.dst-store-bar__shop:hover,
.dst-shop-now:hover {
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 var(--dst-shop-pink), 0 0 26px rgba(57, 255, 20, 0.55);
}

.dst-store-bar__brand:focus-visible,
.dst-store-bar__shop:focus-visible,
.dst-shop-now:focus-visible,
.dst-floating-shop:focus-visible {
  outline: 3px solid var(--dst-shop-white);
  outline-offset: 4px;
}

.dst-shop-inline {
  margin: 24px auto;
  text-align: center;
}

.dst-floating-shop {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 9998;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  color: #050505;
  background: var(--dst-shop-pink);
  border: 2px solid var(--dst-shop-white);
  border-radius: 999px;
  box-shadow: 0 0 22px rgba(255, 20, 147, 0.6);
  font: 900 0.8rem/1 Arial, Helvetica, sans-serif;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

@media (max-width: 640px) {
  .dst-store-bar__inner {
    min-height: 64px;
  }

  .dst-store-bar__brand {
    max-width: 52%;
    font-size: 0.72rem;
    line-height: 1.2;
  }

  .dst-store-bar__shop {
    min-height: 40px;
    padding: 8px 14px;
    font-size: 0.74rem;
  }

  .dst-floating-shop {
    right: 12px;
    bottom: 12px;
  }
}

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

  .dst-store-bar__shop,
  .dst-shop-now {
    transition: none;
  }
}
