﻿/* Slate Template — generic.css
   Made by: Atzl Project */

@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700;800&display=swap");


:root {
  --bg-neutral:           #0e0e11;
  --card-neutral:         #18181a;
  --card-hover:           #1f1f22;
  --card-border:          rgba(255,255,255,0.06);
  --accent-color:         #1bd5ea;
  --accent-hover:         #13b8cc;
  --accent-glow:          rgba(27,213,234,0.18);
  --text-primary:         #f0f0f0;
  --text-secondary:       #8a8a9a;
  --text-muted:           #555566;
  --sidebar-width:        270px;
  --header-hero-height:   380px;

  --color-bg:             var(--bg-neutral);
  --color-brighter-bg:    var(--card-neutral);
  --color-primary:        var(--accent-color);
  --color-primary-hover:  var(--accent-hover);
  --color-text:           var(--text-primary);
  --color-text-secondary: var(--text-secondary);
  --color-secondary:      #2a2a2f;
  --color-secondary-hover:#333338;
}


body {
  font-family: 'Montserrat', sans-serif;
  background-color: var(--bg-neutral);
  background-image: none;
  position: relative;
}

body::before,
body::after {
  display: none !important;
}

#bg-hero {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 680px;
  z-index: -1;
  background-image: var(--bg-image,
    linear-gradient(135deg, #0a0a0e 0%, #1a1a2e 50%, #0a0a0e 100%)
  );
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
  filter: brightness(0.92) saturate(1.15);
  pointer-events: none;
}

#bg-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(17,17,18,0.00)  0%,
    rgba(17,17,18,0.00) 35%,
    rgba(17,17,18,0.30) 60%,
    rgba(17,17,18,0.65) 78%,
    rgba(17,17,18,0.92) 90%,
    rgba(17,17,18,1.00) 100%
  );
  pointer-events: none;
}

.site {
  position: relative;
  z-index: 1;
  background: transparent;
}


.site-header {
  background: transparent !important;
  padding: 0 !important;
  margin: 0 !important;
  max-width: 100% !important;
  width: 100% !important;
}


.top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 40px;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}

.top-bar-back {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.top-bar-back:hover { color: var(--text-primary); }
.top-bar-back-icon { font-size: 15px; }

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.top-bar-nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 1px solid var(--card-border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-primary);
  cursor: pointer;
}

.top-bar-nav-toggle:hover {
  border-color: rgba(27, 213, 234, 0.35);
  color: var(--accent-color);
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.top-bar-login-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 10px 7px 16px;
  background: rgba(20,20,24,0.8);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  transition: background 0.2s, border-color 0.2s;
  cursor: pointer;
  text-decoration: none;
  font: inherit;
  color: inherit;
}
.top-bar-login-btn:hover {
  background: rgba(30,30,36,0.95);
  border-color: var(--accent-color);
}
.top-bar-login-title {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
}
.top-bar-login-sub {
  display: block;
  font-size: 10px;
  color: var(--accent-color);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.top-bar-login-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--card-neutral);
  border-radius: 6px;
  border: 1px solid var(--card-border);
}
.top-bar-login-icon img {
  filter: brightness(0) invert(1);
  opacity: 0.6;
  width: 20px;
  height: 20px;
}
.top-bar-combo {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(20,20,24,0.9);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.top-bar-combo:hover {
  border-color: var(--accent-color);
}
.top-bar-combo-user {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px 6px 8px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.top-bar-combo-avatar {
  width: 36px;
  height: 36px;
  border-radius: 5px;
  image-rendering: pixelated;
  display: block;
}
.top-bar-combo-info {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.top-bar-combo-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
}
.top-bar-combo-logout {
  font-size: 10px;
  font-weight: 700;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
}
.top-bar-combo-basket {
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
  padding: 0 18px !important;
  height: 50px !important;
  background: var(--accent-color) !important;
  color: #000 !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  border-radius: 0 !important;
  border: none !important;
  letter-spacing: 0.04em !important;
  transition: background 0.2s !important;
  line-height: 1 !important;
  cursor: pointer;
}
.top-bar-combo-basket:hover {
  background: var(--accent-hover) !important;
  box-shadow: none !important;
}
.top-bar-combo-basket::before {
  content: "+";
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
}
.top-bar-basket {
  border-radius: 6px !important;
  font-size: 13px !important;
  height: 40px !important;
  padding: 0 16px !important;
  line-height: 40px !important;
}


.header-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 140px 0;
  height: var(--header-hero-height);
  width: 100%;
  overflow: hidden;
  background: transparent;
  isolation: isolate;
}

.header-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.header-particle {
  position: absolute;
  bottom: -6px;
  border-radius: 50%;
  background: #fff;
  opacity: var(--particle-opacity, 0.55);
  animation-name: header-particle-float;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  will-change: transform, opacity;
}

@keyframes header-particle-float {
  0% {
    transform: translateY(0);
    opacity: var(--particle-opacity, 0.55);
  }

  80% {
    opacity: calc(var(--particle-opacity, 0.55) * 0.35);
  }

  100% {
    transform: translateY(calc(-1 * var(--header-hero-height, 380px) - 12px));
    opacity: 0;
  }
}

.header-hero .hw-widget {
  --hw-accent: var(--accent-color);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  max-width: none;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  text-decoration: none;
  font: inherit;
  color: inherit;
  cursor: pointer;
}

.header-hero .hw-widget:hover {
  background: transparent;
  border-color: transparent;
}

.header-hero .hw-server {
  left: calc(50% - 490px);
}

.header-hero .hw-discord {
  right: calc(50% - 490px);
}

.header-hero button.hw-widget {
  appearance: none;
  -webkit-appearance: none;
  outline: none;
}

.header-hero button.hw-widget:focus-visible {
  outline: 2px solid var(--accent-color);
  outline-offset: 2px;
}

.header-hero .hw-widget-text {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
  pointer-events: none;
}

.header-hero .hw-widget-text-right {
  text-align: right;
}

.header-hero .hw-widget-status {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #1bc4f9;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.65);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  pointer-events: none;
}

.header-hero .hw-widget-sub-wrap {
  position: relative;
  display: block;
  width: 100%;
  height: 1.35em;
  overflow: hidden;
  padding: 0;
  margin: 0;
  border: none;
  background: none;
  font: inherit;
  text-align: inherit;
  color: #ffffff;
  pointer-events: none;
}

.header-hero .hw-widget-sub-label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #ffffff;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.65);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.28s ease;
  pointer-events: none;
}

.header-hero .hw-widget-sub-hover {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  transform: translateY(100%);
  opacity: 0;
}

.header-hero .hw-widget-text-right .hw-widget-sub-hover {
  left: auto;
}

.header-hero .hw-server:hover .hw-widget-sub-default,
.header-hero .hw-discord:hover .hw-widget-sub-default {
  transform: translateY(-100%);
  opacity: 0;
}

.header-hero .hw-server:hover .hw-widget-sub-hover,
.header-hero .hw-discord:hover .hw-widget-sub-hover {
  transform: translateY(0);
  opacity: 1;
}

.header-hero .hw-widget-icon-wrap {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2px;
  pointer-events: none;
}

.header-hero .hw-widget-icon {
  width: 54px;
  height: auto;
  display: block;
  object-fit: contain;
  filter:
    drop-shadow(0 0 4px rgba(27, 213, 234, 0.55))
    drop-shadow(0 0 10px rgba(27, 213, 234, 0.28));
  transition: transform 0.25s ease, filter 0.25s ease;
}

.header-hero .hw-widget:hover .hw-widget-icon {
  transform: scale(1.05);
  filter:
    drop-shadow(0 0 5px rgba(27, 213, 234, 0.7))
    drop-shadow(0 0 14px rgba(27, 213, 234, 0.38));
}

.header-hero-bg {
  display: none;
}

.header-hero::after {
  display: none;
}

.header-logo-wrap {
  position: relative;
  z-index: 10;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
}

.header-logo-wrap a {
  pointer-events: auto;
}

.header-logo {
  max-height: 200px;
  max-width: 400px;
  object-fit: contain;
  filter: drop-shadow(0 4px 20px rgba(0,0,0,0.5));
  transition: transform 0.3s ease, filter 0.3s ease;
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
}
.header-logo:hover {
  transform: scale(1.04);
  filter: drop-shadow(0 6px 28px rgba(27,213,234,0.3));
}
.header-logo-text {
  font-size: 52px;
  font-weight: 800;
  color: #fff;
  text-shadow: 0 2px 24px rgba(0,0,0,0.6);
  letter-spacing: -1px;
}


#site-navigation.navigation-horizontal {
  display: flex !important;
  justify-content: center !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 32px 6px !important;
  background: transparent !important;
  border: none !important;
  backdrop-filter: none !important;
  overflow: visible !important;
  z-index: 50 !important;
}

#site-navigation.navigation-horizontal > .close-navigation {
  display: none !important;
}

#site-navigation.navigation-horizontal .menu {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-wrap: wrap !important;
  gap: 6px !important;
  width: auto !important;
  max-width: 100% !important;
  margin: 0 auto !important;
  padding: 6px !important;
  list-style: none !important;
  background: rgba(10, 10, 12, 0.92) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 999px !important;
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.38) !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  font-family: 'Montserrat', sans-serif !important;
  overflow: visible !important;
  position: relative !important;
  z-index: 10 !important;
}

#site-navigation.navigation-horizontal .menu > li {
  display: flex !important;
  align-items: center !important;
}

#site-navigation.navigation-horizontal .menu > li > a {
  display: block !important;
  padding: 12px 28px !important;
  max-width: none !important;
  overflow: visible !important;
  text-overflow: unset !important;
  white-space: nowrap !important;
  text-transform: uppercase !important;
  letter-spacing: 0.1em !important;
  color: var(--text-secondary) !important;
  background: transparent !important;
  border: none !important;
  border-radius: 999px !important;
  box-shadow: none !important;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease !important;
}

#site-navigation.navigation-horizontal .menu > li > a:hover,
#site-navigation.navigation-horizontal .menu > li > a.link-active,
#site-navigation.navigation-horizontal .menu > li.active > a {
  color: #041015 !important;
  background: var(--accent-color) !important;
  box-shadow: 0 4px 18px rgba(27, 213, 234, 0.28) !important;
  border-bottom-color: transparent !important;
}

#site-navigation.navigation-horizontal .has-children {
  position: relative !important;
  display: block !important;
}

#site-navigation.navigation-horizontal .has-children > a {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  padding-right: 20px !important;
}

#site-navigation.navigation-horizontal .nav-chevron {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
  width: 14px !important;
  height: 14px !important;
  line-height: 0 !important;
  transform: rotate(180deg);
  transition: transform 0.2s ease;
  opacity: 0.9;
}

#site-navigation.navigation-horizontal .nav-chevron svg {
  display: block !important;
  width: 14px !important;
  height: 14px !important;
}

#site-navigation.navigation-horizontal .has-children:hover > a .nav-chevron,
#site-navigation.navigation-horizontal .has-children.expanded > a .nav-chevron,
#site-navigation.navigation-horizontal .has-children:focus-within > a .nav-chevron {
  transform: rotate(0deg);
}

#site-navigation.navigation-horizontal .has-children > .toggle {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  overflow: hidden !important;
  position: absolute !important;
  opacity: 0 !important;
  pointer-events: none !important;
  visibility: hidden !important;
}

#site-navigation.navigation-horizontal .has-children > ul {
  position: absolute !important;
  top: 100% !important;
  left: 50% !important;
  right: auto !important;
  margin: 10px 0 0 0 !important;
  padding: 6px !important;
  list-style: none !important;
  background: rgba(10, 10, 12, 0.96) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 16px !important;
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.42) !important;
  min-width: 220px !important;
  width: max-content !important;
  z-index: 200 !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transform: translateX(-50%) !important;
  translate: none !important;
  transition: opacity 0.18s ease, visibility 0.18s ease !important;
}

#site-navigation.navigation-horizontal .has-children > ul::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 10px;
}

#site-navigation.navigation-horizontal .has-children:hover > ul,
#site-navigation.navigation-horizontal .has-children:focus-within > ul {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transform: translateX(-50%) !important;
}

#site-navigation.navigation-horizontal .has-children > ul > li {
  display: block !important;
}

