:root {
  --nightshop-primary: #211453;
  --nightshop-accent: #5236d0;
  --nightshop-white: #fff;
  --nightshop-off-white: #fffbfb;
  --nightshop-cream: #fcfbf7;
  --nightshop-bg-light: #f3f3f3;
  --nightshop-border: #eceae3;
  --nightshop-text: #000;
  --nightshop-muted: #6e6a60;
  --nightshop-light: #d2d2d2;
  --nightshop-display: "Archivo", Arial, sans-serif;
  --nightshop-body: "Inter", Arial, sans-serif;
}

body#index {
  font-family: var(--nightshop-body);
  background: var(--nightshop-white);
}

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

body#index #wrapper {
  padding-top: 0;
  padding-bottom: 0;
  background: var(--nightshop-bg-light);
  box-shadow: none;
}

body#index #content-wrapper,
body#index .page-home,
body#index .container {
  width: 100%;
  max-width: none;
  padding: 0;
}

body#index #wrapper > .container > .row {
  margin-left: 0;
  margin-right: 0;
}

body#index #wrapper > .container > .row > #content-wrapper {
  padding-left: 0;
  padding-right: 0;
}

body#index .breadcrumb,
body#index #notifications {
  display: none;
}

body#index #main,
body#index .page-home {
  background: var(--nightshop-bg-light);
  margin-bottom: 0;
}

body#index .page-footer {
  display: none;
}

.nightshop-nav__links #search_widget {
  display: none;
}

#header {
  position: sticky;
  top: -34px;
  z-index: 1000;
  background: var(--nightshop-white);
}

.nightshop-promo-bar {
  background: var(--nightshop-primary);
  color: var(--nightshop-white);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px;
  gap: 8px;
  height: 34px;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.3;
  text-align: center;
}

.nightshop-nav {
  position: relative;
  z-index: 1;
  background: var(--nightshop-white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 64px;
  height: 66px;
  border-bottom: 1px solid #f0f0f0;
}

.nightshop-nav__menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  color: var(--nightshop-text);
  cursor: pointer;
}

.nightshop-nav__menu-toggle .material-icons {
  display: block;
  width: 24px;
  height: 24px;
  overflow: hidden;
  color: inherit;
  font-size: 24px;
  line-height: 24px;
}

.nightshop-nav__logo img {
  max-height: 34px;
  width: auto;
}

.nightshop-nav__logo a,
.nightshop-nav__logo h1 {
  margin: 0;
}

.nightshop-nav__links {
  min-width: 0;
}

.nightshop-nav__links .menu,
.nightshop-nav__links .top-menu[data-depth="0"] {
  display: flex;
  gap: 24px;
  align-items: center;
  margin: 0;
  padding-top: 4px;
}

.nightshop-nav__links .top-menu {
  padding: 0;
  margin: 0;
  list-style: none;
}

.nightshop-nav__links .top-menu[data-depth="0"] > li {
  position: relative;
}

.nightshop-nav__links .top-menu[data-depth="0"] > li > a {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 22px;
  padding: 0 0 4px;
  font-weight: 700;
}

.nightshop-nav__links .top-menu[data-depth="0"] > li > a::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: var(--nightshop-accent);
  opacity: 0;
  transform: scaleX(.7);
  transform-origin: center;
  transition: opacity .16s ease, transform .16s ease;
}

.nightshop-nav__links .top-menu[data-depth="0"] > li:hover > a,
.nightshop-nav__links .top-menu[data-depth="0"] > li:focus-within > a,
.nightshop-nav__links .top-menu[data-depth="0"] > li.is-menu-open > a,
.nightshop-nav__links .top-menu[data-depth="0"] > li.current > a {
  color: var(--nightshop-accent);
}

.nightshop-nav__links .top-menu[data-depth="0"] > li:hover > a::before,
.nightshop-nav__links .top-menu[data-depth="0"] > li:focus-within > a::before,
.nightshop-nav__links .top-menu[data-depth="0"] > li.is-menu-open > a::before,
.nightshop-nav__links .top-menu[data-depth="0"] > li.current > a::before {
  opacity: 1;
  transform: scaleX(1);
}

.nightshop-nav__links .top-menu a,
.nightshop-nav__links a {
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .01em;
  text-transform: uppercase;
  color: var(--nightshop-text);
  white-space: nowrap;
}

.nightshop-nav__links .collapse-icons {
  display: none !important;
}

.nightshop-nav__links .top-menu[data-depth="0"] > li > .sub-menu,
.nightshop-nav__links .top-menu[data-depth="1"] li > .collapse {
  position: absolute;
  z-index: 1002;
  display: block !important;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .16s ease, transform .16s ease, visibility .16s ease;
}

.nightshop-nav__links .top-menu[data-depth="0"] > li:hover > .sub-menu,
.nightshop-nav__links .top-menu[data-depth="0"] > li:focus-within > .sub-menu,
.nightshop-nav__links .top-menu[data-depth="0"] > li.is-menu-open > .sub-menu,
.nightshop-nav__links .top-menu[data-depth="1"] li:hover > .collapse,
.nightshop-nav__links .top-menu[data-depth="1"] li:focus-within > .collapse {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.nightshop-nav__links .top-menu[data-depth="0"] > li > .sub-menu {
  top: calc(100% + 8px) !important;
  left: 0;
  width: 209px;
  max-width: none;
  min-height: 96px;
  padding: 16px 8px;
  background: #fff;
  border: 0;
  border-radius: 8px;
  box-shadow: 0 -1px 2px rgba(93, 93, 93, .25), 0 1px 2px rgba(93, 93, 93, .25);
  transform: translateY(-6px);
}

.nightshop-nav__links .top-menu[data-depth="0"] > li > .sub-menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -12px;
  height: 12px;
}

.nightshop-nav__links .top-menu[data-depth="1"],
.nightshop-nav__links .top-menu[data-depth="2"] {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.nightshop-nav__links .top-menu[data-depth="1"] > li,
.nightshop-nav__links .top-menu[data-depth="2"] > li {
  position: relative;
  width: 100%;
}

.nightshop-nav__links .top-menu[data-depth="1"] a,
.nightshop-nav__links .top-menu[data-depth="2"] a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  width: 100%;
  min-height: 18px;
  padding: 0;
  color: #000;
  font-family: var(--nightshop-body);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0;
  text-transform: none;
  background: transparent;
}

.nightshop-nav__links .top-menu[data-depth="1"] > li.has-children > a::after {
  content: "";
  flex: 0 0 24px;
  order: 1;
  width: 24px;
  height: 24px;
  margin: 0 0 0 auto;
  background-color: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 10L12 14L16 10' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 24px 24px no-repeat;
  mask: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 10L12 14L16 10' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 24px 24px no-repeat;
  transform: rotate(-90deg);
}

.nightshop-nav__links .top-menu[data-depth="1"] li.current > a,
.nightshop-nav__links .top-menu[data-depth="1"] li:hover > a,
.nightshop-nav__links .top-menu[data-depth="1"] li:focus-within > a,
.nightshop-nav__links .top-menu[data-depth="2"] li.current > a,
.nightshop-nav__links .top-menu[data-depth="2"] li:hover > a,
.nightshop-nav__links .top-menu[data-depth="2"] li:focus-within > a {
  color: var(--nightshop-accent);
}

.nightshop-nav__links .top-menu[data-depth="1"] li > .collapse {
  top: -16px;
  left: calc(100% + 16px);
  width: 153px;
  min-height: 96px;
  max-height: 390px;
  padding: 16px;
  overflow: auto;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 -1px 2px rgba(93, 93, 93, .25), 0 1px 0 rgba(93, 93, 93, .25);
  transform: translateX(-6px);
}

.nightshop-nav__links .top-menu[data-depth="1"] li:hover > .collapse,
.nightshop-nav__links .top-menu[data-depth="1"] li:focus-within > .collapse {
  transform: translateX(0);
}

.nightshop-nav__icons,
.nightshop-nav__icons .right-nav,
.nightshop-nav__icons #_desktop_user_info,
.nightshop-nav__icons #_desktop_cart,
.nightshop-nav__icons #_mobile_user_info,
.nightshop-nav__icons #_mobile_cart {
  display: flex;
  align-items: center;
}

.nightshop-nav__icons {
  position: relative;
  flex-direction: row;
  gap: 16px;
  width: 144px;
  height: 24px;
  flex: 0 0 144px;
}

.nightshop-nav__icons #_desktop_cart {
  order: 2;
}

.nightshop-nav__icons #_desktop_user_info {
  order: 3;
}

.nightshop-nav__icons #_mobile_cart,
.nightshop-nav__icons #_mobile_user_info,
.nightshop-nav__logo--mobile {
  display: none;
}

.nightshop-nav__icons .blockcart,
.nightshop-nav__icons .blockcart .header,
.nightshop-nav__icons .user-info {
  display: flex;
  align-items: center;
  margin: 0;
}

.nightshop-nav__icon {
  position: relative;
  display: block;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  color: #000;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  text-decoration: none;
  line-height: 0;
}

.nightshop-nav__icon:hover,
.nightshop-nav__icon:focus {
  color: #000;
  text-decoration: none;
}

.nightshop-nav__icon--search {
  order: 0;
}

.nightshop-nav__icon--search > svg {
  transform: translateX(2px);
}

.nightshop-nav__search-panel {
  position: absolute;
  top: 50%;
  right: calc(100% - 24px);
  z-index: 20;
  width: 300px;
  height: 40px;
  padding: 8px 16px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  background: var(--nightshop-bg-light);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(18px, -50%);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}

.nightshop-nav__icons.is-search-open .nightshop-nav__search-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(0, -50%);
}

.nightshop-nav__search-results {
  position: absolute;
  top: calc(50% + 28px);
  right: calc(100% - 24px);
  z-index: 19;
  width: 300px;
  max-height: 360px;
  overflow: auto;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .08);
  box-shadow: 0 18px 40px rgba(33, 20, 83, .14);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.nightshop-nav__icons.is-search-open.has-search-results .nightshop-nav__search-results {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.nightshop-nav__search-result {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 10px 12px;
  color: #000;
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 0, 0, .06);
}

.nightshop-nav__search-result:last-child {
  border-bottom: 0;
}

.nightshop-nav__search-result:hover,
.nightshop-nav__search-result:focus {
  color: #000;
  text-decoration: none;
  background: var(--nightshop-bg-light);
}

.nightshop-nav__search-result img {
  width: 54px;
  height: 54px;
  object-fit: cover;
  background: var(--nightshop-bg-light);
}

.nightshop-nav__search-result-title {
  display: block;
  overflow: hidden;
  color: #000;
  font-family: var(--nightshop-body);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nightshop-nav__search-result-meta {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 4px;
  color: #929292;
  font-family: var(--nightshop-body);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: .02em;
}

.nightshop-nav__search-empty {
  padding: 14px 16px;
  color: #929292;
  font-family: var(--nightshop-body);
  font-size: 14px;
  line-height: 1.3;
}

.nightshop-nav__icons.is-search-open .nightshop-nav__icon--search {
  visibility: hidden;
}

.nightshop-nav__search-icon,
.nightshop-nav__search-close {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  color: #000;
}

.nightshop-nav__search-icon svg,
.nightshop-nav__search-close svg {
  display: block;
  width: 24px;
  height: 24px;
  fill: none;
  stroke: #000;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nightshop-nav__search-input {
  min-width: 0;
  flex: 1 1 auto;
  height: 24px;
  border: 0;
  background: transparent;
  color: #000;
  font-family: var(--nightshop-body);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3;
  outline: 0;
}

.nightshop-nav__search-input::placeholder {
  color: #000;
  opacity: .65;
}

.nightshop-nav__search-close {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.nightshop-nav__icon svg {
  display: block;
  width: 24px;
  height: 24px;
}

.nightshop-nav__icon--search svg,
.nightshop-nav__icon--cart svg,
.nightshop-nav__icon--wishlist svg,
.nightshop-nav__icon--user svg {
  fill: none;
  stroke: #000;
  stroke-width: 2.0;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nightshop-nav__icon--wishlist {
  order: 1;
}

.nightshop-nav__icon--wishlist svg,
.nightshop-nav__icon--cart .nightshop-cart-body,
.nightshop-nav__icon--cart .nightshop-cart-wheel {
  transition: fill .15s ease;
}

.nightshop-nav__icon--wishlist svg {
  fill: none;
}

.nightshop-nav__icon--wishlist.is-active svg,
.nightshop-nav__icon--wishlist[aria-pressed="true"] svg,
.blockcart.active .nightshop-nav__icon--cart .nightshop-cart-body,
.blockcart.active .nightshop-nav__icon--cart .nightshop-cart-wheel {
  fill: #000;
}

.nightshop-nav__icon--user-filled svg,
.nightshop-nav__icon--user-filled circle,
.nightshop-nav__icon--user-filled path {
  fill: #000;
  stroke: none;
}

.blockcart.inactive .nightshop-nav__icon--cart .cart-products-count {
  display: none;
}

.nightshop-nav__icon--cart .cart-products-count {
  position: absolute;
  right: 0;
  top: -1px;
  z-index: 2;
  min-width: 12px;
  height: 12px;
  padding: 0 3px;
  border-radius: 999px;
  background: var(--nightshop-accent);
  color: var(--nightshop-white);
  font-family: var(--nightshop-body);
  font-weight: 600;
  font-size: 10px;
  line-height: 12px;
  text-align: center;
}

.nightshop-nav__icons .hidden-sm-down,
.nightshop-nav__icons .cart-label,
.nightshop-nav__icons .language-selector-wrapper,
.nightshop-nav__icons .currency-selector {
  display: none !important;
}

.nightshop-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--nightshop-accent);
}

.nightshop-eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--nightshop-accent);
  flex-shrink: 0;
}

.nightshop-section-title {
  font-family: var(--nightshop-display);
  font-weight: 700;
  font-size: 40px;
  line-height: 1.3;
  text-transform: uppercase;
  color: var(--nightshop-text);
  margin: 8px 0 0;
}

.nightshop-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--nightshop-primary);
  color: var(--nightshop-off-white);
  font-family: var(--nightshop-display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 14px 24px;
  border: none;
  transition: opacity .2s;
}

.nightshop-btn-primary:hover {
  color: var(--nightshop-off-white);
  opacity: .85;
}

.nightshop-hero {
  position: relative;
  height: 640px;
  overflow: hidden;
  background: linear-gradient(135deg, #1a1020 0%, #2d1a5e 50%, #0a0a0a 100%);
}

.nightshop-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(ellipse 60% 80% at 70% 50%, rgba(82, 54, 208, .15) 0%, transparent 70%), radial-gradient(ellipse 40% 60% at 80% 30%, rgba(255, 255, 255, .04) 0%, transparent 60%);
}

.nightshop-hero__slides,
.nightshop-hero__slide,
.nightshop-hero__media {
  position: absolute;
  inset: 0;
}

.nightshop-hero__slide {
  opacity: 0;
  pointer-events: none;
  transition: opacity .7s ease;
}

.nightshop-hero__slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.nightshop-hero__media {
  background: linear-gradient(135deg, #1a1020 0%, #2d1a5e 50%, #0a0a0a 100%);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% auto;
}

.nightshop-hero__media--image {
  background: #1a1020;
}

.nightshop-hero__image {
  position: absolute;
  left: 0;
  top: 50%;
  display: block;
  width: 100%;
  height: auto;
  max-width: none;
  transform: translateY(-50%);
}

.nightshop-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(0, 0, 0, .55) 0%, rgba(0, 0, 0, .1) 60%, rgba(0, 0, 0, .35) 100%);
}

.nightshop-hero__content {
  position: relative;
  z-index: 3;
  padding: 80px 64px;
  max-width: 820px;
}

.nightshop-hero__eyebrow {
  margin-bottom: 16px;
}

.nightshop-hero__title {
  font-family: var(--nightshop-display);
  font-weight: 700;
  font-size: 64px;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--nightshop-white);
  margin: 0 0 16px;
}

.nightshop-hero__subtitle {
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: .01em;
  color: rgba(255, 255, 255, .75);
  max-width: 416px;
  margin-bottom: 40px;
}

.nightshop-hero__controls {
  position: absolute;
  left: 64px;
  bottom: 56px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 24px;
}

.nightshop-hero__arrows,
.nightshop-hero__dots {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nightshop-hero__arrow-btn {
  width: 40px;
  height: 40px;
  border: 1px solid var(--nightshop-white);
  background: transparent;
  color: var(--nightshop-white);
  cursor: pointer;
}

.nightshop-hero__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, .35);
  cursor: pointer;
}

.nightshop-hero__dot.is-active {
  width: 24px;
  background: var(--nightshop-white);
}

.nightshop-hero__art {
  position: absolute;
  right: 64px;
  top: 50%;
  transform: translateY(-50%);
  width: 480px;
  height: 540px;
  opacity: .9;
  z-index: 2;
}

.nightshop-shaker {
  position: absolute;
  right: 60px;
  top: 40px;
  width: 90px;
  height: 280px;
}

