.easyfix-notify-box {
  position: fixed;
  right: 18px;
  bottom: 58px;
  z-index: 9999999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  pointer-events: none;
}

.easyfix-notify {
  width: min(320px, calc(100vw - 36px));
  background:
    radial-gradient(
      circle at 18% 0%,
      rgba(255, 255, 255, 0.2),
      transparent 32%
    ),
    linear-gradient(135deg, #15151d, #241438, #101018);
  color: white;
  border: 1px solid rgba(216, 180, 254, 0.55);
  border-radius: 16px;
  padding: 12px 14px;
  box-sizing: border-box;
  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.42),
    0 0 18px rgba(168, 85, 247, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.35;
  white-space: pre-line;
  backdrop-filter: blur(12px);
  opacity: 0;
  transform: translateY(14px) scale(0.96);
  animation: easyfixNotifyShow 0.25s ease forwards;
}

.easyfix-notify.success {
  border-color: rgba(34, 197, 94, 0.68);
  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.42),
    0 0 18px rgba(34, 197, 94, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.easyfix-notify.error {
  border-color: rgba(239, 68, 68, 0.72);
  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.42),
    0 0 18px rgba(239, 68, 68, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.easyfix-notify.hide {
  animation: easyfixNotifyHide 0.22s ease forwards;
}

@keyframes easyfixNotifyShow {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes easyfixNotifyHide {
  from {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  to {
    opacity: 0;
    transform: translateY(14px) scale(0.96);
  }
}

@media (max-width: 600px) {
  .easyfix-notify-box {
    right: 10px;
    left: 10px;
    bottom: 52px;
    align-items: flex-end;
  }

  .easyfix-notify {
    width: min(300px, 100%);
    font-size: 12px;
    border-radius: 14px;
  }
}

body {
  margin: 0;
  font-family: Arial;
  background: #0b1220;
  color: white;
  overflow-x: hidden;
  overflow-y: auto;
  padding-bottom: 42px;
  box-sizing: border-box;
}

header {
  display: grid;
  grid-template-columns: auto minmax(120px, 260px) minmax(130px, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 12px;
  background: linear-gradient(
    270deg,
    #101010,
    #1a1a1a,
    #242424,
    #1a1a1a,
    #101010
  );
  background-size: 400% 400%;
  animation: move 8s linear infinite;
  position: sticky;
  top: 0;
  z-index: 3000;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.34);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@keyframes move {
  0% {
    background-position: 0%;
  }
  100% {
    background-position: 100%;
  }
}

.logo {
  font-size: 24px;
  font-weight: 900;
  display: flex;
  min-width: 90px;
  cursor: pointer;
  user-select: none;
}

.logo-letter {
  opacity: 0;
  transform: translateY(-10px) scale(0.92);
  display: inline-block;
  animation: logoSmooth 7s ease-in-out infinite;
  will-change: opacity, transform;
}

.logo-letter:nth-child(1) {
  animation-delay: 0s;
}
.logo-letter:nth-child(2) {
  animation-delay: 0.13s;
}
.logo-letter:nth-child(3) {
  animation-delay: 0.26s;
}
.logo-letter:nth-child(4) {
  animation-delay: 0.39s;
}
.logo-letter:nth-child(5) {
  animation-delay: 0.52s;
}
.logo-letter:nth-child(6) {
  animation-delay: 0.65s;
}
.logo-letter:nth-child(7) {
  animation-delay: 0.78s;
}

@keyframes logoSmooth {
  0% {
    opacity: 0;
    transform: translateY(-10px) scale(0.92);
  }
  8% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  68% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  82% {
    opacity: 0;
    transform: translateY(6px) scale(0.96);
  }
  100% {
    opacity: 0;
    transform: translateY(-10px) scale(0.92);
  }
}

.logo-letter.white {
  color: #f2f2f2;
}
.logo-letter.blue {
  color: #4aa3ff;
}

.left-head {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-self: start;
}

.delivery-text {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 215, 0, 0.12)
  );
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #f1f1f1;
  padding: 7px 11px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.22);
}

.delivery-globe {
  display: inline-block;
  animation:
    globeMove 1.6s ease-in-out infinite,
    globeColor 3s linear infinite;
  transform-origin: center;
}

@keyframes globeMove {
  0% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-3px) scale(1.12);
  }
  100% {
    transform: translateY(0) scale(1);
  }
}

@keyframes globeColor {
  0% {
    filter: hue-rotate(0deg);
  }
  100% {
    filter: hue-rotate(360deg);
  }
}

.lang-box {
  position: relative;
  display: flex;
  align-items: center;
}

.lang-current {
  background: linear-gradient(
    135deg,
    #8a5600,
    #d99a00,
    #ffd700,
    #fff1a6,
    #c88400
  );
  color: #2d1700;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  padding: 7px 12px;
  font-weight: 900;
  font-size: 12px;
  cursor: pointer;
  margin: 0;
  box-shadow: 0 0 14px rgba(255, 215, 0, 0.34);
  min-width: 62px;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.45);
}

.lang-menu {
  display: none;
  position: absolute;
  top: 38px;
  left: 0;
  background: rgba(22, 14, 2, 0.96);
  border: 1px solid rgba(255, 215, 0, 0.28);
  border-radius: 14px;
  padding: 6px;
  z-index: 9999;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
  min-width: 86px;
}

.lang-box.open .lang-menu {
  display: block;
}

.lang-option {
  display: block;
  width: 100%;
  border: none;
  background: transparent;
  color: white;
  padding: 8px 10px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
  margin: 0;
}

.lang-option:hover,
.lang-option.active {
  background: linear-gradient(
    135deg,
    #8a5600,
    #d99a00,
    #ffd700,
    #fff1a6,
    #c88400
  );
  color: #2d1700;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.45);
}

.search-box {
  display: flex;
  align-items: center;
  gap: 6px;
  justify-self: stretch;
  min-width: 0;
  width: 100%;
}

.search {
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: 100%;
  max-width: 260px;
  min-width: 150px;
  background: #f7f7f7;
  color: #111;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.22);
  transition:
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.search:focus {
  outline: none;
  border-color: rgba(255, 215, 0, 0.65);
  box-shadow:
    0 3px 10px rgba(0, 0, 0, 0.22),
    0 0 14px rgba(255, 215, 0, 0.28);
}

.search::placeholder {
  color: #5c5c5c;
  font-weight: 700;
}

.search-btn {
  background: linear-gradient(135deg, #252b33, #343c47, #222831);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 8px 14px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 900;
  font-size: 13px;
  margin: 0;
  box-shadow:
    0 3px 12px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.search-btn:hover {
  background: linear-gradient(135deg, #303743, #414a57, #2a303a);
  transform: scale(1.03);
}

.slogan-head {
  justify-self: center;
  align-self: center;
  min-width: 0;
  max-width: 420px;
  overflow: hidden;
  text-overflow: clip;
  white-space: nowrap;
  color: white;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1px;
  text-align: center;
  padding: 7px 10px;
  box-sizing: border-box;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.1);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.65);
  transition: 0.25s ease;
  position: relative;
  isolation: isolate;
  animation: easyfixSloganPurplePulse 7s ease-in-out infinite;
}

.slogan-head > * {
  position: relative;
  z-index: 2;
}

.slogan-head::after {
  content: "";
  position: absolute;
  top: -42%;
  left: -78%;
  width: 56%;
  height: 184%;
  background: linear-gradient(
    110deg,
    transparent 0%,
    rgba(216, 180, 254, 0.1) 31%,
    rgba(168, 85, 247, 0.78) 50%,
    rgba(216, 180, 254, 0.1) 69%,
    transparent 100%
  );
  transform: rotate(18deg);
  opacity: 0;
  z-index: 1;
  pointer-events: none;
  animation: easyfixSloganPurpleSweep 7s ease-in-out infinite;
}

@keyframes easyfixSloganPurplePulse {
  0%,
  72%,
  100% {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.1);
  }
  80%,
  88% {
    background:
      radial-gradient(
        circle at 18% 0%,
        rgba(255, 255, 255, 0.2),
        transparent 34%
      ),
      linear-gradient(
        135deg,
        rgba(88, 28, 135, 0.42),
        rgba(168, 85, 247, 0.48),
        rgba(59, 7, 100, 0.4)
      );
    border-color: rgba(216, 180, 254, 0.72);
    box-shadow:
      0 0 19px rgba(168, 85, 247, 0.42),
      inset 0 1px 0 rgba(255, 255, 255, 0.2);
  }
}

@keyframes easyfixSloganPurpleSweep {
  0%,
  70% {
    left: -78%;
    opacity: 0;
  }
  78% {
    opacity: 1;
  }
  90% {
    left: 132%;
    opacity: 0;
  }
  100% {
    left: 132%;
    opacity: 0;
  }
}

.slogan-globe {
  display: inline-block;
  margin-left: 4px;
  animation:
    globeMove 1.6s ease-in-out infinite,
    globeColor 3s linear infinite;
  transform-origin: center;
}

header:has(.cooperation-btn:hover) .search,
header:has(.contacts-btn:hover) .search {
  max-width: 260px;
}

header:has(.cooperation-btn:hover) .slogan-head,
header:has(.contacts-btn:hover) .slogan-head {
  font-size: 12px;
  max-width: 420px;
}

.right-head {
  display: flex;
  align-items: center;
  gap: 5px;
  justify-self: end;
  flex-wrap: nowrap;
}

.easyfix-social-icons {
  display: flex;
  align-items: center;
  gap: 4px;
  height: 30px;
  flex-shrink: 0;
}

.easyfix-social-link {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  text-decoration: none;
  color: white;
  background: linear-gradient(135deg, #171923, #2d3340, #111827);
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  box-sizing: border-box;
  transition: 0.25s ease;
}

.easyfix-social-link svg {
  width: 15px;
  height: 15px;
  display: block;
  fill: currentColor;
}

.easyfix-social-link:hover {
  background:
    radial-gradient(
      circle at 18% 0%,
      rgba(255, 255, 255, 0.78) 0 1px,
      transparent 28%
    ),
    linear-gradient(
      135deg,
      #eadcff 0%,
      #d8b4fe 20%,
      #b45cff 48%,
      #8b35ff 72%,
      #5b21b6 100%
    );
  border-color: rgba(232, 213, 255, 0.86);
  box-shadow:
    0 8px 20px rgba(124, 58, 237, 0.34),
    0 0 18px rgba(180, 92, 255, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.45),
    inset 0 -2px 0 rgba(48, 16, 92, 0.3);
  color: white;
  transform: scale(1.08);
  filter: brightness(1.05) saturate(1.08);
}

@media (max-width: 900px) {
  .easyfix-social-icons {
    display: none;
  }
}

.cooperation-btn {
  background: linear-gradient(
    135deg,
    #8a5600,
    #d99a00,
    #ffd700,
    #fff1a6,
    #c88400
  );
  color: #2d1700;
  padding: 7px 8px;
  border-radius: 9px;
  font-weight: 900;
  font-size: 12px;
  cursor: pointer;
  white-space: nowrap;
  min-width: 78px;
  text-align: center;
  transition: 0.25s;
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: 0 0 14px rgba(255, 215, 0, 0.32);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.45);
}

.cooperation-btn:hover {
  transform: scale(1.04);
  filter: brightness(1.08);
}

.contacts-box {
  position: relative;
  display: flex;
  align-items: center;
}

.contacts-btn {
  background:
    radial-gradient(
      circle at 18% 0%,
      rgba(255, 255, 255, 0.7) 0 1px,
      transparent 28%
    ),
    linear-gradient(
      135deg,
      #d8b4fe 0%,
      #c084fc 22%,
      #a855f7 48%,
      #8b35ff 70%,
      #6d28d9 100%
    );
  color: white;
  padding: 7px 8px;
  border-radius: 9px;
  font-weight: 900;
  font-size: 12px;
  cursor: pointer;
  white-space: nowrap;
  min-width: 72px;
  text-align: center;
  transition: 0.25s;
  border: 1px solid rgba(232, 213, 255, 0.86);
  box-shadow:
    0 8px 20px rgba(124, 58, 237, 0.28),
    0 0 18px rgba(180, 92, 255, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.48),
    inset 0 -2px 0 rgba(48, 16, 92, 0.3);
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.26);
}

.contacts-btn:hover {
  background:
    radial-gradient(
      circle at 18% 0%,
      rgba(255, 255, 255, 0.78) 0 1px,
      transparent 28%
    ),
    linear-gradient(
      135deg,
      #eadcff 0%,
      #d8b4fe 20%,
      #b45cff 48%,
      #8b35ff 72%,
      #5b21b6 100%
    );
  filter: brightness(1.05) saturate(1.08);
  transform: scale(1.04);
}

.contacts-menu {
  display: none;
  position: absolute;
  top: 38px;
  right: 0;
  background: rgba(12, 18, 30, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  padding: 7px;
  z-index: 9999;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.42);
  min-width: 160px;
}

.contacts-box.open .contacts-menu {
  display: block;
}

.contacts-menu a {
  display: block;
  color: white;
  text-decoration: none;
  padding: 9px 10px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}

.contacts-menu a:hover {
  background: linear-gradient(
    135deg,
    #8a5600,
    #d99a00,
    #ffd700,
    #fff1a6,
    #c88400
  );
  color: #2d1700;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.45);
}

.account-btn {
  background: linear-gradient(
    135deg,
    #8a5600,
    #d99a00,
    #ffd700,
    #fff1a6,
    #c88400
  );
  color: #2d1700;
  padding: 7px 8px;
  border-radius: 9px;
  cursor: pointer;
  font-weight: 900;
  font-size: 12px;
  box-shadow: 0 0 14px rgba(255, 215, 0, 0.32);
  white-space: nowrap;
  transition: 0.25s;
  border: 1px solid rgba(255, 255, 255, 0.55);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.45);
}

.account-btn:hover {
  transform: scale(1.04);
  filter: brightness(1.08);
}

.cart {
  background: linear-gradient(135deg, #252b33, #343c47, #222831);
  color: white;
  padding: 7px 8px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 700;
  font-size: 13px;
  box-shadow:
    0 3px 12px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  gap: 5px;
}

.cart:hover {
  background: linear-gradient(135deg, #303743, #414a57, #2a303a);
  transform: scale(1.03);
}

.cart-icon {
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.35));
}

.cart-icon svg {
  width: 20px;
  height: 20px;
  display: block;
  stroke: white;
}

.fly-rocket {
  position: fixed;
  font-size: 32px;
  z-index: 999999;
  pointer-events: none;
  left: 0;
  top: 0;
  transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
  opacity: 1;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.75));
  will-change: transform, opacity;
  animation: rocketFlyOptimized 1.05s cubic-bezier(0.18, 0.9, 0.22, 1) forwards;
}

@keyframes rocketFlyOptimized {
  0% {
    transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
    opacity: 1;
  }
  70% {
    opacity: 0.92;
  }
  100% {
    transform: translate3d(var(--rocket-x), var(--rocket-y), 0) rotate(-34deg)
      scale(0.32);
    opacity: 0;
  }
}

.top-line {
  width: 100%;
  background:
    radial-gradient(
      circle at 8% 25%,
      rgba(255, 255, 255, 0.62) 0 1px,
      transparent 2px
    ),
    radial-gradient(
      circle at 32% 35%,
      rgba(255, 255, 255, 0.5) 0 1px,
      transparent 2px
    ),
    radial-gradient(
      circle at 62% 28%,
      rgba(255, 255, 255, 0.56) 0 1px,
      transparent 2px
    ),
    linear-gradient(
      135deg,
      #5b3500,
      #b87900,
      #ffd700,
      #fff0a8,
      #b87900,
      #5b3500
    );
  background-size:
    220px 120px,
    260px 140px,
    250px 130px,
    100% 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.34);
  border-bottom: 1px solid rgba(255, 255, 255, 0.34);
  min-height: 120px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  box-sizing: border-box;
  box-shadow:
    inset 0 0 18px rgba(255, 255, 255, 0.14),
    0 0 20px rgba(255, 215, 0, 0.18);
  position: relative;
  isolation: isolate;
}

.top-line::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 0.24),
    rgba(255, 255, 255, 0)
  );
  opacity: 0.12;
  animation: topLineSoftGlow 6.5s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
  will-change: opacity;
}

@keyframes topLineSoftGlow {
  0% {
    opacity: 0.1;
  }
  50% {
    opacity: 0.32;
  }
  100% {
    opacity: 0.1;
  }
}

.top-products {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  position: relative;
  z-index: 1;
}

/* EasyFix top strip: compact pale cards */
.top-line {
  min-height: 96px;
  padding: 10px 12px;
}

#topProducts .top-product-card,
#topProducts .promo-modern-preview,
#topProducts .promo-next-preview {
  height: 96px;
  min-height: 96px;
  padding: 8px;
  display: grid;
  grid-template-rows: 36px 16px 26px;
  align-items: center;
  gap: 3px;
  box-sizing: border-box;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #e8ebf0;
  box-shadow: 0 8px 18px rgba(16, 24, 40, 0.06);
}

#topProducts .top-product-title,
#topProducts .promo-modern-title,
#topProducts .promo-next-title {
  height: 36px;
  min-height: 36px;
  max-height: 36px;
  font-size: 10.5px;
  line-height: 1.15;
  color: #151923;
  text-shadow: none;
}

#topProducts .top-product-price,
#topProducts .promo-modern-price,
#topProducts .promo-next-price {
  font-size: 11.5px;
  color: #111827;
  text-shadow: none;
}

#topProducts .top-buy-btn,
#topProducts .promo-modern-btn,
#topProducts .promo-next-btn {
  height: 24px;
  min-height: 24px;
  font-size: 10px;
  border-radius: 9px;
}

.easyfix-category-ticker {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 42px;
  overflow: hidden;
  background: #d7d7d7;
  border-top: 1px solid #bdbdbd;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.45),
    0 -4px 14px rgba(0, 0, 0, 0.14);
  box-sizing: border-box;
  z-index: 3200;
  pointer-events: none;
  display: flex;
  align-items: center;
}

.easyfix-category-ticker-track {
  display: flex;
  width: max-content;
  white-space: nowrap;
  animation: easyfixCategoryTickerMove 42s linear infinite;
  will-change: transform;
}

.easyfix-category-ticker-text {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 38px;
  color: #111827;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.15px;
  text-shadow: none;
}

.easyfix-category-ticker-text::before {
  content: "•";
  font-size: 22px;
  line-height: 1;
  color: #7c3aed;
}

@keyframes easyfixCategoryTickerMove {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 600px) {
  .easyfix-category-ticker {
    height: 40px;
  }

  .easyfix-category-ticker-text {
    padding: 9px 28px;
    font-size: 12px;
  }

  .easyfix-category-ticker-track {
    animation-duration: 34s;
  }
}

.top-product-card {
  background:
    radial-gradient(
      circle at 12% 20%,
      rgba(255, 255, 255, 0.62) 0 1px,
      transparent 2px
    ),
    radial-gradient(
      circle at 72% 74%,
      rgba(255, 255, 255, 0.58) 0 1px,
      transparent 2px
    ),
    linear-gradient(145deg, #8a5600, #d99a00, #ffd700, #fff1a6, #c88400);
  background-size:
    100px 80px,
    130px 90px,
    100% 100%;
  border: 2px solid rgba(255, 255, 255, 0.55);
  border-radius: 11px;
  padding: 6px;
  text-align: center;
  box-shadow:
    0 5px 14px rgba(0, 0, 0, 0.3),
    0 0 12px rgba(255, 215, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.42);
  position: relative;
  overflow: hidden;
  transform: translateZ(0);
  will-change: contents;
  height: 108px;
  box-sizing: border-box;
}

.top-product-card:before {
  content: attr(data-badge);
  position: absolute;
  top: 7px;
  left: -28px;
  background: linear-gradient(
    135deg,
    #d9c2ff,
    #c7a2ff,
    #b48aff,
    #a36fff,
    #cbb3ff
  );
  color: #25113f;
  font-size: 8px;
  font-weight: 900;
  padding: 3px 25px;
  transform: rotate(-35deg);
  box-shadow:
    0 2px 8px rgba(0, 0, 0, 0.28),
    0 0 10px rgba(196, 155, 255, 0.38);
  z-index: 12;
  border: 1px solid rgba(255, 255, 255, 0.45);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.45);
}

.top-product-title {
  font-size: 10px;
  font-weight: 900;
  color: #2d1700;
  margin-bottom: 3px;
  height: 18px;
  line-height: 1.05;
  display: flex;
  align-items: center;
  justify-content: center;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.62);
  position: relative;
  z-index: 2;
  overflow: hidden;
  will-change: transform;
}

.top-product-img {
  width: 100%;
  height: 38px;
  object-fit: cover;
  border-radius: 8px;
  background: white;
  margin-bottom: 2px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.25);
  position: relative;
  z-index: 2;
  display: block;
  will-change: transform;
  cursor: pointer;
}

.top-product-price {
  font-size: 11px;
  font-weight: 900;
  color: #2d1700;
  line-height: 1;
  margin: 1px 0 2px;
  position: relative;
  z-index: 2;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.55);
  will-change: transform;
}

.top-buy-btn {
  width: 100%;
  background: #050505;
  color: #ffd700;
  border: 1px solid rgba(255, 215, 0, 0.65);
  padding: 4px 5px;
  border-radius: 8px;
  font-weight: 900;
  cursor: pointer;
  font-size: 10px;
  box-shadow:
    0 3px 10px rgba(0, 0, 0, 0.45),
    0 0 10px rgba(255, 215, 0, 0.24);
  text-shadow: 0 0 7px rgba(255, 215, 0, 0.32);
  position: relative;
  z-index: 2;
  margin: 0;
  will-change: transform;
}

.top-buy-btn:hover {
  transform: scale(1.04);
  filter: brightness(1.18);
}

:root {
  --easyfix-sidebar-width: 265px;
  --easyfix-header-height: 82px;
  --easyfix-top-line-height: 96px;
  --easyfix-parts-notice-height: 46px;
  --easyfix-bottom-ticker-height: 42px;
}

.top-line {
  width: 100%;
  margin-left: 0;
  box-sizing: border-box;
}