#site-navigation.navigation-horizontal .has-children > ul > li > a {
  display: block !important;
  padding: 10px 18px !important;
  margin: 2px 0 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.08em !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  font-family: 'Montserrat', sans-serif !important;
  border-radius: 999px !important;
  color: var(--text-secondary) !important;
  background: transparent !important;
  box-shadow: none !important;
  max-width: none !important;
  white-space: nowrap !important;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease !important;
}

#site-navigation.navigation-horizontal .has-children > ul > li > a:hover,
#site-navigation.navigation-horizontal .has-children > ul > li > a.link-active,
#site-navigation.navigation-horizontal .has-children > ul > li.active > a {
  color: #041015 !important;
  background: var(--accent-color) !important;
  box-shadow: 0 4px 18px rgba(27, 213, 234, 0.28) !important;
}

body.is-navigation-horizontal .sidebar-categories-block {
  display: none !important;
}

@media (width > 960px) {
  body.is-navigation-horizontal .site-header {
    overflow: visible !important;
  }

  body.is-navigation-horizontal #site-navigation.navigation-horizontal {
    margin-top: 10px !important;
    padding-bottom: 2px !important;
  }

  body.is-navigation-horizontal #site-navigation.navigation-horizontal .has-children > ul {
    top: 100% !important;
    left: 50% !important;
    right: auto !important;
    margin-top: 10px !important;
    transform: translateX(-50%) !important;
    translate: none !important;
  }

  body.is-navigation-horizontal .top-bar-nav-toggle,
  body.is-navigation-horizontal .top-bar-back {
    display: none !important;
  }

  body.is-navigation-horizontal .site-content-sidebar-left,
  body.is-navigation-horizontal .site-home-categories {
    padding-top: 8px !important;
  }

  body.is-navigation-horizontal .site-content-sidebar-left {
    grid-template-columns: 250px 1fr !important;
  }

  body.is-navigation-horizontal .store-products-images {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    align-items: start !important;
    gap: 16px !important;
  }

  body.is-navigation-horizontal .store-products-images .store-product {
    height: auto !important;
    min-height: 0 !important;
  }

  body.is-navigation-horizontal .store-products-images .store-product .image-link {
    height: 150px !important;
  }

  body.is-navigation-horizontal .store-products-images .store-product .image-link .image {
    max-height: 130px !important;
  }

  body.is-navigation-horizontal .store-products-images .store-product .pkg-btn-row {
    padding: 0 12px 14px !important;
  }
}

@media (max-width: 960px) {
  body.is-navigation-horizontal .top-bar-nav-toggle {
    display: inline-flex;
  }

  #site-navigation.navigation-horizontal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    padding: 72px 20px 24px !important;
    background: rgba(8, 8, 10, 0.98) !important;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, visibility 0.2s ease;
  }

  body.is-navigation-horizontal.show-navigation #site-navigation.navigation-horizontal {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  #site-navigation.navigation-horizontal .menu {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    width: 100% !important;
    border-radius: 12px !important;
    padding: 8px !important;
  }

  #site-navigation.navigation-horizontal .menu > li > a {
    padding: 14px 18px !important;
    border-radius: 8px !important;
    text-align: left !important;
  }

  #site-navigation.navigation-horizontal .has-children > a {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 12px !important;
    padding-right: 18px !important;
  }

  #site-navigation.navigation-horizontal .nav-chevron {
    transform: rotate(180deg);
  }

  #site-navigation.navigation-horizontal .has-children.expanded > a .nav-chevron {
    transform: rotate(0deg);
  }

  #site-navigation.navigation-horizontal .has-children > ul {
    position: static !important;
    translate: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    box-shadow: none !important;
    border: none !important;
    background: transparent !important;
    padding: 0 0 8px 16px !important;
  }

  #site-navigation.navigation-horizontal > .close-navigation {
    display: block !important;
    margin-top: 24px;
    width: 100%;
  }
}


.site-content,
.site-home-categories,
.site-footer-inner {
  max-width: 1400px !important;
  width: 100% !important;
  margin: 0 auto !important;
  padding: 0 32px !important;
}
.site-content-sidebar-left {
  display: grid !important;
  grid-template-columns: var(--sidebar-width) 1fr !important;
  align-items: start !important;
  gap: 20px !important;
  padding-top: 24px !important;
  padding-bottom: 32px !important;
}


.store-sidebar,
.sidebar-premium {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  overflow: visible !important;
  padding: 0 !important;
}

.store-sidebar > *,
.sidebar-premium > * {
  margin-top: 12px;
}
.store-sidebar > *:first-child,
.sidebar-premium > *:first-child {
  margin-top: 0;
}
.store-sidebar > .sidebar-categories-list,
.sidebar-premium > .sidebar-categories-list {
  margin-top: 0 !important;
}

.sidebar-categories-block {
  width: 100%;
}

.sidebar-widgets-block {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.sidebar-widgets-block > .widget {
  margin-top: 12px;
}

.sidebar-widgets-block > .widget:first-child {
  margin-top: 0;
}

.store-sidebar .widget {
  background: var(--card-neutral) !important;
  border: 1px solid var(--card-border) !important;
  border-radius: 10px !important;
  overflow: hidden !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  margin-bottom: 0 !important;
  padding: 0 !important;
}

.store-sidebar .widget .widget-title,
.store-sidebar .widget > h3,
.store-sidebar .widget > h4 {
  font-size: 13px !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.08em !important;
  color: var(--accent-color) !important;
  padding: 14px 16px !important;
  border-bottom: 1px solid rgba(255,255,255,0.05) !important;
  margin: 0 !important;
  background: var(--card-neutral) !important;
  border-radius: 10px 10px 0 0 !important;
  line-height: 1.3 !important;
}

.store-sidebar .widget .widget-content {
  padding: 14px 16px 16px !important;
}

.store-sidebar .widget-text .widget-content {
  padding: 16px 18px 18px !important;
  font-size: 13px !important;
  line-height: 1.65 !important;
  color: var(--text-secondary) !important;
}

.store-sidebar .widget-text .widget-content p {
  margin: 0 0 10px 0 !important;
}

.store-sidebar .widget-text .widget-content p:last-child {
  margin-bottom: 0 !important;
}

.store-sidebar .widget-text .widget-content strong {
  color: var(--text-primary) !important;
}

.store-sidebar .widget.widget-recent {
  overflow: visible !important;
}

.store-sidebar .widget-recent .widget-content {
  padding: 22px 16px 16px !important;
  overflow: visible !important;
}

.store-sidebar .widget-recent .purchases {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: visible !important;
}

.store-sidebar .widget-recent .purchase {
  position: relative !important;
  width: 40px !important;
  height: 40px !important;
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
  display: block !important;
  flex-shrink: 0 !important;
}

.store-sidebar .widget-recent .purchase .avatar {
  display: block !important;
  width: 40px !important;
  height: 40px !important;
  max-width: 40px !important;
  max-height: 40px !important;
  border-radius: 6px !important;
  image-rendering: pixelated !important;
  object-fit: cover !important;
  border: 2px solid rgba(255,255,255,0.08) !important;
  background: #1a1a1e !important;
  transition: border-color 0.15s, transform 0.15s !important;
  cursor: default !important;
}

.store-sidebar .widget-recent .purchase:hover .avatar {
  border-color: var(--accent-color) !important;
  transform: scale(1.06) !important;
}

.store-sidebar .widget-recent .purchase-label {
  position: absolute;
  bottom: calc(100% + 7px);
  top: auto;
  left: 50%;
  transform: translateX(-50%);
  background: #111114;
  color: var(--accent-color);
  font-size: 11px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  white-space: nowrap;
  padding: 5px 10px;
  border-radius: 5px;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 4px 12px rgba(0,0,0,0.45);
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.15s, visibility 0.15s;
  z-index: 100;
  letter-spacing: 0.02em;
}

.store-sidebar .widget-recent .purchase:hover {
  z-index: 20;
}

.store-sidebar .widget-recent .purchase:hover .purchase-label {
  opacity: 1;
  visibility: visible;
}

.store-sidebar .widget-recent .empty {
  padding: 8px 0 !important;
  font-size: 13px !important;
  color: var(--text-secondary) !important;
  text-align: center !important;
}

.store-sidebar .widget-top-donator .widget-content {
  padding: 14px 16px 16px !important;
}

.store-sidebar .widget-top-donator .top-donator-row {
  display: flex !important;
  align-items: flex-start !important;
  gap: 12px !important;
}

.store-sidebar .widget-top-donator .avatar {
  width: 48px !important;
  height: 48px !important;
  flex-shrink: 0 !important;
  border-radius: 8px !important;
  image-rendering: pixelated !important;
  object-fit: cover !important;
  background: #1a1a1e !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  margin: 0 !important;
}

.store-sidebar .widget-top-donator .top-donator-info {
  flex: 1 !important;
  min-width: 0 !important;
  padding-top: 2px !important;
}

.store-sidebar .widget-top-donator .username {
  font-size: 14px !important;
  font-weight: 800 !important;
  color: var(--text-primary) !important;
  margin: 0 0 4px 0 !important;
  line-height: 1.2 !important;
  word-break: break-word !important;
}

.store-sidebar .widget-top-donator .donated-text {
  font-size: 12px !important;
  color: var(--text-secondary) !important;
  margin: 0 !important;
  line-height: 1.45 !important;
}

.store-sidebar .widget-top-donator .donated-text strong {
  color: var(--text-primary) !important;
  font-weight: 700 !important;
}

.store-sidebar .widget-top-donator .empty {
  font-size: 13px !important;
  color: var(--text-secondary) !important;
  text-align: center !important;
  margin: 0 !important;
}

.store-sidebar .widget-gift-card .widget-content,
.store-sidebar .widget-gift-card.gift-card-form,
.store-sidebar .widget-gift-card form.widget-content {
  padding: 14px 16px 16px !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 10px !important;
}

.store-sidebar .widget-gift-card .gift-card-input {
  width: 100% !important;
  box-sizing: border-box !important;
  height: 42px !important;
  padding: 0 14px !important;
  background: #1a1a1e !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
  border-radius: 8px !important;
  color: var(--text-primary) !important;
  font-size: 13px !important;
  font-family: 'Montserrat', sans-serif !important;
  outline: none !important;
  transition: border-color 0.15s !important;
}

.store-sidebar .widget-gift-card .gift-card-input:focus {
  border-color: var(--accent-color) !important;
}

.store-sidebar .widget-gift-card .gift-card-input::placeholder {
  color: rgba(255,255,255,0.35) !important;
}

.store-sidebar .widget-gift-card .gift-card-check {
  width: 100% !important;
  height: 40px !important;
  border: none !important;
  border-radius: 8px !important;
  background: var(--accent-color) !important;
  color: #ffffff !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  font-family: 'Montserrat', sans-serif !important;
  text-transform: uppercase !important;
  letter-spacing: 0.04em !important;
  cursor: pointer !important;
  transition: background 0.15s !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
}

.store-sidebar .widget-gift-card .gift-card-check:hover {
  background: var(--accent-hover, #17bfcc) !important;
}

.store-sidebar .widget-gift-card .gift-card-result {
  margin: 0 !important;
}

.store-sidebar .widget-gift-card .gift-card-msg {
  margin: 0 !important;
  padding: 10px 12px !important;
  border-radius: 8px !important;
  font-size: 12px !important;
  line-height: 1.45 !important;
}

.store-sidebar .widget-gift-card .gift-card-msg-success {
  background: rgba(39,174,96,0.12) !important;
  border: 1px solid rgba(39,174,96,0.35) !important;
  color: #b8f0c8 !important;
}

.store-sidebar .widget-gift-card .gift-card-msg-success strong {
  color: #ffffff !important;
}

.store-sidebar .widget-gift-card .gift-card-msg-error {
  background: rgba(231,76,60,0.12) !important;
  border: 1px solid rgba(231,76,60,0.35) !important;
  color: #ffb3ab !important;
}

.store-sidebar .widget-gift-card .gift-card-msg-warning {
  background: rgba(241,196,15,0.1) !important;
  border: 1px solid rgba(241,196,15,0.35) !important;
  color: #ffeaa7 !important;
}

.store-sidebar .widget ul,
.store-sidebar .widget .widget-categories-list,
.store-sidebar .widget nav ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  background: var(--card-neutral) !important;
  border-radius: 0 0 10px 10px !important;
}

.store-sidebar .widget li,
.store-sidebar .widget .category-item {
  border-bottom: 1px solid rgba(255,255,255,0.04) !important;
}
.store-sidebar .widget li:last-child {
  border-bottom: none !important;
}

.store-sidebar .widget li a,
.store-sidebar .widget .category-item a {
  display: flex !important;
  align-items: center !important;
  gap: 13px !important;
  padding: 12px 16px !important;
  transition: background 0.15s, border-left-color 0.15s !important;
  border-left: 3px solid transparent !important;
  color: var(--text-primary) !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  text-decoration: none !important;
}
.store-sidebar .widget li a:hover,
.store-sidebar .widget .category-item a:hover,
.store-sidebar .widget li.active a {
  background: rgba(27,213,234,0.07) !important;
  border-left-color: var(--accent-color) !important;
  color: var(--accent-color) !important;
}

.store-sidebar .widget li a img,
.store-sidebar .widget .category-item img {
  width: 56px !important;
  height: 56px !important;
  border-radius: 6px !important;
  object-fit: contain !important;
  flex-shrink: 0 !important;
  image-rendering: pixelated !important;
  background: transparent !important;
}

.widget-title {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-color);
  padding: 12px 16px 10px;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  margin: 0;
}