.nightshop-shaker__body {
  width: 80px;
  height: 200px;
  margin: 0 auto;
  background: linear-gradient(135deg, #e8e8e8 0%, #b0b0b0 40%, #d0d0d0 70%, #f5f5f5 100%);
  border-radius: 6px 6px 30px 30px;
  box-shadow: inset -8px 0 16px rgba(0, 0, 0, .2), 4px 4px 20px rgba(0, 0, 0, .4);
}

.nightshop-shaker__cap {
  width: 86px;
  height: 60px;
  margin: 0 auto;
  background: linear-gradient(135deg, #f0f0f0 0%, #a0a0a0 50%, #c8c8c8 100%);
  border-radius: 4px 4px 8px 8px;
}

.nightshop-shaker__lid {
  width: 60px;
  height: 30px;
  margin: 0 auto;
  background: linear-gradient(135deg, #e8e8e8 0%, #909090 100%);
}

.nightshop-mix-glass {
  position: absolute;
  right: 180px;
  bottom: 60px;
  width: 70px;
  height: 180px;
}

.nightshop-mix-glass__body {
  width: 60px;
  height: 150px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(200, 220, 255, .3) 0%, rgba(150, 180, 220, .15) 50%, rgba(200, 220, 255, .25) 100%);
  border: 2px solid rgba(255, 255, 255, .4);
  border-radius: 2px 2px 20px 20px;
}

.nightshop-bar-spoon {
  position: absolute;
  right: 140px;
  top: 60px;
  width: 4px;
  height: 320px;
  background: linear-gradient(180deg, #e0e0e0, #a0a0a0, #c0c0c0);
  border-radius: 2px;
  transform: rotate(8deg);
}

.nightshop-bar-spoon::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 16px;
  height: 20px;
  background: linear-gradient(135deg, #d0d0d0, #909090);
  border-radius: 50%;
}

.nightshop-jigger {
  position: absolute;
  right: 20px;
  bottom: 80px;
  width: 50px;
  height: 90px;
}

.nightshop-jigger__top {
  width: 50px;
  height: 40px;
  background: linear-gradient(135deg, #e0e0e0, #a0a0a0);
  clip-path: polygon(10% 100%, 90% 100%, 100% 0%, 0% 0%);
}

.nightshop-jigger__bottom {
  width: 40px;
  height: 40px;
  margin: 0 auto;
  background: linear-gradient(135deg, #c8c8c8, #888);
  clip-path: polygon(0% 100%, 100% 100%, 90% 0%, 10% 0%);
}

.nightshop-martini {
  position: absolute;
  left: 40px;
  bottom: 40px;
}

.nightshop-martini__bowl {
  width: 100px;
  height: 60px;
  border-left: 3px solid rgba(255, 255, 255, .5);
  border-right: 3px solid rgba(255, 255, 255, .5);
  border-bottom: 3px solid rgba(255, 255, 255, .5);
  clip-path: polygon(0 0, 100% 0, 70% 100%, 30% 100%);
}

.nightshop-martini__stem {
  width: 3px;
  height: 80px;
  background: rgba(255, 255, 255, .4);
  margin: 0 auto;
}

.nightshop-martini__base {
  width: 60px;
  height: 4px;
  background: rgba(255, 255, 255, .4);
  margin: 0 auto;
}

.nightshop-categories,
.nightshop-partners,
.nightshop-blog {
  padding: 80px 64px;
  background: var(--nightshop-white);
}

.nightshop-categories {
  padding-top: 64px;
}

.nightshop-categories__header,
.nightshop-partners__header,
.nightshop-blog__header {
  margin-bottom: 32px;
}

.nightshop-categories__grid {
  display: flex;
  gap: 24px;
  align-items: stretch;
  width: 100%;
  overflow: hidden;
}

.nightshop-cat-card {
  position: relative;
  overflow: hidden;
  height: 344px;
  flex: 1 1 214px;
  min-width: 160px;
  transition: flex-basis .35s ease, flex-grow .35s ease;
}

.nightshop-categories__grid:hover .nightshop-cat-card {
  flex-grow: .65;
  flex-basis: 180px;
}

.nightshop-categories__grid .nightshop-cat-card:hover {
  flex-grow: 0;
  flex-basis: 360px;
}

.nightshop-cat-card--large {
  flex-basis: 360px;
}

.nightshop-cat-card__bg,
.nightshop-blog-main__img,
.nightshop-blog-card__img,
.nightshop-about__image,
.nightshop-partners__video {
  background: linear-gradient(135deg, #1a1025 0%, #2d1a50 40%, #0f0f1a 100%);
  background-position: center;
  background-size: cover;
}

.nightshop-cat-card[data-cat="essentials"] .nightshop-cat-card__bg,
.nightshop-cat-card[data-cat="clothes"] .nightshop-cat-card__bg { background: linear-gradient(135deg, #1a0a0a 0%, #3d1515 50%, #1f1010 100%); }
.nightshop-cat-card[data-cat="consumables"] .nightshop-cat-card__bg,
.nightshop-cat-card[data-cat="accessories"] .nightshop-cat-card__bg { background: linear-gradient(135deg, #0a0f1a 0%, #152035 50%, #0d1520 100%); }
.nightshop-cat-card[data-cat="glasswares"] .nightshop-cat-card__bg,
.nightshop-cat-card[data-cat="art"] .nightshop-cat-card__bg { background: linear-gradient(135deg, #0d0d1a 0%, #1a1a35 50%, #0a0a20 100%); }
.nightshop-cat-card[data-cat="nightlife"] .nightshop-cat-card__bg,
.nightshop-cat-card[data-cat="nightlife-essentials"] .nightshop-cat-card__bg { background: linear-gradient(135deg, #100a1a 0%, #2a1535 50%, #180d25 100%); }
.nightshop-cat-card[data-cat="makeyours"] .nightshop-cat-card__bg,
.nightshop-cat-card[data-cat="make-it-yours"] .nightshop-cat-card__bg { background: linear-gradient(135deg, #0a0a0f 0%, #15152a 50%, #080810 100%); }

.nightshop-cat-card__bg,
.nightshop-cat-card__overlay {
  position: absolute;
  inset: 0;
}

.nightshop-cat-card__overlay {
  background: linear-gradient(180deg, rgba(0, 0, 0, .2) 40%, rgba(0, 0, 0, .9) 100%);
}

.nightshop-cat-card__info {
  position: absolute;
  bottom: 20px;
  left: 16px;
  z-index: 2;
}

.nightshop-cat-card__name {
  font-family: var(--nightshop-display);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: var(--nightshop-cream);
  display: block;
  margin-bottom: 4px;
}

.nightshop-cat-card__count {
  font-weight: 500;
  font-size: 12px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--nightshop-light);
}

.nightshop-stats {
  background: var(--nightshop-primary);
  padding: 72px 64px;
  display: flex;
  justify-content: center;
}

.nightshop-stats__inner {
  display: flex;
  align-items: center;
  gap: 96px;
}

.nightshop-stat {
  text-align: center;
}

.nightshop-stat__number {
  font-family: var(--nightshop-display);
  font-weight: 800;
  font-size: 48px;
  line-height: 1.4;
  color: var(--nightshop-white);
  display: block;
}

.nightshop-stat__label {
  font-family: var(--nightshop-display);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.3;
  text-transform: uppercase;
  color: var(--nightshop-white);
}

.nightshop-stat-divider {
  width: 1px;
  height: 64px;
  background: rgba(255, 255, 255, .3);
}

.nightshop-about {
  background: var(--nightshop-bg-light);
  padding: 80px 75px 80px 64px;
  display: flex;
  align-items: flex-start;
  gap: 48px;
  position: relative;
  overflow: hidden;
}

.nightshop-about::before {
  content: "WHO";
  position: absolute;
  left: -27px;
  bottom: 107px;
  font-family: var(--nightshop-display);
  font-weight: 900;
  font-size: 180px;
  color: #e1dfdd;
  opacity: .4;
}

.nightshop-about__content {
  flex: 0 0 508px;
  display: flex;
  flex-direction: column;
  gap: 48px;
  position: relative;
  z-index: 1;
}

.nightshop-about__quote {
  border-left: 2px solid var(--nightshop-text);
  padding-left: 24px;
  margin: 32px 0 0;
}

.nightshop-about__quote p {
  font-weight: 600;
  font-size: 20px;
  line-height: 1.3;
  color: var(--nightshop-text);
}

.nightshop-about__body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.nightshop-about__desc,
.nightshop-about__list-text,
.nightshop-blog-main__desc,
.nightshop-blog-card__desc,
.nightshop-cta__desc {
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: .01em;
  color: var(--nightshop-muted);
}

.nightshop-about__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.nightshop-about__list-item {
  display: flex;
  gap: 8px;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid #ebebeb;
}

.nightshop-about__num {
  font-family: var(--nightshop-display);
  font-weight: 700;
  font-size: 24px;
  color: var(--nightshop-text);
}

.nightshop-about__image {
  flex: 1;
  min-height: 617px;
  position: relative;
  z-index: 1;
}

.nightshop-partners__inner,
.nightshop-blog__grid {
  display: flex;
  gap: 48px;
  align-items: flex-start;
}

.nightshop-partners__logos {
  display: grid;
  grid-template-columns: repeat(3, 240px);
  gap: 24px;
  flex-shrink: 0;
}

.nightshop-partner-logo {
  border: 1px solid var(--nightshop-border);
  padding: 8px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nightshop-partner-logo__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.nightshop-partner-logo__inner img {
  display: block;
  max-width: 130px;
  max-height: 70px;
  width: auto;
  height: auto;
}

.nightshop-partner-logo__name {
  font-family: var(--nightshop-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: .08em;
  color: var(--nightshop-text);
}

.nightshop-partner-logo__sub {
  font-size: 10px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--nightshop-muted);
  border-top: 1px solid currentColor;
  padding-top: 4px;
  width: 60px;
  text-align: center;
}

.nightshop-partners__video {
  flex: 1;
  min-height: 304px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-position: center;
  background-size: cover;
  overflow: hidden;
}

.nightshop-partners__video-player {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 304px;
  border: 0;
  object-fit: cover;
}

.nightshop-play-btn {
  width: 96px;
  height: 96px;
  background: rgba(0, 0, 0, .25);
  color: var(--nightshop-white);
  border-radius: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nightshop-blog-main {
  flex: 0 0 607px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.nightshop-blog-main__img {
  display: block;
  width: 100%;
  height: 320px;
}

.nightshop-blog-side {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.nightshop-blog-card {
  display: flex;
  gap: 24px;
}

.nightshop-blog-card__img {
  display: block;
  flex: 0 0 344px;
  height: 200px;
}

.nightshop-blog-card__img--alt {
  background: linear-gradient(135deg, #100a08, #201510);
}

.nightshop-blog-main__title-row,
.nightshop-blog-card__title-row {
  display: flex;
  justify-content: space-between;
  gap: 8px;
}

.nightshop-blog-main__title,
.nightshop-blog-card__title {
  font-family: var(--nightshop-display);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.3;
  color: var(--nightshop-text);
  margin: 0;
}

.nightshop-blog-main__title a,
.nightshop-blog-card__title a {
  color: inherit;
  text-decoration: none;
}

.nightshop-blog-main__title a:hover,
.nightshop-blog-card__title a:hover {
  color: #5236d0;
  text-decoration: none;
}

.nightshop-icon-arrow {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: #000;
  font-size: 20px;
  line-height: 1;
  text-decoration: none;
}

.nightshop-icon-arrow:hover,
.nightshop-icon-arrow:focus {
  color: #5236d0;
  text-decoration: none;
}

.nightshop-blog-main__date,
.nightshop-blog-card__date {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--nightshop-accent);
}

.nightshop-cta {
  background: var(--nightshop-bg-light);
  padding: 80px 64px;
  position: relative;
  overflow: hidden;
  height: 348px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 32px;
  isolation: isolate;
}

.nightshop-cta::after {
  content: "BAR";
  position: absolute;
  left: 596px;
  top: 112px;
  width: 815px;
  height: 305px;
  background: transparent;
  color: #ecebea;
  font-family: var(--nightshop-display);
  font-weight: 800;
  font-size: 158px;
  line-height: 1;
  letter-spacing: 0;
  z-index: 0;
  pointer-events: none;
}

.nightshop-cta__inner {
  width: 100%;
  height: 188px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  position: relative;
  z-index: 1;
}

.nightshop-cta__left {
  width: 547px;
  height: 188px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 8px;
}

.nightshop-cta__title {
  font-family: var(--nightshop-display);
  font-weight: 700;
  font-size: 56px;
  line-height: 1.4;
  text-transform: uppercase;
  color: var(--nightshop-text);
  margin: 0;
}

.nightshop-cta__right {
  width: 294px;
  height: 124px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 24px;
  max-width: 294px;
}

.nightshop-cta__desc {
  margin: 0;
}

.nightshop-cta .nightshop-btn-primary {
  width: 283px;
  height: 48px;
  justify-content: center;
  padding: 16px 24px;
}

.nightshop-footer {
  width: 100%;
  min-height: 372px;
  background: var(--nightshop-primary);
  padding: 64px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  position: relative;
  z-index: 2;
  margin-top: 0;
}

.nightshop-footer__top {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.nightshop-footer__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  flex: 0 0 201px;
  width: 201px;
  max-width: 201px;
  text-align: left;
}

.nightshop-footer__logo {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.3;
  letter-spacing: -.02em;
  color: var(--nightshop-white);
  width: auto;
  height: 34px;
}

.nightshop-footer__logo a {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  height: 34px;
}

.nightshop-footer__logo img {
  display: block;
  width: auto;
  max-width: 160px;
  max-height: 34px;
}

.nightshop-footer__tagline {
  width: 201px;
  margin: 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: .01em;
}

.nightshop-footer__tagline,
.nightshop-footer__col-title,
.nightshop-footer__col-links a,
.nightshop-footer__copy {
  color: var(--nightshop-white);
}

.nightshop-footer__social,
.nightshop-footer__social .block-social,
.nightshop-footer__social .ps-social-follow {
  display: flex;
  align-items: center;
  width: 104px;
  height: 24px;
  padding: 0;
  margin: 0;
  float: none;
}

.nightshop-footer__social h4 {
  display: none;
}

.nightshop-footer__social ul {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.nightshop-footer__social li {
  width: 24px;
  height: 24px;
  margin: 0;
  background-color: transparent;
  background-size: 24px 24px;
}

.nightshop-footer__social li a {
  display: block;
  width: 24px;
  height: 24px;
  overflow: hidden;
  color: transparent;
  font-size: 0;
}

.nightshop-footer__nav,
.nightshop-footer__payments {
  display: flex;
  align-items: center;
}

.nightshop-footer__nav {
  flex: 0 1 820px;
  width: 820px;
  display: flex;
  justify-content: space-between;
  gap: 72px;
  align-items: flex-start;
}

.nightshop-footer__col-links a {
  overflow-wrap: anywhere;
}

.nightshop-footer__col,
.nightshop-footer__col-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.nightshop-footer__col {
  gap: 24px;
  flex: 0 0 auto;
}

.nightshop-footer__col:nth-child(1) {
  width: 180px;
}

.nightshop-footer__col:nth-child(2) {
  width: 180px;
}

.nightshop-footer__col:nth-child(3) {
  width: 240px;
}

.nightshop-footer__col-title {
  font-weight: 700;
  font-size: 14px;
  line-height: 1.3;
  letter-spacing: .01em;
  text-transform: uppercase;
}

.nightshop-footer__col-links a {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: .01em;
  text-align: left;
  white-space: nowrap;
}

.nightshop-footer__bottom {
  width: 100%;
  border-top: 1px solid rgba(198, 191, 223, .3);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}

.nightshop-footer__copy {
  margin: 0;
  font-size: 14px;
  line-height: 1.3;
  font-weight: 400;
  text-align: center;
}

.nightshop-footer__payments {
  gap: 12px;
}

.nightshop-payment-badge {
  background: var(--nightshop-white);
  border: .224px solid #d6dce5;
  box-shadow: 0 4.48px 8.96px rgba(183, 183, 183, .08), 0 .448px 4.48px rgba(183, 183, 183, .08);
  border-radius: 5.38px;
  padding: 0;
  font-size: 10px;
  font-weight: 700;
  color: var(--nightshop-text);
  height: 30.03px;
  min-width: 46.61px;
  width: 46.61px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-decoration: none;
}

.nightshop-payment-badge:hover,
.nightshop-payment-badge:focus {
  color: var(--nightshop-text);
  text-decoration: none;
}

.nightshop-payment-badge img {
  display: block;
  max-width: 34px;
  max-height: 18px;
  width: auto;
  height: auto;
}

body#product #wrapper {
  padding-top: 0;
  background: #fff;
  box-shadow: none;
}

body#product #wrapper > .container {
  width: 100%;
  max-width: 1440px;
  padding-right: 65px;
  padding-left: 65px;
}

body#product #wrapper > .container > .row {
  margin-right: 0;
  margin-left: 0;
}

body#product #content-wrapper {
  width: 100%;
  padding: 0;
}

body#product .breadcrumb {
  display: flex;
  padding: 24px 0 0;
  margin: 0;
  background: transparent;
}

body#product .breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

body#product .breadcrumb li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #9d9d9d;
  font-family: var(--nightshop-body);
  font-size: 14px;
  line-height: 1.3;
  letter-spacing: .01em;
}

body#product .breadcrumb li:not(:last-child)::after {
  content: "/";
  color: #9d9d9d;
  font-family: "Poppins", var(--nightshop-body);
  font-size: 16px;
}

body#product .breadcrumb a {
  color: #9d9d9d;
  text-decoration: none;
}

body#product .breadcrumb li:last-child,
body#product .breadcrumb li:last-child span {
  color: #000;
}

.nightshop-product {
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding-top: 48px;
}

.nightshop-product__section {
  display: flex;
  align-items: flex-start;
  gap: 64px;
}

.nightshop-product__gallery {
  display: flex;
  flex: 0 0 auto;
  gap: 24px;
}

.nightshop-product__thumbs,
.nightshop-product__thumb-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.nightshop-product__thumb {
  display: block;
  width: 72px;
  height: 80px;
  object-fit: cover;
  background: #f9f9f9;
  outline: 2px solid transparent;
  cursor: pointer;
  transition: outline-color .15s ease;
}

.nightshop-product__thumb:hover,
.nightshop-product__thumb.selected {
  outline-color: var(--nightshop-accent);
}

.nightshop-product__cover {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 520px;
  height: 624px;
  overflow: hidden;
  background: #f9f9f9;
}

.nightshop-product__cover picture {
  width: 100%;
  height: 100%;
}

.nightshop-product__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nightshop-product__cover .product-flags {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  display: flex;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.nightshop-product__cover .product-flag {
  padding: 4px 10px;
  background: var(--nightshop-accent);
  color: #fff;
  font-family: var(--nightshop-body);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.nightshop-product__zoom {
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: 40px;
  height: 40px;
  border: 0;
  background: #fff;
  cursor: pointer;
}

.nightshop-product__zoom span::before,
.nightshop-product__zoom span::after {
  content: "";
  position: absolute;
  background: #000;
}

.nightshop-product__zoom span::before {
  top: 19px;
  left: 12px;
  width: 16px;
  height: 2px;
}

.nightshop-product__zoom span::after {
  top: 12px;
  left: 19px;
  width: 2px;
  height: 16px;
}

.nightshop-product__info {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 48px;
  max-width: 530px;
}

.nightshop-product__title {
  margin: 0;
  color: #000;
  font-family: var(--nightshop-display);
  font-size: 28px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: .01em;
}

.nightshop-product__price-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 8px;
}

.nightshop-product .product-prices {
  display: flex;
  align-items: center;
  margin: 0;
}

.nightshop-product .product-prices > div {
  margin: 0;
}

.nightshop-product .product-price,
.nightshop-product .current-price-value {
  color: #000;
  font-family: var(--nightshop-display);
  font-size: 28px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: .01em;
}

.nightshop-product .tax-shipping-delivery-label,
.nightshop-product .product-without-taxes,
.nightshop-product .product-unit-price {
  display: none;
}

.nightshop-product__b2b {
  display: inline-flex;
  align-items: center;
  align-self: center;
  gap: 4px;
  padding: 4px 8px;
  color: #000;
  background: var(--nightshop-bg-light);
  border-radius: 4px;
  font-family: var(--nightshop-body);
  font-size: 14px;
  line-height: 1.3;
  text-decoration: none;
}

.nightshop-product__b2b:hover {
  color: #000;
  text-decoration: none;
}

.nightshop-product__b2b svg {
  width: 16px;
  height: 16px;
}

.nightshop-product__details {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.nightshop-product__short,
.nightshop-product__short p {
  margin: 0;
  color: #929292;
  font-family: var(--nightshop-body);
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: .01em;
}

.nightshop-product .product-variants {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.nightshop-product .product-variants-item {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.nightshop-product .product-variants .control-label {
  margin: 0;
  color: #000;
  font-family: var(--nightshop-display);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
}

.nightshop-product .product-variants ul {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.nightshop-product .product-variants li {
  margin: 0;
}

.nightshop-product .product-variants label {
  margin: 0;
  cursor: pointer;
}

.nightshop-product .product-variants .input-radio,
.nightshop-product .product-variants .input-color {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.nightshop-product .product-variants .radio-label,
.nightshop-product .product-variants select {
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  min-width: 48px;
  height: 40px;
  padding: 0 14px;
  color: #000;
  background: var(--nightshop-bg-light);
  border: 1px solid transparent;
  font-family: "Poppins", var(--nightshop-body);
  font-size: 16px;
  line-height: 1.4;
  cursor: pointer;
}

.nightshop-product .product-variants .input-radio:checked + .radio-label,
.nightshop-product .product-variants .radio-label:hover,
.nightshop-product .product-variants select:focus {
  color: var(--nightshop-accent);
  border-color: var(--nightshop-accent);
}

.nightshop-product .product-variants .color {
  display: block;
  width: 40px;
  height: 40px;
  border: 1px solid #9d9d9d;
  border-radius: 0;
  box-shadow: none;
  cursor: pointer;
}

.nightshop-product .product-variants .input-color:checked + .color,
.nightshop-product .product-variants .color:hover {
  border-color: var(--nightshop-accent);
  outline: 1px solid var(--nightshop-accent);
  outline-offset: 2px;
}

.nightshop-product .product-variants select {
  max-width: max-content;
  box-shadow: none;
}

.nightshop-product__qty-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nightshop-product__qty {
  display: flex;
  align-items: center;
  width: 136px;
  height: 46px;
  background: var(--nightshop-bg-light);
}

.nightshop-product__qty-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 46px;
  padding: 0;
  color: #000;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.nightshop-product__qty-btn:hover {
  background: rgba(0, 0, 0, .06);
}

.nightshop-product__qty-input {
  flex: 1 1 auto;
  width: 48px;
  height: 46px;
  padding: 0;
  color: var(--nightshop-accent);
  background: transparent;
  border: 0;
  font-family: var(--nightshop-body);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
  appearance: textfield;
  -moz-appearance: textfield;
}

.nightshop-product__qty-input::-webkit-outer-spin-button,
.nightshop-product__qty-input::-webkit-inner-spin-button {
  margin: 0;
  -webkit-appearance: none;
  appearance: none;
}

body#product input[type="number"]::-webkit-outer-spin-button,
body#product input[type="number"]::-webkit-inner-spin-button {
  margin: 0;
  -webkit-appearance: none;
  appearance: none;
}

body#product input[type="number"] {
  -moz-appearance: textfield;
}

body#product .nightshop-product__qty .bootstrap-touchspin {
  display: flex;
  align-items: center;
  flex: 1 1 auto;
  width: 48px;
  height: 46px;
}

body#product .nightshop-product__qty .bootstrap-touchspin .nightshop-product__qty-input {
  display: block;
  width: 48px;
}

body#product .nightshop-product__qty .bootstrap-touchspin .input-group-btn-vertical,
body#product .nightshop-product__qty .bootstrap-touchspin .input-group-btn {
  display: none;
}

.nightshop-product__availability {
  color: #17a31a;
  font-family: var(--nightshop-body);
  font-size: 14px;
  line-height: 1.3;
}

.nightshop-product__actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 24px;
}

.nightshop-product__add,
.nightshop-product__favorite .wishlist-button,
.nightshop-product__favorite .wishlist-button-add {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 48px;
  border-radius: 0;
  font-family: var(--nightshop-display);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.nightshop-product__add {
  color: #fff;
  background: var(--nightshop-primary);
  border: 0;
}

.nightshop-product__add:hover {
  background: #2d1b6e;
}

.nightshop-product__favorite .wishlist-button {
  position: relative;
  color: var(--nightshop-accent);
  background: #fff;
  border: 1px solid var(--nightshop-accent);
  cursor: pointer;
}

.nightshop-product__favorite .wishlist-button::after {
  content: "Add to favorite";
}

.nightshop-product__favorite .wishlist-button-add {
  position: relative;
  min-width: 100%;
  margin-left: 0;
  padding: 0;
  color: var(--nightshop-accent);
  background: #fff;
  border: 1px solid var(--nightshop-accent);
  border-radius: 0;
  box-shadow: none;
}

.nightshop-product__favorite .wishlist-button-add:hover {
  opacity: 1;
  background: #f0ecff;
}

.nightshop-product__favorite .wishlist-button-add:active {
  transform: none;
}

.nightshop-product__favorite .wishlist-button-add i {
  margin-right: 8px;
  color: var(--nightshop-accent);
  font-size: 20px;
}

.nightshop-product__favorite .wishlist-button-add::after {
  content: "Add to favorite";
}

.nightshop-product .product-minimal-quantity {
  margin: 8px 0 0;
  color: #929292;
  font-size: 13px;
}

.nightshop-product__accordions {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.nightshop-product__accordion {
  border-bottom: 1px solid #ededed;
}

.nightshop-product__accordion-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 48px;
  padding: 0;
  color: #212121;
  background: transparent;
  border: 0;
  font-family: var(--nightshop-body);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: .01em;
  cursor: pointer;
}

.nightshop-product__accordion-head svg {
  width: 12px;
  height: 8px;
  fill: none;
  stroke: #000;
  stroke-width: 2;
  stroke-linecap: round;
}

.nightshop-product__accordion.is-open .nightshop-product__accordion-head svg {
  transform: rotate(180deg);
}

.nightshop-product__accordion-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0 0 16px;
}

.nightshop-product__accordion-body p {
  position: relative;
  margin: 0;
  padding-left: 24px;
  color: #000;
  font-family: var(--nightshop-body);
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: .01em;
}

.nightshop-product__accordion-body p::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  width: 16px;
  height: 16px;
  background: #17a31a;
  clip-path: polygon(38% 68%, 16% 46%, 6% 56%, 38% 88%, 92% 22%, 80% 12%);
}

.nightshop-product__long,
.nightshop-related,
.nightshop-reviews {
  padding: 40px 0;
}

.nightshop-product__long {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.nightshop-product__long-block {
  padding: 24px;
  background: #fafafa;
}

.nightshop-product__long-block h2,
.nightshop-related__header h2,
.nightshop-reviews #product-comments-list-header .comments-nb {
  margin: 0;
  color: #000;
  font-family: var(--nightshop-display);
  font-size: 28px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: .01em;
}

.nightshop-product__long-block .product-description,
.nightshop-product__long-block p,
.nightshop-product__long-block li {
  color: #7e7e7e;
  font-family: var(--nightshop-body);
  font-size: 16px;
  line-height: 1.4;
}

.nightshop-related {
  padding-top: 64px;
  padding-bottom: 64px;
}

.nightshop-related__header,
.nightshop-reviews #product-comments-list-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
}

.nightshop-related__arrows {
  display: flex;
  gap: 16px;
}

.nightshop-related__arrows span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--nightshop-primary);
}

.nightshop-related__arrows svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: var(--nightshop-primary);
  stroke-width: 1.8;
}

.nightshop-related__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.nightshop-related-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.nightshop-related-card__image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 310 / 280;
  overflow: hidden;
  background: #f9f9f9;
}

.nightshop-related-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nightshop-related-card__image span {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(33, 20, 83, .08);
  opacity: 0;
  font-size: 0;
  transition: opacity .2s ease;
}

.nightshop-related-card__image span::before {
  content: "Quick view";
  padding: 8px 18px;
  color: #fff;
  background: var(--nightshop-primary);
  font-family: var(--nightshop-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.nightshop-related-card__image:hover span {
  opacity: 1;
}

.nightshop-related-card__meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.nightshop-related-card__name,
.nightshop-related-card__price {
  color: #000;
  font-family: var(--nightshop-body);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: .01em;
}

.nightshop-related-card__cat {
  color: #929292;
  font-family: var(--nightshop-body);
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: .01em;
}

.nightshop-reviews {
  padding-top: 40px;
  padding-bottom: 72px;
}

.nightshop-reviews #product-comments-list-header,
.nightshop-reviews__header {
  align-items: center;
}

.nightshop-reviews__heading {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.nightshop-reviews__heading h2 {
  margin: 0;
  color: #000;
  font-family: var(--nightshop-display);
  font-size: 40px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: .01em;
  text-transform: uppercase;
}

.nightshop-reviews #product-comments-list-header .comments-nb {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  color: #929292;
  font-family: var(--nightshop-body);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.nightshop-reviews #product-comments-list-header .comments-nb i {
  display: none;
}

.nightshop-reviews__summary {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
}

.nightshop-reviews #product-comments-list-header .grade-stars,
.nightshop-reviews__summary .grade-stars {
  margin: 0;
}

.nightshop-reviews .product-comment-list-item {
  margin: 0 0 16px;
  padding: 24px;
  background: #fff;
  border: 1px solid #ecebea;
}

.nightshop-reviews .product-comment-list-item.row {
  display: flex;
  flex-direction: row;
  gap: 24px;
  margin-left: 0;
  margin-right: 0;
}

.nightshop-reviews .comment-infos {
  flex: 0 0 180px;
  max-width: 180px;
  padding: 0;
}

.nightshop-reviews .comment-content {
  flex: 1 1 auto;
  max-width: none;
  padding: 0;
}

.nightshop-reviews .comment-buttons {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
}

.nightshop-reviews .comment-buttons a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #929292;
  cursor: pointer;
  font-family: var(--nightshop-body);
  font-size: 13px;
  line-height: 1.3;
  text-decoration: none;
}

.nightshop-reviews .comment-buttons a:hover {
  color: var(--nightshop-accent);
}

.nightshop-reviews .comment-buttons .material-icons {
  font-size: 18px;
}

.nightshop-reviews .comment-author,
.nightshop-reviews .comment-content .h4 {
  color: #000;
  font-family: var(--nightshop-body);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
}

.nightshop-reviews .comment-date {
  color: var(--nightshop-accent);
  font-family: var(--nightshop-body);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.nightshop-reviews .comment-content p {
  color: #7e7e7e;
  font-family: var(--nightshop-body);
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: .01em;
}

.nightshop-reviews #product-comments-list-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nightshop-reviews .btn-comment,
.nightshop-reviews .post-product-comment {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 180px;
  height: 48px;
  padding: 16px 32px;
  color: #fff;
  background: var(--nightshop-primary);
  border: 0;
  border-radius: 0;
  font-family: var(--nightshop-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.nightshop-reviews .btn-comment:hover,
.nightshop-reviews .post-product-comment:hover,
.nightshop-reviews .btn-comment:focus,
.nightshop-reviews .post-product-comment:focus {
  color: #fff;
  background: #2d1b6e;
  text-decoration: none;
}

.nightshop-reviews .btn-comment .material-icons,
.nightshop-reviews .post-product-comment .material-icons {
  display: none;
}

.nightshop-reviews #empty-product-comment {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  color: #929292;
  font-family: var(--nightshop-body);
  font-size: 16px;
  line-height: 1.4;
  text-align: center;
}

.nightshop-reviews #empty-product-comment .post-product-comment {
  margin: 0;
}

.nightshop-reviews #product-comments-list-pagination ul {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.nightshop-reviews #product-comments-list-pagination li span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  color: #000;
  background: #fff;
  border: 1px solid #ecebea;
  cursor: pointer;
}

.nightshop-reviews #product-comments-list-pagination li.active span,
.nightshop-reviews #product-comments-list-pagination li span:hover {
  color: #fff;
  background: var(--nightshop-primary);
  border-color: var(--nightshop-primary);
}

.nightshop-reviews #product-comments-list-pagination li.disabled span {
  color: #c6bfdf;
  cursor: default;
  background: #f3f3f3;
  border-color: #f3f3f3;
}

body#product .page-footer {
  display: none;
}

body#authentication #wrapper {
  position: fixed;
  inset: 102px 0 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  padding: 32px 20px;
  overflow-y: auto;
  background: rgba(0, 0, 0, .42);
  box-shadow: none;
}

body#authentication {
  overflow: hidden;
}