.layout {
  display: grid;
  grid-template-columns: var(--easyfix-sidebar-width) minmax(0, 1fr);
  align-items: start;
  background:
    radial-gradient(
      circle at top left,
      rgba(30, 144, 255, 0.18),
      transparent 30%
    ),
    radial-gradient(
      circle at top right,
      rgba(255, 215, 0, 0.1),
      transparent 25%
    ),
    linear-gradient(135deg, #0b1220 0%, #101a2e 35%, #0c1627 70%, #08101d 100%);
  min-height: 100vh;
  position: relative;
  overflow: visible;
  box-sizing: border-box;
}

.main-products-area {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.side-cats {
  position: sticky;
  top: calc(var(--easyfix-header-height) + 10px);
  align-self: start;

  width: 100%;
  height: calc(
    100vh - var(--easyfix-header-height) - var(--easyfix-top-line-height) -
      var(--easyfix-parts-notice-height) - var(--easyfix-bottom-ticker-height) -
      18px
  );
  max-height: none;

  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;

  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;

  z-index: 120;
  box-sizing: border-box;
  scrollbar-width: thin;
  scrollbar-gutter: stable;
  background: #fff;
  border-right: 1px solid rgba(15, 23, 42, 0.1);
}

.side-cats::-webkit-scrollbar {
  width: 6px;
}

.side-cats::-webkit-scrollbar-track {
  background: rgba(15, 23, 42, 0.06);
  border-radius: 999px;
}

.side-cats::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #d8b4fe, #8b35ff);
  border-radius: 999px;
}

.side-cats,
.side-cats * {
  max-width: 100%;
  box-sizing: border-box;
}

.cat {
  position: relative;
  background: linear-gradient(
    135deg,
    #3a2300,
    #6b4300,
    #9c6900,
    #c68a00,
    #6b4300
  );
  color: #fff4bf;
  padding: 12px;
  border-radius: 13px;
  cursor: pointer;
  text-align: center;
  font-weight: 900;
  z-index: 6;
  border: 1px solid rgba(255, 215, 0, 0.35);
  box-shadow:
    0 6px 15px rgba(0, 0, 0, 0.28),
    0 0 12px rgba(255, 215, 0, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: 0.25s;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.55);
}

.oneclick-emoji {
  display: inline-block;
  margin-right: 5px;
  animation: oneClickBolt 1.1s ease-in-out infinite;
}

.easyfix-color-cat {
  background:
    radial-gradient(
      circle at 16% 18%,
      rgba(255, 255, 255, 0.58) 0 1px,
      transparent 2px
    ),
    linear-gradient(135deg, #25113f, #6d28d9, #111827, #050505) !important;
  color: white !important;
  border: 1px solid rgba(216, 180, 254, 0.58) !important;
  box-shadow:
    0 0 16px rgba(168, 85, 247, 0.34),
    0 6px 16px rgba(0, 0, 0, 0.26) !important;
}

.easyfix-color-cat {
  display: grid !important;
  grid-template-columns: 42px 1fr !important;
  align-items: center !important;
  gap: 8px !important;
  min-height: 68px !important;
  padding: 10px 10px !important;
  box-sizing: border-box !important;
  overflow: hidden !important;
}

.easyfix-color-cat .cat-icon {
  width: 38px !important;
  height: 38px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 !important;
}

.easyfix-color-cat .cat-label {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 4px !important;
  width: 100% !important;
  min-width: 0 !important;
  text-align: center !important;
  font-size: 11px !important;
  line-height: 1.05 !important;
}

.easyfix-color-squares {
  display: flex !important;
  flex-wrap: nowrap !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 4px !important;
  margin: 4px auto 0 !important;
  vertical-align: middle !important;
  transform: none !important;
}

.easyfix-color-square {
  width: 8px;
  height: 8px;
  border-radius: 2px;
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
}

.easyfix-color-square.red {
  background: #ef4444;
}
.easyfix-color-square.orange {
  background: #f97316;
}
.easyfix-color-square.yellow {
  background: #facc15;
}
.easyfix-color-square.green {
  background: #22c55e;
}
.easyfix-color-square.blue {
  background: #3b82f6;
}
.easyfix-color-square.purple {
  background: #a855f7;
}
.easyfix-color-square.silver {
  background: linear-gradient(135deg, #f8fafc, #94a3b8, #e5e7eb);
}
.easyfix-color-square.black {
  background: #050505;
}

.easyfix-color-cat.active-main,
.easyfix-color-cat:hover {
  filter: brightness(1.08) saturate(1.08);
}

.cat.active-main,
.easyfix-admin-subcategory-btn.active-subcategory {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(
      circle at 18% 0%,
      rgba(255, 255, 255, 0.26),
      transparent 30%
    ),
    linear-gradient(135deg, #d8b4fe 0%, #a855f7 42%, #6d28d9 100%) !important;
  color: white !important;
  border-color: rgba(232, 213, 255, 0.88) !important;
  box-shadow:
    0 0 16px rgba(168, 85, 247, 0.42),
    0 8px 18px rgba(88, 28, 135, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.34) !important;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.26) !important;
}

.cat.active-main::after,
.easyfix-admin-subcategory-btn.active-subcategory::after {
  content: none;
}

.cat.active-main > *,
.easyfix-admin-subcategory-btn.active-subcategory > * {
  position: relative;
  z-index: 2;
}

@keyframes easyfixActivePurplePulse {
  0%,
  100% {
    filter: brightness(1) saturate(1);
    box-shadow:
      0 0 14px rgba(168, 85, 247, 0.34),
      0 8px 18px rgba(88, 28, 135, 0.18),
      inset 0 1px 0 rgba(255, 255, 255, 0.3);
  }

  50% {
    filter: brightness(1.12) saturate(1.18);
    box-shadow:
      0 0 26px rgba(168, 85, 247, 0.64),
      0 10px 24px rgba(88, 28, 135, 0.28),
      inset 0 1px 0 rgba(255, 255, 255, 0.42);
  }
}

@keyframes easyfixActivePurpleSweep {
  0%,
  58% {
    left: -85%;
    opacity: 0;
  }

  70% {
    opacity: 1;
  }

  100% {
    left: 135%;
    opacity: 0;
  }
}

.easyfix-customorder-subcategory-group {
  padding: 8px;
}

.easyfix-customorder-subcategory-group .easyfix-admin-subcategories {
  margin-top: 0;
}

@keyframes oneClickPulse {
  0% {
    box-shadow:
      0 0 12px rgba(196, 155, 255, 0.28),
      0 6px 16px rgba(0, 0, 0, 0.2),
      inset 0 1px 0 rgba(255, 255, 255, 0.22);
  }
  50% {
    box-shadow:
      0 0 22px rgba(196, 155, 255, 0.48),
      0 8px 22px rgba(0, 0, 0, 0.26),
      inset 0 1px 0 rgba(255, 255, 255, 0.34);
  }
  100% {
    box-shadow:
      0 0 12px rgba(196, 155, 255, 0.28),
      0 6px 16px rgba(0, 0, 0, 0.2),
      inset 0 1px 0 rgba(255, 255, 255, 0.22);
  }
}

@keyframes oneClickBolt {
  0% {
    transform: scale(1) rotate(0deg);
  }
  50% {
    transform: scale(1.22) rotate(-8deg);
  }
  100% {
    transform: scale(1) rotate(0deg);
  }
}

.main-products-area {
  flex: 1;
}

.products {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 11px;
  padding: 15px;
  position: relative;
  z-index: 1;
  box-sizing: border-box;
}

/* EasyFix catalog: compact desktop cards (newest legacy) */
@media (min-width: 601px) {
  .products {
    gap: 12px;
    padding: 12px;
  }

  .products .card {
    background: #fff;
    color: #151923;
    border: 1px solid #e8ebf0;
    border-radius: 18px;
    padding: 8px;
    height: 330px;
    min-height: 330px;

    display: flex;
    flex-direction: column;
    gap: 4px;
    overflow: hidden;

    box-shadow: 0 8px 22px rgba(16, 24, 40, 0.07);
    outline: none;
  }

  .products .card img,
  .products .card img.product-card-img {
    width: 100%;
    height: 182px;
    min-height: 182px;
    max-height: 182px;
    flex: 0 0 182px;

    object-fit: fill;
    object-position: center;

    background: transparent;
    border: 0;
    border-radius: 12px;
    padding: 0;
    box-shadow: none;
  }

  .products .card h3 {
    color: #151923;
    font-size: 12px;
    line-height: 1.12;
    min-height: 34px;
    max-height: 34px;
    margin: 2px 0 0;
    padding: 0 2px;

    text-align: center;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .products .card .card-desc {
    color: #667085;
    font-size: 10px;
    line-height: 1.16;
    min-height: 24px;
    max-height: 24px;
    margin: 2px 0 3px;
    padding: 0 2px;

    text-align: center;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .products .card .price {
    width: 100%;
    min-height: 22px;
    color: #151923;
    font-size: 15px;
    line-height: 1;
    margin: 0;
    text-align: center;
    text-shadow: none;

    display: inline-flex;
    align-items: baseline;
    justify-content: center;
    gap: 6px;
    flex-wrap: nowrap;
    overflow: hidden;
    white-space: nowrap;
  }

  .products .card .price.easyfix-card-price-compact {
    font-size: 12.2px;
    gap: 5px;
  }

  .products .card .price .easyfix-old-price {
    flex: 0 1 auto;
    max-width: 44%;
    font-size: 0.75em;
    line-height: 1;
    white-space: nowrap;
  }

  .products .card .price .easyfix-current-price {
    flex: 0 1 auto;
    max-width: 60%;
    font-size: 1em;
    line-height: 1;
    justify-content: center;
    gap: 0.18em;
  }

  .products .card .price.easyfix-card-price-compact .easyfix-old-price {
    max-width: 42%;
    font-size: 0.68em;
  }

  .products .card .price.easyfix-card-price-compact .easyfix-current-price {
    max-width: 58%;
    gap: 0.16em;
  }

  .products .card .price.easyfix-card-price-compact .easyfix-price-unit {
    font-size: 0.48em;
  }

  .products .card .card-actions {
    width: 100%;
    margin-top: auto;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .products .card h3,
  .products .card .card-desc,
  .products .card .price {
    flex-shrink: 0;
  }

  .products .card .buy,
  .products .card .big-buy,
  .products .card .cartbtn {
    width: 100%;
    height: 32px;
    min-height: 32px;
    margin: 0;
    padding: 0 8px;
    border-radius: 10px;
    font-size: 11px;
    background: #151922;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: none;
    text-shadow: none;
  }

  .pagination {
    padding: 10px 15px 52px;
  }
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 10px 15px 30px;
  flex-wrap: wrap;
}

.pagination.show {
  display: flex;
}

.page-dots {
  color: #667085;
  font-weight: 900;
  padding: 0 4px;
}

.page-mobile-label {
  display: none;
}

.page-btn {
  background: white;
  color: #111;
  border: none;
  border-radius: 10px;
  padding: 9px 14px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.page-btn.active {
  background: linear-gradient(
    135deg,
    #8a5600,
    #d99a00,
    #ffd700,
    #fff1a6,
    #c88400
  );
  color: #2d1700;
  box-shadow: 0 0 14px rgba(255, 215, 0, 0.34);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.45);
}

.page-btn:hover {
  transform: scale(1.05);
}

.card {
  background: #fff;
  color: #151923;
  border: 1px solid #e8ebf0;
  outline: 1px solid rgba(30, 144, 255, 0.24);
  border-radius: 7px;
  padding: 7px;
  text-align: center;
  position: relative;
  box-shadow:
    0 0 0 1px rgba(255, 215, 0, 0.04),
    0 8px 18px rgba(0, 0, 0, 0.18);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  box-sizing: border-box;
  overflow: hidden;
  transform: translateZ(0);
  gap: 4px;
}

.card img {
  width: 100%;
  object-fit: contain;
  cursor: pointer;
  transition:
    transform 0.34s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.34s ease,
    box-shadow 0.34s ease;
  border-radius: 6px;
  background: #101827;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-sizing: border-box;
  flex-shrink: 0;
}

@media (min-width: 601px) {
  .card img:hover {
    transform: translateY(-3px) scale(1.025);
    filter: brightness(1.06) contrast(1.05) saturate(1.08);
    box-shadow:
      0 10px 22px rgba(0, 0, 0, 0.3),
      0 0 18px rgba(255, 215, 0, 0.14);
  }
}

.card:after {
  content: "";
  position: absolute;
  top: -70%;
  left: -90%;
  width: 55%;
  height: 240%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.08) 35%,
    rgba(255, 255, 255, 0.28) 50%,
    rgba(255, 255, 255, 0.08) 65%,
    transparent 100%
  );
  transform: rotate(25deg);
  opacity: 0;
  pointer-events: none;
  z-index: 2;
}

@keyframes photoShine {
  0% {
    left: -90%;
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  100% {
    left: 135%;
    opacity: 0;
  }
}

.card h3 {
  font-size: 12px;
  margin: 2px 0 0;
  min-height: 24px;
  max-height: 24px;
  line-height: 1.05;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  overflow: hidden;
  padding: 0 4px;
  font-weight: 900;
}

.card-desc {
  font-size: 10px;
  line-height: 1.1;
  color: rgba(255, 255, 255, 0.68);
  min-height: 22px;
  max-height: 22px;
  overflow: hidden;
  padding: 0 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-align: center;
}

.price {
  color: white;
  font-weight: 900;
  margin: 0;
  font-size: 13px;
  line-height: 1;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.75);
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
}

.easyfix-old-price {
  color: #8b8f98;
  font-size: 0.75em;
  font-weight: 800;
  text-decoration-line: line-through;
  text-decoration-color: #e11d48;
  text-decoration-thickness: 1px;
  text-shadow: none;
  white-space: nowrap;
}

.easyfix-current-price {
  color: inherit;
  font-size: 1em;
  font-weight: 950;
  white-space: nowrap;
  display: inline-flex;
  align-items: baseline;
  gap: 0.22em;
}

.easyfix-price-money {
  white-space: nowrap;
}

.easyfix-price-unit {
  font-size: 0.56em;
  font-weight: 900;
  line-height: 1;
  color: rgba(21, 25, 35, 0.72);
  white-space: nowrap;
}

.modal-content .price {
  color: #111;
  font-size: 18px;
  text-shadow: none;
}

button {
  margin: 3px;
  padding: 5px 8px;
  border: none;
  cursor: pointer;
  border-radius: 6px;
  font-weight: bold;
  font-size: 12px;
}

.buy {
  background: linear-gradient(
    135deg,
    #8a5600,
    #d99a00,
    #ffd700,
    #fff1a6,
    #c88400
  );
  color: #2d1700;
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow:
    0 0 14px rgba(255, 215, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.48);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.45);
  padding: 5px 7px;
  font-size: 11px;
  border-radius: 7px;
}

.buy:hover {
  filter: brightness(1.08);
  transform: scale(1.03);
}

.cartbtn {
  background: #333;
  color: white;
  padding: 5px 7px;
  font-size: 10.5px;
  border-radius: 7px;
}

.big-buy {
  width: 82%;
  padding: 7px 9px;
  font-size: 11px;
  border-radius: 10px;
  background: linear-gradient(
    135deg,
    #8a5600,
    #d99a00,
    #ffd700,
    #fff1a6,
    #c88400
  );
  color: #2d1700;
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow:
    0 0 16px rgba(255, 215, 0, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.48);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.45);
  align-self: center;
}

.modal-content .big-buy {
  width: 100%;
  box-sizing: border-box;
  display: block;
  margin: 10px 0 0;
  padding: 12px;
  font-size: 15px;
}

.card-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3px;
  flex-wrap: wrap;
  margin-top: auto;
  padding-bottom: 0;
}

.info-footer {
  background: linear-gradient(180deg, #08101d, #030711);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 28px 16px 18px;
  box-sizing: border-box;
}

.info-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 22px;
  align-items: start;
}

.footer-brand {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px !important;
  border-radius: 14px !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.footer-logo {
  font-size: 28px;
  font-size: 24px !important;
  margin-bottom: 4px !important;
}

.footer-logo span:first-child {
  color: white;
}
.footer-logo span:last-child {
  color: #1e90ff;
}

.footer-text {
  font-size: 13.5px !important;
  line-height: 1.38 !important;
  font-weight: 600 !important;
  color: rgba(255, 255, 255, 0.78);
}

.footer-menu {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.footer-btn {
  background: rgba(255, 255, 255, 0.07);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  padding: 13px 12px;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
  text-align: left;
  transition: 0.25s;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
}

.footer-btn:hover {
  background: linear-gradient(
    135deg,
    #8a5600,
    #d99a00,
    #ffd700,
    #fff1a6,
    #c88400
  );
  color: #2d1700;
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(255, 215, 0, 0.26);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.45);
}

.footer-bottom {
  max-width: 1200px;
  margin-top: 10px !important;
  padding-top: 9px !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
}

.info-modal,
.account-modal,
.oneclick-warning-modal,
.modal,
.order-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  padding: 15px;
  box-sizing: border-box;
  backdrop-filter: blur(4px);
}

.info-modal {
  background: rgba(0, 0, 0, 0.78);
  z-index: 14000;
}
.account-modal {
  background: rgba(0, 0, 0, 0.82);
  z-index: 15000;
}
.oneclick-warning-modal {
  background: rgba(0, 0, 0, 0.72);
  z-index: 16000;
}
.modal {
  background: rgba(0, 0, 0, 0.72);
  z-index: 12000;
}
.order-modal {
  background: rgba(0, 0, 0, 0.72);
  z-index: 13000;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.overlay,
.info-modal,
.account-modal,
.oneclick-warning-modal,
.modal,
.order-modal,
#easyfixImageZoom {
  overscroll-behavior: contain;
}

.info-box {
  background: white;
  color: #111;
  width: 100%;
  max-width: 680px;
  max-height: 88vh;
  overflow: auto;
  border-radius: 16px;
  padding: 20px;
  box-sizing: border-box;
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.info-close,
.account-close,
.oneclick-warning-close,
.close,
.order-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  background: linear-gradient(
    135deg,
    #8a5600,
    #d99a00,
    #ffd700,
    #fff1a6,
    #c88400
  );
  color: #2d1700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 0 12px rgba(255, 215, 0, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.55);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.45);
  z-index: 5;
}

#infoTitle {
  margin: 0 42px 12px 0;
  font-size: 24px;
  font-weight: 900;
}

#infoText {
  font-size: 12.5px;
  line-height: 1.42;
  color: #333;
  white-space: pre-line;
}

#infoTitle {
  font-size: 20px;
  line-height: 1.2;
}

.account-box {
  background: white;
  color: #111;
  width: 100%;
  max-width: 760px;
  max-height: 92vh;
  overflow: auto;
  border-radius: 18px;
  padding: 18px;
  box-sizing: border-box;
  position: relative;
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.38);
}

.account-title {
  font-size: 25px;
  font-weight: 900;
  margin: 0 42px 12px 0;
}

.account-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.account-tab {
  background: #f1f1f1;
  color: #111;
  padding: 9px 12px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
  margin: 0;
}

.account-tab.active {
  background: linear-gradient(
    135deg,
    #8a5600,
    #d99a00,
    #ffd700,
    #fff1a6,
    #c88400
  );
  color: #2d1700;
  box-shadow: 0 0 14px rgba(255, 215, 0, 0.28);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.45);
}

.account-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.account-grid input {
  padding: 11px;
  border: 1px solid #ccc;
  border-radius: 11px;
  font-size: 14px;
  box-sizing: border-box;
}

.account-grid .full {
  grid-column: 1/3;
}

.account-action {
  width: 100%;
  margin-top: 12px;
  padding: 12px;
  border-radius: 14px;
  background: linear-gradient(
    135deg,
    #8a5600,
    #d99a00,
    #ffd700,
    #fff1a6,
    #c88400
  );
  color: #2d1700;
  font-size: 15px;
  font-weight: 900;
  box-shadow: 0 0 14px rgba(255, 215, 0, 0.32);
  border: 1px solid rgba(255, 255, 255, 0.55);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.45);
}

.account-note {
  font-size: 12px;
  color: #666;
  line-height: 1.4;
  margin-top: 8px;
}

.account-consent {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  background: #f5f5f5;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 10px;
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.35;
  color: #333;
}

.account-consent input {
  margin-top: 2px;
  cursor: pointer;
}

.account-ads-note {
  font-size: 11px;
  line-height: 1.35;
  color: #777;
  margin-top: 8px;
}

.verify-box {
  display: none;
  background: #f5f5f5;
  border: 1px solid #ddd;
  border-radius: 14px;
  padding: 12px;
  margin-top: 12px;
}

.verify-title {
  font-weight: 900;
  font-size: 16px;
  margin-bottom: 6px;
}

.verify-text {
  font-size: 13px;
  color: #555;
  line-height: 1.45;
  margin-bottom: 8px;
}

.verify-code-demo {
  background: #111;
  color: white;
  border-radius: 10px;
  padding: 9px;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 3px;
  text-align: center;
  margin: 8px 0;
}

.verify-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.verify-cancel {
  background: #eee;
  color: #111;
  padding: 10px;
  border-radius: 12px;
  font-weight: 900;
  margin: 0;
}

.verify-confirm {
  background: linear-gradient(
    135deg,
    #8a5600,
    #d99a00,
    #ffd700,
    #fff1a6,
    #c88400
  );
  color: #2d1700;
  padding: 10px;
  border-radius: 12px;
  font-weight: 900;
  margin: 0;
  box-shadow: 0 0 12px rgba(255, 215, 0, 0.28);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.45);
}

.account-profile-card {
  background: #f5f5f5;
  border-radius: 14px;
  padding: 14px;
  margin-bottom: 12px;
}

.account-profile-name {
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 5px;
}

.account-profile-line {
  font-size: 14px;
  color: #444;
  margin: 3px 0;
}

.account-menu {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 12px;
}

.account-menu-btn {
  background: #111;
  color: white;
  padding: 10px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 900;
  margin: 0;
  transition: 0.25s;
  border: 1px solid transparent;
}

.account-menu-btn.active {
  background: linear-gradient(
    135deg,
    #8a5600,
    #d99a00,
    #ffd700,
    #fff1a6,
    #c88400
  );
  color: #2d1700;
  box-shadow:
    0 0 16px rgba(255, 215, 0, 0.42),
    0 8px 18px rgba(0, 0, 0, 0.18);
  transform: scale(1.04);
  border: 1px solid rgba(255, 255, 255, 0.55);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.45);
}

.account-section {
  display: none;
  background: #fafafa;
  border: 1px solid #e4e4e4;
  border-radius: 14px;
  padding: 12px;
}

.account-section.active {
  display: block;
}

.account-order {
  background: white;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 10px;
  margin-bottom: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.account-order-title {
  font-weight: 900;
  margin-bottom: 6px;
}

.account-order-small {
  font-size: 13px;
  color: #555;
  line-height: 1.4;
}

.account-empty {
  background: white;
  border-radius: 12px;
  padding: 18px;
  text-align: center;
  color: #666;
  font-weight: 700;
}

.logout-btn {
  background: #ffeded;
  color: #b00000;
  border: 1px solid #ffbcbc;
  text-shadow: none;
}

.oneclick-warning-box {
  background: white;
  color: #111;
  width: 100%;
  max-width: 460px;
  border-radius: 18px;
  padding: 20px;
  box-sizing: border-box;
  position: relative;
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.38);
  text-align: left;
}

.oneclick-warning-title {
  font-size: 22px;
  font-weight: 900;
  margin: 0 42px 12px 0;
}

.oneclick-warning-text {
  font-size: 14px;
  line-height: 1.5;
  color: #333;
  margin-bottom: 10px;
}

.oneclick-warning-list {
  background: #f5f5f5;
  border-radius: 14px;
  padding: 12px;
  font-size: 13px;
  line-height: 1.45;
  color: #333;
  margin: 10px 0 14px;
}

.oneclick-warning-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.oneclick-cancel-btn {
  background: #eeeeee;
  color: #111;
  padding: 11px;
  border-radius: 12px;
  font-weight: 900;
  font-size: 13px;
  margin: 0;
}

.oneclick-continue-btn {
  background: linear-gradient(
    135deg,
    #8a5600,
    #d99a00,
    #ffd700,
    #fff1a6,
    #c88400
  );
  color: #2d1700;
  padding: 11px;
  border-radius: 12px;
  font-weight: 900;
  font-size: 13px;
  margin: 0;
  box-shadow: 0 0 14px rgba(255, 215, 0, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.55);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.45);
}

.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  z-index: 4000;
}

.cartbox {
  display: none;
  position: fixed;
  right: 0;
  top: 0;
  width: 320px;
  max-width: 100%;
  height: 100%;
  background: #f6f6f8;
  z-index: 5000;
  overflow: auto;
  box-shadow: -10px 0 25px rgba(0, 0, 0, 0.25);
  color: black;
  padding-bottom: 20px;
}

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px;
  font-size: 14px;
  font-weight: 900;
  background: white;
  border-bottom: 1px solid #ddd;
  position: sticky;
  top: 0;
  z-index: 2;
}

.close-cart {
  cursor: pointer;
  font-size: 22px;
}

.item {
  position: relative;
  display: flex;
  gap: 8px;
  background: white;
  margin: 10px;
  padding: 10px;
  border-radius: 12px;
  align-items: flex-start;
  min-height: 95px;
}

.item img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid #ddd;
}

.item-info {
  flex: 1;
  min-width: 0;
  padding-right: 60px;
}

.item-name {
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 4px;
  padding-right: 10px;
  word-break: break-word;
}

.item-unit-price {
  font-size: 12px;
  color: #666;
  font-weight: 800;
  margin: 2px 0 5px;
}

.qty {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
}

.qty button {
  width: 28px;
  height: 28px;
  border: 1px solid #111;
  background: white;
  color: #111;
  font-size: 18px;
  border-radius: 8px;
  cursor: pointer;
  padding: 0;
  margin: 0;
}

.qty button:hover {
  background: #111;
  color: white;
}

.item-price {
  position: absolute;
  right: 10px;
  bottom: 10px;
  font-weight: 900;
  font-size: 17px;
  text-align: right;
}

.item-total-label {
  font-size: 10px;
  color: #666;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 3px;
}

.remove {
  position: absolute;
  top: 8px;
  right: 8px;
  cursor: pointer;
  font-size: 18px;
  color: #666;
  line-height: 1;
}

.cart-footer {
  background: white;
  padding: 12px;
  box-shadow: 0 -6px 15px rgba(0, 0, 0, 0.08);
  box-sizing: border-box;
  margin: 10px;
  border-radius: 12px;
}

#total {
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 8px;
}

.checkout-btn {
  width: 100%;
  background: linear-gradient(
    135deg,
    #8a5600,
    #d99a00,
    #ffd700,
    #fff1a6,
    #c88400
  );
  color: #2d1700;
  border: 1px solid rgba(255, 255, 255, 0.55);
  padding: 10px;
  font-size: 15px;
  font-weight: 900;
  border-radius: 14px;
  cursor: pointer;
  margin: 0;
  box-sizing: border-box;
  box-shadow: 0 0 14px rgba(255, 215, 0, 0.34);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.45);
}

.empty-cart {
  display: none;
  text-align: center;
  background: white;
  color: black;
  margin: 16px 10px;
  padding: 28px 12px;
  border-radius: 14px;
}

.empty-cart-icon {
  font-size: 56px;
  margin-bottom: 10px;
}
.empty-cart-title {
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 8px;
}
.empty-cart-text {
  font-size: 14px;
  color: #555;
  line-height: 1.4;
}

.empty-cart-payment-note {
  display: block;
  max-width: 320px;
  margin: 14px auto 0;
  padding: 0 10px;
  color: #667085;
  font-size: 13px;
  line-height: 1.3;
  font-weight: 900;
  text-align: center;
}

@media (max-width: 600px) {
  .empty-cart-payment-note {
    max-width: 270px;
    font-size: 12.5px;
    line-height: 1.28;
    margin-top: 12px;
  }
}

.modal-content {
  background: white;
  color: black;
  max-width: 900px;
  width: 100%;
  max-height: 92vh;
  overflow: auto;
  border-radius: 12px;
  padding: 18px;
  position: relative;
  box-sizing: border-box;
}

.modal-photo-wrap {
  width: 100%;
  height: 430px;
  background: #f1f1f1;
  border-radius: 10px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.modal-photo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 10px;
}

.gallery {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.gallery img {
  width: 70px;
  height: 55px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: 0.3s;
}

.gallery img:hover {
  border-color: #d99a00;
  transform: scale(1.06);
}

.order-box {
  background: white;
  color: black;
  width: 100%;
  max-width: 600px;
  max-height: 92vh;
  overflow: auto;
  border-radius: 14px;
  padding: 18px;
  position: relative;
  box-sizing: border-box;
}

.order-product {
  display: flex;
  gap: 12px;
  background: #f3f3f3;
  border-radius: 12px;
  padding: 10px;
  margin-bottom: 10px;
  align-items: center;
}

.order-product img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 10px;
  background: white;
}

.order-product-info {
  flex: 1;
}
.order-name {
  font-weight: 900;
  font-size: 17px;
  margin-bottom: 5px;
}

.order-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-weight: 700;
  margin-top: 4px;
  align-items: center;
}

.order-unit-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 13px;
  font-weight: 900;
  color: #555;
  margin-top: 4px;
  align-items: center;
}

.order-qty-control {
  display: flex;
  align-items: center;
  gap: 8px;
}

.order-qty-btn {
  width: 28px;
  height: 28px;
  border: 1px solid #111;
  background: white;
  color: #111;
  font-size: 19px;
  font-weight: 900;
  border-radius: 8px;
  padding: 0;
  margin: 0;
  cursor: pointer;
  line-height: 1;
  box-shadow: none;
}

.order-qty-btn:hover {
  background: #111;
  color: white;
}

.order-qty-btn.is-disabled,
.order-qty-btn:disabled {
  background: #f3f4f6;
  color: #9ca3af;
  border-color: #e5e7eb;
  cursor: not-allowed;
  opacity: 1;
}

.order-qty-btn.is-disabled:hover,
.order-qty-btn:disabled:hover {
  background: #f3f4f6;
  color: #9ca3af;
}

.order-qty-number {
  min-width: 20px;
  text-align: center;
  font-weight: 900;
}

.order-total {
  background: #111;
  color: white;
  padding: 10px;
  border-radius: 12px;
  font-weight: 900;
  margin: 10px 0;
  display: flex;
  justify-content: space-between;
}

.order-address-book {
  background: #f7f7f8;
  border: 1px solid #e5e5ea;
  border-radius: 14px;
  padding: 12px;
  margin: 10px 0;
}

.order-address-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.order-address-title {
  font-size: 16px;
  font-weight: 900;
  color: #111;
  line-height: 1.15;
}

.order-address-subtitle {
  font-size: 12px;
  font-weight: 800;
  color: #666;
  margin-top: 3px;
}

.order-address-list {
  display: grid;
  gap: 8px;
}

.order-address-card {
  position: relative;
  display: grid;
  grid-template-columns: 28px 1fr auto;
  align-items: center;
  gap: 9px;
  background: white;
  border: 1px solid #dddddd;
  border-radius: 13px;
  padding: 10px;
  cursor: pointer;
  box-shadow: 0 5px 13px rgba(0, 0, 0, 0.05);
}

.order-address-card.active {
  border-color: #7c2df2;
  box-shadow: 0 0 0 2px rgba(124, 45, 242, 0.12);
}

.order-address-check {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: #111;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 900;
}

.order-address-card:not(.active) .order-address-check {
  background: #ececef;
}

.order-address-card-text {
  min-width: 0;
}

.order-address-card-name {
  font-size: 14px;
  font-weight: 900;
  color: #111;
  line-height: 1.25;
}

.order-address-card-line,
.order-address-card-contact {
  font-size: 12px;
  font-weight: 800;
  color: #555;
  line-height: 1.3;
  margin-top: 2px;
  word-break: break-word;
}

.order-address-main-label {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  background: #111;
  color: white;
  border-radius: 999px;
  padding: 3px 8px;
  font-size: 10px;
  font-weight: 900;
  margin-top: 6px;
}

.order-address-delete {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid #ffd0d0;
  background: #fff1f1;
  color: #b00000;
  font-size: 19px;
  line-height: 1;
  font-weight: 900;
  margin: 0;
  padding: 0;
  cursor: pointer;
  box-shadow: none;
}

.order-address-add {
  width: 100%;
  margin: 10px 0 0;
  padding: 11px;
  border: 1px dashed #8b5cf6;
  border-radius: 13px;
  background: #ffffff;
  color: #5b21b6;
  font-size: 14px;
  font-weight: 900;
  box-shadow: none;
  cursor: pointer;
}

.order-address-form-actions {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 10px;
}

.order-address-save,
.order-address-cancel {
  width: 100%;
  border-radius: 12px;
  padding: 11px;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
  margin: 0;
}

.order-address-save {
  background: linear-gradient(135deg, #d8b4fe, #7c2df2);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: 0 8px 18px rgba(124, 45, 242, 0.18);
}

.order-address-cancel {
  background: #eeeeee;
  color: #111;
  border: 1px solid #dddddd;
  box-shadow: none;
}

.order-comment-box {
  margin-top: 10px;
}

.order-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.order-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 12px;
  font-weight: 900;
  color: #333;
}

.order-field span {
  padding-left: 3px;
}

.order-form input,
.order-form textarea,
.order-comment-box input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 14px;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

.order-form textarea {
  min-height: 90px;
  resize: vertical;
}

.order-form input[type="file"] {
  background: #f7f7f7;
}

.custom-order-size-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.custom-order-size-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  align-items: center;
  width: 100%;
}

.custom-order-size-row input {
  margin: 0;
}

.custom-order-size-remove {
  background: #ffeded;
  color: #b00000;
  border: 1px solid #ffbcbc;
  padding: 10px 12px;
  border-radius: 10px;
  font-weight: 900;
  cursor: pointer;
  margin: 0;
}

.custom-order-add-size {
  background: #111;
  color: white;
  border: none;
  border-radius: 10px;
  padding: 10px 12px;
  font-weight: 900;
  cursor: pointer;
  margin: 8px 0 0;
  width: max-content;
}

.custom-file-hidden {
  display: none !important;
}

.custom-file-btn {
  background: #111;
  color: white;
  border: none;
  border-radius: 10px;
  padding: 11px 14px;
  font-weight: 900;
  cursor: pointer;
  margin: 0;
  width: max-content;
}

.custom-file-text {
  font-size: 13px;
  font-weight: 900;
  color: #666;
  margin-top: 8px;
  line-height: 1.35;
  word-break: break-word;
}

.order-form .full {
  grid-column: 1/3;
}

.order-pay-btn {
  width: 100%;
  background: linear-gradient(
    135deg,
    #8a5600,
    #d99a00,
    #ffd700,
    #fff1a6,
    #c88400
  );
  color: #2d1700;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 14px;
  padding: 12px;
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
  margin-top: 12px;
  box-shadow: 0 0 14px rgba(255, 215, 0, 0.34);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.45);
}

.order-note {
  font-size: 12px;
  color: #555;
  margin-top: 8px;
  line-height: 1.4;
}

.vat-fee-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 92000;
  background: rgba(0, 0, 0, 0.62);
  padding: 14px;
  box-sizing: border-box;
  align-items: center;
  justify-content: center;
}

.vat-fee-box {
  width: 100%;
  max-width: 500px;
  background: #ffffff;
  color: #111111;
  border-radius: 18px;
  padding: 18px;
  box-sizing: border-box;
  border: 1px solid #e5e7eb;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.35);
}

.vat-fee-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.vat-fee-title {
  font-size: 22px;
  font-weight: 900;
  line-height: 1.15;
  margin: 0;
  color: #111111;
}

.vat-fee-subtitle {
  color: #6b7280;
  font-size: 12px;
  font-weight: 900;
  margin-top: 4px;
}

.vat-fee-text {
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 13px;
  color: #333333;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.45;
  white-space: pre-line;
}

.vat-fee-accent {
  display: inline;
  color: inherit;
  background: transparent;
  padding: 0;
  border-radius: 0;
  font-weight: 1000;
}

.vat-fee-continue {
  width: 100%;
  margin: 14px 0 0;
  padding: 13px;
  border-radius: 14px;
  background: #050505;
  color: #ffffff;
  font-size: 16px;
  font-weight: 900;
  border: 1px solid #111827;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.28);
  text-shadow: none;
  transition:
    background 0.18s ease,
    color 0.18s ease,
    transform 0.18s ease,
    box-shadow 0.18s ease;
}

.vat-fee-continue:active {
  background: linear-gradient(135deg, #d8b4fe, #a855f7, #6d28d9);
  color: #ffffff;
  transform: scale(0.99);
  box-shadow: 0 8px 20px rgba(168, 85, 247, 0.34);
}

.vat-fee-continue:disabled {
  opacity: 0.72;
  cursor: wait;
}

.stock-notify-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 92020;
  align-items: center;
  justify-content: center;
  padding: 14px;
  box-sizing: border-box;
  background: rgba(0, 0, 0, 0.62);
}

.stock-notify-box {
  position: relative;
  width: 100%;
  max-width: 420px;
  background: #ffffff;
  color: #111827;
  border-radius: 18px;
  padding: 18px;
  box-sizing: border-box;
  border: 1px solid #e5e7eb;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.35);
}

.stock-notify-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  background: #f9fafb;
  color: #111827;
  font-size: 18px;
  font-weight: 900;
  cursor: pointer;
}