.store-sidebar .widget > *:not(.widget-title):not(ul):not(nav):not(.widget-content) {
  padding: 10px 14px;
}

.store-sidebar .widget-featured .widget-content {
  padding: 14px 16px 16px !important;
}

.store-sidebar .widget-featured .store-product {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 0 !important;
}

.store-sidebar .widget-featured .store-product .image-link {
  height: auto !important;
  width: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
  margin: 0 0 10px !important;
}

.store-sidebar .widget-featured .store-product .image-link .image,
.store-sidebar .widget-featured .store-product .image-link .image-default {
  width: 130px !important;
  height: 130px !important;
  max-height: 130px !important;
  margin: 0 !important;
  object-fit: contain !important;
}

.store-sidebar .widget-featured .product-title {
  font-size: 15px !important;
  font-weight: 800 !important;
  text-align: center !important;
  padding: 0 0 4px !important;
  margin: 0 !important;
}

.store-sidebar .widget-featured .pkg-price-display {
  text-align: center !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  padding: 0 0 10px !important;
  margin: 0 !important;
}

.store-sidebar .widget-featured .product-actions .price {
  display: none !important;
}

.store-sidebar .widget-featured .product-actions {
  width: 100% !important;
  padding: 0 !important;
}

.store-sidebar .widget-featured .pkg-btn-row {
  justify-content: center !important;
  width: 100% !important;
}

.store-sidebar .widget-featured .pkg-add-btn.add {
  width: 100% !important;
}

.sidebar-categories-title {
  background: var(--card-neutral);
  border: 1px solid var(--card-border);
  border-bottom: none;
  border-radius: 10px 10px 0 0;
  padding: 14px 16px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-color);
  margin: 0;
  line-height: 1.3;
}
.sidebar-categories-list {
  list-style: none;
  padding: 0;
  margin: 0;
  background: var(--card-neutral);
  border: 1px solid var(--card-border);
  border-top: none;
  border-radius: 0 0 10px 10px;
  overflow: hidden;
}

.sidebar-cat-row .sidebar-cat-link,
.sidebar-cat-row .sidebar-cat-link-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 16px;
  flex: 1;
  min-width: 0;
  text-decoration: none;
  border-left: none !important;
  background: transparent !important;
}
.sidebar-cat-row .sidebar-cat-link:hover,
.sidebar-cat-row .sidebar-cat-link-btn:hover,
.sidebar-cat-item.active .sidebar-cat-row .sidebar-cat-link,
.sidebar-cat-item.active .sidebar-cat-row .sidebar-cat-link-btn {
  border-left: none !important;
  background: transparent !important;
}

.sidebar-cat-img {
  width: 60px;
  height: 60px;
  border-radius: 6px;
  object-fit: contain;
  flex-shrink: 0;
  image-rendering: pixelated;
  background: transparent;
}
.sidebar-cat-img-default {
  width: 52px;
  height: 52px;
  background: #222226;
  border-radius: 8px;
  position: relative;
  flex-shrink: 0;
}
.sidebar-cat-img-default::before {
  content: "";
  position: absolute;
  inset: 8px;
  background-color: #55556a;
  mask: url("https://template-assets.tebex.io/images/package-default.svg") center/contain no-repeat;
}
.sidebar-cat-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  transition: color 0.15s;
}

.sidebar-cat-row:hover .sidebar-cat-name,
.sidebar-cat-item.active > .sidebar-cat-row .sidebar-cat-name {
  color: var(--accent-color) !important;
}


.widget-recent-payments .name,
.widget-recent-payments .ign,
.widget-recent-payments .amount,
.widget-recent-payments .date,
.widget-recent-payments .info,
.widget-recent-payments .payment-amount,
.widget-recent-payments .payment-date,
.widget-recent-payments .payment-name {
  display: none !important;
}
.widget-recent-payments .purchases {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
  padding: 0 !important;
  list-style: none !important;
  margin: 0 !important;
  overflow: visible !important;
}

.widget-recent-payments .payments,
.widget-recent-payments ul {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
  padding: 12px 14px !important;
  list-style: none !important;
  margin: 0 !important;
  overflow: visible !important;
}

.widget-recent-payments li,
.widget-recent-payments .payment,
.widget-recent-payments .purchase {
  position: relative !important;
  width: 40px !important;
  height: 40px !important;
  display: block !important;
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
}

.widget-recent-payments li img,
.widget-recent-payments .payment img,
.widget-recent-payments .purchase .avatar {
  display: block !important;
  width: 40px !important;
  height: 40px !important;
  border-radius: 6px !important;
  image-rendering: pixelated !important;
  object-fit: cover !important;
  border: 2px solid rgba(255,255,255,0.08) !important;
  background: #1a1a1e !important;
  transition: border-color 0.15s, transform 0.15s !important;
  cursor: default !important;
}

.widget-recent-payments li:hover img,
.widget-recent-payments .payment:hover img,
.widget-recent-payments .purchase:hover .avatar {
  border-color: var(--accent-color) !important;
  transform: scale(1.06) !important;
}

.widget-recent-payments .purchase-label {
  position: absolute;
  bottom: calc(100% + 7px);
  top: auto;
  left: 50%;
  transform: translateX(-50%);
  background: #111114;
  color: var(--accent-color);
  font-size: 11px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  white-space: nowrap;
  padding: 5px 10px;
  border-radius: 5px;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 4px 12px rgba(0,0,0,0.45);
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.15s, visibility 0.15s;
  z-index: 100;
}

.widget-recent-payments .purchase:hover {
  z-index: 20;
}

.widget-recent-payments .purchase:hover .purchase-label {
  opacity: 1;
  visibility: visible;
}


.site-main-content {
  background: var(--card-neutral);
  border-radius: 10px;
  border: 1px solid var(--card-border);
  padding: 32px;
  min-height: 400px;
}


.site-home-categories {
  display: grid !important;
  gap: 12px !important;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)) !important;
  padding-top: 24px !important;
  padding-bottom: 4px !important;
}
.site-home-categories .category {
  border-radius: 10px;
  padding: 20px 16px;
  background: var(--card-neutral);
  border: 1px solid var(--card-border);
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}
.site-home-categories .category:hover {
  color: var(--accent-color);
  border-color: rgba(27,213,234,0.4);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(27,213,234,0.1);
}


.store-products-list .store-product,
.store-products-images .store-product {
  border-radius: 10px;
  background: var(--card-neutral);
  border: 1px solid var(--card-border);
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.store-products-list .store-product:hover,
.store-products-images .store-product:hover {
  border-color: rgba(27,213,234,0.3);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(27,213,234,0.08);
}
.store-product-full {
  border-radius: 10px;
  background: var(--card-neutral);
  border: 1px solid var(--card-border);
}
.category-description,
.store-text {
  border-radius: 10px;
  background: var(--card-neutral);
  border: 1px solid var(--card-border);
}
.no-products {
  color: var(--text-secondary);
  background: var(--card-neutral);
  border-radius: 10px;
}


.btn-primary,
.btn-secondary,
.btn-tertiary {
  border-radius: 6px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  letter-spacing: 0.03em;
}
.btn-primary:hover, .btn-primary:focus,
.btn-secondary:hover, .btn-secondary:focus {
  box-shadow: 0 0 14px rgba(27,213,234,0.35);
}


.popup-content {
  position: relative;
  width: 100%;
  max-width: 550px;
  padding: var(--widget-padding);
  background: #18181a;
  transition: translate var(--fade-duration) ease, opacity var(--fade-duration) ease;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.07);
}
.popup-close { border-radius: 0 10px 0 10px; }
.basket-popup-content,
.basket-popup-content .popup-close {
  border-radius: 0;
  background: #18181a;
  border-right: 1px solid var(--card-border);
}
.basket-items {
  padding: var(--widget-padding) calc(var(--content-padding) - var(--widget-padding));
}
.basket-item {
  border-radius: 8px;
  background: #222226;
  border: 1px solid var(--card-border);
}
.basket-item .quantity { border-radius: 3px; }


.input-username {
  flex: 1 1 auto !important;
  padding: 15px !important;
  background-color: #111112 !important;
  border: 1px solid #2a2a2f !important;
  border-radius: 6px !important;
  color: #f0f0f0 !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  font-family: 'Montserrat', sans-serif !important;
  transition: all 0.2s ease-in-out !important;
  box-sizing: border-box !important;
  display: block !important;
  width: 100% !important;
  height: 50px !important;
  outline: none !important;
}
.input-username::placeholder { color: transparent !important; }
.input-username:focus {
  border-color: var(--accent-color) !important;
  background-color: #141416 !important;
  box-shadow: 0 0 0 3px rgba(27,213,234,0.12) !important;
}
.input-username.input-error {
  border: 2px solid #fe3c45 !important;
  background-color: rgba(254,60,69,0.08) !important;
}


.quantity-field {
  border-radius: 6px;
  background: var(--card-neutral);
  border-color: #2a2a2f;
}
.quantity-field input[type=number] {
  border: none;
  background-color: #252528;
  color: #ffffff;
}
.quantity-field .adjust {
  border-radius: 6px;
  background: #252528;
  border: none;
}


.store-category-tiered {
  border-radius: 10px;
  background: var(--card-neutral);
  border: 1px solid var(--card-border);
}
.store-product-tiered {
  border-radius: 8px;
  background: rgba(17,17,18,0.5);
}
.media-slider .slider, .media-slider .thumb { border-radius: 8px; }
.media-slider .open-lightbox { border-radius: 4px; }
.popup.popup-media-slider .thumb { border-radius: 8px; }
.popup.popup-media-slider .popup-close { border-radius: 8px; }
.toast {
  border-radius: 8px;
  background: var(--card-neutral);
  border: 1px solid var(--card-border);
}
.toast-close { border-radius: 3px; }


.site-sale-banner {
  border-radius: 0;
  background: var(--accent-color);
  color: #000;
  text-align: center;
  padding: 10px 32px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  max-width: 100% !important;
}


.site-footer {
  background: #0a0a0c;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: 32px;
  padding: 0;
  max-width: 100% !important;
  width: 100% !important;
}

.site-footer-deluxe {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 32px !important;
  max-width: 1400px !important;
  width: 100% !important;
  margin: 0 auto !important;
}

.site-footer-copy {
  flex: 1;
  min-width: 0;
  text-align: left;
}

.copyright-main {
  margin: 0 0 5px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.72);
}

.copyright-sub {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.38);
}

.site-footer-brand {
  flex-shrink: 0;
  display: block;
  opacity: 0.32;
  transition: opacity 0.2s ease;
}

.site-footer-brand:hover {
  opacity: 0.5;
}

.site-footer-logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
  display: block;
  filter: grayscale(20%);
}

.site-footer-credit {
  display: none !important;
}

.we-accept {
  display: none !important;
}

.copyright {
  display: none !important;
}


.popup .store-form input[type=text],
.popup .store-form input[type=password],
.popup .store-form input[type=email],
.popup .store-form input[type=number],
.popup .store-form select,
.popup .store-form textarea {
  background: #252528 !important;
  color: #ffffff;
  border: 1px solid #2a2a2f;
  border-radius: 6px;
  font-family: 'Montserrat', sans-serif;
}
.popup .store-form .btn-primary {
  width: 100%;
  padding: 10px 20px;
  margin-top: 12px;
  border-radius: 6px;
  font-weight: 700;
}
.price strong, .total strong { color: white !important; }