body#authentication #wrapper > .container {
  width: 100%;
  max-width: none;
  padding: 0;
  margin: 0;
}

body#authentication #wrapper > .container > .breadcrumb,
body#authentication .page-header,
body#authentication #main footer.page-footer {
  display: none;
}

body#authentication #content.page-content.card {
  display: block;
  padding: 0;
  margin: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

body#authentication #wrapper > .container > .row {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 0;
}

body#authentication #content-wrapper {
  display: flex !important;
  justify-content: center;
  flex: 0 0 100% !important;
  float: none !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

body#authentication .nightshop-auth-content {
  position: static !important;
}

body#authentication #left-column,
body#authentication #right-column {
  display: none !important;
}

body#authentication #main {
  display: flex;
  justify-content: center;
  width: 100% !important;
  max-width: none !important;
}

body#authentication #content {
  width: 100% !important;
  max-width: none !important;
}

body#authentication .nightshop-login {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  min-height: 0;
}

body#authentication .nightshop-login-card {
  position: fixed !important;
  top: calc(102px + ((100vh - 102px) / 2)) !important;
  left: 50% !important;
  z-index: 100;
  width: 464px;
  max-width: calc(100vw - 40px);
  max-height: calc(100vh - 134px);
  margin: 0 !important;
  overflow-y: auto;
  transform: translate(-50%, -50%) !important;
}

.nightshop-login-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
  width: 464px;
  max-width: calc(100vw - 40px);
  min-height: 596px;
  padding: 32px;
  background: #fff;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .22);
}

.nightshop-login-modal {
  z-index: 3000;
  padding: 0 !important;
}

.nightshop-login-modal.is-open,
.nightshop-login-modal.show,
.nightshop-login-modal.in {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 20px !important;
  background: rgba(0, 0, 0, .42) !important;
}

.modal-backdrop.show,
.modal-backdrop.in {
  opacity: .42;
}

.nightshop-register-modal.show,
.nightshop-register-modal.in {
  background-color: rgba(0, 0, 0, .42) !important;
}

.nightshop-register-modal.needs-nightshop-backdrop::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  background: rgba(0, 0, 0, .42);
  pointer-events: none;
}

.nightshop-login-modal .modal-dialog {
  width: 464px;
  max-width: calc(100vw - 40px);
  margin-right: auto;
  margin-left: auto;
}

.nightshop-login-modal__dialog {
  z-index: 1;
}

.nightshop-login-modal .modal-content {
  border: 0;
  border-radius: 0;
  outline: 0;
}

body.nightshop-login-modal-open {
  overflow: hidden;
  padding-right: 0 !important;
}

body.modal-open:not(:has(.modal.show)) {
  padding-right: 0 !important;
}

.nightshop-login-close {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  padding: 0;
  color: #000;
  background: transparent;
  border: 0;
  text-decoration: none;
  cursor: pointer;
}

.nightshop-login-close:hover,
.nightshop-login-close:focus {
  color: #5236d0;
  text-decoration: none;
}

.nightshop-login-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  text-align: center;
}

.nightshop-login-title h1 {
  margin: 0;
  color: #000;
  font-family: var(--nightshop-display);
  font-size: 28px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: .01em;
}

.nightshop-login-title p {
  margin: 0;
  color: #929292;
  font-family: var(--nightshop-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: .01em;
}

.nightshop-login-form form,
.nightshop-login-fields,
.nightshop-login-field,
.nightshop-login-footer {
  display: flex;
  flex-direction: column;
}

.nightshop-login-form form {
  gap: 40px;
}

.nightshop-login-fields {
  gap: 16px;
}

.nightshop-login-field {
  gap: 8px;
}

.nightshop-login-field label {
  display: block;
  width: 100%;
  margin: 0;
  color: #000;
  font-family: var(--nightshop-body);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3;
  text-align: left;
}

.nightshop-login-input {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  width: 100%;
  height: 48px;
  padding: 14px 16px;
  border: 1px solid rgba(198, 191, 223, .3);
  background: #fff;
}

.nightshop-login-field.is-invalid .nightshop-login-input,
.nightshop-login-input.is-invalid {
  border-color: #e33838;
  background: #fff7f7;
  box-shadow: inset 0 0 0 1px #e33838;
}

.nightshop-login-field.is-invalid .nightshop-login-input input,
.nightshop-login-input input.is-invalid {
  color: #c62828;
  background: #fff7f7;
}

.nightshop-login-field.is-invalid label,
.nightshop-register-agreement.is-invalid {
  color: #c62828;
}

.nightshop-login-field.is-invalid .nightshop-login-input input::placeholder {
  color: #d28a8a;
}

.nightshop-login-input input {
  flex: 1 1 auto;
  min-width: 0;
  width: 100%;
  padding: 0;
  color: #000;
  background: transparent;
  border: 0;
  outline: 0;
  box-shadow: none;
  font-family: var(--nightshop-body);
  font-size: 14px;
  line-height: 1.3;
}

.nightshop-login-input select {
  flex: 1 1 auto;
  min-width: 0;
  width: 100%;
  padding: 0;
  color: #000;
  background: transparent;
  border: 0;
  outline: 0;
  box-shadow: none;
  font-family: var(--nightshop-body);
  font-size: 14px;
  line-height: 1.3;
  appearance: none;
}

.nightshop-login-input--select {
  position: relative;
}

.nightshop-login-input--select::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 1.5px solid #000;
  border-bottom: 1.5px solid #000;
  transform: rotate(45deg) translateY(-2px);
}

.nightshop-login-input input::placeholder {
  color: #929292;
}

.nightshop-login-eye {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
  padding: 0;
  color: #929292;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.nightshop-login-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  min-height: 21px;
}

.nightshop-login-remember {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  color: #2e3139;
  font-family: var(--nightshop-body);
  font-size: 14px;
  line-height: 1.3;
}

.nightshop-login-remember input {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: #4045ef;
}

.nightshop-login-actions a,
.nightshop-login-signup a {
  color: #5236d0;
  font-family: var(--nightshop-body);
  font-size: 14px;
  line-height: 1.3;
  letter-spacing: .01em;
  text-decoration: underline;
}