.stock-notify-smile {
  width: 44px;
  height: 44px;
  margin-bottom: 10px;
  border-radius: 999px;
  background: #f3e8ff;
  color: #111827;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.stock-notify-smile svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.stock-notify-title {
  margin: 0 42px 8px 0;
  color: #111827;
  font-size: 22px;
  line-height: 1.15;
  font-weight: 1000;
}

.stock-notify-product {
  margin-bottom: 10px;
  color: #6b21a8;
  font-size: 13px;
  line-height: 1.35;
  font-weight: 900;
}

.stock-notify-text {
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 12px;
  color: #374151;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 800;
  margin-bottom: 12px;
}

.stock-notify-input {
  width: 100%;
  height: 46px;
  box-sizing: border-box;
  border-radius: 14px;
  border: 1px solid #d1d5db;
  background: #ffffff;
  color: #111827;
  padding: 0 13px;
  font-size: 15px;
  font-weight: 800;
  outline: none;
  margin-bottom: 10px;
}

.stock-notify-input:focus {
  border-color: #a855f7;
  box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.16);
}

.stock-notify-submit {
  width: 100%;
  height: 46px;
  border-radius: 14px;
  border: 1px solid #111827;
  background: #050505;
  color: #ffffff;
  font-size: 15px;
  font-weight: 1000;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.28);
}

.stock-notify-submit:disabled {
  opacity: 0.72;
  cursor: wait;
}

.stock-notify-note {
  min-height: 18px;
  margin-top: 9px;
  font-size: 12px;
  line-height: 1.35;
  font-weight: 900;
  color: #6b7280;
}

.stock-notify-note.is-error {
  color: #dc2626;
}

.stock-notify-note.is-success {
  color: #16a34a;
}

@media (max-width: 600px) {
  .stock-notify-modal {
    padding: 10px;
  }

  .stock-notify-box {
    max-width: 100%;
    border-radius: 16px;
    padding: 14px;
  }

  .stock-notify-title {
    font-size: 19px;
  }

  .stock-notify-text {
    font-size: 12px;
  }
}

@media (max-width: 600px) {
  .vat-fee-modal {
    padding: 10px;
  }

  .vat-fee-box {
    max-width: 100%;
    border-radius: 16px;
    padding: 14px;
  }

  .vat-fee-title {
    font-size: 18px;
  }

  .vat-fee-subtitle {
    font-size: 11px;
  }

  .vat-fee-text {
    font-size: 12px;
    line-height: 1.42;
    padding: 12px;
  }

  .vat-fee-continue {
    font-size: 15px;
    padding: 12px;
  }
}

@media (max-width: 760px) {
  header {
    grid-template-columns: 1fr;
  }
  .left-head,
  .search-box,
  .slogan-head,
  .right-head {
    justify-self: center;
  }
  .left-head {
    flex-wrap: wrap;
    justify-content: center;
  }
  .slogan-head {
    max-width: 90vw;
    white-space: normal;
    text-align: center;
    color: white;
  }
}

@media (max-width: 900px) {
  .products {
    grid-template-columns: repeat(3, 1fr);
  }
  .modal-photo-wrap {
    height: 360px;
  }
  .top-products {
    grid-template-columns: repeat(3, 1fr);
  }
  .info-footer-inner {
    grid-template-columns: 1fr;
  }
  .footer-menu {
    grid-template-columns: repeat(2, 1fr);
  }
  .account-menu {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  body {
    overflow-x: hidden;
  }

  header {
    grid-template-columns: 1fr;
    gap: 9px;
    padding: 10px;
    position: sticky;
    top: 0;
  }

  .left-head {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
  }

  .logo {
    font-size: 23px;
    justify-content: center;
    min-width: auto;
  }

  .delivery-text {
    display: none;
  }

  .lang-box {
    order: 2;
  }

  .search-box {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 6px;
    justify-self: stretch;
  }

  .search {
    width: 100%;
    max-width: none;
    min-width: 0;
    font-size: 14px;
    padding: 10px 11px;
    box-sizing: border-box;
  }

  .search-btn {
    padding: 10px 12px;
    font-size: 12px;
    white-space: nowrap;
  }

  .slogan-head {
    width: 100%;
    max-width: none;
    white-space: normal;
    font-size: 11px;
    line-height: 1.2;
    padding: 6px 10px;
    text-align: center;
    box-sizing: border-box;
  }

  .right-head {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 5px;
    justify-self: center;
  }

  .cooperation-btn,
  .contacts-box,
  .contacts-btn,
  .account-btn,
  .cart {
    width: auto;
    min-width: 0;
    box-sizing: border-box;
    justify-content: center;
    text-align: center;
    font-size: 11px;
    white-space: nowrap;
    flex-shrink: 1;
  }

  .cooperation-btn,
  .contacts-btn,
  .account-btn,
  .cart {
    padding: 8px 6px;
  }
  .cooperation-btn {
    max-width: 92px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .contacts-box {
    max-width: 70px;
  }

  .contacts-btn {
    max-width: 70px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .account-btn {
    max-width: 42px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .cart {
    max-width: 50px;
  }

  .cooperation-btn:hover,
  .contacts-btn:hover {
    min-width: 0;
    transform: none;
  }

  .contacts-menu {
    top: 42px;
    left: 0;
    right: auto;
    width: 100%;
    box-sizing: border-box;
  }

  .cart {
    display: flex;
  }

  .top-line {
    min-height: auto;
    padding: 8px;
  }

  .top-products {
    grid-template-columns: repeat(2, 1fr);
    gap: 7px;
  }

  .top-product-card {
    height: 112px;
    padding: 6px;
  }

  .products {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    padding: 9px;
  }

  .card {
    height: 260px;
    padding: 6px;
    gap: 3px;
    border-radius: 8px;
  }

  .products .card {
    cursor: pointer;
  }

  .card img {
    height: 48%;
  }

  .card h3 {
    font-size: 11px;
    min-height: 24px;
    max-height: 24px;
    line-height: 1.08;
  }

  .card-desc {
    font-size: 9.3px;
    min-height: 20px;
    max-height: 20px;
    line-height: 1.08;
  }

  .price {
    font-size: 13px;
  }

  .products .card .price {
    width: 100%;
    text-align: left;
    display: inline-flex;
    align-items: baseline;
    justify-content: flex-start;
    gap: 6px;
    flex-wrap: wrap;
    align-self: stretch;
  }

  .card-actions {
    gap: 3px;
  }

  .buy,
  .cartbtn {
    font-size: 10px;
    padding: 6px 6px;
  }

  .big-buy {
    width: 100%;
    font-size: 10.5px;
    padding: 7px 6px;
  }

  .pagination {
    padding: 12px 8px 26px;
    gap: 6px;
  }

  .pagination.show {
    display: flex;
  }

  .page-btn {
    padding: 8px 11px;
    font-size: 12px;
  }

  .page-nav-btn {
    min-width: 88px;
  }

  .page-btn:disabled {
    opacity: 0.45;
    pointer-events: none;
  }

  .page-mobile-label {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 12px;
    font-weight: 900;
    color: #667085;
    margin-top: 2px;
  }

  .cartbox {
    width: 100%;
  }

  .modal,
  .order-modal,
  .account-modal,
  .info-modal,
  .oneclick-warning-modal {
    padding: 8px;
    align-items: flex-start;
    overflow: auto;
  }

  .modal-content,
  .order-box,
  .account-box,
  .info-box,
  .oneclick-warning-box {
    width: 100%;
    max-width: 100%;
    max-height: none;
    margin-top: 8px;
    border-radius: 14px;
    padding: 14px;
    box-sizing: border-box;
  }

  .modal-photo-wrap {
    height: 280px;
  }

  .gallery img {
    width: 62px;
    height: 50px;
  }

  #modalName {
    font-size: 19px;
    line-height: 1.2;
    margin-right: 35px;
  }

  #modalDesc {
    font-size: 14px;
    line-height: 1.4;
  }

  #modalSpecs {
    font-size: 13px !important;
  }

  #modalBuyBtn {
    width: 100%;
    display: block;
    box-sizing: border-box;
    padding: 12px;
    font-size: 14px;
    margin: 8px 0 6px;
  }

  #modalCartBtn {
    width: 100%;
    display: block;
    box-sizing: border-box;
    padding: 12px;
    font-size: 14px;
    margin: 6px 0;
  }

  .order-form {
    grid-template-columns: 1fr;
  }

  .order-form .full {
    grid-column: 1;
  }

  .order-address-book {
    padding: 10px;
    border-radius: 13px;
  }

  .order-address-card {
    grid-template-columns: 24px 1fr auto;
    gap: 7px;
    padding: 9px;
  }

  .order-address-card-name {
    font-size: 13px;
  }

  .order-address-card-line,
  .order-address-card-contact {
    font-size: 11.5px;
  }

  .order-address-form-actions {
    grid-template-columns: 1fr;
  }

  .order-product {
    align-items: flex-start;
  }

  .order-product img {
    width: 64px;
    height: 64px;
  }

  .order-name {
    font-size: 14px;
  }

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

  .account-grid .full {
    grid-column: 1;
  }

  .account-menu {
    grid-template-columns: 1fr;
  }

  .verify-actions {
    grid-template-columns: 1fr;
  }

  .oneclick-warning-actions {
    grid-template-columns: 1fr;
  }

  .info-footer {
    padding: 14px 14px 10px !important;
  }

  .info-footer-inner {
    grid-template-columns: 1fr;
    gap: 12px;
  }

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

  .footer-bottom {
    display: block;
    line-height: 1.6;
  }
}

header {
  grid-template-columns: auto minmax(110px, 260px) minmax(120px, 1fr) auto;
  gap: clamp(3px, 0.75vw, 14px);
  padding: clamp(5px, 0.8vw, 12px);
}

.left-head {
  justify-self: start;
  width: auto;
  flex-wrap: nowrap;
  gap: clamp(3px, 0.8vw, 14px);
  min-width: 0;
}

.logo {
  font-size: clamp(13px, 1.8vw, 24px);
  min-width: auto;
  flex-shrink: 0;
}

.lang-box {
  order: 0;
  flex-shrink: 0;
}

.lang-current {
  font-size: clamp(8px, 0.85vw, 12px);
  padding: clamp(4px, 0.55vw, 7px) clamp(6px, 0.75vw, 12px);
  min-width: auto;
}

.search-box {
  justify-self: stretch;
  width: 100%;
  display: flex;
  grid-template-columns: none;
  min-width: 0;
  gap: clamp(3px, 0.45vw, 6px);
}

.search {
  width: 100%;
  max-width: none;
  min-width: 0;
  font-size: clamp(8px, 0.9vw, 14px);
  padding: clamp(5px, 0.7vw, 8px) clamp(7px, 0.9vw, 12px);
}

.search-btn {
  font-size: clamp(8px, 0.85vw, 13px);
  padding: clamp(5px, 0.7vw, 8px) clamp(7px, 1vw, 14px);
  white-space: nowrap;
}

.slogan-head {
  justify-self: center;
  width: auto;
  max-width: none;
  white-space: nowrap;
  font-size: clamp(7px, 0.85vw, 12px);
  line-height: 1.05;
  padding: clamp(4px, 0.6vw, 7px) clamp(5px, 0.8vw, 10px);
  overflow: hidden;
  text-overflow: ellipsis;
}

.right-head {
  justify-self: end;
  width: auto;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-items: center;
  gap: clamp(2px, 0.4vw, 5px);
  min-width: 0;
}

.cooperation-btn,
.contacts-btn,
.account-btn,
.cart {
  width: auto;
  min-width: auto;
  max-width: none;
  font-size: clamp(7px, 0.8vw, 12px);
  padding: clamp(5px, 0.65vw, 8px) clamp(5px, 0.7vw, 8px);
  white-space: nowrap;
  overflow: visible;
  text-overflow: clip;
  flex-shrink: 1;
}

.contacts-box {
  width: auto;
  max-width: none;
  flex-shrink: 1;
}

.cart {
  gap: clamp(2px, 0.35vw, 5px);
}

.cart-icon,
.cart-icon svg {
  width: clamp(13px, 1.25vw, 20px);
  height: clamp(13px, 1.25vw, 20px);
}

@media (max-width: 900px) {
  header {
    grid-template-columns: auto minmax(95px, 220px) minmax(90px, 1fr) auto;
  }

  .left-head,
  .search-box,
  .slogan-head,
  .right-head {
    justify-self: initial;
  }

  .left-head {
    justify-self: start;
    justify-content: flex-start;
  }

  .search-box {
    justify-self: stretch;
  }

  .slogan-head {
    justify-self: center;
  }

  .right-head {
    justify-self: end;
    justify-content: flex-end;
  }

  .delivery-text {
    display: none;
  }
}

@media (max-width: 760px) {
  header {
    grid-template-columns: auto minmax(80px, 1fr) minmax(70px, 0.8fr) auto;
    gap: 3px;
    padding: 5px;
  }

  .left-head {
    width: auto;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 3px;
  }

  .search-box {
    width: 100%;
    display: flex;
  }

  .slogan-head {
    width: auto;
    max-width: none;
    white-space: nowrap;
    text-align: center;
  }

  .right-head {
    width: auto;
    flex-wrap: nowrap;
    justify-content: flex-end;
  }
}

@media (max-width: 600px) {
  header {
    grid-template-columns: auto minmax(70px, 1fr) minmax(55px, 0.7fr) auto;
    gap: 2px;
    padding: 4px;
  }

  .logo {
    font-size: 12px;
  }

  .lang-current {
    font-size: 7px;
    padding: 5px 4px;
  }

  .search {
    font-size: 7.5px;
    padding: 6px 5px;
  }

  .search-btn {
    font-size: 7px;
    padding: 6px 4px;
  }

  .slogan-head {
    font-size: 6.5px;
    line-height: 1;
    padding: 5px 3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .cooperation-btn,
  .contacts-btn,
  .account-btn,
  .cart {
    font-size: 6.8px;
    padding: 6px 3px;
    max-width: none;
    overflow: visible;
    text-overflow: clip;
  }

  .contacts-box {
    max-width: none;
  }

  .cart-icon {
    display: none;
  }

  .right-head {
    gap: 2px;
  }

  .cooperation-btn:hover,
  .contacts-btn:hover,
  .account-btn:hover,
  .cart:hover {
    transform: none;
  }
}

.top-product-card:before,
.promo-next-preview:before {
  top: 6px;
  left: -22px;
  font-size: 7px;
  padding: 2px 18px;
  min-width: 42px;
  text-align: center;
  transform: rotate(-35deg);
}

.top-product-title,
.promo-next-title {
  height: 30px;
  max-height: 30px;
  padding: 0 5px 0 30px;
  box-sizing: border-box;
  font-size: 9.5px;
  line-height: 1.08;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-align: center;
}

.top-product-img,
.promo-next-preview img {
  width: 100%;
  height: 34px;
  object-fit: cover;
}

@media (max-width: 600px) {
  .top-product-card:before,
  .promo-next-preview:before {
    top: 6px;
    left: -22px;
    font-size: 6.5px;
    padding: 2px 17px;
    min-width: 40px;
    text-align: center;
  }

  .top-product-title,
  .promo-next-title {
    height: 31px;
    max-height: 31px;
    padding-left: 22px;
    font-size: 9.2px;
  }

  .card-desc {
    margin-top: 3px;
    margin-bottom: 3px;
  }
}

.sort-line {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 9px 0;
  background: linear-gradient(135deg, #0b1220, #101a2e);
  position: relative;
  z-index: 20;
}

.sort-wrap {
  position: relative;
}

.sort-main-btn {
  margin: 0;
  padding: 11px 18px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(135deg, #252b33, #343c47, #222831);
  color: white;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 5px 14px rgba(0, 0, 0, 0.28);
}

.sort-main-btn:hover {
  background: linear-gradient(135deg, #303743, #414a57, #2a303a);
  transform: scale(1.03);
}

.sort-menu {
  display: none;
  position: absolute;
  top: 46px;
  left: 50%;
  transform: translateX(-50%);
  width: 230px;
  padding: 8px;
  border-radius: 16px;
  background: rgba(12, 18, 30, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.48);
  box-sizing: border-box;
  z-index: 99999;
}

.sort-line.open .sort-menu {
  display: grid;
  gap: 7px;
}

.sort-option {
  width: 100%;
  margin: 0;
  padding: 11px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.07);
  color: white;
  font-size: 13px;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

.sort-option:hover,
.sort-option.active {
  background: linear-gradient(
    135deg,
    #8a5600,
    #d99a00,
    #ffd700,
    #fff1a6,
    #c88400
  );
  color: #2d1700;
  border: 1px solid rgba(255, 255, 255, 0.55);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.45);
}

.mobile-filter-menu {
  display: none;
}

@media (max-width: 600px) {
  .sort-line {
    display: none !important;
  }

  .mobile-catalog-controls {
    grid-template-columns: repeat(3, 1fr) !important;
  }

  .mobile-filter-menu {
    display: none;
    grid-column: 1/-1;
    padding: 8px;
    border-radius: 16px;
    background: rgba(12, 18, 30, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
    box-sizing: border-box;
  }

  .mobile-filter-menu.open {
    display: grid;
    gap: 7px;
  }

  .mobile-filter-menu .sort-option {
    font-size: 12px;
    padding: 10px 11px;
  }
}

@media (min-width: 601px) {
  .mobile-filter-menu {
    display: none !important;
  }
}

.mobile-menu-btn,
.mobile-menu-panel,
.mobile-catalog-controls {
  display: none;
}

@media (max-width: 600px) {
  body {
    overflow-x: hidden;
  }

  header {
    grid-template-columns: auto minmax(0, 1fr) auto !important;
    grid-template-areas: "mobile-logo mobile-search mobile-actions";
    gap: 6px !important;
    padding: 7px 8px !important;
    align-items: center !important;
  }

  .left-head {
    grid-area: mobile-logo;
    width: auto !important;
    min-width: 0 !important;
    justify-content: flex-start !important;
    flex-wrap: nowrap !important;
    gap: 0 !important;
  }

  .logo {
    font-size: 18px !important;
    min-width: auto !important;
    justify-content: flex-start !important;
    white-space: nowrap !important;
  }

  .lang-box {
    display: none !important;
  }

  .search-box {
    grid-area: mobile-search;
    width: 100% !important;
    min-width: 0 !important;
    display: flex !important;
    gap: 0 !important;
    justify-self: stretch !important;
  }

  .search {
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
    height: 32px !important;
    padding: 6px 9px !important;
    font-size: 12px !important;
    border-radius: 9px !important;
    box-sizing: border-box !important;
  }

  .search-btn {
    display: none !important;
  }

  .slogan-head {
    display: none !important;
  }

  .right-head {
    grid-area: mobile-actions;
    width: auto !important;
    min-width: 0 !important;
    display: flex !important;
    justify-content: flex-end !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
    gap: 5px !important;
  }

  .cooperation-btn,
  .contacts-box,
  .account-btn {
    display: none !important;
  }

  .cart {
    display: flex !important;
    width: auto !important;
    max-width: none !important;
    min-width: 34px !important;
    height: 32px !important;
    padding: 5px 7px !important;
    font-size: 12px !important;
    border-radius: 9px !important;
    box-sizing: border-box !important;
    margin: 0 !important;
    gap: 4px !important;
  }

  .cart-icon {
    display: inline-flex !important;
    width: 16px !important;
    height: 16px !important;
  }

  .cart-icon svg {
    display: block !important;
    width: 16px !important;
    height: 16px !important;
  }

  .mobile-menu-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 32px;
    margin: 0;
    padding: 0;
    border-radius: 9px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, #252b33, #343c47, #222831);
    color: white;
    font-size: 20px;
    font-weight: 900;
    line-height: 1;
    cursor: pointer;
    box-shadow:
      0 3px 12px rgba(0, 0, 0, 0.42),
      inset 0 1px 0 rgba(255, 255, 255, 0.08);
  }

  .mobile-menu-panel {
    display: none;
    position: fixed;
    top: 48px;
    right: 8px;
    width: min(260px, calc(100vw - 16px));
    background: rgba(12, 18, 30, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 16px;
    padding: 10px;
    z-index: 99999;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.48);
    box-sizing: border-box;
  }

  .mobile-menu-panel.open {
    display: block;
  }

  .mobile-menu-title {
    color: rgba(255, 255, 255, 0.62);
    font-size: 11px;
    font-weight: 900;
    padding: 8px 8px 5px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
  }

  .mobile-menu-item {
    display: block;
    width: 100%;
    box-sizing: border-box;
    text-align: left;
    text-decoration: none;
    margin: 0 0 7px;
    padding: 11px 12px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.07);
    color: white;
    font-size: 14px;
    font-weight: 900;
    cursor: pointer;
  }

  .mobile-menu-item:hover {
    background: linear-gradient(
      135deg,
      #8a5600,
      #d99a00,
      #ffd700,
      #fff1a6,
      #c88400
    );
    color: #2d1700;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.45);
  }

  .top-line {
    min-height: auto !important;
    padding: 8px !important;
    justify-content: flex-start !important;
    overflow-x: auto !important;
    scrollbar-width: none;
  }

  .top-line::-webkit-scrollbar {
    display: none;
  }

  .top-products {
    display: flex !important;
    grid-template-columns: none !important;
    width: max-content !important;
    gap: 8px !important;
  }

  .top-product-card {
    flex: 0 0 145px !important;
    width: 145px !important;
    height: 122px !important;
  }

  .top-line {
    width: 100%;
    margin-left: 0;
  }

  .layout {
    display: block;
    padding-left: 0;
  }

  .side-cats {
    display: none;
    width: 100%;
    position: static;
    padding: 0 10px 10px;
    margin: 0;
    box-sizing: border-box;
    gap: 8px;
    overflow: visible;
    height: auto;
    min-height: 0;
    max-height: none;
    border-right: none;
    top: auto;
  }

  .side-cats.mobile-open {
    display: block;
    width: 100%;
    height: auto;
    max-height: none;
    min-height: 0;
    padding: 10px;
    margin: 0;
    background: #fff;
    position: relative;
    z-index: 60;
    overflow: visible;
    box-sizing: border-box;
  }

  .side-cats.mobile-open .side-filter-wrap {
    display: none;
  }

  .side-cats.mobile-open.easyfix-mobile-main-categories {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
  }

  .side-cats.mobile-open.easyfix-mobile-main-categories
    .easyfix-all-categories-list,
  .side-cats.mobile-open.easyfix-mobile-main-categories
    .easyfix-all-categories-title {
    display: none;
  }

  .side-cats.mobile-open.easyfix-mobile-subcategories
    .easyfix-main-category-btn,
  .side-cats.mobile-open.easyfix-mobile-subcategories
    .easyfix-all-categories-title {
    display: none;
  }

  .side-cats.mobile-open.easyfix-mobile-main-categories
    .easyfix-all-categories-list.open {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
    width: 100%;
    margin: 0;
  }

  .side-cats.mobile-open.easyfix-mobile-subcategories
    .easyfix-all-categories-list.open {
    display: grid;
    grid-template-columns: 1fr;
    gap: 9px;
    width: 100%;
    margin: 0;
  }

  .side-cats.mobile-open .cat {
    width: 100%;
    min-width: 0;
    min-height: 86px;
    margin: 0;
    padding: 9px 7px;
    border-radius: 18px;
    background: #fff;
    color: #151923;
    border: 1px solid #e7eaf0;
    box-shadow: 0 7px 18px rgba(16, 24, 40, 0.08);
    text-shadow: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    text-align: center;
    box-sizing: border-box;
    animation: none;
    overflow: hidden;
  }

  .side-cats.mobile-open .cat-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    margin: 0;
    border-radius: 14px;
  }

  .side-cats.mobile-open .cat-icon svg {
    width: 22px;
    height: 22px;
  }

  .side-cats.mobile-open .cat-label {
    font-size: 12px;
    line-height: 1.12;
    text-align: center;
  }

  .side-cats.mobile-open .easyfix-main-category-btn.has-desc {
    min-height: 86px;
    padding: 9px 7px;
    display: flex;
    flex-direction: column;
    text-align: center;
  }

  .side-cats.mobile-open .easyfix-main-btn-title {
    font-size: 12px;
    line-height: 1.08;
  }

  .side-cats.mobile-open .easyfix-main-btn-desc {
    font-size: 9.5px;
    line-height: 1.12;
    margin-top: 3px;
    color: #667085;
  }

  .side-cats.mobile-open .easyfix-color-squares {
    gap: 4px;
    margin: 5px auto 0;
  }

  .side-cats.mobile-open .easyfix-color-square {
    width: 8px;
    height: 8px;
  }

  .side-cats.mobile-open .cat.active-main:not(.oneclick-cat),
  .side-cats.mobile-open .easyfix-main-category-btn.active-main {
    background: linear-gradient(135deg, #eadcff, #b45cff, #6d28d9);
    color: white;
    border-color: rgba(232, 213, 255, 0.9);
    box-shadow: 0 8px 20px rgba(124, 58, 237, 0.26);
  }

  .side-cats.mobile-open
    .cat.active-main:not(.oneclick-cat)
    .easyfix-main-btn-desc,
  .side-cats.mobile-open
    .easyfix-main-category-btn.active-main:not(.oneclick-cat)
    .easyfix-main-btn-desc {
    color: rgba(255, 255, 255, 0.88);
  }

  .mobile-filter-menu {
    grid-column: 1/-1;
    margin-top: 0;
    border-radius: 16px;
  }
}

@media (min-width: 601px) {
  .mobile-menu-btn,
  .mobile-menu-panel,
  .mobile-catalog-controls {
    display: none !important;
  }
}

.mobile-footer-lang {
  display: none;
}

@media (max-width: 600px) {
  .mobile-footer-lang {
    display: block;
    grid-column: 1/-1;
    margin-top: 6px;
    padding: 12px;
    border-radius: 16px;
    background: linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.07),
      rgba(255, 215, 0, 0.1),
      rgba(30, 144, 255, 0.08)
    );
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow:
      0 8px 22px rgba(0, 0, 0, 0.24),
      0 0 16px rgba(255, 215, 0, 0.12);
    position: relative;
    overflow: hidden;
    animation: mobileLangSoftMove 3.2s ease-in-out infinite;
  }

  .mobile-footer-lang:before {
    content: "";
    position: absolute;
    top: -40%;
    left: -70%;
    width: 45%;
    height: 190%;
    background: linear-gradient(
      120deg,
      transparent,
      rgba(255, 255, 255, 0.22),
      transparent
    );
    transform: rotate(25deg);
    animation: mobileLangShine 4.5s ease-in-out infinite;
    pointer-events: none;
  }

  .mobile-footer-lang-title {
    position: relative;
    z-index: 1;
    font-size: 12px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 8px;
    text-align: center;
  }

  .mobile-footer-lang-buttons {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
  }

  .mobile-lang-btn {
    margin: 0;
    padding: 9px 4px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: linear-gradient(135deg, #252b33, #343c47, #222831);
    color: white;
    font-size: 11px;
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  }

  .mobile-lang-btn.active {
    background: linear-gradient(
      135deg,
      #8a5600,
      #d99a00,
      #ffd700,
      #fff1a6,
      #c88400
    );
    color: #2d1700;
    border: 1px solid rgba(255, 255, 255, 0.55);
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.45);
    animation: mobileLangActivePulse 1.9s ease-in-out infinite;
  }

  @keyframes mobileLangSoftMove {
    0% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-2px);
    }
    100% {
      transform: translateY(0);
    }
  }

  @keyframes mobileLangShine {
    0% {
      left: -70%;
      opacity: 0;
    }
    25% {
      opacity: 0.7;
    }
    55% {
      left: 130%;
      opacity: 0;
    }
    100% {
      left: 130%;
      opacity: 0;
    }
  }

  @keyframes mobileLangActivePulse {
    0% {
      box-shadow: 0 0 10px rgba(255, 215, 0, 0.18);
    }
    50% {
      box-shadow: 0 0 18px rgba(255, 215, 0, 0.42);
    }
    100% {
      box-shadow: 0 0 10px rgba(255, 215, 0, 0.18);
    }
  }

  .cartbox {
    width: 92vw !important;
    max-width: 420px !important;
    min-width: 0 !important;
    height: 78vh !important;
    max-height: 78vh !important;
    top: 50% !important;
    left: 50% !important;
    right: auto !important;
    transform: translate(-50%, -50%);
    border-radius: 18px !important;
    padding-bottom: 12px !important;
  }
}

.country-picker-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  z-index: 18000;
  padding: 12px;
  box-sizing: border-box;
  align-items: flex-start;
  justify-content: center;
  backdrop-filter: blur(4px);
}

.country-picker-box {
  width: 100%;
  max-width: 520px;
  max-height: 88vh;
  overflow: hidden;
  background: white;
  color: #111;
  border-radius: 18px;
  padding: 14px;
  box-sizing: border-box;
  margin-top: 12px;
  position: relative;
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.42);
}

.country-picker-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  background: linear-gradient(
    135deg,
    #8a5600,
    #d99a00,
    #ffd700,
    #fff1a6,
    #c88400
  );
  color: #2d1700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 0 12px rgba(255, 215, 0, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.55);
  z-index: 3;
}

.country-picker-title {
  font-size: 21px;
  font-weight: 900;
  margin: 0 42px 12px 0;
}

.country-picker-search {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 12px;
  font-size: 16px;
  box-sizing: border-box;
  margin-bottom: 10px;
}

.country-picker-options {
  max-height: 62vh;
  overflow: auto;
  display: grid;
  gap: 7px;
  padding-right: 2px;
}

.country-picker-option {
  width: 100%;
  margin: 0;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #ddd;
  background: #f7f7f7;
  color: #111;
  text-align: left;
  font-size: 15px;
  font-weight: 900;
  cursor: pointer;
}

.country-picker-option:hover {
  background: linear-gradient(
    135deg,
    #8a5600,
    #d99a00,
    #ffd700,
    #fff1a6,
    #c88400
  );
  color: #2d1700;
}