.widget {
  border-radius: 10px;
  background: var(--card-neutral);
  border: 1px solid var(--card-border);
}
@media (width <= 960px) {
  .widget.site-navigation {
    border-radius: 0;
    background: transparent;
    border: none;
  }
}
.widget-gift-card .gift-card-input { border-radius: 4px; }
.widget-top-donator .avatar { border-radius: 50%; }
.widget-community-goal .progress,
.widget-goal .progress { border-radius: 3px; }
.widget-community-goal .progress-bar,
.widget-goal .progress-bar {
  border-radius: 3px;
  background: var(--accent-color);
}


@media (max-width: 960px) {
  .site-content-sidebar-left {
    grid-template-columns: 1fr !important;
  }
  .header-hero {
    padding: 0 20px;
    height: 200px;
    overflow: hidden;
  }
  .hw-widget { display: none !important; }
  .top-bar { padding: 10px 16px; }
  .header-logo { max-height: 90px; }
  .site-content,
  .site-home-categories,
  .site-footer-inner {
    padding: 0 16px !important;
  }

  .site-footer-deluxe {
    flex-direction: row;
    align-items: center;
    padding: 16px !important;
    gap: 16px;
  }

  .site-footer-logo {
    width: 44px;
    height: 44px;
  }

  .copyright-main {
    font-size: 12px;
  }

  .copyright-sub {
    font-size: 10px;
  }
}
@media (max-width: 600px) {
  .header-hero { height: 160px; }
  .header-logo { max-height: 65px; }
}


.login__header {
  text-align: center;
  margin-bottom: 28px;
}
.login__title {
  color: #f0f0f0;
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 10px 0;
  line-height: 1.3;
  font-family: 'Montserrat', sans-serif;
}
.login__description {
  color: #8a8a9a;
  font-size: 12px;
  font-weight: 400;
  margin: 0;
  line-height: 1.5;
  font-family: 'Montserrat', sans-serif;
}
.username { width: 100%; }
.triplezone-login {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  align-items: stretch;
}
.input-wrapper { width: 100%; }

button.btn-continue-slate,
.popup button.btn-continue-slate,
.popup-content button.btn-continue-slate,
.store-form button.btn-continue-slate,
.triplezone-login button[type="submit"] {
  width: 100% !important;
  max-width: 100% !important;
  height: 50px !important;
  padding: 0 20px !important;
  margin: 0 !important;
  background: #1bd5ea !important;
  background-color: #1bd5ea !important;
  color: #000 !important;
  border: none !important;
  border-bottom: 3px solid rgba(0, 0, 0, 0.15) !important;
  border-radius: 6px !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  font-family: 'Montserrat', sans-serif !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  cursor: pointer !important;
  transition: all 0.2s ease-in-out !important;
  display: block !important;
  text-align: center !important;
  line-height: 47px !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  box-sizing: border-box !important;
}
button.btn-continue-slate:hover,
.popup button.btn-continue-slate:hover,
.store-form button.btn-continue-slate:hover,
.triplezone-login button[type="submit"]:hover {
  background: #13b8cc !important;
  background-color: #13b8cc !important;
  box-shadow: 0 4px 14px rgba(27, 213, 234, 0.3) !important;
}
button.btn-continue-slate:active,
.triplezone-login button[type="submit"]:active {
  border-bottom-width: 1px !important;
  transform: translateY(2px);
}
.bedrock-instruction {
  color: #8a8a9a;
  font-size: 12px;
  text-align: center;
  line-height: 1.4;
  font-family: 'Montserrat', sans-serif;
  margin: 0;
}

.bedrock-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
}

.bedrock-toggle-label {
  color: #f0f0f0;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
}

.bedrock-toggle-options {
  display: flex;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid #2a2a2f;
  flex-shrink: 0;
}

.bedrock-toggle-btn {
  min-width: 52px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 700;
  border: none;
  background: #222226;
  color: #8a8a9a;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  transition: background 0.15s ease, color 0.15s ease;
}

.bedrock-toggle-btn + .bedrock-toggle-btn {
  border-left: 1px solid #2a2a2f;
}

.bedrock-toggle-btn.active[data-value="no"] {
  background: rgba(224, 85, 85, 0.18);
  color: #e05555;
}

.bedrock-toggle-btn.active[data-value="yes"] {
  background: rgba(27, 196, 249, 0.18);
  color: var(--accent-color);
}

.bedrock-toggle-btn:focus-visible {
  outline: 2px solid var(--accent-color);
  outline-offset: 2px;
}


.home-welcome-sub {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-color);
  margin-bottom: 4px;
}
.home-welcome-title {
  font-size: 28px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 20px;
  line-height: 1.1;
  letter-spacing: -0.5px;
}
.info-block {
  border-radius: 8px;
  padding: 16px 18px;
  margin: 14px 0;
  border-left: 4px solid;
  background: rgba(255,255,255,0.03);
}
.info-block-title {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px !important;
}
.info-block p { margin-bottom: 0 !important; line-height: 1.6; font-size: 14px; }
.info-block a { color: var(--accent-color); text-decoration: underline; }
.info-block a:hover { color: var(--accent-hover); }

.info-block-purple {
  border-left-color: #7c5cbf;
  background: rgba(124,92,191,0.07);
}
.info-block-purple .info-block-title { color: #a67edd; }
.info-block-green {
  border-left-color: #3a8a5c;
  background: rgba(58,138,92,0.07);
}
.info-block-green .info-block-title { color: #4dbb7a; }
.info-block-red {
  border-left-color: #8a3a3a;
  background: rgba(138,58,58,0.07);
}
.info-block-red .info-block-title { color: #dd7a7a; }

.site-main-content .widget-goal,
.site-main-content .widget-community-goal {
  margin-top: 16px;
  background: rgba(255,255,255,0.03) !important;
  border: 1px solid var(--card-border) !important;
  border-radius: 8px !important;
}


.top-bar-back {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 999px;
  padding: 8px 18px 8px 14px;
  text-decoration: none;
}
.top-bar-back:hover {
  background: rgba(255,255,255,0.22);
  color: #fff;
}
.top-bar-back-icon { font-size: 14px; }
#bg-hero {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 560px;
  z-index: -1;
  background:
    var(--bg-image,
      linear-gradient(135deg, #0a0a0e 0%, #1a1a2e 50%, #0a0a0e 100%)
    ) center top / cover no-repeat;
  filter: brightness(0.82) saturate(1.1);
  pointer-events: none;
}
.hw-status {
  font-size: 13px;
  font-weight: 800;
  color: #1bd5ea;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.hw-icon-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #1bd5ea;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
}


.info-block-disclaimer {
  border-left-color: #7a6a20;
  background: rgba(120,100,20,0.10);
}
.info-block-disclaimer .info-block-title { color: #c9b040; }


.info-block-red {
  border-left-color: #7a3535;
  background: rgba(100,40,40,0.12);
}
.info-block-red .info-block-title { color: #c97070; }


.info-block-payment {
  border-left: 4px solid #3a3a55;
  background: rgba(20,20,30,0.6);
  border-radius: 8px;
  margin: 14px 0;
}

.payment-methods-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.payment-methods-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}

.payment-methods-text {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.4;
}


.sidebar-cat-item {
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.sidebar-cat-item:last-child {
  border-bottom: none;
}

.sidebar-cat-row {
  display: flex;
  align-items: center;
  border-left: 3px solid transparent;
  transition: background 0.15s, border-left-color 0.15s;
  min-height: 72px;
}
.sidebar-cat-row:hover,
.sidebar-cat-item.active > .sidebar-cat-row {
  background: rgba(27,213,234,0.07);
  border-left-color: var(--accent-color);
}
.sidebar-cat-row:hover .sidebar-cat-name,
.sidebar-cat-item.active .sidebar-cat-name {
  color: var(--accent-color) !important;
}

.sidebar-cat-row:hover .sidebar-cat-arrow-btn {
  color: var(--accent-color);
}
.sidebar-cat-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 16px;
  flex: 1;
  min-width: 0;
  text-decoration: none;
  border-left: none !important;
  background: transparent !important;
}
.sidebar-cat-link-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 16px;
  flex: 1;
  min-width: 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  text-align: left;
}
.sidebar-cat-arrow-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0 16px 0 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  height: 72px;
  color: var(--text-primary);
  transition: color 0.2s ease;
}
.sidebar-cat-item.open > .sidebar-cat-row .sidebar-cat-arrow-btn {
  color: var(--accent-color);
}
.sidebar-cat-arrow-btn svg {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
}
.sidebar-cat-item.open > .sidebar-cat-row .sidebar-cat-arrow-btn svg {
  transform: rotate(180deg);
}
.sidebar-subcategories {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.25s ease;
  background: rgba(0,0,0,0.2);
}
.sidebar-subcategories.open {
  max-height: 500px;
  opacity: 1;
}

.sidebar-subcat-item {
  border-bottom: 1px solid rgba(255,255,255,0.03);
}
.sidebar-subcat-item:last-child {
  border-bottom: none;
}
.sidebar-subcat-item a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px 12px 32px;
  transition: background 0.15s, border-left-color 0.15s;
  border-left: 3px solid transparent;
  text-decoration: none;
}
.sidebar-subcat-item a:hover,
.sidebar-subcat-item.active a {
  background: rgba(27,213,234,0.06);
  border-left-color: var(--accent-color);
}
.sidebar-subcat-dot {
  color: var(--accent-color);
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  flex-shrink: 0;
}
.sidebar-subcat-name {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--text-secondary);
  transition: color 0.15s;
}
.sidebar-subcat-item a:hover .sidebar-subcat-name,
.sidebar-subcat-item.active .sidebar-subcat-name {
  color: var(--accent-color);
}


.category-header {
  background: var(--card-neutral);
  border: 1px solid var(--card-border);
  border-radius: 10px;
  padding: 20px 24px;
  margin-bottom: 12px;
}

.category-title {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent-color);
  margin: 0 0 10px 0;
}

.category-description-text {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
  max-width: 720px;
}

.category-description-text p {
  margin: 0 0 6px 0;
}

.category-packages {
  background: var(--card-neutral);
  border: 1px solid var(--card-border);
  border-radius: 10px;
  padding: 20px 24px;
}

.no-products {
  padding: 40px 24px;
  text-align: center;
  color: var(--text-secondary);
  font-size: 14px;
  background: var(--card-neutral);
  border: 1px solid var(--card-border);
  border-radius: 10px;
}


.category-description-text p {
  margin: 0 0 2px 0 !important;
  line-height: 1.2 !important;
}

.category-description-text {
  line-height: 1.2 !important;
}


.store-product-popup-content {
  padding: 0 !important;
  overflow: hidden !important;
  max-width: 860px !important;
  width: 90vw !important;
  border-radius: 10px !important;
  background: #18181a !important;
  border: 1px solid var(--card-border) !important;
}

.pkg-popup-inner {
  display: grid;
  grid-template-columns: 240px 1fr;
  min-height: 400px;
  max-height: 80vh;
}
.pkg-popup-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 28px 20px;
  background: #111114;
  border-right: 1px solid var(--card-border);
  text-align: center;
}

.pkg-popup-img {
  width: 150px;
  height: 150px;
  object-fit: contain;
  image-rendering: pixelated;
  border-radius: 8px;
}

.pkg-popup-img-default {
  width: 150px;
  height: 150px;
  background: #222226;
  border-radius: 8px;
}

.pkg-popup-name {
  font-size: 17px;
  font-weight: 800;
  color: var(--text-primary);
  margin: 4px 0 0;
  line-height: 1.2;
}

.pkg-popup-price {
  font-size: 15px;
  font-weight: 700;
  color: var(--accent-color);
  margin: 0;
}

.pkg-popup-btns {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}

.pkg-popup-btns .btn-primary,
.pkg-popup-btns .btn-secondary {
  width: 100% !important;
  text-align: center !important;
}
.pkg-popup-right {
  overflow-y: auto;
  max-height: 80vh;
  padding: 24px;
}

.pkg-popup-description {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}
.store-product-popup .popup-close {
  top: 12px !important;
  right: 12px !important;
}