.nightshop-login-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 48px;
  padding: 16px 24px;
  color: #fff;
  background: #211453;
  border: 0;
  font-family: var(--nightshop-display);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: .04em;
  text-transform: uppercase;
  cursor: pointer;
}

.nightshop-login-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 18px;
}

.nightshop-login-divider span {
  flex: 1 1 auto;
  height: 1px;
  background: rgba(198, 191, 223, .3);
}

.nightshop-login-divider em {
  color: #000;
  font-family: var(--nightshop-body);
  font-size: 14px;
  font-style: normal;
  line-height: 1.3;
}

.nightshop-login-social {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.nightshop-login-google {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  height: 54px;
  padding: 17px 16px;
  color: #000;
  background: #fff;
  border: 1px solid rgba(198, 191, 223, .3);
  font-family: var(--nightshop-body);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
  text-decoration: none;
  cursor: pointer;
  opacity: 1;
}

.nightshop-login-google:hover,
.nightshop-login-google:focus {
  color: #000;
  text-decoration: none;
}

.nightshop-login-google + .nightshop-login-social-button {
  margin-top: 12px;
}

.nightshop-login-social-button + .nightshop-login-social-button {
  margin-top: 12px;
}

.nightshop-login-social-button:disabled {
  cursor: not-allowed;
}

.nightshop-login-google:disabled {
  opacity: 1;
}

.nightshop-login-signup {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  color: #929292;
  font-family: var(--nightshop-body);
  font-size: 14px;
  line-height: 1.3;
}

.nightshop-register-card {
  min-height: 0;
  max-height: calc(100vh - 64px);
  overflow-y: auto;
}

.nightshop-register-title {
  align-items: flex-start;
  text-align: left;
}

.nightshop-register-tabs {
  display: flex;
  align-items: center;
  gap: 24px;
  width: 100%;
  /* margin-top: -24px; */
}

.nightshop-register-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: #000;
  font-family: var(--nightshop-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: .01em;
  cursor: pointer;
}

.nightshop-register-tab.is-disabled {
  color: #9d9d9d;
  cursor: default;
}

.nightshop-register-tab input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.nightshop-register-radio {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
}

.nightshop-register-radio::before {
  content: "";
  width: 20px;
  height: 20px;
  border: 2px solid #929292;
  border-radius: 50%;
}

.nightshop-register-tab.is-active .nightshop-register-radio::before {
  border-color: #000;
}

.nightshop-register-tab.is-active .nightshop-register-radio::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background: #000;
  border-radius: 50%;
}

.nightshop-register-agreement {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  margin: 0;
  color: #000;
  font-family: var(--nightshop-body);
  font-size: 14px;
  line-height: 1.3;
  cursor: pointer;
}

.nightshop-register-agreement input {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: #000;
}

.nightshop-register-agreement.is-invalid input {
  outline: 1px solid #e33838;
  outline-offset: 2px;
}

.nightshop-register-login-link {
  padding: 0;
  color: #5236d0;
  background: transparent;
  border: 0;
  font-family: var(--nightshop-body);
  font-size: 14px;
  line-height: 1.3;
  letter-spacing: .01em;
  text-decoration: underline;
  cursor: pointer;
}

.nightshop-business-register-form form,
.nightshop-business-step {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.nightshop-business-step[hidden],
.nightshop-register-form[hidden],
.nightshop-login-divider[hidden],
.nightshop-login-google[hidden] {
  display: none !important;
}

body#authentication .alert {
  width: 100%;
  margin: 0;
}

.nightshop-login-ajax-error {
  width: 100%;
  margin: 0 0 16px;
  padding: 12px 16px;
  border: 1px solid #ebcccc;
  background: #f2dede;
  color: #a94442;
  font-family: var(--nightshop-body);
  font-size: 14px;
  line-height: 1.4;
}

.nightshop-login-ajax-error[hidden] {
  display: none !important;
}

.wishlist-login .wishlist-modal,
.wishlist-login .modal-backdrop {
  display: none !important;
}

body#my-account #wrapper,
body#history #wrapper,
body#identity #wrapper,
body[id*="module-blockwishlist"] #wrapper,
body[class*="module-blockwishlist"] #wrapper {
  background: #fff;
  box-shadow: none;
}

body#my-account #wrapper > .container,
body#history #wrapper > .container,
body#identity #wrapper > .container,
body[id*="module-blockwishlist"] #wrapper > .container,
body[class*="module-blockwishlist"] #wrapper > .container {
  width: 100%;
  max-width: 1440px;
  padding: 40px 64px;
}

body#my-account #wrapper > .container > .breadcrumb,
body#history #wrapper > .container > .breadcrumb,
body#identity #wrapper > .container > .breadcrumb,
body[id*="module-blockwishlist"] #wrapper > .container > .breadcrumb,
body[class*="module-blockwishlist"] #wrapper > .container > .breadcrumb,
body#my-account .page-header,
body#history .page-header,
body#identity .page-header,
body[id*="module-blockwishlist"] .page-header,
body[class*="module-blockwishlist"] .page-header,
body#my-account .page-footer,
body#history .page-footer,
body#identity .page-footer,
body[id*="module-blockwishlist"] .page-footer,
body[class*="module-blockwishlist"] .page-footer {
  display: none;
}

body#my-account #content.page-content,
body#history #content.page-content,
body#identity #content.page-content,
body[id*="module-blockwishlist"] #content.page-content,
body[class*="module-blockwishlist"] #content.page-content {
  width: 100%;
  padding: 0;
}

.nightshop-account {
  display: flex;
  align-items: flex-start;
  gap: 64px;
  width: 100%;
}

.nightshop-account__sidebar {
  position: relative;
  display: flex;
  flex: 0 0 190px;
  flex-direction: column;
  gap: 32px;
  min-height: 602px;
  padding: 16px 32px 16px 0;
  border-right: 1px solid rgba(198, 191, 223, .3);
}

.nightshop-account__sidebar a {
  color: #000;
  font-family: var(--nightshop-body);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: .01em;
  text-decoration: none;
}

.nightshop-account__sidebar a:hover,
.nightshop-account__sidebar a:focus,
.nightshop-account__sidebar a.is-active {
  color: #5236d0;
  text-decoration: none;
}

.nightshop-account__logout {
  position: absolute;
  bottom: 0;
  left: 0;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 0;
  color: #000 !important;
  font-size: 14px !important;
}

.nightshop-account__logout svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nightshop-account__main {
  display: flex;
  flex: 1 1 auto;
  min-width: 0;
  flex-direction: column;
  gap: 40px;
}

.nightshop-account__cards {
  display: flex;
  justify-content: flex-end;
  align-items: stretch;
  gap: 24px;
}

.nightshop-account__card {
  display: flex;
  flex: 0 1 290px;
  min-width: 220px;
  flex-direction: column;
  gap: 16px;
  padding: 16px 32px;
  border: 1px solid rgba(198, 191, 223, .3);
  color: #000;
  background: #fff;
  text-decoration: none;
}

.nightshop-account__card:hover,
.nightshop-account__card:focus {
  color: #000;
  border-color: rgba(82, 54, 208, .35);
  text-decoration: none;
}

.nightshop-account__card--wallet {
  flex-basis: 241px;
}

.nightshop-account__card-title {
  color: #000;
  font-family: var(--nightshop-body);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: .01em;
}

.nightshop-account__card-body {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.nightshop-account__icon {
  display: inline-flex;
  flex: 0 0 32px;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(241, 239, 251, .7);
  color: #5236d0;
}

.nightshop-account__icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nightshop-account__card-text {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 8px;
  color: #000;
  font-family: var(--nightshop-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: .01em;
}

.nightshop-account__card-text strong {
  color: #000;
  font-weight: 400;
}

.nightshop-account__download {
  display: inline-flex;
  flex: 0 0 auto;
  align-self: center;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 16px;
  border: 1px solid #000;
  color: #000;
  background: #fff;
  font-family: var(--nightshop-display);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: .04em;
  text-transform: uppercase;
  text-decoration: none;
}

.nightshop-account__download:hover,
.nightshop-account__download:focus {
  color: #000;
  background: #f5f5f5;
  text-decoration: none;
}

.nightshop-account__download svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.nightshop-account__orders {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.nightshop-account__orders-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nightshop-account__orders-header h2 {
  margin: 0;
  color: #000;
  font-family: var(--nightshop-display);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
}

.nightshop-account__orders-header a {
  color: #5236d0;
  font-family: var(--nightshop-body);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: .01em;
  text-decoration: underline;
}

.nightshop-account__orders-count {
  color: #929292;
  font-family: var(--nightshop-body);
  font-size: 14px;
  line-height: 1.3;
}

.nightshop-account__order-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.nightshop-account__order-details {
  display: block;
}

.nightshop-account__order-details summary {
  list-style: none;
  cursor: pointer;
}

.nightshop-account__order-details summary::-webkit-details-marker {
  display: none;
}

.nightshop-account__order-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px;
  border: 1px solid rgba(198, 191, 223, .3);
  color: #000;
  background: #fff;
  text-decoration: none;
}

.nightshop-account__order-row:hover,
.nightshop-account__order-row:focus {
  color: #000;
  border-color: rgba(82, 54, 208, .35);
  text-decoration: none;
}

.nightshop-account__order-left {
  display: flex;
  align-items: center;
  gap: 96px;
  min-width: 0;
}

.nightshop-account__order-info,
.nightshop-account__order-total {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.nightshop-account__order-info {
  min-width: 200px;
}

.nightshop-account__order-info span,
.nightshop-account__order-total span,
.nightshop-account__count {
  color: #929292;
  font-family: var(--nightshop-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: .01em;
}

.nightshop-account__order-total strong {
  color: #000;
  font-family: var(--nightshop-body);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: .01em;
}

.nightshop-account__order-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nightshop-account__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 8px;
  font-family: var(--nightshop-body);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.4;
  white-space: nowrap;
}

.nightshop-account__badge--green {
  color: #1e973d;
  background: #eaf3de;
}

.nightshop-account__badge--red {
  color: #e43737;
  background: #fcebeb;
}

.nightshop-account__badge--yellow {
  color: #efbf44;
  background: #fef5e6;
}

.nightshop-account__thumbs {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nightshop-account__thumb {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  overflow: hidden;
  color: #bbb;
  background: #e8e4f0;
  border-radius: 2px;
}

.nightshop-account__thumb svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.nightshop-account__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nightshop-account__arrow {
  display: inline-flex;
  width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
  color: #000;
}

.nightshop-account__arrow svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nightshop-account__order-details[open] .nightshop-account__arrow svg {
  transform: rotate(90deg);
}

.nightshop-account__products-dropdown {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  border: 1px solid rgba(198, 191, 223, .3);
  border-top: 0;
  background: #fff;
}

.nightshop-account__products-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: #000;
  font-family: var(--nightshop-body);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
}

.nightshop-account__products-head a,
.nightshop-account__order-actions a {
  color: #5236d0;
  font-family: var(--nightshop-body);
  font-size: 14px;
  font-weight: 400;
  text-decoration: underline;
}

.nightshop-account__products-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nightshop-account__product-line {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 16px;
  padding: 12px 0;
  border-top: 1px solid rgba(198, 191, 223, .3);
}

.nightshop-account__product-thumb {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  overflow: hidden;
  color: #bbb;
  background: #e8e4f0;
  border-radius: 2px;
}

.nightshop-account__product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nightshop-account__product-thumb svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.nightshop-account__product-info {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 4px;
  color: #929292;
  font-family: var(--nightshop-body);
  font-size: 14px;
  line-height: 1.4;
}

.nightshop-account__product-info strong,
.nightshop-account__product-qty,
.nightshop-account__product-total {
  color: #000;
  font-family: var(--nightshop-body);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
}

.nightshop-account__order-actions {
  display: flex;
  gap: 16px;
}

.nightshop-account__extra-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.nightshop-account__empty {
  padding: 24px;
  border: 1px solid rgba(198, 191, 223, .3);
  color: #929292;
  background: #fff;
  font-family: var(--nightshop-body);
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: .01em;
}

.nightshop-account__extra-links a {
  color: #5236d0;
  font-family: var(--nightshop-body);
  font-size: 14px;
}

.nightshop-account__panel {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.nightshop-account--settings-page .nightshop-account__panel {
  width: min(100%, 864px);
  margin: 0 auto;
  gap: 32px;
}

.nightshop-settings-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nightshop-settings-header h2 {
  margin: 0;
  color: #000;
  font-family: var(--nightshop-display);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
}

.nightshop-settings-header a {
  color: #5236d0;
  font-family: var(--nightshop-body);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: .01em;
  text-decoration: underline;
  white-space: nowrap;
}

.nightshop-account__settings-grid {
  display: flex;
  align-items: flex-start;
  gap: 64px;
  width: 100%;
}

.nightshop-account__settings-column {
  flex: 1 1 0;
  min-width: 0;
}

.nightshop-settings-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.nightshop-settings-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.nightshop-settings-field label {
  align-self: flex-start;
  width: 100%;
  margin: 0;
  color: #000;
  font-family: var(--nightshop-body);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3;
  text-align: left;
}

.nightshop-settings-input,
.nightshop-settings-select {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  width: 100%;
  height: 48px;
  padding: 14px 16px;
  border: 1px solid #000;
  background: #fff;
}

.nightshop-settings-input input,
.nightshop-settings-select select {
  box-sizing: border-box;
  width: 100%;
  min-width: 0;
  height: 20px;
  padding: 0;
  border: 0;
  outline: 0;
  color: #000;
  background: transparent;
  box-shadow: none;
  font-family: var(--nightshop-body);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3;
}

.nightshop-settings-input input::placeholder {
  color: #929292;
  opacity: 1;
}

.nightshop-settings-phone {
  box-sizing: border-box;
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  align-items: stretch;
  width: 100%;
  height: 50px;
  border: 1px solid #000;
  background: #fff;
}

.nightshop-settings-phone > input {
  box-sizing: border-box;
  width: 100%;
  min-width: 0;
  height: 100%;
  padding: 14px 16px;
  border: 0;
  border-left: 1px solid #000;
  outline: 0;
  color: #000;
  background: transparent;
  box-shadow: none;
  font-family: var(--nightshop-body);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3;
}

.nightshop-settings-phone > input::placeholder {
  color: #929292;
  opacity: 1;
}

.nightshop-settings-prefix {
  box-sizing: border-box;
  position: relative;
  display: block;
  height: 100%;
  min-width: 0;
}

.nightshop-settings-prefix summary {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  width: 100%;
  height: 100%;
  padding: 14px 12px 14px 16px;
  color: #000;
  font-family: var(--nightshop-body);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3;
  cursor: pointer;
  list-style: none;
}

.nightshop-settings-prefix summary::-webkit-details-marker {
  display: none;
}

.nightshop-settings-prefix summary svg {
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  fill: none;
  stroke: #000;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nightshop-settings-prefix[open] summary svg {
  transform: rotate(180deg);
}

.nightshop-settings-prefix__menu {
  box-sizing: border-box;
  position: absolute;
  z-index: 20;
  top: calc(100% + 4px);
  left: -1px;
  width: calc(100% + 2px);
  border: 1px solid #000;
  background: #fff;
  box-shadow: 0 12px 24px rgba(0, 0, 0, .12);
}

.nightshop-settings-prefix__menu label {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 40px;
  margin: 0;
  padding: 10px 16px;
  color: #000;
  font-family: var(--nightshop-body);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3;
  cursor: pointer;
}

.nightshop-settings-prefix__menu label:hover,
.nightshop-settings-prefix__menu label:focus-within {
  color: #fff;
  background: #211453;
}

.nightshop-settings-prefix__menu input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.nightshop-settings-prefix__menu input:checked + span {
  font-weight: 700;
}

.nightshop-settings-select {
  position: relative;
}

.nightshop-settings-select select {
  appearance: none;
  cursor: pointer;
}

.nightshop-settings-select svg {
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  fill: none;
  stroke: #000;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  pointer-events: none;
}

.nightshop-settings-row {
  display: flex;
  gap: 16px;
}

.nightshop-settings-row .nightshop-settings-field {
  flex: 1 1 0;
}

.nightshop-settings-row .nightshop-settings-field--phone {
  flex: 1.4 1 0;
}

.nightshop-settings-input--password {
  border-color: rgba(198, 191, 223, .3);
}

.nightshop-settings-eye {
  display: inline-flex;
  flex: 0 0 24px;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  padding: 0;
  border: 0;
  color: #929292;
  background: transparent;
  cursor: pointer;
}

.nightshop-settings-eye svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nightshop-settings-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  padding: 16px 24px;
  border: 0;
  color: #fff;
  background: #211453;
  font-family: var(--nightshop-display);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: .04em;
  text-transform: uppercase;
  cursor: pointer;
}

.nightshop-settings-submit:hover,
.nightshop-settings-submit:focus {
  color: #fff;
  opacity: .88;
}

.nightshop-settings-divider {
  width: 100%;
  margin: 0;
  border: 0;
  border-top: 1px solid rgba(198, 191, 223, .3);
}

#blockcart-modal.nightshop-cart-modal {
  overflow-x: hidden;
  overflow-y: auto;
  padding: 20px;
  background: rgba(0, 0, 0, .45);
}

#blockcart-modal .nightshop-cart-modal__dialog {
  width: min(960px, 100%);
  max-width: 100%;
  margin: 0 auto;
  min-height: calc(100vh - 40px);
  display: flex;
  align-items: center;
}

#blockcart-modal .nightshop-cart-modal__content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 48px;
  width: 100%;
  max-height: calc(100vh - 40px);
  padding: 40px;
  border: 0;
  border-radius: 0;
  background: #fff;
  box-shadow: none;
  overflow-y: auto;
}

#blockcart-modal .nightshop-cart-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  padding: 0;
  border: 0;
  color: #000;
  background: transparent;
  cursor: pointer;
}

#blockcart-modal .nightshop-cart-modal__close:hover,
#blockcart-modal .nightshop-cart-modal__close:focus {
  opacity: .5;
}

#blockcart-modal .nightshop-cart-modal__close svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}

#blockcart-modal .nightshop-cart-modal__top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  width: 100%;
}

#blockcart-modal .nightshop-cart-modal__badge {
  display: flex;
  align-items: center;
  gap: 16px;
}

#blockcart-modal .nightshop-cart-modal__check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: #eaf3de;
}

#blockcart-modal .nightshop-cart-modal__check svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: #1e973d;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

#blockcart-modal .nightshop-cart-modal__badge h3,
#blockcart-modal .nightshop-cart-modal__summary h4,
#blockcart-modal .nightshop-cart-modal__recommendations h4 {
  margin: 0;
  color: #000;
  font-family: var(--nightshop-display);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
}

