/*
Theme Name: NixTheme
Theme URI: https://nixtool.com
Author: Dev Abdussalam
Author URI: https://devabdussalam.com
Description: NixTheme is a modern, lightweight WordPress theme built for speed, AJAX navigation, and full compatibility with Nix Builder and Gutenberg.
Version: 1.1.1
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: nixtheme
Tags: ajax, Nix Builder, gutenberg, lightweight, fast, modern
*/
:root {
  --nixtheme-max-width: 1200px;
  --nixtheme-body-width: 1200px;
  --nixtheme-header-width: 1200px;
  --nixtheme-footer-width: 1200px;
}

.nixtheme-wrapper { width: min(var(--nixtheme-body-width, var(--nixtheme-max-width)), 100%); margin:0 auto; }
body { margin:0; font-family:'Roboto',system-ui,-apple-system,Segoe UI,Arial; font-weight:400; }
a { color:inherit; text-decoration:none; }
.site-header,.site-footer { padding:18px 0; border-bottom:1px solid #eee; }
.site-footer { border-top:1px solid #eee; border-bottom:0; }
.nav a { margin-right:12px; }
main { padding:20px 0; min-height:50vh; }
body.home main { padding-top: 0; }
.post-card { padding:14px 0; border-bottom:1px solid #f0f0f0; }
.post-card h2 { margin:0 0 6px; font-size:20px; }
.meta { font-size:13px; opacity:.7; }

.nixtheme-home-hero {
  padding: 24px 0 34px;
  width: min(var(--nixtheme-body-width, var(--nixtheme-max-width)), 100%);
  margin: 0 auto;
  position: relative;
}
.nixtheme-home-hero.is-fullwidth {
  padding: 0;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
.nixtheme-home-hero__viewport {
  position: relative;
  min-height: var(--nixtheme-home-hero-height, 520px);
  height: var(--nixtheme-home-hero-height, 520px);
  border-radius: var(--nixtheme-home-hero-radius, 18px);
  overflow: hidden;
}
.nixtheme-home-hero.is-fullwidth .nixtheme-home-hero__viewport {
  border-radius: 0;
}
.nixtheme-home-hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .42s ease, visibility .42s ease;
}
.nixtheme-home-hero__slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.nixtheme-home-hero__media {
  position: relative;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.nixtheme-home-hero__overlay {
  position: absolute;
  inset: 0;
  background: var(--nixtheme-home-hero-overlay-color, #000000);
  opacity: var(--nixtheme-home-hero-overlay-opacity, .4);
}
.nixtheme-home-hero__content {
  position: relative;
  z-index: 1;
  height: 100%;
  padding: 40px 48px 74px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: var(--nixtheme-home-hero-content-gap, 28px);
  justify-content: var(--nixtheme-home-hero-justify, center);
  align-items: var(--nixtheme-home-hero-align, center);
  text-align: var(--nixtheme-home-hero-text-align, center);
}
.nixtheme-home-hero.is-fullwidth .nixtheme-home-hero__content {
  width: min(var(--nixtheme-body-width, var(--nixtheme-max-width, 1200px)), 100%);
  margin-left: auto;
  margin-right: auto;
}
.nixtheme-home-hero__title {
  margin: 0;
  max-width: min(840px, 100%);
  color: var(--nixtheme-home-hero-heading-color, #ffffff);
  font-family: var(--nixtheme-home-hero-font, "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif);
  font-size: var(--nixtheme-home-hero-heading-size, 48px);
  line-height: 1.12;
  font-weight: var(--nixtheme-home-hero-heading-weight, 700);
  font-style: var(--nixtheme-home-hero-heading-style, normal);
  text-wrap: balance;
}
.nixtheme-home-hero__text {
  margin: 0;
  max-width: min(760px, 100%);
  color: var(--nixtheme-home-hero-paragraph-color, rgba(255,255,255,.9));
  font-family: var(--nixtheme-home-hero-paragraph-font, var(--nixtheme-home-hero-font, "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif));
  font-size: var(--nixtheme-home-hero-paragraph-size, 18px);
  line-height: 1.55;
  font-weight: 500;
}
.nixtheme-home-hero__cta {
  margin: 0;
}
.nixtheme-home-hero__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 34px;
  border-radius: 10px;
  background: var(--nixtheme-home-hero-button-bg, #14b8a6);
  color: var(--nixtheme-home-hero-button-color, #ffffff);
  text-decoration: none;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
}
.nixtheme-home-hero__dots {
  position: absolute;
  left: 50%;
  bottom: 22px;
  z-index: 2;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.nixtheme-home-hero__dots button {
  width: 36px;
  height: 6px;
  border: 0;
  border-radius: 999px;
  padding: 0;
  background: rgba(255,255,255,.5);
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}
.nixtheme-home-hero__dots button.is-active {
  background: #ef4444;
}

.nixtheme-home-category-showcase {
  background: transparent;
  padding: 52px 0 34px;
}
.nixtheme-home-category-showcase__inner {
  width: min(var(--nixtheme-body-width, var(--nixtheme-max-width)), 100%);
  margin: 0 auto;
}
.nixtheme-home-category-showcase__header {
  text-align: center;
  margin-bottom: 34px;
}
.nixtheme-home-category-showcase__header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 18px;
  border-radius: 10px;
  background: #ffffff;
}
.nixtheme-home-category-showcase__fashion-heading {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  margin: 0;
  color: #0f172a;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 700;
}
.nixtheme-home-category-showcase__fashion-heading em {
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 500;
}
.nixtheme-home-category-showcase__heading {
  margin: 0;
  font-size: 34px;
  line-height: 1.05;
  font-weight: 700;
  color: #111827;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.nixtheme-home-category-showcase__heading::before,
.nixtheme-home-category-showcase__heading::after {
  content: "";
  width: 84px;
  height: 6px;
  border-radius: 999px;
  background: #ef4444;
}
.nixtheme-home-category-showcase__title {
  margin: 14px 0 0;
  font-size: 18px;
  color: #374151;
}
.nixtheme-home-category-showcase__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 10px;
  background: #ffd91a;
  color: #111827;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}
.nixtheme-home-category-showcase__empty {
  text-align: center;
  color: #475467;
  padding: 22px 0 8px;
}
.nixtheme-home-category-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}
.nixtheme-home-category-carousel__viewport {
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  flex: 1 1 auto;
}
.nixtheme-home-category-carousel__viewport::-webkit-scrollbar {
  display: none;
}
.nixtheme-home-category-carousel__track {
  display: flex;
  align-items: flex-start;
  gap: var(--nixtheme-category-gap, 30px);
  min-width: max-content;
  padding: 8px 0 14px;
}
.nixtheme-home-category-carousel__item {
  width: 132px;
  flex: 0 0 132px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #111827;
  transition: transform .3s ease;
}
.nixtheme-home-category-carousel__media {
  width: 118px;
  height: 118px;
  border-radius: var(--nixtheme-category-classic-radius, 999px);
  background: #fff;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 0 1px rgba(15, 23, 42, .06);
  transition: transform .32s cubic-bezier(.22,.61,.36,1), box-shadow .32s ease;
}
.nixtheme-home-category-carousel__media img,
.nixtheme-home-category-carousel__placeholder {
  width: 100%;
  height: 100%;
  border-radius: var(--nixtheme-category-classic-radius, 999px);
}
.nixtheme-home-category-carousel__media img {
  object-fit: cover;
  display: block;
  transition: transform .32s cubic-bezier(.22,.61,.36,1);
}
.nixtheme-home-category-carousel__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #fde7d9, #dbeafe);
  font-size: 38px;
  font-weight: 700;
  color: #334155;
}
.nixtheme-home-category-carousel__name {
  display: block;
  margin-top: 14px;
  font-size: 14px;
  font-weight: 600;
}
.nixtheme-home-category-carousel__count {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  color: #6b7280;
}
.nixtheme-home-category-carousel__arrow {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, .1);
  background: linear-gradient(180deg, #ffffff, #f2f5fb);
  color: #0f172a;
  box-shadow: 0 10px 24px rgba(15, 23, 42, .12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
  flex: 0 0 auto;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}
.nixtheme-home-category-carousel__arrow:hover {
  transform: translateY(-1px) scale(1.03);
  box-shadow: 0 14px 30px rgba(15, 23, 42, .16);
  background: linear-gradient(180deg, #ffffff, #e9eef7);
}
.nixtheme-home-category-carousel__arrow[disabled] {
  opacity: .45;
  cursor: default;
}
.nixtheme-home-category-carousel__dots {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  margin-top: 8px;
}
.nixtheme-home-category-carousel__dots button {
  width: 28px;
  height: 4px;
  border: 0;
  border-radius: 999px;
  padding: 0;
  background: rgba(15, 23, 42, .16);
  cursor: pointer;
}
.nixtheme-home-category-carousel__dots button.is-active {
  background: #243b66;
}
.nixtheme-home-category-carousel__item:hover .nixtheme-home-category-carousel__media {
  transform: scale(1.055);
  box-shadow: 0 12px 26px rgba(15, 23, 42, .14), inset 0 0 0 1px rgba(15, 23, 42, .06);
}
.nixtheme-home-category-carousel__item:hover .nixtheme-home-category-carousel__media img {
  transform: scale(1.06);
}

.nixtheme-home-category-showcase--fashion-grid {
  background: transparent;
  padding: 44px 0 34px;
}

.nixtheme-home-category-showcase--fashion-grid .nixtheme-home-category-showcase__header {
  text-align: left;
  margin-bottom: 18px;
}

.nixtheme-home-category-showcase--fashion-grid .nixtheme-home-category-showcase__heading {
  display: block;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 700;
}

.nixtheme-home-category-showcase--fashion-grid .nixtheme-home-category-showcase__heading::before,
.nixtheme-home-category-showcase--fashion-grid .nixtheme-home-category-showcase__heading::after,
.nixtheme-home-category-showcase--fashion-grid .nixtheme-home-category-showcase__title {
  display: none;
}

.nixtheme-home-category-showcase--fashion-grid .nixtheme-home-category-carousel {
  padding-top: 12px;
}

.nixtheme-home-category-showcase--fashion-grid .nixtheme-home-category-carousel.is-fashion-grid {
  display: block;
}

.nixtheme-home-category-showcase--fashion-grid .nixtheme-home-category-carousel__viewport.is-fashion-grid {
  overflow: visible;
}

.nixtheme-home-category-showcase--fashion-grid .nixtheme-home-category-carousel__track {
  display: grid;
  grid-template-columns: repeat(var(--nixtheme-fashion-grid-columns, 8), minmax(0, 1fr));
  gap: 14px;
  padding: 0;
  min-width: 0;
}

.nixtheme-home-category-showcase--fashion-grid .nixtheme-home-category-carousel__item {
  width: 100%;
  flex: none;
  min-width: 0;
  background: #ffffff;
  border: 1px solid #edf0f5;
  padding: 8px 8px 12px;
  box-sizing: border-box;
}

.nixtheme-home-category-showcase--fashion-grid .nixtheme-home-category-carousel__media {
  width: 100%;
  height: 180px;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  background: #ffffff;
}

.nixtheme-home-category-showcase--fashion-grid .nixtheme-home-category-carousel__media img,
.nixtheme-home-category-showcase--fashion-grid .nixtheme-home-category-carousel__placeholder {
  border-radius: 0;
}

.nixtheme-home-category-showcase--fashion-grid .nixtheme-home-category-carousel__placeholder {
  font-size: 44px;
  background: linear-gradient(180deg, #f7d3d8 0%, #f6f7fb 100%);
}

.nixtheme-home-category-showcase--fashion-grid .nixtheme-home-category-carousel__name {
  margin-top: 12px;
  font-size: 15px;
  font-weight: 600;
  text-transform: none;
}

.nixtheme-home-category-showcase--fashion-grid .nixtheme-home-category-carousel__count,
.nixtheme-home-category-showcase--fashion-grid .nixtheme-home-category-carousel__arrow,
.nixtheme-home-category-showcase--fashion-grid .nixtheme-home-category-carousel__dots {
  display: none;
}

.nixtheme-home-category-showcase--fashion-grid .nixtheme-home-category-carousel__item:hover .nixtheme-home-category-carousel__media,
.nixtheme-home-category-showcase--fashion-grid .nixtheme-home-category-carousel__item:hover .nixtheme-home-category-carousel__media img {
  transform: none;
  box-shadow: none;
}

.nixtheme-home-category-showcase--cosmetics-category {
  background: transparent;
  padding: 28px 0 22px;
}

.nixtheme-home-category-showcase--cosmetics-category .nixtheme-home-category-showcase__header {
  text-align: left;
  margin-bottom: 18px;
}

.nixtheme-home-category-showcase__header-bar--cosmetics {
  padding: 10px 12px 10px 18px;
  border: 1px solid #f0cedf;
  border-radius: 8px;
  background: linear-gradient(90deg, #f7c5df 0%, #fff6fb 100%);
}

.nixtheme-home-category-showcase__cosmetics-heading {
  margin: 0;
  color: #111827;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 800;
}

.nixtheme-home-category-showcase__cta--cosmetics {
  min-height: 40px;
  padding: 0 22px;
  border-radius: 999px;
  background: linear-gradient(180deg, #db2f85 0%, #c72473 100%);
  color: #ffffff;
  font-size: 15px;
  font-weight: 800;
  box-shadow: 0 10px 20px rgba(199, 36, 115, .18);
}

.nixtheme-home-category-showcase__cta--cosmetics:hover,
.nixtheme-home-category-showcase__cta--cosmetics:focus {
  color: #ffffff;
}

.nixtheme-home-category-showcase--cosmetics-category .nixtheme-home-category-carousel {
  display: block;
}

.nixtheme-home-category-showcase--cosmetics-category .nixtheme-home-category-carousel__viewport.is-cosmetics-grid {
  overflow: visible;
}

.nixtheme-home-category-showcase--cosmetics-category .nixtheme-home-category-carousel__track {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  min-width: 0;
}

.nixtheme-home-category-showcase--cosmetics-category .nixtheme-home-category-carousel__item {
  width: 100%;
  flex: none;
  min-width: 0;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background: #eef1f5;
}

.nixtheme-home-category-showcase--cosmetics-category .nixtheme-home-category-carousel__media {
  width: 100%;
  height: 200px;
  border-radius: 8px;
  padding: 0;
  background: #eef1f5;
  box-shadow: none;
}

.nixtheme-home-category-showcase--cosmetics-category .nixtheme-home-category-carousel__media img,
.nixtheme-home-category-showcase--cosmetics-category .nixtheme-home-category-carousel__placeholder {
  border-radius: 0;
}

.nixtheme-home-category-showcase--cosmetics-category .nixtheme-home-category-carousel__media img {
  object-fit: cover;
  object-position: center top;
  transition: transform .35s ease;
}

.nixtheme-home-category-showcase--cosmetics-category .nixtheme-home-category-carousel__placeholder {
  background: linear-gradient(180deg, #f7d9e8 0%, #eceff4 100%);
  font-size: 42px;
}

.nixtheme-home-category-showcase--cosmetics-category .nixtheme-home-category-carousel__name {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 10px;
  margin: 0;
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  border-radius: 3px;
  background: rgba(17, 17, 17, .92);
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  z-index: 2;
}

.nixtheme-home-category-showcase--cosmetics-category .nixtheme-home-category-carousel__count,
.nixtheme-home-category-showcase--cosmetics-category .nixtheme-home-category-carousel__arrow,
.nixtheme-home-category-showcase--cosmetics-category .nixtheme-home-category-carousel__dots {
  display: none;
}

.nixtheme-home-category-showcase--cosmetics-category .nixtheme-home-category-carousel__item:hover .nixtheme-home-category-carousel__media {
  transform: none;
  box-shadow: none;
}

.nixtheme-home-category-showcase--cosmetics-category .nixtheme-home-category-carousel__item:hover .nixtheme-home-category-carousel__media img {
  transform: scale(1.08);
  box-shadow: none;
}

.nixtheme-home-category-showcase--tech-category {
  background: transparent;
  padding: 28px 0 22px;
}

.nixtheme-home-category-showcase--tech-category .nixtheme-home-category-showcase__header {
  text-align: left;
  margin-bottom: 18px;
}

.nixtheme-home-category-showcase__tech-heading {
  margin: 0;
  color: #111827;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 700;
}

.nixtheme-home-category-showcase--tech-category .nixtheme-home-category-showcase__header {
  text-align: left;
}

.nixtheme-home-category-showcase--tech-category .nixtheme-home-category-showcase__header-bar--tech {
  padding: 18px 22px;
  border-radius: 5px;
  background: #ffffff;
}

.nixtheme-home-category-showcase--tech-category .nixtheme-home-category-showcase__cta--tech {
  min-height: 36px;
  padding: 0 20px;
  border-radius: 5px;
  background: #3451db;
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
}

.nixtheme-home-category-showcase--tech-category .nixtheme-home-category-showcase__cta--tech:hover,
.nixtheme-home-category-showcase--tech-category .nixtheme-home-category-showcase__cta--tech:focus {
  filter: brightness(.92);
  color: #ffffff;
}

.nixtheme-home-category-showcase--tech-category .nixtheme-home-category-carousel {
  display: block;
}

.nixtheme-home-category-showcase--tech-category .nixtheme-home-category-carousel__viewport.is-tech-grid {
  overflow: visible;
}

.nixtheme-home-category-showcase--tech-category .nixtheme-home-category-carousel__track {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 10px;
  padding: 0;
  min-width: 0;
}

.nixtheme-home-category-showcase--tech-category .nixtheme-home-category-carousel__item {
  width: 100%;
  min-width: 0;
  flex: none;
  position: relative;
  align-items: center;
  justify-content: flex-start;
  min-height: 180px;
  padding: 12px 10px 14px;
  border-radius: 4px;
  border: 1px solid #eef2f7;
  background: #ffffff;
  box-sizing: border-box;
}

.nixtheme-home-category-showcase--tech-category .nixtheme-home-category-carousel__tech-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  min-width: 24px;
  height: 22px;
  padding: 0 6px;
  border-radius: 4px;
  background: #3451db;
  color: #ffffff;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 22px;
  text-align: center;
  box-sizing: border-box;
}

.nixtheme-home-category-showcase--tech-category .nixtheme-home-category-carousel__media {
  width: 100%;
  height: 112px;
  border-radius: 4px;
  padding: 0;
  background: #f6f8fb;
  box-shadow: none;
}

.nixtheme-home-category-showcase--tech-category .nixtheme-home-category-carousel__media img,
.nixtheme-home-category-showcase--tech-category .nixtheme-home-category-carousel__placeholder {
  width: 72px;
  height: 72px;
  border-radius: 0;
}

.nixtheme-home-category-showcase--tech-category .nixtheme-home-category-carousel__media img {
  object-fit: contain;
}

.nixtheme-home-category-showcase--tech-category .nixtheme-home-category-carousel__placeholder {
  background: transparent;
  font-size: 36px;
  color: #334155;
}

.nixtheme-home-category-showcase--tech-category .nixtheme-home-category-carousel__name {
  margin-top: 20px;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 500;
  color: #111827;
}

.nixtheme-home-category-showcase--tech-category .nixtheme-home-category-carousel__count,
.nixtheme-home-category-showcase--tech-category .nixtheme-home-category-carousel__arrow,
.nixtheme-home-category-showcase--tech-category .nixtheme-home-category-carousel__dots {
  display: none;
}

.nixtheme-home-category-showcase--tech-category .nixtheme-home-category-carousel__item:hover,
.nixtheme-home-category-showcase--tech-category .nixtheme-home-category-carousel__item:hover .nixtheme-home-category-carousel__media,
.nixtheme-home-category-showcase--tech-category .nixtheme-home-category-carousel__item:hover .nixtheme-home-category-carousel__media img {
  transform: none;
  box-shadow: none;
}

.nixtheme-home-category-promo {
  padding: 15px 0;
}

.nixtheme-home-category-promo__inner {
  width: min(var(--nixtheme-body-width, var(--nixtheme-max-width)), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 350px) minmax(0, 1fr) minmax(280px, 350px);
  gap: 16px;
  align-items: stretch;
}

.nixtheme-home-category-promo__left,
.nixtheme-home-category-promo__main,
.nixtheme-home-category-promo__right {
  border-radius: 16px;
  overflow: hidden;
  background: #ffffff;
}

.nixtheme-home-category-promo__left {
  border: 1px solid #e5e7eb;
  padding: 12px;
}

.nixtheme-home-category-promo__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nixtheme-home-category-promo__list li + li {
  border-top: 1px solid #edf1f5;
}

.nixtheme-home-category-promo__link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 2px;
}

.nixtheme-home-category-promo__thumb {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  padding: 8px;
  border: 1px solid #00000026;
  box-sizing: border-box;
  overflow: hidden;
  background: #f3f4f6;
  flex: 0 0 auto;
}

.nixtheme-home-category-promo__thumb.has-image {
  background: transparent;
}

.nixtheme-home-category-promo__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.nixtheme-home-category-promo__thumb-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: #334155;
}

.nixtheme-home-category-promo__name {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  color: #0f172a;
}

.nixtheme-home-category-promo__count {
  margin-left: auto;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  color: #64748b;
  flex: 0 0 auto;
}

.nixtheme-home-category-promo__main,
.nixtheme-home-category-promo__right {
  position: relative;
  min-height: 240px;
  border: 1px solid #e5e7eb;
}

.nixtheme-home-category-promo__main img,
.nixtheme-home-category-promo__right img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.nixtheme-home-category-promo__placeholder {
  width: 100%;
  height: 100%;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  font-weight: 600;
  background: linear-gradient(180deg, #f8fafc, #eef2f7);
}

.nixtheme-home-category-promo__empty {
  padding: 14px 4px;
  color: #64748b;
}

.nixtheme-home-category-promo-deal {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 14px;
  box-sizing: border-box;
  background: #ffffff;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.nixtheme-home-category-promo-deal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 10px;
}

.nixtheme-home-category-promo-deal__head h3 {
  margin: 0;
  font-size: 26px;
  line-height: 1.15;
  font-weight: 700;
  color: #111827;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.nixtheme-home-category-promo-deal__countdown {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #4f46e5;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1, "lnum" 1;
}

.nixtheme-home-category-promo-deal__countdown [data-deal-unit] {
  width: 2ch;
  text-align: center;
  display: inline-block;
}

.nixtheme-home-category-promo-deal__countdown .is-sep {
  width: 0.8ch;
  text-align: center;
  opacity: 0.9;
}

.nixtheme-home-category-promo-deal__image {
  display: block;
  border-radius: 14px;
  overflow: hidden;
}

.nixtheme-home-category-promo-deal__image img {
  width: 100%;
  height: 320px;
  display: block;
  object-fit: cover;
}

.nixtheme-home-category-promo-deal__body {
  margin-top: 12px;
}

.nixtheme-home-category-promo-deal__body h4 {
  margin: 0 0 6px;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 600;
  color: #111827;
  font-family: inherit;
}

.nixtheme-home-category-promo-deal__price {
  font-size: 24px;
  line-height: 1.2;
  font-weight: 700;
  color: #4f46e5;
  margin-bottom: 10px;
  font-family: inherit;
}

.nixtheme-home-category-promo-deal__actions {
  display: flex;
  gap: 8px;
}

.nixtheme-home-category-promo-deal__actions a {
  flex: 1 1 0;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 40px;
  padding: 0 10px;
  border-radius: 10px;
  border: 1px solid #d1d5db;
  color: #111827;
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
}

.nixtheme-home-category-promo-deal__actions a.is-buy {
  border-color: #4f46e5;
  background: #4f46e5;
  color: #ffffff;
}

.nixtheme-home-image-duo {
  width: min(var(--nixtheme-body-width, var(--nixtheme-max-width)), 100%);
  margin: 28px auto;
}

.nixtheme-home-image-duo__inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.nixtheme-home-image-duo__card {
  position: relative;
  display: block;
  width: 100%;
  height: var(--nixtheme-image-duo-height, 360px);
  min-height: 120px;
  border-radius: 10px;
  background-color: #eef2f7;
  overflow: hidden;
  transition: box-shadow .35s ease;
}

.nixtheme-home-image-duo__bg {
  position: absolute;
  inset: 0;
  display: block;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transition: transform .45s ease;
  transform: scale(1);
}

.nixtheme-home-image-duo__card:hover,
.nixtheme-home-image-duo__card:focus {
  box-shadow: 0 18px 45px rgba(15, 23, 42, .14);
  outline: none;
}

.nixtheme-home-image-duo__card:hover .nixtheme-home-image-duo__bg,
.nixtheme-home-image-duo__card:focus .nixtheme-home-image-duo__bg {
  transform: scale(1.045);
}

.nixtheme-home-promo-cards {
  width: min(var(--nixtheme-body-width, var(--nixtheme-max-width)), 100%);
  margin: 34px auto;
}

.nixtheme-home-promo-cards__inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.nixtheme-home-promo-cards__card {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 100%;
  min-height: 220px;
  height: var(--nixtheme-promo-cards-height, 462px);
  padding: 24px 18px 36px;
  box-sizing: border-box;
  border-radius: 0;
  background: #e7ebf3;
  overflow: hidden;
  text-decoration: none;
  transition: transform .3s ease, box-shadow .3s ease;
}

.nixtheme-home-promo-cards__bg,
.nixtheme-home-promo-cards__overlay {
  position: absolute;
  inset: 0;
}

.nixtheme-home-promo-cards__bg {
  display: block;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transform: scale(1);
  transition: transform .45s ease;
}

.nixtheme-home-promo-cards__overlay {
  background: linear-gradient(180deg, rgba(17, 24, 39, 0) 34%, rgba(17, 24, 39, .28) 68%, rgba(17, 24, 39, .7) 100%);
}

.nixtheme-home-promo-cards__content {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  text-align: center;
}

.nixtheme-home-promo-cards__title {
  color: #ffffff;
  font-family: var(--nixtheme-promo-cards-heading-font, "Instrument Serif", Georgia, serif);
  font-size: var(--nixtheme-promo-cards-heading-size, 24px);
  font-weight: var(--nixtheme-promo-cards-heading-weight, 400);
  line-height: 1.05;
  letter-spacing: -.02em;
  text-wrap: balance;
}

.nixtheme-home-promo-cards__button {
  min-width: 180px;
  padding: 13px 24px;
  border-radius: 2px;
  background: #ffffff;
  color: #111111;
  font-family: var(--nixtheme-promo-cards-button-font, "Roboto", Arial, sans-serif);
  font-size: var(--nixtheme-promo-cards-button-size, 14px);
  font-weight: var(--nixtheme-promo-cards-button-weight, 500);
  line-height: 1;
  letter-spacing: .03em;
  text-transform: uppercase;
  box-sizing: border-box;
}

.nixtheme-home-promo-cards__card:hover,
.nixtheme-home-promo-cards__card:focus {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(15, 23, 42, .16);
  outline: none;
}

.nixtheme-home-promo-cards__card:hover .nixtheme-home-promo-cards__bg,
.nixtheme-home-promo-cards__card:focus .nixtheme-home-promo-cards__bg {
  transform: scale(1.04);
}

.nixtheme-home-saree-edit {
  width: min(var(--nixtheme-body-width, var(--nixtheme-max-width)), 100%);
  margin: 34px auto;
  padding-top: var(--nixtheme-saree-pad-top, 36px);
  padding-bottom: var(--nixtheme-saree-pad-bottom, 36px);
  box-sizing: border-box;
}

.nixtheme-home-saree-edit__section-heading {
  margin: 0 0 28px;
  text-align: center;
  color: #050505;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.1;
}

.nixtheme-home-saree-edit__panel {
  display: grid;
  grid-template-columns: minmax(0, 1.36fr) minmax(320px, .94fr);
  gap: 48px;
  align-items: center;
  padding: 28px;
  background: var(--nixtheme-saree-bg, #fff3ef);
  box-sizing: border-box;
}

.nixtheme-home-saree-edit__media-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, .47fr) minmax(0, .47fr);
  grid-template-rows: minmax(0, 270px) minmax(0, 272px);
  gap: var(--nixtheme-saree-gap, 14px);
  min-height: 556px;
}

.nixtheme-home-saree-edit__media {
  position: relative;
  overflow: hidden;
  background: rgba(15, 23, 42, .08);
}

.nixtheme-home-saree-edit__media--large {
  grid-row: 1 / span 2;
}

.nixtheme-home-saree-edit__media--wide {
  grid-column: 2 / span 2;
}

.nixtheme-home-saree-edit__media img,
.nixtheme-home-saree-edit__media video,
.nixtheme-home-saree-edit__media iframe {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
}

.nixtheme-home-saree-edit__media.is-youtube-bg {
  background: #000;
}

.nixtheme-home-saree-edit__media.is-youtube-bg iframe {
  position: absolute;
  top: 0;
  left: 50%;
  width: 240%;
  height: 240%;
  max-width: none;
  transform: translate(-50%, -30%);
  pointer-events: none;
}

.nixtheme-home-saree-edit__media.is-youtube-bg::before,
.nixtheme-home-saree-edit__media.is-youtube-bg::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  z-index: 2;
  pointer-events: none;
  background: #000;
}

.nixtheme-home-saree-edit__media.is-youtube-bg::before {
  top: 0;
  height: 0;
}

.nixtheme-home-saree-edit__media.is-youtube-bg::after {
  bottom: 0;
  height: 0;
}

.nixtheme-home-saree-edit__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #050505;
}

.nixtheme-home-saree-edit__small-heading {
  margin: 0 0 15px;
  color: var(--nixtheme-saree-small-color, var(--nixtheme-saree-accent, #651608));
  font-family: var(--nixtheme-saree-small-font, "Instrument Serif", Georgia, serif);
  font-size: var(--nixtheme-saree-small-size, 32px);
  font-weight: var(--nixtheme-saree-small-weight, 400);
  line-height: 1;
}

.nixtheme-home-saree-edit__big-heading {
  margin: 0 0 32px;
  color: var(--nixtheme-saree-big-color, var(--nixtheme-saree-accent, #651608));
  font-family: var(--nixtheme-saree-big-font, "Instrument Serif", Georgia, serif);
  font-size: var(--nixtheme-saree-big-size, 46px);
  font-weight: var(--nixtheme-saree-big-weight, 500);
  line-height: .96;
  text-transform: uppercase;
}

.nixtheme-home-saree-edit__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin: 0 0 32px;
  padding: 0 15px;
  background: var(--nixtheme-saree-button-bg, #000000);
  color: var(--nixtheme-saree-button-color, #ffffff);
  font-family: var(--nixtheme-saree-button-font, "Roboto", Arial, sans-serif);
  font-size: var(--nixtheme-saree-button-size, 14px);
  font-weight: var(--nixtheme-saree-button-weight, 700);
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
}

.nixtheme-home-saree-edit__button:hover,
.nixtheme-home-saree-edit__button:focus {
  color: var(--nixtheme-saree-button-color, #ffffff);
  background: var(--nixtheme-saree-button-bg, #000000);
}

.nixtheme-home-saree-edit__paragraph {
  margin: 0;
  color: var(--nixtheme-saree-paragraph-color, #050505);
  font-family: var(--nixtheme-saree-paragraph-font, "Roboto", Arial, sans-serif);
  font-size: var(--nixtheme-saree-paragraph-size, 16px);
  font-weight: var(--nixtheme-saree-paragraph-weight, 500);
  line-height: 1.5;
}

.nixtheme-home-video-look {
  width: min(var(--nixtheme-body-width, var(--nixtheme-max-width)), 100%);
  margin: 36px auto;
}

.nixtheme-home-video-look__heading {
  margin: 0 0 28px;
  text-align: center;
  color: #111111;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.1;
}

.nixtheme-home-video-look__stage {
  position: relative;
  height: var(--nixtheme-video-look-height, 480px);
}

.nixtheme-home-video-look__slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.nixtheme-home-video-look__slide {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(24vw, 274px);
  max-width: 274px;
  height: 100%;
  transform: translateX(-50%) scale(.78);
  opacity: 0;
  z-index: 1;
  pointer-events: none;
  transition: transform .45s ease, opacity .45s ease, filter .45s ease;
}

.nixtheme-home-video-look__slide.is-active,
.nixtheme-home-video-look__slide.is-prev-1,
.nixtheme-home-video-look__slide.is-prev-2,
.nixtheme-home-video-look__slide.is-next-1,
.nixtheme-home-video-look__slide.is-next-2 {
  opacity: 1;
}

.nixtheme-home-video-look__slide.is-active {
  transform: translateX(-50%) scale(1);
  z-index: 5;
  pointer-events: auto;
}

.nixtheme-home-video-look__slide.is-prev-1 {
  transform: translateX(calc(-50% - clamp(160px, 16vw, 188px))) scale(.92);
  z-index: 4;
  opacity: .92;
}

.nixtheme-home-video-look__slide.is-next-1 {
  transform: translateX(calc(-50% + clamp(160px, 16vw, 188px))) scale(.92);
  z-index: 4;
  opacity: .92;
}

.nixtheme-home-video-look__slide.is-prev-2 {
  transform: translateX(calc(-50% - clamp(292px, 28vw, 336px))) scale(.84);
  z-index: 3;
  opacity: .68;
}

.nixtheme-home-video-look__slide.is-next-2 {
  transform: translateX(calc(-50% + clamp(292px, 28vw, 336px))) scale(.84);
  z-index: 3;
  opacity: .68;
}

.nixtheme-home-video-look__card {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 18px;
  overflow: hidden;
  background: #ddd6cf;
}

.nixtheme-home-video-look__poster,
.nixtheme-home-video-look__live,
.nixtheme-home-video-look__overlay {
  position: absolute;
  inset: 0;
}

.nixtheme-home-video-look__poster {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  filter: brightness(.8);
}

.nixtheme-home-video-look__live {
  z-index: 1;
  background: transparent;
}

.nixtheme-home-video-look__live.has-media {
  background: #000000;
}

.nixtheme-home-video-look__platform-mask {
  position: absolute;
  z-index: 2;
  pointer-events: none;
}

.nixtheme-home-video-look__platform-mask--youtube-top {
  top: 0;
  left: 0;
  right: 0;
  height: 76px;
  background: linear-gradient(180deg, rgba(0,0,0,.92) 0%, rgba(0,0,0,.78) 62%, rgba(0,0,0,0) 100%);
}

.nixtheme-home-video-look__live iframe,
.nixtheme-home-video-look__live video {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
  background: #000000;
}

.nixtheme-home-video-look__overlay {
  z-index: 3;
  background: linear-gradient(180deg, rgba(0,0,0,.06) 12%, rgba(0,0,0,.12) 48%, rgba(0,0,0,.8) 100%);
}

.nixtheme-home-video-look__content {
  position: absolute;
  inset: auto 14px 16px;
  z-index: 4;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.nixtheme-home-video-look__title {
  margin: 0;
  color: #ffffff;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  text-shadow: 0 2px 14px rgba(0,0,0,.45);
}

.nixtheme-home-video-look__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 18px;
  background: #000000;
  color: #ffffff;
  border-radius: 0;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-decoration: underline;
}

.nixtheme-home-video-look__arrow {
  position: absolute;
  top: 50%;
  z-index: 6;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 999px;
  background: rgba(0,0,0,.42);
  color: #ffffff;
  font-size: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
  cursor: pointer;
}

.nixtheme-home-video-look__arrow--prev {
  left: calc(50% - clamp(328px, 31vw, 402px));
}

.nixtheme-home-video-look__arrow--next {
  right: calc(50% - clamp(328px, 31vw, 402px));
}

.nixtheme-home-video-look.has-single-slide .nixtheme-home-video-look__arrow {
  display: none;
}

.nixtheme-home-product-slider {
  width: min(var(--nixtheme-body-width, var(--nixtheme-max-width)), 100%);
  margin: 36px auto;
}

.nixtheme-home-product-slider__heading {
  margin: 0 0 26px;
  text-align: center;
  color: #111111;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.15;
}

.nixtheme-home-product-slider__stage {
  position: relative;
}

.nixtheme-home-product-slider__viewport {
  overflow: hidden;
}

.nixtheme-home-product-slider__track {
  display: flex;
  gap: var(--nixtheme-home-product-slider-gap, 16px);
  transition: transform .4s ease;
  will-change: transform;
}

.nixtheme-home-product-slider__card {
  flex: 0 0 auto;
  min-width: 0;
}

.nixtheme-home-product-slider__image {
  display: block;
  height: var(--nixtheme-home-product-slider-image-height, 382px);
  margin-bottom: 14px;
  background: #f4efe8;
  overflow: hidden;
}

.nixtheme-home-product-slider__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nixtheme-home-product-slider__placeholder {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  color: #6b7280;
  font-size: 32px;
  font-weight: 600;
}

.nixtheme-home-product-slider__title {
  margin: 0 0 8px;
  color: #111111;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.35;
}

.nixtheme-home-product-slider__title a {
  color: inherit;
  text-decoration: none;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.nixtheme-home-product-slider__price {
  color: #111111;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
}

.nixtheme-home-product-slider__arrow {
  position: absolute;
  top: calc(var(--nixtheme-home-product-slider-image-height, 382px) / 2);
  z-index: 3;
  width: 50px;
  height: 50px;
  border: 1px solid #e5e7eb;
  background: rgba(255,255,255,.96);
  color: #111111;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  font-weight: 300;
  transform: translateY(-50%);
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(15,23,42,.08);
}

.nixtheme-home-product-slider__arrow--prev {
  left: -32px;
}

.nixtheme-home-product-slider__arrow--next {
  right: -32px;
}

.nixtheme-home-product-slider__arrow.is-disabled,
.nixtheme-home-product-slider.has-static-layout .nixtheme-home-product-slider__arrow {
  opacity: .45;
  pointer-events: none;
}

.nixtheme-home-split-slider {
  --nixtheme-home-split-slider-height: 420px;
  --nixtheme-home-split-slider-height-mobile: 260px;
  --nixtheme-home-split-slider-dot: #ffffff;
  --nixtheme-home-split-slider-dot-active: #f59e0b;
  width: min(var(--nixtheme-body-width, var(--nixtheme-max-width)), 100%);
  margin: 28px auto;
}

.nixtheme-home-split-slider__inner {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
}

.nixtheme-home-split-slider__slider,
.nixtheme-home-split-slider__side {
  min-width: 0;
}

.nixtheme-home-split-slider .nixtheme-home-slider__track {
  position: relative;
  height: var(--nixtheme-home-split-slider-height);
  border-radius: 14px;
  overflow: hidden;
  background: #eef2f7;
}

.nixtheme-home-slider__slide--split {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s ease, visibility .35s ease;
}

.nixtheme-home-slider__slide--split.is-active {
  opacity: 1;
  visibility: visible;
}

.nixtheme-home-split-slider__slide-link,
.nixtheme-home-split-slider__side-link {
  display: block;
  width: 100%;
  height: 100%;
}

.nixtheme-home-split-slider__slide-link img,
.nixtheme-home-split-slider__side img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nixtheme-home-split-slider__side {
  height: var(--nixtheme-home-split-slider-height);
  border-radius: 14px;
  overflow: hidden;
  background: #eef2f7;
}

.nixtheme-home-split-slider__side-stack {
  display: grid;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 8px;
  height: 100%;
}

.nixtheme-home-split-slider__side-card {
  min-height: 0;
  overflow: hidden;
  background: #eef2f7;
}

.nixtheme-home-split-slider__side-card .nixtheme-home-split-slider__side-link,
.nixtheme-home-split-slider__side-card .nixtheme-home-split-slider__side-placeholder {
  height: 100%;
}

.nixtheme-home-split-slider__side--stacked {
  padding: 0;
}

.nixtheme-home-split-slider__side-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: #64748b;
  font: 600 18px/1.2 "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.nixtheme-home-split-slider .nixtheme-home-slider__arrow {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.92);
  color: #f97316;
  font-size: 24px;
}

.nixtheme-home-split-slider .nixtheme-home-slider__arrow--prev {
  left: 18px;
}

.nixtheme-home-split-slider .nixtheme-home-slider__arrow--next {
  right: 18px;
}

.nixtheme-home-split-slider .nixtheme-home-slider__dots {
  left: 34px;
  bottom: 18px;
  transform: none;
  gap: 8px;
}

.nixtheme-home-split-slider .nixtheme-home-slider__dots button {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--nixtheme-home-split-slider-dot);
  opacity: .6;
}

.nixtheme-home-split-slider .nixtheme-home-slider__dots button.is-active {
  background: var(--nixtheme-home-split-slider-dot-active);
  opacity: 1;
}

.nixtheme-home-category-bestsellers {
  padding: 32px 0 46px;
}

.nixtheme-home-category-bestsellers__inner {
  width: min(var(--nixtheme-body-width, var(--nixtheme-max-width)), 100%);
  margin: 0 auto;
}

.nixtheme-home-category-bestsellers__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}

.nixtheme-home-category-bestsellers__heading {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(28px, 3vw, 32px);
  line-height: 1.06;
  font-weight: 700;
  color: #111827;
}

.nixtheme-home-category-bestsellers__heading span {
  color: inherit;
}

.nixtheme-home-category-bestsellers__tabs {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  flex-wrap: wrap;
}

.nixtheme-home-category-bestsellers__tab {
  border: 1px solid #eceef3;
  background: #f8fafc;
  color: #1f2937;
  border-radius: 999px;
  padding: 14px 22px;
  font: 600 15px/1 "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  cursor: pointer;
  transition: all .22s ease;
}

.nixtheme-home-category-bestsellers__tab.is-active {
  background: #4f46e5;
  color: #fff;
  border-color: #4f46e5;
  box-shadow: 0 14px 24px rgba(79, 70, 229, .2);
}

.nixtheme-home-category-bestsellers__panel {
  display: none;
}

.nixtheme-home-category-bestsellers__panel.is-active {
  display: block;
}

.nixtheme-home-category-bestsellers__grid {
  display: grid;
  gap: 18px;
  align-items: stretch;
}

.nixtheme-home-category-bestsellers__grid.is-columns-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.nixtheme-home-category-bestsellers__grid.is-columns-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.nixtheme-home-category-bestsellers__grid.is-columns-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.nixtheme-home-category-bestsellers__grid.is-columns-5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.nixtheme-home-category-bestsellers__grid.is-columns-6 {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.nixtheme-home-category-bestsellers__card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  border: 1px solid #e7e9f0;
  border-radius: 24px;
  background: #fff;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
}

.nixtheme-home-category-bestsellers__image {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  min-height: 0;
  aspect-ratio: 1 / 1;
  padding: 8px 0 0;
  background: #fff;
  text-decoration: none;
  overflow: hidden;
}

.nixtheme-home-category-bestsellers__image img {
  width: 100%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(1.14);
  transition: opacity .22s ease;
}

.nixtheme-home-category-bestsellers__image-hover {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
}

.nixtheme-home-category-bestsellers__card:hover .nixtheme-home-category-bestsellers__image-hover {
  opacity: 1;
}

.nixtheme-home-category-bestsellers__placeholder {
  width: 100%;
  max-width: 170px;
  height: 200px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #eef2ff, #fdf2f8);
  color: #475569;
  font: 700 48px/1 "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.nixtheme-home-category-bestsellers__content {
  padding: 8px 18px 18px;
  flex: 1 1 auto;
}

.nixtheme-home-category-bestsellers__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #9ca3af;
  font: 500 13px/1.4 "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.nixtheme-home-category-bestsellers__meta span:last-child {
  color: #a3a3a3;
  white-space: nowrap;
}

.nixtheme-home-category-bestsellers__content h3 {
  margin: 10px 0 0;
  font: 600 16px/1.35 "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #111827;
  min-height: 44px;
}

.nixtheme-home-category-bestsellers__content h3 a {
  color: inherit;
  text-decoration: none;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.nixtheme-home-category-bestsellers__swatches {
  display: none;
}

.nixtheme-home-category-bestsellers__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px 18px;
  border-top: 1px solid #eceef3;
  margin-top: auto;
}

.nixtheme-home-category-bestsellers__footer strong {
  color: #4f46e5;
  font: 700 15px/1 "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.nixtheme-home-category-bestsellers__footer a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 13px;
  border-radius: 999px;
  background: #f3f4ff;
  color: #4f46e5;
  text-decoration: none;
  transition: background .2s ease, color .2s ease;
}

.nixtheme-home-category-bestsellers__footer-label {
  font: 600 12px/1 "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  white-space: nowrap;
}

.nixtheme-home-category-bestsellers__footer a:hover {
  background: #eef2ff;
  color: #4f46e5;
}

.nixtheme-home-customer-reviews {
  padding: 34px 0 46px;
  background: transparent !important;
}

.nixtheme-home-customer-reviews__inner {
  width: min(var(--nixtheme-body-width, var(--nixtheme-max-width)), 100%);
  margin: 0 auto;
  padding: 2px 0 40px;
  background: transparent !important;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  box-sizing: border-box;
}

.nixtheme-home-customer-reviews__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.nixtheme-home-customer-reviews__heading {
  margin: 0;
  color: #243b66;
  font: 700 25px/1.1 "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.nixtheme-home-customer-reviews__nav {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.nixtheme-home-customer-reviews__viewport {
  overflow: hidden;
}

.nixtheme-home-customer-reviews__track {
  display: flex;
  gap: 20px;
  will-change: transform;
  align-items: stretch;
}

.nixtheme-home-customer-reviews__card {
  min-width: 0;
  background: #ffffff;
  border-radius: 20px;
  padding: 28px 32px 26px;
  box-shadow: 0 1px 0 rgba(15, 23, 42, .04);
  box-sizing: border-box;
}

.nixtheme-home-customer-reviews__card h3 {
  margin: 0 0 12px;
  color: #243b66;
  font: 700 22px/1.2 "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.nixtheme-home-customer-reviews__card p {
  margin: 0;
  color: #243b66;
  font: 500 17px/1.55 "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  min-height: 132px;
}

.nixtheme-home-customer-reviews__footer {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid #e9edf3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.nixtheme-home-customer-reviews__person {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  align-items: center;
  flex: 1 1 auto;
  gap: 12px;
  min-width: 0;
}

.nixtheme-home-customer-reviews__avatar {
  width: 54px;
  height: 54px;
  border-radius: 999px;
  overflow: hidden;
  background: #dbe3ee;
  color: #243b66;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  font: 700 22px/1 "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.nixtheme-home-customer-reviews__avatar.has-image {
  background: transparent;
}

.nixtheme-home-customer-reviews__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.nixtheme-home-customer-reviews__identity {
  display: flex;
  flex-direction: column;
  min-width: 0;
  gap: 5px;
}

.nixtheme-home-customer-reviews__identity strong {
  color: #111827;
  font: 700 16px/1.2 "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nixtheme-home-customer-reviews__stars {
  display: flex;
  justify-content: flex-start;
  gap: 2px;
  color: #d1d5db;
  flex: 0 0 auto;
}

.nixtheme-home-customer-reviews__stars span {
  font-size: 12px;
  line-height: 1;
}

.nixtheme-home-customer-reviews__stars span.is-active {
  color: #f59e0b;
}

.nixtheme-home-customer-reviews__proof {
  width: 70px;
  height: 42px;
  border: 0;
  border-radius: 4px;
  overflow: hidden;
  padding: 0;
  background: #eef2f7;
  box-shadow: 0 0 0 1px rgba(36, 59, 102, .1);
  cursor: pointer;
  flex: 0 0 70px;
}

.nixtheme-home-customer-reviews__proof img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.nixtheme-home-customer-reviews__lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(15, 23, 42, .72);
}

.nixtheme-home-customer-reviews__lightbox.is-open {
  display: flex;
}

.nixtheme-home-customer-reviews__lightbox img {
  max-width: min(92vw, 920px);
  max-height: 86vh;
  width: auto;
  height: auto;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .35);
}

.nixtheme-home-customer-reviews__lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: #ffffff;
  color: #111827;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.nixtheme-home-customer-reviews__arrow {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(36, 59, 102, .12);
  background: #ffffff;
  color: #243b66;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 28px rgba(15, 23, 42, .12);
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.nixtheme-home-customer-reviews__arrow:hover {
  transform: translateY(-1px);
  background: #f8fafc;
  box-shadow: 0 18px 34px rgba(15, 23, 42, .16);
}

.nixtheme-home-customer-reviews__arrow svg {
  width: 20px;
  height: 20px;
  display: block;
}

.nixtheme-home-customer-reviews__dots {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.nixtheme-home-customer-reviews__dots button {
  width: 30px;
  height: 4px;
  border-radius: 999px;
  border: 0;
  padding: 0;
  background: rgba(36, 59, 102, 0.18);
  cursor: pointer;
}

.nixtheme-home-customer-reviews__dots button.is-active {
  background: #243b66;
}

.nixtheme-home-customer-reviews--spotlight {
  padding: 42px 0 56px;
}

.nixtheme-home-customer-reviews--spotlight .nixtheme-home-customer-reviews__inner {
  padding-bottom: 24px;
}

.nixtheme-home-customer-reviews--spotlight .nixtheme-home-customer-reviews__header {
  justify-content: center;
  margin-bottom: 34px;
}

.nixtheme-home-customer-reviews--spotlight .nixtheme-home-customer-reviews__heading {
  color: #111827;
  font: 500 24px/1.15 "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-align: center;
}

.nixtheme-home-customer-reviews--spotlight .nixtheme-home-customer-reviews__nav {
  position: absolute;
  left: 14px;
  right: 14px;
  top: 50%;
  transform: translateY(-6px);
  justify-content: space-between;
  pointer-events: none;
  z-index: 4;
}

.nixtheme-home-customer-reviews--spotlight .nixtheme-home-customer-reviews__arrow {
  width: 52px;
  height: 52px;
  box-shadow: none;
  border: 1px solid #d6dbe4;
  background: rgba(255, 255, 255, .92);
  pointer-events: auto;
}

.nixtheme-home-customer-reviews--spotlight .nixtheme-home-customer-reviews__viewport {
  overflow: hidden;
}

.nixtheme-home-customer-reviews--spotlight .nixtheme-home-customer-reviews__track {
  gap: 36px;
}

.nixtheme-home-customer-reviews__card--spotlight {
  padding: 28px 28px 30px;
  border: 1px solid #d9dee7;
  border-radius: 16px;
  box-shadow: none;
}

.nixtheme-home-customer-reviews__spotlight-shell {
  display: grid;
  grid-template-columns: minmax(180px, 224px) minmax(0, 1fr);
  align-items: center;
  gap: 34px;
  min-height: 330px;
}

.nixtheme-home-customer-reviews__spotlight-media {
  height: 100%;
  min-height: 330px;
  border-radius: 2px;
  background: linear-gradient(180deg, #f2f4f7 0%, #e5e7eb 100%);
  overflow: hidden;
}

.nixtheme-home-customer-reviews__spotlight-media.has-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.nixtheme-home-customer-reviews__spotlight-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 26px;
  min-width: 0;
}

.nixtheme-home-customer-reviews__spotlight-quote {
  margin: 0;
  color: #4b5563;
  font: italic 400 clamp(23px, 1.85vw, 36px) / 1.36 "Instrument Serif", Georgia, serif;
  letter-spacing: 0;
  max-width: 640px;
}

.nixtheme-home-customer-reviews__spotlight-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.nixtheme-home-customer-reviews__spotlight-meta strong {
  color: #111827;
  font: 500 20px/1.2 "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.nixtheme-home-customer-reviews__spotlight-meta span {
  color: #4b5563;
  font: 400 16px/1.3 "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.nixtheme-home-customer-reviews--spotlight .nixtheme-home-customer-reviews__dots {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.nixtheme-home-customer-reviews--spotlight .nixtheme-home-customer-reviews__dots button {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #d1d5db;
}

.nixtheme-home-customer-reviews--spotlight .nixtheme-home-customer-reviews__dots button.is-active {
  background: #111827;
}

@media (max-width: 1180px) {
  .nixtheme-home-customer-reviews--spotlight .nixtheme-home-customer-reviews__track {
    gap: 24px;
  }
  .nixtheme-home-customer-reviews__spotlight-shell {
    grid-template-columns: minmax(150px, 190px) minmax(0, 1fr);
    gap: 24px;
    min-height: 286px;
  }
  .nixtheme-home-customer-reviews__spotlight-media {
    min-height: 286px;
  }
  .nixtheme-home-customer-reviews__spotlight-quote {
    font-size: clamp(20px, 2vw, 30px);
  }
}

@media (max-width: 767px) {
  .nixtheme-home-customer-reviews--spotlight {
    padding: 30px 0 42px;
  }
  .nixtheme-home-customer-reviews--spotlight .nixtheme-home-customer-reviews__header {
    margin-bottom: 18px;
  }
  .nixtheme-home-customer-reviews--spotlight .nixtheme-home-customer-reviews__nav {
    position: static;
    transform: none;
    margin-bottom: 14px;
    justify-content: flex-end;
  }
  .nixtheme-home-customer-reviews--spotlight .nixtheme-home-customer-reviews__arrow {
    width: 44px;
    height: 44px;
  }
  .nixtheme-home-customer-reviews__card--spotlight {
    padding: 18px 18px 22px;
  }
  .nixtheme-home-customer-reviews__spotlight-shell {
    grid-template-columns: 1fr;
    gap: 18px;
    min-height: 0;
  }
  .nixtheme-home-customer-reviews__spotlight-media {
    min-height: 300px;
  }
  .nixtheme-home-customer-reviews__spotlight-quote {
    font-size: 18px;
    line-height: 1.42;
  }
  .nixtheme-home-customer-reviews__spotlight-meta strong {
    font-size: 18px;
  }
  .nixtheme-home-customer-reviews__spotlight-meta span {
    font-size: 14px;
  }
}

.nixtheme-home-slider {
  --nixtheme-home-slider-overlay: 0.28;
  --nixtheme-home-slider-height: 560px;
  --nixtheme-home-slider-height-mobile: 420px;
  --nixtheme-home-slider-font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --nixtheme-home-slider-title-size: 58px;
  --nixtheme-home-slider-title-lh: 1.16;
  --nixtheme-home-slider-title-weight: 600;
  --nixtheme-home-slider-text-size: 36px;
  --nixtheme-home-slider-text-lh: 1.2;
  --nixtheme-home-slider-text-weight: 500;
  --nixtheme-home-slider-title-size-mobile: 54px;
  --nixtheme-home-slider-title-lh-mobile: 1.16;
  --nixtheme-home-slider-title-weight-mobile: 600;
  --nixtheme-home-slider-text-size-mobile: 30px;
  --nixtheme-home-slider-text-lh-mobile: 1.2;
  --nixtheme-home-slider-text-weight-mobile: 500;
  --nixtheme-home-slider-btn-size: 16px;
  --nixtheme-home-slider-btn-pad-y: 14px;
  --nixtheme-home-slider-btn-pad-x: 34px;
  --nixtheme-home-slider-btn-color: #111827;
  --nixtheme-home-slider-btn-bg: #ffffff;
  width: min(var(--nixtheme-body-width, var(--nixtheme-max-width)), 100%);
  margin: 0 auto 22px;
  position: relative;
  border-radius: 0;
  overflow: hidden;
}

.nixtheme-home-pro-slider {
  --nixtheme-home-pro-slider-height: 620px;
  --nixtheme-home-pro-slider-height-mobile: 420px;
  --nixtheme-home-pro-slider-dots-offset: clamp(16px, calc(var(--nixtheme-home-pro-slider-height) * 0.06), 42px);
  --nixtheme-home-pro-slider-dots-offset-mobile: clamp(8px, calc(var(--nixtheme-home-pro-slider-height-mobile) * 0.03), 20px);
  --nixtheme-home-pro-slider-font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --nixtheme-home-pro-slider-title-size: 82px;
  --nixtheme-home-pro-slider-title-lh: 1.08;
  --nixtheme-home-pro-slider-title-weight: 500;
  --nixtheme-home-pro-slider-text-size: 30px;
  --nixtheme-home-pro-slider-text-lh: 1.18;
  --nixtheme-home-pro-slider-text-weight: 500;
  --nixtheme-home-pro-slider-title-size-mobile: 54px;
  --nixtheme-home-pro-slider-title-lh-mobile: 1.12;
  --nixtheme-home-pro-slider-title-weight-mobile: 500;
  --nixtheme-home-pro-slider-text-size-mobile: 28px;
  --nixtheme-home-pro-slider-text-lh-mobile: 1.18;
  --nixtheme-home-pro-slider-text-weight-mobile: 500;
  --nixtheme-home-pro-slider-btn-size: 24px;
  --nixtheme-home-pro-slider-btn-pad-y: 16px;
  --nixtheme-home-pro-slider-btn-pad-x: 30px;
  --nixtheme-home-pro-slider-btn-color: #ffffff;
  --nixtheme-home-pro-slider-btn-bg: #8b5e4b;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: 0;
  margin-bottom: 26px;
  position: relative;
  overflow: hidden;
}

.nixtheme-home-pro-slider .nixtheme-home-slider__track {
  height: var(--nixtheme-home-pro-slider-height);
}

.nixtheme-home-slider__slide--pro {
  position: relative;
  color: #1f2937;
}

.nixtheme-home-slider__slide--pro::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--nixtheme-pro-slide-overlay-color, #000000);
  opacity: var(--nixtheme-pro-slide-overlay, 0);
  pointer-events: none;
}

.nixtheme-home-pro-slider__inner {
  width: min(var(--nixtheme-body-width, var(--nixtheme-max-width)), 100%);
  height: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 50%);
  gap: clamp(18px, 3.4vw, 42px);
  align-items: center;
  padding: 34px clamp(16px, 2.2vw, 24px);
  box-sizing: border-box;
  position: relative;
  z-index: 1;
}

.nixtheme-home-pro-slider__copy {
  font-family: var(--nixtheme-home-pro-slider-font);
  color: var(--nixtheme-pro-slide-text-color, #1d1d1f);
}

.nixtheme-home-pro-slider__title {
  margin: 0 0 8px;
  font-family: inherit;
  font-size: var(--nixtheme-home-pro-slider-title-size);
  line-height: var(--nixtheme-home-pro-slider-title-lh);
  font-weight: var(--nixtheme-home-pro-slider-title-weight);
  letter-spacing: -0.01em;
}

.nixtheme-home-pro-slider__text {
  margin: 0 0 24px;
  font-family: inherit;
  font-size: var(--nixtheme-home-pro-slider-text-size);
  line-height: var(--nixtheme-home-pro-slider-text-lh);
  font-weight: var(--nixtheme-home-pro-slider-text-weight);
  font-style: italic;
}

.nixtheme-home-pro-slider__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--nixtheme-home-pro-slider-btn-pad-y) var(--nixtheme-home-pro-slider-btn-pad-x);
  border-radius: 2px;
  background: var(--nixtheme-home-pro-slider-btn-bg);
  color: var(--nixtheme-home-pro-slider-btn-color);
  font-size: var(--nixtheme-home-pro-slider-btn-size);
  font-weight: 600;
  text-decoration: none;
}

.nixtheme-home-pro-slider__media {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nixtheme-home-pro-slider__media::before {
  content: none;
}

.nixtheme-home-pro-slider__media img {
  position: relative;
  z-index: 1;
  width: min(100%, 700px);
  max-height: calc(var(--nixtheme-home-pro-slider-height) - 80px);
  object-fit: contain;
}

.nixtheme-home-pro-slider__placeholder {
  width: min(38vw, 560px);
  height: min(38vw, 560px);
  border-radius: 999px;
  background: radial-gradient(circle at 50% 28%, #e5e7eb 0%, #d1d5db 65%, #9ca3af 100%);
}

.nixtheme-home-pro-slider .nixtheme-home-slider__arrow {
  border: 1px solid rgba(31, 41, 55, 0.18);
  background: #ffffff;
  color: #1f2937;
}

.nixtheme-home-pro-slider .nixtheme-home-slider__arrow--prev {
  left: 20px;
}

.nixtheme-home-pro-slider .nixtheme-home-slider__arrow--next {
  right: 20px;
}

.nixtheme-home-pro-slider .nixtheme-home-slider__dots {
  counter-reset: nixtheme-pro-slide;
  gap: 24px;
  bottom: var(--nixtheme-home-pro-slider-dots-offset);
}

.nixtheme-home-pro-slider .nixtheme-home-slider__dots button {
  width: auto;
  height: auto;
  background: transparent !important;
  color: color-mix(in srgb, var(--nixtheme-pro-slide-text-color, #1d1d1f) 55%, transparent);
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.nixtheme-home-pro-slider .nixtheme-home-slider__dots button::before {
  counter-increment: nixtheme-pro-slide;
  content: counter(nixtheme-pro-slide, decimal-leading-zero);
}

.nixtheme-home-pro-slider .nixtheme-home-slider__dots button::after {
  content: "";
  width: 24px;
  height: 2px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--nixtheme-pro-slide-text-color, #1d1d1f) 28%, transparent);
}

.nixtheme-home-pro-slider .nixtheme-home-slider__dots button.is-active {
  color: var(--nixtheme-pro-slide-text-color, #1d1d1f);
  background: transparent !important;
}

.nixtheme-home-pro-slider .nixtheme-home-slider__dots button.is-active::after {
  width: 48px;
  background: var(--nixtheme-pro-slide-text-color, #1d1d1f);
}

.nixtheme-home-slider__track {
  position: relative;
  width: 100%;
  height: var(--nixtheme-home-slider-height);
}

body.home {
  overflow-x: hidden;
}

.nixtheme-home-slider__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 450ms ease, visibility 450ms ease;
  background-size: cover;
  background-position: center;
}

.nixtheme-home-slider__slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nixtheme-home-slider__overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 15, 30, var(--nixtheme-home-slider-overlay));
}

.nixtheme-home-slider__content {
  position: absolute;
  z-index: 2;
  left: clamp(28px, 9vw, 140px);
  top: 50%;
  transform: translateY(-50%);
  width: min(56%, 660px);
  color: #fff;
  font-family: var(--nixtheme-home-slider-font);
}

.nixtheme-home-slider__title {
  margin: 0 0 16px;
  color: #fff;
  font-family: inherit;
  font-size: var(--nixtheme-home-slider-title-size);
  line-height: var(--nixtheme-home-slider-title-lh);
  font-weight: var(--nixtheme-home-slider-title-weight);
}

.nixtheme-home-slider__text {
  margin: 0 0 24px;
  color: #fff;
  font-family: inherit;
  font-size: var(--nixtheme-home-slider-text-size);
  line-height: var(--nixtheme-home-slider-text-lh);
  font-weight: var(--nixtheme-home-slider-text-weight);
}

.nixtheme-home-slider__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--nixtheme-home-slider-btn-pad-y) var(--nixtheme-home-slider-btn-pad-x);
  border-radius: 999px;
  border: 0;
  background: var(--nixtheme-home-slider-btn-bg);
  color: var(--nixtheme-home-slider-btn-color);
  text-decoration: none;
  font-family: inherit;
  font-size: var(--nixtheme-home-slider-btn-size);
  font-weight: 600;
}

.nixtheme-home-slider__arrow {
  position: absolute;
  z-index: 3;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  cursor: pointer;
  font-size: 30px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nixtheme-home-slider__arrow--prev {
  left: 22px;
}

.nixtheme-home-slider__arrow--next {
  right: 22px;
}

.nixtheme-home-slider__dots {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
}

.nixtheme-home-slider__dots button {
  width: 30px;
  height: 4px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  padding: 0;
  background: rgba(255, 255, 255, 0.4);
}

.nixtheme-home-slider__dots button.is-active {
  background: #fff;
}

@media (max-width: 900px) {
  .nixtheme-home-hero,
  .nixtheme-home-category-showcase__inner,
  .nixtheme-home-category-promo__inner,
  .nixtheme-home-image-duo,
  .nixtheme-home-split-slider,
  .nixtheme-home-category-bestsellers__inner,
  .nixtheme-home-customer-reviews__inner {
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
    box-sizing: border-box;
  }
  .nixtheme-home-hero.is-fullwidth {
    padding-left: 0;
    padding-right: 0;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }
  .nixtheme-home-hero__viewport {
    min-height: var(--nixtheme-home-hero-height-mobile, 320px);
    height: var(--nixtheme-home-hero-height-mobile, 320px);
  }
  .nixtheme-home-hero__content {
    padding: 28px 22px 64px;
    gap: var(--nixtheme-home-hero-content-gap-mobile, var(--nixtheme-home-hero-content-gap, 18px));
  }
  .nixtheme-home-hero.is-fullwidth .nixtheme-home-hero__content {
    width: 100%;
  }
  .nixtheme-home-hero__title {
    font-size: var(--nixtheme-home-hero-heading-size-mobile, 30px);
  }
  .nixtheme-home-hero__text {
    font-size: var(--nixtheme-home-hero-paragraph-size-mobile, 15px);
  }
  .nixtheme-home-hero__button {
    min-height: 48px;
    padding: 0 24px;
    font-size: 15px;
  }
  .nixtheme-home-category-showcase {
    padding: 42px 0 26px;
  }
  .nixtheme-home-category-showcase__header-bar {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    gap: 12px;
  }
  .nixtheme-home-category-showcase__fashion-heading {
    font-size: 17px;
    flex: 1 1 auto;
    min-width: 0;
    white-space: nowrap;
  }
  .nixtheme-home-category-showcase__title {
    font-size: 15px;
    padding: 0 18px;
  }
  .nixtheme-home-category-showcase__cta {
    min-height: 40px;
    padding: 0 16px;
    flex: 0 0 auto;
    white-space: nowrap;
  }
  .nixtheme-home-category-carousel {
    gap: 8px;
  }
  .nixtheme-home-category-carousel__track {
    gap: var(--nixtheme-category-gap, 16px);
  }
  .nixtheme-home-category-carousel__item {
    width: 106px;
    flex-basis: 106px;
  }
  .nixtheme-home-category-carousel__media {
    width: 94px;
    height: 94px;
  }
  .nixtheme-home-category-carousel__arrow {
    display: inline-flex;
    position: absolute;
    top: 36%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    font-size: 22px;
    box-shadow: 0 8px 18px rgba(15, 23, 42, .10);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(6px);
    z-index: 2;
  }
  .nixtheme-home-category-carousel__arrow:hover {
    transform: translateY(-50%) scale(1.03);
  }
  .nixtheme-home-category-carousel__arrow--prev {
    left: -6px;
  }
  .nixtheme-home-category-carousel__arrow--next {
    right: -6px;
  }
  .nixtheme-home-category-carousel__dots {
    display: none;
  }
  .nixtheme-home-category-showcase--fashion-grid {
    padding: 34px 0 22px;
  }
  .nixtheme-home-category-showcase--fashion-grid .nixtheme-home-category-carousel__track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .nixtheme-home-category-showcase--fashion-grid .nixtheme-home-category-carousel__item {
    width: 100%;
    flex-basis: auto;
    padding: 8px 8px 12px;
  }
  .nixtheme-home-category-showcase--fashion-grid .nixtheme-home-category-carousel__media {
    width: 100%;
    height: 156px;
  }
  .nixtheme-home-category-showcase--fashion-grid .nixtheme-home-category-carousel__arrow {
    display: none;
  }
  .nixtheme-home-category-showcase--cosmetics-category {
    padding: 24px 0 18px;
  }
  .nixtheme-home-category-showcase--cosmetics-category .nixtheme-home-category-showcase__header-bar--cosmetics {
    padding: 10px 10px 10px 14px;
  }
  .nixtheme-home-category-showcase--cosmetics-category .nixtheme-home-category-showcase__cosmetics-heading {
    font-size: 16px;
  }
  .nixtheme-home-category-showcase--cosmetics-category .nixtheme-home-category-carousel__track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .nixtheme-home-category-showcase--cosmetics-category .nixtheme-home-category-carousel__media {
    height: 150px;
  }
  .nixtheme-home-category-showcase--cosmetics-category .nixtheme-home-category-carousel__name {
    left: 8px;
    right: 8px;
    bottom: 8px;
    min-height: 30px;
    font-size: 12px;
  }
  .nixtheme-home-category-showcase--tech-category {
    padding: 24px 0 18px;
  }
  .nixtheme-home-category-showcase--tech-category .nixtheme-home-category-showcase__header {
    margin-bottom: 14px;
  }
  .nixtheme-home-category-showcase--tech-category .nixtheme-home-category-showcase__tech-heading {
    font-size: 18px;
  }
  .nixtheme-home-category-showcase--tech-category .nixtheme-home-category-showcase__header-bar--tech {
    padding: 14px 16px;
  }
  .nixtheme-home-category-showcase--tech-category .nixtheme-home-category-showcase__cta--tech {
    min-height: 34px;
    padding: 0 16px;
    font-size: 14px;
  }
  .nixtheme-home-category-showcase--tech-category .nixtheme-home-category-carousel__track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .nixtheme-home-category-showcase--tech-category .nixtheme-home-category-carousel__item {
    min-height: 158px;
    padding: 10px 8px 12px;
  }
  .nixtheme-home-category-showcase--tech-category .nixtheme-home-category-carousel__media {
    height: 94px;
  }
  .nixtheme-home-category-showcase--tech-category .nixtheme-home-category-carousel__media img,
  .nixtheme-home-category-showcase--tech-category .nixtheme-home-category-carousel__placeholder {
    width: 60px;
    height: 60px;
  }
  .nixtheme-home-category-showcase--tech-category .nixtheme-home-category-carousel__tech-badge {
    top: 8px;
    right: 8px;
    min-width: 22px;
    height: 20px;
    font-size: 11px;
    line-height: 20px;
  }
  .nixtheme-home-category-showcase--tech-category .nixtheme-home-category-carousel__name {
    margin-top: 16px;
    font-size: 13px;
  }
  .nixtheme-home-image-duo__inner {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .nixtheme-home-image-duo__card {
    height: var(--nixtheme-image-duo-height-mobile, 260px);
  }
  .nixtheme-home-promo-cards {
    margin: 24px auto;
  }
  .nixtheme-home-promo-cards__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .nixtheme-home-promo-cards__card {
    height: var(--nixtheme-promo-cards-height-mobile, 248px);
    min-height: 200px;
    padding: 18px 10px 14px;
  }
  .nixtheme-home-promo-cards__content {
    gap: 12px;
  }
  .nixtheme-home-promo-cards__title {
    font-size: var(--nixtheme-promo-cards-heading-size-mobile, 20px);
    line-height: .98;
  }
  .nixtheme-home-promo-cards__button {
    width: 100%;
    min-width: 0;
    padding: 11px 12px;
    font-size: var(--nixtheme-promo-cards-button-size-mobile, 12px);
  }
  .nixtheme-home-saree-edit {
    margin: 24px auto;
    padding: var(--nixtheme-saree-pad-top, 28px) 16px var(--nixtheme-saree-pad-bottom, 28px);
  }
  .nixtheme-home-saree-edit__section-heading {
    margin-bottom: 18px;
    font-size: 22px;
  }
  .nixtheme-home-saree-edit__panel {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 6px 16px 38px;
  }
  .nixtheme-home-saree-edit__media-grid {
    grid-template-columns: minmax(0, 1.28fr) minmax(0, .62fr) minmax(0, .62fr);
    grid-template-rows: minmax(0, 135px) minmax(0, 139px);
    gap: var(--nixtheme-saree-gap-mobile, 7px);
    min-height: 281px;
  }
  .nixtheme-home-saree-edit__small-heading {
    margin-bottom: 9px;
    font-size: var(--nixtheme-saree-small-size-mobile, 29px);
  }
  .nixtheme-home-saree-edit__big-heading {
    margin-bottom: 32px;
    font-size: var(--nixtheme-saree-big-size-mobile, 31px);
  }
  .nixtheme-home-saree-edit__button {
    min-height: 33px;
    margin-bottom: 32px;
    padding: 0 13px;
    font-size: var(--nixtheme-saree-button-size-mobile, 12px);
  }
  .nixtheme-home-saree-edit__paragraph {
    font-size: var(--nixtheme-saree-paragraph-size-mobile, 16px);
  }
  .nixtheme-home-video-look {
    margin: 28px auto;
    padding-left: 30px;
    padding-right: 30px;
    box-sizing: border-box;
  }
  .nixtheme-home-video-look__heading {
    margin-bottom: 18px;
    font-size: 20px;
  }
  .nixtheme-home-video-look__stage {
    height: var(--nixtheme-video-look-height-mobile, 560px);
  }
  .nixtheme-home-video-look__slide {
    width: 100%;
    max-width: none;
    left: 0;
    transform: translateX(0) scale(.92);
    opacity: 0;
  }
  .nixtheme-home-video-look__slide.is-active {
    transform: translateX(0) scale(1);
    opacity: 1;
  }
  .nixtheme-home-video-look__slide.is-prev-1,
  .nixtheme-home-video-look__slide.is-prev-2,
  .nixtheme-home-video-look__slide.is-next-1,
  .nixtheme-home-video-look__slide.is-next-2 {
    transform: translateX(0) scale(1);
    opacity: 0;
  }
  .nixtheme-home-video-look__card {
    border-radius: 18px;
  }
  .nixtheme-home-video-look__content {
    inset: auto 12px 14px;
  }
  .nixtheme-home-video-look__title {
    font-size: 13px;
  }
  .nixtheme-home-video-look__button {
    min-height: 34px;
    font-size: 13px;
  }
  .nixtheme-home-video-look__arrow {
    width: 46px;
    height: 46px;
    font-size: 22px;
  }
  .nixtheme-home-video-look__arrow--prev {
    left: 14px;
  }
  .nixtheme-home-video-look__arrow--next {
    right: 14px;
  }
  .nixtheme-home-product-slider {
    margin: 28px auto;
    padding-left: 16px;
    padding-right: 16px;
    box-sizing: border-box;
  }
  .nixtheme-home-product-slider__heading {
    margin-bottom: 18px;
    font-size: 20px;
  }
  .nixtheme-home-product-slider__track {
    gap: var(--nixtheme-home-product-slider-gap-mobile, 12px);
  }
  .nixtheme-home-product-slider__image {
    height: var(--nixtheme-home-product-slider-image-height-mobile, 260px);
    margin-bottom: 12px;
  }
  .nixtheme-home-product-slider__title {
    font-size: 14px;
  }
  .nixtheme-home-product-slider__price {
    font-size: 15px;
  }
  .nixtheme-home-product-slider__arrow {
    width: 42px;
    height: 42px;
    top: calc(var(--nixtheme-home-product-slider-image-height-mobile, 260px) / 2);
    font-size: 28px;
  }
  .nixtheme-home-product-slider__arrow--prev {
    left: -5px;
  }
  .nixtheme-home-product-slider__arrow--next {
    right: -5px;
  }
  .nixtheme-home-category-promo__inner {
    grid-template-columns: 1fr;
  }
  .nixtheme-home-category-promo__left {
    order: 1;
  }
  .nixtheme-home-category-promo__main {
    order: 2;
    min-height: 260px;
  }
  .nixtheme-home-category-promo__right {
    order: 3;
    min-height: 220px;
  }
  .nixtheme-home-category-promo__name {
    font-size: 15px;
  }
  .nixtheme-home-category-promo-deal__head h3 {
    font-size: 20px;
  }
  .nixtheme-home-category-promo-deal__image img {
    height: 260px;
  }
  .nixtheme-home-category-bestsellers__header {
    flex-direction: column;
    align-items: flex-start;
  }
  .nixtheme-home-category-bestsellers__tabs {
    justify-content: flex-start;
  }
  .nixtheme-home-category-bestsellers__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .nixtheme-home-customer-reviews__inner {
    padding: 30px 22px 28px;
  }
  .nixtheme-home-customer-reviews__card {
    padding: 24px 24px 22px;
  }
  .nixtheme-home-customer-reviews__card p {
    min-height: 0;
  }
  .nixtheme-home-customer-reviews__header {
    gap: 14px;
    margin-bottom: 22px;
  }
  .nixtheme-home-customer-reviews__arrow {
    width: 40px;
    height: 40px;
  }
  .nixtheme-home-slider__track {
    height: var(--nixtheme-home-slider-height-mobile);
  }
  .nixtheme-home-slider__content {
    width: calc(100% - 56px);
    left: 28px;
  }
  .nixtheme-home-slider__title {
    font-size: var(--nixtheme-home-slider-title-size-mobile);
    line-height: var(--nixtheme-home-slider-title-lh-mobile);
    font-weight: var(--nixtheme-home-slider-title-weight-mobile);
  }
  .nixtheme-home-slider__text {
    font-size: var(--nixtheme-home-slider-text-size-mobile);
    line-height: var(--nixtheme-home-slider-text-lh-mobile);
    font-weight: var(--nixtheme-home-slider-text-weight-mobile);
  }
  .nixtheme-home-slider__arrow {
    display: none;
  }
  .nixtheme-home-pro-slider .nixtheme-home-slider__track {
    height: var(--nixtheme-home-pro-slider-height-mobile);
  }
  .nixtheme-home-pro-slider .nixtheme-home-slider__slide--pro {
    position: relative;
    inset: auto;
    opacity: 1;
    visibility: visible;
    display: none;
    height: 100%;
    min-height: 100%;
    pointer-events: none;
  }
  .nixtheme-home-pro-slider .nixtheme-home-slider__slide--pro.is-active {
    display: block;
    pointer-events: auto;
  }
  .nixtheme-home-pro-slider {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
  .nixtheme-home-pro-slider__inner {
    width: 100%;
    height: 100%;
    min-height: 100%;
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 40px 15px calc(var(--nixtheme-home-pro-slider-dots-offset-mobile) + 42px);
    align-content: center;
  }
  .nixtheme-home-pro-slider__copy {
    text-align: left;
  }
  .nixtheme-home-pro-slider__title {
    font-size: min(var(--nixtheme-home-pro-slider-title-size-mobile), 37px);
    line-height: var(--nixtheme-home-pro-slider-title-lh-mobile);
    font-weight: var(--nixtheme-home-pro-slider-title-weight-mobile);
  }
  .nixtheme-home-pro-slider__text {
    margin-bottom: 16px;
    font-size: min(var(--nixtheme-home-pro-slider-text-size-mobile), 22px);
    line-height: var(--nixtheme-home-pro-slider-text-lh-mobile);
    font-weight: var(--nixtheme-home-pro-slider-text-weight-mobile);
  }
  .nixtheme-home-pro-slider__media {
    min-height: clamp(160px, 34vw, 220px);
    margin-top: 18px;
    margin-bottom: 0;
  }
  .nixtheme-home-pro-slider__media::before {
    width: min(62vw, 320px);
    height: min(62vw, 320px);
  }
  .nixtheme-home-pro-slider__media img {
    max-height: 260px;
  }
  .nixtheme-home-pro-slider .nixtheme-home-slider__dots button {
    font-size: 14px;
    font-weight: 600;
  }
  .nixtheme-home-pro-slider .nixtheme-home-slider__dots {
    bottom: var(--nixtheme-home-pro-slider-dots-offset-mobile);
  }
  .nixtheme-home-pro-slider__button {
    font-size: min(var(--nixtheme-home-pro-slider-btn-size), 18px);
    align-self: flex-start;
    padding: 12px 22px;
  }
  .nixtheme-home-split-slider__inner {
    grid-template-columns: 1fr;
  }
  .nixtheme-home-split-slider .nixtheme-home-slider__track {
    height: var(--nixtheme-home-split-slider-height-mobile);
  }
  .nixtheme-home-split-slider .nixtheme-home-slider__arrow {
    display: inline-flex;
  }
  .nixtheme-home-split-slider__side {
    display: none;
  }
}

@media (max-width: 767px) {
  .nixtheme-home-category-bestsellers {
    padding: 26px 0 36px;
  }
  .nixtheme-home-category-bestsellers__heading {
    font-size: 34px;
  }
  .nixtheme-home-category-bestsellers__content h3 {
    font-size: 14px;
  }
  .nixtheme-home-category-bestsellers__footer strong {
    font-size: 13px;
  }
  .nixtheme-home-category-bestsellers__tabs {
    flex-wrap: wrap;
    overflow: visible;
    width: 100%;
    padding-bottom: 4px;
    gap: 10px;
  }
  .nixtheme-home-category-bestsellers__tab {
    flex: 0 0 auto;
    padding: 12px 18px;
  }
  .nixtheme-home-category-bestsellers__grid,
  .nixtheme-home-category-bestsellers__grid.is-columns-2,
  .nixtheme-home-category-bestsellers__grid.is-columns-3,
  .nixtheme-home-category-bestsellers__grid.is-columns-4,
  .nixtheme-home-category-bestsellers__grid.is-columns-5,
  .nixtheme-home-category-bestsellers__grid.is-columns-6 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }
  .nixtheme-home-category-bestsellers__image {
    min-height: 0;
    padding: 8px 0 0;
  }
  .nixtheme-home-category-bestsellers__image img,
  .nixtheme-home-category-bestsellers__placeholder {
    max-width: none;
    height: 100%;
  }
  .nixtheme-home-customer-reviews__heading {
    font-size: 28px;
  }
  .nixtheme-home-customer-reviews__inner {
    padding: 32px 16px;
    border-radius: 0;
  }
  .nixtheme-home-customer-reviews__header {
    margin-bottom: 20px;
  }
  .nixtheme-home-customer-reviews__card {
    padding: 22px 18px 20px;
    border-radius: 5px;
  }
  .nixtheme-home-customer-reviews__card h3 {
    font-size: 20px;
  }
  .nixtheme-home-customer-reviews__card p {
    font-size: 16px;
  }
  .nixtheme-home-customer-reviews__footer {
    flex-direction: row;
    align-items: center;
    gap: 12px;
  }
  .nixtheme-home-customer-reviews__person {
    grid-template-columns: 42px minmax(0, 1fr);
    flex: 1 1 auto;
  }
  .nixtheme-home-customer-reviews__avatar {
    width: 42px;
    height: 42px;
    font-size: 18px;
  }
  .nixtheme-home-customer-reviews__proof {
    width: 70px;
    height: 42px;
    flex-basis: 70px;
  }
  .nixtheme-home-customer-reviews__arrow {
    display: none;
  }
  .nixtheme-home-customer-reviews__dots {
    display: flex;
  }
}

@media (max-width: 520px) {
  .nixtheme-home-category-bestsellers__grid {
    grid-template-columns: 1fr;
  }
}

.nixtheme-home-category-grid {
  width: min(var(--nixtheme-body-width, var(--nixtheme-max-width)), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
  padding: 40px 0;
}
.nixtheme-home-category-card {
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 18px;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 180px;
  box-shadow: 0 12px 20px rgba(0,0,0,.05);
}
.nixtheme-home-category-card__title {
  margin: 0 0 6px;
  font-size: 15px;
}

/* Mobile sticky bottom nav */
.nixc-mobile-stickynav {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100050;
  display: none;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: center;
  gap: 0;
  background: #ffffff;
  border-top: 1px solid rgba(15, 23, 42, .12);
  box-shadow: 0 -8px 24px rgba(15, 23, 42, .08);
  padding: 6px 8px calc(6px + env(safe-area-inset-bottom));
}
.nixc-mobile-stickynav__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  min-height: 46px;
  color: #334155;
  text-decoration: none !important;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.1;
}
.nixc-mobile-stickynav__item svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}
.nixc-mobile-stickynav__icon-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.nixc-mobile-stickynav__badge {
  position: absolute;
  top: -6px;
  right: -10px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 999px;
  background: #ef4444;
  color: #fff;
  font-size: 10px;
  line-height: 16px;
  text-align: center;
  font-weight: 700;
}
.nixc-mobile-stickynav .ac-cart-badge {
  min-width: 8px;
  height: 16px;
  padding: 0 4px;
  font-size: 8px;
  line-height: 16px;
  right: -7px;
  top: -5px;
  box-shadow: 0 0 0 1.5px #fff;
}
.nixc-mobile-stickynav__item--cart .nixc-mobile-stickynav__icon-wrap {
  width: 30px;
  height: 30px;
  border: 1px solid #d7dee8;
  border-radius: 999px;
  background: #fff;
}
.nixc-mobile-stickynav__item--cart svg {
  width: 16px;
  height: 16px;
  fill: none;
}
.nixc-mobile-stickynav__item--cart .ac-cart-badge {
  right: -6px;
  top: -5px;
}
.nixc-mobile-stickynav__item.is-active {
  color: #2563eb;
}
.nixc-float-cart {
  width: 82px !important;
  border-radius: 6px 0 0 6px !important;
}
.nixc-float-cart__top {
  min-height: 45px !important;
  height: 45px !important;
  padding: 8px 10px !important;
  gap: 4px !important;
}
.nixc-float-cart__top svg,
.nixc-float-cart__top .ac-ico,
.nixc-float-cart__top i {
  width: 20px !important;
  height: 20px !important;
  font-size: 20px !important;
}
.nixc-float-cart__count {
  font-size: 14px !important;
  line-height: 1.15 !important;
  font-weight: 500 !important;
}
.nixc-float-cart__bottom {
  min-height: 30px !important;
  height: 30px !important;
  padding: 6px 10px !important;
  font-size: 15px !important;
  line-height: 1.15 !important;
  font-weight: 700 !important;
}
.nixc-float-cart__bottom .nixc-float-cart__total,
.nixc-float-cart__bottom span,
.nixc-float-cart__bottom strong {
  font-size: 15px !important;
  line-height: 1.15 !important;
  font-weight: 700 !important;
}
.nixc-float-cart__total {
  display: inline-flex !important;
  align-items: baseline !important;
  justify-content: center !important;
  gap: 3px !important;
}
.nixc-float-cart__total .nixc-float-cart__currency {
  display: inline-block !important;
  font-size: 13px !important;
  line-height: 1 !important;
  font-weight: 800 !important;
  transform: scale(1.18) translateY(1px) !important;
  transform-origin: center !important;
}
.nixc-float-cart__total .nixc-float-cart__amount {
  display: inline-block !important;
  font-size: 15px !important;
  line-height: 1.1 !important;
  font-weight: 500 !important;
}

@media (max-width: 991px) {
  .nixc-mobile-stickynav {
    display: grid;
  }
  .nixc-float-cart {
    display: none !important;
  }
  body {
    padding-bottom: 72px;
  }
}
.nixtheme-home-category-card__meta {
  margin: 0;
  color: #64748b;
}
.nixtheme-home-category-card__link a {
  text-decoration: none;
  color: #0f766e;
  font-weight: 600;
}

.nixtheme-home-latest {
  --nixtheme-loop-font: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --nixtheme-loop-title-size: 16px;
  --nixtheme-loop-title-lh: 1.4;
  --nixtheme-loop-title-weight: 500;
  --nixtheme-loop-price-size: 16px;
  --nixtheme-loop-price-lh: 1.3;
  --nixtheme-loop-price-weight: 600;
  --nixtheme-loop-btn-size: 12px;
  --nixtheme-loop-btn-lh: 1.2;
  --nixtheme-loop-btn-weight: 600;
  --nixtheme-loop-title-size-mobile: 16px;
  --nixtheme-loop-title-lh-mobile: 1.4;
  --nixtheme-loop-price-size-mobile: 15px;
  --nixtheme-loop-price-lh-mobile: 1.3;
  --nixtheme-loop-btn-size-mobile: 12px;
  --nixtheme-loop-btn-lh-mobile: 1.2;
  --nixtheme-loop-title-color: #0f172a;
  --nixtheme-loop-price-color: #0f172a;
  --nixtheme-loop-qty-size: 15px;
  --nixtheme-loop-qty-lh: 1.2;
  --nixtheme-loop-qty-weight: 600;
  --nixtheme-loop-qty-size-mobile: 15px;
  --nixtheme-loop-qty-lh-mobile: 1.2;
  --nixtheme-loop-qty-label-color: #334155;
  --nixtheme-loop-qty-value-color: #0f172a;
  --nixtheme-loop-qty-border-color: #d1d5db;
  --nixtheme-loop-qty-bg: #ffffff;
  --nixtheme-loop-qty-btn-bg: #ffffff;
  --nixtheme-loop-qty-btn-color: #0f172a;
  width: min(var(--nixtheme-body-width, var(--nixtheme-max-width)), 100%);
  margin: 0 auto;
  padding: var(--nixtheme-loop-padding-top, 0px) 0 var(--nixtheme-loop-padding-bottom, 24px);
  font-family: var(--nixtheme-loop-font), 'Roboto', system-ui, -apple-system, Segoe UI, Arial, sans-serif;
}
.nixtheme-home-latest__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}
.nixtheme-home-latest__header.is-boxed {
  padding: 18px 22px;
  border: 1px solid var(--nixtheme-loop-boxed-header-border, #f4c3d7);
  border-radius: 8px;
  background: linear-gradient(90deg, var(--nixtheme-loop-boxed-header-bg, #f8c1db) 0%, #fff9fc 100%);
}
.nixtheme-home-latest__header-copy {
  min-width: 0;
}
.nixtheme-home-latest__header.is-align-center {
  justify-content: center;
}
.nixtheme-home-latest__header.is-align-center .nixtheme-home-latest__header-copy {
  text-align: center;
  flex: 1 1 auto;
}
.nixtheme-home-latest__heading {
  margin: 0;
  color: #0f172a;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 30px;
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -0.4px;
}
.nixtheme-home-latest__eyebrow {
  color: #0f766e;
  text-transform: uppercase;
  letter-spacing: 0;
  margin: 0 0 6px;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 14px;
  line-height: 1.3;
  font-weight: 700;
}
.nixtheme-home-latest__description {
  max-width: 620px;
  margin: 9px 0 0;
  color: #64748b;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  font-weight: 500;
}
.nixtheme-home-latest__header.is-align-center .nixtheme-home-latest__description {
  margin-left: auto;
  margin-right: auto;
}
.nixtheme-home-latest__view-all {
  min-height: 44px;
  padding: 0 18px 0 20px;
  border-radius: 999px;
  border: 1px solid rgba(37, 99, 235, .22);
  background: #ffffff;
  color: #2563eb;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 0 0 auto;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
  box-shadow: none;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.nixtheme-home-latest__header.is-boxed .nixtheme-home-latest__heading {
  color: var(--nixtheme-loop-boxed-header-heading, #0f172a);
  font-size: 22px;
  line-height: 1.2;
}
.nixtheme-home-latest__header.is-boxed .nixtheme-home-latest__eyebrow {
  margin-bottom: 0;
  color: var(--nixtheme-loop-boxed-header-heading, #0f172a);
  text-transform: none;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 700;
}
.nixtheme-home-latest__header.is-boxed .nixtheme-home-latest__description {
  margin-top: 8px;
  color: var(--nixtheme-loop-boxed-header-heading, #0f172a);
  font-size: 14px;
  line-height: 1.5;
}
.nixtheme-home-latest__header.is-boxed .nixtheme-home-latest__view-all {
  min-height: 42px;
  padding: 0 28px;
  border: 0;
  background: var(--nixc-float-cart-top-bg, #d63384);
  color: #ffffff;
  box-shadow: none;
}
.nixtheme-home-latest__header.is-boxed .nixtheme-home-latest__view-all:hover,
.nixtheme-home-latest__header.is-boxed .nixtheme-home-latest__view-all:focus {
  background: var(--nixc-float-cart-top-bg, #c42373);
  color: #ffffff;
  border-color: transparent;
}
.nixtheme-home-latest__view-all:hover,
.nixtheme-home-latest__view-all:focus {
  color: #ffffff;
  background: #2563eb;
  border-color: #2563eb;
  transform: translateY(-1px);
  box-shadow: none;
}
.nixtheme-home-latest__view-all svg {
  display: block;
  width: 18px;
  height: 18px;
}
.nixtheme-home-latest__view-all-text--mobile {
  display: none;
}
.nixtheme-home-latest__grid {
  display: grid;
  grid-template-columns: repeat(var(--nixtheme-loop-grid-columns-desktop, 3), minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}
.nixtheme-home-latest--wide-media .nixtheme-home-latest__grid {
  grid-template-columns: repeat(var(--nixtheme-loop-grid-columns-desktop, 2), minmax(0, 1fr));
}
.nixtheme-home-latest--list .nixtheme-home-latest__grid,
.nixtheme-home-latest--loop4 .nixtheme-home-latest__grid {
  grid-template-columns: repeat(var(--nixtheme-loop-grid-columns-desktop, 4), minmax(0, 1fr));
  gap: 18px;
}
.nixtheme-home-latest--loop5 .nixtheme-home-latest__grid {
  grid-template-columns: repeat(var(--nixtheme-loop-grid-columns-desktop, 4), minmax(0, 1fr));
  gap: 16px;
}
.nixtheme-home-latest--loop6 .nixtheme-home-latest__grid {
  grid-template-columns: repeat(var(--nixtheme-loop-grid-columns-desktop, 3), minmax(0, 1fr));
  gap: 18px;
}
.nixtheme-home-latest--loop8 .nixtheme-home-latest__grid {
  grid-template-columns: repeat(var(--nixtheme-loop-grid-columns-desktop, 5), minmax(0, 1fr));
  gap: 10px;
}
.nixtheme-home-latest--loop10 .nixtheme-home-latest__grid {
  grid-template-columns: repeat(var(--nixtheme-loop-grid-columns-desktop, 4), minmax(0, 1fr));
  gap: 18px;
}
.nixtheme-home-latest--loop11 .nixtheme-home-latest__grid {
  display: flex;
  grid-template-columns: none;
  gap: 16px;
  align-items: stretch;
  transition: transform .45s ease;
  will-change: transform;
}
.nixtheme-home-latest--loop11-static .nixtheme-home-latest__grid {
  display: grid;
  grid-template-columns: repeat(var(--nixtheme-loop-grid-columns-desktop, 3), minmax(0, 1fr));
  gap: var(--nixc-loop-gap, 16px);
  transition: none;
  will-change: auto;
}
.nixtheme-home-latest__loop11-shell {
  position: relative;
  display: block;
  container-type: inline-size;
  container-name: nixtheme-loop11;
}
.nixtheme-home-latest__loop11-viewport {
  overflow: hidden;
  width: 100%;
}
.nixtheme-home-latest__loop11-nav {
  position: absolute;
  top: calc((var(--nixtheme-loop-image-height) / 2) - 25px);
  z-index: 4;
  width: 46px;
  height: 50px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  color: #111111;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  line-height: 1;
  transition: opacity .2s ease, background .2s ease, border-color .2s ease;
}
.nixtheme-home-latest__loop11-nav--prev {
  left: 0;
}
.nixtheme-home-latest__loop11-nav--next {
  right: 0;
}
.nixtheme-home-latest__loop11-nav.is-disabled {
  opacity: .45;
  cursor: default;
}
.nixtheme-home-latest__loop11-nav:not(.is-disabled):hover {
  background: #fafafa;
  border-color: #d1d5db;
}
@media (max-width: 1024px) {
  .nixtheme-home-latest--loop11 .nixtheme-home-latest__grid {
    gap: 12px;
  }
  .nixtheme-home-latest--loop11 .nixtheme-home-latest__item {
    flex: 0 0 calc((100% - 36px) / 4);
    width: calc((100% - 36px) / 4);
    max-width: calc((100% - 36px) / 4);
  }
}
@media (max-width: 900px) {
  .nixtheme-home-latest {
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
    box-sizing: border-box;
  }
  .nixtheme-home-latest__header {
    align-items: flex-start;
  }
  .nixtheme-home-latest__heading {
    font-size: 26px;
  }
  .nixtheme-home-latest__description {
    font-size: 15px;
  }
  .nixtheme-home-latest__grid {
    grid-template-columns: repeat(var(--nixtheme-loop-grid-columns-mobile, 2), minmax(0, 1fr));
  }
  .nixtheme-home-latest--wide-media .nixtheme-home-latest__grid {
    grid-template-columns: repeat(var(--nixtheme-loop-grid-columns-mobile, 1), minmax(0, 1fr));
  }
  .nixtheme-home-latest--list .nixtheme-home-latest__grid,
  .nixtheme-home-latest--loop4 .nixtheme-home-latest__grid {
    grid-template-columns: repeat(var(--nixtheme-loop-grid-columns-mobile, 2), minmax(0, 1fr));
  }
  .nixtheme-home-latest--loop5 .nixtheme-home-latest__grid {
    grid-template-columns: repeat(var(--nixtheme-loop-grid-columns-mobile, 2), minmax(0, 1fr));
  }
  .nixtheme-home-latest--loop6 .nixtheme-home-latest__grid {
    grid-template-columns: repeat(var(--nixtheme-loop-grid-columns-mobile, 2), minmax(0, 1fr));
  }
  .nixtheme-home-latest--loop8 .nixtheme-home-latest__grid {
    grid-template-columns: repeat(var(--nixtheme-loop-grid-columns-mobile, 2), minmax(0, 1fr));
    gap: 12px;
  }
  .nixtheme-home-latest--loop10 .nixtheme-home-latest__grid {
    grid-template-columns: repeat(var(--nixtheme-loop-grid-columns-mobile, 2), minmax(0, 1fr));
    gap: 10px;
  }
  .nixtheme-home-latest--loop11 .nixtheme-home-latest__grid {
    gap: 12px;
  }
  .nixtheme-home-latest--loop11-static .nixtheme-home-latest__grid {
    grid-template-columns: repeat(var(--nixtheme-loop-grid-columns-mobile, 2), minmax(0, 1fr));
  }
  .nixtheme-home-latest__loop11-nav {
    top: calc((var(--nixtheme-loop-image-height-mobile) / 2) - 22px);
  }
}
@media (max-width: 767px) {
  .nixtheme-home-latest--loop11 .nixtheme-home-latest__grid {
    gap: 12px;
  }
  .nixtheme-home-latest--loop11 .nixtheme-home-latest__item {
    flex: 0 0 calc((100% - (var(--nixtheme-loop-grid-columns-mobile, 2) - 1) * 12px) / var(--nixtheme-loop-grid-columns-mobile, 2));
    width: calc((100% - (var(--nixtheme-loop-grid-columns-mobile, 2) - 1) * 12px) / var(--nixtheme-loop-grid-columns-mobile, 2));
    max-width: calc((100% - (var(--nixtheme-loop-grid-columns-mobile, 2) - 1) * 12px) / var(--nixtheme-loop-grid-columns-mobile, 2));
  }
}
@container nixtheme-loop11 (max-width: 1024px) {
  .nixtheme-home-latest--loop11 .nixtheme-home-latest__grid {
    gap: 12px;
  }
  .nixtheme-home-latest--loop11 .nixtheme-home-latest__item {
    flex: 0 0 calc((100% - 36px) / 4);
    width: calc((100% - 36px) / 4);
    max-width: calc((100% - 36px) / 4);
  }
}
@container nixtheme-loop11 (max-width: 767px) {
  .nixtheme-home-latest--loop11 .nixtheme-home-latest__grid {
    gap: 12px;
  }
  .nixtheme-home-latest--loop11 .nixtheme-home-latest__item {
    flex: 0 0 calc((100% - (var(--nixtheme-loop-grid-columns-mobile, 2) - 1) * 12px) / var(--nixtheme-loop-grid-columns-mobile, 2));
    width: calc((100% - (var(--nixtheme-loop-grid-columns-mobile, 2) - 1) * 12px) / var(--nixtheme-loop-grid-columns-mobile, 2));
    max-width: calc((100% - (var(--nixtheme-loop-grid-columns-mobile, 2) - 1) * 12px) / var(--nixtheme-loop-grid-columns-mobile, 2));
  }
  .nixtheme-home-latest__loop11-nav {
    top: calc((var(--nixtheme-loop-image-height-mobile) / 2) - 22px);
  }
}
@media (max-width: 560px) {
  .nixtheme-home-latest__header {
    flex-direction: column;
    gap: 14px;
  }
  .nixtheme-home-latest__header.is-boxed {
    flex-direction: row;
    align-items: center;
    gap: 12px;
    padding: 16px 14px;
  }
  .nixtheme-home-latest__header-copy,
  .nixtheme-home-latest__header.is-align-center .nixtheme-home-latest__header-copy {
    width: 100%;
  }
  .nixtheme-home-latest__heading {
    font-size: 24px;
    line-height: 1.18;
  }
  .nixtheme-home-latest__header.is-boxed .nixtheme-home-latest__heading,
  .nixtheme-home-latest__header.is-boxed .nixtheme-home-latest__eyebrow {
    font-size: 16px;
    line-height: 1.25;
  }
  .nixtheme-home-latest__view-all {
    min-height: 40px;
    padding: 0 16px;
    font-size: 13px;
  }
  .nixtheme-home-latest__header.is-boxed .nixtheme-home-latest__view-all {
    min-height: 40px;
    padding: 0 18px;
    font-size: 13px;
  }
  .nixtheme-home-latest__view-all {
    gap: 0;
  }
  .nixtheme-home-latest__view-all-text--desktop,
  .nixtheme-home-latest__view-all svg {
    display: none;
  }
  .nixtheme-home-latest__view-all-text--mobile {
    display: inline;
  }
  .nixtheme-home-latest__grid {
    grid-template-columns: repeat(var(--nixtheme-loop-grid-columns-mobile, 1), minmax(0, 1fr));
  }
  .nixtheme-home-latest--list .nixtheme-home-latest__grid,
  .nixtheme-home-latest--loop4 .nixtheme-home-latest__grid {
    grid-template-columns: repeat(var(--nixtheme-loop-grid-columns-mobile, 1), minmax(0, 1fr));
  }
  .nixtheme-home-latest--loop5 .nixtheme-home-latest__grid {
    grid-template-columns: repeat(var(--nixtheme-loop-grid-columns-mobile, 1), minmax(0, 1fr));
  }
  .nixtheme-home-latest--loop6 .nixtheme-home-latest__grid {
    grid-template-columns: repeat(var(--nixtheme-loop-grid-columns-mobile, 1), minmax(0, 1fr));
  }
  .nixtheme-home-latest--loop8 .nixtheme-home-latest__grid {
    grid-template-columns: repeat(var(--nixtheme-loop-grid-columns-mobile, 1), minmax(0, 1fr));
  }
  .nixtheme-home-latest--loop10 .nixtheme-home-latest__grid {
    grid-template-columns: repeat(var(--nixtheme-loop-grid-columns-mobile, 1), minmax(0, 1fr));
  }
  .nixtheme-home-latest__loop11-nav {
    width: 38px;
    height: 44px;
    font-size: 24px;
    top: calc((var(--nixtheme-loop-image-height-mobile) / 2) - 22px);
  }
  .nixtheme-home-latest__loop11-nav--prev {
    left: 0;
  }
  .nixtheme-home-latest__loop11-nav--next {
    right: 0;
  }
}
.nixtheme-home-latest__item {
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 18px;
  background: #fff;
  display: flex;
  flex-direction: column;
  min-height: 140px;
  transition: box-shadow 180ms ease, transform 180ms ease, border-color 180ms ease;
}
.nixtheme-home-latest__item:hover {
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.10);
  border-color: rgba(148, 163, 184, 0.55);
  transform: translateY(-2px);
}
.nixtheme-home-latest--wide-media .nixtheme-home-latest__item {
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
}
.nixtheme-home-latest--wide-media .nixtheme-home-latest__item:hover {
  box-shadow: none;
  border-color: transparent;
  transform: none;
}
.nixtheme-home-latest--wide-media .nixtheme-home-latest__buttons {
  display: none;
}
.nixtheme-home-latest--list .nixtheme-home-latest__item,
.nixtheme-home-latest--loop4 .nixtheme-home-latest__item {
  border-radius: 18px;
  padding: 14px;
  position: relative;
  overflow: hidden;
  border-color: rgba(148, 163, 184, 0.35);
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.06);
  background: #fff;
}
.nixtheme-home-latest--loop5 .nixtheme-home-latest__item {
  border-radius: 16px;
  padding: 12px;
  background: #f7f7f7;
  border-color: #e3e3e3;
  box-shadow: none;
}
.nixtheme-home-latest--loop6 .nixtheme-home-latest__item {
  border: 1px solid #d9dee8;
  border-radius: 8px;
  padding: 0 0 14px;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.nixtheme-home-latest--loop8 .nixtheme-home-latest__item {
  border: 1px solid #f1f2f4;
  border-radius: 10px;
  padding: 0 0 14px;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
  overflow: hidden;
}
.nixtheme-home-latest--loop10 .nixtheme-home-latest__item {
  border: 0;
  border-radius: 18px;
  padding: 18px;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.10);
  overflow: hidden;
}
.nixtheme-home-latest--loop11 .nixtheme-home-latest__item {
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
  min-height: 0;
  flex: 0 0 calc((100% - (var(--nixtheme-loop-grid-columns-desktop, 5) - 1) * 16px) / var(--nixtheme-loop-grid-columns-desktop, 5));
  width: calc((100% - (var(--nixtheme-loop-grid-columns-desktop, 5) - 1) * 16px) / var(--nixtheme-loop-grid-columns-desktop, 5));
  max-width: calc((100% - (var(--nixtheme-loop-grid-columns-desktop, 5) - 1) * 16px) / var(--nixtheme-loop-grid-columns-desktop, 5));
}
.nixtheme-home-latest--loop11-static .nixtheme-home-latest__item {
  flex: initial;
  width: auto;
  max-width: none;
}
.nixtheme-home-latest__loop11-shell[data-columns-current="2"] .nixtheme-home-latest__item {
  flex: 0 0 calc((100% - 12px) / 2);
  width: calc((100% - 12px) / 2);
  max-width: calc((100% - 12px) / 2);
}
.nixtheme-home-latest__loop11-shell[data-columns-current="4"] .nixtheme-home-latest__item {
  flex: 0 0 calc((100% - 36px) / 4);
  width: calc((100% - 36px) / 4);
  max-width: calc((100% - 36px) / 4);
}
.nixtheme-home-latest__loop11-shell[data-columns-current="5"] .nixtheme-home-latest__item {
  flex: 0 0 calc((100% - 64px) / 5);
  width: calc((100% - 64px) / 5);
  max-width: calc((100% - 64px) / 5);
}
.nixtheme-home-latest--loop6 .nixtheme-home-latest__item:hover .nixtheme-home-latest__image img {
  transform: none;
}
.nixtheme-home-latest--loop6 .nixtheme-home-latest__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
  border-color: #cfd7e6;
}
.nixtheme-home-latest--loop8 .nixtheme-home-latest__item:hover {
  transform: none;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.07);
  border-color: #eceef2;
}
.nixtheme-home-latest--loop10 .nixtheme-home-latest__item:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.14);
  border-color: transparent;
}
.nixtheme-home-latest--loop11 .nixtheme-home-latest__item:hover {
  transform: none;
  box-shadow: none;
  border-color: transparent;
}
.nixtheme-home-latest--list .nixtheme-home-latest__item::after,
.nixtheme-home-latest--loop4 .nixtheme-home-latest__item::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 44%;
  background:
    radial-gradient(rgba(255, 122, 0, 0.12) 1px, transparent 1.5px) 0 0/22px 22px,
    linear-gradient(to top, rgba(255, 247, 237, 0.95), rgba(255, 255, 255, 0));
  pointer-events: none;
  z-index: 0;
}
.nixtheme-home-latest--list .nixtheme-home-latest__item > *,
.nixtheme-home-latest--loop4 .nixtheme-home-latest__item > * {
  position: relative;
  z-index: 1;
}
.nixtheme-home-latest--loop5 .nixtheme-home-latest__item > * {
  position: relative;
  z-index: 1;
}
.nixtheme-home-latest--loop6 .nixtheme-home-latest__item > * {
  position: relative;
  z-index: 1;
}
.nixtheme-home-latest--loop8 .nixtheme-home-latest__item > * {
  position: relative;
  z-index: 1;
}
.nixtheme-home-latest--loop10 .nixtheme-home-latest__item > * {
  position: relative;
  z-index: 1;
}
.nixtheme-home-latest--loop11 .nixtheme-home-latest__item > * {
  position: relative;
  z-index: 1;
}
.nixtheme-home-latest__item h3 {
  margin: 0 0 18px;
  font-family: inherit;
  font-size: var(--nixtheme-loop-title-size);
  line-height: var(--nixtheme-loop-title-lh);
  font-weight: var(--nixtheme-loop-title-weight);
  letter-spacing: 0;
  color: var(--nixtheme-loop-title-color);
}
.nixtheme-home-latest__item h3 a {
  text-decoration: none;
  color: inherit;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.nixtheme-home-latest--grid-card .nixtheme-home-latest__item h3 a {
  display: block;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.nixtheme-home-latest__meta {
  color: #64748b;
  font-size: 13px;
}
.nixtheme-home-latest__image {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 12px;
  background: #f1f5f9;
  position: relative;
}
.nixtheme-home-latest__image-link {
  position: absolute;
  inset: 0;
  z-index: 3;
}
.nixtheme-home-latest__image img {
  transition: transform 1200ms ease;
  will-change: transform;
  position: relative;
  z-index: 1;
}
.nixtheme-home-latest__item:hover .nixtheme-home-latest__image img {
  transform: scale(1.04);
}
.nixtheme-home-latest--list .nixtheme-home-latest__image,
.nixtheme-home-latest--loop4 .nixtheme-home-latest__image {
  border-radius: 16px;
  background: #fff7ed;
}
.nixtheme-home-latest--loop5 .nixtheme-home-latest__image {
  border-radius: 12px;
  background: #ededed;
  padding: 7px;
}
.nixtheme-home-latest--loop6 .nixtheme-home-latest__image {
  border-radius: 0;
  background: #ffffff;
  padding: 0;
  margin-bottom: 0;
  border: 0;
  border-bottom: 1px solid #eef2f7;
}
.nixtheme-home-latest--loop8 .nixtheme-home-latest__image {
  border-radius: 0;
  background: #f4f4f4;
  margin-bottom: 14px;
}
.nixtheme-home-latest--loop10 .nixtheme-home-latest__image {
  border-radius: 14px;
  background: #f3f4f6;
  margin-bottom: 10px;
  padding: 0;
}
.nixtheme-home-latest--loop11 .nixtheme-home-latest__image {
  border-radius: 0;
  background: #f5f5f5;
  margin-bottom: 14px;
}
.nixtheme-home-latest__image img {
  width: 100%;
  display: block;
  object-fit: cover;
  height: 300px;
}
.nixtheme-home-latest--list .nixtheme-home-latest__image img,
.nixtheme-home-latest--loop4 .nixtheme-home-latest__image img {
  height: 220px;
}
.nixtheme-home-latest--loop5 .nixtheme-home-latest__image img {
  height: 260px;
  border-radius: 10px;
}
.nixtheme-home-latest--loop6 .nixtheme-home-latest__image img {
  border-radius: 0;
  object-fit: contain;
}
.nixtheme-home-latest--loop8 .nixtheme-home-latest__image img {
  height: 350px;
  border-radius: 0;
}
.nixtheme-home-latest--loop10 .nixtheme-home-latest__image img {
  border-radius: 14px;
}
.nixtheme-home-latest--loop11 .nixtheme-home-latest__image img {
  border-radius: 0;
}
.nixtheme-home-latest--loop10 .nixtheme-home-latest__badge,
.nixtheme-home-latest--loop10 .nixc-loop-badge,
.nixtheme-home-latest--loop10 .nixc-product-badge {
  display: none !important;
}
.nixtheme-home-latest__image-hover {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: block;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 900ms ease, transform 1400ms ease;
  pointer-events: none;
}
.nixtheme-home-latest__item:hover .nixtheme-home-latest__image-hover {
  opacity: 1;
  transform: scale(1.06);
}
.nixtheme-home-latest__badge {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  background: #e11d48;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 999px;
  box-shadow: 0 10px 18px rgba(225, 29, 72, 0.25);
}
.nixtheme-home-latest--loop5 .nixtheme-home-latest__badge {
  left: 10px;
  right: auto;
  top: 10px;
  box-shadow: none;
}
.nixtheme-home-latest__badge--discount {
  background: #e8505b;
}
.nixtheme-home-latest__badge--new {
  background: #43a047;
}
.nixtheme-home-latest__save-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.96);
  color: #374151;
  font: 500 12px/1 "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  padding: 6px 10px;
  border-radius: 999px;
  box-shadow: 0 6px 14px rgba(15, 23, 42, 0.08);
}
.nixtheme-home-latest--loop6 .nixtheme-home-latest__save-badge {
  top: 12px;
  left: 0;
  z-index: 4;
  background: linear-gradient(135deg, #ff6a2a, #f4471c);
  color: #ffffff;
  font: 700 12px/1 "Inter", "Noto Sans Bengali", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  padding: 6px 12px 6px 10px;
  border-radius: 0 999px 999px 0;
  box-shadow: none;
}
.nixtheme-home-latest__price {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 12px;
}
.nixtheme-home-latest__price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}
.nixtheme-home-latest__price-current {
  font-weight: var(--nixtheme-loop-price-weight);
  font-size: var(--nixtheme-loop-price-size);
  line-height: var(--nixtheme-loop-price-lh);
  color: var(--nixtheme-loop-price-color);
}
.nixtheme-home-latest--list .nixtheme-home-latest__price-current,
.nixtheme-home-latest--loop4 .nixtheme-home-latest__price-current {
  color: #ff7a00;
}
.nixtheme-home-latest--loop5 .nixtheme-home-latest__price-current {
  color: #e8505b;
}
.nixtheme-home-latest--loop5 .nixtheme-home-latest__price-current .nixtheme-price-part,
.nixtheme-home-latest--loop5 .nixtheme-home-latest__price-old .nixtheme-price-part {
  display: inline-flex;
  align-items: baseline;
  gap: 1px;
}
.nixtheme-home-latest--loop5 .nixtheme-home-latest__price-current .nixtheme-price-currency {
  display: inline-block;
  font-size: 14px !important;
  line-height: 1 !important;
  font-weight: 900 !important;
  transform: scale(1.16) translateY(-1px);
  transform-origin: center;
  margin-right: 1px;
}
.nixtheme-home-latest--loop5 .nixtheme-home-latest__price-current .nixtheme-price-amount {
  display: inline-block;
}
.nixtheme-home-latest--loop6 .nixtheme-home-latest__price-current {
  color: #111827;
  font-weight: 500;
}
.nixtheme-home-latest__price-old {
  font-size: 13px;
  color: #94a3b8;
  text-decoration: line-through;
}
.nixtheme-home-latest--list .nixtheme-home-latest__price-old,
.nixtheme-home-latest--loop4 .nixtheme-home-latest__price-old {
  color: rgba(15, 23, 42, 0.45);
}
.nixtheme-home-latest--loop5 .nixtheme-home-latest__price-old {
  color: #9ca3af;
}
.nixtheme-home-latest--loop5 .nixtheme-home-latest__price-old .nixtheme-price-currency {
  display: inline-block;
  font-size: 12px !important;
  line-height: 1 !important;
  font-weight: 800 !important;
  transform: scale(1.12) translateY(0px);
  transform-origin: center;
  margin-right: 1px;
}
.nixtheme-home-latest--loop6 .nixtheme-home-latest__price-old {
  color: #9ca3af;
}
.nixtheme-home-latest--loop8 .nixtheme-home-latest__price {
  padding: 0 14px;
  margin-bottom: 14px;
}
.nixtheme-home-latest--loop8 .nixtheme-home-latest__price-row {
  justify-content: center;
  gap: 8px;
}
.nixtheme-home-latest--loop8 .nixtheme-home-latest__price-current {
  color: var(--nixtheme-loop-price-color);
  font-size: var(--nixtheme-loop-price-size);
  line-height: var(--nixtheme-loop-price-lh);
  font-weight: 700;
  font-family: "Inter", "Noto Sans Bengali", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.nixtheme-home-latest--loop8 .nixtheme-home-latest__price-old {
  color: #9ca3af;
  font-size: 13px;
  font-family: "Inter", "Noto Sans Bengali", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.nixtheme-home-latest__button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 12px;
  border-radius: 50px;
  background: #d50000;
  color: #fff;
  text-decoration: none;
  font-weight: var(--nixtheme-loop-btn-weight);
  font-size: var(--nixtheme-loop-btn-size);
  line-height: var(--nixtheme-loop-btn-lh);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  text-align: center;
  margin-top: auto;
  gap: 8px;
}
.nixtheme-home-latest__button:hover {
  background: #c40000;
  color: #fff;
}
.nixtheme-home-latest--list .nixtheme-home-latest__button,
.nixtheme-home-latest--loop4 .nixtheme-home-latest__button {
  background: #ff7a00;
}
.nixtheme-home-latest--list .nixtheme-home-latest__button:hover,
.nixtheme-home-latest--loop4 .nixtheme-home-latest__button:hover {
  background: #f97316;
}
.nixtheme-home-latest__button--loop8 {
  min-height: 42px;
  border-radius: 4px;
  background: #161c2b;
  color: #ffffff;
  max-width: none;
  width: 100%;
  font-size: var(--nixtheme-loop-btn-size);
  line-height: var(--nixtheme-loop-btn-lh);
  font-weight: 700;
}
.nixtheme-home-latest__button--loop8:hover {
  background: #0f1420;
}

.nixtheme-home-latest--loop4 .nixtheme-home-latest__cta-row {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 10px;
  border: 1px solid rgba(148, 163, 184, 0.158);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(6px);
}

.nixtheme-home-latest--loop4 .nixtheme-home-latest__cta-price {
  min-width: 0;
}

.nixtheme-home-latest--loop4 .nixtheme-home-latest__buttons {
  width: auto;
  margin-left: auto;
  justify-content: flex-end;
  flex: 0 0 auto;
}

.nixtheme-home-latest--loop4 .nixtheme-home-latest__buttons .nixtheme-home-latest__button {
  flex: 0 0 130px;
  width: 130px;
  max-width: 130px;
}

.nixtheme-home-latest--loop4 .nixtheme-home-latest__price-row {
  flex-wrap: nowrap;
  gap: 8px;
}

@media (max-width: 560px) {
  .nixtheme-home-latest--loop4 .nixtheme-home-latest__price-row {
    flex-wrap: wrap;
  }

  .nixtheme-home-latest--loop4 .nixtheme-home-latest__buttons .nixtheme-home-latest__button {
    flex-basis: 130px;
    width: 130px;
    max-width: 130px;
  }
}

.nixtheme-home-latest__button--compact {
  width: auto;
  max-width: none;
  margin-top: 0;
  padding: 8px 10px;
  border-radius: 12px;
  flex-shrink: 0;
  white-space: nowrap;
  font-size: var(--nixtheme-loop-btn-size);
  line-height: var(--nixtheme-loop-btn-lh);
}

.nixtheme-home-latest__button--add {
  margin-top: 8px;
}

.nixtheme-home-latest__button--compact.nixtheme-home-latest__button--add {
  margin-top: 0;
}

.nixtheme-home-latest__buttons {
  display: flex;
  gap: 5px;
  width: 100%;
}

.nixtheme-home-latest__buttons .nixtheme-home-latest__button {
  flex: 1 1 0;
  width: auto;
  margin-top: 0;
}

@media (max-width: 560px) {
  .nixtheme-home-latest__item h3 {
    font-size: var(--nixtheme-loop-title-size-mobile);
    line-height: var(--nixtheme-loop-title-lh-mobile);
  }

  .nixtheme-home-latest__price-current {
    font-size: var(--nixtheme-loop-price-size-mobile);
    line-height: var(--nixtheme-loop-price-lh-mobile);
  }

  .nixtheme-home-latest__button,
  .nixtheme-home-latest__button--compact {
    font-size: var(--nixtheme-loop-btn-size-mobile);
    line-height: var(--nixtheme-loop-btn-lh-mobile);
  }
}
.nixtheme-home-latest__btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: inherit;
}
.nixtheme-home-latest--loop5 .nixtheme-home-latest__title h3 {
  margin-bottom: 8px;
}
.nixtheme-home-latest--loop5 .nixtheme-home-latest__title h3 a {
  text-underline-offset: 2px;
}
.nixtheme-home-latest--loop5 .nixtheme-home-latest__rating {
  margin: 2px 0 1px;
  color: #f4b63f;
  letter-spacing: 1px;
  font-size: 17px;
  line-height: 1;
}
.nixtheme-home-latest__quick-actions {
  position: absolute;
  top: 14px;
  right: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 4;
}
.nixtheme-home-latest__quick-actions a,
.nixtheme-home-latest__quick-actions button {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: #ffffffd9;
  border: 1px solid #e5e7eb;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #1f2937;
  font-size: 16px;
  padding: 0;
  cursor: pointer;
  appearance: none;
}
.nixtheme-home-latest__quick-actions a.is-active,
.nixtheme-home-latest__quick-actions button.is-active {
  background: #fff1f2;
  border-color: #f9a8d4;
  color: #e11d48;
}
.nixtheme-home-latest__quick-actions [data-nixtheme-loop-quick-view] {
  font-size: 0;
}
.nixtheme-home-latest__quick-actions [data-nixtheme-loop-quick-view] svg {
  width: 16px;
  height: 16px;
}
.nixtheme-loop-quick-view {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.nixtheme-loop-quick-view.is-open {
  display: flex;
}
.nixtheme-loop-quick-view__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.58);
}
.nixtheme-loop-quick-view__dialog {
  position: relative;
  z-index: 1;
  width: min(980px, 100%);
  max-height: min(88vh, 900px);
  overflow-x: hidden;
  overflow-y: auto;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.24);
}
.nixtheme-loop-quick-view__close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 1px solid #dbe2ea;
  border-radius: 999px;
  background: #ffffff;
  color: #0f172a;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}
.nixtheme-loop-quick-view__content {
  display: grid;
  grid-template-columns: minmax(320px, 1.05fr) minmax(280px, 1fr);
  gap: 34px;
  padding: 36px;
}
.nixtheme-loop-quick-view__media {
  border: 1px solid #dce6f1;
  border-radius: 18px;
  background: #fff;
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 520px;
}
.nixtheme-loop-quick-view__media img {
  width: 100%;
  max-height: 480px;
  object-fit: contain;
}
.nixtheme-loop-quick-view__stock {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: #eef2ff;
  color: #2448ff;
  font-size: 13px;
  font-weight: 700;
}
.nixtheme-loop-quick-view__title {
  margin: 16px 0 10px;
  color: #0f172a;
  font-size: clamp(28px, 3vw, 36px);
  line-height: 1.12;
  font-weight: 800;
}
.nixtheme-loop-quick-view__rating {
  color: #94a3b8;
  font-size: 15px;
}
.nixtheme-loop-quick-view__price {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 20px 0;
}
.nixtheme-loop-quick-view__price-current {
  color: #1d4ed8;
  font-size: 32px;
  font-weight: 800;
  line-height: 1.1;
}
.nixtheme-loop-quick-view__price-old {
  color: #94a3b8;
  font-size: 18px;
  font-weight: 600;
  text-decoration: line-through;
}
.nixtheme-loop-quick-view__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: #ef4444;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}
.nixtheme-loop-quick-view__summary {
  margin: 0 0 18px;
  padding: 18px 22px;
  border: 1px solid #d8e2f0;
  border-radius: 12px;
  background: #fbfdff;
  color: #61738e;
  font-size: 15px;
  line-height: 1.7;
}
.nixtheme-loop-quick-view__summary p,
.nixtheme-loop-quick-view__summary ul {
  margin: 0;
}
.nixtheme-loop-quick-view__summary ul {
  padding-left: 22px;
}
.nixtheme-loop-quick-view__summary li + li {
  margin-top: 4px;
}
.nixtheme-loop-quick-view__actions {
  display: grid;
  gap: 12px;
  align-items: stretch;
}
.nixtheme-loop-quick-view__actions-row {
  display: grid;
  gap: 12px;
  align-items: stretch;
}
.nixtheme-loop-quick-view__actions-row--primary {
  grid-template-columns: 138px minmax(0, 1fr);
}
.nixtheme-loop-quick-view__actions-row--secondary {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}
.nixtheme-loop-quick-view__actions-row--secondary.is-single {
  grid-template-columns: 1fr;
}
.nixtheme-loop-quick-view__quantity {
  margin: 0;
  min-height: 54px;
  border-color: #d5dfec;
  border-radius: 12px;
  overflow: hidden;
}
.nixtheme-loop-quick-view__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  border-radius: 12px;
  text-decoration: none;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}
.nixtheme-loop-quick-view__btn:hover,
.nixtheme-loop-quick-view__btn:focus,
.nixtheme-loop-quick-view__btn:active {
  color: #fff;
  text-decoration: none;
}
.nixtheme-loop-quick-view__btn--add {
  background: #2448ff;
  color: #fff;
}
.nixtheme-loop-quick-view__btn--buy {
  background: #172036;
  color: #fff;
}
.nixtheme-loop-quick-view__btn--whatsapp {
  background: #31c553;
  color: #fff;
}
@media (max-width: 767px) {
  .nixtheme-loop-quick-view {
    padding: 12px;
    align-items: center;
  }
  .nixtheme-loop-quick-view__dialog {
    max-height: 84vh;
    border-radius: 18px;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
  }
  .nixtheme-loop-quick-view__content {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 18px;
  }
  .nixtheme-loop-quick-view__media {
    min-height: 210px;
    padding: 10px;
    border-radius: 14px;
  }
  .nixtheme-loop-quick-view__media img {
    max-height: 190px;
  }
  .nixtheme-loop-quick-view__stock {
    padding: 6px 12px;
    font-size: 12px;
  }
  .nixtheme-loop-quick-view__title {
    margin: 10px 0 6px;
    font-size: 22px;
    line-height: 1.16;
  }
  .nixtheme-loop-quick-view__rating {
    font-size: 13px;
  }
  .nixtheme-loop-quick-view__price-current {
    font-size: 24px;
  }
  .nixtheme-loop-quick-view__price {
    gap: 10px;
    margin: 12px 0;
  }
  .nixtheme-loop-quick-view__price-old {
    font-size: 16px;
  }
  .nixtheme-loop-quick-view__badge {
    padding: 5px 9px;
    font-size: 12px;
  }
  .nixtheme-loop-quick-view__summary {
    display: none;
  }
  .nixtheme-loop-quick-view__actions-row,
  .nixtheme-loop-quick-view__actions {
    gap: 10px;
  }
  .nixtheme-loop-quick-view__actions-row--primary {
    grid-template-columns: 112px minmax(0, 1fr);
  }
  .nixtheme-loop-quick-view__actions-row--secondary {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
  .nixtheme-loop-quick-view__actions-row--secondary.is-single {
    grid-template-columns: 1fr;
  }
  .nixtheme-loop-quick-view__quantity {
    min-height: 46px;
  }
  .nixtheme-loop-quick-view__btn {
    min-height: 48px;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 13px;
    font-weight: 500;
  }
  .nixtheme-loop-quick-view__close {
    top: 12px;
    right: 12px;
    width: 38px;
    height: 38px;
    font-size: 22px;
  }
}
.nixtheme-home-latest--digital-product .nixtheme-home-latest__grid {
  grid-template-columns: 1fr;
  gap: 18px;
}
.nixtheme-home-latest--digital-product .nixtheme-home-latest__item {
  display: grid;
  grid-template-columns: 148px minmax(240px, 1.6fr) minmax(110px, .72fr) minmax(150px, .82fr) 180px 180px;
  gap: 0;
  align-items: stretch;
  padding: 0;
  border: 1px solid #11111148;
  border-radius: 0;
  box-shadow: none;
  overflow: hidden;
}
.nixtheme-home-latest--digital-product .nixtheme-home-latest__item:hover {
  transform: none;
  box-shadow: none;
  border-color: #11111148;
}
.nixtheme-home-latest--digital-product .nixtheme-home-latest__digital-image-cell,
.nixtheme-home-latest--digital-product .nixtheme-home-latest__digital-title-cell,
.nixtheme-home-latest--digital-product .nixtheme-home-latest__digital-price-cell,
.nixtheme-home-latest--digital-product .nixtheme-home-latest__digital-quantity-cell,
.nixtheme-home-latest--digital-product .nixtheme-home-latest__digital-button-cell {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 10px 12px;
  border-right: 1px solid #1111111f;
  background: #fff;
}
.nixtheme-home-latest--digital-product .nixtheme-home-latest__digital-price-cell,
.nixtheme-home-latest--digital-product .nixtheme-home-latest__digital-quantity-cell,
.nixtheme-home-latest--digital-product .nixtheme-home-latest__digital-button-cell {
  align-items: center;
  text-align: center;
}
.nixtheme-home-latest--digital-product .nixtheme-home-latest__digital-button-cell:last-child {
  border-right: 0;
}
.nixtheme-home-latest--digital-product .nixtheme-home-latest__digital-image-cell {
  padding: 0;
}
.nixtheme-home-latest--digital-product .nixtheme-home-latest__image {
  margin: 0;
  border-radius: 0;
  height: 100%;
  background: #fff;
}
.nixtheme-home-latest--digital-product .nixtheme-home-latest__image img {
  height: 100%;
  min-height: 112px;
}
.nixtheme-home-latest--digital-product .nixtheme-home-latest__item:hover .nixtheme-home-latest__image img,
.nixtheme-home-latest--digital-product .nixtheme-home-latest__item:hover .nixtheme-home-latest__image-hover {
  transform: none;
}
.nixtheme-home-latest--digital-product .nixtheme-home-latest__image-hover {
  display: none;
}
.nixtheme-home-latest__digital-label,
.nixtheme-home-latest__digital-mobile-label {
  display: block;
  margin-bottom: 12px;
  font-size: 12px;
  line-height: 1.2;
  color: var(--nixtheme-loop-qty-label-color);
  text-transform: lowercase;
}
.nixtheme-home-latest__digital-mobile-label {
  display: block;
}
.nixtheme-home-latest--digital-product .nixtheme-home-latest__title h3,
.nixtheme-home-latest--digital-product .nixtheme-home-latest__price {
  margin: 0;
}
.nixtheme-home-latest--digital-product .nixtheme-home-latest__title h3 a {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.nixtheme-home-latest--digital-product .nixtheme-home-latest__price-row {
  justify-content: center;
  gap: 6px;
}
.nixtheme-home-latest--digital-product .nixtheme-home-latest__price-current,
.nixtheme-home-latest--digital-product .nixtheme-home-latest__price-old {
  white-space: nowrap;
}
.nixtheme-home-latest__quantity {
  display: grid;
  grid-template-columns: 46px minmax(34px, 62px) 46px;
  align-items: stretch;
  min-height: 45px;
  margin: 0 auto;
  border: 1px solid #1111115b;
  background: var(--nixtheme-loop-qty-bg);
}
.nixtheme-home-latest__quantity-btn,
.nixtheme-home-latest__quantity-value {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--nixtheme-loop-qty-btn-bg);
  color: var(--nixtheme-loop-qty-btn-color);
  font-size: var(--nixtheme-loop-qty-size);
  line-height: var(--nixtheme-loop-qty-lh);
  font-weight: var(--nixtheme-loop-qty-weight);
  border: 0;
}
.nixtheme-home-latest__quantity-btn {
  cursor: pointer;
  padding: 0;
}
.nixtheme-home-latest__quantity-btn:first-child,
.nixtheme-home-latest__quantity-value {
  border-right: 1px solid #11111138;
}
.nixtheme-home-latest__quantity-value {
  background: var(--nixtheme-loop-qty-bg);
  color: #111111e1;
}
.nixtheme-home-latest__button--digital {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  min-height: 48px;
  border-radius: 5px;
  font-size: var(--nixtheme-loop-btn-size);
  line-height: var(--nixtheme-loop-btn-lh);
  font-weight: var(--nixtheme-loop-btn-weight);
  text-transform: capitalize;
  width: 100%;
  padding: 12px 10px;
  margin-top: 0;
}
.nixtheme-home-latest--digital-product .nixtheme-home-latest__digital-button-cell {
  justify-content: center;
  align-items: center;
  padding: 16px;
}
.nixtheme-wishlist-page {
  margin-top: 18px;
  padding: 28px;
  border: 1px solid #e5e7eb;
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.06);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.nixtheme-wishlist-page__hero {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: 24px;
  border-radius: 24px;
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: #fff;
}
.nixtheme-wishlist-page__eyebrow {
  margin: 0 0 8px;
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
}
.nixtheme-wishlist-page__title {
  margin: 0;
  font-size: 30px;
  line-height: 1.1;
  color: #fff;
}
.nixtheme-wishlist-page__copy {
  margin: 0;
  max-width: 680px;
  color: rgba(255,255,255,.8);
}
.nixtheme-wishlist-page__summary {
  min-width: 180px;
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
}
.nixtheme-wishlist-page__summary strong,
.nixtheme-wishlist-page__summary span {
  display: block;
}
.nixtheme-wishlist-page__summary strong {
  font-size: 24px;
}
.nixtheme-wishlist-page__summary span {
  margin-top: 6px;
  color: rgba(255,255,255,.72);
}
.nixtheme-wishlist-page__actions {
  display: flex;
  justify-content: flex-end;
  margin: 18px 0;
}
.nixtheme-wishlist-page__orderall {
  min-width: 220px;
  height: 52px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  background: #111827;
  color: #fff;
  font-weight: 700;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  cursor: pointer;
}
.nixtheme-wishlist-page__feedback {
  margin-bottom: 16px;
  padding: 12px 14px;
  border-radius: 14px;
  background: #ecfeff;
  border: 1px solid #a5f3fc;
  color: #155e75;
}
.nixtheme-wishlist-page__feedback.is-error {
  background: #fef2f2;
  border-color: #fecaca;
  color: #991b1b;
}
.nixtheme-wishlist-page__empty {
  padding: 28px;
  border-radius: 22px;
  border: 1px dashed #cbd5e1;
  text-align: center;
  background: #fff;
}
.nixtheme-wishlist-page__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.nixtheme-wishlist-card {
  display: flex;
  flex-direction: column;
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  background: #fff;
  overflow: hidden;
}
.nixtheme-wishlist-card__image {
  display: block;
  aspect-ratio: 1 / 1;
  background: #f8fafc;
  width: 100%;
  border: 0;
  padding: 0;
  cursor: pointer;
}
.nixtheme-wishlist-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.nixtheme-wishlist-card__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px;
}
.nixtheme-wishlist-card__title {
  margin: 0;
  font-size: 20px;
  line-height: 1.35;
}
.nixtheme-wishlist-card__title a,
.nixtheme-wishlist-card__title button {
  color: #0f172a;
  text-decoration: none;
  background: none;
  border: 0;
  padding: 0;
  font: inherit;
  cursor: pointer;
  text-align: left;
}
.nixtheme-wishlist-card__price {
  display: flex;
  gap: 8px;
  align-items: center;
  font-weight: 700;
}
.nixtheme-wishlist-card__price-old {
  color: #94a3b8;
  text-decoration: line-through;
  font-weight: 500;
}
.nixtheme-wishlist-card__actions {
  display: flex;
  gap: 10px;
  margin-top: auto;
}
.nixtheme-wishlist-card__button {
  flex: 1 1 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 14px;
  border: 1px solid #d1d5db;
  background: #fff;
  color: #0f172a;
  text-decoration: none;
  font-weight: 700;
  cursor: pointer;
}
.nixtheme-wishlist-card__button--primary {
  background: #111827;
  border-color: #111827;
  color: #fff;
}
.nixtheme-wishlist-card__button--remove {
  flex: 0 0 52px;
  padding: 0;
}
@media (max-width: 1100px) {
  .nixtheme-wishlist-page__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 700px) {
  .nixtheme-wishlist-page {
    padding: 16px;
    border-radius: 22px;
  }
  .nixtheme-wishlist-page__hero {
    padding: 18px;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
  }
  .nixtheme-wishlist-page__title {
    font-size: 26px;
  }
  .nixtheme-wishlist-page__summary {
    min-width: 150px;
    width: auto;
    padding: 12px 16px;
    border-radius: 16px;
    align-self: center;
    text-align: center;
  }
  .nixtheme-wishlist-page__summary strong {
    font-size: 18px;
  }
  .nixtheme-wishlist-page__summary span {
    margin-top: 4px;
  }
  .nixtheme-wishlist-page__actions {
    justify-content: stretch;
  }
  .nixtheme-wishlist-page__orderall {
    width: 100%;
    min-width: 0;
  }
  .nixtheme-wishlist-page__grid {
    grid-template-columns: 1fr;
  }
}
.nixtheme-home-latest__image-cta {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  min-height: 42px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: var(--nixtheme-loop-btn-size);
  line-height: var(--nixtheme-loop-btn-lh);
  font-weight: var(--nixtheme-loop-btn-weight);
  z-index: 3;
}
.nixtheme-home-latest--loop5 .nixtheme-home-latest__loop5-footer {
  margin-top: auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
}
.nixtheme-home-latest--loop5 .nixtheme-home-latest__loop5-footer .nixtheme-home-latest__price {
  margin-bottom: 0;
  min-width: 0;
  flex: 1 1 auto;
}
.nixtheme-home-latest--loop5 .nixtheme-home-latest__button--loop5 {
  width: auto;
  max-width: none;
  min-width: 96px;
  margin-top: 0;
  padding: 8px 14px;
  border-radius: 12px;
  flex: 0 0 auto;
  white-space: nowrap;
  font-size: 13px;
  line-height: 1.2;
}
.nixtheme-home-latest--loop10 .nixtheme-home-latest__title h3 {
  margin: 0 0 7px;
}
.nixtheme-home-latest--loop10 .nixtheme-home-latest__title h3 a {
  -webkit-line-clamp: 1;
}
.nixtheme-home-latest--loop11 .nixtheme-home-latest__title h3 {
  margin: 0 0 6px;
}
.nixtheme-home-latest--loop11 .nixtheme-home-latest__title h3 a {
  -webkit-line-clamp: 1;
  color: #171717;
}
.nixtheme-home-latest--loop11 .nixtheme-home-latest__price {
  margin-bottom: 0;
}
.nixtheme-home-latest--loop11 .nixtheme-home-latest__price-row {
  gap: 0;
}
.nixtheme-home-latest--loop11 .nixtheme-home-latest__price-current {
  color: #111111;
  font-weight: 500;
}
.nixtheme-home-latest--loop11 .nixtheme-home-latest__price-current .nixtheme-price-part {
  display: inline-flex;
  align-items: baseline;
  gap: 1px;
}
.nixtheme-home-latest--loop11 .nixtheme-home-latest__price-current .nixtheme-price-currency {
  display: inline-block;
  font-size: 12px !important;
  line-height: 1 !important;
  font-weight: 900 !important;
  transform: scale(1.16) translateY(-1px);
  transform-origin: center;
  margin-right: 1px;
}
.nixtheme-home-latest--loop11 .nixtheme-home-latest__price-current .nixtheme-price-amount {
  display: inline-block;
}
.nixtheme-home-latest--loop10 .nixtheme-home-latest__subtitle {
  margin: 0 0 24px;
  color: #747474;
  font-family: var(--nixtheme-loop-font);
  font-size: 15px;
  line-height: 1.25;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.nixtheme-home-latest--loop10 .nixtheme-home-latest__loop10-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: 0 0 24px;
}
.nixtheme-home-latest--loop10 .nixtheme-home-latest__price {
  margin: 0;
  min-width: 0;
}
.nixtheme-home-latest--loop10 .nixtheme-home-latest__price-current {
  letter-spacing: -0.03em;
}
.nixtheme-home-latest--loop10 .nixtheme-home-latest__stock-pill {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: #dcfce7;
  color: #07852d;
  font-family: var(--nixtheme-loop-font);
  font-size: 12px;
  line-height: 1;
  font-weight: 800;
  white-space: nowrap;
}
.nixtheme-home-latest--loop10 .nixtheme-home-latest__button--loop10 {
  width: 100%;
  min-height: 50px;
  margin-top: auto;
  border-radius: 12px;
  background-image: linear-gradient(135deg, rgba(108, 69, 239, .98), rgba(211, 44, 225, .98)) !important;
  box-shadow: 0 12px 28px rgba(139, 60, 246, .24);
}
@media (max-width: 767px) {
  .nixtheme-home-latest--loop10 .nixtheme-home-latest__item {
    padding: 14px;
    border-radius: 16px;
  }
  .nixtheme-home-latest--loop10 .nixtheme-home-latest__subtitle,
  .nixtheme-home-latest--loop10 .nixtheme-home-latest__loop10-meta {
    margin-bottom: 18px;
  }
  .nixtheme-home-latest--loop10 .nixtheme-home-latest__stock-pill {
    min-height: 28px;
    padding: 0 10px;
    font-size: 12px;
  }
  .nixtheme-home-latest--loop10 .nixtheme-home-latest__button--loop10 {
    min-height: 40px;
  }
}
@media (max-width: 767px) {
  .nixtheme-home-latest--loop5 .nixtheme-home-latest__loop5-footer {
    gap: 10px;
  }
  .nixtheme-home-latest--loop5 .nixtheme-home-latest__button--loop5 {
    min-width: 88px;
    padding: 7px 12px;
    font-size: 12px;
  }
}
.nixtheme-home-latest--loop6 .nixtheme-home-latest__buttons,
.nixtheme-home-latest--loop6 .nixtheme-home-latest__rating,
.nixtheme-home-latest--loop6 .nixtheme-home-latest__badge,
.nixtheme-home-latest--loop6 .nixtheme-home-latest__image-cta,
.nixtheme-home-latest--loop6 .nixtheme-home-latest__loop5-add {
  display: none !important;
}
.nixtheme-home-latest--loop6 .nixtheme-home-latest__buttons--loop6 {
  display: block !important;
}
.nixtheme-home-latest--loop8 .nixtheme-home-latest__rating,
.nixtheme-home-latest--loop8 .nixtheme-home-latest__badge,
.nixtheme-home-latest--loop8 .nixtheme-home-latest__image-cta,
.nixtheme-home-latest--loop8 .nixtheme-home-latest__loop5-add,
.nixtheme-home-latest--loop8 .nixtheme-home-latest__quick-actions,
.nixtheme-home-latest--loop8 .nixtheme-home-latest__hover-actions {
  display: none !important;
}
.nixtheme-home-latest--loop8 .nixtheme-home-latest__buttons {
  padding: 0 14px;
  box-sizing: border-box;
  margin-top: auto;
  flex-direction: column;
  gap: 8px;
}
.nixtheme-home-latest--loop8 .nixtheme-home-latest__title {
  padding: 0 14px;
}
.nixtheme-home-latest--loop8 .nixtheme-home-latest__title h3 {
  margin: 0 0 18px;
  text-align: center;
}
.nixtheme-home-latest--loop8 .nixtheme-home-latest__title h3 a {
  color: #20232d;
  text-decoration: none;
  text-align: center;
}
.nixtheme-home-latest--loop8 .nixtheme-home-latest__buttons .nixtheme-home-latest__button {
  flex: 0 0 auto;
}
.nixtheme-home-latest--loop8 .nixtheme-home-latest__button--loop8-add {
  border-radius: 4px;
  border: 1px solid currentColor;
}
.nixtheme-home-latest--loop8 .nixtheme-home-latest__item:hover .nixtheme-home-latest__image img {
  transform: none;
}
.nixtheme-home-latest--loop6 .nixtheme-home-latest__title h3 {
  margin: 14px 16px 10px;
  font-size: var(--nixtheme-loop-title-size) !important;
  line-height: var(--nixtheme-loop-title-lh) !important;
  font-weight: var(--nixtheme-loop-title-weight) !important;
  color: var(--nixtheme-loop-title-color) !important;
}
.nixtheme-home-latest--loop6 .nixtheme-home-latest__title h3 a {
  text-decoration: none;
  color: inherit;
  font-size: inherit !important;
  line-height: inherit !important;
  font-weight: inherit !important;
}
.nixtheme-home-latest--loop6 .nixtheme-home-latest__price {
  margin: 10px 16px 0;
  padding-top: 12px;
  border-top: 1px solid #edf1f6;
  margin-top: auto;
}
.nixtheme-home-latest--loop6 .nixtheme-home-latest__price-current {
  font-size: var(--nixtheme-loop-price-size) !important;
  line-height: var(--nixtheme-loop-price-lh) !important;
  font-weight: var(--nixtheme-loop-price-weight) !important;
  color: var(--nixtheme-loop-price-color) !important;
  font-family: var(--nixtheme-loop-font);
}
.nixtheme-home-latest--loop6 .nixtheme-home-latest__price-row {
  justify-content: center;
  gap: 8px;
}
.nixtheme-home-latest--loop6 .nixtheme-home-latest__quick-actions {
  top: 12px;
  right: 12px;
  gap: 8px;
  z-index: 4;
}
.nixtheme-home-latest--loop6 .nixtheme-home-latest__quick-actions a {
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid #e9eef5;
  color: #b9c1cf;
  font-size: 21px;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
}
.nixtheme-home-latest__summary--loop6 {
  margin: 12px 16px;
  min-height: 92px;
}
.nixtheme-home-latest__summary--loop6 ul {
  margin: 0;
  padding: 0 0 0 18px;
  color: #666b78;
  font: 500 13px/1.6 "Inter", "Noto Sans Bengali", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.nixtheme-home-latest__summary--loop6 li {
  margin: 0 0 4px;
}
.nixtheme-home-latest__summary--loop6 li:last-child {
  margin-bottom: 0;
}
.nixtheme-home-latest--loop6 .nixtheme-home-latest__buttons--loop6 {
  display: flex !important;
  flex-direction: column;
  width: 100%;
  padding: 0 16px;
  margin-top: 14px;
  box-sizing: border-box;
}
.nixtheme-home-latest--loop6 .nixtheme-home-latest__button--loop6 {
  display: flex;
  flex: 1 1 auto;
  min-height: 40px;
  width: 100%;
  max-width: none;
  border-radius: 5px;
  background: #f5f6fc;
  color: #000000;
  font-family: var(--nixtheme-loop-font);
  font-size: var(--nixtheme-loop-btn-size);
  line-height: var(--nixtheme-loop-btn-lh);
  font-weight: var(--nixtheme-loop-btn-weight);
  gap: 8px;
  padding: 11px 14px;
  transition: background .2s ease, color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.nixtheme-home-latest--loop6 .nixtheme-home-latest__button-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.nixtheme-home-latest--loop6 .nixtheme-home-latest__button--loop6:hover,
.nixtheme-home-latest--loop6 .nixtheme-home-latest__item:hover .nixtheme-home-latest__button--loop6 {
  background: #e10600 !important;
  color: #ffffff !important;
  border-color: #e10600 !important;
}
.nixtheme-cart-toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 100120;
  min-width: 220px;
  max-width: min(340px, calc(100vw - 28px));
  padding: 12px 14px 14px;
  border-radius: 14px;
  background: rgba(17, 24, 39, 0.96);
  color: #ffffff;
  font: 500 14px/1.35 "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.22);
  opacity: 0;
  transform: translateY(18px) scale(.96);
  transform-origin: bottom right;
  pointer-events: none;
  overflow: hidden;
}
.nixtheme-cart-toast__message {
  display: block;
  padding-right: 6px;
}
.nixtheme-cart-toast__progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, #34d399, #22c55e);
  transform: scaleX(1);
  transform-origin: left center;
}
.nixtheme-cart-toast.is-visible {
  animation: nixtheme-cart-toast-in .2s ease forwards;
}
.nixtheme-cart-toast.is-hiding {
  animation: nixtheme-cart-toast-out .32s ease forwards;
}
.nixtheme-cart-toast.is-progress .nixtheme-cart-toast__progress {
  animation: nixtheme-cart-toast-progress 3s linear forwards;
}
@keyframes nixtheme-cart-toast-in {
  from {
    opacity: 0;
    transform: translateY(18px) scale(.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes nixtheme-cart-toast-out {
  from {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  to {
    opacity: 0;
    transform: translateY(8px) scale(.9);
  }
}
@keyframes nixtheme-cart-toast-progress {
  from {
    transform: scaleX(1);
  }
  to {
    transform: scaleX(0);
  }
}
@media (max-width: 900px) {
  .nixtheme-home-latest--loop6 .nixtheme-home-latest__image img {
    height: auto;
  }
  .nixtheme-cart-toast {
    right: 14px;
    bottom: calc(78px + env(safe-area-inset-bottom));
    min-width: 0;
    width: calc(100vw - 28px);
    padding: 11px 12px 13px;
    font-size: 13px;
    border-radius: 12px;
  }
  .nixtheme-home-latest--loop6 .nixtheme-home-latest__title h3 {
    font-size: var(--nixtheme-loop-title-size-mobile) !important;
    line-height: var(--nixtheme-loop-title-lh-mobile) !important;
    font-weight: var(--nixtheme-loop-title-weight) !important;
  }
  .nixtheme-home-latest--loop6 .nixtheme-home-latest__price-current {
    font-size: var(--nixtheme-loop-price-size-mobile) !important;
    line-height: var(--nixtheme-loop-price-lh-mobile) !important;
    font-weight: var(--nixtheme-loop-price-weight) !important;
  }
  .nixtheme-home-latest--loop8 .nixtheme-home-latest__image img {
    height: 280px;
  }
  .nixtheme-home-latest--loop8 .nixtheme-home-latest__title h3 {
    font-size: var(--nixtheme-loop-title-size-mobile);
    line-height: var(--nixtheme-loop-title-lh-mobile);
  }
  .nixtheme-home-latest--loop8 .nixtheme-home-latest__price-current {
    font-size: var(--nixtheme-loop-price-size-mobile);
    line-height: var(--nixtheme-loop-price-lh-mobile);
  }
  .nixtheme-home-latest--digital-product .nixtheme-home-latest__item {
    grid-template-columns: 132px minmax(170px, 1.45fr) minmax(96px, .72fr) minmax(132px, .8fr) 138px 138px;
  }
  .nixtheme-home-latest__quantity-btn,
  .nixtheme-home-latest__quantity-value {
    font-size: var(--nixtheme-loop-qty-size-mobile);
    line-height: var(--nixtheme-loop-qty-lh-mobile);
  }
}
@media (max-width: 680px) {
  .nixtheme-home-latest--loop6 .nixtheme-home-latest__item {
    padding-bottom: 12px;
  }
  .nixtheme-home-latest--loop6 .nixtheme-home-latest__image {
    padding: 14px 14px 8px;
  }
  .nixtheme-home-latest__summary--loop6 {
    min-height: 0;
  }
  .nixtheme-home-latest--loop6 .nixtheme-home-latest__title h3,
  .nixtheme-home-latest--loop6 .nixtheme-home-latest__price,
  .nixtheme-home-latest--loop6 .nixtheme-home-latest__buttons--loop6,
  .nixtheme-home-latest__summary--loop6 {
    margin-left: 14px;
    margin-right: 14px;
  }
  .nixtheme-home-latest--loop6 .nixtheme-home-latest__buttons--loop6 {
    width: auto;
    padding-left: 0;
    padding-right: 0;
    box-sizing: border-box;
  }
  .nixtheme-home-latest--loop6 .nixtheme-home-latest__button--loop6 {
    width: 100%;
    margin: 0;
  }
  .nixtheme-home-latest--digital-product {
    --nixtheme-loop-qty-border-color: rgba(15, 23, 42, 0.05);
  }
  .nixtheme-home-latest--digital-product .nixtheme-home-latest__item {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 0;
  }
  .nixtheme-home-latest--digital-product .nixtheme-home-latest__digital-image-cell,
  .nixtheme-home-latest--digital-product .nixtheme-home-latest__digital-title-cell,
  .nixtheme-home-latest--digital-product .nixtheme-home-latest__digital-price-cell,
  .nixtheme-home-latest--digital-product .nixtheme-home-latest__digital-quantity-cell,
  .nixtheme-home-latest--digital-product .nixtheme-home-latest__digital-button-cell {
    border-right: 0;
    border-bottom: 1px solid #1111111f;
    padding: 8px 12px;
  }
  .nixtheme-home-latest--digital-product .nixtheme-home-latest__digital-title-cell {
    padding-top: 15px;
    padding-bottom: 13px;
  }
  .nixtheme-home-latest--digital-product .nixtheme-home-latest__digital-image-cell,
  .nixtheme-home-latest--digital-product .nixtheme-home-latest__digital-title-cell {
    grid-column: 1 / -1;
  }
  .nixtheme-home-latest--digital-product .nixtheme-home-latest__digital-title-cell .nixtheme-home-latest__title h3 a {
    display: block;
    -webkit-line-clamp: unset;
    -webkit-box-orient: unset;
    overflow: visible;
  }
  .nixtheme-home-latest--digital-product .nixtheme-home-latest__digital-price-cell {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    border-right: 0;
    border-top: 0;
    padding: 15px;
  }
  .nixtheme-home-latest--digital-product .nixtheme-home-latest__digital-price-cell::before {
    content: "Price:";
    font-size: 14px;
    line-height: 1.2;
    color: var(--nixtheme-loop-price-color);
  }
  .nixtheme-home-latest--digital-product .nixtheme-home-latest__digital-price-cell .nixtheme-home-latest__price,
  .nixtheme-home-latest--digital-product .nixtheme-home-latest__digital-price-cell .nixtheme-home-latest__price-row {
    width: auto;
    justify-content: flex-end;
  }
  .nixtheme-home-latest--digital-product .nixtheme-home-latest__digital-quantity-cell {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    text-align: left;
    border-top: 0;
  }
  .nixtheme-home-latest--digital-product .nixtheme-home-latest__digital-quantity-cell::before {
    content: "Quantity:";
    font-size: 14px;
    line-height: 1.2;
    color: var(--nixtheme-loop-price-color);
    flex: 0 0 auto;
  }
  .nixtheme-home-latest--digital-product .nixtheme-home-latest__digital-quantity-cell .nixtheme-home-latest__quantity {
    margin: 0 0 0 auto;
  }
  .nixtheme-home-latest--digital-product .nixtheme-home-latest__digital-button-cell--add {
    grid-column: 1;
    border-bottom: 0;
    border-right: 0;
  }
  .nixtheme-home-latest--digital-product .nixtheme-home-latest__digital-button-cell--buy {
    grid-column: 2;
    border-bottom: 0;
  }
  .nixtheme-home-latest--digital-product .nixtheme-home-latest__digital-button-cell:last-child {
    border-bottom: 0;
  }
  .nixtheme-home-latest--digital-product .nixtheme-home-latest__digital-image-cell {
    padding: 0;
  }
  .nixtheme-home-latest--digital-product .nixtheme-home-latest__image img {
    height: 240px;
    min-height: 240px;
  }
  .nixtheme-home-latest--digital-product .nixtheme-home-latest__digital-button-cell {
    padding: 10px 8px;
  }
  .nixtheme-home-latest__button--digital {
    min-height: 46px;
    border-radius: 5px;
  }
  .nixtheme-home-latest__quantity {
    grid-template-columns: 34px minmax(42px, 56px) 34px;
    min-height: 38px;
    border: 1px solid #11111138;
    border-radius: 5px;
    background: transparent;
    overflow: hidden;
  }
  .nixtheme-home-latest__quantity-btn,
  .nixtheme-home-latest__quantity-value {
    border-right: 0;
    background: transparent;
  }
  .nixtheme-home-latest__quantity-btn + .nixtheme-home-latest__quantity-value,
  .nixtheme-home-latest__quantity-value + .nixtheme-home-latest__quantity-btn {
    border-left: 1px solid #11111138;
  }
  .nixtheme-home-latest__quantity-btn:first-child {
    border-left: 0;
  }
}
.nixtheme-home-category-card header {
  margin-bottom: 12px;
}
.nixtheme-home-category-card__list {
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
}
.nixtheme-home-category-card__list li {
  margin-bottom: 6px;
}
.nixtheme-home-category-card__button {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 8px;
  border: 1px solid #0f766e;
  color: #0f766e;
  text-decoration: none;
}
.nixtheme-home-category-card--wide-media header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Footer */
.wm-footer.site-footer{
  padding:0;
  border:0;
  background:var(--wm-footer-bg, #0f5a4a);
  color:var(--wm-footer-text, #d6f2ea);
  font-family:var(--wm-footer-font, Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif);
}
.wm-footer__shell{
  width:100%;
}
.wm-footer.is-boxed{
  background:transparent;
}
.wm-footer.is-boxed .wm-footer__shell{
  width:min(var(--nixtheme-footer-width, var(--nixtheme-max-width, 1200px)), 100%);
  margin:var(--wm-footer-box-margin, 24px) auto;
  padding:var(--wm-footer-box-padding, 24px);
  border-radius:var(--wm-footer-box-radius, 24px);
  background:var(--wm-footer-bg, #0f5a4a);
  box-sizing:border-box;
  overflow:hidden;
}
.wm-footer__top{
  border-bottom:1px solid color-mix(in srgb, var(--wm-footer-text, #d6f2ea) 16%, transparent);
}
.wm-footer__container{
  width:min(var(--nixtheme-footer-width, var(--nixtheme-max-width, 1200px)), 100%);
  margin:0 auto;
}
.wm-footer.is-boxed .wm-footer__container{
  width:100%;
}
.wm-footer__top .wm-footer__container{
  padding:44px 0 38px;
  display:grid;
  grid-template-columns:minmax(0, 1.7fr) repeat(3, minmax(0, 0.82fr));
  column-gap:24px;
  row-gap:34px;
}
.wm-footer.is-boxed .wm-footer__top .wm-footer__container{
  padding-top:14px;
}
.wm-footer__col--brand{
  margin-right:26px;
}
.wm-footer__logo{
  display:inline-flex;
  align-items:center;
  color:var(--wm-footer-text, #d6f2ea);
  font-size:clamp(24px, calc(var(--wm-footer-logo-size, 220px) / 5.2), 42px);
  font-weight:800;
  line-height:1;
  font-family:var(--wm-footer-font, Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif);
  padding-bottom:25px;
  max-width:100%;
}
.wm-footer__logo img{
  max-width:min(100%, var(--wm-footer-logo-size, 220px));
  max-height:clamp(24px, calc(var(--wm-footer-logo-size, 220px) / 3.9), 56px);
  width:auto;
  display:block;
  filter:none;
  opacity:1;
}
.wm-footer__text{
  margin:0 0 18px;
  font-size:16px;
  line-height:1.55;
  color:var(--wm-footer-text, #d6f2ea);
  max-width:390px;
  font-family:var(--wm-footer-font, Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif);
}
.wm-footer__social{
  display:flex;
  align-items:center;
  gap:10px;
  padding-top:25px;
}
.wm-footer__social.is-empty{
  display:none;
}
.wm-footer__social a{
  width:40px;
  height:40px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:color-mix(in srgb, var(--wm-footer-icon, var(--wm-footer-text, #d6f2ea)) 16%, transparent);
  color:var(--wm-footer-icon, var(--wm-footer-text, #d6f2ea));
  font-weight:700;
  text-decoration:none;
}
.wm-footer__social a.is-hidden{
  display:none;
}
.wm-footer__social a svg{
  width:18px;
  height:18px;
  display:block;
}
.wm-footer__social a img{
  width:18px;
  height:18px;
  object-fit:contain;
  display:block;
}
.wm-footer__col h4{
  margin:0 0 16px;
  color:var(--wm-footer-text, #d6f2ea);
  font-size:18px;
  font-weight:700;
  font-family:var(--wm-footer-font, Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif);
}
.wm-footer__col p{
  margin:0 0 12px;
  font-size:16px;
  color:var(--wm-footer-text, #d6f2ea);
}
.wm-footer__col ul{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  flex-direction:column;
  gap:var(--wm-footer-menu-gap, 10px);
}
.wm-footer__col ul a{
  color:var(--wm-footer-text, #d6f2ea);
  font-size:15px;
  text-decoration:none;
  font-family:var(--wm-footer-font, Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif);
  display:inline-block;
  border-bottom:1px solid transparent;
  transition:border-color .18s ease, opacity .18s ease;
}
.wm-footer__col ul a:hover{
  opacity:.9;
  border-bottom-color:currentColor;
}
.wm-footer__apps{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}
.wm-store-btn{
  background:#0a0f13;
  border:1px solid #2c3a44;
  color:#fff;
  border-radius:8px;
  padding:9px 12px;
  font-size:13px;
  text-decoration:none;
  font-weight:600;
}
.wm-footer__bottom .wm-footer__container{
  padding:18px 0;
}
.wm-footer__bottom-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}
.wm-footer__copy{
  margin:0;
  font-size:15px;
  color:var(--wm-footer-text, #d6f2ea);
  font-family:var(--wm-footer-font, Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif);
}
.wm-footer__credit{
  margin:0;
  font-size:14px;
  color:var(--wm-footer-text, #d6f2ea);
  font-family:var(--wm-footer-font, Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif);
  text-align:right;
  opacity:.84;
}

@media (max-width: 1200px){
  .wm-footer__top .wm-footer__container{
    grid-template-columns:minmax(0, 1.45fr) repeat(3, minmax(0, 0.9fr));
    gap:28px;
  }
  .wm-footer__col--brand{
    margin-right:0;
  }
}
@media (max-width: 860px){
  .wm-footer.is-boxed .wm-footer__shell{
    width:auto;
    margin:16px;
    padding:20px 18px;
  }
  .wm-footer__top,
  .wm-footer__bottom{
    padding-left: 16px;
    padding-right: 16px;
    box-sizing: border-box;
  }
  .wm-footer.is-boxed .wm-footer__top,
  .wm-footer.is-boxed .wm-footer__bottom{
    padding-left: 0;
    padding-right: 0;
  }
  .wm-footer__top .wm-footer__container{
    grid-template-columns:1fr 1fr;
    gap:24px;
    padding:34px 0;
  }
  .wm-footer__col--brand{
    grid-column:1 / -1;
  }
  .wm-footer__bottom-inner{
    flex-direction:column;
    align-items:flex-start;
  }
}
@media (max-width: 560px){
  .wm-footer.is-boxed .wm-footer__shell{
    width:auto;
    margin:12px;
    padding:16px 14px;
  }
  .wm-footer__top .wm-footer__container{
    grid-template-columns:1fr;
  }
  .wm-footer__logo{
    font-size:clamp(22px, calc(var(--wm-footer-logo-size, 220px) / 5.8), 34px);
  }
  .wm-footer__logo img{
    max-height:clamp(22px, calc(var(--wm-footer-logo-size, 220px) / 5.6), 32px);
  }
  .wm-footer__text{
    font-size:15px;
    line-height:1.45;
  }
  .wm-footer__col h4{
    font-size:18px;
  }
  .wm-footer__col p,
  .wm-footer__col ul a{
    font-size:15px;
  }
  .wm-store-btn{
    font-size:13px;
  }
  .wm-footer__copy{
    font-size:14px;
  }
  .wm-footer__social{
    gap:10px;
  }
}

.footer-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}
.footer-copy,.footer-credit{
  margin:0;
  font-size:14px;
  line-height:1.4;
}
.footer-credit{ opacity:.8; }
@media (max-width:720px){
  .footer-row{ flex-direction:column; align-items:flex-start; }
}
/* Ajax Classic Header (Three Rows) */
.ac-header{
  --ac-top-bg:#00463f;
  --ac-top-text:#fff;
  --ac-utility-bg:#fff;
  --ac-utility-text:#111;
  --ac-main-bg:#fff;
  --ac-main-text:#111;
  --ac-hover-bg:#f4f4f4;
  --ac-active-bg:#111;
  --ac-active-text:#fff;
  --ac-border:#e5e7eb;
  position: sticky;
  top: 0;
  z-index: 9999;
  border-bottom: 1px solid var(--ac-border);
}
.ac-header a{ color: inherit; }
.ac-header.is-scrolled{ box-shadow: 0 10px 28px rgba(0,0,0,.08); }

.ac-topbar{ background: var(--ac-top-bg); color: var(--ac-top-text); }
.ac-utility{ background: var(--ac-utility-bg); color: var(--ac-utility-text); border-top:1px solid var(--ac-border); border-bottom:1px solid var(--ac-border); }
.ac-main{ background: var(--ac-main-bg); color: var(--ac-main-text); }
.ac-main{ position: relative; }

.ac-topbar .ac-container,
.ac-utility .ac-container,
.ac-main .ac-container{
  width: min(var(--nixtheme-header-width, var(--nixtheme-max-width)), 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
}
.ac-topbar .ac-container{
  justify-content: center;
  min-height: 38px;
}
.ac-utility .ac-container{
  justify-content: space-between;
  min-height: 42px;
  gap: 18px;
}
.ac-main .ac-container{
  min-height: 86px;
  gap: 20px;
}

.ac-topbar__notice{
  margin: 0;
  font-size: 14px;
  line-height: 1.35;
  letter-spacing: .01em;
  font-weight: 500;
  text-align: center;
}
.ac-topbar__notice a,
.ac-topbar__notice strong{
  color: inherit;
  font-weight: 800;
  text-decoration: none;
}

.ac-utility__left,
.ac-utility__right{
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}
.ac-utility__left{ flex: 1 1 auto; }
.ac-utility__right{ flex: 0 0 auto; }
.ac-social{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}
.ac-shipping{
  margin: 0;
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ac-shipping strong{ font-weight: 700; margin-left: 4px; }
.ac-utility-link{
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.2;
  white-space: nowrap;
}

.ac-brand{
  flex: 0 0 auto;
  display: flex;
  align-items: center;
}
.ac-logo{
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: .01em;
  max-width: min(var(--ac-logo-width, 280px), 100%);
}
.ac-logo img{
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: none;
  display: block;
}
.ac-header--clotya-classic .ac-logo{
  max-width: min(var(--ac-logo-width, 280px), 220px);
}

.ac-nav{
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 1 1 auto;
  justify-content: flex-start;
}
.ac-header--clotya-classic .ac-nav{
  justify-content: center;
}
.ac-menu{
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.ac-menu > li{ position: relative; margin: 0; padding: 0; }
.ac-menu a{
  display: inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
}
.ac-menu a:hover{ background: var(--ac-hover-bg); }
.ac-menu .current-menu-item > a,
.ac-menu .current_page_item > a{
  background: transparent;
  color: #111;
}

.ac-menu .sub-menu{
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  list-style: none;
  margin: 8px 0 0;
  padding: 8px;
  background: #fff;
  border: 1px solid var(--ac-border);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
  display: none;
  z-index: 9999;
}
.ac-menu .sub-menu a{
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
}
.ac-menu li:hover > .sub-menu,
.ac-menu li:focus-within > .sub-menu{ display: block; }

.ac-actions{
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}
.ac-action-link{
  width: 38px;
  height: 38px;
  border: 1px solid var(--ac-border);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: #fff;
  color: inherit;
  cursor: pointer;
  padding: 0;
}
.ac-action-link:hover{ background: var(--ac-hover-bg); }
.ac-badge-wrap,
.ac-cart-wrap{ position: relative; }
.ac-badge{
  min-width: 10px;
  height: 20px;
  border-radius: 999px;
  background: #ef4444;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  line-height: 1;
  font-weight: 700;
  position: absolute;
  right: -6px;
  top: -6px;
  padding: 0 5px;
  box-shadow: 0 0 0 2px #fff;
}
.ac-cart-wrap{
  width: 38px;
  height: 38px;
  border-radius: 50%;
  padding: 0;
  gap: 0;
}
.ac-cart-total{
  font-size: 14px;
  font-weight: 600;
  display: none !important;
}
.ac-cart-icon{
  position: relative;
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.ac-cart-icon .ac-badge{ right: -18px; top: -18px; }
.ac-ico{ display: block; }

/* Search modal */
.ac-search-modal{
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: none;
}
.ac-search-modal.is-open{ display: block; }
body.is-search-open{ overflow: hidden; }
.ac-search-modal__backdrop{
  position: absolute;
  inset: 0;
  background: #fff;
}
.ac-search-modal__panel{
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 16px;
}
.ac-search-modal__close{
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
}
.ac-search-modal__form{
  width: min(720px, 92%);
  display: flex;
  align-items: center;
  gap: 14px;
  border-bottom: 2px solid #d11;
  padding: 10px 2px;
}
.ac-search-modal__label{ flex: 1 1 auto; }
.ac-search-modal__input{
  width: 100%;
  border: 0;
  outline: none;
  font-size: 18px;
  padding: 10px 6px;
  background: transparent;
}
.ac-search-modal__submit{
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 10px;
  border-radius: 12px;
}
.ac-search-modal__submit:hover{ background: #f4f4f4; }
.ac-inline-search{
  border-top: 1px solid var(--ac-border);
  background: #fff;
}
.ac-inline-search__form{
  width: min(var(--nixtheme-header-width, var(--nixtheme-max-width)), 100%);
  margin: 0 auto;
  min-height: 64px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-left: 8px;
  padding-right: 8px;
  box-sizing: border-box;
}
.ac-inline-search__label{
  flex: 1 1 auto;
}
.ac-inline-search__input{
  width: 100%;
  height: 44px;
  border: 1px solid #d5dae2;
  border-radius: 12px;
  padding: 0 14px;
  font-size: 15px;
}
.ac-inline-search__submit{
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid #d5dae2;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.ac-inline-search__submit .ac-ico{
  width: 16px;
  height: 16px;
}
.ac-inline-search__submit:hover{
  background: #f4f4f4;
}

.ac-nav-toggle{
  display: none;
  border: 1px solid var(--ac-border);
  background: #fff;
  border-radius: 12px;
  padding: 10px 12px;
  cursor: pointer;
}
.ac-burger{
  display: inline-block;
  width: 18px;
  height: 2px;
  background: currentColor;
  position: relative;
  transition: background-color .2s ease;
}
.ac-burger:before,
.ac-burger:after{
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: currentColor;
  transition: transform .2s ease, top .2s ease;
}
.ac-burger:before{ top: -6px; }
.ac-burger:after{ top: 6px; }
.ac-nav-toggle.is-open .ac-burger{
  background: transparent;
}
.ac-nav-toggle.is-open .ac-burger:before{
  top: 0;
  transform: rotate(45deg);
}
.ac-nav-toggle.is-open .ac-burger:after{
  top: 0;
  transform: rotate(-45deg);
}

.ac-search-toggle{
  position: relative;
}
.ac-search-toggle--mobile{
  display: none !important;
}
.ac-search-toggle .ac-ico{
  transition: opacity .2s ease, transform .2s ease;
}
.ac-search-toggle:before,
.ac-search-toggle:after{
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 2px;
  background: currentColor;
  margin-left: -7px;
  margin-top: -1px;
  opacity: 0;
  transition: opacity .2s ease, transform .2s ease;
}
.ac-search-toggle:before{ transform: rotate(45deg) scale(.8); }
.ac-search-toggle:after{ transform: rotate(-45deg) scale(.8); }
.ac-search-toggle.is-open .ac-ico{
  opacity: 0;
  transform: scale(.8);
}
.ac-search-toggle.is-open:before,
.ac-search-toggle.is-open:after{
  opacity: 1;
}
.ac-search-toggle.is-open:before{ transform: rotate(45deg) scale(1); }
.ac-search-toggle.is-open:after{ transform: rotate(-45deg) scale(1); }

@media (max-width: 1100px){
  .ac-shipping{ display: none; }
}
@media (max-width: 940px){
  .ac-topbar{ display: none; }
  .ac-utility{ display: none; }
  .ac-main .ac-container{
    min-height: 72px;
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 8px;
    padding-right: 8px;
    box-sizing: border-box;
  }
  .ac-nav-toggle{
    order: 2;
    margin-left: auto;
    margin-right: 4px;
  }
  .ac-brand{
    order: 1;
    flex: 0 0 auto;
    margin: 0;
  }
  .ac-header--clotya-classic .ac-logo{
    max-width: 180px;
  }
  .ac-actions{
    order: 3;
    margin-left: 0;
    margin-right: 8px;
    display: flex;
    align-items: center;
    gap: 4px;
  }
  .ac-actions .ac-action-link{ display: none; }
  .ac-actions .ac-search-toggle{ display: inline-flex; }
  .ac-actions .ac-cart-wrap{ display: none !important; }
  .ac-nav-toggle{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    padding: 0;
  }
  .ac-actions .ac-search-toggle{
    width: 34px;
    height: 34px;
    border-radius: 10px;
  }
  .ac-nav{
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: #fff;
    border-bottom: 1px solid var(--ac-border);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    gap: 8px;
  }
  .ac-nav.is-open{ display: flex; }
  .ac-menu{ flex-direction: column; align-items: stretch; gap: 6px; }
  .ac-menu a{ padding: 10px 12px; border-radius: 10px; }
  .ac-menu .sub-menu{
    position: static;
    margin: 6px 0 0;
    box-shadow: none;
    border: 1px solid var(--ac-border);
    display: block;
  }
  .ac-logo{ font-size: 32px; }
  .ac-logo img{ max-height: none; }
  .ac-cart-wrap{
    width: 36px;
    height: 36px;
    border-radius: 50%;
    padding: 0;
    gap: 0;
  }
  .ac-cart-total{ display: none; }
}
@media (max-width: 680px){
  .ac-main .ac-container{ gap: 10px; }
  .ac-actions{ gap: 6px; }
  .ac-action-link{ width: 34px; height: 34px; }
  .ac-cart-wrap{
    width: 34px;
    height: 34px;
    border-radius: 50%;
    padding: 0;
  }
  .ac-cart-total{ display: none; }
}

/* Header style presets */
.ac-header--clean-split{
  --ac-market-orange:var(--ac-clean-split-banner-bg, #ffcf11);
  --ac-market-dark:#111111;
  --ac-market-light:#ffffff;
  --ac-market-border:#eceff3;
  --ac-clean-split-notice-text-color:#111111;
  --ac-clean-split-notice-font-size:15px;
  position:relative;
  top:auto;
  --ac-clean-split-menu-font:"Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ac-clean-split-logo-size-mobile:38px;
  --ac-market-promo-font:"Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ac-market-promo-title-size:32px;
  --ac-market-promo-subtitle-size:18px;
  --ac-preview-canvas-font:"Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ac-preview-canvas-title-size:24px;
  --ac-preview-canvas-text-size:14px;
}
.ac-header--clean-split .ac-topbar,
.ac-header--clean-split .ac-utility{
  display:none;
}
.ac-header--clean-split .ac-clean-split-notice{
  background:var(--ac-market-orange);
  color:var(--ac-clean-split-notice-text-color);
}
.ac-header--clean-split .ac-clean-split-notice .ac-container{
  width:min(var(--nixtheme-header-width, var(--nixtheme-max-width)), 100%);
  margin:0 auto;
  min-height:38px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:0 18px;
  box-sizing:border-box;
}
.ac-header--clean-split .ac-clean-split-notice__text{
  margin:0;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:14px;
  padding:2px 0;
  font-size:var(--ac-clean-split-notice-font-size);
  font-weight:500;
  line-height:1.2;
  text-align:center;
}
.ac-header--clean-split .ac-clean-split-notice__link{
  display:block;
  color:inherit;
  text-decoration:none;
}
.ac-header--clean-split .ac-clean-split-notice__arrow{
  font-weight:700;
  transition:transform .2s ease;
}
.ac-header--clean-split .ac-clean-split-notice__link:hover .ac-clean-split-notice__arrow{
  transform:translateX(4px);
}
.ac-header--clean-split .ac-clean-split-notice__text a,
.ac-header--clean-split .ac-clean-split-notice__text strong{
  font-weight:700;
}
.ac-header--clean-split .ac-clean-split-contact-banner{
  background:#0f172a;
  color:#e2e8f0;
  border-bottom:1px solid rgba(255,255,255,.08);
}
.ac-header--clean-split .ac-clean-split-contact-banner .ac-container{
  width:min(var(--nixtheme-header-width, var(--nixtheme-max-width)), 100%);
  margin:0 auto;
}
.ac-header--clean-split .ac-clean-split-contact-banner__inner{
  min-height:54px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:0 18px;
  box-sizing:border-box;
}
.ac-header--clean-split .ac-clean-split-contact-banner__email{
  flex:1 1 auto;
  min-width:0;
}
.ac-header--clean-split .ac-clean-split-contact-banner__email-link{
  display:inline-flex;
  align-items:center;
  gap:10px;
  max-width:100%;
  color:#f8fafc;
  text-decoration:none;
  font:600 14px/1.35 "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.ac-header--clean-split .ac-clean-split-contact-banner__icon{
  width:32px;
  height:32px;
  border-radius:999px;
  background:rgba(255,255,255,.08);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  flex:0 0 auto;
}
.ac-header--clean-split .ac-clean-split-contact-banner__icon svg{
  width:16px;
  height:16px;
  display:block;
}
.ac-header--clean-split .ac-clean-split-contact-banner__email-text{
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}
.ac-header--clean-split .ac-clean-split-contact-banner__actions{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:10px;
  flex:0 0 auto;
  flex-wrap:wrap;
}
.ac-header--clean-split .ac-clean-split-contact-banner__btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  min-height:38px;
  padding:0 14px;
  border-radius:999px;
  color:#ffffff;
  text-decoration:none;
  font:700 13px/1 "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  transition:transform .18s ease, filter .18s ease;
}
.ac-header--clean-split .ac-clean-split-contact-banner__btn:hover{
  transform:translateY(-1px);
  filter:brightness(1.04);
}
.ac-header--clean-split .ac-clean-split-contact-banner__btn.is-whatsapp{
  background:#16a34a;
}
.ac-header--clean-split .ac-clean-split-contact-banner__btn.is-telegram{
  background:#2563eb;
}
.ac-header--clean-split .ac-clean-split-contact-banner__btn-icon{
  width:16px;
  height:16px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  flex:0 0 auto;
}
.ac-header--clean-split .ac-clean-split-contact-banner__btn-icon svg{
  width:16px;
  height:16px;
  display:block;
}
.ac-header--clean-split .ac-market-top{
  background:var(--ac-clean-split-main-bg, #fff) !important;
  color:var(--ac-clean-split-main-text, #111) !important;
  border-bottom:1px solid var(--ac-market-border);
  position:relative;
  z-index:30;
}
.ac-header--clean-split .ac-market-top .ac-container{
  width:min(var(--nixtheme-header-width, var(--nixtheme-max-width)), 100%);
  margin:0 auto;
  min-height:72px;
  display:grid;
  grid-template-columns:auto minmax(0, 1fr) auto;
  align-items:center;
  gap:18px;
  padding:0 18px;
  box-sizing:border-box;
}
.ac-header--clean-split .ac-brand--market .ac-logo{
  font-size:38px;
  font-weight:700;
  color:#111;
  max-width:min(var(--ac-logo-width, 280px), 220px);
}
.ac-header--clean-split .ac-brand--market .ac-logo img{
  max-height:48px;
  width:auto;
  max-width:100%;
  filter:none;
}
.ac-clean-split-drawer-head,
.ac-clean-split-drawer-foot,
.ac-clean-split-drawer-backdrop{
  display:none;
}
.ac-header--clean-split .ac-nav-toggle{
  display:none;
  border-color:#d8dee8;
  color:#111;
  background:transparent;
}
.ac-header--clean-split .ac-market-search,
.ac-header--clean-split .ac-market-main,
.ac-header--clean-split .ac-market-cats,
.ac-header--clean-split .ac-market-promo{
  display:none;
}
.ac-header--clean-split .ac-nav{
  justify-content:center;
  min-width:0;
  justify-self:center;
}
.ac-header--clean-split .ac-menu{
  gap:8px;
  justify-content:center;
  flex-wrap:wrap;
}
.ac-header--clean-split .ac-menu a{
  border-radius:0;
  padding:8px 10px;
  font-size:16px;
  font-weight:500;
  font-family:var(--ac-clean-split-menu-font);
  color:var(--ac-clean-split-main-text, #111);
}
.ac-header--clean-split .ac-menu .current-menu-item > a,
.ac-header--clean-split .ac-menu .current_page_item > a,
.ac-header--clean-split .ac-menu a:hover{
  background:transparent;
  color:var(--ac-clean-split-main-text, #111);
}
.ac-header--clean-split .ac-actions{
  position:relative;
  display:flex;
  align-items:center;
  gap:8px;
  margin-left:10px;
  justify-self:end;
  color:var(--ac-clean-split-icon-color, currentColor);
}
.ac-header--clean-split .ac-actions .ac-action-link{
  width:30px;
  height:40px;
  border:0;
  border-radius:0;
  color:var(--ac-clean-split-icon-color, currentColor);
  background:transparent;
}
.ac-header--clean-split .ac-actions .ac-action-link .ac-ico{
  stroke: currentColor;
  width:28px;
  height:30px;
}
.ac-header--clean-split .ac-actions .ac-action-link:hover{
  background:transparent;
}
.ac-header--clean-split .ac-actions .ac-badge{
  background:var(--ac-market-orange);
  color:#ffffff;
  box-shadow:0 0 0 2px #fff;
}
.ac-header--clean-split .ac-cart-wrap{
  width:30px;
  height:40px;
  padding:0;
}
.ac-header--clean-split .ac-cart-icon{
  width:28px;
  height:30px;
}
.ac-header--clean-split .ac-cart-wrap .ac-ico{
  width:28px;
  height:30px;
}
.ac-header--clean-split .ac-cart-total{
  display:none !important;
}
.ac-header--clean-split .ac-inline-search--clean-split{
  border:0;
  background:transparent;
  flex:0 0 auto;
  position:absolute;
  top:50%;
  right:100%;
  transform:translateY(-50%);
  margin-right:12px;
  z-index:20;
}
.ac-header--clean-split .ac-inline-search--clean-split .ac-inline-search__form{
  width:250px;
  min-height:0;
  margin:0;
  padding:0;
  gap:0;
  position:relative;
  box-sizing:border-box;
  border:1px solid rgba(17,17,17,.10);
  border-radius:8px;
  background:#F6F6F6;
}
.ac-header--clean-split .ac-inline-search--clean-split .ac-inline-search__label{
  flex:1 1 auto;
  display:block;
}
.ac-header--clean-split .ac-inline-search--clean-split .ac-inline-search__input{
  height:46px;
  border:0;
  border-radius:8px;
  background:#F6F6F6;
  padding:0 16px 0 42px;
  font-size:15px;
  font-family:"Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  box-shadow:none;
  width:100%;
  box-sizing:border-box;
  outline:none;
}
.ac-header--clean-split .ac-inline-search--clean-split .ac-inline-search__submit{
  width:18px;
  height:18px;
  border:0;
  background:transparent;
  padding:0;
  position:absolute;
  left:14px;
  top:50%;
  transform:translateY(-50%);
  z-index:1;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
}
.ac-header--clean-split .ac-inline-search--clean-split .ac-inline-search__submit .ac-ico{
  width:18px;
  height:18px;
}
.ac-header--clean-split .ac-inline-search--clean-split .ac-inline-search__submit:hover{
  background:transparent;
}
.ac-header--clean-split-variation-storefront .ac-market-top{
  display:none;
}
.ac-header--clean-split-variation-storefront .ac-clean-split-storefront{
  background:var(--ac-clean-split-main-bg, #fff);
  color:var(--ac-clean-split-main-text, #111);
  border-bottom:1px solid var(--ac-market-border);
  position:relative;
  z-index:30;
}
.ac-header--clean-split-variation-storefront .ac-clean-split-storefront__top .ac-container,
.ac-header--clean-split-variation-storefront .ac-clean-split-storefront__nav-row .ac-container{
  width:min(var(--nixtheme-header-width, var(--nixtheme-max-width)), 100%);
  margin:0 auto;
  padding:0 12px;
  box-sizing:border-box;
}
.ac-header--clean-split-variation-storefront .ac-clean-split-storefront__top .ac-container{
  min-height:68px;
  display:grid;
  grid-template-columns:minmax(200px, 280px) minmax(360px, 630px) auto;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}
.ac-header--clean-split-variation-storefront .ac-brand--market{
  min-width:0;
  justify-self:start;
}
.ac-header--clean-split-variation-storefront .ac-brand--market .ac-logo{
  max-width:min(var(--ac-logo-width, 280px), 260px);
}
.ac-header--clean-split-variation-storefront .ac-clean-split-storefront__search{
  min-width:0;
  display:flex;
  align-items:center;
  gap:0;
  position:relative;
  width:min(100%, 632px);
  justify-self:center;
}
.ac-header--clean-split-variation-storefront .ac-clean-split-storefront__search-input{
  width:100%;
  height:46px;
  border:1px solid rgba(15, 23, 42, .22);
  border-radius:10px;
  background:#ffffff;
  padding:0 18px 0 48px;
  font:500 15px/1.2 "Poppins", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color:#111111;
  box-sizing:border-box;
}
.ac-header--clean-split-variation-storefront .ac-clean-split-storefront__search-input::placeholder{
  color:#5b6470;
}
.ac-header--clean-split-variation-storefront .ac-clean-split-storefront__search-submit{
  position:absolute;
  left:16px;
  top:50%;
  transform:translateY(-50%);
  width:20px;
  height:20px;
  padding:0;
  border:0;
  background:transparent;
  color:#111111;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
}
.ac-header--clean-split-variation-storefront .ac-clean-split-storefront__quick-links{
  display:flex;
  align-items:stretch;
  justify-content:flex-end;
  justify-self:end;
}
.ac-header--clean-split-variation-storefront .ac-clean-split-storefront__quick-link{
  min-width:104px;
  padding:0 20px;
  color:var(--ac-clean-split-main-text, #111);
  text-decoration:none;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:6px;
  font:600 12px/1.2 "Poppins", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  border-left:1px solid rgba(15, 23, 42, .10);
  text-align:center;
  min-height:66px;
}
.ac-header--clean-split-variation-storefront .ac-clean-split-storefront__quick-link .ac-ico{
  width:22px;
  height:22px;
  stroke:currentColor;
}
.ac-header--clean-split-variation-storefront .ac-clean-split-storefront__quick-link:hover{
  color:#d63384;
}
.ac-header--clean-split-variation-storefront .ac-clean-split-storefront__mobile-tools{
  display:none;
}
.ac-header--clean-split-variation-storefront .ac-clean-split-storefront__nav-row{
  border-top:1px solid rgba(15, 23, 42, .10);
}
.ac-header--clean-split-variation-storefront .ac-clean-split-storefront__nav-row .ac-container{
  min-height:54px;
  display:flex;
  align-items:center;
  justify-content:flex-start;
  gap:0;
}
.ac-header--clean-split-variation-storefront .ac-nav{
  min-width:0;
  flex:1 1 auto;
  width:auto;
  justify-self:auto;
  justify-content:flex-start !important;
  margin:0 !important;
}
.ac-header--clean-split-variation-storefront .ac-menu{
  display:flex;
  width:auto;
  align-items:center;
  gap:36px;
  justify-content:flex-start !important;
  flex-wrap:wrap;
  margin:0 !important;
  margin-right:auto !important;
  padding:0;
}
.ac-header--clean-split-variation-storefront .ac-menu a{
  padding:6px 0;
  font:500 15px/1.2 "Poppins", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color:#111111;
}
.ac-header--clean-split-variation-storefront .ac-menu .current-menu-item > a,
.ac-header--clean-split-variation-storefront .ac-menu .current_page_item > a,
.ac-header--clean-split-variation-storefront .ac-menu a:hover{
  color:#d63384;
}
.ac-header--clean-split-variation-storefront .ac-clean-split-storefront__nav-row .ac-nav,
.ac-header--clean-split-variation-storefront .ac-clean-split-storefront__nav-row .ac-menu{
  justify-content:flex-start !important;
}
.ac-header--clean-split-variation-storefront .ac-clean-split-storefront__cart{
  display:inline-flex;
  align-items:center;
  gap:10px;
  justify-self:auto;
  align-self:center;
  min-width:124px;
  padding:7px 0 7px 18px;
  margin-left:auto;
  border-left:1px solid rgba(15, 23, 42, .10);
  color:var(--ac-clean-split-main-text, #111);
  text-decoration:none;
  font:700 15px/1 "Poppins", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  white-space:nowrap;
}
.ac-header--clean-split-variation-storefront .ac-clean-split-storefront__cart--placeholder{
  visibility:hidden;
}
.ac-header--clean-split-variation-storefront .ac-clean-split-storefront__cart .ac-cart-icon{
  position:relative;
  width:30px;
  height:30px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}
.ac-header--clean-split-variation-storefront .ac-clean-split-storefront__cart .ac-ico,
.ac-header--clean-split-variation-storefront .ac-clean-split-storefront__mobile-cart .ac-ico{
  width:24px;
  height:24px;
  stroke:currentColor;
}
.ac-header--clean-split-variation-storefront .ac-clean-split-storefront__cart .ac-badge,
.ac-header--clean-split-variation-storefront .ac-clean-split-storefront__mobile-cart .ac-badge{
  position:absolute;
  top:-6px;
  right:-8px;
  min-width:10px;
  height:16px;
  padding:0 3px;
  border-radius:999px;
  background:#d63384;
  color:#fff;
  font-size:10px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 0 0 2px #fff;
}
.ac-header--clean-split-variation-storefront .ac-clean-split-storefront__cart-total{
  display:inline-flex;
  align-items:center;
  gap:4px;
  letter-spacing:0;
  font-size:19px;
  line-height:1;
  font-weight:700;
}
.ac-header--clean-split-variation-storefront .ac-clean-split-storefront__cart-currency{
  font-weight:800;
  font-size:1.05em;
  line-height:1;
  transform:translateY(-.02em);
}
.ac-header--clean-split-variation-storefront .ac-clean-split-storefront__sample-plus{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin-left:8px;
  font-size:30px;
  font-weight:300;
  line-height:0.8;
  transform:translateY(1px);
}

.ac-header--minimal-bold{
  --ac-minimal-bold-header-bg:#dfe8f7;
  --ac-minimal-bold-header-text:#23272f;
  --ac-market3-blue:var(--ac-minimal-bold-header-bg);
  --ac-market3-blue-strong:#2d67df;
  --ac-market3-text:var(--ac-minimal-bold-header-text);
  position:static;
  top:auto;
  border-bottom:0;
}
.ac-header--minimal-bold .ac-topbar,
.ac-header--minimal-bold .ac-utility{
  display:none;
}
.ac-header--minimal-bold .ac-market3-top{
  background:#fff;
  border-bottom:1px solid var(--ac-border);
}
.ac-header--minimal-bold .ac-market3-top .ac-container{
  width:min(var(--nixtheme-header-width, var(--nixtheme-max-width)), 100%);
  margin:0 auto;
  min-height:78px;
  display:grid;
  grid-template-columns:minmax(0, var(--ac-logo-width, 280px)) minmax(520px, 1.6fr) auto auto;
  align-items:center;
  gap:18px;
}
.ac-header--minimal-bold .ac-market3-brand-wrap{
  width:auto;
  max-width:min(var(--ac-logo-width, 280px), 100%);
  min-width:0;
}
.ac-header--minimal-bold .ac-market3-logo{
  display:block;
  width:100%;
  max-width:min(var(--ac-logo-width, 280px), 100%);
  font-size:var(--ac-market3-logo-size-desktop, 36px);
  font-weight:800;
  color:#2f333a;
}
.ac-header--minimal-bold .ac-market3-logo img{
  display:block;
  max-width:min(var(--ac-logo-width, 280px), 100%);
  max-height:none;
  width:100%;
  height:auto;
}
.ac-header--minimal-bold .ac-market3-search{
  display:grid;
  grid-template-columns:1fr auto;
  max-width:920px;
  width:100%;
  border:1px solid #d9e1ee;
  border-radius:999px;
  background:#fff;
  box-shadow:0 10px 24px rgba(37, 99, 235, 0.08);
  transition:border-color .2s ease, box-shadow .2s ease, transform .2s ease;
  padding:5px 6px 5px 0;
}
.ac-header--minimal-bold .ac-market3-search__input{
  border:0;
  outline:none;
  height:46px;
  padding:0 20px;
  font-family:"Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size:16px;
  font-weight:500;
  color:#1f2937;
  background:transparent;
}
.ac-header--minimal-bold .ac-market3-search__input::placeholder{
  color:#94a3b8;
}
.ac-header--minimal-bold .ac-market3-search__submit{
  border:0;
  width:44px;
  height:44px;
  min-width:44px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#2d67df;
  color:#fff;
  cursor:pointer;
  border-radius:999px;
  transition:filter .2s ease, transform .2s ease;
}
.ac-header--minimal-bold .ac-market3-search:hover{
  border-color:#bfd0f3;
  box-shadow:0 14px 30px rgba(37, 99, 235, 0.12);
}
.ac-header--minimal-bold .ac-market3-search:focus-within{
  border-color:#2d67df;
  box-shadow:0 0 0 4px rgba(45, 103, 223, 0.12), 0 14px 30px rgba(37, 99, 235, 0.12);
}
.ac-header--minimal-bold .ac-market3-search__submit:hover{
  filter:brightness(1.05);
}

.nixtheme-search-page{
  --nixtheme-search-font: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  padding: 18px 0 76px;
  background: #f3f4f4;
  color: #111;
  font-family: var(--nixtheme-search-font);
}
.nixtheme-search-page *,
.nixtheme-search-page *::before,
.nixtheme-search-page *::after{
  box-sizing: border-box;
  font-family: var(--nixtheme-search-font);
}
.nixtheme-search-page .ac-container{
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}
.nixtheme-search-page__showcase-head{
  margin: 0 0 26px;
  text-align: center;
}
.nixtheme-search-page__showcase-head h1{
  margin: 0;
  color: #111;
  font: 600 50px/.98 var(--nixtheme-search-font);
  letter-spacing: 0;
}
.nixtheme-search-page__showcase-head p{
  margin: 10px 0 0;
  color: #5c5f63;
  font: 600 13px/1.45 var(--nixtheme-search-font);
}
.nixtheme-search-products{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}
.nixtheme-search-product{
  min-width: 0;
}
.nixtheme-search-product__image{
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1.25;
  overflow: hidden;
  border-radius: 5px;
  background: #dededc;
  color: #4b5563;
  text-decoration: none;
}
.nixtheme-search-product__image img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .28s ease;
}
.nixtheme-search-product:hover .nixtheme-search-product__image img{
  transform: scale(1.045);
}
.nixtheme-search-product h2{
  margin: 8px 0 4px;
  color: #111;
  font: 700 14px/1.12 var(--nixtheme-search-font);
  letter-spacing: 0;
}
.nixtheme-search-product h2 a{
  color: inherit;
  text-decoration: none;
}
.nixtheme-search-product h2 a:hover{
  text-decoration: underline;
  text-underline-offset: 3px;
}
.nixtheme-search-product__price{
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 7px;
  color: #111;
  font: 800 14px/1.15 var(--nixtheme-search-font);
}
.nixtheme-search-product__old{
  color: #777;
  font-size: 12px;
  font-weight: 700;
  text-decoration: line-through;
}
.nixtheme-search-product::after{
  content: "";
  display: block;
  height: 5px;
  margin-top: 9px;
  border-radius: 999px;
  background: #dfff36;
}
.nixtheme-search-page__other{
  margin-top: 44px;
}
.nixtheme-search-page__section-head{
  margin-bottom: 14px;
}
.nixtheme-search-page__section-head h2{
  margin: 0;
  color: #111;
  font: 800 22px/1.12 var(--nixtheme-search-font);
}
.nixtheme-search-page__other-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.nixtheme-search-card{
  padding: 18px;
  border: 1px solid #e0e2e5;
  border-radius: 10px;
  background: #fff;
}
.nixtheme-search-card h3{
  margin: 0 0 8px;
  font: 800 18px/1.2 var(--nixtheme-search-font);
}
.nixtheme-search-card h3 a{
  color: #111;
  text-decoration: none;
}
.nixtheme-search-card p{
  margin: 0 0 14px;
  color: #59616c;
  font: 500 14px/1.55 var(--nixtheme-search-font);
}
.nixtheme-search-card__meta{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  color: #7a7f87;
  font: 700 12px/1.3 var(--nixtheme-search-font);
}
.nixtheme-search-card__meta a{
  color: #111;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.nixtheme-search-page__empty{
  max-width: 560px;
  margin: 24px auto 0;
  padding: 38px 22px;
  border: 1px dashed #cfd3d8;
  border-radius: 12px;
  background: #fff;
  text-align: center;
}
.nixtheme-search-page__empty-icon{
  display: none;
}
.nixtheme-search-page__empty h2{
  margin: 0 0 8px;
  color: #111;
  font: 800 26px/1.1 var(--nixtheme-search-font);
}
.nixtheme-search-page__empty p{
  margin: 0;
  color: #59616c;
  font: 500 15px/1.55 var(--nixtheme-search-font);
}
.nixtheme-search-page__pagination{
  margin-top: 30px;
}
.nixtheme-search-page__pagination .page-numbers{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.nixtheme-search-page__pagination .page-numbers a,
.nixtheme-search-page__pagination .page-numbers span{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 13px;
  border: 1px solid #d8dde3;
  border-radius: 999px;
  background: #fff;
  color: #111;
  text-decoration: none;
  font: 700 13px/1 var(--nixtheme-search-font);
}
.nixtheme-search-page__pagination .page-numbers .current{
  border-color: #111;
  background: #111;
  color: #fff;
}
@media (max-width: 1100px){
  .nixtheme-search-products{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 820px){
  .nixtheme-search-products{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .nixtheme-search-page__other-grid{
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px){
  .nixtheme-search-page{
    padding: 16px 0 56px;
  }
  .nixtheme-search-page .ac-container{
    width: min(100% - 16px, 1120px);
  }
  .nixtheme-search-page__showcase-head{
    margin-bottom: 20px;
  }
  .nixtheme-search-page__showcase-head h1{
    font-size: 30px;
  }
  .nixtheme-search-page__showcase-head p{
    font-size: 12px;
  }
  .nixtheme-search-products{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 12px;
  }
  .nixtheme-search-product h2{
    font-size: 13px;
  }
  .nixtheme-search-product__price{
    font-size: 13px;
  }
}
.ac-header--minimal-bold .ac-market3-info{
  display:flex;
  align-items:center;
  gap:28px;
  font-family:Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.ac-header--minimal-bold .ac-market3-info__item{
  display:flex;
  align-items:flex-start;
  gap:8px;
  white-space:nowrap;
  text-decoration:none;
  color:inherit;
  transition:color .2s ease, opacity .2s ease;
}
.ac-header--minimal-bold .ac-market3-info__item:hover,
.ac-header--minimal-bold .ac-market3-info__item:focus-visible{
  color:#2563eb;
  opacity:.95;
}
.ac-header--minimal-bold .ac-market3-info__item:focus-visible{
  outline:2px solid rgba(37,99,235,.18);
  outline-offset:4px;
  border-radius:10px;
}
.ac-header--minimal-bold .ac-market3-info__icon{
  color:#1f2937;
  flex:0 0 auto;
  margin-top:2px;
}
.ac-header--minimal-bold .ac-market3-info__text{
  display:flex;
  flex-direction:column;
  gap:2px;
  font-family:Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.ac-header--minimal-bold .ac-market3-info__item strong{
  font-size:14px;
  font-weight:700;
  color:#111827;
  font-family:Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.ac-header--minimal-bold .ac-market3-info__text > span{
  font-size:13px;
  color:#2563eb;
  font-family:Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.ac-header--minimal-bold .ac-market3-mobile-search-toggle,
.ac-header--minimal-bold .ac-market3-mobile-search-row{
  display:none;
}
.ac-header--minimal-bold .ac-market3-mobile-cart,
.ac-header--minimal-bold .ac-market3-mobile-cats{
  display:none;
}
.ac-header--minimal-bold .ac-market3-main{
  background:var(--ac-market3-blue);
  border-bottom:1px solid #d4dded;
}
.ac-header--minimal-bold .ac-market3-main .ac-container{
  width:min(var(--nixtheme-header-width, var(--nixtheme-max-width)), 100%);
  margin:0 auto;
  min-height:62px;
  display:grid;
  grid-template-columns:170px minmax(260px, 1fr) auto;
  align-items:center;
  gap:2px;
}
.ac-header--minimal-bold .ac-market3-cats{
  position:relative;
  width:175px;
  flex:0 0 175px;
}
.ac-header--minimal-bold .ac-market3-cats .ac-market-cats__trigger{
  width:100%;
  border:0;
  border-radius:999px;
  height:42px;
  background:#fff;
  color:var(--ac-market3-text);
  font-size:16px;
  font-weight:600;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:flex-start;
  gap:8px;
  padding:0 4px 0 10px;
}
.ac-header--minimal-bold .ac-market3-cats__icon{
  width:30px;
  height:30px;
  border-radius:999px;
  background:#2d67df;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  flex:0 0 auto;
}
.ac-header--minimal-bold .ac-market3-cats__burger{
  width:14px;
  height:2px;
  background:currentColor;
  position:relative;
  display:inline-block;
}
.ac-header--minimal-bold .ac-market3-cats__burger::before,
.ac-header--minimal-bold .ac-market3-cats__burger::after{
  content:"";
  position:absolute;
  left:0;
  width:14px;
  height:2px;
  background:currentColor;
}
.ac-header--minimal-bold .ac-market3-cats__burger::before{ top:-5px; }
.ac-header--minimal-bold .ac-market3-cats__burger::after{ top:5px; }
.ac-header--minimal-bold .ac-market3-cats__menu{
  top:52px;
}
.ac-header--minimal-bold .ac-market3-cats .ac-market-cats__menu{
  position:absolute;
  left:0;
  width:280px;
  margin:0;
  list-style:none;
  padding:0;
  display:none;
  background:#fff;
  border:1px solid #dbe2ee;
  border-radius:5px;
  box-shadow:0 16px 36px rgba(15, 23, 42, 0.12);
  z-index:999;
}
.ac-header--minimal-bold .ac-market3-cats .ac-market-cats__menu-list,
.ac-header--minimal-bold .ac-market3-cats .ac-market-cats__submenu{
  margin:0;
  padding:0;
  list-style:none;
}
.ac-header--minimal-bold .ac-market3-cats.is-open .ac-market-cats__menu{
  display:block;
}
.ac-header--minimal-bold .ac-market3-cats .ac-market-cats__menu-list > li + li,
.ac-header--minimal-bold .ac-market3-cats .ac-market-cats__submenu > li + li{
  border-top:1px solid #edf1f7;
}
.ac-header--minimal-bold .ac-market3-cats .ac-market-cats__menu a{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:11px 16px;
  color:#111827;
  font-size:16px;
  text-decoration:none;
}
.ac-header--minimal-bold .ac-market3-cats .ac-market-cats__menu li{
  position:relative;
}
.ac-header--minimal-bold .ac-market3-cats .ac-market-cats__arrow{
  flex:0 0 auto;
  color:#8a94a6;
  font-size:16px;
  line-height:1;
}
.ac-header--minimal-bold .ac-market3-cats .ac-market-cats__submenu{
  position:absolute;
  top:-1px;
  left:100%;
  width:280px;
  display:none;
  background:#fff;
  border:1px solid #dbe2ee;
  border-radius:5px;
  box-shadow:0 16px 36px rgba(15, 23, 42, 0.12);
  z-index:1000;
}
.ac-header--minimal-bold .ac-market3-cats .ac-market-cats__menu li.has-children:hover > .ac-market-cats__submenu,
.ac-header--minimal-bold .ac-market3-cats .ac-market-cats__menu li.has-children:focus-within > .ac-market-cats__submenu{
  display:block;
}
.ac-header--minimal-bold .ac-market3-cats .ac-market-cats__menu li:hover > a,
.ac-header--minimal-bold .ac-market3-cats .ac-market-cats__menu li:focus-within > a{
  background:#f8fafc;
}
.ac-header--minimal-bold .ac-market3-main .ac-nav{
  justify-content:flex-start;
  margin-left:30px;
}
.ac-header--minimal-bold .ac-market3-main .ac-menu{
  gap:10px;
}
.ac-header--minimal-bold .ac-market3-main .ac-menu a{
  padding:8px 10px;
  border-radius:8px;
  font-family:"Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size:16px;
  font-weight:500;
  color:var(--ac-market3-text);
}
.ac-header--minimal-bold .ac-market3-main .ac-menu .current-menu-item > a,
.ac-header--minimal-bold .ac-market3-main .ac-menu .current_page_item > a{
  background:transparent;
  color:var(--ac-market3-text);
}
.ac-header--minimal-bold .ac-market3-actions{
  gap:10px;
}
.ac-header--minimal-bold .ac-market3-actions .ac-action-link{
  background:#fff;
  border-color:#d7dbe3;
  color:var(--ac-market3-text);
}
.ac-header--minimal-bold .ac-market3-mobile-search-row{
  display:none;
  background:var(--ac-market3-blue);
  border-top:1px solid #d4dded;
}
.ac-header--minimal-bold .ac-market3-mobile-search-row .ac-container{
  width:min(var(--nixtheme-header-width, var(--nixtheme-max-width)), 100%);
  margin:0 auto;
  padding:8px 0 10px;
}
.ac-header--minimal-bold .ac-market3-search--mobile{
  max-width:none;
}

@media (max-width: 1200px){
  .ac-header--clean-split .ac-market-top .ac-container{
    grid-template-columns:auto minmax(240px, 1fr) auto;
    gap:18px;
  }
  .ac-header--clean-split-variation-storefront .ac-clean-split-storefront__top .ac-container{
    grid-template-columns:minmax(150px, 220px) minmax(240px, 1fr) auto;
    gap:18px;
  }
  .ac-header--clean-split .ac-market-main .ac-container{
    grid-template-columns:250px minmax(250px, 1fr) 200px;
  }
}

@media (max-width: 940px){
  .ac-header--minimal-bold{
    top:auto;
  }
  .ac-header--minimal-bold .ac-market3-top{
    position:static;
    border-bottom:1px solid #dbe2ee;
  }
  .ac-header--minimal-bold .ac-market3-top .ac-container{
    min-height:66px;
    grid-template-columns:auto 1fr auto;
    gap:10px;
    padding:0 12px;
    box-sizing:border-box;
  }
  .ac-header--minimal-bold .ac-market3-brand-wrap{
    justify-self:center;
    display:flex;
    justify-content:center;
    width:100%;
    max-width:min(var(--ac-logo-width, 280px), 220px);
    min-width:0;
  }
  .ac-header--minimal-bold .ac-market3-logo{
    width:min(var(--ac-logo-width, 280px), 220px);
    font-size:var(--ac-market3-logo-size-mobile, 26px);
  }
  .ac-header--minimal-bold .ac-market3-logo img{
    max-width:min(var(--ac-logo-width, 280px), 220px);
    max-height:none;
    width:100%;
    height:auto;
  }
  .ac-header--minimal-bold.ac-header--clean-split-variation-minimal-bold .ac-market3-brand-wrap{
    width:auto;
    max-width:min(var(--ac-logo-width, 280px), 220px);
  }
  .ac-header--minimal-bold.ac-header--clean-split-variation-minimal-bold .ac-market3-logo{
    width:auto;
    max-width:min(var(--ac-logo-width, 280px), 220px);
    font-size:var(--ac-clean-split-logo-size-mobile, 38px);
  }
  .ac-header--minimal-bold.ac-header--clean-split-variation-minimal-bold .ac-market3-logo img{
    width:auto;
    max-width:min(var(--ac-logo-width, 280px), 220px);
    max-height:var(--ac-clean-split-logo-size-mobile, 38px);
    height:auto;
  }
  .ac-header--minimal-bold .ac-market3-search,
  .ac-header--minimal-bold .ac-market3-info,
  .ac-header--minimal-bold .ac-market3-main{
    display:none;
  }
  .ac-header--minimal-bold .ac-market3-mobile-cats{
    display:block;
    position:relative;
  }
  .ac-header--minimal-bold .ac-market3-mobile-cats .ac-nav-toggle{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:34px;
    height:34px;
    border:1px solid #d7dbe3;
    border-radius:8px;
    background:#fff;
  }
  .ac-header--minimal-bold .ac-market3-mobile-search-toggle{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:36px;
    height:36px;
    border-radius:999px;
    border:1px solid #d7dbe3;
    background:#fff;
  }
  .ac-header--minimal-bold .ac-market3-mobile-search-toggle__icon--close{
    display:none;
  }
  .ac-header--minimal-bold .ac-market3-mobile-search-toggle.is-open{
    background:#2f6fec;
    border-color:#2f6fec;
    color:#fff;
  }
  .ac-header--minimal-bold .ac-market3-mobile-search-toggle.is-open .ac-market3-mobile-search-toggle__icon--search{
    display:none;
  }
  .ac-header--minimal-bold .ac-market3-mobile-search-toggle.is-open .ac-market3-mobile-search-toggle__icon--close{
    display:block;
  }
  .ac-header--minimal-bold .ac-market3-mobile-cats .ac-market-cats__menu{
      position:fixed;
      top:0;
      left:0;
      width:280px;
      max-height:100vh;
      overflow:auto;
      margin:0;
    list-style:none;
    padding:0;
    display:none;
    background:#fff;
    border-right:1px solid #dbe2ee;
    box-shadow:0 18px 36px rgba(15, 23, 42, 0.15);
    z-index:10002;
  }
  .ac-header--minimal-bold .ac-market3-mobile-cats__head{
    position:absolute;
    top:10px;
    right:12px;
    z-index:2;
  }
  .ac-header--minimal-bold .ac-market3-mobile-cats__close{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:34px;
    height:34px;
    border:1px solid #d7dbe3;
    border-radius:999px;
    background:#fff;
    color:#111827;
    font-size:24px;
    line-height:1;
    cursor:pointer;
  }
  body.admin-bar .ac-header--minimal-bold .ac-market3-mobile-cats .ac-market-cats__menu{
      top:32px;
      max-height:calc(100vh - 32px);
    }
    @media (max-width:782px){
      body.admin-bar .ac-header--minimal-bold .ac-market3-mobile-cats .ac-market-cats__menu{
        top:46px;
        max-height:calc(100vh - 46px);
      }
    }
  .ac-header--minimal-bold .ac-market3-mobile-cats.is-open .ac-market-cats__menu{
    display:block;
  }
  .ac-header--minimal-bold .ac-market3-mobile-cats .ac-market-cats__menu li + li{
    border-top:1px solid #edf1f7;
  }
  .ac-header--minimal-bold .ac-market3-mobile-cats .ac-market-cats__menu a{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    padding:12px 16px;
    font-size:16px;
    color:#111827;
    text-decoration:none;
  }
  .ac-header--minimal-bold .ac-market3-mobile-cats .ac-market-cats__menu > .ac-market-cats__menu-list{
    padding-top:8px;
  }
  .ac-header--minimal-bold .ac-market3-mobile-cats .ac-market-cats__arrow{
    margin-left:auto;
    flex:0 0 auto;
    color:#8a94a6;
    font-size:16px;
    line-height:1;
  }
  .ac-header--minimal-bold .ac-market3-mobile-search-row{
    display:block;
  }
  .ac-header--minimal-bold .ac-market3-mobile-search-row[hidden]{
    display:none !important;
  }
  .ac-header--minimal-bold .ac-market3-mobile-search-row .ac-container{
    padding:8px 12px 10px;
    box-sizing:border-box;
  }
  .ac-header--minimal-bold .ac-market3-search--mobile{
    display:grid;
    grid-template-columns:1fr 54px;
  }

  .ac-header--clean-split .ac-market-top .ac-container{
    min-height:68px;
    display:flex;
    align-items:center;
    gap:10px;
    padding:0 12px;
  }
  .ac-header--clean-split-variation-storefront .ac-clean-split-storefront__top .ac-container{
    min-height:68px;
    display:flex;
    align-items:center;
    gap:10px;
    padding:0 12px;
  }
  .ac-header--clean-split .ac-nav-toggle{
    display:inline-flex;
    order:1;
    flex:0 0 44px;
    justify-content:center;
    color:var(--ac-clean-split-mobile-toggle-color, #111);
  }
  .ac-header--clean-split-variation-storefront .ac-nav-toggle{
    display:inline-flex;
    order:1;
    flex:0 0 44px;
    justify-content:center;
    color:var(--ac-clean-split-mobile-toggle-color, #111);
  }
  .ac-header--clean-split .ac-brand--market{
    order:2;
    flex:1 1 auto;
    min-width:0;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:0 6px;
  }
  .ac-header--clean-split-variation-storefront .ac-brand--market{
    order:2;
    flex:1 1 auto;
    min-width:0;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:0 6px;
  }
  .ac-header--clean-split .ac-brand--market .ac-logo{
    font-size:var(--ac-clean-split-logo-size-mobile);
    max-width:min(220px, 100%);
    margin:0 auto;
  }
  .ac-header--clean-split-variation-storefront .ac-brand--market .ac-logo{
    font-size:var(--ac-clean-split-logo-size-mobile);
    max-width:min(220px, 100%);
    margin:0 auto;
  }
  .ac-header--clean-split .ac-brand--market .ac-logo img{
    max-height:var(--ac-clean-split-logo-size-mobile);
    max-width:100%;
  }
  .ac-header--clean-split-variation-storefront .ac-brand--market .ac-logo img{
    max-height:var(--ac-clean-split-logo-size-mobile);
    max-width:100%;
  }
  .ac-header--clean-split .ac-nav{
    grid-column:1 / -1;
    display:block;
    position:fixed;
    top:0;
    left:0;
    bottom:0;
    right:auto;
    width:calc(100vw - 52px);
    max-width:320px;
    background:#fff !important;
    color:#111 !important;
    border-top:0;
    padding:22px 18px 18px;
    box-sizing:border-box;
    z-index:10030;
    margin:0;
    transform:translate3d(calc(-100% - 14px), 0, 0);
    transition:transform .26s ease;
    box-shadow:0 22px 48px rgba(15, 23, 42, 0.16);
    flex-direction:column;
    justify-content:flex-start;
    overflow-y:auto;
    overflow-x:hidden;
  }
  .ac-header--clean-split-variation-storefront .ac-nav{
    grid-column:1 / -1;
    display:block;
    position:fixed;
    top:0;
    left:0;
    bottom:0;
    right:auto;
    width:calc(100vw - 52px);
    max-width:320px;
    background:#fff !important;
    color:#111 !important;
    border-top:0;
    padding:22px 18px 18px;
    box-sizing:border-box;
    z-index:10030;
    margin:0;
    transform:translate3d(calc(-100% - 14px), 0, 0);
    transition:transform .26s ease;
    box-shadow:0 22px 48px rgba(15, 23, 42, 0.16);
    flex-direction:column;
    justify-content:flex-start;
    overflow-y:auto;
    overflow-x:hidden;
  }
  .ac-header--clean-split .ac-nav.is-open{
    display:flex;
    transform:translate3d(0, 0, 0);
  }
  .ac-header--clean-split-variation-storefront .ac-nav.is-open{
    display:flex;
    transform:translate3d(0, 0, 0);
  }
  .ac-clean-split-drawer-backdrop{
    display:block;
    position:fixed;
    inset:0;
    z-index:10020;
    border:0;
    padding:0;
    background:rgba(17,17,17,.28);
    opacity:0;
    pointer-events:none;
    transition:opacity .22s ease;
  }
  .ac-clean-split-drawer-backdrop.is-open{
    opacity:1;
    pointer-events:auto;
  }
  .ac-clean-split-drawer-head{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:16px;
    margin-bottom:22px;
  }
  .ac-clean-split-drawer-brand{
    display:inline-flex;
    align-items:center;
    max-width:170px;
    color:#111 !important;
  }
  .ac-clean-split-drawer-brand img{
    max-width:100%;
    max-height:40px;
    width:auto;
    height:auto;
    display:block;
  }
  .ac-clean-split-drawer-close{
    width:36px;
    height:36px;
    border:0;
    border-radius:50%;
    background:transparent;
    color:#111 !important;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    line-height:1;
    cursor:pointer;
  }
  .ac-header--clean-split .ac-menu{
    width:100%;
    flex-direction:column;
    align-items:flex-start;
    gap:8px;
  }
  .ac-header--clean-split-variation-storefront .ac-menu{
    width:100%;
    flex-direction:column;
    align-items:flex-start;
    gap:8px;
  }
  .ac-header--clean-split .ac-menu > li{
    width:100%;
  }
  .ac-header--clean-split-variation-storefront .ac-menu > li{
    width:100%;
  }
  .ac-header--clean-split .ac-menu a{
    width:100%;
    padding:6px 0;
    font-size:16px;
    font-weight:600;
    color:#111 !important;
  }
  .ac-header--clean-split-variation-storefront .ac-menu a{
    width:100%;
    padding:6px 0;
    font-size:16px;
    font-weight:600;
    color:#111 !important;
  }
  .ac-header--clean-split .ac-menu .current-menu-item > a,
  .ac-header--clean-split .ac-menu .current_page_item > a,
  .ac-header--clean-split .ac-menu a:hover{
    color:#111 !important;
  }
  .ac-header--clean-split-variation-storefront .ac-menu .current-menu-item > a,
  .ac-header--clean-split-variation-storefront .ac-menu .current_page_item > a,
  .ac-header--clean-split-variation-storefront .ac-menu a:hover{
    color:#111 !important;
  }
  .ac-clean-split-drawer-foot{
    display:flex;
    flex-direction:column;
    gap:12px;
    margin-top:24px;
  }
  .ac-clean-split-contact{
    display:flex;
    align-items:center;
    gap:10px;
    min-height:46px;
    padding:0 14px;
    border-radius:999px;
    background:#f8e8e2;
    color:#30343b !important;
    font-size:15px;
    font-weight:600;
    text-decoration:none;
    box-sizing:border-box;
  }
  .ac-clean-split-contact__icon{
    width:26px;
    height:26px;
    border-radius:50%;
    background:#25d366;
    color:#fff;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    flex:0 0 auto;
  }
  .ac-clean-split-contact__icon svg{
    width:15px;
    height:15px;
    display:block;
  }
  .ac-clean-split-whatsapp-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:46px;
    padding:0 16px;
    border-radius:10px;
    background:#1f9555;
    color:#fff;
    font-size:16px;
    font-weight:700;
    text-decoration:none;
  }
  .ac-header--clean-split .ac-clean-split-whatsapp-btn,
  .ac-header--clean-split .ac-clean-split-whatsapp-btn:visited,
  .ac-header--clean-split .ac-clean-split-whatsapp-btn:hover,
  .ac-header--clean-split .ac-clean-split-whatsapp-btn:focus{
    color:#ffffff;
  }
  .ac-header--clean-split .ac-actions{
    order:3;
    flex:0 0 44px;
    justify-content:flex-end;
    gap:4px;
    margin-left:0;
  }
  .ac-header--clean-split-variation-storefront .ac-clean-split-storefront__search,
  .ac-header--clean-split-variation-storefront .ac-clean-split-storefront__quick-links,
  .ac-header--clean-split-variation-storefront .ac-clean-split-storefront__nav-row .ac-clean-split-storefront__cart{
    display:none;
  }
  .ac-header--clean-split-variation-storefront .ac-clean-split-storefront__mobile-tools{
    order:3;
    flex:0 0 auto;
    display:flex;
    align-items:center;
    justify-content:flex-end;
    gap:0;
    margin-left:0;
  }
  .ac-header--clean-split-variation-storefront .ac-clean-split-storefront__mobile-tools .ac-search-toggle--mobile{
    display:none !important;
  }
  .ac-header--clean-split-variation-storefront .ac-clean-split-storefront__mobile-tools .ac-action-link{
    width:44px;
    height:44px;
    border:0;
    border-radius:0;
    background:transparent;
    color:var(--ac-clean-split-icon-color, currentColor);
    padding:0;
  }
  .ac-header--clean-split-variation-storefront .ac-clean-split-storefront__nav-row{
    border-top:0;
  }
  .ac-header--clean-split-variation-storefront .ac-clean-split-storefront__nav-row .ac-container{
    min-height:0;
    display:block;
    padding:0;
  }
  .ac-header--clean-split .ac-inline-search--clean-split{
    display:none;
  }
  .ac-header--clean-split .ac-actions .ac-action-link[href*="user"],
  .ac-header--clean-split .ac-actions .ac-cart-wrap{
    display:none;
  }
  .ac-header--clean-split .ac-actions .ac-search-toggle{
    display:none;
  }
  .ac-header--clean-split .ac-actions .ac-search-toggle--mobile{
    display:inline-flex !important;
  }
  .ac-header--clean-split .ac-actions .ac-action-link{
    width:36px;
    height:36px;
  }
  .ac-header--clean-split .ac-clean-split-mobile-search-row{
    display:block;
    background:var(--ac-clean-split-main-bg, #000000);
    border-top:1px solid rgba(255, 255, 255, 0.12);
  }
  .ac-header--clean-split-variation-storefront .ac-clean-split-mobile-search-row{
    display:block !important;
    background:#ffffff;
    border-top:1px solid rgba(15, 23, 42, 0.10);
  }
  .ac-header--clean-split .ac-clean-split-mobile-search-row[hidden]{
    display:none !important;
  }
  .ac-header--clean-split-variation-storefront .ac-clean-split-mobile-search-row[hidden]{
    display:block !important;
  }
  .ac-header--clean-split .ac-clean-split-mobile-search-row .ac-container{
    padding:8px 12px 12px;
    box-sizing:border-box;
  }
  .ac-header--clean-split-variation-storefront .ac-clean-split-mobile-search-row .ac-container{
    padding:10px 12px 12px;
    box-sizing:border-box;
  }
  .ac-header--clean-split .ac-clean-split-mobile-search-row .ac-market3-search--mobile{
    display:grid;
    grid-template-columns:minmax(0, 1fr) 46px;
    align-items:center;
    gap:8px;
    min-height:48px;
    padding:0 6px 0 16px;
    border:1px solid rgba(255, 255, 255, 0.14);
    border-radius:999px;
    background:rgba(255, 255, 255, 0.06);
    box-shadow:inset 0 1px 0 rgba(255,255,255,0.04);
  }
  .ac-header--clean-split .ac-clean-split-mobile-search-row .ac-market3-search__input{
    width:100%;
    min-width:0;
    height:46px;
    padding:0;
    border:0;
    outline:none;
    background:transparent;
    box-shadow:none;
    color:#000000;
    font-family:"Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size:15px;
    font-weight:500;
    appearance:none;
    -webkit-appearance:none;
  }
  .ac-header--clean-split .ac-clean-split-mobile-search-row .ac-market3-search__input::placeholder{
    color:rgba(255, 255, 255, 0.62);
  }
  .ac-header--clean-split .ac-clean-split-mobile-search-row .ac-market3-search__submit{
    width:38px;
    height:38px;
    min-width:38px;
    border:0;
    border-radius:999px;
    padding:0;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:#2f67f6;
    color:#ffffff;
    font-size:16px;
    line-height:1;
    cursor:pointer;
    box-shadow:0 8px 18px rgba(47, 103, 246, 0.24);
  }
  .ac-header--clean-split .ac-clean-split-mobile-search-row .ac-market3-search__submit:hover{
    filter:brightness(1.06);
  }
  .ac-header--clean-split .ac-clean-split-mobile-search-row .ac-market3-search--mobile:focus-within{
    border-color:rgba(47, 103, 246, 0.68);
    box-shadow:0 0 0 3px rgba(47, 103, 246, 0.14);
  }
  .ac-header--clean-split-variation-storefront .ac-clean-split-mobile-search-row .ac-market3-search--mobile{
    display:block;
    position:relative;
    width:100%;
    min-height:0;
    padding:0;
    border:0;
    border-radius:0;
    background:transparent;
    box-shadow:none;
  }
  .ac-header--clean-split-variation-storefront .ac-clean-split-mobile-search-row .ac-market3-search__input{
    width:100%;
    min-width:0;
    height:46px;
    padding:0 16px 0 42px;
    border:1px solid rgba(15, 23, 42, 0.22);
    outline:none;
    border-radius:12px;
    background:#ffffff;
    box-shadow:none;
    color:#111111;
    font-family:"Poppins", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size:16px;
    font-weight:500;
    appearance:none;
    -webkit-appearance:none;
  }
  .ac-header--clean-split-variation-storefront .ac-clean-split-mobile-search-row .ac-market3-search__input::placeholder{
    color:rgba(17, 17, 17, 0.68);
  }
  .ac-header--clean-split-variation-storefront .ac-clean-split-mobile-search-row .ac-market3-search__submit{
    position:absolute;
    left:14px;
    top:50%;
    transform:translateY(-50%);
    width:20px;
    height:20px;
    min-width:20px;
    border:0;
    border-radius:0;
    padding:0;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:transparent;
    color:#111111;
    font-size:18px;
    line-height:1;
    cursor:pointer;
    box-shadow:none;
  }
  .ac-header--clean-split-variation-storefront .ac-clean-split-mobile-search-row .ac-market3-search--mobile:focus-within{
    border-color:transparent;
    box-shadow:none;
  }
  .ac-header--clean-split .ac-clean-split-notice .ac-container{
    min-height:0;
    padding:2px 12px;
  }
  .ac-header--clean-split .ac-clean-split-notice__text{
    display:block;
    gap:0;
    padding:2px 0;
    font-size:13px;
    flex-wrap:nowrap;
  }
  .ac-header--clean-split .ac-clean-split-notice__arrow{
    display:inline-block;
    margin-left:6px;
    vertical-align:baseline;
  }
  .ac-header--clean-split .ac-clean-split-contact-banner__inner{
    min-height:auto;
    align-items:flex-start;
    flex-direction:column;
    padding:10px 12px;
  }
  .ac-header--clean-split .ac-clean-split-contact-banner__email,
  .ac-header--clean-split .ac-clean-split-contact-banner__actions{
    width:100%;
  }
  .ac-header--clean-split .ac-clean-split-contact-banner__email{
    display:none;
  }
  .ac-header--clean-split .ac-clean-split-contact-banner__actions{
    display:grid;
    grid-template-columns:repeat(2, minmax(0, 1fr));
    justify-content:stretch;
    gap:7px;
  }
  .ac-header--clean-split .ac-clean-split-contact-banner__btn{
    width:100%;
    max-width:none;
    min-width:0;
    padding:0 10px;
    justify-content:center;
    min-height:44px;
    border-radius:999px;
    box-sizing:border-box;
  }
  .ac-header--clean-split .ac-clean-split-contact-banner__email-text{
    white-space:normal;
    word-break:break-word;
  }
  body.ac-clean-split-nav-open{
    overflow:hidden;
  }

  .ac-header--clean-split.is-sticky-active .ac-clean-split-sticky-bar{
    top:0 !important;
    transform:none;
    animation:none;
  }
}

.ac-header--clean-split.is-sticky-active .ac-clean-split-sticky-bar{
  position:fixed;
  top:0;
  left:0;
  right:0;
  z-index:90;
  box-shadow:none;
  animation:ac-clean-split-sticky-in .28s ease-out;
}
.ac-header--clean-split.ac-clean-split--banner-disabled .ac-clean-split-sticky-bar{
  position:sticky !important;
  top:0 !important;
  z-index:90;
  animation:none;
}
.ac-header--clean-split.ac-clean-split--banner-disabled{
  position:sticky;
  top:0;
  z-index:90;
  padding-top:0;
}

body.admin-bar .ac-header--clean-split.is-sticky-active .ac-clean-split-sticky-bar{
  top:32px;
}

@media (max-width: 782px) {
  body.admin-bar .ac-header--clean-split.is-sticky-active .ac-clean-split-sticky-bar{
    top:46px;
  }
}

@keyframes ac-clean-split-sticky-in{
  from{transform:translateY(-100%);}
  to{transform:translateY(0);}
}

/* Header 3: show sticky row only after JS adds .is-sticky-active (>200px) */
.ac-header--minimal-bold.is-sticky-active{
  padding-top:62px;
}
.ac-header--minimal-bold.is-sticky-active .ac-market3-main{
  position:fixed;
  left:0;
  right:0;
  top:0;
  z-index:10020;
  box-shadow:0 12px 30px rgba(15, 23, 42, 0.10);
  background:rgba(255,255,255,0.74);
  -webkit-backdrop-filter:blur(16px) saturate(170%);
  backdrop-filter:blur(16px) saturate(170%);
  border-bottom:1px solid rgba(219, 226, 238, 0.72);
}
.ac-header--minimal-bold.is-sticky-active .ac-market3-main::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-14px;
  height:14px;
  background:linear-gradient(180deg, rgba(255,255,255,0.22), rgba(255,255,255,0));
  pointer-events:none;
}
.ac-header--minimal-bold.is-sticky-active .ac-market3-main .ac-container{
  background:transparent;
}
body.admin-bar .ac-header--minimal-bold.is-sticky-active .ac-market3-main{
  top:32px;
}
@media (max-width:782px){
  body.admin-bar .ac-header--minimal-bold.is-sticky-active .ac-market3-main{
    top:46px;
  }
}

@media (max-width:940px){
  body{
    overflow-x:hidden;
  }
  .ac-header--minimal-bold.is-sticky-active{
    padding-top:66px;
  }
  .ac-header--minimal-bold.is-sticky-active .ac-market3-main{
    position:static;
    box-shadow:none;
  }
  .ac-header--minimal-bold.is-sticky-active .ac-market3-top{
    position:fixed;
    left:0;
    right:0;
    top:0;
    z-index:10021;
    box-shadow:0 12px 30px rgba(15, 23, 42, 0.10);
    background:rgba(255,255,255,0.72);
    -webkit-backdrop-filter:blur(16px) saturate(170%);
    backdrop-filter:blur(16px) saturate(170%);
    border-bottom:1px solid rgba(219, 226, 238, 0.72);
  }
  .ac-header--minimal-bold.is-sticky-active .ac-market3-top::after{
    content:"";
    position:absolute;
    left:0;
    right:0;
    bottom:-14px;
    height:14px;
    background:linear-gradient(180deg, rgba(255,255,255,0.22), rgba(255,255,255,0));
    pointer-events:none;
  }
  .ac-header--minimal-bold.is-sticky-active .ac-market3-top .ac-container{
    background:transparent;
  }
  body.admin-bar .ac-header--minimal-bold.is-sticky-active .ac-market3-top{
    top:0 !important;
  }
}

/* Cart page: keep banner width aligned with cart content and use Inter typography */
.nixc-shop-banner{
  max-width:1140px;
  margin-left:auto;
  margin-right:auto;
  box-sizing:border-box;
  padding-left:20px;
  padding-right:20px;
  box-shadow:none;
  font-family:Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight:600;
}
.nixc-shop-banner.nixc-shop-banner--shop{
  width:100%;
  max-width:min(var(--nixtheme-body-width, var(--nixtheme-max-width, 1200px)), 100%);
  margin-bottom:20px;
}
.nixc-shop-banner__title{
  font-family:Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight:600;
}

.nixtheme-home-feature-icons{
  padding-top:var(--nixtheme-feature-icons-padding-top, 28px);
  padding-bottom:var(--nixtheme-feature-icons-padding-bottom, 28px);
}
.nixtheme-home-feature-icons__inner{
  width:min(var(--nixtheme-body-width, var(--nixtheme-max-width, 1200px)), 100%);
  margin:0 auto;
  padding:0 20px;
  box-sizing:border-box;
  display:grid;
  grid-template-columns:repeat(var(--nixtheme-feature-icons-columns, 6), minmax(0, 1fr));
  gap:var(--nixtheme-feature-icons-gap, 26px);
}
.nixtheme-home-feature-icons__item{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:flex-start;
  gap:14px;
  text-align:center;
}
.nixtheme-home-feature-icons__icon{
  width:var(--nixtheme-feature-icons-icon-width, 42px);
  min-height:var(--nixtheme-feature-icons-icon-width, 42px);
  display:flex;
  align-items:center;
  justify-content:center;
}
.nixtheme-home-feature-icons__icon img{
  display:block;
  width:100%;
  height:auto;
  object-fit:contain;
}
.nixtheme-home-feature-icons__icon-placeholder{
  display:block;
  width:100%;
  height:100%;
  min-height:var(--nixtheme-feature-icons-icon-width, 42px);
  border:1px dashed rgba(15,23,42,.18);
  border-radius:12px;
}
.nixtheme-home-feature-icons__text{
  color:var(--nixtheme-feature-icons-color, #111111);
  font-family:var(--nixtheme-feature-icons-font, Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif);
  font-size:var(--nixtheme-feature-icons-size, 16px);
  font-weight:var(--nixtheme-feature-icons-weight, 500);
  line-height:1.45;
}

.nixtheme-home-feature-icons-item{
  padding:16px;
  border:1px solid #dbe4f0;
  border-radius:16px;
  background:#f8fbff;
  display:grid;
  gap:12px;
}
.nixtheme-home-feature-icons-item__head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}
.nixtheme-feature-icons-preview{
  min-height:320px;
  padding:28px 24px;
  border-radius:24px;
  background:linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  box-sizing:border-box;
}
.nixtheme-feature-icons-preview.is-mobile{
  max-width:420px;
  margin:0 auto;
  padding-left:18px;
  padding-right:18px;
}
.nixtheme-feature-icons-preview__inner{
  display:grid;
  gap:26px;
  align-items:start;
}
.nixtheme-feature-icons-preview__item{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:flex-start;
  gap:14px;
  text-align:center;
}
.nixtheme-feature-icons-preview__icon{
  display:flex;
  align-items:center;
  justify-content:center;
}
.nixtheme-feature-icons-preview__icon img{
  display:block;
  width:100%;
  height:100%;
  object-fit:contain;
}
.nixtheme-feature-icons-preview__placeholder{
  width:100%;
  height:100%;
  display:block;
  border:1px dashed rgba(15,23,42,.24);
  border-radius:14px;
  background:repeating-linear-gradient(135deg, rgba(148,163,184,.12) 0, rgba(148,163,184,.12) 8px, transparent 8px, transparent 16px);
}
.nixtheme-feature-icons-preview__text{
  line-height:1.45;
}

@media (max-width: 900px){
  .nixtheme-home-feature-icons__inner{
    padding:0 14px;
    grid-template-columns:repeat(var(--nixtheme-feature-icons-columns-mobile, 2), minmax(0, 1fr));
    gap:var(--nixtheme-feature-icons-gap-mobile, 18px);
  }
  .nixtheme-home-feature-icons__icon{
    width:var(--nixtheme-feature-icons-icon-width-mobile, 34px);
    min-height:var(--nixtheme-feature-icons-icon-width-mobile, 34px);
  }
  .nixtheme-home-feature-icons__icon-placeholder{
    min-height:var(--nixtheme-feature-icons-icon-width-mobile, 34px);
  }
  .nixtheme-home-feature-icons__text{
    font-size:var(--nixtheme-feature-icons-size-mobile, 14px);
  }
}
.nixc-shop-banner--checkout{
  max-width:1200px;
  padding-left:20px;
  padding-right:20px;
  margin-bottom:25px;
}
#nixc-cart-area,
#nixc-cart-area *{
  font-family:Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight:600;
}
#nixc-cart-area .nixc-cart-title{
  font-size:22px;
  font-weight:600;
}
#nixc-cart-area .nixc-cart-checkout{
  width:100%;
  max-width:100%;
  box-sizing:border-box;
  display:flex;
  align-items:center;
  justify-content:center;
  background:var(--nixc-float-cart-top-bg, #000000);
  color:#ffffff;
  padding-top:16px;
  padding-bottom:16px;
}
@media (max-width: 900px){
  .nixtheme-home-latest{
    padding-left:10px;
    padding-right:10px;
  }
  .nixc-shop-layout{
    width:100%;
  }
  .nixc-shop-layout--shop2 .nixc-shop-topbar__actions{
    display:grid;
    grid-template-columns:auto minmax(0,1fr);
    gap:12px;
    align-items:end;
  }
  .nixc-shop-layout--shop2 .nixc-shop-category-select-wrap{
    display:none;
  }
  .nixc-shop-layout--shop2 .nixc-shop-sort-wrap--shop2{
    display:flex;
    flex-direction:column;
    align-items:stretch;
    justify-self:end;
    width:100%;
    min-width:0;
  }
  .nixc-shop-layout--shop2 .nixc-shop-mobile-field-label{
    display:block;
  }
  .nixc-shop-layout--shop2 .nixc-shop-sort{
    display:block;
    width:100%;
    min-width:0;
  }
  .nixc-shop-layout--shop2 .nixc-filter-toggle{
    display:inline-flex !important;
    align-items:center;
    justify-content:center;
  }
  #nixc-cart-area .nixc-cart-left{
    order:1;
  }
  #nixc-cart-area .nixc-cart-summary{
    order:2;
  }
}