@media (max-width: 640px) {
  .pkg-popup-inner {
    grid-template-columns: 1fr;
  }
  .pkg-popup-left {
    border-right: none;
    border-bottom: 1px solid var(--card-border);
  }
}

.store-product .actions.product-actions {
  display: none !important;
}

.product-price-row {
  padding: 0 14px 8px;
}
.product-price-custom {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-secondary);
  margin: 0;
}
.product-btn-row {
  display: flex;
  gap: 0;
  padding: 0 14px 14px;
  align-items: center;
  border-radius: 8px;
  overflow: hidden;
}
.pkg-info-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  background: rgba(27,213,234,0.15);
  border: 1px solid var(--accent-color);
  border-right: none;
  border-radius: 8px 0 0 8px;
  color: var(--accent-color);
  transition: background 0.2s;
  text-decoration: none;
}
.pkg-info-btn:hover {
  background: rgba(27,213,234,0.28);
}
.pkg-add-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  height: 38px;
  background: var(--accent-color);
  color: #000;
  font-size: 12px;
  font-weight: 800;
  font-family: 'Montserrat', sans-serif;
  border: 1px solid var(--accent-color);
  border-radius: 0 8px 8px 0;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, box-shadow 0.2s;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}
.pkg-add-btn:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  box-shadow: 0 4px 16px rgba(27,213,234,0.25);
}
.pkg-add-btn:active {
  transform: translateY(1px);
}
.pkg-add-btn[disabled] {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}
.store-products-images {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 12px !important;
}

.store-products-list {
  display: flex !important;
  flex-direction: column !important;
  gap: 10px !important;
}

.store-products-images .store-product .image-link {
  height: 175px !important;
}

.store-products-images .store-product .image-link .image {
  max-height: 155px !important;
  object-fit: contain !important;
}

.store-products-images .store-product .product-title {
  font-size: 15px !important;
  font-weight: 800 !important;
  text-align: center !important;
  padding: 10px 12px 6px !important;
  margin: 0 !important;
}

.store-products-images .store-product .product-title a {
  display: block;
  text-align: center !important;
  font-weight: inherit !important;
}

.store-products-list .store-product {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 16px !important;
  padding: 14px 18px !important;
  text-align: left !important;
}

.store-products-list .store-product:hover {
  transform: none !important;
}

.store-products-list .store-product > .store-product-media {
  flex: 0 0 72px;
  position: relative;
  overflow: visible;
}

.store-products-list .store-product .pkg-sale-badge {
  top: 4px;
  right: -8px;
  font-size: 8px;
  padding: 4px 7px;
  transform: rotate(12deg) scale(0.9);
}

.store-products-list .store-product .image-link {
  width: 72px !important;
  height: 72px !important;
  margin: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: rgba(0, 0, 0, 0.22);
  border-radius: 8px;
  overflow: hidden;
}

.store-products-list .store-product .image-link .image,
.store-products-list .store-product .image-link .image-default {
  width: auto !important;
  max-width: 56px !important;
  max-height: 56px !important;
  height: auto !important;
  margin: 0 !important;
  object-fit: contain !important;
}

.store-products-list .store-product .image-default {
  width: 56px !important;
  aspect-ratio: 1;
}

.store-products-list .store-product .product-title {
  flex: 1 1 auto;
  font-size: 16px !important;
  font-weight: 800 !important;
  text-align: left !important;
  padding: 0 !important;
  margin: 0 !important;
  margin-right: 0 !important;
}

.store-products-list .store-product .product-title a {
  display: inline;
  text-align: left !important;
  white-space: normal;
  overflow: visible;
  text-overflow: unset;
  word-break: normal;
}

.store-products-list .store-product .pkg-list-end {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  flex: 0 0 auto !important;
  margin-left: auto !important;
}

.store-products-list .store-product .pkg-list-end .pkg-price-display {
  flex: 0 0 auto;
  min-width: 0;
  padding: 0 !important;
  margin: 0 !important;
  font-size: 16px !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  text-align: right !important;
  white-space: nowrap;
}

.store-products-list .store-product .pkg-list-end .pkg-price-display .pkg-price-block {
  display: inline-flex !important;
  flex-direction: row !important;
  align-items: baseline !important;
  justify-content: flex-end !important;
  gap: 8px !important;
  width: auto !important;
}

.store-products-list .store-product .pkg-list-end .pkg-price-display .pkg-price-original,
.store-products-list .store-product .pkg-list-end .pkg-price-display .pkg-price-current {
  display: inline !important;
  line-height: 1.2 !important;
}

.store-products-list .store-product .pkg-list-end .pkg-price-display .pkg-price-original del {
  font-size: 13px !important;
}

.store-products-list .store-product .pkg-list-end .pkg-price-display .pkg-price-current strong {
  font-size: 16px !important;
  font-weight: 800 !important;
  text-shadow: none !important;
}

.store-products-list .store-product .pkg-list-end .actions.product-actions {
  flex: 0 0 auto;
  width: auto !important;
  min-width: 132px;
  padding: 0 !important;
  margin: 0 !important;
}

.store-products-list .store-product .pkg-list-end .pkg-btn-row {
  width: auto !important;
  margin-top: 0 !important;
  justify-content: flex-end;
}

.store-products-list .store-product .pkg-add-btn.add,
.store-products-list .store-product .pkg-add-btn.subscribe {
  flex: 0 0 auto !important;
  min-width: 132px !important;
  width: auto !important;
  height: 38px !important;
  padding: 0 16px !important;
  border-radius: 6px !important;
}
.product-price-row {
  padding: 0 12px 6px !important;
}
.product-price-custom {
  font-size: 13px !important;
  color: #ffffff !important;
  margin: 0 !important;
}
.product-btn-row {
  display: flex !important;
  flex-direction: row !important;
  gap: 6px !important;
  padding: 0 12px 12px !important;
  align-items: center !important;
  border-radius: 0 !important;
  overflow: visible !important;
}
.pkg-info-btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 34px !important;
  height: 34px !important;
  flex-shrink: 0 !important;
  background: var(--accent-color) !important;
  border: none !important;
  border-radius: 6px !important;
  color: #000 !important;
  font-weight: 900 !important;
  transition: background 0.2s, box-shadow 0.2s !important;
  text-decoration: none !important;
}
.pkg-info-btn:hover {
  background: var(--accent-hover) !important;
  box-shadow: 0 4px 14px rgba(27,213,234,0.3) !important;
}
.pkg-info-btn svg {
  width: 15px !important;
  height: 15px !important;
  fill: #000 !important;
}
.pkg-add-btn {
  flex: 1 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 5px !important;
  height: 34px !important;
  background: var(--accent-color) !important;
  color: #000 !important;
  font-size: 11px !important;
  font-weight: 800 !important;
  font-family: 'Montserrat', sans-serif !important;
  border: none !important;
  border-radius: 6px !important;
  cursor: pointer !important;
  text-decoration: none !important;
  transition: background 0.2s, box-shadow 0.2s !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase !important;
  white-space: nowrap !important;
}
.pkg-add-btn:hover {
  background: var(--accent-hover) !important;
  box-shadow: 0 4px 14px rgba(27,213,234,0.3) !important;
}
.pkg-add-btn:active {
  transform: translateY(1px) !important;
}
.pkg-add-btn[disabled] {
  opacity: 0.4 !important;
  cursor: not-allowed !important;
  pointer-events: none !important;
}


.store-product .actions.product-actions.product-btn-row {
  display: flex !important;
  flex-direction: row !important;
  gap: 6px !important;
  padding: 0 12px 12px !important;
  align-items: center !important;
}
.pkg-info-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  background: #1a6fa8;
  border: none;
  border-radius: 6px;
  color: #fff;
  transition: background 0.2s;
  text-decoration: none;
}


.pkg-add-btn:not([disabled]) {
  opacity: 1 !important;
  pointer-events: auto !important;
  cursor: pointer !important;
}

.pkg-add-btn.add:not([disabled]),
.pkg-add-btn.subscribe:not([disabled]) {
  opacity: 1 !important;
  pointer-events: auto !important;
  cursor: pointer !important;
}
.product-btn-row .pkg-add-btn,
.product-btn-row a.add,
.product-btn-row a.subscribe {
  opacity: 1 !important;
  pointer-events: auto !important;
  cursor: pointer !important;
  display: flex !important;
}
.product-actions.product-btn-row {
  display: flex !important;
  flex-direction: row !important;
  gap: 6px !important;
  padding: 0 12px 12px !important;
  align-items: center !important;
  opacity: 1 !important;
  visibility: visible !important;
}
.pkg-info-btn i {
  font-style: italic !important;
  font-family: Georgia, 'Times New Roman', serif !important;
  font-size: 15px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  color: #000 !important;
}
.popup-content.store-form {
  background: var(--card-neutral) !important;
}


.top-bar-combo { display: none !important; }

.top-bar-user-basket {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  padding: 5px 8px 5px 5px !important;
  background: rgba(20,20,24,0.85) !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
  border-radius: 10px !important;
  cursor: pointer !important;
  transition: border-color 0.2s !important;
  font-family: 'Montserrat', sans-serif !important;
}
.top-bar-user-basket:hover {
  border-color: var(--accent-color) !important;
}
.top-bar-ub-avatar {
  width: 42px !important;
  height: 42px !important;
  border-radius: 6px !important;
  image-rendering: pixelated !important;
  flex-shrink: 0 !important;
  display: block !important;
}
.top-bar-ub-info {
  display: flex !important;
  flex-direction: column !important;
  line-height: 1.25 !important;
  text-align: left !important;
}
.top-bar-ub-name {
  font-size: 13px !important;
  font-weight: 700 !important;
  color: var(--text-primary) !important;
}
.top-bar-ub-sub {
  font-size: 10px !important;
  font-weight: 600 !important;
  color: var(--text-secondary) !important;
  text-transform: none !important;
  letter-spacing: 0.01em !important;
  white-space: nowrap !important;
}
.top-bar-ub-count {
  min-width: 28px !important;
  height: 28px !important;
  background: var(--accent-color) !important;
  color: #000 !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  border-radius: 6px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
}
.basket-popup-content {
  background: #18181a !important;
  border-left: 1px solid var(--card-border) !important;
  width: 380px !important;
  max-width: 95vw !important;
}
.basket-header,
.basket-popup-content .basket-header {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  padding: 16px 20px !important;
  background: #111114 !important;
  border-bottom: 1px solid var(--card-border) !important;
}
.basket-header .avatar,
.basket-popup-content .avatar {
  width: 48px !important;
  height: 48px !important;
  border-radius: 8px !important;
  image-rendering: pixelated !important;
  flex-shrink: 0 !important;
}
.basket-header .username,
.basket-header .name,
.basket-popup-content .basket-username {
  font-size: 14px !important;
  font-weight: 800 !important;
  color: var(--accent-color) !important;
  font-family: 'Montserrat', sans-serif !important;
}
.basket-header .btn-logout,
.basket-popup-content a[href="/checkout/logout"],
.basket-popup-content .logout {
  display: inline-flex !important;
  align-items: center !important;
  padding: 4px 10px !important;
  background: rgba(220,60,60,0.15) !important;
  border: 1px solid rgba(220,60,60,0.4) !important;
  border-radius: 5px !important;
  color: #e05555 !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  transition: background 0.2s !important;
  text-decoration: none !important;
}
.basket-popup-content a[href="/checkout/logout"]:hover {
  background: rgba(220,60,60,0.3) !important;
}
.basket-popup-content .currency-selector,
.basket-popup-content select[name="currency"] {
  background: #222226 !important;
  border: 1px solid var(--card-border) !important;
  border-radius: 5px !important;
  color: var(--text-primary) !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  padding: 4px 8px !important;
}
.basket-popup-content .basket-empty,
.basket-popup-content .empty {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  padding: 48px 24px !important;
  text-align: center !important;
}
.basket-popup-content .basket-empty strong,
.basket-popup-content .empty strong {
  font-size: 16px !important;
  font-weight: 800 !important;
  color: var(--accent-color) !important;
  text-transform: uppercase !important;
  letter-spacing: 0.06em !important;
}
.basket-popup-content .basket-empty p,
.basket-popup-content .empty p {
  font-size: 13px !important;
  color: var(--text-secondary) !important;
  line-height: 1.5 !important;
}
.basket-item {
  background: #222226 !important;
  border: 1px solid var(--card-border) !important;
  border-radius: 8px !important;
  margin: 8px 16px !important;
  padding: 12px !important;
}
.basket-popup-content .btn-checkout,
.basket-popup-content a.btn-primary[href*="checkout"] {
  width: calc(100% - 32px) !important;
  margin: 12px 16px !important;
  display: block !important;
  text-align: center !important;
  background: var(--accent-color) !important;
  color: #000 !important;
  font-weight: 800 !important;
  border-radius: 8px !important;
  padding: 12px !important;
}
.basket-popup-content .popup-close {
  background: #222226 !important;
  border: 1px solid var(--card-border) !important;
  border-radius: 6px !important;
  color: var(--text-secondary) !important;
  font-size: 18px !important;
  width: 32px !important;
  height: 32px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}