.country-picker-custom {
  background: #111;
  color: white;
  border-color: #111;
}

@media (min-width: 701px) {
  .country-picker-modal {
    align-items: center;
  }

  .country-picker-box {
    margin-top: 0;
  }
}

.logo,
.logo *,
.footer-logo,
.footer-logo *,
.footer-text {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  cursor: default;
}

#infoText {
  font-size: 12.5px !important;
  line-height: 1.42 !important;
  color: #333;
  white-space: pre-line;
}

#infoTitle {
  font-size: 20px !important;
  line-height: 1.2 !important;
}

@media (max-width: 600px) {
  #infoText {
    font-size: 11.5px !important;
    line-height: 1.38 !important;
  }

  #infoTitle {
    font-size: 18px !important;
    line-height: 1.2 !important;
  }
}

html,
body {
  touch-action: pan-x pan-y;
  overscroll-behavior: none;
}

.product-page {
  display: none;
  background:
    radial-gradient(
      circle at top left,
      rgba(30, 144, 255, 0.16),
      transparent 30%
    ),
    radial-gradient(
      circle at top right,
      rgba(255, 215, 0, 0.1),
      transparent 25%
    ),
    linear-gradient(135deg, #0b1220 0%, #101a2e 35%, #0c1627 70%, #08101d 100%);
  min-height: 100vh;
  padding: 18px;
  box-sizing: border-box;
}

.product-page-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.product-breadcrumbs {
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 14px;
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
  align-items: center;
}

.product-breadcrumbs span {
  color: #ffd700;
}

.product-back-btn {
  margin: 0 0 14px;
  padding: 10px 14px;
  border-radius: 12px;
  background: linear-gradient(135deg, #252b33, #343c47, #222831);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
}

.product-main-card {
  display: grid;
  grid-template-columns: minmax(280px, 48%) 1fr;
  gap: 18px;
  background: rgba(13, 20, 34, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.12);
  outline: 1px solid rgba(255, 215, 0, 0.16);
  border-radius: 20px;
  padding: 18px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.32);
}

.product-gallery-main {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #fff;
  border: 1px solid var(--ef-line);
  border-radius: 18px;
  overflow: hidden;
  user-select: none;
}

.product-gallery-viewport {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.product-gallery-track {
  width: 100%;
  height: 100%;
  display: flex;
  transition: transform 0.32s cubic-bezier(0.22, 0.8, 0.22, 1);
  will-change: transform;
}

.product-gallery-slide {
  flex: 0 0 100%;
  min-width: 100%;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}

.product-gallery-slide img,
.product-gallery-slide video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: transparent;
  display: block;
}

.product-gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.82);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 42px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0 0 5px;
  z-index: 5;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.product-gallery-prev {
  left: 16px;
}

.product-gallery-next {
  right: 16px;
}

.product-gallery-main:hover .product-gallery-arrow {
  opacity: 1;
  pointer-events: auto;
}

.product-gallery-arrow:hover {
  transform: translateY(-50%) scale(1.06);
}

.product-thumbs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
}

.product-thumb-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid #777;
  background: #fff;
  cursor: pointer;
  padding: 0;
  margin: 0;
}

.product-thumb-dot.active {
  background: #666;
  border-color: #666;
}

.product-gallery-count {
  margin-top: 3px;
  text-align: center;
  color: #b45cff;
  font-size: 13px;
  font-weight: 700;
}

.product-info-panel {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.product-page-title {
  margin: 0;
  font-size: 28px;
  line-height: 1.16;
  font-weight: 900;
  color: white;
}

.product-code {
  font-size: 12px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.56);
}

.product-stock {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: max-content;
  background: rgba(105, 220, 130, 0.12);
  color: #7ee08d;
  border: 1px solid rgba(105, 220, 130, 0.24);
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}

.product-badges-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.product-badges-row .product-stock,
.product-badges-row .free-delivery-badge,
.product-badges-row .product-no-vat-badge {
  height: 31px;
  min-height: 31px;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 13px;
  line-height: 1;
  font-weight: 900;
  white-space: nowrap;
}

.product-badges-row .product-stock {
  gap: 7px;
  padding: 0 12px;
}

.free-delivery-badge {
  gap: 6px;
  padding: 0 13px;
  background: #fff7ed;
  color: #f97316;
  border: 1px solid #fed7aa;
  box-shadow: 0 4px 10px rgba(249, 115, 22, 0.12);
}

.free-delivery-badge svg {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.product-no-vat-badge {
  min-width: 78px;
  padding: 0 13px;
  background: linear-gradient(135deg, #f0fdf4, #dcfce7);
  color: #15803d;
  border: 1px solid #86efac;
  box-shadow:
    0 4px 10px rgba(22, 163, 74, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.product-no-vat-badge svg {
  width: 42px;
  height: 18px;
  display: block;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.product-no-vat-badge svg path {
  stroke: #dc2626;
}

.product-no-vat-badge text {
  fill: currentColor;
  stroke: none;
  font-size: 12px;
  font-weight: 1000;
  font-family: Arial, sans-serif;
  letter-spacing: 0.15px;
  text-anchor: middle;
  dominant-baseline: middle;
}

.free-card-badge {
  position: absolute;
  top: calc(45% + 19px);
  right: 10px;
  z-index: 6;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  height: 21px;
  padding: 0 7px;
  border-radius: 999px;
  background: #f97316;
  color: white;
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 4px 10px rgba(249, 115, 22, 0.28);
  pointer-events: none;
}

.free-card-badge svg {
  width: 13px;
  height: 13px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.no-vat-card-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 7;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 21px;
  padding: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #f0fdf4, #dcfce7);
  color: #15803d;
  border: 1px solid #86efac;
  box-shadow:
    0 5px 12px rgba(22, 163, 74, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
  pointer-events: none;
}

.no-vat-card-badge svg {
  width: 30px;
  height: 17px;
  display: block;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.no-vat-card-badge svg path {
  stroke: #dc2626;
}

.no-vat-card-badge text {
  fill: currentColor;
  stroke: none;
  font-size: 11.5px;
  font-weight: 1000;
  font-family: Arial, sans-serif;
  letter-spacing: 0.1px;
  text-anchor: middle;
  dominant-baseline: middle;
}

@media (max-width: 600px) {
  .free-card-badge {
    top: calc(43% + 8px);
    right: 8px;
    height: 20px;
    padding: 0 6px;
    font-size: 9px;
  }

  .free-card-badge svg {
    width: 12px;
    height: 12px;
  }

  .no-vat-card-badge {
    top: 8px;
    right: 8px;
    width: 32px;
    height: 20px;
  }

  .no-vat-card-badge svg {
    width: 28px;
    height: 16px;
  }
}

.product-page-price {
  font-size: 34px;
  font-weight: 900;
  color: #ffd700;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}

.product-page-price .easyfix-old-price {
  color: #8b8f98;
  font-size: 0.75em;
  text-decoration-color: #e11d48;
  text-decoration-thickness: 1px;
}

.product-page-price .easyfix-current-price {
  color: inherit;
}

.product-page-price .easyfix-price-unit {
  font-size: 0.46em;
  color: rgba(17, 24, 39, 0.64);
}

.product-page-qty {
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 12px;
  margin: 8px 0 14px;
  padding: 10px 12px;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  box-sizing: border-box;
}

.product-page-qty-label {
  color: #111827;
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
}

.product-page-qty-control {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.product-page-qty-btn {
  width: 34px;
  height: 34px;
  padding: 0;
  margin: 0;
  border-radius: 10px;
  border: 1px solid #d1d5db;
  background: #111827;
  color: white;
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-page-qty-input {
  width: 54px;
  height: 34px;
  padding: 0;
  margin: 0;
  border-radius: 10px;
  border: 1px solid #d1d5db;
  background: white;
  color: #111827;
  font-size: 14px;
  font-weight: 900;
  text-align: center;
  box-sizing: border-box;
}

.product-page-qty-input::-webkit-outer-spin-button,
.product-page-qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

@media (max-width: 600px) {
  .product-page-qty {
    grid-template-columns: 1fr;
    gap: 8px;
    margin: 8px 0 12px;
  }

  .product-page-qty-control {
    justify-content: flex-start;
  }
}

.product-short-desc {
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.5;
  font-size: 15px;
}

.custom-choice-analysis-collapse {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  overflow: hidden;
  transition:
    grid-template-rows 0.26s ease,
    opacity 0.18s ease;
}

.custom-choice-analysis-collapse-inner {
  min-height: 0;
  overflow: hidden;
}

.custom-choice-analysis.is-open .custom-choice-analysis-collapse {
  grid-template-rows: 1fr;
  opacity: 1;
}

.custom-choice-analysis {
  width: 100%;
  box-sizing: border-box;
  padding: 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, #2b2144, #151827);
  border: 1px solid rgba(168, 85, 247, 0.28);
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.18);
  color: #ffffff;
}

.custom-choice-analysis-title {
  width: 100%;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-size: 20px;
  font-weight: 1000;
  letter-spacing: 0.2px;
  margin: 0 0 6px;
  padding: 0;
}

.custom-choice-analysis-bottom-toggle {
  width: 44px;
  height: 28px;
  margin: 10px auto 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.custom-choice-analysis-bottom-toggle svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.18s ease;
}

.custom-choice-analysis.is-open .custom-choice-analysis-bottom-toggle svg {
  transform: rotate(180deg);
}

.custom-choice-analysis-hint {
  text-align: center;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 14px;
}

.custom-choice-analysis-section {
  display: grid;
  gap: 8px;
}

.custom-choice-analysis-extras-grid {
  grid-template-columns: 1fr;
}

.custom-choice-analysis-extras-grid .custom-choice-analysis-subtitle {
  grid-column: 1 / -1;
}

.custom-choice-analysis-extras-grid .custom-choice-analysis-line {
  grid-template-columns: minmax(0, 1fr) auto;
  align-content: center;
  min-height: 0;
}

.custom-choice-analysis-extras-grid .custom-choice-analysis-line strong {
  white-space: normal;
}

.custom-choice-analysis-subtitle {
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 1000;
}

.custom-choice-analysis-line {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 10px 12px;
  border-radius: 13px;
  background: rgba(15, 23, 42, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
  font-weight: 900;
}

.custom-choice-analysis-line strong {
  color: #ffffff;
  white-space: nowrap;
}

.custom-choice-analysis-divider {
  height: 1px;
  background: rgba(0, 0, 0, 0.72);
  margin: 12px 0 14px;
}

.custom-choice-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 91000;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(8, 12, 18, 0.52);
}

.custom-choice-box {
  width: min(760px, 100%);
  max-height: 88vh;
  overflow: auto;
  box-sizing: border-box;
  position: relative;
  padding: 22px;
  border-radius: 22px;
  background: #ffffff;
  color: #111827;
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.38);
}

.custom-choice-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 12px;
  background: #111827;
  color: #ffffff;
  font-size: 18px;
  font-weight: 900;
  cursor: pointer;
}

.custom-choice-title {
  margin: 0 44px 8px 0;
  font-size: 26px;
  font-weight: 1000;
  color: #111827;
}

.custom-choice-product {
  color: #64748b;
  font-size: 14px;
  font-weight: 900;
  margin-bottom: 16px;
}

.custom-choice-list {
  display: grid;
  gap: 16px;
}

.custom-choice-modal-section {
  display: grid;
  gap: 9px;
}

.custom-choice-modal-subtitle {
  font-size: 15px;
  font-weight: 1000;
  color: #111827;
}

.custom-choice-set-row,
.custom-choice-extra-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 13px;
  border-radius: 16px;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
}

.custom-choice-set-row input {
  width: 20px;
  height: 20px;
}

.custom-choice-set-row span,
.custom-choice-extra-name {
  font-size: 14px;
  font-weight: 900;
  color: #111827;
}

.custom-choice-set-row strong {
  font-size: 14px;
  font-weight: 1000;
  color: #111827;
  white-space: nowrap;
}

.custom-choice-extra-row {
  grid-template-columns: 1fr auto;
}

.custom-choice-extra-price {
  margin-top: 3px;
  color: #64748b;
  font-size: 12px;
  font-weight: 900;
}

.custom-choice-extra-control {
  display: flex;
  align-items: center;
  gap: 8px;
}

.custom-choice-qty-input {
  width: 92px;
  height: 42px;
  padding: 0 10px;
  border-radius: 13px;
  border: 1px solid #d1d5db;
  background: #ffffff;
  color: #111827;
  font-size: 15px;
  font-weight: 1000;
  text-align: center;
  box-sizing: border-box;
}

.custom-choice-extra-control span {
  min-width: 28px;
  color: #111827;
  font-size: 14px;
  font-weight: 1000;
}

.custom-choice-total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 2px solid #111827;
  font-size: 18px;
  font-weight: 1000;
}

.custom-choice-total-row strong {
  font-size: 22px;
}

.custom-choice-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 16px;
}

.custom-choice-cart-btn,
.custom-choice-buy-btn {
  height: 48px;
  border-radius: 15px;
  font-size: 14px;
  font-weight: 1000;
  cursor: pointer;
}

.custom-choice-cart-btn {
  background: #f8fafc;
  color: #111827;
  border: 1px solid #d1d5db;
}

.custom-choice-buy-btn {
  background: #111827;
  color: #ffffff;
  border: 1px solid #111827;
}

.custom-choice-note {
  margin-top: 10px;
  color: #64748b;
  font-size: 12px;
  font-weight: 800;
}

@media (max-width: 600px) {
  .custom-choice-analysis {
    padding: 14px;
    border-radius: 16px;
  }

  .custom-choice-analysis-title {
    font-size: 18px;
  }

  .custom-choice-analysis-line {
    grid-template-columns: 1fr;
    gap: 5px;
    padding: 10px;
  }

  .custom-choice-analysis-extras-grid {
    grid-template-columns: 1fr;
  }

  .custom-choice-analysis-extras-grid .custom-choice-analysis-line {
    min-height: 0;
  }

  .custom-choice-analysis-line strong {
    white-space: normal;
  }

  .custom-choice-modal {
    padding: 10px;
  }

  .custom-choice-box {
    max-height: 86vh;
    padding: 18px;
    border-radius: 20px;
  }

  .custom-choice-title {
    font-size: 22px;
  }

  .custom-choice-set-row,
  .custom-choice-extra-row {
    grid-template-columns: 1fr;
  }

  .custom-choice-extra-control {
    justify-content: space-between;
  }

  .custom-choice-qty-input {
    width: 120px;
  }

  .custom-choice-actions {
    grid-template-columns: 1fr;
  }
}

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

.product-action-buy,
.product-action-cart {
  margin: 0;
  padding: 14px 12px;
  border-radius: 15px;
  font-size: 15px;
  font-weight: 900;
  cursor: pointer;
}

.product-action-buy {
  background: linear-gradient(
    135deg,
    #8a5600,
    #d99a00,
    #ffd700,
    #fff1a6,
    #c88400
  );
  color: #2d1700;
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: 0 0 16px rgba(255, 215, 0, 0.28);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.45);
}

.product-action-cart {
  background: linear-gradient(135deg, #252b33, #343c47, #222831);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.product-benefits {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-top: 4px;
}

.product-benefit {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 11px 12px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

.product-section {
  margin-top: 18px;
  background: rgba(13, 20, 34, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 18px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
}

.product-section h2 {
  margin: 0 0 12px;
  font-size: 22px;
  color: white;
}

.product-description-full {
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.6;
  font-size: 15px;
  white-space: pre-line;
}

.product-spec-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 14px;
}

.product-spec-table tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.product-spec-table tr:last-child {
  border-bottom: none;
}

.product-spec-table td {
  padding: 12px;
  font-size: 14px;
  vertical-align: top;
}

.product-spec-table td:first-child {
  width: 38%;
  color: rgba(255, 255, 255, 0.58);
  font-weight: 900;
}

.product-spec-table td:last-child {
  color: white;
  font-weight: 800;
}

.product-similar-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.product-similar-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 9px;
  cursor: pointer;
  transition: 0.25s;
}

.product-similar-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 215, 0, 0.42);
}

.product-similar-card img {
  width: 100%;
  height: 110px;
  object-fit: contain;
  background: #101827;
  border-radius: 10px;
  margin-bottom: 8px;
}

.product-similar-name {
  font-size: 12px;
  line-height: 1.2;
  font-weight: 900;
  min-height: 30px;
  color: white;
  overflow: hidden;
}

.product-similar-price {
  color: #ffd700;
  font-size: 13px;
  font-weight: 900;
  margin-top: 5px;
}

.product-video-thumb {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #111827;
  color: #ffd700;
  font-size: 22px;
  font-weight: 900;
}

@media (max-width: 800px) {
  .product-page {
    padding: 10px;
  }

  .product-main-card {
    grid-template-columns: 1fr;
    padding: 12px;
    border-radius: 16px;
  }

  .product-gallery-main {
    height: 320px;
  }

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

  .product-thumb {
    height: 62px;
  }

  .product-page-title {
    font-size: 22px;
  }

  .product-page-price {
    font-size: 28px;
  }

  .product-actions {
    grid-template-columns: 1fr;
  }

  .product-section {
    padding: 14px;
    border-radius: 16px;
  }

  .product-spec-table td {
    display: block;
    width: 100% !important;
    padding: 8px 0;
  }

  .product-spec-table tr {
    display: block;
    padding: 9px 0;
  }

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

  .product-similar-card img {
    height: 96px;
  }
}

.main-products-area > .sort-line {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 12px 14px 0;
  background: transparent !important;
  position: relative;
  z-index: 40;
}

.main-products-area .sort-wrap {
  margin-left: auto;
  position: relative;
}

.main-products-area .sort-main-btn {
  margin: 0;
  height: 42px;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 13px;
  background: linear-gradient(135deg, #252b33, #343c47, #222831);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
  box-shadow: 0 5px 14px rgba(0, 0, 0, 0.28);
}

.main-products-area .sort-menu {
  top: 50px;
  right: 0;
  left: auto;
  transform: none;
}

@media (max-width: 600px) {
  .mobile-catalog-controls {
    grid-template-columns: repeat(3, 1fr);
    gap: 7px;
    padding: 9px 9px 0;
  }

  .mobile-catalog-btn {
    width: 100%;
    height: 42px;
    min-height: 42px;
    margin: 0;
    padding: 0 6px;
    border-radius: 13px;
    font-size: 12px;
    box-sizing: border-box;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  #mobileFilterBtn {
    background: linear-gradient(135deg, #252b33, #343c47, #222831);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.18);
  }

  .side-cats.easyfix-mobile-main-categories .easyfix-all-categories-list {
    display: none;
  }

  .side-cats.easyfix-mobile-subcategories .easyfix-main-category-btn {
    display: none;
  }

  .side-cats.easyfix-mobile-subcategories .easyfix-all-categories-title {
    display: none;
  }

  .side-cats.easyfix-mobile-subcategories
    .easyfix-category-with-subs:not(.easyfix-customorder-subcategory-group)
    > .cat-icon,
  .side-cats.easyfix-mobile-subcategories
    .easyfix-category-with-subs:not(.easyfix-customorder-subcategory-group)
    > .cat-label {
    display: none;
  }

  .side-cats.easyfix-mobile-subcategories
    .easyfix-category-with-subs:not(:has(.easyfix-admin-subcategories)) {
    display: none;
  }

  .product-page {
    padding: 8px 8px 14px !important;
  }

  .product-back-btn {
    width: 100%;
    height: 42px;
    margin: 0 0 10px;
    padding: 0 12px;
    font-size: 13px;
    border-radius: 13px;
  }

  .product-breadcrumbs {
    font-size: 11px;
    line-height: 1.25;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 7px;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .product-breadcrumbs::-webkit-scrollbar {
    display: none;
  }

  .product-breadcrumbs > * {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .product-main-card {
    padding: 10px !important;
    gap: 12px !important;
    border-radius: 16px !important;
  }

  .product-gallery-main {
    width: 100%;
    aspect-ratio: 1 / 1;
    height: auto;
    border-radius: 14px;
  }

  .product-gallery-arrow {
    display: none;
  }

  .product-gallery-viewport {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    touch-action: pan-x pan-y;
  }

  .product-gallery-viewport::-webkit-scrollbar {
    display: none;
  }

  .product-gallery-track {
    transform: none;
    transition: none;
  }

  .product-gallery-slide {
    scroll-snap-align: center;
    scroll-snap-stop: always;
  }

  .product-thumbs {
    gap: 5px;
    margin-top: 10px;
  }

  .product-thumb-dot {
    width: 8px;
    height: 8px;
  }

  .product-gallery-count {
    font-size: 8px;
  }

  .product-info-panel {
    gap: 10px !important;
  }

  .product-page-title {
    font-size: 20px !important;
    line-height: 1.18 !important;
  }

  .product-code {
    font-size: 11px !important;
  }

  .product-stock {
    font-size: 12px !important;
    padding: 6px 9px !important;
  }

  .product-min-order {
    font-size: 12px;
    padding: 7px 11px;
  }

  .product-page-price {
    font-size: 27px !important;
  }

  .product-short-desc {
    font-size: 14px !important;
    line-height: 1.45 !important;
  }

  .product-actions {
    grid-template-columns: 1fr !important;
    gap: 8px !important;
  }

  .product-action-buy,
  .product-action-cart {
    width: 100% !important;
    min-height: 44px !important;
    padding: 0 12px !important;
    font-size: 14px !important;
    border-radius: 14px !important;
  }

  .product-benefits {
    gap: 7px !important;
  }

  .product-benefit {
    font-size: 12px !important;
    padding: 10px !important;
    border-radius: 13px !important;
  }

  .product-section {
    margin-top: 12px !important;
    padding: 12px !important;
    border-radius: 16px !important;
  }

  .product-section h2 {
    font-size: 18px !important;
    margin-bottom: 9px !important;
  }

  .product-description-full {
    font-size: 13.5px !important;
    line-height: 1.5 !important;
  }

  .product-spec-table td {
    font-size: 13px !important;
  }

  .product-similar-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px !important;
  }
}

.sort-line {
  display: none !important;
}

.side-filter-wrap {
  position: relative !important;
  width: 100% !important;
  z-index: 9100 !important;
  overflow: visible !important;
}

.side-filter-btn {
  width: 100%;
  margin: 0;
  padding: 12px;
  border-radius: 16px;
  border: 1px solid var(--ef-border, #e7eaf0);
  background: #fff;
  color: var(--ef-text, #101828);
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
  text-align: center;
  box-shadow: 0 10px 24px rgba(16, 24, 40, 0.07);
}

.side-filter-menu {
  display: none;
  position: absolute !important;
  top: 48px;
  left: 0;
  width: 100%;
  padding: 8px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--ef-border, #e7eaf0);
  box-shadow: 0 18px 40px rgba(16, 24, 40, 0.16);
  box-sizing: border-box;
  z-index: 99999 !important;
}

.side-filter-wrap.open .side-filter-menu {
  display: grid;
  gap: 7px;
}

.side-filter-menu .sort-option {
  width: 100%;
  margin: 0;
  padding: 10px 11px;
  border-radius: 12px;
  border: 1px solid var(--ef-border, #e7eaf0);
  background: #fff;
  color: var(--ef-text, #101828);
  font-size: 12px;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

.side-filter-menu .sort-option:hover,
.side-filter-menu .sort-option.active {
  background: #f8fafc;
  color: var(--ef-text, #101828);
  border-color: #d6dae2;
  text-shadow: none;
}

@media (max-width: 600px) {
  .side-filter-wrap {
    display: none !important;
  }
}

.cartbox {
  display: none;
  position: fixed !important;
  left: 50% !important;
  top: 50% !important;
  right: auto !important;
  transform: translate(-50%, -50%);
  width: min(920px, calc(100vw - 24px)) !important;
  max-width: 920px !important;
  height: auto !important;
  max-height: 88vh !important;
  background: #ffffff !important;
  color: #111 !important;
  border-radius: 18px !important;
  z-index: 5000;
  overflow: hidden !important;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.52);
  padding-bottom: 0 !important;
}

.cart-header {
  background: #fff !important;
  color: #111 !important;
  padding: 18px 22px !important;
  border-bottom: 1px solid #e6e6e6 !important;
  font-size: 18px !important;
}

.cart-header h2 {
  margin: 0;
  font-size: 26px;
  font-weight: 900;
}

.close-cart {
  font-size: 26px !important;
  color: #555;
}

.cart-scroll-area {
  max-height: calc(88vh - 76px);
  overflow: auto;
  padding: 18px;
  box-sizing: border-box;
}

.cart-main-block {
  border: 1px solid #e4e4e4;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
}

.cart-product-row {
  display: grid;
  grid-template-columns: 78px 1fr auto auto auto;
  gap: 16px;
  align-items: center;
  padding: 16px;
  border-bottom: 1px solid #eeeeee;
}

.cart-product-row:last-child {
  border-bottom: none;
}

.cart-product-img {
  width: 78px;
  height: 78px;
  object-fit: contain;
  border-radius: 10px;
  background: #f5f5f5;
  border: 1px solid #e5e5e5;
}

.cart-product-name {
  font-size: 15px;
  font-weight: 800;
  line-height: 1.25;
  color: #111;
}

.cart-product-seller {
  font-size: 12px;
  color: #666;
  margin-top: 6px;
  font-weight: 700;
}

.cart-qty-control {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cart-qty-btn {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: #fff;
  color: #1e6bb8;
  border: 1px solid #d7d7d7;
  font-size: 24px;
  line-height: 1;
  margin: 0;
  padding: 0;
  font-weight: 400;
}

.cart-qty-btn.is-disabled,
.cart-qty-btn:disabled {
  background: #f3f4f6;
  color: #9ca3af;
  border-color: #e5e7eb;
  cursor: not-allowed;
  opacity: 1;
}

.cart-qty-number {
  min-width: 44px;
  height: 38px;
  border: 1px solid #d7d7d7;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  background: #fff;
}

.cart-product-price {
  min-width: 120px;
  text-align: right;
  font-size: 20px;
  font-weight: 900;
  color: #111;
}

.cart-remove-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #fff;
  color: #777;
  font-size: 22px;
  margin: 0;
  padding: 0;
}

.cart-remove-btn:hover {
  background: #f2f2f2;
  color: #b00000;
}

.cart-bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin: 22px 0;
}

.cart-continue-btn {
  margin: 0;
  padding: 13px 18px;
  border-radius: 12px;
  background: #f4f4f4;
  color: #1e6bb8;
  border: 1px solid #e1e1e1;
  font-size: 15px;
  font-weight: 900;
}

.cart-checkout-box {
  display: flex;
  align-items: center;
  gap: 18px;
  background: #eafff1;
  border: 1px solid #14a44d;
  border-radius: 13px;
  padding: 16px 18px;
}

.cart-total-big {
  font-size: 32px;
  font-weight: 900;
  color: #111;
  white-space: nowrap;
}

.cart-checkout-new {
  margin: 0;
  padding: 15px 20px;
  border-radius: 12px;
  background: #12a64a;
  color: #fff;
  font-size: 17px;
  font-weight: 900;
}

.cart-recommend-title {
  font-size: 20px;
  font-weight: 900;
  margin: 8px 0 14px;
  color: #111;
}

.cart-recommend-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.cart-recommend-card {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 10px;
  align-items: center;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 14px;
  padding: 10px;
  cursor: pointer;
}

.cart-recommend-card:hover {
  transform: none;
  box-shadow: none;
}

.cart-recommend-card img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  border-radius: 10px;
  background: #f5f5f5;
}

.cart-recommend-name {
  font-size: 12px;
  line-height: 1.2;
  font-weight: 900;
  color: #111;
  max-height: 45px;
  overflow: hidden;
}

.cart-recommend-price {
  font-size: 14px;
  font-weight: 900;
  color: #111;
  margin-top: 5px;
}

.cart-recommend-add {
  margin-top: 7px;
  padding: 7px 9px;
  border-radius: 10px;
  background: #12a64a;
  color: white;
  font-size: 12px;
  font-weight: 900;
}

.empty-cart {
  margin: 0 !important;
  border-radius: 14px !important;
  border: 1px solid #e6e6e6;
}

.cart-footer {
  display: none !important;
}

@media (max-width: 700px) {
  .cartbox {
    width: 94vw !important;
    max-height: 84vh !important;
    border-radius: 18px !important;
  }

  .cart-scroll-area {
    max-height: calc(84vh - 70px);
    padding: 12px;
  }

  .cart-header {
    padding: 15px 16px !important;
  }

  .cart-header h2 {
    font-size: 22px;
  }

  .cart-product-row {
    grid-template-columns: 64px 1fr auto;
    gap: 10px;
    padding: 12px;
  }

  .cart-product-img {
    width: 64px;
    height: 64px;
  }

  .cart-product-name {
    font-size: 13px;
  }

  .cart-qty-control {
    grid-column: 2/4;
    justify-content: flex-start;
  }

  .cart-product-price {
    min-width: auto;
    font-size: 18px;
    grid-column: 2/3;
    text-align: left;
  }

  .cart-remove-btn {
    grid-column: 3/4;
    grid-row: 1/2;
  }

  .cart-bottom-row {
    display: block;
    margin: 16px 0;
  }

  .cart-continue-btn {
    width: 100%;
    margin-bottom: 10px;
  }

  .cart-checkout-box {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 14px;
  }

  .cart-total-big {
    font-size: 28px;
    text-align: center;
  }

  .cart-checkout-new {
    width: 100%;
  }

  .cart-recommend-grid {
    grid-template-columns: 1fr;
  }

  .cart-recommend-card {
    grid-template-columns: 62px 1fr;
  }

  .cart-recommend-card img {
    width: 62px;
    height: 62px;
  }
}

.currency-box {
  position: relative;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.currency-current {
  background: linear-gradient(
    135deg,
    #8a5600,
    #d99a00,
    #ffd700,
    #fff1a6,
    #c88400
  );
  color: #2d1700;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  padding: 7px 12px;
  font-weight: 900;
  font-size: 12px;
  cursor: pointer;
  margin: 0;
  box-shadow: 0 0 14px rgba(255, 215, 0, 0.34);
  min-width: 68px;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.45);
}

.currency-menu {
  display: none;
  position: absolute;
  top: 38px;
  left: 0;
  background: rgba(22, 14, 2, 0.96);
  border: 1px solid rgba(255, 215, 0, 0.28);
  border-radius: 14px;
  padding: 6px;
  z-index: 9999;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
  min-width: 96px;
}

.currency-box.open .currency-menu {
  display: block;
}

.currency-option {
  display: block;
  width: 100%;
  border: none;
  background: transparent;
  color: white;
  padding: 8px 10px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
  margin: 0;
}

.currency-option:hover,
.currency-option.active {
  background: linear-gradient(
    135deg,
    #8a5600,
    #d99a00,
    #ffd700,
    #fff1a6,
    #c88400
  );
  color: #2d1700;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.45);
}

.mobile-footer-lang {
  display: block !important;
  grid-column: 1/-1;
  margin-top: 6px;
  padding: 12px;
  border-radius: 16px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.07),
    rgba(255, 215, 0, 0.1),
    rgba(30, 144, 255, 0.08)
  );
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 8px 22px rgba(0, 0, 0, 0.24),
    0 0 16px rgba(255, 215, 0, 0.12);
  position: relative;
  overflow: hidden;
}

.mobile-footer-lang-title {
  position: relative;
  z-index: 1;
  font-size: 12px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 8px;
  text-align: center;
}

.mobile-footer-lang-buttons {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  max-width: 420px;
  margin: 0 auto;
}

.mobile-lang-btn {
  margin: 0;
  padding: 9px 4px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(135deg, #252b33, #343c47, #222831);
  color: white;
  font-size: 11px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.mobile-lang-btn.active {
  background: linear-gradient(
    135deg,
    #8a5600,
    #d99a00,
    #ffd700,
    #fff1a6,
    #c88400
  );
  color: #2d1700;
  border: 1px solid rgba(255, 255, 255, 0.55);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.45);
}

@media (max-width: 600px) {
  .currency-box {
    display: flex !important;
  }

  .currency-current {
    font-size: 10px;
    padding: 6px 7px;
    min-width: 55px;
  }

  .currency-menu {
    top: 34px;
    left: 0;
  }
}

@media (min-width: 601px) {
  .side-cats {
    width: 270px !important;
  }
}

.side-cats {
  gap: 12px;
  align-items: stretch;
}

.cat {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 11px;
  text-align: left;
  min-height: 58px;
  padding: 10px 12px;
  border-radius: 16px;
  background: #ffffff;
  color: var(--ef-text);
  border: 1px solid var(--ef-line);
  box-shadow: 0 10px 24px rgba(16, 24, 40, 0.07);
  text-shadow: none;
  overflow: hidden;
  box-sizing: border-box;
  transition:
    background 0.14s ease,
    color 0.14s ease,
    border-color 0.14s ease,
    box-shadow 0.14s ease;
}

.cat-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  color: #ffd700;
  background: rgba(255, 215, 0, 0.09);
  border: 1px solid rgba(255, 215, 0, 0.24);
  box-shadow: 0 0 13px rgba(255, 215, 0, 0.1);
  transition: 0.25s ease;
}

.cat-icon svg {
  width: 22px;
  height: 22px;
  display: block;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cat-label {
  flex: 1;
  min-width: 0;
  font-size: 13px;
  line-height: 1.18;
  font-weight: 900;
  color: inherit;
}

.oneclick-emoji {
  display: none !important;
}

.side-filter-wrap {
  margin-bottom: 2px;
}

.side-filter-btn {
  min-height: 48px;
  border-radius: 15px !important;
}

@media (max-width: 600px) {
  .cat-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
  }

  .cat-label {
    font-size: 13px;
  }
}

.logo-letter.blue {
  color: #b45cff !important;
  text-shadow:
    0 0 8px rgba(180, 92, 255, 0.55),
    0 0 16px rgba(130, 70, 255, 0.35) !important;
}

.footer-logo span:last-child {
  color: #b45cff !important;
  text-shadow:
    0 0 8px rgba(180, 92, 255, 0.55),
    0 0 16px rgba(130, 70, 255, 0.35) !important;
}

:root {
  --ef-gold-1: #5a3300;
  --ef-gold-2: #9b6200;
  --ef-gold-3: #e6a600;
  --ef-gold-4: #ffd95a;
  --ef-gold-5: #fff3ae;
  --ef-gold-6: #c78200;
  --ef-gold-text: #261300;
}

:where(
  .cooperation-btn,
  .account-btn,
  .currency-current,
  .lang-current,
  .buy,
  .big-buy,
  .top-buy-btn,
  .promo-next-btn,
  .product-action-buy,
  .checkout-btn,
  .order-pay-btn,
  .account-action:not(.logout-btn),
  .verify-confirm,
  .oneclick-continue-btn,
  .page-btn.active,
  .account-tab.active,
  .account-menu-btn.active,
  .mobile-lang-btn.active,
  .info-close,
  .account-close,
  .oneclick-warning-close,
  .close,
  .order-close,
  .country-picker-close
) {
  position: relative !important;
  overflow: hidden !important;
  isolation: isolate !important;

  background:
    radial-gradient(
      circle at 18% 0%,
      rgba(255, 255, 255, 0.85) 0 1px,
      transparent 27%
    ),
    linear-gradient(
      135deg,
      var(--ef-gold-1) 0%,
      var(--ef-gold-2) 16%,
      var(--ef-gold-3) 34%,
      var(--ef-gold-4) 49%,
      var(--ef-gold-5) 61%,
      var(--ef-gold-4) 70%,
      var(--ef-gold-6) 86%,
      var(--ef-gold-2) 100%
    ) !important;

  color: var(--ef-gold-text) !important;
  border: 1px solid rgba(255, 240, 170, 0.86) !important;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.62) !important;

  box-shadow:
    0 7px 18px rgba(0, 0, 0, 0.35),
    0 0 16px rgba(255, 211, 77, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    inset 0 -2px 0 rgba(80, 42, 0, 0.34) !important;

  transition:
    transform 0.22s ease,
    filter 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease !important;
}

:where(
  .cooperation-btn,
  .account-btn,
  .currency-current,
  .lang-current,
  .buy,
  .big-buy,
  .top-buy-btn,
  .promo-next-btn,
  .product-action-buy,
  .checkout-btn,
  .order-pay-btn,
  .account-action:not(.logout-btn),
  .verify-confirm,
  .oneclick-continue-btn,
  .page-btn.active,
  .account-tab.active,
  .account-menu-btn.active,
  .mobile-lang-btn.active,
  .info-close,
  .account-close,
  .oneclick-warning-close,
  .close,
  .order-close,
  .country-picker-close
)::after {
  content: "";
  position: absolute;
  top: -90%;
  left: -95%;
  width: 48%;
  height: 270%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.08) 34%,
    rgba(255, 255, 255, 0.58) 50%,
    rgba(255, 255, 255, 0.08) 66%,
    transparent 100%
  );
  transform: rotate(24deg);
  opacity: 0;
  pointer-events: none;
  z-index: 1;
}

:where(
  .cooperation-btn,
  .account-btn,
  .currency-current,
  .lang-current,
  .buy,
  .big-buy,
  .top-buy-btn,
  .promo-next-btn,
  .product-action-buy,
  .checkout-btn,
  .order-pay-btn,
  .account-action:not(.logout-btn),
  .verify-confirm,
  .oneclick-continue-btn,
  .page-btn.active,
  .account-tab.active,
  .account-menu-btn.active,
  .mobile-lang-btn.active,
  .info-close,
  .account-close,
  .oneclick-warning-close,
  .close,
  .order-close,
  .country-picker-close
):hover {
  transform: translateY(-2px) scale(1.025) !important;
  filter: brightness(1.08) saturate(1.12) !important;
  border-color: rgba(255, 255, 255, 0.96) !important;

  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.42),
    0 0 24px rgba(255, 211, 77, 0.42),
    0 0 42px rgba(255, 183, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.78),
    inset 0 -2px 0 rgba(80, 42, 0, 0.38) !important;
}

:where(
    .cooperation-btn,
    .account-btn,
    .currency-current,
    .lang-current,
    .buy,
    .big-buy,
    .top-buy-btn,
    .promo-next-btn,
    .product-action-buy,
    .checkout-btn,
    .order-pay-btn,
    .account-action:not(.logout-btn),
    .verify-confirm,
    .oneclick-continue-btn,
    .page-btn.active,
    .account-tab.active,
    .account-menu-btn.active,
    .mobile-lang-btn.active,
    .info-close,
    .account-close,
    .oneclick-warning-close,
    .close,
    .order-close,
    .country-picker-close
  ):hover::after {
  animation: easyfixGoldButtonShine 0.72s ease forwards;
}

:where(
  .cooperation-btn,
  .account-btn,
  .currency-current,
  .lang-current,
  .buy,
  .big-buy,
  .top-buy-btn,
  .promo-next-btn,
  .product-action-buy,
  .checkout-btn,
  .order-pay-btn,
  .account-action:not(.logout-btn),
  .verify-confirm,
  .oneclick-continue-btn,
  #mobileAllProductsBtn
):active {
  transform: translateY(1px) scale(0.985) !important;
  filter: brightness(0.98) !important;
}

@keyframes easyfixGoldButtonShine {
  0% {
    left: -95%;
    opacity: 0;
  }

  18% {
    opacity: 1;
  }

  100% {
    left: 135%;
    opacity: 0;
  }
}

.logout-btn {
  background: #ffeded !important;
  color: #b00000 !important;
  border: 1px solid #ffbcbc !important;
  box-shadow: none !important;
  text-shadow: none !important;
}

.top-buy-btn,
.promo-next-btn {
  background: #050505 !important;
  color: #ffd700 !important;

  border: 1px solid #ffd700 !important;
  border-radius: 9px !important;

  -webkit-text-stroke: 0 !important;
  text-stroke: 0 !important;

  text-shadow: none !important;
  box-shadow: none !important;
  filter: none !important;
}

.top-buy-btn::before,
.top-buy-btn::after,
.promo-next-btn::before,
.promo-next-btn::after {
  display: none !important;
}

.top-buy-btn:hover,
.promo-next-btn:hover {
  background: #000 !important;
  color: #ffd700 !important;
  border-color: #ffd700 !important;

  transform: scale(1.03) !important;

  text-shadow: none !important;
  box-shadow: none !important;
  filter: none !important;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

.info-box,
.account-box,
.oneclick-warning-box,
.modal-content,
.order-box,
.country-picker-box {
  position: relative !important;
}

.info-close,
.account-close,
.oneclick-warning-close,
.close,
.order-close,
.country-picker-close {
  position: absolute !important;
  top: 10px !important;
  right: 10px !important;
  left: auto !important;
  bottom: auto !important;

  width: 32px !important;
  height: 32px !important;
  min-width: 32px !important;
  min-height: 32px !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  margin: 0 !important;
  padding: 0 !important;
  border-radius: 50% !important;
  z-index: 50 !important;
  line-height: 1 !important;
  box-sizing: border-box !important;
}

.info-close::after,
.account-close::after,
.oneclick-warning-close::after,
.close::after,
.order-close::after,
.country-picker-close::after {
  display: none !important;
  content: none !important;
  animation: none !important;
}

.close-cart {
  position: static !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 !important;
  padding: 0 !important;
  line-height: 1 !important;
  cursor: pointer !important;
}

@media (max-width: 600px) {
  .left-head {
    gap: 2px !important;
    min-width: 0 !important;
  }

  .logo {
    font-size: 17px !important;
  }

  .currency-box,
  .lang-box {
    flex-shrink: 1 !important;
    margin-left: 0 !important;
    transform: scale(0.88);
    transform-origin: left center;
  }

  .currency-current,
  .lang-current {
    min-width: 42px !important;
    height: 26px !important;
    padding: 4px 5px !important;
    font-size: 8px !important;
    line-height: 1 !important;
    border-radius: 999px !important;
  }

  .currency-menu,
  .lang-menu {
    top: 30px !important;
    min-width: 82px !important;
  }

  .mobile-lang-btn {
    padding: 7px 3px !important;
    font-size: 10px !important;
  }
}

@media (max-width: 370px) {
  .logo {
    font-size: 16px !important;
  }

  .currency-box,
  .lang-box {
    transform: scale(0.82);
  }

  .currency-current,
  .lang-current {
    min-width: 39px !important;
    padding: 4px 3px !important;
    font-size: 7.4px !important;
  }
}

.promo-mobile-arrows {
  display: none;
}

@media (max-width: 600px) {
  .promo-mobile-arrows {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 3px 0 7px;
    background: linear-gradient(135deg, #0b1220, #101a2e);
    color: rgba(255, 255, 255, 0.72);
    font-size: 10px;
    font-weight: 900;
    user-select: none;
  }

  .promo-mobile-arrow-btn {
    width: 24px;
    height: 24px;
    margin: 0;
    padding: 0;
    border-radius: 999px;
    border: 1px solid rgba(255, 215, 0, 0.36);
    background: rgba(255, 255, 255, 0.06);
    color: #ffd700;
    font-size: 17px;
    font-weight: 900;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.24);
    animation: easyfixPromoArrowHint 1.7s ease-in-out infinite;
  }

  .promo-mobile-arrow-btn.right {
    animation-delay: 0.22s;
  }

  .promo-mobile-arrow-text {
    opacity: 0.72;
    letter-spacing: 0.2px;
  }

  @keyframes easyfixPromoArrowHint {
    0% {
      transform: translateX(0);
    }
    50% {
      transform: translateX(2px);
    }
    100% {
      transform: translateX(0);
    }
  }
}

.product-actions.one-buy-only {
  grid-template-columns: 1fr !important;
}

.product-quick-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 0;
}

.product-detail-toggle {
  margin: 0;
  padding: 11px 12px;
  border-radius: 14px;
  background:
    radial-gradient(
      circle at 18% 0%,
      rgba(255, 255, 255, 0.7) 0 1px,
      transparent 28%
    ),
    linear-gradient(
      135deg,
      #d8b4fe 0%,
      #c084fc 22%,
      #a855f7 48%,
      #8b35ff 70%,
      #6d28d9 100%
    );
  color: white;
  border: 1px solid rgba(232, 213, 255, 0.86);
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
  box-shadow:
    0 8px 20px rgba(124, 58, 237, 0.28),
    0 0 18px rgba(180, 92, 255, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.48),
    inset 0 -2px 0 rgba(48, 16, 92, 0.3);
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.26);
}

.product-detail-toggle.active {
  background:
    radial-gradient(
      circle at 18% 0%,
      rgba(255, 255, 255, 0.78) 0 1px,
      transparent 28%
    ),
    linear-gradient(
      135deg,
      #eadcff 0%,
      #d8b4fe 20%,
      #b45cff 48%,
      #8b35ff 72%,
      #5b21b6 100%
    );
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.75);
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.28);
}