#blockcart-modal .nightshop-cart-modal__row {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  width: 100%;
}

#blockcart-modal .nightshop-cart-modal__items {
  display: flex;
  flex: 0 0 421px;
  flex-direction: column;
  gap: 24px;
  width: 421px;
}

#blockcart-modal .nightshop-cart-modal__item {
  display: flex;
  flex-direction: column;
  gap: 0;
}

#blockcart-modal .nightshop-cart-modal__item-inner {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding-bottom: 24px;
}

#blockcart-modal .nightshop-cart-modal__image {
  display: flex;
  flex: 0 0 116px;
  align-items: center;
  justify-content: center;
  width: 116px;
  height: 116px;
  background: #f3f3f3;
  overflow: hidden;
}

#blockcart-modal .nightshop-cart-modal__image picture,
#blockcart-modal .nightshop-cart-modal__image img {
  display: block;
  width: 100%;
  height: 100%;
}

#blockcart-modal .nightshop-cart-modal__image img {
  object-fit: contain;
}

#blockcart-modal .nightshop-cart-modal__info {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 30px;
  min-width: 0;
}

#blockcart-modal .nightshop-cart-modal__meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

#blockcart-modal .nightshop-cart-modal__name {
  color: #000;
  font-family: var(--nightshop-body);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: .01em;
  text-decoration: none;
}

#blockcart-modal .nightshop-cart-modal__name:hover,
#blockcart-modal .nightshop-cart-modal__name:focus {
  color: #5236d0;
  text-decoration: none;
}

#blockcart-modal .nightshop-cart-modal__variant {
  color: #929292;
  font-family: var(--nightshop-body);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3;
}

#blockcart-modal .nightshop-cart-modal__qty-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

#blockcart-modal .nightshop-cart-modal__qty {
  color: #000;
  font-family: var(--nightshop-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: .01em;
}

#blockcart-modal .nightshop-cart-modal__price {
  color: #000;
  font-family: var(--nightshop-body);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: .01em;
}

#blockcart-modal .nightshop-cart-modal__divider,
#blockcart-modal .nightshop-cart-modal__summary-divider {
  width: 100%;
  height: 1px;
  background: rgba(198, 191, 223, .3);
}

#blockcart-modal .nightshop-cart-modal__vertical {
  flex: 0 0 1px;
  align-self: stretch;
  width: 1px;
  background: rgba(198, 191, 223, .3);
}

#blockcart-modal .nightshop-cart-modal__summary {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  min-width: 0;
}

#blockcart-modal .nightshop-cart-modal__summary-lines,
#blockcart-modal .nightshop-cart-modal__summary-group {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 16px;
}

#blockcart-modal .nightshop-cart-modal__summary-row,
#blockcart-modal .nightshop-cart-modal__total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
}

#blockcart-modal .nightshop-cart-modal__summary-row span,
#blockcart-modal .nightshop-cart-modal__total-row span {
  color: #929292;
  font-family: var(--nightshop-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: .01em;
}

#blockcart-modal .nightshop-cart-modal__total-row span {
  color: #000;
}

#blockcart-modal .nightshop-cart-modal__summary-row strong,
#blockcart-modal .nightshop-cart-modal__total-row strong {
  color: #000;
  font-family: var(--nightshop-body);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: .01em;
  text-align: right;
  white-space: nowrap;
}

#blockcart-modal .nightshop-cart-modal__total-row strong {
  font-size: 20px;
}

#blockcart-modal .nightshop-cart-modal__summary-row .nightshop-cart-modal__discount {
  color: #e43737;
}

#blockcart-modal .nightshop-cart-modal__tax-total {
  margin-top: -4px;
}

#blockcart-modal .nightshop-cart-modal__actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

#blockcart-modal .nightshop-cart-modal__primary,
#blockcart-modal .nightshop-cart-modal__secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 48px;
  padding: 12px 32px;
  border-radius: 0;
  font-family: var(--nightshop-display);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: .04em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
}

#blockcart-modal .nightshop-cart-modal__primary {
  border: 1px solid #211453;
  color: #fff;
  background: #211453;
}

#blockcart-modal .nightshop-cart-modal__primary:hover,
#blockcart-modal .nightshop-cart-modal__primary:focus {
  color: #fff;
  background: #2e1c73;
  text-decoration: none;
}

#blockcart-modal .nightshop-cart-modal__secondary {
  border: 1px solid #5236d0;
  color: #5236d0;
  background: #fff;
}

#blockcart-modal .nightshop-cart-modal__secondary:hover,
#blockcart-modal .nightshop-cart-modal__secondary:focus {
  color: #5236d0;
  background: #f5f2ff;
}

#blockcart-modal .nightshop-cart-modal__secondary svg {
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

#blockcart-modal .nightshop-cart-modal__recommendations {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

#blockcart-modal .nightshop-cart-modal__rec-grid {
  display: flex;
  gap: 24px;
  width: 100%;
}

#blockcart-modal .nightshop-cart-modal__rec-card {
  display: flex;
  flex: 1 1 0;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
  color: #000;
  text-decoration: none;
}

#blockcart-modal .nightshop-cart-modal__rec-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #f9f9f9;
  overflow: hidden;
}

#blockcart-modal .nightshop-cart-modal__rec-img picture,
#blockcart-modal .nightshop-cart-modal__rec-img img {
  display: block;
  width: 100%;
  height: 100%;
}

#blockcart-modal .nightshop-cart-modal__rec-img img {
  object-fit: contain;
}

#blockcart-modal .nightshop-cart-modal__rec-card:hover .nightshop-cart-modal__rec-img {
  background: #f0ede8;
}

#blockcart-modal .nightshop-cart-modal__rec-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

#blockcart-modal .nightshop-cart-modal__rec-swatches {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
}

#blockcart-modal .nightshop-cart-modal__rec-swatches span {
  width: 24px;
  height: 24px;
  background: #f3f3f3;
}

#blockcart-modal .nightshop-cart-modal__rec-swatches span:nth-child(2) {
  background: #bfb2b2;
}

#blockcart-modal .nightshop-cart-modal__rec-swatches span:nth-child(3) {
  background: #d4c5a9;
}

#blockcart-modal .nightshop-cart-modal__rec-name,
#blockcart-modal .nightshop-cart-modal__rec-price {
  color: #000;
  font-family: var(--nightshop-body);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: .01em;
}

#blockcart-modal .nightshop-cart-modal__rec-cat {
  color: #929292;
  font-family: var(--nightshop-body);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: .01em;
}

#blockcart-modal .nightshop-cart-modal__rec-price {
  font-size: 15px;
  font-weight: 600;
}

.nightshop-account__settings-form .btn-primary,
.nightshop-wishlist-container .wishlist-add-to-new,
.nightshop-wishlist-container .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 24px;
  border: 0;
  border-radius: 0;
  color: #fff !important;
  background: #211453 !important;
  font-family: var(--nightshop-display);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: .04em;
  text-transform: uppercase;
  text-decoration: none;
}

.nightshop-account__danger-zone {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  width: 371px;
  max-width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
}

.nightshop-account__delete-button {
  display: inline-flex;
  width: 133px;
  height: 40px;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 8px 0;
  border: 0;
  color: #e43737;
  background: transparent;
  font-family: var(--nightshop-body);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: .01em;
  text-transform: none;
  text-decoration: none;
}

.nightshop-account__delete-button svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nightshop-account__delete-button:hover,
.nightshop-account__delete-button:focus {
  color: #e43737;
  background: transparent;
  text-decoration: none;
}

.nightshop-account__danger-zone p {
  width: 371px;
  max-width: 100%;
  margin: 0;
  color: #000;
  font-family: var(--nightshop-body);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3;
}

.nightshop-wishlist-container {
  width: 100%;
  padding: 24px;
  border: 1px solid rgba(198, 191, 223, .3);
  background: #fff;
}

.nightshop-wishlist-container .wishlist-list,
.nightshop-wishlist-container .wishlist-products-list {
  display: grid;
  gap: 16px;
}

.nightshop-wishlist-container .wishlist-list-item,
.nightshop-wishlist-container .wishlist-product {
  border: 1px solid rgba(198, 191, 223, .3);
  border-radius: 0;
  box-shadow: none;
}

.nightshop-404 {
  position: relative;
  display: flex;
  width: 497px;
  height: 371px;
  min-height: 0;
  margin: 179px auto 80px;
  padding: 0;
  background: transparent;
}

.nightshop-404__inner {
  position: static;
  display: flex;
  width: 497px;
  height: 371px;
  max-width: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.nightshop-404__content {
  display: flex;
  width: 100%;
  height: 283px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 56px;
}

.nightshop-404 h1 {
  width: 100%;
  height: 205px;
  margin: 0;
  color: #000;
  font-family: var(--nightshop-display);
  font-size: 148px;
  font-weight: 700;
  line-height: 205px;
  letter-spacing: 0;
  text-align: center;
}

.nightshop-404 p {
  width: 100%;
  margin: 0;
  color: #b7b7b7;
  font-family: var(--nightshop-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: .01em;
  text-align: center;
}

.nightshop-404__button {
  display: inline-flex;
  flex: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 221px;
  height: 48px;
  padding: 16px 32px;
  white-space: nowrap;
  color: #fff;
  background: #211453;
  font-family: var(--nightshop-display);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: .04em;
  text-transform: uppercase;
  text-decoration: none;
}

body:has(.nightshop-404) #wrapper > .container {
  width: 100%;
  max-width: none;
  padding: 0;
}

body:has(.nightshop-404) #wrapper > .container > .breadcrumb,
body:has(.nightshop-404) .page-header,
body:has(.nightshop-404) .page-footer {
  display: none;
}

body:has(.nightshop-404) #wrapper > .container > .row {
  margin: 0;
}

body:has(.nightshop-404) #content-wrapper {
  width: 100%;
  padding: 0;
}

.nightshop-404__button:hover,
.nightshop-404__button:focus {
  color: #fff;
  background: #5236d0;
  text-decoration: none;
}

body#category #wrapper {
  padding-top: 0;
  padding-bottom: 0;
  background: #fff;
  box-shadow: none;
}

body#category #content-wrapper.col-xs-12,
body#category.category-depth-level-2 #wrapper > .container,
body#category #wrapper > .container:has(#content-wrapper.col-xs-12) {
  width: 100%;
}

body#category #content-wrapper.col-xs-12 {
  padding-right: 0;
  padding-left: 0;
}

body#category.category-depth-level-2 #wrapper > .container,
body#category #wrapper > .container:has(#content-wrapper.col-xs-12) {
  max-width: none;
  padding: 0;
}

body#category.category-depth-level-2 #wrapper > .container > .row,
body#category #wrapper > .container:has(#content-wrapper.col-xs-12) > .row {
  margin-right: 0;
  margin-left: 0;
}

body#category.category-depth-level-2 #wrapper > .container > .breadcrumb,
body#category #wrapper > .container:has(#content-wrapper.col-xs-12) > .breadcrumb {
  display: none;
}

.nightshop-category-container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 64px;
}

.nightshop-category-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 480px;
  overflow: hidden;
  background: #000;
}

.nightshop-category-hero picture,
.nightshop-category-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.nightshop-category-hero img {
  object-fit: cover;
  opacity: .72;
}

.nightshop-category-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .28);
}

.nightshop-category-hero__content {
  position: relative;
  z-index: 1;
  width: min(420px, calc(100% - 40px));
  text-align: center;
}

.nightshop-category-hero__content h1 {
  margin: 0 0 8px;
  color: #fff;
  font-family: var(--nightshop-display);
  font-size: 40px;
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
}

.nightshop-category-hero__desc,
.nightshop-category-hero__desc p {
  margin: 0;
  color: #cfcfcf;
  font-family: var(--nightshop-body);
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: .01em;
}

.nightshop-category-subcats {
  padding: 72px 0;
  background: #fff;
}

.nightshop-category-subcats__header {
  margin-bottom: 32px;
}

.nightshop-category-subcats__header h2,
.nightshop-category-products__header h2 {
  margin: 0 0 8px;
  color: #000;
  font-family: var(--nightshop-display);
  font-size: 28px;
  font-weight: 600;
  line-height: 1.3;
}

.nightshop-category-subcats__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.nightshop-category-subcats__tabs a {
  color: #929292;
  font-family: var(--nightshop-body);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  text-decoration: none;
}

.nightshop-category-subcats__tabs a.is-active,
.nightshop-category-subcats__tabs a:hover,
.nightshop-category-subcats__tabs a:focus {
  color: #000;
  text-decoration: none;
}

.nightshop-category-subcats__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.nightshop-category-card {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 344px;
  padding: 32px;
  overflow: hidden;
  color: #fff;
  background: #cfcfcf;
  text-decoration: none;
}

.nightshop-category-card picture,
.nightshop-category-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.nightshop-category-card img {
  object-fit: cover;
  transition: transform .28s ease;
}

.nightshop-category-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, .2) 39.65%, #000 100%);
  backdrop-filter: blur(2px);
}

.nightshop-category-card:hover img {
  transform: scale(1.04);
}

.nightshop-category-card__text {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.nightshop-category-card__title {
  color: #fff;
  font-family: var(--nightshop-display);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.nightshop-category-card__meta {
  color: #cfcfcf;
  font-family: var(--nightshop-body);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.nightshop-category-reassurance {
  width: 100%;
  padding: 48px 0;
  background: var(--nightshop-bg-light);
}

.nightshop-category-reassurance #block-reassurance {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 64px;
}

.nightshop-category-reassurance #block-reassurance ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.nightshop-category-reassurance #block-reassurance li {
  position: relative;
  flex: 0 1 284px;
  width: 284px;
  max-width: 284px;
  padding: 0;
  border-bottom: 0;
  box-shadow: none;
}

.nightshop-category-reassurance #block-reassurance li + li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 1px;
  height: 64px;
  background: #000;
  transform: translateY(-50%);
}

.nightshop-category-reassurance .block-reassurance-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 0;
  border: 0;
  box-shadow: none;
  text-align: center;
}

.nightshop-category-reassurance #block-reassurance li::after,
.nightshop-category-reassurance .block-reassurance-item::after,
.nightshop-category-reassurance .block-reassurance-item span::after,
.nightshop-category-reassurance .block-reassurance-item p::after {
  display: none;
  content: none;
}

.nightshop-category-reassurance .block-reassurance-item img {
  width: 48px;
  height: 48px;
  margin-bottom: 0;
  object-fit: contain;
  filter: grayscale(1) contrast(4);
}

.nightshop-category-reassurance .nightshop-reassurance-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  color: #000;
}

.nightshop-category-reassurance .nightshop-reassurance-icon svg {
  display: block;
  width: 48px;
  height: 48px;
  fill: currentColor;
}

.nightshop-category-reassurance .block-reassurance-item span,
.nightshop-category-reassurance .block-reassurance-item .h6 {
  display: block;
  margin: 0;
  color: #000;
  font-family: var(--nightshop-display);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
}

.nightshop-category-reassurance .block-reassurance-item p {
  margin: 0;
  color: #929292;
  font-family: var(--nightshop-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
}

.nightshop-category-products {
  padding: 0 0 72px;
  background: #fff;
}

.nightshop-category-products__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1440px;
  margin: 0 auto 32px;
  padding: 72px 64px 0;
}

.nightshop-category-products__header h2 {
  margin: 0;
}

.nightshop-category-products__arrows {
  display: flex;
  gap: 16px;
}

.nightshop-category-products__arrows button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  color: #000;
  background: none;
  border: 1px solid #000;
  cursor: pointer;
}

.nightshop-category-products__arrows button:disabled {
  cursor: default;
  opacity: .35;
}

.nightshop-category-products__arrows svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: #000;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nightshop-category-products__grid,
.nightshop-category-products #js-product-list .products {
  display: flex !important;
  flex-wrap: nowrap !important;
  gap: 24px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 2px;
}

.nightshop-category-products__grid::-webkit-scrollbar,
.nightshop-category-products #js-product-list .products::-webkit-scrollbar {
  display: none;
}

.nightshop-category-products #js-product-list {
  overflow: hidden;
}

.nightshop-category-products #js-product-list .pagination,
.nightshop-category-products #js-product-list .up {
  display: none;
}

.nightshop-category-products #js-product-list .products {
  gap: 24px;
  margin: 0;
}

.nightshop-category-products__grid .js-product,
.nightshop-category-products #js-product-list .products .js-product {
  flex: 0 0 calc((100% - 72px) / 4);
  display: block;
  float: none;
  width: auto !important;
  max-width: none;
  padding: 0;
  scroll-snap-align: start;
}

body#category #content-wrapper.col-xs-12 .product-miniature {
  margin: 0;
}

body#category #content-wrapper.col-xs-12 .product-miniature .thumbnail-container {
  width: 100%;
  height: auto;
  margin: 0;
  background: transparent;
  box-shadow: none;
}

body#category #content-wrapper.col-xs-12 .product-miniature .thumbnail-top {
  position: relative;
  width: 100%;
  aspect-ratio: 310 / 280;
  margin-bottom: 24px;
  overflow: hidden;
  background: #f9f9f9;
}

body#category #content-wrapper.col-xs-12 .product-miniature .product-thumbnail,
body#category #content-wrapper.col-xs-12 .product-miniature .product-thumbnail picture,
body#category #content-wrapper.col-xs-12 .product-miniature .product-thumbnail img {
  display: block;
  width: 100%;
  height: 100%;
}

body#category #content-wrapper.col-xs-12 .product-miniature .product-thumbnail img {
  object-fit: cover;
}

body#category #content-wrapper.col-xs-12 .product-miniature .highlighted-informations {
  position: static;
  width: auto;
  height: auto;
  padding: 0;
  margin-bottom: 4px;
  background: transparent;
  box-shadow: none;
}

body#category #content-wrapper.col-xs-12 .product-miniature .quick-view {
  display: none;
}

body#category #content-wrapper.col-xs-12 .product-miniature .variant-links {
  display: flex;
  justify-content: flex-start;
  gap: 8px;
  min-height: 24px;
  background: transparent;
}

body#category #content-wrapper.col-xs-12 .product-miniature .variant-links .color {
  width: 24px;
  height: 24px;
  margin: 0;
  border-radius: 0;
  box-shadow: none;
}

.nightshop-miniature-variants {
  display: none;
}

body#category #content-wrapper.col-xs-12 .product-miniature .product-description {
  position: static;
  width: auto;
  height: auto;
  padding: 0;
  background: transparent;
}

body#category #content-wrapper.col-xs-12 .product-miniature .product-title {
  margin: 0 0 6px;
  text-align: left;
}