#basket-overlay {
  display: block !important;
  position: fixed !important;
  inset: 0 !important;
  z-index: 99999 !important;
  background: rgba(0, 0, 0, 0) !important;
  backdrop-filter: blur(0) !important;
  -webkit-backdrop-filter: blur(0) !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
  transition: opacity 0.35s ease, visibility 0.35s ease, background 0.35s ease, backdrop-filter 0.35s ease !important;
}
#basket-overlay.open {
  visibility: visible !important;
  opacity: 1 !important;
  pointer-events: auto !important;
  background: rgba(0, 0, 0, 0.6) !important;
  backdrop-filter: blur(3px) !important;
  -webkit-backdrop-filter: blur(3px) !important;
}

#basket-panel {
  position: fixed !important;
  top: 50% !important;
  left: 50% !important;
  right: auto !important;
  width: 420px !important;
  max-width: calc(100vw - 32px) !important;
  max-height: min(560px, calc(100vh - 48px)) !important;
  background: #161618 !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 12px !important;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.65) !important;
  display: flex !important;
  flex-direction: column !important;
  z-index: 100000 !important;
  transform: translate(-50%, calc(-50% + 12px)) scale(0.96) !important;
  opacity: 0 !important;
  transition: transform 0.28s ease, opacity 0.28s ease !important;
  overflow: hidden !important;
  will-change: transform, opacity;
}

#basket-overlay.open #basket-panel {
  transform: translate(-50%, -50%) scale(1) !important;
  opacity: 1 !important;
}

.bk-topbar {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 12px !important;
  padding: 14px 16px !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  flex-shrink: 0 !important;
}

.bk-cart-title {
  margin: 0 !important;
  font-size: 18px !important;
  font-weight: 800 !important;
  color: #1bc4f9 !important;
  letter-spacing: 0.02em !important;
}

.bk-topbar-actions {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
}

.bk-user-row {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  padding: 10px 16px !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
  flex-shrink: 0 !important;
}

.bk-avatar {
  width: 34px !important;
  height: 34px !important;
  border-radius: 6px !important;
  image-rendering: pixelated !important;
  flex-shrink: 0 !important;
  display: block !important;
}

.bk-name {
  font-size: 13px !important;
  font-weight: 700 !important;
  color: rgba(255, 255, 255, 0.88) !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

.bk-logout {
  display: inline-flex !important;
  align-items: center !important;
  padding: 5px 10px !important;
  background: rgba(220, 60, 60, 0.12) !important;
  border: 1px solid rgba(220, 60, 60, 0.35) !important;
  border-radius: 6px !important;
  color: #e05555 !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  text-decoration: none !important;
}

.bk-logout:hover {
  background: rgba(220, 60, 60, 0.24) !important;
}

.bk-currency-wrap {
  position: relative !important;
}

.bk-currency-btn {
  display: flex !important;
  align-items: center !important;
  gap: 4px !important;
  background: #222226 !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 6px !important;
  color: var(--text-secondary) !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  padding: 5px 9px !important;
  cursor: pointer !important;
  font-family: 'Montserrat', sans-serif !important;
}

.bk-currency-list {
  display: none !important;
  position: absolute !important;
  top: calc(100% + 4px) !important;
  right: 0 !important;
  left: auto !important;
  background: #1a1a1e !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 6px !important;
  list-style: none !important;
  padding: 4px 0 !important;
  margin: 0 !important;
  min-width: 80px !important;
  z-index: 10 !important;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4) !important;
}

.bk-currency-list.open {
  display: block !important;
}

.bk-currency-list li a {
  display: block !important;
  padding: 6px 12px !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  color: var(--text-secondary) !important;
  text-decoration: none !important;
}

.bk-currency-list li a:hover,
.bk-currency-list li.active a {
  background: rgba(27, 196, 249, 0.1) !important;
  color: #1bc4f9 !important;
}

.bk-close {
  position: static !important;
  transform: none !important;
  background: #222226 !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 6px !important;
  color: var(--text-secondary) !important;
  font-size: 13px !important;
  width: 30px !important;
  height: 30px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  padding: 0 !important;
}

.bk-close:hover {
  background: #2e2e35 !important;
  color: #fff !important;
}

.bk-body {
  flex: 1 !important;
  overflow-y: auto !important;
  overflow-x: hidden !important;
}

.bk-empty {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  padding: 40px 24px !important;
  text-align: center !important;
}

.bk-empty strong {
  font-size: 14px !important;
  font-weight: 800 !important;
  color: #1bc4f9 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.06em !important;
}

.bk-empty p {
  font-size: 12px !important;
  color: var(--text-secondary) !important;
  line-height: 1.5 !important;
  max-width: 260px !important;
  margin: 0 !important;
}

.bk-items {
  padding: 10px 12px !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 6px !important;
}

.bk-item {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 12px !important;
  background: #1e1e22 !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  border-radius: 8px !important;
  padding: 11px 12px !important;
}

.bk-item-name {
  flex: 1 !important;
  min-width: 0 !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  color: #fff !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

.bk-item-qty {
  display: inline-block;
  margin-right: 6px;
  padding: 1px 6px;
  border-radius: 4px;
  background: rgba(27, 196, 249, 0.15);
  color: #1bc4f9;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.03em;
  vertical-align: middle;
}

.bk-item-right {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  flex-shrink: 0 !important;
}

.bk-item-price {
  font-size: 12px !important;
  font-weight: 700 !important;
  color: rgba(255, 255, 255, 0.85) !important;
  white-space: nowrap !important;
}

.bk-item-remove {
  color: var(--text-secondary) !important;
  flex-shrink: 0 !important;
  padding: 4px !important;
  border: none !important;
  background: transparent !important;
  border-radius: 5px !important;
  display: flex !important;
  align-items: center !important;
  cursor: pointer !important;
}

.bk-item-remove:hover {
  background: rgba(220, 60, 60, 0.15) !important;
  color: #e05555 !important;
}

.bk-footer {
  padding: 12px 14px 14px !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 12px !important;
  flex-shrink: 0 !important;
}

.bk-total {
  display: flex !important;
  flex-direction: column !important;
  gap: 2px !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  color: var(--text-secondary) !important;
}

.bk-total strong {
  font-size: 15px !important;
  color: #fff !important;
}

.bk-checkout-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 6px !important;
  background: #1bc4f9 !important;
  color: #000 !important;
  font-weight: 800 !important;
  font-size: 12px !important;
  border: none !important;
  border-radius: 8px !important;
  padding: 10px 18px !important;
  text-decoration: none !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
  transition: background 0.2s !important;
  white-space: nowrap !important;
}

.bk-checkout-btn:hover {
  background: #13b8dd !important;
}

.bk-qty-field {
  display: flex !important;
  align-items: center !important;
  height: 32px !important;
  border-radius: 6px !important;
  background: #1a1a1e !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  overflow: hidden !important;
}

.bk-qty-field input.quantity {
  width: 32px !important;
  height: 100% !important;
  border: none !important;
  background: transparent !important;
  color: var(--text-primary) !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  text-align: center !important;
  padding: 0 !important;
  -moz-appearance: textfield !important;
}

.bk-qty-field input.quantity::-webkit-inner-spin-button,
.bk-qty-field input.quantity::-webkit-outer-spin-button {
  -webkit-appearance: none !important;
  margin: 0 !important;
}

.bk-qty-field .adjust {
  width: 28px !important;
  height: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: #252528 !important;
  border: none !important;
  color: var(--text-primary) !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  cursor: pointer !important;
  padding: 0 !important;
}

.bk-qty-field .adjust:disabled {
  opacity: 0.4 !important;
  cursor: not-allowed !important;
  pointer-events: none !important;
}

.bk-qty-field input.quantity:disabled {
  opacity: 0.6 !important;
  cursor: not-allowed !important;
}

.pkg-popup-qty .adjust:disabled,
.pkg-qty-field .adjust:disabled {
  opacity: 0.45 !important;
  cursor: not-allowed !important;
  pointer-events: none !important;
}

.pkg-info-row {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 6px !important;
  padding: 0 12px 12px !important;
}
.pkg-info-btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 34px !important;
  height: 34px !important;
  flex-shrink: 0 !important;
  background: var(--accent-color) !important;
  border-radius: 6px !important;
  text-decoration: none !important;
  transition: background 0.2s !important;
}
.pkg-info-btn:hover { background: var(--accent-hover) !important; }
.pkg-info-btn i {
  font-style: italic !important;
  font-family: Georgia, serif !important;
  font-size: 15px !important;
  font-weight: 900 !important;
  color: #000 !important;
  line-height: 1 !important;
}
.pkg-info-row .product-actions .price { display: none !important; }

.pkg-info-row .product-actions {
  flex: 1 !important;
  display: flex !important;
  flex-direction: row !important;
  gap: 6px !important;
  padding: 0 !important;
  margin: 0 !important;
}

.pkg-info-row .product-actions a.add,
.pkg-info-row .product-actions a.subscribe {
  flex: 1 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  height: 34px !important;
  background: var(--accent-color) !important;
  color: #000 !important;
  font-size: 11px !important;
  font-weight: 800 !important;
  font-family: 'Montserrat', sans-serif !important;
  border: none !important;
  border-radius: 6px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  text-decoration: none !important;
  transition: background 0.2s !important;
  opacity: 1 !important;
  pointer-events: auto !important;
  cursor: pointer !important;
}
.pkg-info-row .product-actions a.add:hover,
.pkg-info-row .product-actions a.subscribe:hover {
  background: var(--accent-hover) !important;
}
.pkg-info-row .product-actions a[disabled] {
  opacity: 0.4 !important;
  cursor: not-allowed !important;
  pointer-events: none !important;
}
.pkg-info-row .product-actions .quantity-field,
.pkg-info-row .product-actions .open-basket-cta {
  flex: 1 !important;
  height: 34px !important;
  border-radius: 6px !important;
}

.store-product .actions.product-actions {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  padding: 0 12px 12px !important;
}
.pkg-btn-row {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 6px !important;
  margin-top: 6px !important;
}
.pkg-info-btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 34px !important;
  min-width: 34px !important;
  height: 34px !important;
  background: var(--accent-color) !important;
  border-radius: 6px !important;
  text-decoration: none !important;
  flex-shrink: 0 !important;
  transition: background 0.2s !important;
}
.pkg-info-btn:hover { background: var(--accent-hover) !important; }
.pkg-info-btn i {
  font-style: italic !important;
  font-family: Georgia, serif !important;
  font-size: 15px !important;
  font-weight: 900 !important;
  color: #000 !important;
  line-height: 1 !important;
}
.pkg-add-btn {
  flex: 1 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  height: 34px !important;
  background: var(--accent-color) !important;
  color: #000 !important;
  font-size: 11px !important;
  font-weight: 800 !important;
  font-family: 'Montserrat', sans-serif !important;
  border: none !important;
  border-radius: 6px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  text-decoration: none !important;
  cursor: pointer !important;
  opacity: 1 !important;
  pointer-events: auto !important;
  transition: background 0.2s !important;
  white-space: nowrap !important;
}
.pkg-add-btn:hover { background: var(--accent-hover) !important; }
.pkg-add-btn[disabled] {
  opacity: 0.4 !important;
  cursor: not-allowed !important;
  pointer-events: none !important;
}
.store-product .product-actions .price {
  display: none !important;
}

.basket-popup,
.basket-popup.popup,
div.basket-popup {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
.bk-terms {
  padding: 12px 0 8px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.bk-terms-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  line-height: 1.4;
}
.bk-terms-label input[type="checkbox"] {
  flex-shrink: 0;
  margin-top: 2px;
  width: 15px;
  height: 15px;
  accent-color: var(--accent-color);
  cursor: pointer;
}
.bk-terms-label a {
  color: var(--accent-color);
  text-decoration: underline;
}
.bk-checkout-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}