.product-detail-panel {
  display: none;
  grid-column: 1/-1;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 15px;
  padding: 12px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  line-height: 1.48;
  white-space: pre-line;
  max-height: 260px;
  overflow: auto;
}

.product-detail-panel.open {
  display: block;
}

.product-detail-panel .product-spec-table td {
  padding: 8px;
  font-size: 13px;
}

@media (max-width: 600px) {
  .product-quick-details {
    gap: 7px;
  }

  .product-detail-toggle {
    padding: 10px 8px;
    font-size: 12px;
    border-radius: 13px;
  }

  .product-detail-panel {
    font-size: 12.5px;
    line-height: 1.45;
    padding: 10px;
    border-radius: 13px;
    max-height: 220px;
  }
}

.product-section:has(#productDescTitle),
.product-section:has(#productSpecsTitle) {
  display: none !important;
}

@media (max-width: 600px) {
  header {
    grid-template-columns: auto auto minmax(0, 1fr) auto !important;
    grid-template-areas: "mobile-logo mobile-currency mobile-search mobile-actions" !important;
    gap: 4px !important;
    padding: 7px 7px !important;
    align-items: center !important;
  }

  header .left-head {
    display: contents !important;
  }

  header .logo,
  header #logoAnim {
    grid-area: mobile-logo !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    width: auto !important;
    min-width: 64px !important;
    flex-shrink: 0 !important;
    overflow: visible !important;
    white-space: nowrap !important;
    font-size: 18px !important;
    line-height: 1 !important;
    position: relative !important;
    z-index: 25 !important;
  }

  header .logo-letter {
    display: inline-block !important;
    opacity: 0;
    transform: translateY(-10px) scale(0.92);
    animation: logoSmooth 7s ease-in-out infinite !important;
    will-change: opacity, transform !important;
  }

  header .logo-letter:nth-child(1) {
    animation-delay: 0s !important;
  }
  header .logo-letter:nth-child(2) {
    animation-delay: 0.13s !important;
  }
  header .logo-letter:nth-child(3) {
    animation-delay: 0.26s !important;
  }
  header .logo-letter:nth-child(4) {
    animation-delay: 0.39s !important;
  }
  header .logo-letter:nth-child(5) {
    animation-delay: 0.52s !important;
  }
  header .logo-letter:nth-child(6) {
    animation-delay: 0.65s !important;
  }
  header .logo-letter:nth-child(7) {
    animation-delay: 0.78s !important;
  }

  header .logo-letter.white {
    color: #ffffff !important;
  }

  header .logo-letter.blue {
    color: #b45cff !important;
    text-shadow:
      0 0 8px rgba(180, 92, 255, 0.55),
      0 0 16px rgba(130, 70, 255, 0.35) !important;
  }

  header .currency-box {
    grid-area: mobile-currency !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
    transform: none !important;
    position: relative !important;
    z-index: 24 !important;
  }

  header .currency-current {
    min-width: 45px !important;
    height: 27px !important;
    padding: 4px 6px !important;
    font-size: 8.5px !important;
    line-height: 1 !important;
    border-radius: 999px !important;
    white-space: nowrap !important;
  }

  header .currency-menu {
    top: 32px !important;
    left: 0 !important;
    min-width: 86px !important;
  }

  header .search-box {
    grid-area: mobile-search !important;
    width: 100% !important;
    min-width: 0 !important;
    display: flex !important;
    gap: 0 !important;
    justify-self: stretch !important;
  }

  header .search {
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
    height: 32px !important;
    padding: 6px 8px !important;
    font-size: 12px !important;
    box-sizing: border-box !important;
  }

  header .right-head {
    grid-area: mobile-actions !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 5px !important;
    width: auto !important;
    min-width: 0 !important;
    position: relative !important;
    z-index: 24 !important;
  }
}

@media (max-width: 370px) {
  header {
    grid-template-columns: auto auto minmax(0, 1fr) auto !important;
    gap: 3px !important;
    padding: 6px 5px !important;
  }

  header .logo,
  header #logoAnim {
    font-size: 16px !important;
    min-width: 58px !important;
  }

  header .currency-current {
    min-width: 41px !important;
    height: 25px !important;
    padding: 4px 4px !important;
    font-size: 7.5px !important;
  }

  header .search {
    font-size: 11px !important;
    padding: 6px 7px !important;
  }
}

.easyfix-seller-footer {
  display: block !important;
  padding-top: 16px !important;
  border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.easyfix-seller-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  line-height: 1.35;
  text-align: center;
}

.easyfix-seller-line span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.easyfix-seller-line strong {
  color: rgba(255, 255, 255, 0.88);
}

.easyfix-seller-line a {
  color: rgba(255, 255, 255, 0.76);
  text-decoration: none;
  font-weight: 900;
}

.easyfix-seller-line a:hover {
  color: #ffd700;
  text-decoration: underline;
}

.easyfix-footer-rights {
  margin-top: 10px;
  text-align: center;
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
  font-weight: 700;
}

@media (max-width: 600px) {
  .easyfix-seller-footer {
    padding-top: 12px !important;
  }

  .easyfix-seller-line {
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
    font-size: 11px;
    padding: 12px;
    text-align: left;
  }

  .easyfix-seller-line span {
    display: block;
  }

  .easyfix-footer-rights {
    font-size: 11px;
    text-align: center;
  }
}

header {
  overflow: visible !important;
  z-index: 999999 !important;
  position: sticky !important;
}

header > * {
  position: relative !important;
  z-index: 999999 !important;
}

.currency-box,
.contacts-box,
.lang-box {
  position: relative !important;
  z-index: 1000000 !important;
}

.currency-menu,
.contacts-menu,
.lang-menu {
  z-index: 1000001 !important;
  position: absolute !important;
}

.top-line {
  position: relative !important;
  z-index: 1 !important;
}

.top-products,
.top-product-card,
.promo-next-preview {
  position: relative !important;
  z-index: 1 !important;
}

@media (max-width: 600px) {
  header {
    overflow: visible !important;
    z-index: 999999 !important;
  }

  .currency-menu,
  .contacts-menu,
  .lang-menu {
    z-index: 1000001 !important;
  }

  .top-line {
    z-index: 1 !important;
  }
}

.oneclick-warning-box {
  display: flex !important;
  flex-direction: column !important;
}

.oneclick-warning-title {
  order: 1 !important;
}

.oneclick-warning-list {
  order: 2 !important;
  margin: 4px 0 14px !important;
  padding: 14px 15px !important;
  background: #f3f3f3 !important;
  border-radius: 16px !important;
  color: #222 !important;
  font-size: 15px !important;
  line-height: 1.45 !important;
  font-weight: 700 !important;
}

.oneclick-warning-text {
  order: 3 !important;
  margin: 0 0 14px !important;
  padding: 0 4px !important;
  background: transparent !important;
  color: #666 !important;
  font-size: 11.5px !important;
  line-height: 1.38 !important;
  font-weight: 600 !important;
}

.oneclick-warning-actions {
  order: 4 !important;
}

@media (max-width: 600px) {
  .oneclick-warning-title {
    font-size: 21px !important;
    margin-bottom: 10px !important;
  }

  .oneclick-warning-list {
    font-size: 14px !important;
    line-height: 1.42 !important;
    padding: 13px !important;
  }

  .oneclick-warning-text {
    font-size: 10.8px !important;
    line-height: 1.34 !important;
  }
}

header {
  animation: none !important;
  background: #101010 !important;
  overflow: visible !important;
  isolation: isolate !important;
  z-index: 999999 !important;
}

header::before {
  content: "";
  position: absolute;
  top: 0;
  left: -70%;
  width: 170%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(
    270deg,
    #101010,
    #1a1a1a,
    #242424,
    #1a1a1a,
    #101010
  );
  animation: easyfixHeaderMoveGPU 8s linear infinite;
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

header > * {
  position: relative;
  z-index: 1;
}

@keyframes easyfixHeaderMoveGPU {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(42%, 0, 0);
  }
}

.card::after {
  content: none;
  display: none;
  animation: none;
}

.products,
.product-similar-grid,
.cart-scroll-area {
  contain: layout paint;
}

.card img,
.top-product-img,
.promo-modern-img,
.product-gallery-main img,
.product-thumb,
.cart-product-img,
.cart-recommend-card img {
  backface-visibility: hidden;
}

@media (max-width: 600px) {
  .contacts-menu,
  .mobile-menu-panel,
  .side-filter-menu,
  .sort-menu,
  .country-picker-modal,
  .info-modal,
  .account-modal,
  .modal,
  .order-modal {
    backdrop-filter: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .card img:hover {
    transform: none;
    filter: none;
    box-shadow: none;
  }

  .fly-rocket {
    animation-duration: 0.45s !important;
  }

  header::before {
    animation-duration: 14s !important;
  }

  .logo-letter {
    animation-duration: 9s !important;
  }
}

.top-product-card {
  position: relative !important;
  overflow: hidden !important;
  isolation: isolate !important;
  backface-visibility: hidden;
}

.top-product-card.promo-modern-changing > .top-product-title,
.top-product-card.promo-modern-changing > .top-product-img,
.top-product-card.promo-modern-changing > .top-product-price,
.top-product-card.promo-modern-changing > .top-buy-btn {
  animation: easyfixPromoOldModern 0.42s cubic-bezier(0.22, 0.8, 0.22, 1)
    forwards !important;
  will-change: transform, opacity;
  backface-visibility: hidden;
}

.promo-modern-preview {
  position: absolute;
  inset: 0;
  z-index: 30;
  padding: 6px;
  box-sizing: border-box;

  background:
    radial-gradient(
      circle at 12% 20%,
      rgba(255, 255, 255, 0.62) 0 1px,
      transparent 2px
    ),
    radial-gradient(
      circle at 72% 74%,
      rgba(255, 255, 255, 0.58) 0 1px,
      transparent 2px
    ),
    linear-gradient(145deg, #8a5600, #d99a00, #ffd700, #fff1a6, #c88400);

  background-size:
    100px 80px,
    130px 90px,
    100% 100%;
  border-radius: 9px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  opacity: 0;
  transform: translate3d(0, 0, 0) scale(0.92);
  filter: none;

  animation: easyfixPromoNewModern 0.56s cubic-bezier(0.16, 1, 0.3, 1) 0.05s
    forwards !important;
  will-change: transform, opacity;
  backface-visibility: hidden;
}

.promo-modern-title {
  font-size: 9.5px;
  line-height: 1.08;
  height: 30px;
  max-height: 30px;
  padding: 0 5px 0 30px;
  box-sizing: border-box;

  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-align: center;

  color: #2d1700;
  font-weight: 900;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.62);
}

.promo-modern-img {
  width: 100%;
  height: 34px;
  object-fit: cover;
  border-radius: 8px;
  background: white;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  flex-shrink: 0;
}

.promo-modern-price {
  font-size: 10.5px;
  font-weight: 900;
  color: #2d1700;
  line-height: 1;
  margin: 1px 0;
  text-align: center;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.55);
}

.promo-modern-btn {
  width: 100%;
  background: #050505 !important;
  color: #ffd700 !important;
  border: 1px solid #ffd700 !important;
  padding: 4px 5px;
  border-radius: 9px;
  font-weight: 900;
  cursor: pointer;
  font-size: 9.5px;
  text-shadow: none !important;
  box-shadow: none !important;
  margin: 0;
}

.promo-modern-btn:hover {
  background: #000 !important;
  color: #ffd700 !important;
  border-color: #ffd700 !important;
  transform: scale(1.03) !important;
  filter: none !important;
  box-shadow: none !important;
}

.top-product-card.promo-modern-enter {
  animation: easyfixPromoCardSettle 0.18s ease forwards !important;
}

.top-line.easyfix-promo-offscreen .top-product-card.promo-modern-changing *,
.top-line.easyfix-promo-offscreen .promo-modern-preview {
  animation-play-state: running !important;
}

@keyframes easyfixPromoOldModern {
  0% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }

  100% {
    opacity: 0;
    transform: translate3d(0, 0, 0) scale(0.9);
  }
}