body#category #content-wrapper.col-xs-12 .product-miniature .product-title a {
  color: #000;
  font-family: var(--nightshop-body);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  text-decoration: none;
}

body#category #content-wrapper.col-xs-12 .product-miniature .product-category-name {
  margin-bottom: 6px;
  color: #929292;
  font-family: var(--nightshop-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: .01em;
}

body#category #content-wrapper.col-xs-12 .product-miniature .product-price-and-shipping {
  color: #000;
  font-family: var(--nightshop-body);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
  text-align: left;
}

body#category #content-wrapper.left-column,
body#category #left-column {
  float: none;
}

body#category #content-wrapper.left-column ~ * {
  float: none;
}

body#category #wrapper > .container:has(#content-wrapper.left-column) {
  width: 100%;
  max-width: 1440px;
  padding: 32px 64px 64px;
}

body#category #wrapper > .container:has(#content-wrapper.left-column) > .breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  margin: 0 0 40px;
  background: transparent;
}

body#category #wrapper > .container:has(#content-wrapper.left-column) > .breadcrumb,
body#category #wrapper > .container:has(#content-wrapper.left-column) > .breadcrumb a {
  color: #9d9d9d;
  font-family: var(--nightshop-body);
  font-size: 14px;
  line-height: 1.3;
  letter-spacing: .01em;
  text-transform: none;
}

body#category #wrapper > .container:has(#content-wrapper.left-column) > .breadcrumb li::after {
  color: #9d9d9d;
}

body#category #wrapper > .container:has(#content-wrapper.left-column) > .breadcrumb li:last-child,
body#category #wrapper > .container:has(#content-wrapper.left-column) > .breadcrumb li:last-child a {
  color: #000;
}

body#category #wrapper > .container:has(#content-wrapper.left-column) > .row {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  margin: 0;
}

body#category #wrapper > .container:has(#content-wrapper.left-column) #left-column {
  flex: 0 0 294px;
  width: 294px;
  max-width: 294px;
  min-width: 0;
  padding: 0;
}

body#category #wrapper > .container:has(#content-wrapper.left-column) #content-wrapper.left-column {
  flex: 1 1 auto;
  width: auto;
  max-width: none;
  min-width: 0;
  padding: 0;
}

body#category #content-wrapper.left-column #main {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

body#category #content-wrapper.left-column #js-product-list-header {
  display: none;
  margin: 0;
}

body#category #content-wrapper.left-column .block-category {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 0;
  padding: 0;
  margin: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

body#category #content-wrapper.left-column .block-category h1 {
  margin: 0;
  color: #000;
  font-family: var(--nightshop-display);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
}

body#category #content-wrapper.left-column .block-category-inner {
  display: block;
}

body#category #content-wrapper.left-column #category-description,
body#category #content-wrapper.left-column #category-description p {
  margin: 0;
  color: #929292;
  font-family: var(--nightshop-body);
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: .01em;
}

body#category #content-wrapper.left-column .category-cover {
  display: none;
}

body#category #content-wrapper.left-column #subcategories {
  display: none;
}

body#category #content-wrapper.left-column #products {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-rows: 30px auto auto;
  row-gap: 24px;
  column-gap: 24px;
}

body#category #left-column .block-categories,
body#category #left-column #search_filters_wrapper,
body#category #left-column #search_filters {
  width: 100%;
  padding: 0;
  margin: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

body#category #left-column .block-categories {
  display: none;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(198, 191, 223, .3);
}

body#category #left-column .block-categories .category-top-menu,
body#category #left-column .block-categories .category-sub-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}

body#category #left-column .block-categories a {
  color: #111;
  font-family: var(--nightshop-body);
  font-size: 14px;
  line-height: 1.3;
  text-decoration: none;
}

body#category #left-column .block-categories a:hover,
body#category #left-column .block-categories .current_cate > a {
  color: #5236d0;
}

body#category #left-column .nightshop-listing-sidebar-title {
  display: flex;
  align-items: center;
  gap: 4px;
  padding-bottom: 16px;
  margin-bottom: 16px;
  color: #000;
  border-bottom: 1px solid rgba(198, 191, 223, .3);
  font-family: var(--nightshop-body);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
}

body#category #left-column .nightshop-listing-sidebar-title__count {
  color: #929292;
  font-weight: 400;
  text-transform: none;
}

body#category #left-column #search_filters > p.text-uppercase.h6.hidden-sm-down {
  display: none !important;
}

body#category #left-column #search_filters .h6.hidden-sm-down {
  display: block !important;
  margin: 0 0 16px;
  color: #000;
  font-family: var(--nightshop-display);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  text-transform: none !important;
}

body#category #left-column #search_filters .clear-all-wrapper {
  display: none;
  margin: 0 0 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(198, 191, 223, .3);
}

body#category #content-wrapper.left-column .nightshop-active-clear-slot .clear-all-wrapper {
  display: block;
  margin: 0;
  padding: 0;
  border: 0;
}

body#category #left-column #search_filters .js-search-filters-clear-all {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  color: #5236d0;
  background: transparent;
  border: 0;
  box-shadow: none;
  font-family: var(--nightshop-body);
  font-size: 14px;
  line-height: 1.3;
  text-decoration: underline;
}

body#category #content-wrapper.left-column .nightshop-active-clear-slot .js-search-filters-clear-all {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  color: #5236d0;
  background: transparent;
  border: 0;
  box-shadow: none;
  font-family: var(--nightshop-body);
  font-size: 14px;
  line-height: 1.3;
  text-decoration: underline;
  text-transform: lowercase;
}

body#category #content-wrapper.left-column .nightshop-active-clear-slot .js-search-filters-clear-all::first-letter {
  text-transform: uppercase;
}

body#category #content-wrapper.left-column .nightshop-active-clear-slot .js-search-filters-clear-all .material-icons {
  display: none;
}

body#category #left-column #search_filters .faceted-slider {
  display: flex !important;
  flex-direction: column;
  gap: 12px;
  height: auto !important;
}

body#category #left-column #search_filters .faceted-slider li {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

body#category #left-column #search_filters .faceted-slider p {
  margin: 0;
  color: #929292;
  font-family: var(--nightshop-body);
  font-size: 14px;
  line-height: 1.3;
}

body#category #left-column #search_filters .faceted-slider .ui-slider {
  position: relative;
  width: 100%;
  height: 14px;
  margin: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

body#category #left-column #search_filters .faceted-slider .ui-slider::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 4px;
  background: #f3f3f3;
  border-radius: 2px;
  transform: translateY(-50%);
}

body#category #left-column #search_filters .faceted-slider .ui-slider-range {
  position: absolute;
  top: 50%;
  height: 4px;
  background: #211453;
  border: 0;
  border-radius: 2px;
  transform: translateY(-50%);
}

body#category #left-column #search_filters .faceted-slider .ui-slider-handle {
  position: absolute;
  top: 50%;
  width: 12px;
  height: 12px;
  margin-top: -6px;
  margin-left: -6px;
  border: 0;
  border-radius: 50%;
  background: #211453;
  box-shadow: none;
  cursor: grab;
  outline: 0;
}

body#category #left-column #search_filters .faceted-slider .ui-slider-handle:active {
  cursor: grabbing;
}

body#category #left-column #search_filters .facet {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 16px 0;
  border-top: 1px solid rgba(198, 191, 223, .3);
}

body#category #left-column #search_filters .facet:first-of-type {
  border-top: 0;
}

body#category #left-column #search_filters .facet > .facet-title.hidden-sm-down {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  position: relative;
  width: 100% !important;
  margin: 0;
  padding-right: 0;
  color: #000;
  font-family: var(--nightshop-display);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  text-transform: none;
  white-space: normal;
  overflow: visible;
  text-overflow: clip;
  cursor: pointer;
  user-select: none;
}

body#category #left-column #search_filters .facet > .facet-title.hidden-sm-down::after {
  content: "";
  position: static;
  display: block;
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  margin-left: auto;
  background-color: #000;
  transform: rotate(180deg);
  transition: transform .2s ease;
  -webkit-mask: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 10L12 15L17 10' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 24px 24px no-repeat;
  mask: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 10L12 15L17 10' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 24px 24px no-repeat;
}

body#category #left-column #search_filters .facet.is-filter-closed > .facet-title.hidden-sm-down::after {
  transform: rotate(0deg);
}

body#category #left-column #search_filters .facet.is-filter-closed > ul,
body#category #left-column #search_filters .facet.is-filter-closed > .faceted-slider {
  display: none !important;
}

body#category #left-column #search_filters .facet > ul,
body#category #left-column #search_filters .facet .collapse {
  display: flex !important;
  flex-direction: column;
  gap: 16px;
  height: auto !important;
  padding: 0;
  margin: 0;
  list-style: none;
}

body#category #left-column #search_filters .facet li {
  margin: 0;
}

body#category #left-column #search_filters .facet-label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  min-height: 18px;
  cursor: pointer;
}

body#category #left-column #search_filters .facet-label a,
body#category #left-column #search_filters .facet-label .search-link {
  display: flex;
  justify-content: space-between;
  flex: 1 1 auto;
  min-width: 0;
  color: #111;
  font-family: var(--nightshop-body);
  font-size: 14px;
  line-height: 1.3;
  text-decoration: none;
  margin: 0;
  padding: 0;
}

body#category #left-column #search_filters .facet-label.active a,
body#category #left-column #search_filters .facet-label a:hover {
  color: #5236d0;
}

body#category #left-column #search_filters .facet-label .magnitude {
  margin-left: auto;
  color: #929292;
}

body#category #left-column #search_filters .custom-checkbox,
body#category #left-column #search_filters .custom-radio {
  position: relative;
  top: 0 !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
  margin: 0;
}

body#category #left-column #search_filters .custom-checkbox input,
body#category #left-column #search_filters .custom-radio input {
  width: 16px;
  height: 16px;
}

body#category #left-column #search_filters .custom-checkbox span,
body#category #left-column #search_filters .custom-radio span {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 16px !important;
  height: 16px !important;
  min-width: 16px;
  min-height: 16px;
  border: 1px solid #c6bfdf;
  border-radius: 3px;
  background: #fff;
  box-shadow: none;
}

body#category #left-column #search_filters .custom-checkbox .color,
body#category #left-column #search_filters .custom-radio .color {
  width: 16px !important;
  height: 16px !important;
  min-width: 16px;
  min-height: 16px;
  border: 1px solid #c6bfdf;
  border-radius: 3px;
  box-shadow: none;
}

body#category #left-column #search_filters .custom-radio span {
  border-radius: 50%;
}

body#category #left-column #search_filters input:checked + span {
  background: #211453;
  border-color: #211453;
}

body#category #left-column #search_filters input:checked + span .checkbox-checked,
body#category #left-column #search_filters input:checked + span::before {
  color: #fff;
}

body#category #left-column #search_filters .custom-checkbox .checkbox-checked {
  margin: 0;
  color: #fff;
  font-size: 12px;
  line-height: 1;
}

body#category #left-column #search_filters .facet-dropdown {
  width: 100%;
  padding: 0;
}

body#category #left-column #search_filters .facet-dropdown .select-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 8px;
  border: .5px solid rgba(198, 191, 223, .65);
  border-radius: 3px;
}

body#category #content-wrapper.left-column #js-product-list-top.products-selection {
  display: flex;
  align-items: center;
  justify-content: space-between;
  grid-column: 1 / -1;
  grid-row: 1;
  gap: 24px;
  width: 100%;
  min-height: 30px;
  height: 30px;
  padding: 0;
  margin: 0;
}

body#category #content-wrapper.left-column #js-product-list-top.products-selection::before,
body#category #content-wrapper.left-column #js-product-list-top.products-selection::after {
  display: none;
}

body#category #content-wrapper.left-column #js-product-list-top .total-products,
body#category #content-wrapper.left-column #js-product-list-top > .col-lg-7,
body#category #content-wrapper.left-column #js-product-list-top .filter-button,
body#category #content-wrapper.left-column #js-product-list-top .sort-by-row {
  float: none;
  width: auto;
  max-width: none;
  padding: 0;
  margin: 0;
}

body#category #content-wrapper.left-column #js-product-list-top > .col-lg-7 {
  display: flex;
  justify-content: flex-end;
  flex: 1 1 auto;
  min-width: 320px;
}

body#category #content-wrapper.left-column #js-product-list-top .sort-by-row {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: nowrap;
  width: auto;
  min-width: max-content;
}

body#category #content-wrapper.left-column #js-product-list-top .total-products p,
body#category #content-wrapper.left-column #js-product-list-top .showing {
  display: none;
  margin: 0;
  color: #929292;
  font-family: var(--nightshop-body);
  font-size: 14px;
  line-height: 1.3;
}

body#category #content-wrapper.left-column #js-product-list-top .sort-by {
  flex: 0 0 auto;
  width: auto !important;
  max-width: none;
  padding: 0;
  margin: 0;
  color: #000;
  font-family: var(--nightshop-body);
  font-size: 14px;
  line-height: 1.3;
  white-space: nowrap;
  text-align: right;
}

body#category #content-wrapper.left-column #js-product-list-top .products-sort-order {
  flex: 0 0 auto;
  width: auto !important;
  min-width: 0;
  max-width: none;
  padding: 0;
  margin: 0;
}

body#category #content-wrapper.left-column #js-product-list-top .products-sort-order .select-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  width: auto;
  min-width: 150px;
  padding: 0;
  color: #000;
  background: transparent;
  border: 0;
  box-shadow: none;
  font-family: var(--nightshop-body);
  font-size: 14px;
  line-height: 1.3;
  white-space: nowrap;
}

body#category #content-wrapper.left-column #js-product-list-top .products-sort-order .select-title .material-icons {
  flex: 0 0 auto;
  margin-left: 8px;
}

body#category #content-wrapper.left-column #js-product-list-top .products-sort-order .dropdown-menu {
  min-width: 220px;
  padding: 8px 0;
  border: 0;
  border-radius: 8px;
  box-shadow: 0 -1px 2px rgba(93, 93, 93, .25), 0 1px 2px rgba(93, 93, 93, .25);
}

body#category #content-wrapper.left-column #js-product-list-top .products-sort-order .select-list {
  padding: 8px 16px;
  color: #111;
  font-family: var(--nightshop-body);
  font-size: 14px;
  line-height: 1.3;
}

body#category #content-wrapper.left-column #js-product-list-top .products-sort-order .select-list.current,
body#category #content-wrapper.left-column #js-product-list-top .products-sort-order .select-list:hover {
  color: #5236d0;
  background: transparent;
}

body#category #content-wrapper.left-column #js-active-search-filters {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 30px;
  height: 30px;
  padding: 0;
  margin: 0;
  background: transparent;
}

body#category #content-wrapper.left-column #products > .nightshop-active-filters-wrapper,
body#category #content-wrapper.left-column #products > .hidden-sm-down:has(#js-active-search-filters) {
  grid-column: 1;
  grid-row: 1;
  align-self: start;
  min-width: 0;
  z-index: 1;
}

body#category #content-wrapper.left-column #js-active-search-filters.hide {
  display: none;
}

body#category #content-wrapper.left-column #js-active-search-filters .active-filter-title {
  display: none;
}

body#category #content-wrapper.left-column #js-active-search-filters ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  flex: 0 1 auto;
  padding: 0;
  margin: 0;
  list-style: none;
}

body#category #content-wrapper.left-column .nightshop-active-clear-slot {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
}

body#category #content-wrapper.left-column #js-active-search-filters .filter-block {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 30px;
  height: 30px;
  padding: 4px 12px;
  color: #000;
  background: #f3f3f3;
  font-family: var(--nightshop-body);
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: .01em;
}

body#category #content-wrapper.left-column .nightshop-active-clear-slot .clear-all-wrapper,
body#category #content-wrapper.left-column .nightshop-active-clear-slot .js-search-filters-clear-all {
  line-height: 30px;
}

body#category #content-wrapper.left-column #js-active-search-filters .filter-block .js-search-link {
  display: flex;
  color: #000;
  text-decoration: none;
}

body#category #content-wrapper.left-column #js-product-list .products {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 310px));
  gap: 40px 24px;
  justify-content: start;
  padding: 0;
  margin: 0;
}

body#category #content-wrapper.left-column #js-product-list {
  grid-column: 1 / -1;
  grid-row: 2;
}

body#category #content-wrapper.left-column #js-product-list-bottom,
body#category #content-wrapper.left-column #js-product-list-footer {
  grid-column: 1 / -1;
}

body#category #content-wrapper.left-column #js-product-list .products::before,
body#category #content-wrapper.left-column #js-product-list .products::after {
  display: none;
}

body#category #content-wrapper.left-column #js-product-list .js-product {
  display: block;
  float: none;
  width: 310px !important;
  max-width: 310px;
  padding: 0;
  margin: 0;
}

body#category #content-wrapper.left-column .product-miniature {
  margin: 0;
}

body#category #content-wrapper.left-column .product-miniature .thumbnail-container {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 310px;
  height: auto;
  margin: 0;
  background: transparent;
  box-shadow: none;
}

body#category #content-wrapper.left-column .product-miniature .thumbnail-top {
  position: relative;
  width: 310px;
  height: 280px;
  overflow: hidden;
  background: #f9f9f9;
}

body#category #content-wrapper.left-column .product-miniature .product-thumbnail,
body#category #content-wrapper.left-column .product-miniature .product-thumbnail picture,
body#category #content-wrapper.left-column .product-miniature .product-thumbnail img {
  display: block;
  width: 100%;
  height: 100%;
}

body#category #content-wrapper.left-column .product-miniature .product-thumbnail img {
  object-fit: contain;
  object-position: center;
}

body#category #content-wrapper.left-column .product-miniature .thumbnail-top::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: rgba(33, 20, 83, .05);
  opacity: 0;
  transition: opacity .2s ease;
}

body#category #content-wrapper.left-column .product-miniature .thumbnail-top:hover::after {
  opacity: 1;
}

body#category #content-wrapper.left-column .product-miniature .highlighted-informations {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 0;
  background: transparent;
  box-shadow: none;
  opacity: 0;
  transition: opacity .2s ease;
}

body#category #content-wrapper.left-column .product-miniature .thumbnail-top:hover .highlighted-informations {
  opacity: 1;
}

body#category #content-wrapper.left-column .product-miniature .quick-view {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 8px 18px;
  color: #fff;
  background: #211453;
  font-family: var(--nightshop-display);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
}

body#category #content-wrapper.left-column .product-miniature .quick-view .material-icons {
  display: none;
}

body#category #content-wrapper.left-column .product-miniature .variant-links {
  display: none;
}

body#category #content-wrapper.left-column .product-miniature .nightshop-miniature-variants {
  display: flex;
  justify-content: flex-start;
  min-height: 24px;
  margin-top: -18px;
  background: transparent;
}