body .basket-popup,
body div.basket-popup,
body .popup.basket-popup {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
  position: fixed !important;
  z-index: -9999 !important;
}

.bk-currency-code {
  margin-left: 4px;
  font-size: 0.92em;
  opacity: 0.85;
}

.page-checkout .site-content .basket.checkout-items-form {
  display: block !important;
  position: relative !important;
  z-index: 1 !important;
}

.page-checkout .site-main-content .checkout-page {
  background: var(--card-neutral) !important;
  border: 1px solid var(--card-border) !important;
  border-radius: 12px !important;
  overflow: hidden !important;
  padding: 0 !important;
}

.page-checkout .checkout-items-form {
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
}

.page-checkout .checkout-page-wrap {
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.page-checkout .basket-redeem,
.page-checkout .basket-second-header {
  display: none !important;
}

.checkout-page-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.checkout-page-title {
  margin: 0;
  font-size: 28px;
  font-weight: 800;
  color: #1bc4f9;
}

.checkout-page-total {
  margin: 0;
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  white-space: nowrap;
}

.checkout-page-total strong {
  display: inline;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
}

.checkout-page-currency {
  font-size: 14px;
  color: var(--text-secondary);
  margin-left: 6px;
}

.checkout-table-wrap {
  padding: 0 24px;
}

.checkout-table-head,
.checkout-row {
  display: grid;
  grid-template-columns: minmax(110px, 1.35fr) minmax(90px, 1.45fr) minmax(72px, 0.75fr) minmax(118px, 0.95fr) 40px;
  gap: 14px;
  align-items: center;
}

.page-checkout .checkout-page .basket-items {
  display: block !important;
  padding: 0 !important;
  gap: 0 !important;
}

.page-checkout .checkout-page .checkout-row.basket-item {
  display: grid !important;
  grid-template-columns: minmax(110px, 1.35fr) minmax(90px, 1.45fr) minmax(72px, 0.75fr) minmax(118px, 0.95fr) 40px !important;
  gap: 14px !important;
  align-items: center !important;
  width: 100% !important;
  padding: 14px 0 !important;
  margin: 0 !important;
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
}

.page-checkout .checkout-page .checkout-cell {
  min-width: 0;
}

.page-checkout .checkout-page .checkout-cell-price {
  white-space: nowrap;
}

.page-checkout .checkout-page .checkout-cell-price strong {
  display: inline;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}

.page-checkout .checkout-page .checkout-cell-qty {
  display: flex;
  justify-content: center;
}

.checkout-table-head .checkout-head-qty,
.checkout-table-head span:nth-child(4) {
  text-align: center;
}

.page-checkout .checkout-page .checkout-cell-remove {
  display: flex;
  justify-content: center;
}

.page-checkout .checkout-page .checkout-qty-field {
  width: 100%;
  max-width: 118px;
  margin: 0 auto;
}

.checkout-table-head {
  padding: 14px 0 10px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #1bc4f9;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.checkout-row {
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.checkout-cell-name a {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.checkout-item-qty {
  display: inline-block;
  margin-left: 6px;
  padding: 1px 6px;
  border-radius: 4px;
  background: rgba(27, 196, 249, 0.15);
  color: #1bc4f9;
  font-size: 11px;
  font-weight: 800;
}

.checkout-empty {
  background: var(--card-neutral);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 48px 32px;
  text-align: center;
}

.checkout-empty h1 {
  margin: 0 0 10px;
  color: #1bc4f9;
  font-size: 28px;
}

.checkout-empty p {
  margin: 0 0 20px;
  color: var(--text-secondary);
}

.checkout-empty-btn {
  display: inline-flex;
  padding: 10px 18px;
  border-radius: 8px;
  background: #1bc4f9;
  color: #000;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 12px;
}

.checkout-cell-name a:hover {
  color: #1bc4f9;
}

.checkout-options {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 12px;
  color: var(--text-secondary);
}

.checkout-options li {
  margin: 0 0 3px;
}

.checkout-cell-price {
  font-weight: 700;
  color: #fff;
}

.checkout-qty-field {
  display: flex;
  align-items: center;
  height: 34px;
  border-radius: 6px;
  background: #121214;
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.checkout-qty-field input.quantity {
  width: 36px;
  border: none;
  background: transparent;
  color: #fff;
  text-align: center;
  font-weight: 700;
}

.checkout-qty-field .adjust {
  width: 30px;
  height: 100%;
  border: none;
  background: transparent;
  color: #1bc4f9;
  cursor: pointer;
}

.checkout-qty-field .adjust:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.checkout-remove-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: none;
  border-radius: 6px;
  background: #c0392b;
  color: #fff;
  cursor: pointer;
  transition: background 0.2s;
}

.checkout-remove-btn:hover {
  background: #e74c3c;
}

.checkout-terms-block {
  padding: 18px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.checkout-terms-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.82);
  cursor: pointer;
}

.checkout-terms-label input[type="checkbox"] {
  margin-top: 3px;
  width: 16px;
  height: 16px;
  accent-color: #1bc4f9;
  flex-shrink: 0;
}

.checkout-terms-label a {
  color: #1bc4f9;
  text-decoration: underline;
}

.checkout-coupons-block {
  padding: 20px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: transparent;
}

.checkout-coupons-title {
  margin: 0 0 14px;
  font-size: 16px;
  font-weight: 800;
  color: #1bc4f9;
  letter-spacing: 0.01em;
}

.checkout-coupon-form {
  margin: 0;
}

.checkout-coupon-field {
  display: flex;
  align-items: stretch;
  gap: 10px;
  border-radius: 8px;
  overflow: hidden;
  border: none;
  background: transparent;
}

.checkout-coupon-input {
  flex: 1;
  min-width: 0;
  height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: #121214;
  color: #fff;
  font-size: 14px;
  font-family: 'Montserrat', sans-serif;
}

.checkout-coupon-input::placeholder {
  color: rgba(255, 255, 255, 0.38);
}

.checkout-coupon-input:focus {
  outline: none;
  border-color: rgba(27, 196, 249, 0.35);
}

.checkout-coupon-field:focus-within {
  box-shadow: none;
}

.checkout-coupon-btn {
  flex-shrink: 0;
  height: 42px;
  padding: 0 18px;
  border: none;
  border-radius: 8px;
  background: #1bc4f9;
  color: #000;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
}

.checkout-coupon-btn:hover {
  background: #13b8dd;
}

.checkout-coupon-applied-title {
  margin: 16px 0 8px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.45);
}

.checkout-coupon-list {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.checkout-coupon-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.checkout-coupon-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.checkout-coupon-info strong {
  color: #fff;
  font-size: 13px;
}

.checkout-coupon-info span {
  color: var(--text-secondary);
  font-size: 12px;
}

.checkout-coupon-remove {
  flex-shrink: 0;
  color: #e05555;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
}

.checkout-coupon-remove:hover {
  color: #ff7070;
}

.checkout-purchase-block {
  padding: 20px 24px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.checkout-purchase-title {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 800;
  color: #1bc4f9;
}

.checkout-purchase-text {
  margin: 0 0 16px;
  font-size: 13px;
  color: var(--text-secondary);
}

.checkout-purchase-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.checkout-purchase-total {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-size: 14px;
  color: var(--text-secondary);
  flex-wrap: wrap;
}

.checkout-purchase-total-label {
  font-weight: 600;
}

.checkout-purchase-amount {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  white-space: nowrap;
}

.checkout-purchase-amount strong {
  display: inline;
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
}

.checkout-purchase-currency {
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.72);
}

.checkout-pay-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 220px;
  padding: 12px 22px;
  border: none;
  border-radius: 8px;
  background: #1bc4f9;
  color: #000;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.2s;
}

.checkout-pay-btn:hover:not(:disabled) {
  background: #13b8dd;
}

.checkout-pay-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

@media (max-width: 768px) {
  .page-checkout .checkout-page-wrap {
    padding: 16px !important;
  }

  .checkout-table-head {
    display: none;
  }

  .checkout-row,
  .page-checkout .checkout-page .checkout-row.basket-item {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
    padding: 16px 0 !important;
  }

  .page-checkout .checkout-page .checkout-cell-qty,
  .page-checkout .checkout-page .checkout-cell-remove {
    justify-content: flex-start;
  }

  .page-checkout .checkout-page .checkout-qty-field {
    max-width: none;
  }

  .checkout-purchase-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .checkout-pay-btn {
    width: 100%;
  }

  .checkout-coupon-field {
    flex-direction: column;
    gap: 8px;
  }

  .checkout-coupon-btn {
    width: 100%;
  }

  #basket-panel {
    width: calc(100vw - 24px) !important;
    max-height: calc(100vh - 32px) !important;
  }
}
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.05em;
}

.pkg-remove-btn {
  background: rgba(220,60,60,0.15) !important;
  border: 1px solid rgba(220,60,60,0.4) !important;
  color: #e05555 !important;
  text-decoration: none !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.pkg-remove-btn:hover {
  background: rgba(220,60,60,0.3) !important;
}
.pkg-qty-field {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
}
.pkg-qty-count {
  font-size: 14px !important;
  font-weight: 800 !important;
  color: var(--text-primary) !important;
  min-width: 20px !important;
  text-align: center !important;
}
.pkg-qty-field input.quantity {
  display: none !important;
}
.pkg-btn-row .quantity-field:not(.pkg-qty-field) {
  display: none !important;
}
.pkg-btn-row > button.adjust.decrease,
.pkg-btn-row > button.adjust {
  display: none !important;
}
.pkg-price-display {
  padding: 0 12px 8px;
  font-size: 15px;
  font-weight: 800;
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  text-align: center !important;
}
.pkg-price-display strong {
  color: #ffffff !important;
}
.pkg-price-display del {
  font-size: 12px;
  opacity: 0.5;
  margin-right: 4px;
  font-weight: 400;
  color: var(--text-secondary);
}

.store-product-media,
.pkg-popup-media {
  position: relative;
  overflow: visible;
}

.store-product.is-on-sale,
.store-products-images .store-product.is-on-sale,
.store-products-list .store-product.is-on-sale {
  overflow: visible;
}

.pkg-sale-badge {
  position: absolute;
  top: 14px;
  right: -6px;
  z-index: 6;
  padding: 6px 12px;
  background: linear-gradient(135deg, #ff4545 0%, #c80000 100%);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.2;
  border-radius: 6px;
  box-shadow: 0 4px 16px rgba(220, 30, 30, 0.5);
  pointer-events: none;
  transform: rotate(12deg);
  transform-origin: center center;
}

.pkg-price-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 100%;
}

.pkg-price-block--sale {
  padding: 0;
  margin: 0;
  max-width: none;
  background: transparent;
  border: none;
  border-radius: 0;
}

.pkg-price-original {
  display: block;
  line-height: 1.2;
}

.pkg-price-original del {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.45) !important;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  text-decoration-color: rgba(255, 255, 255, 0.55);
  opacity: 1;
  margin: 0;
}

.pkg-price-current {
  display: block;
  line-height: 1.1;
}

.pkg-price-current strong {
  font-size: 22px !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  letter-spacing: -0.02em;
}

.pkg-price-block--sale .pkg-price-current strong {
  color: #ffffff !important;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.pkg-price-free {
  font-size: 20px;
  font-weight: 800;
  color: var(--accent-color) !important;
}

.pkg-price-custom {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.4;
}