@keyframes easyfixPromoNewModern {
  0% {
    opacity: 0;
    transform: translate3d(0, 0, 0) scale(1.06);
  }

  65% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(0.985);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes easyfixPromoCardSettle {
  0% {
    opacity: 0.96;
    transform: translate3d(0, 0, 0) scale(0.995);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@media (max-width: 600px) {
  .promo-modern-title {
    height: 31px;
    max-height: 31px;
    padding-left: 22px;
    font-size: 9.2px;
  }
}

:root {
  --ef-bg: #ffffff;
  --ef-surface: #ffffff;
  --ef-surface-soft: #f7f8fb;
  --ef-text: #101828;
  --ef-muted: #667085;
  --ef-border: #e7eaf0;
  --ef-shadow: 0 10px 30px rgba(16, 24, 40, 0.08);
  --ef-shadow-hover: 0 18px 38px rgba(16, 24, 40, 0.14);
  --ef-accent: #ff6b4a;
  --ef-accent-soft: #fff1eb;
  --ef-black: #0f1115;
}

body {
  background: var(--ef-bg) !important;
  color: var(--ef-text) !important;
}

.layout,
.main-products-area,
.products,
.side-cats,
.info-footer,
.product-page,
.product-page-inner {
  background: #fff !important;
}

header {
  background: var(--ef-black) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18) !important;
}

header::before {
  background: linear-gradient(90deg, #0f1115, #171a20, #0f1115) !important;
  animation: none !important;
}

.logo-letter.white {
  color: #fff !important;
}
.logo-letter.blue {
  color: #ffb14a !important;
}

.search {
  background: #fff !important;
  color: var(--ef-text) !important;
  border: 1px solid #d0d5dd !important;
  box-shadow: none !important;
}

.search::placeholder {
  color: #98a2b3 !important;
}

.search-btn,
.cooperation-btn,
.contacts-btn,
.currency-current,
.lang-current {
  background: #191c23 !important;
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  box-shadow: none !important;
  text-shadow: none !important;
}

.search-btn {
  background: var(--ef-accent) !important;
  border-color: var(--ef-accent) !important;
}

.slogan-head,
.delivery-text {
  background: rgba(255, 255, 255, 0.06) !important;
  color: #f5f7fa !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  box-shadow: none !important;
}

.currency-menu,
.contacts-menu,
.lang-menu,
.mobile-menu-panel,
.side-filter-menu,
.sort-menu,
.mobile-filter-menu {
  background: #fff !important;
  color: var(--ef-text) !important;
  border: 1px solid var(--ef-border) !important;
  box-shadow: var(--ef-shadow) !important;
}

.currency-option,
.lang-option,
.mobile-menu-item,
.sort-option,
.contacts-menu a {
  color: var(--ef-text) !important;
}

.contacts-menu a:hover,
.currency-option:hover,
.lang-option:hover,
.lang-option.active,
.sort-option:hover,
.sort-option.active,
.mobile-menu-item:hover {
  background: #f8fafc !important;
  color: var(--ef-text) !important;
}

.account-btn,
.cart,
.mobile-menu-btn {
  background: #171a20 !important;
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  box-shadow: none !important;
}

.top-line {
  background: linear-gradient(
    90deg,
    #fff5ef 0%,
    #ffe8dd 50%,
    #fff3ec 100%
  ) !important;
  border-top: none !important;
  border-bottom: 1px solid #ffd6c7 !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    0 8px 20px rgba(255, 107, 74, 0.08) !important;
}

.top-line::before {
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 0.48),
    rgba(255, 255, 255, 0)
  ) !important;
  opacity: 0.24 !important;
}

.top-products {
  gap: 12px !important;
}

.top-product-title,
.promo-modern-title,
.top-product-price,
.promo-modern-price {
  color: var(--ef-text) !important;
  text-shadow: none !important;
}

.top-product-img,
.promo-modern-img {
  background: #fff !important;
  border: 1px solid #eef0f4 !important;
  border-radius: 12px !important;
  box-shadow: none !important;
}

.top-buy-btn,
.promo-modern-btn {
  background: var(--ef-black) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 12px !important;
  box-shadow: none !important;
  text-shadow: none !important;
}

.layout {
  background: #fff !important;
}

.side-cats {
  padding: 16px 12px !important;
  gap: 12px !important;
}

.cat {
  background: #fff !important;
  color: var(--ef-text) !important;
  border: 1px solid var(--ef-border) !important;
  box-shadow: var(--ef-shadow) !important;
  text-shadow: none !important;
}

.subcat {
  background: #fff !important;
  color: var(--ef-text) !important;
  border: 1px solid var(--ef-border) !important;
  box-shadow: var(--ef-shadow) !important;
}

.subcat div {
  background: #fff !important;
  color: var(--ef-text) !important;
}

.subcat div:hover {
  background: #f8fafc !important;
}

.main-products-area > .sort-line,
.side-filter-wrap,
.sort-wrap {
  background: #fff !important;
}

.side-filter-btn,
.sort-main-btn {
  background: #fff !important;
  color: var(--ef-text) !important;
  border: 1px solid var(--ef-border) !important;
  box-shadow: var(--ef-shadow) !important;
}

.modal-content .buy,
.modal-content .big-buy {
  min-height: 42px !important;
  padding: 10px 12px !important;
  border-radius: 12px !important;
  font-size: 13px !important;
}

.buy,
.big-buy {
  width: 100% !important;
  background: var(--ef-black) !important;
  color: #fff !important;
  border: 1px solid var(--ef-black) !important;
  box-shadow: none !important;
  text-shadow: none !important;
}

.cartbtn {
  background: var(--ef-surface-soft) !important;
  color: var(--ef-text) !important;
  border: 1px solid var(--ef-border) !important;
}

.buy:hover,
.big-buy:hover,
.top-buy-btn:hover,
.promo-modern-btn:hover {
  background: #1a1d24 !important;
  color: #fff !important;
  border-color: #1a1d24 !important;
  box-shadow: none !important;
  filter: none !important;
  transform: none !important;
}

.cartbtn:hover {
  background: #eef2f6 !important;
}

.page-btn {
  background: #fff !important;
  color: var(--ef-text) !important;
  border: 1px solid var(--ef-border) !important;
  box-shadow: none !important;
}

.page-btn.active {
  background: var(--ef-black) !important;
  color: #fff !important;
  border-color: var(--ef-black) !important;
  text-shadow: none !important;
  box-shadow: none !important;
}

.product-main-card,
.product-section,
.product-similar-card,
.product-info-panel {
  background: #fff !important;
  color: var(--ef-text) !important;
  border: 1px solid var(--ef-border) !important;
  box-shadow: var(--ef-shadow) !important;
}

.product-page-price,
.product-similar-price {
  color: #151923 !important;
}

.product-action-buy {
  background: var(--ef-black) !important;
  color: #fff !important;
  border: 1px solid var(--ef-black) !important;
}

.product-action-cart {
  background: #fff !important;
  color: var(--ef-text) !important;
  border: 1px solid var(--ef-border) !important;
}

.info-footer {
  background: #f8fafc !important;
  border-top: 1px solid var(--ef-border) !important;
}

.footer-logo span:first-child,
.footer-logo span:last-child,
.footer-text,
.footer-bottom,
.easyfix-seller-line,
.easyfix-seller-line strong,
.easyfix-seller-line a {
  color: var(--ef-text) !important;
}

.footer-btn {
  background: #fff !important;
  color: var(--ef-text) !important;
  border: 1px solid var(--ef-border) !important;
  box-shadow: var(--ef-shadow) !important;
}

.footer-btn:hover {
  background: #fff !important;
  color: var(--ef-text) !important;
  transform: translateY(-2px) !important;
}

.logo-letter.blue {
  color: #b45cff !important;
  text-shadow:
    0 0 8px rgba(180, 92, 255, 0.55),
    0 0 16px rgba(130, 70, 255, 0.35) !important;
}

:root {
  --ef-purple: #b45cff;
  --ef-purple-dark: #25113f;
  --ef-purple-soft: #f4ecff;
  --ef-purple-mid: #c7a2ff;
}

.logo-letter.blue,
header .logo-letter.blue {
  color: var(--ef-purple) !important;
  text-shadow:
    0 0 8px rgba(180, 92, 255, 0.55),
    0 0 16px rgba(130, 70, 255, 0.35) !important;
}

.footer-logo span:last-child {
  color: var(--ef-purple) !important;
  text-shadow:
    0 0 8px rgba(180, 92, 255, 0.55),
    0 0 16px rgba(130, 70, 255, 0.35) !important;
}

:root {
  --ef-page: #ffffff;
  --ef-card: #ffffff;
  --ef-soft: #f6f7f9;
  --ef-line: #e8ebf0;
  --ef-text: #151923;
  --ef-muted: #667085;
  --ef-black: #0d1016;
  --ef-orange: #ff6b4a;
  --ef-purple: #b45cff;
  --ef-purple-dark: #25113f;
  --ef-purple-soft: #f1e7ff;
}

html,
body {
  background: var(--ef-page) !important;
  color: var(--ef-text) !important;
}

header {
  display: grid !important;
  grid-template-columns: auto minmax(250px, 340px) minmax(220px, 1fr) auto !important;
  align-items: center !important;
  gap: 12px !important;
  min-height: 58px !important;
  padding: 8px 14px !important;
  background: linear-gradient(90deg, #0c0f14, #151922, #0c0f14) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22) !important;
  overflow: visible !important;
}

header::before {
  display: none !important;
  content: none !important;
}

header > * {
  position: relative !important;
  z-index: 2 !important;
}

.left-head {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 14px !important;
  min-width: 190px !important;
  width: auto !important;
  flex-wrap: nowrap !important;
}

.logo,
#logoAnim {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  min-width: 92px !important;
  width: 92px !important;
  font-size: 24px !important;
  line-height: 1 !important;
  font-weight: 900 !important;
  white-space: nowrap !important;
  opacity: 1 !important;
  visibility: visible !important;
  overflow: visible !important;
}

.logo-letter,
header .logo-letter {
  display: inline-block;
  animation: logoSmooth 7s ease-in-out infinite;
  will-change: opacity, transform;
}

.logo-letter.white,
header .logo-letter.white {
  color: #ffffff !important;
  text-shadow: none !important;
}

.logo-letter.blue,
header .logo-letter.blue,
.footer-logo span:last-child {
  color: var(--ef-purple) !important;
  text-shadow:
    0 0 8px rgba(180, 92, 255, 0.55),
    0 0 16px rgba(130, 70, 255, 0.35) !important;
}

.currency-box {
  flex: 0 0 auto !important;
}

.currency-current {
  min-width: 72px !important;
  height: 38px !important;
  padding: 0 14px !important;
  border-radius: 999px !important;
  background: #151922 !important;
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  box-shadow: none !important;
  text-shadow: none !important;
}

.search-box {
  width: 100% !important;
  min-width: 0 !important;
  display: flex !important;
  gap: 8px !important;
}

.search {
  height: 38px !important;
  border-radius: 10px !important;
  background: #ffffff !important;
  color: var(--ef-text) !important;
  border: 1px solid #d0d5dd !important;
  box-shadow: none !important;
}

.search-btn {
  height: 38px !important;
  padding: 0 18px !important;
  border-radius: 10px !important;
  background: var(--ef-orange) !important;
  color: #fff !important;
  border: 1px solid var(--ef-orange) !important;
  box-shadow: none !important;
  text-shadow: none !important;
}

.slogan-head {
  min-height: 34px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #f6f7fb !important;
  background: rgba(255, 255, 255, 0.055) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  box-shadow: none !important;
}

.cooperation-btn,
.contacts-btn,
.account-btn,
.cart,
.mobile-menu-btn {
  min-height: 38px !important;
  border-radius: 10px !important;
  background: #151922 !important;
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
  box-shadow: none !important;
  text-shadow: none !important;
}

.cart-icon svg {
  stroke: #fff !important;
}

.top-line {
  min-height: 96px !important;
  padding: 14px 12px !important;
  background: linear-gradient(
    90deg,
    #fff7f3 0%,
    #ffe8dd 52%,
    #fff4ef 100%
  ) !important;
  border-top: none !important;
  border-bottom: 1px solid #ffd7c9 !important;
  box-shadow: 0 6px 18px rgba(255, 107, 74, 0.08) !important;
  overflow: hidden !important;
}

.top-line::before {
  display: none !important;
  content: none !important;
}

.top-products {
  gap: 12px !important;
  align-items: stretch !important;
}

.top-product-card,
.promo-modern-preview {
  padding: 8px !important;
  border-radius: 16px !important;
  background: #fff !important;
  border: 1px solid #e8ebf0 !important;
  box-shadow: 0 8px 18px rgba(16, 24, 40, 0.06) !important;
  box-sizing: border-box !important;
}

.top-product-title,
.promo-modern-title,
.promo-next-title {
  height: 32px !important;
  max-height: 32px !important;
  min-height: 32px !important;
  padding: 0 4px 0 30px !important;
  color: var(--ef-text) !important;
  font-size: 10px !important;
  line-height: 1.12 !important;
  text-shadow: none !important;
  box-sizing: border-box !important;
}

.top-product-img,
.promo-modern-img,
.promo-next-preview img {
  height: 46px !important;
  min-height: 46px !important;
  width: 100% !important;
  object-fit: contain !important;
  border-radius: 12px !important;
  background: #fff !important;
  border: 1px solid #eef0f4 !important;
  box-shadow: none !important;
}

.top-product-price,
.promo-modern-price,
.promo-next-price {
  color: var(--ef-text) !important;
  font-size: 11px !important;
  line-height: 1 !important;
  margin: 0 !important;
  text-shadow: none !important;
}

.top-buy-btn,
.promo-modern-btn,
.promo-next-btn {
  min-height: 24px !important;
  height: 24px !important;
  padding: 0 6px !important;
  border-radius: 10px !important;
  background: var(--ef-black) !important;
  color: #fff !important;
  border: 1px solid var(--ef-black) !important;
  box-shadow: none !important;
  text-shadow: none !important;
  font-size: 10px !important;
}

.layout,
.main-products-area,
.products,
.side-cats {
  background: #fff !important;
}

.side-cats {
  padding: 16px 12px !important;
  gap: 12px !important;
}

.side-filter-btn,
.cat {
  min-height: 58px;
  border-radius: 16px;
  background: #fff;
  color: var(--ef-text);
  border: 1px solid var(--ef-line);
  box-shadow: 0 10px 24px rgba(16, 24, 40, 0.07);
  text-shadow: none;
  transition:
    background 0.14s ease,
    color 0.14s ease,
    border-color 0.14s ease,
    box-shadow 0.14s ease;
}

.side-filter-btn {
  background: #fff;
  font-size: 14px;
}

.cat.active {
  background:
    radial-gradient(
      circle at 18% 0%,
      rgba(255, 255, 255, 0.78) 0 1px,
      transparent 28%
    ),
    linear-gradient(
      135deg,
      #eadcff 0%,
      #d8b4fe 20%,
      #b45cff 48%,
      #8b35ff 72%,
      #5b21b6 100%
    );
  color: white;
  border-color: rgba(232, 213, 255, 0.9);
  box-shadow: 0 8px 20px rgba(124, 58, 237, 0.24);
}

.cat-icon {
  color: #f2b600 !important;
  background: #fff9db !important;
  border-color: #ffe58a !important;
  box-shadow: none !important;
}

.currency-menu,
.contacts-menu,
.lang-menu,
.side-filter-menu,
.sort-menu,
.mobile-filter-menu,
.mobile-menu-panel {
  z-index: 1000002 !important;
  background: #fff !important;
  color: var(--ef-text) !important;
  border: 1px solid var(--ef-line) !important;
  box-shadow: 0 18px 40px rgba(16, 24, 40, 0.16) !important;
}

.currency-option,
.contacts-menu a,
.lang-option,
.sort-option,
.mobile-menu-item {
  color: var(--ef-text) !important;
}

@media (max-width: 1100px) {
  header {
    grid-template-columns:
      auto minmax(200px, 1fr) minmax(140px, 0.85fr)
      auto !important;
    gap: 8px !important;
  }

  .left-head {
    min-width: 170px !important;
    gap: 10px !important;
  }

  .logo,
  #logoAnim {
    width: 86px !important;
    min-width: 86px !important;
    font-size: 22px !important;
  }

  .slogan-head {
    font-size: 11px !important;
  }
}

@media (max-width: 760px) {
  header {
    grid-template-columns: auto minmax(130px, 1fr) auto !important;
    grid-template-areas: "mobile-logo mobile-search mobile-actions" !important;
    min-height: 54px !important;
    padding: 7px 8px !important;
  }

  .left-head {
    grid-area: mobile-logo !important;
    display: flex !important;
    min-width: 108px !important;
    gap: 6px !important;
  }

  .logo,
  #logoAnim {
    width: 68px !important;
    min-width: 68px !important;
    font-size: 18px !important;
  }

  .currency-current {
    min-width: 48px !important;
    height: 32px !important;
    padding: 0 7px !important;
    font-size: 10px !important;
  }

  .search-box {
    grid-area: mobile-search !important;
  }

  .search {
    height: 34px !important;
    font-size: 12px !important;
  }

  .right-head {
    grid-area: mobile-actions !important;
  }
}

@media (max-width: 600px) {
  header {
    grid-template-columns: auto minmax(0, 1fr) auto !important;
    grid-template-areas: "mobile-logo mobile-search mobile-actions" !important;
    gap: 6px !important;
    padding: 7px 8px !important;
  }

  header .left-head {
    display: flex !important;
    grid-area: mobile-logo !important;
    width: auto !important;
    min-width: 118px !important;
    gap: 5px !important;
  }

  header .logo,
  header #logoAnim {
    width: 66px !important;
    min-width: 66px !important;
    font-size: 17px !important;
  }

  header .currency-box {
    display: flex !important;
    position: relative !important;
    transform: none !important;
  }

  header .currency-current {
    min-width: 46px !important;
    height: 30px !important;
    padding: 0 6px !important;
    font-size: 9px !important;
  }

  .top-line {
    min-height: 136px !important;
    padding: 10px !important;
    overflow-x: auto !important;
  }

  .top-product-card,
  .promo-modern-preview {
    flex: 0 0 150px !important;
    width: 150px !important;
    height: 124px !important;
    min-height: 124px !important;
    border-radius: 16px !important;
  }

  .top-product-img,
  .promo-modern-img,
  .promo-next-preview img {
    height: 38px !important;
    min-height: 38px !important;
  }
}

:root {
  --ef-asphalt-1: #070a0f;
  --ef-asphalt-2: #141922;
  --ef-asphalt-3: #29313b;
  --ef-asphalt-4: #10141b;
  --ef-purple: #b45cff;
  --ef-purple-2: #7c3aed;
  --ef-purple-dark: #25113f;
  --ef-purple-soft: #f2e8ff;
  --ef-text: #151923;
  --ef-muted: #667085;
  --ef-line: #e7eaf0;
  --ef-soft: #f7f8fb;
}

header {
  z-index: 5000 !important;
}

.top-line,
.layout,
.main-products-area,
.products {
  position: relative !important;
  z-index: 1 !important;
}

.overlay {
  z-index: 90000 !important;
  background: rgba(8, 12, 18, 0.52) !important;
  backdrop-filter: none !important;
}

.cartbox {
  z-index: 90010 !important;
}

.modal,
.order-modal,
.account-modal,
.info-modal,
.oneclick-warning-modal,
.country-picker-modal {
  z-index: 91000 !important;
}

.modal-content,
.order-box,
.account-box,
.info-box,
.oneclick-warning-box,
.country-picker-box {
  z-index: 91010 !important;
}

body.easyfix-layer-open .side-cats,
body.easyfix-layer-open .cat,
body.easyfix-layer-open .subcat,
body.easyfix-layer-open .side-filter-menu,
body.easyfix-layer-open .sort-menu,
body.easyfix-layer-open .mobile-filter-menu {
  z-index: 1 !important;
}

.account-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  height: 38px !important;
  min-height: 38px !important;
  min-width: 86px !important;
  max-width: 112px !important;
  padding: 0 12px !important;
  margin: 0 !important;
  font-size: 13px !important;
  line-height: 1 !important;
  box-sizing: border-box !important;
  white-space: nowrap !important;
}

.cooperation-btn,
.contacts-btn,
.cart,
.mobile-menu-btn {
  height: 38px !important;
  min-height: 38px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-sizing: border-box !important;
}

.buy,
.big-buy,
.top-buy-btn,
.promo-modern-btn,
.promo-next-btn,
.product-action-buy {
  background: linear-gradient(
    145deg,
    var(--ef-asphalt-3) 0%,
    var(--ef-asphalt-2) 38%,
    var(--ef-asphalt-1) 100%
  ) !important;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.16) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    inset 0 -1px 0 rgba(0, 0, 0, 0.65),
    0 8px 18px rgba(8, 12, 18, 0.18) !important;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.55) !important;
}

.buy:hover,
.big-buy:hover,
.top-buy-btn:hover,
.promo-modern-btn:hover,
.promo-next-btn:hover,
.product-action-buy:hover {
  background: linear-gradient(
    145deg,
    #343d49 0%,
    #171d26 42%,
    #05070b 100%
  ) !important;
  transform: translateY(-1px) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.15),
    inset 0 -1px 0 rgba(0, 0, 0, 0.7),
    0 10px 22px rgba(8, 12, 18, 0.24) !important;
  filter: none !important;
}

.cat-icon {
  color: var(--ef-purple-2) !important;
  background: rgba(180, 92, 255, 0.1) !important;
  border-color: rgba(180, 92, 255, 0.25) !important;
  box-shadow: none !important;
}

.product-page {
  background: #fff !important;
  color: var(--ef-text) !important;
  padding: 18px !important;
}

.product-page-inner {
  max-width: 1180px !important;
}

.product-back-btn {
  background: linear-gradient(
    145deg,
    var(--ef-asphalt-3),
    var(--ef-asphalt-2),
    var(--ef-asphalt-1)
  ) !important;
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
  box-shadow: 0 8px 18px rgba(8, 12, 18, 0.14) !important;
}

.product-breadcrumbs {
  color: #667085 !important;
}

.product-breadcrumbs span {
  color: var(--ef-purple-2) !important;
}

.product-main-card {
  background: #fff !important;
  border: 1px solid var(--ef-line) !important;
  outline: none !important;
  box-shadow: 0 12px 34px rgba(16, 24, 40, 0.08) !important;
  border-radius: 22px !important;
  padding: 18px !important;
  align-items: start !important;
}

.product-info-panel {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  gap: 11px !important;
  min-height: 0 !important;
}

.product-page-title {
  color: var(--ef-text) !important;
  font-size: 25px !important;
  line-height: 1.18 !important;
  text-align: left !important;
  margin: 0 !important;
  text-shadow: none !important;
}

.product-code {
  color: #98a2b3 !important;
}

.product-stock {
  color: #24945a !important;
  background: #eafaf0 !important;
  border-color: #c7f0d4 !important;
}

.product-stock.stock-status-in-stock {
  color: #24945a !important;
  background: #eafaf0 !important;
  border-color: #c7f0d4 !important;
}

.product-stock.stock-status-out-of-stock {
  color: #6b7280 !important;
  background: #f3f4f6 !important;
  border-color: #d1d5db !important;
}

.product-stock.stock-status-preorder {
  color: #b45309 !important;
  background: #fff7d6 !important;
  border-color: #fde68a !important;
}

.product-min-order {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  margin: 10px 0 0;
  padding: 8px 13px;
  border-radius: 999px;
  background: #f3f4f6;
  color: #111827;
  border: 1px solid #e5e7eb;
  font-size: 13px;
  line-height: 1;
  font-weight: 900;
  white-space: nowrap;
  transition:
    background 0.18s ease,
    color 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}

.product-min-order.is-error {
  background: #fee2e2;
  color: #b91c1c;
  border-color: #ff0000;
  box-shadow: 0 0 0 3px rgba(255, 0, 0, 0.2);
  animation: easyfixMinOrderErrorPulse 0.38s ease;
}

@keyframes easyfixMinOrderErrorPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
  }

  45% {
    box-shadow: 0 0 0 4px rgba(255, 0, 0, 0.28);
  }

  100% {
    box-shadow: 0 0 0 3px rgba(255, 0, 0, 0.2);
  }
}

.product-page-price {
  color: #111827 !important;
  font-size: 27px !important;
  line-height: 1.05 !important;
  text-shadow: none !important;
}

.product-short-desc {
  color: #667085 !important;
  font-size: 14px !important;
}

.product-actions {
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  width: 100%;
}

.product-action-buy,
.product-action-cart {
  width: 100%;
  min-height: 44px;
  height: 44px;
  border-radius: 14px;
  font-size: 14px;
}

.product-action-cart {
  background: #f4f6f9;
  color: var(--ef-text);
  border: 1px solid var(--ef-line);
  box-shadow: none;
}

.product-actions.one-buy-only {
  grid-template-columns: minmax(0, 1fr);
  width: 100%;
}

.product-actions.one-buy-only .product-action-buy {
  width: 100%;
  grid-column: 1 / -1;
}

.product-quick-details {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 8px !important;
  width: 100% !important;
}

.product-detail-toggle {
  min-height: 42px !important;
  margin: 0 !important;
  border-radius: 13px !important;
  background:
    radial-gradient(
      circle at 18% 0%,
      rgba(255, 255, 255, 0.7) 0 1px,
      transparent 28%
    ),
    linear-gradient(
      135deg,
      #d8b4fe 0%,
      #c084fc 22%,
      #a855f7 48%,
      #8b35ff 70%,
      #6d28d9 100%
    ) !important;
  color: white !important;
  border: 1px solid rgba(232, 213, 255, 0.86) !important;
  box-shadow:
    0 8px 20px rgba(124, 58, 237, 0.28),
    0 0 18px rgba(180, 92, 255, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.48),
    inset 0 -2px 0 rgba(48, 16, 92, 0.3) !important;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.26) !important;
}

.product-detail-toggle.active {
  background:
    radial-gradient(
      circle at 18% 0%,
      rgba(255, 255, 255, 0.78) 0 1px,
      transparent 28%
    ),
    linear-gradient(
      135deg,
      #eadcff 0%,
      #d8b4fe 20%,
      #b45cff 48%,
      #8b35ff 72%,
      #5b21b6 100%
    ) !important;
  color: white !important;
  border: 1px solid rgba(255, 255, 255, 0.75) !important;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.28) !important;
}

.product-detail-panel {
  grid-column: 1/-1 !important;
  display: none !important;
  background: #f8fafc !important;
  color: #344054 !important;
  border: 1px solid var(--ef-line) !important;
  border-radius: 14px !important;
  padding: 12px !important;
  font-size: 13px !important;
  line-height: 1.5 !important;
  white-space: pre-line !important;
  max-height: 260px !important;
  overflow: auto !important;
}

.product-detail-panel.open {
  display: block !important;
}

.product-detail-panel .product-spec-table td {
  color: #344054 !important;
  border-color: var(--ef-line) !important;
}

.product-detail-panel .product-spec-table td:first-child {
  color: #667085 !important;
}

.product-benefits {
  gap: 7px !important;
}

.product-benefit {
  background: #fff !important;
  color: #344054 !important;
  border: 1px solid var(--ef-line) !important;
  border-radius: 13px !important;
  font-size: 12.5px !important;
  line-height: 1.35 !important;
  box-shadow: none !important;
}

.product-section {
  background: #fff !important;
  border-color: var(--ef-line) !important;
  box-shadow: 0 10px 26px rgba(16, 24, 40, 0.06) !important;
}

.product-section h2,
.product-description-full,
.product-spec-table td:last-child,
.product-similar-name {
  color: var(--ef-text) !important;
}

.product-spec-table td:first-child {
  color: #667085 !important;
}

.product-similar-card {
  background: #fff !important;
  border-color: var(--ef-line) !important;
}

.product-similar-card img {
  background: #f8fafc !important;
}

.product-similar-price {
  color: #111827 !important;
}

.product-benefits.easyfix-product-info-lines {
  display: block !important;
  margin: 2px 0 0 !important;
  padding: 0 2px !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

.product-benefits.easyfix-product-info-lines .product-benefit {
  display: block !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 2px 0 !important;
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  color: #344054 !important;
  font-size: 12.5px !important;
  font-weight: 700 !important;
  line-height: 1.25 !important;
}

.product-benefits.easyfix-product-info-lines .product-benefit a {
  color: #1e90ff !important;
  text-decoration: none !important;
  font-weight: 900 !important;
}

.product-benefits.easyfix-product-info-lines .product-benefit a:hover {
  text-decoration: underline !important;
}

@media (max-width: 600px) {
  .product-benefits.easyfix-product-info-lines .product-benefit {
    font-size: 11.5px !important;
    line-height: 1.22 !important;
    padding: 1.5px 0 !important;
  }
}

@media (max-width: 600px) {
  .product-detail-panel {
    max-height: 190px !important;
    padding: 10px !important;
    overflow: auto !important;
  }

  .product-detail-panel .product-spec-table {
    width: 100% !important;
    border-collapse: collapse !important;
    border-spacing: 0 !important;
  }

  .product-detail-panel .product-spec-table tr {
    display: grid !important;
    grid-template-columns: 42% 58% !important;
    gap: 6px !important;
    padding: 5px 0 !important;
    border-bottom: 1px solid #e7eaf0 !important;
  }

  .product-detail-panel .product-spec-table tr:last-child {
    border-bottom: none !important;
  }

  .product-detail-panel .product-spec-table td {
    display: block !important;
    width: auto !important;
    padding: 0 !important;
    margin: 0 !important;
    font-size: 12px !important;
    line-height: 1.25 !important;
    vertical-align: top !important;
  }

  .product-detail-panel .product-spec-table td:first-child {
    font-weight: 900 !important;
    color: #667085 !important;
  }

  .product-detail-panel .product-spec-table td:last-child {
    font-weight: 800 !important;
    color: #111827 !important;
    word-break: break-word !important;
  }
}

.easyfix-empty-cart-payment-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
  color: #667085;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.3;
}

.easyfix-empty-cart-payment-note svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  stroke: #1e90ff;
}

@media (max-width: 600px) {
  .easyfix-empty-cart-payment-note {
    font-size: 12px;
    margin-top: 10px;
  }

  .easyfix-empty-cart-payment-note svg {
    width: 17px;
    height: 17px;
  }
}

.easyfix-main-cat-hint {
  display: block;
  margin-top: 3px;
  font-size: 10.5px;
  line-height: 1.15;
  font-weight: 800;
  color: rgba(37, 17, 63, 0.62);
}

.easyfix-all-categories-list {
  display: none;
  grid-column: 1/-1;
  gap: 8px;
  margin-top: 4px;
}

.easyfix-all-categories-list.open {
  display: grid;
}

.easyfix-all-categories-title {
  padding: 8px 4px 2px;
  color: #667085;
  font-size: 12px;
  font-weight: 900;
}

.easyfix-main-category-btn,
.easyfix-main-category-btn.oneclick-cat {
  min-height: 76px;
  padding: 10px;
  border-radius: 16px;
  background: #ffffff;
  color: #151923;
  border: 1px solid #e7eaf0;
  box-shadow: 0 8px 20px rgba(16, 24, 40, 0.08);
  text-shadow: none;
  animation: none;
  box-sizing: border-box;
  overflow: hidden;
  transition:
    background 0.14s ease,
    color 0.14s ease,
    border-color 0.14s ease,
    box-shadow 0.14s ease;
}

.easyfix-main-category-btn.has-desc {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  min-height: 76px;
  padding: 10px;
  text-align: left;
}

.easyfix-main-category-btn .cat-label {
  display: block;
  min-width: 0;
  max-width: 100%;
  color: inherit;
  overflow: hidden;
}

.easyfix-main-category-btn.has-desc .cat-label {
  display: block;
  min-width: 0;
}

.easyfix-main-btn-title {
  display: block;
  font-size: 14px;
  line-height: 1.05;
  font-weight: 900;
  color: inherit;
}

.easyfix-main-btn-desc {
  display: block;
  margin-top: 4px;
  font-size: 10.2px;
  line-height: 1.15;
  font-weight: 800;
  color: rgba(21, 25, 35, 0.66);
}

.easyfix-main-category-btn .cat-icon,
.easyfix-main-category-btn.oneclick-cat .cat-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 14px;
  box-sizing: border-box;
}

.easyfix-main-category-btn.active-main {
  background:
    radial-gradient(
      circle at 18% 0%,
      rgba(255, 255, 255, 0.78) 0 1px,
      transparent 28%
    ),
    linear-gradient(
      135deg,
      #eadcff 0%,
      #d8b4fe 20%,
      #b45cff 48%,
      #8b35ff 72%,
      #5b21b6 100%
    );
  color: white;
  border-color: rgba(232, 213, 255, 0.9);
  box-shadow:
    0 8px 20px rgba(124, 58, 237, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.24);
}