body#category #content-wrapper.left-column .product-miniature .nightshop-miniature-variants .variant-links {
  display: flex;
  justify-content: flex-start;
  gap: 8px;
  min-height: 24px;
  background: transparent;
}

body#category #content-wrapper.left-column .product-miniature .nightshop-miniature-variants .color {
  width: 24px;
  height: 24px;
  margin: 0;
  border-radius: 0;
  box-shadow: none;
}

body#category #content-wrapper.left-column .product-miniature .product-description {
  position: static;
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: auto;
  height: auto;
  min-height: 0;
  padding: 0;
  background: transparent;
}

body#category #content-wrapper.left-column .product-miniature .product-title {
  margin: 0;
  text-align: left;
}

body#category #content-wrapper.left-column .product-miniature .product-title a {
  color: #000;
  font-family: var(--nightshop-body);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: .01em;
  text-decoration: none;
}

body#category #content-wrapper.left-column .product-miniature .product-category-name {
  color: #9d9d9d;
  font-family: var(--nightshop-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: .01em;
}

body#category #content-wrapper.left-column .product-miniature .product-price-and-shipping {
  color: #000;
  font-family: var(--nightshop-body);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
  text-align: left;
}

body#category #content-wrapper.left-column .product-miniature .product-list-reviews {
  display: none;
}

body#category #content-wrapper.left-column .product-miniature .wishlist-button,
body#category #content-wrapper.left-column .product-miniature .wishlist-button-add {
  display: none !important;
}

body#category #content-wrapper.left-column .product-miniature .product-flags {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 3;
  margin: 0;
}

body#category #content-wrapper.left-column .product-miniature .product-flags li {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  min-height: 40px;
  padding: 8px;
  margin: 0;
  color: #929292;
  background: #fff;
  border-radius: 50%;
  box-shadow: none;
  font-family: var(--nightshop-body);
  font-size: 10px;
  font-weight: 600;
}

body#category #content-wrapper.left-column .pagination {
  display: flex;
  align-items: center;
  gap: 2px;
  width: 100%;
  padding: 0;
  margin: 16px 0 0;
}

body#category #content-wrapper.left-column .pagination > div {
  float: none;
  width: auto;
  max-width: none;
  padding: 0;
  color: #929292;
  font-family: var(--nightshop-body);
  font-size: 14px;
  line-height: 1.3;
}

body#category #content-wrapper.left-column .pagination .page-list {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 0;
  margin: 0;
}

body#category #content-wrapper.left-column .pagination .page-list li {
  display: block;
}

body#category #content-wrapper.left-column .pagination .page-list a,
body#category #content-wrapper.left-column .pagination .page-list span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  color: #929292;
  background: transparent;
  border: 0;
  border-radius: 8px;
  box-shadow: none;
  font-family: var(--nightshop-body);
  font-size: 14px;
  line-height: 1.3;
  text-decoration: none;
}

body#category #content-wrapper.left-column .pagination .page-list .current a,
body#category #content-wrapper.left-column .pagination .page-list a:hover {
  color: #000;
  background: #f3f3f3;
}

body#index .footer-container,
body#index footer .container {
  width: 100%;
  max-width: none;
  padding: 0;
  margin-top: 0;
}

body#index .footer-container .row {
  margin: 0;
}

body#index #footer {
  position: relative;
  z-index: 2;
}

body#ets_blog_page #wrapper > .container,
body#module-ets_blog-blog #wrapper > .container,
body[class*="module-ets_blog-blog"] #wrapper > .container {
  width: 100%;
  max-width: none;
  padding: 0;
}

body#ets_blog_page #wrapper > .container > .breadcrumb,
body#ets_blog_page #wrapper > .container > .breadcrumb ol {
  width: min(100%, 1312px);
  margin-right: auto;
  margin-left: auto;
}

body#ets_blog_page #wrapper > .container > .breadcrumb {
  padding: 24px 0 16px;
}

body#module-ets_blog-blog #wrapper > .container > .row,
body#ets_blog_page #wrapper > .container > .row,
body[class*="module-ets_blog-blog"] #wrapper > .container > .row {
  display: flex;
  justify-content: center;
  margin: 0;
}

body#ets_blog_page #content-wrapper,
body#module-ets_blog-blog #content-wrapper,
body[class*="module-ets_blog-blog"] #content-wrapper {
  width: 100%;
  max-width: none;
  padding: 0;
  flex: 0 0 100%;
}

.nightshop-blog-page {
  width: 100%;
  background: #fff;
}

.nightshop-blog-list-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
  width: min(100%, 1440px);
  margin: 0 auto;
  padding: 32px 64px 64px;
  font-family: var(--nightshop-body);
  color: #1a1a1a;
}

.nightshop-blog-list-page__heading {
  width: min(100%, 1312px);
  margin: 0 auto;
}

.nightshop-blog-list-page__heading h1 {
  margin: 0 0 12px;
  font-family: var(--nightshop-display);
  font-size: 40px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: .01em;
  text-transform: uppercase;
  color: #000;
}

.nightshop-blog-list-page__description {
  max-width: 760px;
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: .01em;
  color: #929292;
}

.nightshop-blog-featured {
  width: min(100%, 1312px);
  margin: 0 auto;
}

.nightshop-blog-featured__row {
  display: grid;
  grid-template-columns: 778px 510px;
  gap: 24px;
  width: 1312px;
  height: 604px;
}

.nightshop-blog-featured__hero,
.nightshop-blog-featured__card {
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 40%, #0f3460 70%, #533483 100%);
  background-position: center;
  background-size: cover;
  color: #fff;
  text-decoration: none;
}

.nightshop-blog-featured__hero:hover,
.nightshop-blog-featured__card:hover,
.nightshop-blog-card-full__title a:hover,
.nightshop-blog-card-full__arrow:hover {
  color: #5236d0;
  text-decoration: none;
}

.nightshop-blog-featured__hero {
  width: 778px;
  height: 604px;
  padding: 32px;
}

.nightshop-blog-featured__side {
  display: grid;
  gap: 24px;
  width: 510px;
  height: 604px;
}

.nightshop-blog-featured__card {
  width: 510px;
  height: 290px;
  padding: 24px;
}

.nightshop-blog-featured__meta {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: min(100%, 586px);
}

.nightshop-blog-featured__date,
.nightshop-blog-card-full__date {
  font-family: var(--nightshop-body);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.nightshop-blog-featured__date {
  color: #fff;
}

.nightshop-blog-featured__title {
  font-family: var(--nightshop-display);
  font-size: 28px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: .01em;
  color: #fff;
}

.nightshop-blog-latest {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: min(100%, 1312px);
  margin: 0 auto;
}

.nightshop-blog-latest__title {
  width: 100%;
  margin: 0;
  font-family: var(--nightshop-display);
  font-size: 28px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: .01em;
  color: #1a1a1a;
}

.nightshop-blog-latest__grid {
  display: grid;
  grid-template-columns: repeat(3, 420px);
  gap: 24px;
  width: 1312px;
}

.nightshop-blog-card-full {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 420px;
  min-height: 378px;
  min-width: 0;
}

.nightshop-blog-card-full__image {
  display: block;
  width: 420px;
  height: 240px;
  overflow: hidden;
  background: linear-gradient(135deg, #1a1a2e, #16213e, #0f3460);
  background-position: center;
  background-size: cover;
  transition: transform .4s ease, opacity .2s ease;
}

.nightshop-blog-card-full:hover .nightshop-blog-card-full__image {
  transform: scale(1.03);
}

.nightshop-blog-card-full__body,
.nightshop-blog-card-full__top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 420px;
  gap: 12px;
}

.nightshop-blog-card-full__top {
  gap: 8px;
}

.nightshop-blog-card-full__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 420px;
}

.nightshop-blog-card-full__title {
  flex: 1;
  margin: 0;
  font-family: var(--nightshop-display);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  color: #000;
}

.nightshop-blog-card-full__title a {
  color: inherit;
  text-decoration: none;
}

.nightshop-blog-card-full__arrow {
  display: inline-flex;
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  color: #000;
}

.nightshop-blog-card-full__arrow svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nightshop-blog-card-full__excerpt {
  width: 421px;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: .01em;
  color: #929292;
}

.nightshop-blog-card-full__date {
  color: #5236d0;
}

.nightshop-blog-pagination {
  display: flex;
  justify-content: center;
  width: min(100%, 1312px);
  margin: 0 auto;
}

.nightshop-blog-pagination .results {
  display: none;
}

.nightshop-blog-pagination .links {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nightshop-blog-pagination .links a,
.nightshop-blog-pagination .links b,
.nightshop-blog-pagination .links span,
.nightshop-blog-pagination .links p {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  margin: 0;
  padding: 0 10px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #929292;
  font-family: var(--nightshop-body);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3;
  text-align: center;
  text-decoration: none;
}

.nightshop-blog-pagination .links b,
.nightshop-blog-pagination .links a:hover {
  background: #f3f3f3;
  color: #000;
  font-weight: 500;
}

.nightshop-blog-list-page__empty {
  width: min(100%, 1312px);
  margin: 0 auto;
  color: #929292;
}

body#cms #wrapper {
  background: #fff;
  box-shadow: none;
}

body#cms #wrapper > .container:has(.nightshop-design-page) {
  width: 100%;
  max-width: 1440px;
  padding: 32px 64px 64px;
}

body#cms #wrapper > .container:has(.nightshop-design-page) > .breadcrumb,
body#cms #wrapper > .container:has(.nightshop-design-page) .page-header,
body#cms #wrapper > .container:has(.nightshop-design-page) .page-footer,
body#cms #wrapper > .container:has(.nightshop-design-page) #left-column,
body#cms #wrapper > .container:has(.nightshop-design-page) #right-column {
  display: none;
}

body#cms #wrapper > .container:has(.nightshop-design-page) > .row {
  display: block;
  margin: 0;
}

body#cms #wrapper > .container:has(.nightshop-design-page) #content-wrapper {
  float: none;
  width: 100%;
  max-width: none;
  padding: 0;
}

.nightshop-design-page {
  display: flex;
  align-items: flex-start;
  gap: 64px;
  width: 100%;
  min-height: 420px;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.nightshop-design-page__sidebar {
  position: sticky;
  top: 32px;
  display: flex;
  flex: 0 0 185px;
  flex-direction: column;
  gap: 32px;
  align-self: flex-start;
  padding: 16px 32px 16px 0;
  border-right: 1px solid rgba(198, 191, 223, .3);
}

.nightshop-design-page__sidebar a {
  color: #000;
  font-family: var(--nightshop-body);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: .01em;
  text-align: left;
  text-decoration: none;
  transition: color .2s ease;
}

.nightshop-design-page__sidebar a:hover,
.nightshop-design-page__sidebar a:focus,
.nightshop-design-page__sidebar a.is-active {
  color: #5236d0;
  text-decoration: none;
}

.nightshop-design-page__content {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 32px;
  max-width: 920px;
  min-width: 0;
  color: #111;
  font-family: var(--nightshop-body);
}

.nightshop-design-page__content .section-block,
.nightshop-design-page__content section,
.nightshop-design-page__section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.nightshop-design-page__content h1,
.nightshop-design-page__content h2,
.nightshop-design-page__content h3 {
  margin: 0;
  color: #000;
  font-family: var(--nightshop-heading);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
}

.nightshop-design-page__content h4,
.nightshop-design-page__content h5,
.nightshop-design-page__content h6 {
  margin: 0;
  color: #000;
  font-family: var(--nightshop-body);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
}

.nightshop-design-page__content p,
.nightshop-design-page__content li {
  max-width: 799px;
  margin: 0;
  color: #111;
  font-family: var(--nightshop-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: .01em;
}

.nightshop-design-page__content p.bold,
.nightshop-design-page__content strong,
.nightshop-design-page__content b {
  color: #000;
  font-weight: 600;
  line-height: 1.3;
}

.nightshop-design-page__content ul,
.nightshop-design-page__content ol {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 799px;
  margin: 0;
  padding-left: 20px;
}

.nightshop-design-page__content ul {
  list-style: disc;
}

.nightshop-design-page__content ol {
  list-style: decimal;
}

.nightshop-design-page__content a {
  color: #5236d0;
  text-decoration: none;
}

.nightshop-design-page__content a:hover,
.nightshop-design-page__content a:focus {
  color: #5236d0;
  text-decoration: underline;
}

.nightshop-design-page__content .team-grid,
.nightshop-design-page__team {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.nightshop-design-page__content .profile-card {
  display: flex;
  flex: 0 0 448px;
  width: 448px;
  min-height: 164px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(198, 191, 223, .3);
}

.nightshop-design-page__content .card-photo {
  display: flex;
  flex: 0 0 216px;
  align-items: center;
  justify-content: center;
  width: 216px;
  min-height: 164px;
  overflow: hidden;
  background: #d1c9e8;
}

.nightshop-design-page__content .card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nightshop-design-page__content .card-photo-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 164px;
  background: linear-gradient(160deg, #c6bfdf 0%, #9b8ecf 100%);
}

.nightshop-design-page__content .profile-card .card-body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 16px;
  padding: 24px 16px;
}

.nightshop-design-page__content .card-name {
  color: #000;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: .01em;
}

.nightshop-design-page__content .card-role {
  margin-top: 2px;
  color: #929292;
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: .01em;
}

.nightshop-design-page__content .card-preview {
  color: #929292;
  font-size: 14px;
  line-height: 1.3;
}

@media (max-width: 1024px) {
  body#cms #wrapper > .container:has(.nightshop-design-page) {
    padding: 32px 32px 64px;
  }

  .nightshop-design-page {
    gap: 40px;
  }
}

@media (max-width: 767px) {
  body#cms #wrapper > .container:has(.nightshop-design-page) {
    padding: 24px 20px 48px;
  }

  .nightshop-design-page {
    flex-direction: column;
    gap: 32px;
  }

  .nightshop-design-page__sidebar {
    position: static;
    flex: 0 0 auto;
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px 24px;
    padding: 0 0 16px;
    border-right: 0;
    border-bottom: 1px solid rgba(198, 191, 223, .3);
  }

  .nightshop-design-page__content {
    width: 100%;
    max-width: 100%;
  }

  .nightshop-design-page__content .team-grid,
  .nightshop-design-page__team {
    flex-direction: column;
  }

  .nightshop-design-page__content .profile-card {
    flex-basis: auto;
    width: 100%;
    max-width: 448px;
  }
}

@media (max-width: 480px) {
  .nightshop-design-page__content .profile-card {
    flex-direction: column;
    max-width: 100%;
  }

  .nightshop-design-page__content .card-photo {
    flex-basis: auto;
    width: 100%;
    min-height: 180px;
  }
}

@media (max-width: 1200px) {
  #header {
    top: -32px;
  }

  .nightshop-promo-bar {
    height: 32px;
    font-size: 12px;
  }

  .nightshop-nav {
    height: 60px;
    padding: 0 40px;
    gap: 9px;
    justify-content: flex-start;
  }

  .nightshop-nav__menu-toggle {
    display: flex;
  }

  .nightshop-nav__logo {
    /* flex: 1 1 auto; */
    min-width: 0;
  }

  .nightshop-nav__logo--mobile:not(:empty) {
    display: block;
  }

  .nightshop-nav__logo#_desktop_logo:empty {
    display: none;
  }

  .nightshop-nav__logo img {
    max-height: 30px;
  }

  .nightshop-nav__links {
    display: none;
  }

  .nightshop-nav__icons {
    width: auto;
    height: 24px;
    flex: 0 0 auto;
    gap: 24px;
    margin-left: auto;
  }

  .nightshop-nav__icons > .nightshop-nav__icon--wishlist {
    display: none;
  }

  .nightshop-nav__icons #_desktop_user_info,
  .nightshop-nav__icons #_mobile_user_info {
    order: 2;
  }

  .nightshop-nav__icons #_desktop_cart,
  .nightshop-nav__icons #_mobile_cart {
    order: 3;
  }

  .nightshop-nav__icons #_mobile_user_info:not(:empty),
  .nightshop-nav__icons #_mobile_cart:not(:empty) {
    display: flex;
  }

  .nightshop-nav__icons .right-nav {
    gap: 24px;
  }

  .nightshop-nav > .mobile {
    display: none !important;
  }

  #mobile_top_menu_wrapper {
    position: fixed;
    top: 92px;
    left: 0;
    right: 0;
    z-index: 999;
    max-height: calc(100vh - 92px);
    margin: 0;
    overflow: auto;
    background: var(--nightshop-white);
    box-shadow: 0 12px 28px rgba(33, 20, 83, .12);
  }

  #mobile_top_menu_wrapper .js-top-menu {
    padding: 20px 40px;
  }

  .nightshop-hero__content,
  .nightshop-categories,
  .nightshop-partners,
  .nightshop-blog,
  .nightshop-cta {
    padding-left: 32px;
    padding-right: 32px;
  }

  .nightshop-blog-list-page {
    padding-left: 32px;
    padding-right: 32px;
  }

  .nightshop-blog-featured__row {
    width: 100%;
    height: auto;
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .nightshop-blog-featured__hero {
    width: 100%;
    height: auto;
    min-height: 460px;
  }

  .nightshop-blog-featured__side {
    width: 100%;
    height: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nightshop-blog-featured__card {
    width: 100%;
  }

  .nightshop-blog-latest__grid {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nightshop-blog-card-full,
  .nightshop-blog-card-full__image,
  .nightshop-blog-card-full__body,
  .nightshop-blog-card-full__top,
  .nightshop-blog-card-full__heading,
  .nightshop-blog-card-full__excerpt {
    width: 100%;
  }

  .nightshop-hero__title {
    font-size: 48px;
  }

  .nightshop-hero {
    height: 480px;
  }

  .nightshop-hero__content {
    padding-top: 40px;
  }

  .nightshop-hero__controls {
    left: 40px;
    bottom: 48px;
  }

  .nightshop-hero__art {
    display: none;
  }

  .nightshop-categories__grid {
    flex-wrap: wrap;
    overflow: visible;
  }

  .nightshop-categories__grid:hover .nightshop-cat-card,
  .nightshop-categories__grid .nightshop-cat-card:hover,
  .nightshop-cat-card {
    flex-grow: 1;
    flex-basis: calc((100% - 40px) / 3);
    height: 220px;
  }

  .nightshop-cat-card--large {
    order: 2;
    width: auto;
    flex-basis: 100%;
    height: 220px;
  }

  .nightshop-cat-card--small {
    order: 1;
    flex: 1 1 calc((100% - 40px) / 3);
  }

  .nightshop-stats__inner {
    gap: 48px;
  }

  .nightshop-about {
    padding: 48px 16px;
    flex-direction: column;
    gap: 32px;
  }

  .nightshop-about::before {
    display: none;
  }

  .nightshop-about__content {
    flex-basis: auto;
    width: 100%;
    gap: 32px;
  }

  .nightshop-about__image {
    min-height: 320px;
    width: 100%;
  }

  .nightshop-partners__inner,
  .nightshop-blog__grid,
  .nightshop-cta__inner,
  .nightshop-footer__top {
    flex-direction: column;
  }

  .nightshop-partners__video,
  .nightshop-partners__video-player {
    width: 100%;
  }

  .nightshop-partners__logos {
    grid-template-columns: repeat(3, 1fr);
  }

  .nightshop-blog-main {
    flex: none;
    width: 100%;
  }

  .nightshop-blog-card {
    flex-direction: column;
  }

  .nightshop-blog-card__img {
    flex: none;
    width: 100%;
  }

  .nightshop-footer {
    padding: 56px 40px;
  }

  .nightshop-footer__nav {
    flex: none;
    width: 100%;
    gap: 32px;
    justify-content: space-between;
    align-items: flex-start;
  }

  body#product #wrapper > .container {
    padding-right: 32px;
    padding-left: 32px;
  }

  .nightshop-product__section {
    flex-direction: column;
  }

  .nightshop-product__gallery,
  .nightshop-product__info {
    width: 100%;
    max-width: none;
  }

  .nightshop-product__cover {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .nightshop-product__long,
  .nightshop-related__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nightshop-category-container,
  .nightshop-category-reassurance #block-reassurance,
  .nightshop-category-products__header {
    padding-right: 32px;
    padding-left: 32px;
  }

  .nightshop-category-products #js-product-list .products,
  .nightshop-category-products__grid {
    display: flex;
  }

  .nightshop-category-products__grid .js-product,
  .nightshop-category-products #js-product-list .products .js-product {
    flex-basis: calc((100% - 24px) / 2);
  }

  .nightshop-category-reassurance #block-reassurance ul {
    flex-wrap: wrap;
    gap: 32px;
  }

  .nightshop-category-reassurance #block-reassurance li {
    max-width: none;
    padding: 0 24px;
  }

  body#category #wrapper > .container:has(#content-wrapper.left-column) {
    padding-right: 32px;
    padding-left: 32px;
  }

  body#category #wrapper > .container:has(#content-wrapper.left-column) > .row {
    gap: 32px;
  }

  body#category #wrapper > .container:has(#content-wrapper.left-column) #left-column {
    flex-basis: 260px;
    width: 260px;
    max-width: 260px;
  }

  body#category #content-wrapper.left-column #js-product-list .products {
    grid-template-columns: repeat(2, minmax(0, 310px));
  }
}