.store-sidebar .widget-featured .pkg-sale-badge {
  top: 10px;
  right: -4px;
  font-size: 9px;
  padding: 5px 9px;
  transform: rotate(12deg);
}
.pkg-info-btn {
  background: rgba(27,213,234,0.15) !important;
  border: 1px solid rgba(27,213,234,0.3) !important;
}
.pkg-info-btn:hover {
  background: rgba(27,213,234,0.3) !important;
}
.pkg-info-btn i {
  color: var(--accent-color) !important;
}
.pkg-remove-btn {
  background: rgba(255,100,60,0.12) !important;
  border: 1px solid rgba(255,100,60,0.35) !important;
  color: #ff6e45 !important;
  text-decoration: none !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 11px !important;
  font-weight: 800 !important;
  letter-spacing: 0.04em !important;
}
.pkg-remove-btn:hover {
  background: rgba(255,100,60,0.25) !important;
  border-color: rgba(255,100,60,0.6) !important;
}
.pkg-qty-field {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 4px !important;
}
.pkg-qty-count {
  font-size: 14px !important;
  font-weight: 800 !important;
  color: var(--text-primary) !important;
  min-width: 20px !important;
  text-align: center !important;
  flex: 1 !important;
}
.pkg-qty-field input.quantity {
  display: none !important;
}
body .pkg-info-btn,
body .pkg-btn-row .pkg-info-btn {
  background: #1bd5ea !important;
  border: 1px solid #1bd5ea !important;
}
body .pkg-info-btn:hover,
body .pkg-btn-row .pkg-info-btn:hover {
  background: #17bfcc !important;
  border-color: #17bfcc !important;
}
body .pkg-info-btn i {
  color: #000000 !important;
}

body .pkg-add-btn.add,
body .pkg-btn-row .pkg-add-btn.add,
body .pkg-add-btn.subscribe,
body .pkg-btn-row .pkg-add-btn.subscribe {
  background: #27ae60 !important;
  border: 1px solid #27ae60 !important;
  color: #ffffff !important;
}
body .pkg-add-btn.add:hover,
body .pkg-btn-row .pkg-add-btn.add:hover {
  background: #2ecc71 !important;
  border-color: #2ecc71 !important;
}

body .pkg-remove-btn,
body .pkg-btn-row .pkg-remove-btn {
  background: #c0392b !important;
  border: 1px solid #c0392b !important;
  color: #ffffff !important;
  text-decoration: none !important;
  font-weight: 800 !important;
  font-size: 11px !important;
  letter-spacing: 0.04em !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}
body .pkg-remove-btn:hover,
body .pkg-btn-row .pkg-remove-btn:hover {
  background: #e74c3c !important;
  border-color: #e74c3c !important;
}
.product-actions [hidden],
.pkg-btn-row [hidden],
body .pkg-btn-row .pkg-add-btn[hidden],
body .pkg-btn-row .pkg-remove-btn[hidden],
body .pkg-btn-row .pkg-qty-field[hidden],
body .pkg-btn-row .pkg-in-cart-row[hidden] {
  display: none !important;
}
[hidden] { display: none !important; }
.pkg-add-btn:hover,
.pkg-remove-btn:hover,
.pkg-trash-btn:hover {
  box-shadow: none !important;
}

body .pkg-info-btn,
body .pkg-btn-row .pkg-info-btn {
  display: none !important;
}

.pkg-in-cart-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 6px;
  flex: 1 1 100%;
  width: 100%;
}

.pkg-btn-row .pkg-in-cart-row {
  flex: 1 1 100%;
  width: 100%;
}

.pkg-popup-btns .pkg-in-cart-row {
  width: 100%;
}

.pkg-btn-row .pkg-add-btn.add,
.pkg-btn-row .pkg-add-btn.subscribe {
  flex: 1 1 100%;
  width: 100%;
}

.pkg-popup-qty,
.pkg-qty-field {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  flex: 1 !important;
  min-width: 0 !important;
  height: 38px !important;
  border-radius: 6px !important;
  background: #222226 !important;
  border: 1px solid var(--card-border) !important;
}

.pkg-popup-qty input.quantity,
.pkg-qty-field input.quantity {
  display: none !important;
}

.pkg-popup-qty-count,
.pkg-qty-count {
  font-size: 14px !important;
  font-weight: 800 !important;
  color: var(--text-primary) !important;
  min-width: 24px !important;
  text-align: center !important;
  flex: 1 !important;
}

.pkg-popup-qty .adjust,
.pkg-qty-field .adjust {
  width: 34px !important;
  height: 34px !important;
  flex-shrink: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 6px !important;
  background: var(--accent-color) !important;
  color: #000 !important;
  font-weight: 800 !important;
  font-size: 16px !important;
}

.pkg-in-cart-row > .pkg-remove-btn.wide {
  width: 100% !important;
  flex: 1 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  height: 38px !important;
  font-size: 11px !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  text-decoration: none !important;
  border-radius: 6px !important;
  background: #c0392b !important;
  border: 1px solid #c0392b !important;
  color: #fff !important;
}

.pkg-in-cart-row > .pkg-remove-btn.wide:hover {
  background: #e74c3c !important;
  border-color: #e74c3c !important;
}

.pkg-trash-btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 38px !important;
  height: 38px !important;
  flex-shrink: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  border-radius: 6px !important;
  background: #c0392b !important;
  border: 1px solid #c0392b !important;
  color: #fff !important;
  font: inherit !important;
  cursor: pointer !important;
  text-decoration: none !important;
  transition: background 0.2s !important;
  appearance: none;
  -webkit-appearance: none;
}

.pkg-trash-btn:hover {
  background: #e74c3c !important;
  border-color: #e74c3c !important;
}

.pkg-trash-btn svg {
  display: block !important;
}

.pkg-popup-price,
.pkg-popup-price strong {
  color: #ffffff !important;
}

@media (max-width: 960px) {
  .site-content-sidebar-left {
    display: flex !important;
    flex-direction: column !important;
    gap: 14px !important;
    padding: 0 14px 24px !important;
  }

  .site-content-sidebar-left .store-sidebar {
    display: contents !important;
  }

  .sidebar-categories-block {
    order: 1;
    width: 100%;
  }

  .site-main-content {
    order: 2;
    width: 100% !important;
  }

  .sidebar-widgets-block {
    order: 3;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .sidebar-widgets-block > .widget:first-child {
    margin-top: 0 !important;
  }

  .store-products-images {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 14px !important;
  }

  .store-products-list {
    gap: 10px !important;
  }

  .store-products-list .store-product {
    gap: 12px !important;
    padding: 12px 14px !important;
  }

  .store-products-list .store-product > .store-product-media {
    flex-basis: 60px;
  }

  .store-products-list .store-product .image-link {
    width: 60px !important;
    height: 60px !important;
  }

  .store-products-list .store-product .product-title {
    font-size: 14px !important;
  }

  .store-products-list .store-product .pkg-list-end .pkg-price-display {
    font-size: 14px !important;
  }

  .store-products-list .store-product .pkg-list-end .actions.product-actions {
    min-width: 110px;
  }

  .store-products-list .store-product .pkg-add-btn.add,
  .store-products-list .store-product .pkg-add-btn.subscribe {
    min-width: 110px !important;
    height: 36px !important;
    font-size: 10px !important;
    padding: 0 10px !important;
  }

  .store-products-images .store-product .image-link {
    height: 130px !important;
  }

  .store-products-images .store-product .image-link .image {
    max-height: 110px !important;
  }

  .store-products-images .store-product .product-title {
    font-size: 14px !important;
    padding: 8px 12px 4px !important;
  }

  .store-products-images .store-product .pkg-price-display {
    font-size: 14px !important;
    padding: 0 12px 8px !important;
  }

  .store-products-images .store-product .pkg-btn-row {
    padding: 0 12px 12px !important;
  }

  .store-products-images .store-product .pkg-add-btn.add,
  .store-products-images .store-product .pkg-add-btn.subscribe {
    height: 40px !important;
    font-size: 12px !important;
  }

  .category-header {
    padding: 16px 18px !important;
    margin-bottom: 14px !important;
  }

  .category-title {
    font-size: 18px !important;
  }

  .home-welcome-title {
    font-size: 22px !important;
  }

  .site-main-content.store-text {
    padding: 18px 16px !important;
  }

  .store-sidebar .widget-recent .purchase-meta,
  .widget-recent-payments .purchase-meta {
    display: flex !important;
    flex-direction: column !important;
    gap: 2px !important;
    min-width: 0 !important;
    flex: 1 !important;
  }

  .store-sidebar .widget-recent .purchase-label,
  .widget-recent-payments .purchase-label {
    display: none !important;
  }

  .store-sidebar .widget-recent .purchases,
  .widget-recent-payments .purchases {
    flex-direction: column !important;
    gap: 0 !important;
  }

  .store-sidebar .widget-recent .purchase,
  .widget-recent-payments .purchase {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    width: 100% !important;
    height: auto !important;
    padding: 10px 0 !important;
    border-bottom: 1px solid rgba(255,255,255,0.05) !important;
  }

  .store-sidebar .widget-recent .purchase:last-child,
  .widget-recent-payments .purchase:last-child {
    border-bottom: none !important;
    padding-bottom: 0 !important;
  }

  .store-sidebar .widget-recent .purchase .avatar,
  .widget-recent-payments .purchase .avatar {
    width: 40px !important;
    height: 40px !important;
    max-width: 40px !important;
    max-height: 40px !important;
    border: none !important;
    transform: none !important;
  }

  .store-sidebar .widget-recent .purchase:hover .avatar,
  .widget-recent-payments .purchase:hover .avatar {
    border: none !important;
    transform: none !important;
  }

  .purchase-ign {
    font-size: 13px !important;
    font-weight: 700 !important;
    color: var(--text-primary) !important;
    line-height: 1.3 !important;
  }

  .purchase-package {
    font-size: 12px !important;
    color: var(--text-secondary) !important;
    line-height: 1.35 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }

  .store-sidebar .widget-recent .widget-content {
    padding: 10px 16px 14px !important;
  }

  .store-sidebar .widget-featured .store-product .image-link .image,
  .store-sidebar .widget-featured .store-product .image-link .image-default {
    width: 110px !important;
    height: 110px !important;
    max-height: 110px !important;
  }
}

@media (max-width: 600px) {
  .site-content-sidebar-left {
    padding: 0 12px 20px !important;
    gap: 12px !important;
  }

  .top-bar {
    padding: 10px 12px !important;
  }

  .top-bar-back span:not(.top-bar-back-icon) {
    display: none;
  }

  .top-bar-back {
    padding: 8px 12px !important;
    min-width: 40px;
    justify-content: center;
  }

  .top-bar-ub-sub {
    display: none !important;
  }

  .header-hero {
    height: 140px !important;
    padding: 0 12px !important;
  }

  .header-logo {
    max-height: 72px !important;
    max-width: 260px !important;
  }

  .store-products-images {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .store-products-list .store-product {
    flex-wrap: wrap;
    gap: 10px 12px !important;
    padding: 14px !important;
  }

  .store-products-list .store-product > .store-product-media {
    flex: 0 0 56px;
  }

  .store-products-list .store-product .image-link {
    width: 56px !important;
    height: 56px !important;
  }

  .store-products-list .store-product .product-title {
    flex: 1 1 calc(100% - 68px);
    font-size: 15px !important;
  }

  .store-products-list .store-product .pkg-list-end {
    flex: 1 1 100%;
    margin-left: 0 !important;
    justify-content: space-between;
    gap: 10px !important;
  }

  .store-products-list .store-product .pkg-add-btn.add,
  .store-products-list .store-product .pkg-add-btn.subscribe {
    width: 100% !important;
    min-width: 0 !important;
    height: 42px !important;
    font-size: 12px !important;
  }

  .store-products-images .store-product {
    max-width: 100% !important;
  }

  .store-products-images .store-product .image-link {
    height: 160px !important;
  }

  .store-products-images .store-product .image-link .image {
    max-height: 140px !important;
  }

  .store-products-images .store-product .product-title {
    font-size: 16px !important;
    padding: 10px 16px 6px !important;
  }

  .store-products-images .store-product .pkg-price-display {
    font-size: 15px !important;
    padding: 0 16px 10px !important;
  }

  .store-products-images .store-product .pkg-btn-row {
    padding: 0 16px 16px !important;
  }

  .store-products-images .store-product .pkg-add-btn.add,
  .store-products-images .store-product .pkg-add-btn.subscribe {
    height: 44px !important;
    font-size: 13px !important;
  }

  .store-product .pkg-in-cart-row {
    padding: 0 !important;
  }

  .store-product:hover {
    transform: none !important;
  }

  .sidebar-cat-name {
    font-size: 15px !important;
  }

  .sidebar-cat-row .sidebar-cat-link,
  .sidebar-cat-row .sidebar-cat-link-btn {
    padding: 12px 14px !important;
  }

  .bk-panel {
    width: 100% !important;
    max-width: 100% !important;
  }
}

@media (min-width: 961px) {
  .purchase-meta {
    display: none !important;
  }
}