.easyfix-main-category-btn.active-main .easyfix-main-btn-desc {
  color: rgba(255, 255, 255, 0.88);
}

.easyfix-main-category-btn.active-main .easyfix-main-btn-title {
  color: #ffffff;
}

.top-line {
  min-height: 105px !important;
  padding: 10px 12px !important;
}

.top-product-card,
.promo-modern-preview,
.promo-next-preview {
  height: 96px !important;
  min-height: 96px !important;
  padding: 8px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
}

.top-product-img,
.promo-modern-img,
.promo-next-preview img {
  display: none !important;
}

.top-product-title,
.promo-modern-title,
.promo-next-title {
  height: 34px !important;
  min-height: 34px !important;
  max-height: 34px !important;
  padding: 0 4px 0 28px !important;
  font-size: 10.5px !important;
  line-height: 1.15 !important;
  color: #151923 !important;
  text-shadow: none !important;
}

.top-product-price,
.promo-modern-price,
.promo-next-price {
  font-size: 12px !important;
  color: #111827 !important;
  line-height: 1 !important;
  margin: 0 !important;
  text-shadow: none !important;
}

.top-buy-btn,
.promo-modern-btn,
.promo-next-btn {
  width: auto !important;
  min-width: 86px !important;
  max-width: 116px !important;
  align-self: center !important;
  height: 24px !important;
  min-height: 24px !important;
  padding: 0 12px !important;
  border-radius: 9px !important;
  font-size: 10px !important;
  line-height: 1 !important;
}

@media (max-width: 600px) {
  .top-line {
    min-height: 100px !important;
    padding: 8px 10px !important;
  }

  .top-product-card,
  .promo-modern-preview,
  .promo-next-preview {
    flex: 0 0 142px !important;
    width: 142px !important;
    height: 86px !important;
    min-height: 86px !important;
  }

  .top-product-title,
  .promo-modern-title,
  .promo-next-title {
    font-size: 9.8px !important;
    height: 32px !important;
    min-height: 32px !important;
    max-height: 32px !important;
    padding-left: 24px !important;
  }
}

:where(
  button,
  .cat,
  .account-btn,
  .cart,
  .contacts-btn,
  .cooperation-btn,
  .currency-current,
  .footer-btn,
  .product-action-buy,
  .product-action-cart,
  .buy,
  .big-buy,
  .cartbtn,
  .top-buy-btn,
  .promo-modern-btn,
  .promo-next-btn
):hover {
  border-color: #c084fc !important;
  box-shadow:
    0 0 0 3px rgba(180, 92, 255, 0.24),
    0 10px 24px rgba(180, 92, 255, 0.25) !important;
  filter: brightness(1.07) !important;
}

.oneclick-warning-list {
  font-size: 12.8px !important;
  line-height: 1.38 !important;
  font-weight: 900 !important;
  color: #222 !important;
}

@media (max-width: 600px) {
  .oneclick-warning-list {
    font-size: 12px !important;
    line-height: 1.34 !important;
  }
}

.footer-menu {
  gap: 6px !important;
}

.footer-btn {
  min-height: 36px !important;
  padding: 8px 10px !important;
  border-radius: 11px !important;
  font-size: 12px !important;
  line-height: 1.15 !important;
}

@media (max-width: 600px) {
  .footer-menu {
    gap: 6px !important;
  }

  .footer-btn {
    min-height: 34px !important;
    padding: 8px 10px !important;
    font-size: 11.5px !important;
  }
}

@media (min-width: 601px) {
  .mobile-menu-btn,
  .mobile-menu-panel {
    display: none !important;
  }

  .right-head .cooperation-btn,
  .right-head .contacts-box,
  .right-head .account-btn,
  .right-head .cart {
    display: flex !important;
  }

  .slogan-head {
    display: flex !important;
  }
}

@media (max-width: 600px) {
  header {
    grid-template-columns: auto minmax(0, 1fr) auto !important;
    grid-template-areas: "mobile-logo mobile-search mobile-actions" !important;
    gap: 6px !important;
    padding: 7px 8px !important;
    align-items: center !important;
    overflow: visible !important;
  }

  header .left-head {
    grid-area: mobile-logo !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    width: auto !important;
    min-width: 118px !important;
    gap: 5px !important;
  }

  header .logo,
  header #logoAnim {
    width: 66px !important;
    min-width: 66px !important;
    font-size: 17px !important;
    white-space: nowrap !important;
  }

  header .currency-box {
    display: flex !important;
    position: relative !important;
    transform: none !important;
  }

  header .currency-current {
    min-width: 46px !important;
    height: 30px !important;
    padding: 0 6px !important;
    font-size: 9px !important;
    border-radius: 999px !important;
  }

  header .search-box {
    grid-area: mobile-search !important;
    width: 100% !important;
    min-width: 0 !important;
    display: flex !important;
    gap: 0 !important;
  }

  header .search {
    width: 100% !important;
    height: 32px !important;
    min-width: 0 !important;
    max-width: none !important;
    padding: 6px 8px !important;
    font-size: 12px !important;
    border-radius: 10px !important;
    box-sizing: border-box !important;
  }

  header .search-btn {
    display: none !important;
  }

  .slogan-head {
    display: none !important;
  }

  header .right-head {
    grid-area: mobile-actions !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 6px !important;
    width: auto !important;
    min-width: 0 !important;
  }

  header .right-head .cooperation-btn,
  header .right-head .contacts-box,
  header .right-head .account-btn {
    display: none !important;
  }

  header .right-head .cart {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: auto !important;
    min-width: 48px !important;
    height: 34px !important;
    min-height: 34px !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 8px !important;
    border-radius: 11px !important;
    font-size: 13px !important;
    line-height: 1 !important;
    gap: 5px !important;
    box-sizing: border-box !important;
    background: #151922 !important;
    color: #fff !important;
    border: 1px solid rgba(255, 255, 255, 0.14) !important;
    box-shadow: none !important;
  }

  header .right-head .cart-icon {
    display: inline-flex !important;
    width: 17px !important;
    height: 17px !important;
  }

  header .right-head .cart-icon svg {
    display: block !important;
    width: 17px !important;
    height: 17px !important;
    stroke: #fff !important;
  }

  header .right-head .mobile-menu-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 38px !important;
    height: 34px !important;
    min-width: 38px !important;
    min-height: 34px !important;
    margin: 0 !important;
    padding: 0 !important;
    border-radius: 11px !important;
    font-size: 21px !important;
    line-height: 1 !important;
    background: #151922 !important;
    color: #fff !important;
    border: 1px solid rgba(255, 255, 255, 0.14) !important;
    box-shadow: none !important;
  }

  .mobile-menu-panel {
    display: none !important;
    position: fixed !important;
    top: 58px !important;
    right: 8px !important;
    left: auto !important;
    width: min(270px, calc(100vw - 16px)) !important;
    padding: 10px !important;
    border-radius: 16px !important;
    background: #ffffff !important;
    color: #151923 !important;
    border: 1px solid #e7eaf0 !important;
    box-shadow: 0 18px 40px rgba(16, 24, 40, 0.18) !important;
    z-index: 1000005 !important;
    box-sizing: border-box !important;
  }

  .mobile-menu-panel.open {
    display: block !important;
  }

  .mobile-menu-title {
    color: #667085 !important;
    font-size: 11px !important;
    font-weight: 900 !important;
    padding: 7px 8px 6px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.35px !important;
  }

  .mobile-menu-item {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    width: 100% !important;
    min-height: 42px !important;
    margin: 0 0 7px !important;
    padding: 10px 12px !important;
    box-sizing: border-box !important;
    border-radius: 12px !important;
    border: 1px solid #e7eaf0 !important;
    background: #f8fafc !important;
    color: #151923 !important;
    font-size: 13px !important;
    font-weight: 900 !important;
    line-height: 1.15 !important;
    text-align: left !important;
    text-decoration: none !important;
    box-shadow: none !important;
  }

  .mobile-menu-item:hover {
    background: linear-gradient(135deg, #f7f0ff, #eadbff, #dbc2ff) !important;
    color: #25113f !important;
    border-color: #d8b9ff !important;
    box-shadow:
      0 0 0 3px rgba(180, 92, 255, 0.18),
      0 10px 24px rgba(180, 92, 255, 0.15) !important;
  }

  .mobile-catalog-controls {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
    padding: 9px 9px 8px;
    background: #fff;
    box-sizing: border-box;
    border-bottom: 1px solid #eef0f4;
  }

  .mobile-catalog-btn {
    width: 100% !important;
    height: 42px !important;
    min-height: 42px !important;
    margin: 0 !important;
    padding: 0 6px !important;
    border-radius: 13px !important;
    font-size: 12px !important;
    line-height: 1.05 !important;
    font-weight: 900 !important;
    background: #fff !important;
    color: #151923 !important;
    border: 1px solid #e7eaf0 !important;
    box-shadow: 0 5px 14px rgba(16, 24, 40, 0.07) !important;
    overflow: hidden !important;
    text-align: center !important;
    white-space: nowrap !important;
    text-overflow: ellipsis !important;
  }

  .mobile-catalog-btn:hover,
  .mobile-catalog-btn.active-main {
    background: #fff !important;
    color: #151923 !important;
    border-color: #e7eaf0 !important;
    box-shadow: 0 5px 14px rgba(16, 24, 40, 0.07) !important;
    filter: none !important;
  }

  .mobile-catalog-btn.easyfix-mobile-catalog-flash {
    background:
      radial-gradient(
        circle at 18% 0%,
        rgba(255, 255, 255, 0.78) 0 1px,
        transparent 28%
      ),
      linear-gradient(
        135deg,
        #eadcff 0%,
        #d8b4fe 20%,
        #b45cff 48%,
        #8b35ff 72%,
        #5b21b6 100%
      ) !important;
    color: white !important;
    border-color: rgba(232, 213, 255, 0.9) !important;
    box-shadow:
      0 8px 20px rgba(124, 58, 237, 0.28),
      inset 0 1px 0 rgba(255, 255, 255, 0.45) !important;
  }

  .mobile-filter-menu {
    grid-column: 1/-1 !important;
    margin-top: 0 !important;
    border-radius: 16px !important;
  }
}

#products .card .buy,
#products .card .big-buy,
#topProducts .top-buy-btn,
#topProducts .promo-modern-btn,
#topProducts .promo-next-btn {
  font-size: 0 !important;
  color: transparent !important;
  position: relative !important;
}

#products .card .buy::before,
#products .card .big-buy::before,
#topProducts .top-buy-btn::before,
#topProducts .promo-modern-btn::before,
#topProducts .promo-next-btn::before {
  content: "Подробнее";
  font-size: 12.5px !important;
  color: #fff !important;
  font-weight: 900 !important;
  line-height: 1 !important;
}

#topProducts .top-buy-btn::before,
#topProducts .promo-modern-btn::before,
#topProducts .promo-next-btn::before {
  font-size: 10px !important;
}

html[lang="en"] #products .card .buy::before,
html[lang="en"] #products .card .big-buy::before,
html[lang="en"] #topProducts .top-buy-btn::before,
html[lang="en"] #topProducts .promo-modern-btn::before,
html[lang="en"] #topProducts .promo-next-btn::before {
  content: "Details";
}

html[lang="de"] #products .card .buy::before,
html[lang="de"] #products .card .big-buy::before,
html[lang="de"] #topProducts .top-buy-btn::before,
html[lang="de"] #topProducts .promo-modern-btn::before,
html[lang="de"] #topProducts .promo-next-btn::before {
  content: "Details";
}

html[lang="it"] #products .card .buy::before,
html[lang="it"] #products .card .big-buy::before,
html[lang="it"] #topProducts .top-buy-btn::before,
html[lang="it"] #topProducts .promo-modern-btn::before,
html[lang="it"] #topProducts .promo-next-btn::before {
  content: "Dettagli";
}

#products .card .buy,
#products .card .big-buy,
#topProducts .top-buy-btn,
#topProducts .promo-modern-btn,
#topProducts .promo-next-btn {
  position: relative !important;
  font-size: 0 !important;
  color: transparent !important;
  overflow: hidden !important;
}

#products .card .buy::before,
#products .card .big-buy::before,
#topProducts .top-buy-btn::before,
#topProducts .promo-modern-btn::before,
#topProducts .promo-next-btn::before {
  content: "Подробнее" !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  color: #ffffff !important;
  font-size: 12.5px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  text-align: center !important;
  opacity: 1 !important;
  visibility: visible !important;
  z-index: 5 !important;
  pointer-events: none !important;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.45) !important;
}

#topProducts .top-buy-btn::before,
#topProducts .promo-modern-btn::before,
#topProducts .promo-next-btn::before {
  font-size: 10px !important;
}

html[lang="en"] #products .card .buy::before,
html[lang="en"] #products .card .big-buy::before,
html[lang="en"] #topProducts .top-buy-btn::before,
html[lang="en"] #topProducts .promo-modern-btn::before,
html[lang="en"] #topProducts .promo-next-btn::before {
  content: "Details" !important;
}

html[lang="de"] #products .card .buy::before,
html[lang="de"] #products .card .big-buy::before,
html[lang="de"] #topProducts .top-buy-btn::before,
html[lang="de"] #topProducts .promo-modern-btn::before,
html[lang="de"] #topProducts .promo-next-btn::before {
  content: "Details" !important;
}

html[lang="it"] #products .card .buy::before,
html[lang="it"] #products .card .big-buy::before,
html[lang="it"] #topProducts .top-buy-btn::before,
html[lang="it"] #topProducts .promo-modern-btn::before,
html[lang="it"] #topProducts .promo-next-btn::before {
  content: "Dettagli" !important;
}

:root {
  --ef-graphite-1: #2b3442;
  --ef-graphite-2: #1c2430;
  --ef-graphite-3: #101720;
  --ef-graphite-border: rgba(255, 255, 255, 0.18);
}

.buy,
.big-buy,
.top-buy-btn,
.promo-modern-btn,
.promo-next-btn,
.product-action-buy,
.cart-checkout-new {
  background: linear-gradient(
    145deg,
    var(--ef-graphite-1) 0%,
    var(--ef-graphite-2) 48%,
    var(--ef-graphite-3) 100%
  ) !important;
  color: #fff !important;
  border: 1px solid var(--ef-graphite-border) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    inset 0 -1px 0 rgba(0, 0, 0, 0.48),
    0 7px 16px rgba(16, 24, 40, 0.18) !important;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.38) !important;
}

.buy:hover,
.big-buy:hover,
.top-buy-btn:hover,
.promo-modern-btn:hover,
.promo-next-btn:hover,
.product-action-buy:hover,
.cart-checkout-new:hover {
  background: linear-gradient(
    145deg,
    #394456 0%,
    #242d3a 48%,
    #151c26 100%
  ) !important;
  border-color: #c084fc !important;
  box-shadow:
    0 0 0 3px rgba(180, 92, 255, 0.22),
    0 10px 22px rgba(180, 92, 255, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    inset 0 -1px 0 rgba(0, 0, 0, 0.42) !important;
  filter: none !important;
}

:root {
  --ef-purple: #b45cff;
  --ef-purple-2: #8b3dff;
  --ef-purple-3: #5d1fc9;
  --ef-purple-dark: #25113f;
  --ef-purple-soft: #f4ecff;
  --ef-purple-border: #d8b9ff;
}

.search-btn {
  background: linear-gradient(
    135deg,
    #d9c2ff,
    #b45cff,
    #8b3dff,
    #5d1fc9
  ) !important;
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.45) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    0 8px 18px rgba(180, 92, 255, 0.26) !important;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.35) !important;
}

.search-btn:hover {
  background: linear-gradient(
    135deg,
    #eadbff,
    #c084fc,
    #9b5cff,
    #6d28d9
  ) !important;
  box-shadow:
    0 0 0 3px rgba(180, 92, 255, 0.24),
    0 10px 24px rgba(180, 92, 255, 0.3) !important;
  filter: brightness(1.06) !important;
}

#products .card .buy,
#products .card .big-buy,
#topProducts .top-buy-btn,
#topProducts .promo-modern-btn,
#topProducts .promo-next-btn {
  position: relative !important;
  font-size: 0 !important;
  color: transparent !important;
  overflow: hidden !important;
}

#products .card .buy::before,
#products .card .big-buy::before,
#topProducts .top-buy-btn::before,
#topProducts .promo-modern-btn::before,
#topProducts .promo-next-btn::before {
  content: "Подробнее" !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  position: absolute !important;
  inset: 0 !important;
  color: #fff !important;
  font-size: 12.5px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  text-align: center !important;
  opacity: 1 !important;
  visibility: visible !important;
  z-index: 5 !important;
  pointer-events: none !important;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.42) !important;
}

html[lang="en"] #products .card .buy::before,
html[lang="en"] #products .card .big-buy::before,
html[lang="en"] #topProducts .top-buy-btn::before,
html[lang="en"] #topProducts .promo-modern-btn::before,
html[lang="en"] #topProducts .promo-next-btn::before {
  content: "Details" !important;
}

html[lang="de"] #products .card .buy::before,
html[lang="de"] #products .card .big-buy::before,
html[lang="de"] #topProducts .top-buy-btn::before,
html[lang="de"] #topProducts .promo-modern-btn::before,
html[lang="de"] #topProducts .promo-next-btn::before {
  content: "Details" !important;
}

html[lang="it"] #products .card .buy::before,
html[lang="it"] #products .card .big-buy::before,
html[lang="it"] #topProducts .top-buy-btn::before,
html[lang="it"] #topProducts .promo-modern-btn::before,
html[lang="it"] #topProducts .promo-next-btn::before {
  content: "Dettagli" !important;
}

#topProducts .top-product-card,
#topProducts .promo-modern-preview,
#topProducts .promo-next-preview {
  --ef-promo-left: 26px;
  height: 96px !important;
  min-height: 96px !important;
  padding: 8px !important;
  display: grid !important;
  grid-template-rows: 36px 16px 26px !important;
  align-items: center !important;
  gap: 3px !important;
  box-sizing: border-box !important;
}

#topProducts .top-product-img,
#topProducts .promo-modern-img,
#topProducts .promo-next-preview img {
  display: none !important;
}

#topProducts .top-product-title,
#topProducts .promo-modern-title,
#topProducts .promo-next-title {
  width: calc(100% - var(--ef-promo-left)) !important;
  height: 36px !important;
  min-height: 36px !important;
  max-height: 36px !important;
  margin-left: var(--ef-promo-left) !important;
  padding: 0 4px !important;
  box-sizing: border-box !important;

  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;

  color: #151923 !important;
  font-size: 10.5px !important;
  line-height: 1.15 !important;
  font-weight: 900 !important;
  text-align: center !important;
  text-shadow: none !important;
}

#topProducts .top-product-price,
#topProducts .promo-modern-price,
#topProducts .promo-next-price {
  width: calc(100% - var(--ef-promo-left)) !important;
  margin-left: var(--ef-promo-left) !important;
  color: #111827 !important;
  font-size: 11.5px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  text-align: center !important;
  text-shadow: none !important;
}

#topProducts .top-buy-btn,
#topProducts .promo-modern-btn,
#topProducts .promo-next-btn {
  width: min(112px, calc(100% - var(--ef-promo-left))) !important;
  min-width: 82px !important;
  max-width: 112px !important;
  height: 24px !important;
  min-height: 24px !important;
  margin-left: var(--ef-promo-left) !important;
  justify-self: center !important;
  align-self: center !important;
  padding: 0 10px !important;
  border-radius: 9px !important;
}

#topProducts .top-buy-btn::before,
#topProducts .promo-modern-btn::before,
#topProducts .promo-next-btn::before {
  font-size: 10px !important;
}

@media (max-width: 600px) {
  #topProducts .top-product-card,
  #topProducts .promo-modern-preview,
  #topProducts .promo-next-preview {
    --ef-promo-left: 22px;
    height: 92px !important;
    min-height: 92px !important;
    grid-template-rows: 34px 15px 25px !important;
  }

  #topProducts .top-product-title,
  #topProducts .promo-modern-title,
  #topProducts .promo-next-title {
    height: 34px !important;
    min-height: 34px !important;
    max-height: 34px !important;
    font-size: 9.8px !important;
  }
}

.slogan-head {
  color: #f4e9ff !important;
  border: 1px solid rgba(180, 92, 255, 0.34) !important;
  background: linear-gradient(
    135deg,
    rgba(180, 92, 255, 0.18),
    rgba(124, 58, 237, 0.12),
    rgba(255, 255, 255, 0.05)
  ) !important;
  box-shadow:
    0 0 0 1px rgba(180, 92, 255, 0.1),
    0 0 18px rgba(180, 92, 255, 0.16) !important;
  text-shadow:
    0 0 8px rgba(180, 92, 255, 0.45),
    0 1px 0 rgba(0, 0, 0, 0.45) !important;
}

#sloganText {
  color: #f4e9ff !important;
}

.slogan-globe {
  filter: hue-rotate(235deg) saturate(1.25) !important;
}

.contacts-menu a:hover,
.mobile-menu-panel a.mobile-menu-item:hover {
  background: linear-gradient(135deg, #f7f0ff, #eadbff, #dbc2ff) !important;
  color: #25113f !important;
  border-color: #d8b9ff !important;
  box-shadow:
    0 0 0 3px rgba(180, 92, 255, 0.18),
    0 10px 24px rgba(180, 92, 255, 0.15) !important;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.58) !important;
}

#productQuickDescPanel {
  white-space: pre-line !important;
}

#productQuickDescPanel table {
  display: none !important;
}

#productQuickSpecsPanel .product-spec-table {
  border-collapse: collapse !important;
  width: 100% !important;
}

#productQuickSpecsPanel .product-spec-table tr {
  display: table-row !important;
  border-bottom: 1px solid #e7eaf0 !important;
  padding: 0 !important;
}

#productQuickSpecsPanel .product-spec-table td {
  display: table-cell !important;
  padding: 7px 8px !important;
  font-size: 12.5px !important;
  line-height: 1.25 !important;
  vertical-align: top !important;
}

@media (max-width: 600px) {
  #productQuickSpecsPanel .product-spec-table tr {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 2px !important;
    padding: 7px 0 !important;
  }

  #productQuickSpecsPanel .product-spec-table td {
    display: block !important;
    padding: 2px 0 !important;
    font-size: 12px !important;
    line-height: 1.25 !important;
  }
}

#productBenefitSupport a {
  color: #1d9bf0 !important;
  font-weight: 900 !important;
  text-decoration: none !important;
}

#productBenefitSupport a:hover {
  color: #0077cc !important;
  text-decoration: underline !important;
}

.mobile-footer-lang-title,
#mobileFooterLangTitle {
  color: #151923 !important;
  opacity: 1 !important;
  visibility: visible !important;
  font-size: 13px !important;
  font-weight: 900 !important;
  text-shadow: none !important;
}

.mobile-footer-lang {
  background: #ffffff !important;
  border: 1px solid #e7eaf0 !important;
}

.product-detail-panel,
.product-detail-panel.open,
#productQuickDescPanel,
#productQuickSpecsPanel {
  max-height: none !important;
  height: auto !important;
  overflow: visible !important;
}

.product-info-panel,
.product-main-card,
.product-page,
.product-page-inner,
.product-quick-details {
  overflow: visible !important;
}

#productQuickDescPanel.open,
#productQuickSpecsPanel.open {
  display: block !important;
  grid-column: 1 / -1 !important;
  padding: 16px 18px !important;
  line-height: 1.55 !important;
}

#productQuickDescPanel {
  white-space: pre-line !important;
}

#productQuickSpecsPanel .product-spec-table {
  width: 100% !important;
  border-collapse: collapse !important;
}

#productQuickSpecsPanel .product-spec-table tr {
  border-bottom: 1px solid #e7eaf0 !important;
}

#productQuickSpecsPanel .product-spec-table td {
  padding: 9px 10px !important;
  line-height: 1.35 !important;
  vertical-align: top !important;
}

@media (max-width: 600px) {
  #productQuickDescPanel.open,
  #productQuickSpecsPanel.open {
    padding: 12px !important;
    line-height: 1.45 !important;
  }

  #productQuickSpecsPanel .product-spec-table tr {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 3px !important;
    padding: 8px 0 !important;
  }

  #productQuickSpecsPanel .product-spec-table td {
    display: block !important;
    padding: 2px 0 !important;
    line-height: 1.3 !important;
  }
}

.top-products {
  width: 100% !important;
  max-width: 1420px !important;
  margin: 0 auto !important;
  display: grid !important;
  grid-template-columns: repeat(6, minmax(165px, 220px)) !important;
  justify-content: center !important;
  gap: 12px !important;
}

#topProducts .top-product-card,
#topProducts .promo-modern-preview,
#topProducts .promo-next-preview {
  width: 100% !important;
  max-width: 220px !important;
  height: 96px !important;
  min-height: 96px !important;
  padding: 7px 8px !important;
  box-sizing: border-box !important;

  display: grid !important;
  grid-template-rows: 34px 16px 25px !important;
  gap: 2px !important;
  align-items: center !important;
  justify-items: center !important;
}

#topProducts .top-product-img,
#topProducts .promo-modern-img,
#topProducts .promo-next-preview img {
  display: none !important;
}

#topProducts .top-product-title,
#topProducts .promo-modern-title,
#topProducts .promo-next-title {
  width: 100% !important;
  height: 34px !important;
  min-height: 34px !important;
  max-height: 34px !important;

  margin: 0 !important;
  padding: 0 8px 0 24px !important;
  box-sizing: border-box !important;

  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;

  text-align: center !important;
  align-items: center !important;
  justify-content: center !important;

  font-size: 10px !important;
  line-height: 1.12 !important;
  font-weight: 900 !important;
  color: #151923 !important;
  text-shadow: none !important;
}

#topProducts .top-product-price,
#topProducts .promo-modern-price,
#topProducts .promo-next-price {
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;

  text-align: center !important;
  justify-self: center !important;

  font-size: 11px !important;
  line-height: 1 !important;
  font-weight: 900 !important;
  color: #111827 !important;
  text-shadow: none !important;
}

#topProducts .top-buy-btn,
#topProducts .promo-modern-btn,
#topProducts .promo-next-btn {
  width: 118px !important;
  min-width: 118px !important;
  max-width: 118px !important;
  height: 25px !important;
  min-height: 25px !important;

  margin: 0 auto !important;
  padding: 0 8px !important;

  justify-self: center !important;
  align-self: center !important;

  border-radius: 9px !important;
  box-sizing: border-box !important;
}

#topProducts .top-buy-btn::before,
#topProducts .promo-modern-btn::before,
#topProducts .promo-next-btn::before {
  font-size: 10px !important;
}

.top-line {
  min-height: 112px !important;
  padding: 10px 12px !important;
  box-sizing: border-box !important;
}

@media (max-width: 900px) {
  .top-products {
    grid-template-columns: repeat(3, minmax(160px, 210px)) !important;
  }
}

@media (max-width: 600px) {
  .top-line {
    min-height: 112px !important;
    padding: 9px 10px !important;
    overflow-x: auto !important;
  }

  .top-products {
    display: flex !important;
    width: max-content !important;
    max-width: none !important;
    justify-content: flex-start !important;
    gap: 10px !important;
  }

  #topProducts .top-product-card,
  #topProducts .promo-modern-preview,
  #topProducts .promo-next-preview {
    flex: 0 0 150px !important;
    width: 150px !important;
    max-width: 150px !important;
    height: 96px !important;
    min-height: 96px !important;
    grid-template-rows: 34px 15px 25px !important;
  }

  #topProducts .top-product-title,
  #topProducts .promo-modern-title,
  #topProducts .promo-next-title {
    font-size: 9.6px !important;
    padding-left: 22px !important;
  }

  #topProducts .top-buy-btn,
  #topProducts .promo-modern-btn,
  #topProducts .promo-next-btn {
    width: 112px !important;
    min-width: 112px !important;
    max-width: 112px !important;
  }
}

@media (max-width: 1200px) {
  .top-line {
    height: 96px !important;
    min-height: 96px !important;
    max-height: 96px !important;
    padding: 10px 9px !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    justify-content: flex-start !important;
  }

  .top-products {
    width: max-content !important;
    max-width: none !important;
    margin: 0 !important;
    justify-content: flex-start !important;
    gap: 7px !important;
  }

  #topProducts .top-product-card,
  #topProducts .promo-modern-preview,
  #topProducts .promo-next-preview {
    flex: 0 0 148px !important;
    width: 148px !important;
    min-width: 148px !important;
    max-width: 148px !important;

    height: 96px !important;
    min-height: 96px !important;
    max-height: 96px !important;
  }
}

@media (max-width: 600px) {
  .top-line {
    height: 136px !important;
    min-height: 136px !important;
    max-height: 136px !important;
    padding: 8px 9px !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    justify-content: flex-start !important;
  }

  .top-products {
    width: max-content !important;
    max-width: none !important;
    margin: 0 !important;
    gap: 7px !important;
    justify-content: flex-start !important;
  }

  #topProducts .top-product-card,
  #topProducts .promo-modern-preview,
  #topProducts .promo-next-preview {
    flex: 0 0 138px !important;
    width: 138px !important;
    min-width: 138px !important;
    max-width: 138px !important;

    height: 116px !important;
    min-height: 116px !important;
    max-height: 116px !important;

    padding: 7px 5px !important;
    grid-template-rows: 56px 17px 24px !important;
  }

  #topProducts .top-product-title,
  #topProducts .promo-modern-title,
  #topProducts .promo-next-title {
    height: 56px !important;
    min-height: 56px !important;
    max-height: 56px !important;
    font-size: 9.2px !important;
    line-height: 1.1 !important;
    padding-left: 18px !important;
  }

  #topProducts .top-product-price,
  #topProducts .promo-modern-price,
  #topProducts .promo-next-price {
    font-size: 10.5px !important;
  }

  #topProducts .top-buy-btn,
  #topProducts .promo-modern-btn,
  #topProducts .promo-next-btn {
    width: 92px !important;
    min-width: 92px !important;
    max-width: 92px !important;
    height: 24px !important;
    min-height: 24px !important;
    max-height: 24px !important;
  }

  #topProducts .top-buy-btn::before,
  #topProducts .promo-modern-btn::before,
  #topProducts .promo-next-btn::before {
    font-size: 8.8px !important;
  }
}