@media (min-width: 768px) and (max-width: 1200px) {
  .nightshop-nav__menu-toggle {
    display: none;
  }

  .nightshop-nav__logo {
    flex: 0 0 auto;
  }

  .nightshop-nav__links {
    display: block;
    flex: 1 1 auto;
    min-width: 0;
  }

  .nightshop-nav__links .menu,
  .nightshop-nav__links .top-menu[data-depth="0"] {
    justify-content: center;
    gap: 12px;
  }

  .nightshop-nav__links .top-menu a,
  .nightshop-nav__links a {
    font-size: 12px;
  }

  .nightshop-nav__icons,
  .nightshop-nav__icons .right-nav {
    gap: 16px;
  }
}

@media (max-width: 767px) {
  #header {
    top: -32px;
  }

  .nightshop-promo-bar {
    height: 32px;
    padding: 8px;
    font-size: 12px;
  }

  .nightshop-nav {
    height: 48px;
    padding: 0 16px;
    gap: 8px;
  }

  .nightshop-nav__menu-toggle {
    margin-right: 0;
  }

  .nightshop-nav__logo,
  .nightshop-nav__logo--mobile:not(:empty) {
    display: flex;
    align-items: center;
  }

  .nightshop-nav__logo img {
    max-height: 24px;
  }

  .nightshop-nav__icons,
  .nightshop-nav__icons .right-nav {
    gap: 7px;
  }

  .nightshop-nav__icons {
    align-items: center;
    margin-left: auto;
  }

  .nightshop-nav__icons #_desktop_user_info:empty,
  .nightshop-nav__icons #_desktop_cart:empty {
    display: none;
  }

  .nightshop-nav__icons #_mobile_user_info,
  .nightshop-nav__icons #_mobile_cart,
  .nightshop-nav__icons .user-info,
  .nightshop-nav__icons .blockcart,
  .nightshop-nav__icons .blockcart .header,
  .nightshop-nav__icons .user-info > a,
  .nightshop-nav__icons .blockcart .header > a {
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
    padding: 0;
    margin: 0;
  }

  .nightshop-nav__icons .right-nav:empty {
    display: none;
  }

  .nightshop-nav__icons > .nightshop-nav__icon--wishlist {
    display: none;
  }

  .nightshop-nav__search-panel {
    position: fixed;
    top: 80px;
    right: 16px;
    left: 16px;
    width: auto;
    transform: translateY(-8px);
  }

  .nightshop-nav__icons.is-search-open .nightshop-nav__search-panel {
    transform: translateY(0);
  }

  .nightshop-nav__search-results {
    position: fixed;
    top: 124px;
    right: 16px;
    left: 16px;
    width: auto;
  }

  #mobile_top_menu_wrapper {
    top: 80px;
    max-height: calc(100vh - 80px);
  }

  #mobile_top_menu_wrapper .js-top-menu {
    padding: 20px 16px;
  }

  .nightshop-hero {
    height: 360px;
    min-height: 360px;
  }

  .nightshop-hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: none;
    top: 0;
  }

  .nightshop-hero__overlay {
    background: linear-gradient(90deg, rgba(0, 0, 0, .58) 0%, rgba(0, 0, 0, .12) 65%, rgba(0, 0, 0, .28) 100%);
  }

  .nightshop-hero__content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    max-width: none;
    padding: 22px 16px 28px;
  }

  .nightshop-hero__title,
  .nightshop-cta__title {
    font-size: 30px;
  }

  .nightshop-hero__title {
    max-width: 260px;
    line-height: 1.22;
    margin-bottom: 10px;
  }

  .nightshop-hero__subtitle {
    max-width: 252px;
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 1.35;
  }

  .nightshop-hero__content .nightshop-btn-primary {
    position: static;
    margin-top: auto;
    max-width: calc(100% - 92px);
    min-height: 40px;
    padding: 10px 14px;
    font-size: 11px;
    line-height: 1.25;
    white-space: normal;
  }

  .nightshop-hero__controls {
    right: 16px;
    bottom: 39px;
    left: auto;
    max-width: 76px;
  }

  .nightshop-hero__arrows {
    display: none;
  }

  .nightshop-404 {
    width: min(100%, 497px);
    height: auto;
    min-height: 0;
    justify-content: center;
    margin: 80px auto;
    padding: 0 20px;
  }

  .nightshop-404__inner {
    position: static;
    width: min(100%, 497px);
    height: auto;
  }

  .nightshop-404__content {
    gap: 32px;
    height: auto;
  }

  .nightshop-404 h1 {
    height: auto;
    font-size: 104px;
    line-height: 1.3;
  }

  .nightshop-categories,
  .nightshop-partners,
  .nightshop-blog,
  .nightshop-cta,
  .nightshop-stats {
    padding: 32px 16px;
  }

  .nightshop-section-title {
    font-size: 20px;
  }

  .nightshop-categories__header,
  .nightshop-partners__header,
  .nightshop-blog__header {
    margin-bottom: 16px;
  }

  .nightshop-categories__grid {
    gap: 16px;
  }

  .nightshop-blog-list-page {
    padding: 48px 20px;
  }

  .nightshop-blog-list-page__heading h1 {
    font-size: 32px;
  }

  .nightshop-blog-featured {
    margin-bottom: 48px;
  }

  .nightshop-blog-featured__row,
  .nightshop-blog-featured__side,
  .nightshop-blog-latest__grid {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .nightshop-blog-featured__hero,
  .nightshop-blog-featured__card {
    width: 100%;
    height: auto;
    min-height: 360px;
    padding: 24px;
  }

  .nightshop-blog-featured__title {
    font-size: 24px;
  }

  .nightshop-blog-card-full {
    gap: 20px;
  }

  .nightshop-stats__inner {
    width: 100%;
    flex-flow: row nowrap;
    justify-content: center;
    gap: 12px;
  }

  .nightshop-stat {
    flex: 1 1 0;
    min-width: 0;
  }

  .nightshop-stat-divider {
    display: none;
  }

  .nightshop-stat__number {
    font-size: 32px;
  }

  .nightshop-stat__label {
    max-width: none;
    font-size: 10px;
  }

  .nightshop-cat-card--large {
    order: 2;
    flex-basis: 100%;
    height: 172px;
  }

  .nightshop-cat-card--small {
    order: 1;
    flex: 1 1 calc(50% - 8px);
    min-width: 0;
    height: 172px;
  }

  .nightshop-categories__grid:hover .nightshop-cat-card,
  .nightshop-categories__grid .nightshop-cat-card:hover,
  .nightshop-cat-card {
    flex-basis: calc(50% - 8px);
    height: 172px;
  }

  .nightshop-categories__grid:hover .nightshop-cat-card--large,
  .nightshop-categories__grid .nightshop-cat-card--large:hover,
  .nightshop-cat-card--large {
    flex-basis: 100%;
  }

  .nightshop-partners__logos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    width: 100%;
  }

  .nightshop-partner-logo {
    height: 100px;
  }

  .nightshop-partners__inner {
    gap: 16px;
  }

  .nightshop-partners__video,
  .nightshop-partners__video-player {
    width: 100%;
    min-height: 223px;
  }

  .nightshop-blog__grid {
    gap: 32px;
  }

  .nightshop-blog-main,
  .nightshop-blog-side {
    gap: 32px;
  }

  .nightshop-blog-main__img,
  .nightshop-blog-card__img {
    height: 212px;
  }

  .nightshop-blog-main__title,
  .nightshop-blog-card__title {
    font-size: 16px;
  }

  .nightshop-blog-main__desc,
  .nightshop-blog-card__desc {
    font-size: 14px;
  }

  .nightshop-cta {
    height: auto;
    min-height: 272px;
    align-items: center;
    text-align: center;
  }

  .nightshop-cta::after {
    left: 0;
    top: auto;
    bottom: -8px;
    width: 200px;
    height: 80px;
    overflow: hidden;
    font-size: 64px;
  }

  .nightshop-cta__inner,
  .nightshop-cta__left,
  .nightshop-cta__right {
    width: 100%;
    height: auto;
    align-items: center;
    gap: 16px;
    max-width: none;
  }

  .nightshop-cta__left {
    gap: 4px;
  }

  .nightshop-cta__desc {
    max-width: 261px;
    text-align: center;
    font-size: 14px;
  }

  .nightshop-cta .nightshop-btn-primary {
    width: 100%;
    max-width: 400px;
  }

  .nightshop-footer__bottom {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }

  .nightshop-footer {
    padding: 40px 20px;
    gap: 32px;
  }

  .nightshop-footer__brand {
    flex-basis: auto;
    width: 100%;
    max-width: none;
    gap: 16px;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: center;
  }

  .nightshop-footer__logo {
    order: 0;
  }

  .nightshop-footer__tagline {
    order: 2;
    flex-basis: 100%;
    width: 100%;
    margin-top: -8px;
  }

  .nightshop-footer__social,
  .nightshop-footer__social .block-social,
  .nightshop-footer__social .ps-social-follow {
    order: 1;
    width: auto;
    height: 32px;
    margin-left: auto;
    justify-content: flex-end;
  }

  .nightshop-footer__social ul {
    gap: 8px;
  }

  .nightshop-footer__social li {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    margin: 0;
    background-position: center;
    background-size: 20px auto;
  }

  .nightshop-footer__social li a {
    width: 32px;
    height: 32px;
  }

  .nightshop-footer__nav {
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
  }

  .nightshop-footer__col:nth-child(1),
  .nightshop-footer__col:nth-child(2),
  .nightshop-footer__col:nth-child(3) {
    width: auto;
    min-width: 0;
    flex: 1 1 0;
  }

  .nightshop-footer__col,
  .nightshop-footer__col-links {
    gap: 12px;
  }

  .nightshop-footer__col-title {
    font-size: 14px;
  }

  .nightshop-footer__col-links a {
    white-space: normal;
    font-size: 14px;
  }

  .nightshop-footer__payments {
    flex-wrap: wrap;
  }

  body#product #wrapper > .container {
    padding-right: 20px;
    padding-left: 20px;
  }

  .nightshop-product {
    padding-top: 32px;
  }

  .nightshop-product__gallery {
    flex-direction: column-reverse;
  }

  .nightshop-product__thumbs,
  .nightshop-product__thumb-list {
    flex-direction: row;
    overflow-x: auto;
  }

  .nightshop-product__thumb {
    flex: 0 0 72px;
  }

  .nightshop-product__price-row,
  .nightshop-product__qty-row,
  .nightshop-related__header,
  .nightshop-reviews #product-comments-list-header,
  .nightshop-reviews #product-comments-list-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .nightshop-product__long,
  .nightshop-related__grid {
    grid-template-columns: 1fr;
  }

  .nightshop-category-container,
  .nightshop-category-reassurance #block-reassurance,
  .nightshop-category-products__header {
    padding-right: 20px;
    padding-left: 20px;
  }

  .nightshop-category-hero {
    min-height: 360px;
  }

  .nightshop-category-hero__content h1 {
    font-size: 34px;
  }

  .nightshop-category-subcats {
    padding: 48px 0;
  }

  .nightshop-category-subcats__grid,
  .nightshop-category-products #js-product-list .products,
  .nightshop-category-products__grid {
    display: flex;
  }

  .nightshop-category-products__grid .js-product,
  .nightshop-category-products #js-product-list .products .js-product {
    flex-basis: min(82vw, 310px);
  }

  .nightshop-category-products__header {
    align-items: flex-start;
    flex-direction: column;
    padding-top: 48px;
  }

  .nightshop-category-reassurance #block-reassurance ul {
    flex-direction: column;
  }

  .nightshop-category-reassurance #block-reassurance li {
    max-width: none;
    padding: 0;
  }

  .nightshop-category-reassurance #block-reassurance li + li::before {
    display: none;
  }

  body#category #wrapper > .container:has(#content-wrapper.left-column) {
    padding: 24px 20px 48px;
  }

  body#category #wrapper > .container:has(#content-wrapper.left-column) > .breadcrumb {
    margin-bottom: 24px;
  }

  body#category #wrapper > .container:has(#content-wrapper.left-column) > .row {
    flex-direction: column;
    gap: 32px;
  }

  body#category #wrapper > .container:has(#content-wrapper.left-column) #left-column,
  body#category #wrapper > .container:has(#content-wrapper.left-column) #content-wrapper.left-column {
    width: 100%;
    max-width: none;
    flex-basis: auto;
  }

  body#category #content-wrapper.left-column #js-product-list-top.products-selection {
    align-items: flex-start;
    flex-direction: column;
  }

  body#category #content-wrapper.left-column #js-product-list-top > .col-lg-7,
  body#category #content-wrapper.left-column #js-product-list-top .sort-by-row {
    justify-content: flex-start;
    width: 100%;
  }

  body#category #content-wrapper.left-column #js-product-list .products {
    grid-template-columns: 1fr;
  }

  body#category #content-wrapper.left-column #js-product-list .js-product,
  body#category #content-wrapper.left-column .product-miniature .thumbnail-container,
  body#category #content-wrapper.left-column .product-miniature .thumbnail-top {
    width: 100% !important;
    max-width: none;
  }

  body#category #content-wrapper.left-column .product-miniature .thumbnail-top {
    height: auto;
    aspect-ratio: 310 / 280;
  }

  body#my-account #wrapper > .container,
  body#history #wrapper > .container,
  body#identity #wrapper > .container,
  body[id*="module-blockwishlist"] #wrapper > .container,
  body[class*="module-blockwishlist"] #wrapper > .container {
    padding: 32px 20px;
  }

  .nightshop-account {
    flex-direction: column;
    gap: 32px;
  }

  .nightshop-account__sidebar {
    flex: 0 0 auto;
    width: 100%;
    min-height: 0;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px 24px;
    padding: 0 0 24px;
    border-right: 0;
    border-bottom: 1px solid rgba(198, 191, 223, .3);
  }

  .nightshop-account__logout {
    position: static;
  }

  .nightshop-account__cards {
    justify-content: flex-start;
    flex-direction: column;
  }

  .nightshop-account__card,
  .nightshop-account__card--wallet,
  .nightshop-account__download {
    width: 100%;
    flex-basis: auto;
  }

  .nightshop-account__order-row,
  .nightshop-account__order-left,
  .nightshop-account__order-right {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

  .nightshop-account__order-info {
    min-width: 0;
  }

  .nightshop-account__product-line {
    grid-template-columns: 48px minmax(0, 1fr);
  }

  .nightshop-account__product-qty,
  .nightshop-account__product-total {
    grid-column: 2;
  }

  .nightshop-account__settings-grid,
  .nightshop-settings-row {
    flex-direction: column;
  }

  .nightshop-account__settings-grid {
    gap: 32px;
  }

  .nightshop-settings-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  #blockcart-modal.nightshop-cart-modal {
    padding: 12px;
  }

  #blockcart-modal .nightshop-cart-modal__dialog {
    min-height: calc(100vh - 24px);
  }

  #blockcart-modal .nightshop-cart-modal__content {
    gap: 32px;
    max-height: calc(100vh - 24px);
    padding: 32px 20px;
  }

  #blockcart-modal .nightshop-cart-modal__row {
    flex-direction: column;
    gap: 32px;
  }

  #blockcart-modal .nightshop-cart-modal__items {
    flex-basis: auto;
    width: 100%;
  }

  #blockcart-modal .nightshop-cart-modal__vertical {
    display: none;
  }

  #blockcart-modal .nightshop-cart-modal__summary {
    width: 100%;
  }

  #blockcart-modal .nightshop-cart-modal__rec-grid {
    flex-wrap: wrap;
  }

  #blockcart-modal .nightshop-cart-modal__rec-card {
    flex-basis: calc(50% - 12px);
  }

  .nightshop-wishlist-container,
  .nightshop-account__products-dropdown {
    padding: 20px;
  }


  .nightshop-login-card {
    width: min(100%, 464px);
    min-height: 0;
    padding: 32px 20px;
  }

  .nightshop-reviews .product-comment-list-item.row {
    flex-direction: column;
  }

  .nightshop-reviews .comment-infos {
    flex-basis: auto;
    max-width: none;
  }
}