:root {
  --ef-purple-main: #8b35ff;
  --ef-purple-light: #c78cff;
  --ef-purple-soft: #f3e8ff;
  --ef-purple-mid: #a855f7;
  --ef-purple-dark: #25113f;
  --ef-purple-border: #d9b8ff;
}

.cart-checkout-box {
  background:
    radial-gradient(
      circle at 12% 20%,
      rgba(180, 92, 255, 0.18) 0 2px,
      transparent 3px
    ),
    radial-gradient(
      circle at 88% 72%,
      rgba(199, 140, 255, 0.22) 0 2px,
      transparent 3px
    ),
    linear-gradient(135deg, #fbf7ff, #f3e8ff, #eadbff) !important;
  border: 1px solid var(--ef-purple-border) !important;
  box-shadow:
    0 10px 26px rgba(180, 92, 255, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.78) !important;
}

.cart-total-big {
  color: #151923 !important;
  text-shadow: none !important;
}

.cart-checkout-new {
  background: linear-gradient(135deg, #c084fc, #a855f7, #7c3aed) !important;
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.45) !important;
  box-shadow:
    0 8px 18px rgba(124, 58, 237, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.25) !important;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.28) !important;
}

.cart-checkout-new:hover {
  background: linear-gradient(135deg, #d8b4fe, #b45cff, #6d28d9) !important;
  filter: brightness(1.04) !important;
  transform: translateY(-1px) !important;
}

:where(
  .cooperation-btn,
  .account-btn,
  .currency-current,
  .lang-current,
  .search-btn,
  .buy,
  .big-buy,
  .top-buy-btn,
  .promo-modern-btn,
  .promo-next-btn,
  .product-action-buy,
  .checkout-btn,
  .order-pay-btn,
  .account-action:not(.logout-btn),
  .verify-confirm,
  .oneclick-continue-btn,
  .page-btn.active,
  .account-tab.active,
  .account-menu-btn.active,
  .mobile-lang-btn.active,
  .info-close,
  .account-close,
  .oneclick-warning-close,
  .close,
  .order-close,
  .country-picker-close
) {
  background:
    radial-gradient(
      circle at 18% 0%,
      rgba(255, 255, 255, 0.65) 0 1px,
      transparent 28%
    ),
    linear-gradient(
      135deg,
      #d8b4fe 0%,
      #c084fc 22%,
      #a855f7 48%,
      #8b35ff 70%,
      #6d28d9 100%
    ) !important;

  color: #ffffff !important;
  border: 1px solid rgba(232, 213, 255, 0.86) !important;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.26) !important;

  box-shadow:
    0 8px 20px rgba(124, 58, 237, 0.28),
    0 0 18px rgba(180, 92, 255, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.48),
    inset 0 -2px 0 rgba(48, 16, 92, 0.3) !important;

  filter: none !important;
}

:where(
  .cooperation-btn,
  .account-btn,
  .currency-current,
  .lang-current,
  .search-btn,
  .buy,
  .big-buy,
  .top-buy-btn,
  .promo-modern-btn,
  .promo-next-btn,
  .product-action-buy,
  .checkout-btn,
  .order-pay-btn,
  .account-action:not(.logout-btn),
  .verify-confirm,
  .oneclick-continue-btn,
  .page-btn.active,
  .account-tab.active,
  .account-menu-btn.active,
  .mobile-lang-btn.active,
  .info-close,
  .account-close,
  .oneclick-warning-close,
  .close,
  .order-close,
  .country-picker-close
):hover {
  background:
    radial-gradient(
      circle at 18% 0%,
      rgba(255, 255, 255, 0.78) 0 1px,
      transparent 28%
    ),
    linear-gradient(
      135deg,
      #eadcff 0%,
      #d8b4fe 20%,
      #b45cff 48%,
      #8b35ff 72%,
      #5b21b6 100%
    ) !important;

  border-color: rgba(255, 255, 255, 0.96) !important;

  box-shadow:
    0 10px 24px rgba(124, 58, 237, 0.34),
    0 0 26px rgba(180, 92, 255, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.58),
    inset 0 -2px 0 rgba(48, 16, 92, 0.34) !important;

  filter: brightness(1.05) saturate(1.08) !important;
  transform: translateY(-1px) !important;
}

:where(
  .cooperation-btn,
  .account-btn,
  .currency-current,
  .lang-current,
  .search-btn,
  .buy,
  .big-buy,
  .top-buy-btn,
  .promo-modern-btn,
  .promo-next-btn,
  .product-action-buy,
  .checkout-btn,
  .order-pay-btn,
  .account-action:not(.logout-btn),
  .verify-confirm,
  .oneclick-continue-btn,
  .page-btn.active,
  .account-tab.active,
  .account-menu-btn.active,
  .mobile-lang-btn.active,
  .info-close,
  .account-close,
  .oneclick-warning-close,
  .close,
  .order-close,
  .country-picker-close
)::after {
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.08) 34%,
    rgba(255, 255, 255, 0.55) 50%,
    rgba(255, 255, 255, 0.08) 66%,
    transparent 100%
  ) !important;
}

.info-close,
.account-close,
.oneclick-warning-close,
.close,
.order-close,
.country-picker-close {
  color: #fff !important;
}

.account-tab.active {
  color: #fff !important;
}

.logout-btn {
  background: #ffeded !important;
  color: #b00000 !important;
  border: 1px solid #ffbcbc !important;
  box-shadow: none !important;
  text-shadow: none !important;
}

.logout-btn:hover {
  background: #ffe1e1 !important;
  color: #9b0000 !important;
  transform: none !important;
  filter: none !important;
}

.search-btn {
  background: linear-gradient(135deg, #c084fc, #a855f7, #7c3aed) !important;
  border-color: #c9a3ff !important;
}

.currency-option:hover,
.currency-option.active,
.lang-option:hover,
.lang-option.active,
.contacts-menu a:hover,
.sort-option:hover,
.sort-option.active,
.mobile-menu-item:hover {
  background: linear-gradient(135deg, #f7f0ff, #eadbff, #dbc2ff) !important;
  color: var(--ef-purple-dark) !important;
  border-color: #d8b9ff !important;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.55) !important;
}

.mobile-lang-btn.active {
  background: linear-gradient(135deg, #d8b4fe, #a855f7, #7c3aed) !important;
  color: #fff !important;
}

.cart-remove-btn.cart-delete-product-btn {
  width: 38px !important;
  height: 38px !important;
  min-width: 38px !important;
  min-height: 38px !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  margin: 0 !important;
  padding: 0 !important;

  border-radius: 12px !important;
  background: #f7f8fb !important;
  color: #7c3aed !important;
  border: 1px solid #e4d4ff !important;

  box-shadow: none !important;
  cursor: pointer !important;
}

.cart-remove-btn.cart-delete-product-btn svg {
  width: 19px !important;
  height: 19px !important;
  display: block !important;

  fill: none !important;
  stroke: currentColor !important;
  stroke-width: 2.2 !important;
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
}

.cart-remove-btn.cart-delete-product-btn:hover {
  background: linear-gradient(135deg, #f7f0ff, #eadbff, #dbc2ff) !important;
  color: #25113f !important;
  border-color: #d8b9ff !important;
  transform: translateY(-1px) !important;
}

@media (max-width: 700px) {
  .cart-product-row {
    grid-template-columns: 64px 1fr 42px !important;
    gap: 10px !important;
    align-items: center !important;
  }

  .cart-remove-btn.cart-delete-product-btn {
    grid-column: 3/4 !important;
    grid-row: 1/2 !important;
    justify-self: end !important;
    align-self: center !important;

    width: 36px !important;
    height: 36px !important;
    min-width: 36px !important;
    min-height: 36px !important;
    border-radius: 11px !important;
  }

  .cart-remove-btn.cart-delete-product-btn svg {
    width: 18px !important;
    height: 18px !important;
  }
}

.easyfix-empty-payment-note {
  width: fit-content !important;
  max-width: 100% !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;

  margin: 14px auto 0 !important;
  padding: 0 8px !important;

  color: #667085 !important;
  font-size: 13px !important;
  line-height: 1.25 !important;
  font-weight: 900 !important;
  text-align: left !important;
}

.easyfix-empty-payment-icon {
  width: 24px !important;
  height: 24px !important;
  min-width: 24px !important;

  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;

  color: #2ea7ff !important;
}

.easyfix-empty-payment-icon svg {
  width: 22px !important;
  height: 22px !important;
  display: block !important;

  fill: none !important;
  stroke: currentColor !important;
  stroke-width: 2.2 !important;
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
}

.empty-cart .easyfix-empty-payment-note {
  width: fit-content !important;
  max-width: calc(100% - 24px) !important;

  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 9px !important;

  margin: 14px auto 0 !important;
  padding: 0 !important;

  position: relative !important;
  left: auto !important;
  right: auto !important;
  top: auto !important;
  bottom: auto !important;
  transform: none !important;

  text-align: left !important;
  color: #667085 !important;
  font-size: 13px !important;
  line-height: 1.25 !important;
  font-weight: 900 !important;
}

.empty-cart .easyfix-empty-payment-icon {
  width: 23px !important;
  height: 23px !important;
  min-width: 23px !important;
  flex: 0 0 23px !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  position: static !important;
  left: auto !important;
  right: auto !important;
  top: auto !important;
  bottom: auto !important;
  transform: none !important;

  margin: 0 !important;
  padding: 0 !important;

  color: #2ea7ff !important;
}

.empty-cart .easyfix-empty-payment-icon svg {
  width: 22px !important;
  height: 22px !important;
  display: block !important;

  fill: none !important;
  stroke: currentColor !important;
  stroke-width: 2.2 !important;
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
}

.empty-cart .easyfix-empty-payment-text {
  display: block !important;
  position: static !important;
  transform: none !important;

  margin: 0 !important;
  padding: 0 !important;

  text-align: left !important;
  max-width: 260px !important;
}

@media (max-width: 600px) {
  .empty-cart .easyfix-empty-payment-note {
    max-width: 280px !important;
    gap: 8px !important;
    font-size: 12.5px !important;
    line-height: 1.25 !important;
    margin-top: 13px !important;
  }

  .empty-cart .easyfix-empty-payment-icon {
    width: 22px !important;
    height: 22px !important;
    min-width: 22px !important;
    flex-basis: 22px !important;
  }

  .empty-cart .easyfix-empty-payment-icon svg {
    width: 20px !important;
    height: 20px !important;
  }

  .empty-cart .easyfix-empty-payment-text {
    max-width: 225px !important;
  }
}

.easyfix-empty-payment-icon svg {
  width: 20px !important;
  height: 20px !important;
}

/* ===== EasyFix clean final rules ===== */

/* Логотип: анимация EasyFix НЕ вырезана */
.logo-letter,
header .logo-letter {
  display: inline-block !important;
  animation: logoSmooth 7s ease-in-out infinite !important;
  will-change: opacity, transform;
}

.logo-letter:nth-child(1) {
  animation-delay: 0s !important;
}
.logo-letter:nth-child(2) {
  animation-delay: 0.13s !important;
}
.logo-letter:nth-child(3) {
  animation-delay: 0.26s !important;
}
.logo-letter:nth-child(4) {
  animation-delay: 0.39s !important;
}
.logo-letter:nth-child(5) {
  animation-delay: 0.52s !important;
}
.logo-letter:nth-child(6) {
  animation-delay: 0.65s !important;
}
.logo-letter:nth-child(7) {
  animation-delay: 0.78s !important;
}

.logo-letter.blue,
header .logo-letter.blue,
.footer-logo span:last-child {
  color: #b45cff !important;
  text-shadow:
    0 0 8px rgba(180, 92, 255, 0.55),
    0 0 16px rgba(130, 70, 255, 0.35) !important;
}

/* Все обычные кнопки: чёрные, при наведении фиолетовые */
.search-btn,
.cooperation-btn,
.contacts-btn,
.account-btn,
.cart,
.buy,
.big-buy,
.cartbtn,
.top-buy-btn,
.promo-modern-btn,
.promo-next-btn,
.product-detail-toggle,
.product-page-buy,
.product-page-cart,
.product-back-btn,
.footer-btn,
.account-action,
.checkout-btn,
.cart-checkout-new,
.oneclick-continue-btn,
.order-submit-btn {
  background: #151922 !important;
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
  box-shadow: none !important;
  text-shadow: none !important;
}

.search-btn:hover,
.cooperation-btn:hover,
.contacts-btn:hover,
.account-btn:hover,
.cart:hover,
.buy:hover,
.big-buy:hover,
.cartbtn:hover,
.top-buy-btn:hover,
.promo-modern-btn:hover,
.promo-next-btn:hover,
.product-detail-toggle:hover,
.product-detail-toggle.active,
.product-page-buy:hover,
.product-page-cart:hover,
.product-back-btn:hover,
.footer-btn:hover,
.account-action:hover,
.checkout-btn:hover,
.cart-checkout-new:hover,
.oneclick-continue-btn:hover,
.order-submit-btn:hover {
  background:
    radial-gradient(
      circle at 18% 0%,
      rgba(255, 255, 255, 0.78) 0 1px,
      transparent 28%
    ),
    linear-gradient(
      135deg,
      #eadcff 0%,
      #d8b4fe 20%,
      #b45cff 48%,
      #8b35ff 72%,
      #5b21b6 100%
    ) !important;
  color: white !important;
  border-color: rgba(232, 213, 255, 0.9) !important;
  box-shadow:
    0 8px 20px rgba(124, 58, 237, 0.32),
    0 0 18px rgba(180, 92, 255, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    inset 0 -2px 0 rgba(48, 16, 92, 0.32) !important;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.28) !important;
  filter: none !important;
}

/* Контакты: сама кнопка полностью фиолетовая при наведении */
.contacts-btn:hover {
  background:
    radial-gradient(
      circle at 18% 0%,
      rgba(255, 255, 255, 0.78) 0 1px,
      transparent 28%
    ),
    linear-gradient(
      135deg,
      #eadcff 0%,
      #d8b4fe 20%,
      #b45cff 48%,
      #8b35ff 72%,
      #5b21b6 100%
    ) !important;
  color: white !important;
}

/* Акционная строка: 9 товаров, компактная, всё по центру */
.top-line {
  height: 108px;
  min-height: 108px;
  max-height: 108px;
  padding: 6px 4px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.top-products {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;

  display: grid !important;
  grid-template-columns: repeat(9, minmax(0, 1fr)) !important;
  align-items: center !important;
  justify-content: stretch !important;
  gap: 4px !important;

  box-sizing: border-box !important;
}

#topProducts .top-product-card,
#topProducts .promo-modern-preview,
#topProducts .promo-next-preview {
  width: 100% !important;
  min-width: 0 !important;
  max-width: none !important;

  height: 92px !important;
  min-height: 92px !important;
  max-height: 92px !important;

  padding: 8px 6px 6px 6px !important;
  box-sizing: border-box !important;

  display: grid !important;
  grid-template-rows: 34px 16px 24px !important;
  align-content: center !important;
  justify-items: center !important;
  align-items: center !important;
  gap: 3px !important;

  border-radius: 13px !important;
  overflow: hidden !important;
}

#topProducts .top-product-img,
#topProducts .promo-modern-img,
#topProducts .promo-next-preview img {
  display: none !important;
}

#topProducts .top-product-title,
#topProducts .promo-modern-title,
#topProducts .promo-next-title {
  width: calc(100% - 26px) !important;
  height: 34px !important;
  min-height: 34px !important;
  max-height: 34px !important;

  margin: 0 0 0 20px !important;
  padding: 0 5px !important;
  box-sizing: border-box !important;

  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;

  color: #151923 !important;
  font-size: 10px !important;
  line-height: 1.12 !important;
  font-weight: 900 !important;
  text-align: center !important;
  text-shadow: none !important;

  overflow: hidden !important;
}

#topProducts .top-product-price,
#topProducts .promo-modern-price,
#topProducts .promo-next-price {
  width: calc(100% - 26px) !important;
  height: 16px !important;
  min-height: 16px !important;
  max-height: 16px !important;

  margin: 0 0 0 20px !important;
  padding: 0 5px !important;
  box-sizing: border-box !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  color: #111827 !important;
  font-size: 11px !important;
  line-height: 1 !important;
  font-weight: 900 !important;
  text-align: center !important;
  text-shadow: none !important;
}

#topProducts .top-buy-btn,
#topProducts .promo-modern-btn,
#topProducts .promo-next-btn {
  width: min(106px, calc(100% - 30px)) !important;
  min-width: 78px !important;
  max-width: 106px !important;

  height: 24px !important;
  min-height: 24px !important;
  max-height: 24px !important;

  margin: 0 0 0 20px !important;
  padding: 0 !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  justify-self: center !important;
  align-self: center !important;

  border-radius: 9px !important;
  box-sizing: border-box !important;

  font-size: 0 !important;
  color: transparent !important;
  position: relative !important;
}

#topProducts .top-buy-btn::before,
#topProducts .promo-modern-btn::before,
#topProducts .promo-next-btn::before {
  content: "Подробнее" !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  position: absolute !important;
  inset: 0 !important;

  color: #fff !important;
  font-size: 9.2px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  text-align: center !important;
  pointer-events: none !important;
}

html[lang="en"] #topProducts .top-buy-btn::before,
html[lang="en"] #topProducts .promo-modern-btn::before,
html[lang="en"] #topProducts .promo-next-btn::before {
  content: "Details" !important;
}

html[lang="de"] #topProducts .top-buy-btn::before,
html[lang="de"] #topProducts .promo-modern-btn::before,
html[lang="de"] #topProducts .promo-next-btn::before {
  content: "Details" !important;
}

html[lang="it"] #topProducts .top-buy-btn::before,
html[lang="it"] #topProducts .promo-modern-btn::before,
html[lang="it"] #topProducts .promo-next-btn::before {
  content: "Dettagli" !important;
}

/* ===== EasyFix one-click ribbon badge — single source ===== */

.card.oneclick-product::before,
#topProducts .top-product-card::before,
#topProducts .promo-modern-preview::before,
#topProducts .promo-next-preview::before {
  content: attr(data-badge);
  position: absolute;
  top: 7px;
  left: -17px;
  width: 56px;
  height: 14px;
  padding: 0;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    #d9c2ff,
    #c7a2ff,
    #b48aff,
    #a36fff,
    #cbb3ff
  );
  color: #25113f;
  font-size: 6.1px;
  line-height: 1;
  font-weight: 900;
  white-space: nowrap;
  text-align: center;
  letter-spacing: -0.1px;
  transform: rotate(-35deg);
  transform-origin: center;
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow:
    0 2px 8px rgba(0, 0, 0, 0.28),
    0 0 10px rgba(196, 155, 255, 0.38);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.45);
  z-index: 60;
  pointer-events: none;
}

@media (max-width: 1200px) {
  .top-line {
    height: 106px !important;
    min-height: 106px !important;
    max-height: 106px !important;
    padding: 6px 9px !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    justify-content: flex-start !important;
  }

  .top-products {
    display: flex !important;
    width: max-content !important;
    max-width: none !important;
    margin: 0 !important;
    gap: 6px !important;
    justify-content: flex-start !important;
    align-items: center !important;
  }

  #topProducts .top-product-card,
  #topProducts .promo-modern-preview,
  #topProducts .promo-next-preview {
    flex: 0 0 150px !important;
    width: 150px !important;
    min-width: 150px !important;
    max-width: 150px !important;

    height: 92px !important;
    min-height: 92px !important;
    max-height: 92px !important;
  }
}

@media (max-width: 600px) {
  .top-line {
    height: 104px !important;
    min-height: 104px !important;
    max-height: 104px !important;
    padding: 6px 9px !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    justify-content: flex-start !important;
  }

  .top-products {
    display: flex !important;
    width: max-content !important;
    max-width: none !important;
    margin: 0 !important;
    gap: 6px !important;
    justify-content: flex-start !important;
    align-items: center !important;
  }

  #topProducts .top-product-card,
  #topProducts .promo-modern-preview,
  #topProducts .promo-next-preview {
    flex: 0 0 140px !important;
    width: 140px !important;
    min-width: 140px !important;
    max-width: 140px !important;

    height: 90px !important;
    min-height: 90px !important;
    max-height: 90px !important;

    padding: 7px 5px 6px !important;
    grid-template-rows: 33px 15px 23px !important;
  }

  #topProducts .top-product-title,
  #topProducts .promo-modern-title,
  #topProducts .promo-next-title {
    width: calc(100% - 24px) !important;
    height: 33px !important;
    min-height: 33px !important;
    max-height: 33px !important;

    margin-left: 18px !important;
    padding: 0 4px !important;

    font-size: 9.3px !important;
    line-height: 1.1 !important;
  }

  #topProducts .top-product-price,
  #topProducts .promo-modern-price,
  #topProducts .promo-next-price {
    width: calc(100% - 24px) !important;
    margin-left: 18px !important;
    height: 15px !important;
    min-height: 15px !important;
    max-height: 15px !important;
    font-size: 10.2px !important;
  }

  #topProducts .top-buy-btn,
  #topProducts .promo-modern-btn,
  #topProducts .promo-next-btn {
    width: 92px !important;
    min-width: 82px !important;
    max-width: 92px !important;

    height: 23px !important;
    min-height: 23px !important;
    max-height: 23px !important;

    margin-left: 18px !important;
  }

  #topProducts .top-buy-btn::before,
  #topProducts .promo-modern-btn::before,
  #topProducts .promo-next-btn::before {
    font-size: 8.6px !important;
  }
}

@media (max-width: 600px) {
  .card.oneclick-product::before,
  #topProducts .top-product-card::before,
  #topProducts .promo-modern-preview::before,
  #topProducts .promo-next-preview::before {
    top: 6px;
    left: -17px;
    font-size: 5px;
    padding: 2px 15px;
  }
}

/* ===== EasyFix admin subcategories in category buttons ===== */

.easyfix-category-with-subs {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  height: auto;
  min-height: 54px;
  padding: 12px;
  box-sizing: border-box;
}

.easyfix-category-with-subs .cat-icon,
.easyfix-category-with-subs .cat-label {
  pointer-events: none;
}

.easyfix-admin-subcategories {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
  margin-top: 4px;
}

.easyfix-admin-subcategory-btn {
  width: 100%;
  margin: 0;
  padding: 8px 9px;
  border-radius: 10px;
  border: 1px solid rgba(180, 92, 255, 0.22);
  background: #ffffff;
  color: #25113f;
  font-size: 11px;
  font-weight: 900;
  line-height: 1.15;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(16, 24, 40, 0.06);
  text-align: center;
}

.easyfix-admin-subcategory-btn:hover,
.easyfix-admin-subcategory-btn.active {
  background:
    radial-gradient(
      circle at 18% 0%,
      rgba(255, 255, 255, 0.78) 0 1px,
      transparent 28%
    ),
    linear-gradient(
      135deg,
      #eadcff 0%,
      #d8b4fe 20%,
      #b45cff 48%,
      #8b35ff 72%,
      #5b21b6 100%
    );
  color: white;
  border-color: rgba(232, 213, 255, 0.9);
}

@media (max-width: 600px) {
  .easyfix-category-with-subs {
    min-height: auto;
  }

  .side-cats.mobile-open .easyfix-customorder-subcategory-group,
  .side-cats.easyfix-mobile-subcategories
    .easyfix-customorder-subcategory-group {
    grid-column: 1 / -1;
    width: 100%;
    min-height: 0;
    padding: 8px;
    margin: 0;
    border-radius: 18px;
    border: 1px solid rgba(232, 213, 255, 0.75);
    background: linear-gradient(135deg, #eadcff 0%, #b45cff 48%, #6d28d9 100%);
    box-shadow: 0 8px 22px rgba(124, 58, 237, 0.22);
    gap: 0;
    box-sizing: border-box;
  }

  .side-cats.mobile-open
    .easyfix-customorder-subcategory-group
    .easyfix-admin-subcategories,
  .side-cats.easyfix-mobile-subcategories
    .easyfix-customorder-subcategory-group
    .easyfix-admin-subcategories {
    grid-template-columns: 1fr;
    gap: 6px;
    margin: 0;
  }

  .side-cats.mobile-open
    .easyfix-customorder-subcategory-group
    .easyfix-admin-subcategory-btn,
  .side-cats.easyfix-mobile-subcategories
    .easyfix-customorder-subcategory-group
    .easyfix-admin-subcategory-btn {
    min-height: 28px;
    padding: 5px 10px;
    border-radius: 10px;
    font-size: 12px;
    line-height: 1.12;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
}

/* Фон товаров для подкатегорий "Товары по цветам" */
.main-products-area.easyfix-color-bg-active {
  min-height: 100vh !important;
  transition:
    background 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease !important;
  border-left: 1px solid rgba(255, 255, 255, 0.28) !important;
}

.main-products-area.easyfix-color-bg-active .products,
.main-products-area.easyfix-color-bg-active .pagination {
  background: transparent !important;
}

/* Прозрачные находки — стеклянно-металлический прозрачный фон */
.main-products-area.easyfix-color-bg-transparent {
  background:
    linear-gradient(
      115deg,
      rgba(255, 255, 255, 0.42),
      transparent 22%,
      rgba(255, 255, 255, 0.34) 44%,
      transparent 66%
    ),
    radial-gradient(
      circle at 76% 18%,
      rgba(255, 255, 255, 0.55),
      transparent 24%
    ),
    linear-gradient(135deg, #d7dde5, #8f9aa8 38%, #f8fafc 58%, #7b8794) !important;

  box-shadow: inset 0 0 42px rgba(71, 85, 105, 0.22) !important;
}

/* Чернющие — максимально чёрный фон без бликов */
.main-products-area.easyfix-color-bg-black {
  background: #000000 !important;
  box-shadow: none !important;
}

/* Жидкий метал — простой серебряный фон */
.main-products-area.easyfix-color-bg-metal {
  background: #c0c0c0 !important;
  box-shadow: none !important;
}

/* Неоновое свечение */
.main-products-area.easyfix-color-bg-neon {
  background:
    radial-gradient(
      circle at 20% 18%,
      rgba(34, 211, 238, 0.3),
      transparent 28%
    ),
    radial-gradient(
      circle at 82% 24%,
      rgba(168, 85, 247, 0.32),
      transparent 30%
    ),
    radial-gradient(circle at 48% 84%, rgba(34, 197, 94, 0.2), transparent 34%),
    linear-gradient(135deg, #090b16, #111827 48%, #070712) !important;
  box-shadow: inset 0 0 52px rgba(168, 85, 247, 0.26) !important;
}

/* Мягкие тона — ровный розовый фон */
.main-products-area.easyfix-color-bg-soft {
  background: #ffb6d5 !important;
  box-shadow: none !important;
}

/* Меняющие цвет */
.main-products-area.easyfix-color-bg-changing {
  background:
    radial-gradient(
      circle at 18% 16%,
      rgba(34, 211, 238, 0.24),
      transparent 28%
    ),
    radial-gradient(
      circle at 82% 18%,
      rgba(244, 114, 182, 0.24),
      transparent 30%
    ),
    radial-gradient(
      circle at 50% 84%,
      rgba(250, 204, 21, 0.18),
      transparent 34%
    ),
    linear-gradient(135deg, #101827, #243047 42%, #1f1638 72%, #0b1220) !important;
  box-shadow: inset 0 0 54px rgba(34, 211, 238, 0.16) !important;
}

/* Фильтр поверх и без залипания */
.side-filter-wrap {
  position: relative !important;
  z-index: 9100 !important;
}

.side-filter-menu,
.mobile-filter-menu {
  z-index: 99999 !important;
}

/* Футер: данные продавца по центру */
.easyfix-seller-footer {
  display: block !important;
  text-align: center !important;
}

.easyfix-seller-line {
  width: 100% !important;
  max-width: 980px !important;
  margin: 0 auto !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px 14px !important;
  flex-wrap: wrap !important;

  text-align: center !important;
}

.easyfix-seller-line span {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 4px !important;
}

.easyfix-footer-rights {
  width: 100% !important;
  text-align: center !important;
}

@media (max-width: 600px) {
  .easyfix-seller-line {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 6px !important;
    text-align: center !important;
  }

  .easyfix-seller-line span {
    display: block !important;
    text-align: center !important;
  }
}

/* Зум картинки товара */
#easyfixImageZoom {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: rgba(0, 0, 0, 0.88);
  box-sizing: border-box;
}

#easyfixImageZoom.active {
  display: flex;
}

#easyfixImageZoomImg {
  max-width: 94vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 16px;
  background: white;
}

.easyfix-zoom-close,
.easyfix-zoom-arrow {
  position: fixed;
  z-index: 1000000;
  border: 0 !important;
  background: #151922 !important;
  color: white !important;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35) !important;
}

.easyfix-zoom-close {
  top: 14px;
  right: 14px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 28px;
}

.easyfix-zoom-arrow {
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 62px;
  border-radius: 16px;
  font-size: 34px;
}

#easyfixZoomPrev {
  left: 16px;
}

#easyfixZoomNext {
  right: 16px;
}

.easyfix-zoom-close:hover,
.easyfix-zoom-arrow:hover {
  background:
    radial-gradient(
      circle at 18% 0%,
      rgba(255, 255, 255, 0.78) 0 1px,
      transparent 28%
    ),
    linear-gradient(
      135deg,
      #eadcff 0%,
      #d8b4fe 20%,
      #b45cff 48%,
      #8b35ff 72%,
      #5b21b6 100%
    ) !important;
}
