:root {
  --ui-primary: #101828;
  --ui-primary-dark: #050b18;
  --ui-accent: #42c8b7;
  --ui-secondary: #ffcf33;
  --ui-danger: #c92520;
  --ui-ink: #101828;
  --ui-muted: #667085;
  --ui-line: #e7eaf0;
  --ui-soft: #f5f7fa;
  --ui-panel: #ffffff;
  --ui-footer: #081120;
  --ui-radius: 8px;
  --ui-shadow: 0 18px 45px rgba(16, 24, 40, .08);
  --ui-font: "Inter", "Jost", "Poppins", Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  background: #fff;
  color: var(--ui-ink);
  font-family: var(--ui-font);
  letter-spacing: 0;
}

body,
button,
input,
select,
textarea {
  font-family: var(--ui-font);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

.container,
.custom-containerr {
  margin-left: auto;
  margin-right: auto;
  max-width: 1180px;
  padding-left: 16px;
  padding-right: 16px;
  width: 100%;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -12px;
  margin-right: -12px;
}

.row > * {
  min-width: 0;
  padding-left: 12px;
  padding-right: 12px;
  width: 100%;
}

.col,
.col-12 {
  flex: 0 0 auto;
  width: 100%;
}

.row-cols-2 > * {
  flex: 0 0 auto;
  width: 50%;
}

.gy-4 {
  row-gap: 24px;
}

.d-flex {
  display: flex;
}

.justify-content-center {
  justify-content: center;
}

.align-items-center {
  align-items: center;
}

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

.w-100 {
  width: 100% !important;
}

.mb-3 {
  margin-bottom: 16px !important;
}

.py-1 {
  padding-bottom: 4px !important;
  padding-top: 4px !important;
}

.order-last {
  order: 6;
}

.d-none {
  display: none !important;
}

.collapse:not(.show) {
  display: none;
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  background: #fff;
  border: 1px solid var(--ui-line);
  border-radius: 8px;
  box-shadow: var(--ui-shadow);
  display: none;
  list-style: none;
  margin: 8px 0 0;
  min-width: 180px;
  padding: 8px;
  position: absolute;
  right: 0;
  top: 100%;
  z-index: 50;
}

.dropdown-menu.show,
.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-item {
  border-radius: 6px;
  color: var(--ui-ink) !important;
  display: block;
  font-size: 13px;
  font-weight: 800;
  margin: 0;
  padding: 9px 10px;
}

.dropdown-item:hover {
  background: var(--ui-soft);
}

.modal {
  background: rgba(16, 24, 40, .54);
  bottom: 0;
  display: none;
  left: 0;
  overflow-x: hidden;
  overflow-y: auto;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 1050;
}

.modal.show {
  display: block;
}

.modal-dialog {
  margin: 28px auto;
  max-width: 560px;
  pointer-events: none;
  width: calc(100% - 32px);
}

.modal-dialog-centered {
  align-items: center;
  display: flex;
  min-height: calc(100% - 56px);
}

.modal-content {
  background: #fff;
  border: 1px solid var(--ui-line);
  border-radius: 8px;
  box-shadow: var(--ui-shadow);
  padding: 24px;
  pointer-events: auto;
  width: 100%;
}

.modal-header {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 18px;
}

.modal-header button {
  background: transparent;
  border: 0;
}

.kc-search .fas.fa-search::before {
  content: "S";
  font-style: normal;
  font-weight: 900;
}

.kc-actions a[aria-label] i {
  display: none;
}

.kc-actions a[aria-label]::before {
  content: attr(aria-label);
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
}

.kc-cart-remove i,
.kc-cart-empty__icon i {
  display: none;
}

.kc-cart-remove::before {
  content: "X";
  font-size: 13px;
  font-weight: 900;
}

.kc-cart-empty__icon::before {
  content: "Bag";
  font-size: 12px;
  font-weight: 900;
}

@media (min-width: 992px) {
  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }

  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.666667%;
  }

  .order-lg-first {
    order: -1;
  }
}

@media (min-width: 1200px) {
  .col-xl-4 {
    flex: 0 0 auto;
    width: 33.333333%;
  }

  .col-xl-8 {
    flex: 0 0 auto;
    width: 66.666667%;
  }
}

.kc-topbar {
  background: #081120;
  color: #fff;
  font-size: 12px;
}

.kc-topbar__inner,
.kc-topbar__links,
.kc-nav,
.kc-menu,
.kc-actions,
.kc-search,
.kc-hero__actions,
.kc-section__head,
.kc-newsletter,
.kc-socials {
  align-items: center;
  display: flex;
}

.kc-topbar__inner {
  justify-content: space-between;
  min-height: 34px;
}

.kc-topbar__links {
  gap: 16px;
}

.kc-topbar a,
.kc-link-button {
  color: #fff;
  font-weight: 700;
}

.kc-link-button {
  background: transparent;
  border: 0;
  padding: 0;
}

.kc-header {
  background: #fff;
  border-bottom: 1px solid var(--ui-line);
  position: sticky;
  top: 0;
  z-index: 30;
}

.kc-nav {
  gap: 28px;
  min-height: 78px;
}

.kc-logo {
  flex: 0 0 auto;
}

.kc-logo img {
  max-height: 48px;
  object-fit: contain;
  width: auto;
}

.kc-menu {
  gap: 22px;
  justify-content: center;
  margin-left: auto;
}

.kc-menu a {
  color: #344054;
  font-size: 14px;
  font-weight: 800;
}

.kc-menu a:hover,
.kc-menu a.active {
  color: var(--ui-accent);
}

.kc-search {
  background: #f4f6f8;
  border: 1px solid var(--ui-line);
  border-radius: 999px;
  height: 42px;
  min-width: 260px;
  overflow: hidden;
}

.kc-search input {
  background: transparent;
  border: 0 !important;
  box-shadow: none !important;
  color: var(--ui-ink);
  flex: 1;
  height: 100%;
  min-width: 0;
  padding: 0 14px;
}

.kc-search button {
  align-items: center;
  background: var(--ui-primary);
  border: 0;
  color: #fff;
  display: flex;
  height: 100%;
  justify-content: center;
  width: 46px;
}

.kc-actions {
  gap: 10px;
}

.kc-actions a {
  align-items: center;
  background: #f4f6f8;
  border: 1px solid var(--ui-line);
  border-radius: 999px;
  color: var(--ui-primary);
  display: flex;
  height: 40px;
  justify-content: center;
  position: relative;
  width: 40px;
}

.kc-actions span {
  align-items: center;
  background: var(--ui-accent);
  border-radius: 999px;
  color: #fff;
  display: flex;
  font-size: 10px;
  font-weight: 900;
  height: 18px;
  justify-content: center;
  position: absolute;
  right: -6px;
  top: -6px;
  width: 18px;
}

.kc-storefront {
  overflow: hidden;
}

.kc-hero {
  background:
    radial-gradient(circle at 77% 18%, rgba(66, 200, 183, .22), transparent 30%),
    linear-gradient(135deg, #f6f7f9 0%, #ffffff 58%, #eef3f6 100%);
  border-bottom: 1px solid var(--ui-line);
}

.kc-hero__grid {
  display: grid;
  gap: 48px;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .8fr);
  min-height: 560px;
  padding-bottom: 54px;
  padding-top: 54px;
}

.kc-hero__copy {
  align-self: center;
}

.kc-eyebrow {
  color: var(--ui-accent);
  display: inline-block;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.kc-hero h1,
.kc-section h2,
.kc-promo h2,
.kc-editorial h2,
.kc-newsletter h2 {
  color: var(--ui-primary);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.02;
}

.kc-hero h1 {
  font-size: clamp(42px, 6vw, 76px);
  max-width: 720px;
}

.kc-hero p {
  color: #475467;
  font-size: 17px;
  line-height: 1.75;
  margin: 22px 0 0;
  max-width: 620px;
}

.kc-hero__actions {
  gap: 12px;
  margin-top: 30px;
}

.kc-button {
  align-items: center;
  border-radius: 6px;
  display: inline-flex;
  font-size: 14px;
  font-weight: 900;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
}

.kc-button--dark {
  background: var(--ui-primary);
  color: #fff;
}

.kc-button--ghost {
  background: #fff;
  border: 1px solid var(--ui-line);
  color: var(--ui-primary);
}

.kc-hero__visual {
  align-self: stretch;
  background: #e8edf0;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  min-height: 460px;
  overflow: hidden;
  padding: 28px;
  position: relative;
}

.kc-hero__visual::before {
  background: #fff;
  border-radius: 999px;
  content: "";
  height: 340px;
  left: 50%;
  opacity: .75;
  position: absolute;
  top: 54%;
  transform: translate(-50%, -50%);
  width: 340px;
}

.kc-hero__visual img {
  height: 100%;
  max-height: 500px;
  object-fit: contain;
  position: relative;
  width: 100%;
  z-index: 1;
}

.kc-hero__product {
  background: rgba(255, 255, 255, .92);
  border: 1px solid var(--ui-line);
  border-radius: 8px;
  bottom: 22px;
  box-shadow: var(--ui-shadow);
  left: 22px;
  max-width: calc(100% - 44px);
  padding: 14px 16px;
  position: absolute;
  z-index: 2;
}

.kc-hero__product span,
.kc-hero__product em {
  color: #667085;
  display: block;
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

.kc-hero__product strong {
  color: var(--ui-primary);
  display: block;
  font-size: 15px;
  margin: 3px 0;
}

.kc-section {
  padding: 76px 0;
}

.kc-section--soft {
  background: #f7f8fa;
}

.kc-section__head {
  justify-content: space-between;
  margin-bottom: 28px;
}

.kc-section__head h2 {
  font-size: clamp(28px, 3vw, 42px);
  margin: 0;
}

.kc-section__head a {
  color: var(--ui-primary);
  font-weight: 900;
}

.kc-category-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.kc-category-card {
  background: #f4f6f8;
  border: 1px solid var(--ui-line);
  border-radius: 8px;
  min-height: 190px;
  padding: 24px;
  position: relative;
  transition: .2s ease;
}

.kc-category-card:hover {
  background: #fff;
  box-shadow: var(--ui-shadow);
  transform: translateY(-2px);
}

.kc-category-card span {
  color: var(--ui-primary);
  display: block;
  font-size: 22px;
  font-weight: 900;
}

.kc-category-card p {
  color: #667085;
  margin-top: 8px;
}

.kc-category-card i {
  bottom: 22px;
  color: var(--ui-accent);
  position: absolute;
  right: 22px;
}

.kc-promo {
  padding: 36px 0;
}

.kc-promo__grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.kc-promo-card {
  border-radius: 8px;
  min-height: 280px;
  padding: 34px;
}

.kc-promo-card--light {
  background: linear-gradient(135deg, #f0d9cc, #fff6ef);
}

.kc-promo-card--dark {
  background: linear-gradient(135deg, #111827, #253247);
  color: #fff;
}

.kc-promo-card h2 {
  font-size: clamp(28px, 3vw, 44px);
  max-width: 440px;
}

.kc-promo-card--dark h2,
.kc-promo-card--dark span,
.kc-promo-card--dark small {
  color: #fff;
}

.kc-promo-card span,
.kc-promo-card small {
  color: var(--ui-primary);
  display: block;
  font-weight: 900;
}

.kc-promo-card small {
  margin-top: 20px;
}

.kc-editorial {
  padding: 0 0 76px;
}

.kc-editorial__panel {
  align-items: center;
  background: #101828;
  border-radius: 8px;
  color: #fff;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  padding: 42px;
}

.kc-editorial h2,
.kc-editorial p {
  color: #fff;
}

.kc-mini-products {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.kc-mini-products a {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  color: #fff;
  padding: 14px;
}

.kc-mini-products img {
  aspect-ratio: 1;
  background: #fff;
  border-radius: 6px;
  object-fit: contain;
  padding: 8px;
  width: 100%;
}

.kc-mini-products span {
  display: block;
  font-size: 13px;
  font-weight: 800;
  margin-top: 10px;
}

.kc-footer {
  background: var(--ui-footer);
  color: #d0d5dd;
  margin-top: 0;
  padding: 54px 0 22px;
}

.kc-newsletter {
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  gap: 24px;
  justify-content: space-between;
  padding-bottom: 34px;
}

.kc-newsletter h2 {
  color: #fff;
  font-size: clamp(26px, 3vw, 38px);
  margin: 0;
}

.kc-newsletter form {
  display: flex;
  gap: 10px;
  min-width: min(100%, 430px);
}

.kc-newsletter input {
  background: #fff;
  border: 0 !important;
  border-radius: 6px !important;
  flex: 1;
  min-height: 46px;
  padding: 0 14px;
}

.kc-newsletter button {
  background: var(--ui-accent);
  border: 0;
  border-radius: 6px;
  color: #fff;
  font-weight: 900;
  padding: 0 18px;
}

.kc-footer__grid {
  display: grid;
  gap: 32px;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  padding: 42px 0 30px;
}

.kc-footer__logo {
  max-height: 46px;
  object-fit: contain;
  width: auto;
}

.kc-footer h3 {
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  margin-bottom: 14px;
}

.kc-footer p,
.kc-footer a,
.kc-footer span {
  color: #d0d5dd;
}

.kc-footer a {
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin: 8px 0;
}

.kc-socials {
  gap: 10px;
}

.kc-socials a {
  align-items: center;
  background: rgba(255, 255, 255, .08);
  border-radius: 999px;
  display: flex;
  height: 32px;
  justify-content: center;
  margin: 0;
  width: 32px;
}

.kc-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding-top: 18px;
}

.kc-listing-page {
  background: #fff;
}

.kc-catalog-page .container {
  max-width: 1320px;
}

.kc-listing-hero {
  background: linear-gradient(135deg, #f6f7f9, #fff);
  border-bottom: 1px solid var(--ui-line);
  padding: 42px 0;
}

.kc-breadcrumb {
  align-items: center;
  color: #667085;
  display: flex;
  flex-wrap: wrap;
  font-size: 13px;
  font-weight: 800;
  gap: 9px;
  margin-bottom: 26px;
}

.kc-breadcrumb a {
  color: #475467;
}

.kc-breadcrumb strong {
  color: var(--ui-primary);
}

.kc-listing-hero__content {
  align-items: end;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.kc-listing-hero h1 {
  color: var(--ui-primary);
  font-size: clamp(34px, 5vw, 60px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.04;
  margin: 0;
}

.kc-listing-hero__content p {
  background: #fff;
  border: 1px solid var(--ui-line);
  border-radius: 999px;
  color: #344054;
  font-weight: 900;
  margin: 0;
  padding: 10px 16px;
  white-space: nowrap;
}

.kc-listing-section {
  padding: 18px 0 82px;
}

.kc-listing-layout {
  align-items: start;
  display: grid;
  gap: 30px;
  grid-template-columns: 210px minmax(0, 1fr);
}

.kc-filter-panel {
  display: grid;
  gap: 10px;
  position: sticky;
  top: 116px;
}

.kc-filter-card {
  background: #fff;
  border: 0;
  border-radius: 0;
  padding: 0;
}

.kc-filter-card__head {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.kc-filter-card h2,
.kc-filter-card h3 {
  color: var(--ui-primary);
  font-size: 12px;
  font-weight: 900;
  margin: 0 0 10px;
}

.kc-filter-card__head h2 {
  margin: 0;
}

.kc-filter-card__head a {
  color: var(--ui-accent);
  font-size: 11px;
  font-weight: 900;
}

.kc-filter-list,
.kc-filter-list ul,
.kc-check-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.kc-filter-list li + li,
.kc-check-list li + li {
  margin-top: 3px;
}

.kc-filter-list ul {
  border-left: 0;
  margin: 3px 0 8px 14px;
  padding-left: 8px;
}

.kc-filter-list a {
  align-items: center;
  border-radius: 4px;
  color: #475467;
  display: flex;
  font-size: 12px;
  font-weight: 800;
  justify-content: space-between;
  padding: 4px 0;
}

.kc-filter-list a:hover,
.kc-filter-list a.active {
  background: transparent;
  color: var(--ui-primary);
}

.kc-filter-list a.active {
  color: var(--ui-accent);
}

.kc-price-filter {
  display: grid;
  gap: 8px;
}

.kc-price-filter__inputs {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr 1fr;
}

.kc-price-filter label span,
.kc-sort-controls label {
  color: #667085;
  display: block;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.kc-price-filter input,
.kc-sort-controls select {
  background: #fff;
  border: 1px solid var(--ui-line) !important;
  border-radius: 4px !important;
  color: var(--ui-primary);
  font-weight: 800;
  min-height: 34px;
  padding: 0 8px;
  width: 100%;
}

.kc-price-filter .range_output {
  background: #f4f6f8;
  color: #667085;
}

.kc-filter-button {
  background: var(--ui-primary);
  border: 0;
  border-radius: 4px;
  color: #fff;
  font-weight: 900;
  min-height: 34px;
}

.kc-check-list li {
  align-items: center;
  display: flex;
  gap: 10px;
}

.kc-check-list input {
  accent-color: var(--ui-primary);
  height: 16px;
  width: 16px;
}

.kc-check-list label {
  color: #475467;
  font-size: 12px;
  font-weight: 800;
}

.kc-recent-products {
  display: grid;
  gap: 12px;
}

.kc-recent-products a {
  align-items: center;
  display: grid;
  gap: 10px;
  grid-template-columns: 52px minmax(0, 1fr);
}

.kc-recent-products img {
  aspect-ratio: 1;
  background: #f4f6f8;
  border-radius: 6px;
  object-fit: contain;
  padding: 6px;
  width: 52px;
}

.kc-recent-products span {
  color: var(--ui-primary);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.3;
}

.kc-listing-results {
  min-width: 0;
}

.kc-listing-toolbar {
  align-items: center;
  background: #fff;
  border: 1px solid var(--ui-line);
  border-radius: 8px;
  display: flex;
  gap: 20px;
  justify-content: space-between;
  margin-bottom: 22px;
  padding: 18px;
}

.kc-catalog-breadcrumb {
  align-items: center;
  color: #667085;
  display: flex;
  font-size: 12px;
  font-weight: 800;
  gap: 8px;
  margin-bottom: 14px;
}

.kc-catalog-breadcrumb a {
  color: #475467;
}

.kc-catalog-breadcrumb strong {
  color: var(--ui-primary);
}

.kc-catalog-topbar {
  align-items: center;
  border-bottom: 1px solid var(--ui-line);
  border-top: 1px solid var(--ui-line);
  display: flex;
  justify-content: space-between;
  margin-bottom: 24px;
  min-height: 52px;
}

.kc-catalog-tools,
.kc-sort-inline,
.kc-catalog-tools--right {
  align-items: center;
  display: flex;
  gap: 12px;
}

.kc-catalog-tools {
  color: #344054;
  font-size: 12px;
  font-weight: 900;
}

.kc-tool-button,
.kc-view-button,
.kc-compare-toggle {
  align-items: center;
  background: transparent;
  border: 0;
  color: var(--ui-primary);
  display: inline-flex;
  font-size: 12px;
  font-weight: 900;
  gap: 7px;
  padding: 0;
}

.kc-compare-toggle {
  background: #f4f6f8;
  border-radius: 999px;
  height: 22px;
  justify-content: center;
  width: 36px;
}

.kc-view-button {
  color: #98a2b3;
  height: 28px;
  justify-content: center;
  width: 24px;
}

.kc-view-button.active {
  color: var(--ui-primary);
}

.kc-sort-inline select {
  background: transparent;
  border: 0;
  color: #475467;
  font-size: 12px;
  font-weight: 800;
  min-height: 34px;
  padding: 0 20px 0 2px;
}

.kc-catalog-summary {
  align-items: center;
  color: #667085;
  display: flex;
  flex-wrap: wrap;
  font-size: 12px;
  font-weight: 800;
  gap: 12px;
  justify-content: space-between;
  margin-bottom: 18px;
}

.kc-catalog-summary strong {
  color: var(--ui-primary);
  font-size: 14px;
  font-weight: 900;
}

.kc-catalog-summary select {
  background: #fff;
  border: 1px solid var(--ui-line);
  border-radius: 4px;
  color: var(--ui-primary);
  font-size: 12px;
  font-weight: 800;
  min-height: 32px;
  padding: 0 8px;
}

.kc-listing-toolbar h2 {
  color: var(--ui-primary);
  font-size: 26px;
  font-weight: 900;
  margin: 0;
}

.kc-listing-toolbar p {
  color: #667085;
  font-size: 13px;
  font-weight: 800;
  margin: 6px 0 0;
}

.kc-sort-controls {
  align-items: end;
  display: flex;
  gap: 10px;
}

.kc-sort-controls select {
  min-width: 150px;
}

.kc-product-grid {
  display: grid;
  column-gap: 22px;
  row-gap: 34px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.kc-product-grid__item {
  min-width: 0;
}

.kc-empty-state {
  align-items: center;
  background: #f7f8fa;
  border: 1px solid var(--ui-line);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  min-height: 320px;
  justify-content: center;
  padding: 36px;
  text-align: center;
}

.kc-list-view {
  display: grid;
  gap: 18px;
}

.kc-catalog-page .ui-product-card {
  border: 0;
  border-radius: 0 !important;
  box-shadow: none;
}

.kc-catalog-page .ui-product-card:hover {
  box-shadow: none;
  transform: none;
}

.kc-catalog-page .ui-product-card__media {
  aspect-ratio: 1 / .92;
  background: #f2f3f5;
  border-radius: 6px;
  padding: 16px 16px 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.kc-catalog-page .ui-product-card__media > a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  min-height: 0;
  width: 100%;
}

.kc-catalog-page .ui-product-card__media > a img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.kc-catalog-page .ui-product-card__body {
  padding: 12px 0 0;
  text-align: center;
}

.kc-catalog-page .ui-product-card__title {
  font-size: 13px;
  margin-bottom: 4px;
  min-height: auto;
}

.kc-catalog-page .ui-product-card__price {
  justify-content: center;
}

.kc-catalog-page .ui-product-card__price h6 {
  font-size: 12px;
}

.kc-catalog-page .ui-product-card__rating {
  display: none;
}

.kc-catalog-page .ui-product-card__actions {
  bottom: auto;
  justify-content: center;
  left: 0;
  opacity: 1;
  padding-top: 8px;
  position: relative;
  right: 0;
  transform: none;
  width: 100%;
}

.kc-catalog-page .ui-product-card__cart {
  background: transparent;
  border: 0;
  color: var(--ui-primary);
  font-size: 11px;
  font-weight: 800;
  height: 22px;
  min-width: 0;
  padding: 0;
}

.kc-catalog-page .ui-product-card__cart:hover {
  background: transparent;
  color: var(--ui-accent);
}

.kc-catalog-page .ui-product-card__action-icon {
  display: none;
}

.kc-catalog-page .ui-product-card__icon {
  height: 28px;
  right: 8px;
  top: 8px;
  width: 28px;
}

.kc-catalog-page .ui-product-card__badge {
  font-size: 10px;
  left: 8px;
  padding: 3px 6px;
  top: 8px;
}

.kc-empty-state span {
  color: var(--ui-primary);
  font-size: 24px;
  font-weight: 900;
}

.kc-empty-state p {
  color: #667085;
  font-weight: 700;
  margin: 10px 0 18px;
}

.kc-empty-state a {
  background: var(--ui-primary);
  border-radius: 6px;
  color: #fff;
  font-weight: 900;
  padding: 12px 18px;
}

.kc-pagination {
  margin-top: 32px;
}

.kc-pagination .pagination {
  gap: 6px;
  justify-content: center;
}

.kc-pagination .page-link {
  border-color: var(--ui-line);
  border-radius: 6px;
  color: var(--ui-primary);
  font-weight: 800;
}

.kc-pagination .active .page-link,
.kc-pagination .page-link:hover {
  background: var(--ui-primary);
  border-color: var(--ui-primary);
  color: #fff;
}

.info-bar {
  background: var(--ui-footer) !important;
  min-height: 34px;
}

.info-bar a,
.info-bar button {
  color: #fff !important;
  font-size: 12px;
}

.header-section {
  background: #fff;
  border-bottom: 1px solid var(--ui-line);
}

.header-top {
  padding: 14px 0;
}

.create-navbar {
  align-items: center;
  gap: 24px;
}

.header-logo-wrapper .logo,
.footer-row .logo,
.admin-logo img {
  max-height: 44px !important;
  width: auto;
  object-fit: contain;
}

.nav-menus {
  gap: 20px;
}

.nav-menus a,
.nav-link {
  color: #344054;
  font-size: 14px;
  font-weight: 600;
}

.nav-menus a:hover,
.nav-link.active,
.nav-menus .active > a {
  color: var(--ui-primary-dark);
}

.icon-circle button,
.icon-circle a,
.nav-right a,
.nav-right button {
  background: var(--ui-soft);
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--ui-ink);
  min-height: 36px;
  min-width: 36px;
}

.search-form,
.search-box,
.category-select,
.nice-select,
input,
select,
textarea {
  border-color: var(--ui-line) !important;
  border-radius: var(--ui-radius) !important;
}

.template-btn,
.mybtn1,
.add-cart,
.newsletter-btn,
button[type="submit"] {
  background: var(--ui-ink);
  border: 1px solid var(--ui-ink);
  border-radius: 6px;
  color: #fff;
  font-weight: 700;
  transition: .2s ease;
}

.template-btn:hover,
.mybtn1:hover,
.add-cart:hover,
.newsletter-btn:hover {
  background: var(--ui-primary);
  border-color: var(--ui-primary);
  color: #fff;
}

.gs-breadcrumb-section {
  background-color: var(--ui-soft);
  min-height: 180px;
}

.breadcrumb-title,
.section-title,
.title,
.widget-title {
  color: var(--ui-ink);
  font-weight: 800;
  letter-spacing: 0;
}

.single-product,
.product-wrapper,
.single-product-widget,
.billing-info,
.shipping-info,
.vendor-info-card,
.user-profile-details,
.dashboard-card,
.card {
  border: 1px solid var(--ui-line);
  border-radius: var(--ui-radius) !important;
  box-shadow: none;
}

.ui-product-card {
  background: var(--ui-panel);
  height: 100%;
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.ui-product-card:hover {
  border-color: rgba(66, 200, 183, .45);
  box-shadow: var(--ui-shadow);
  transform: translateY(-2px);
}

.ui-product-card__media {
  align-items: center;
  aspect-ratio: 1 / .86;
  background: #f1f3f6;
  display: flex;
  justify-content: center;
  margin: 0;
  overflow: hidden;
  padding: 24px;
  position: relative;
}

.ui-product-card__image {
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.ui-product-card__badge,
.product-badge,
.on-sale {
  background: #fff;
  border: 1px solid var(--ui-line);
  border-radius: 4px;
  color: var(--ui-danger);
  font-size: 12px;
  font-weight: 800;
  left: 12px;
  padding: 4px 8px;
  top: 12px;
}

.ui-product-card__icon {
  align-items: center;
  background: #fff;
  border: 1px solid var(--ui-line);
  border-radius: 999px;
  color: var(--ui-ink);
  display: flex;
  height: 34px;
  justify-content: center;
  position: absolute;
  right: 12px;
  top: 12px;
  width: 34px;
  z-index: 2;
}

.ui-product-card__actions {
  align-items: center;
  bottom: 12px;
  display: flex;
  gap: 8px;
  justify-content: center;
  left: 12px;
  opacity: 0;
  position: absolute;
  right: 12px;
  transform: translateY(8px);
  transition: .2s ease;
}

.ui-product-card:hover .ui-product-card__actions {
  opacity: 1;
  transform: translateY(0);
}

.ui-product-card__cart {
  align-items: center;
  display: flex;
  font-size: 13px;
  height: 38px;
  justify-content: center;
  min-width: 132px;
  padding: 0 18px;
}

.ui-product-card__action-icon {
  align-items: center;
  background: #fff;
  border: 1px solid var(--ui-line);
  border-radius: 6px;
  color: var(--ui-ink);
  display: flex;
  height: 38px;
  justify-content: center;
  width: 38px;
}

.ui-product-card__body {
  padding: 14px 14px 16px;
}

.ui-product-card__title {
  color: var(--ui-ink);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
  margin-bottom: 8px;
  min-height: 38px;
}

.ui-product-card__price {
  align-items: center;
  display: flex;
  gap: 8px;
}

.ui-product-card__price h6 {
  color: var(--ui-ink);
  font-size: 14px;
  font-weight: 800;
  margin: 0;
}

.ui-product-card__price del {
  color: var(--ui-muted);
  font-weight: 500;
}

.ui-product-card__rating {
  align-items: center;
  color: #f5a524;
  display: flex;
  font-size: 12px;
  gap: 5px;
  margin-top: 8px;
}

.ui-product-card__rating span {
  color: var(--ui-muted);
}

.gs-product-sidebar-wrapper,
.single-product-widget {
  background: #fff;
}

.single-product-widget {
  margin-bottom: 16px;
  padding: 20px;
}

.product-cat-widget a,
.footer-category-links a {
  color: #475467;
  font-weight: 600;
}

.sidebar-active-color,
.product-cat-widget a:hover {
  color: var(--ui-primary-dark) !important;
}

.gs-footer-section {
  background: var(--ui-footer);
  color: #d0d5dd;
  margin-top: 64px;
  padding-top: 0;
}

.gs-footer-section .newslatter {
  background: #fff;
  border-bottom: 1px solid var(--ui-line);
  color: var(--ui-ink);
  padding: 28px 0;
}

.gs-footer-section h5,
.gs-footer-section h2 {
  color: #fff;
}

.gs-footer-section .newslatter h2 {
  color: var(--ui-ink);
}

.footer-row {
  padding: 54px 0 34px;
}

.gs-footer-section a,
.gs-footer-section p {
  color: #d0d5dd;
}

.gs-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding: 18px 0;
}

.gs-footer-bottom p {
  margin: 0;
}

.table {
  background: #fff;
  border-collapse: separate;
  border-spacing: 0;
}

.table thead th {
  background: var(--ui-soft);
  border-bottom: 1px solid var(--ui-line);
  color: #344054;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.kc-cart-page {
  background: #fff;
  color: var(--ui-ink);
}

.kc-cart-hero {
  background: #f5f7fa;
  border-bottom: 1px solid var(--ui-line);
  padding: 28px 0 42px;
}

.kc-cart-hero__content {
  max-width: 620px;
  padding-top: 18px;
}

.kc-cart-hero h1 {
  color: var(--ui-ink);
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
  margin: 6px 0 10px;
}

.kc-cart-hero p {
  color: var(--ui-muted);
  font-size: 15px;
  margin: 0;
}

.kc-cart-section {
  padding: 56px 0 72px;
}

.kc-cart-layout {
  align-items: start;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1fr) 360px;
}

.kc-cart-panel,
.kc-cart-summary__panel,
.kc-cart-empty {
  background: #fff;
  border: 1px solid var(--ui-line);
  border-radius: 8px;
  box-shadow: 0 18px 55px rgba(15, 23, 42, .06);
}

.kc-cart-panel__head {
  align-items: center;
  border-bottom: 1px solid var(--ui-line);
  display: flex;
  justify-content: space-between;
  padding: 22px 24px;
}

.kc-cart-panel__head h2,
.kc-cart-summary__panel h2 {
  color: var(--ui-ink);
  font-size: 24px;
  font-weight: 900;
  margin: 4px 0 0;
}

.kc-cart-count {
  background: var(--ui-soft);
  border-radius: 999px;
  color: var(--ui-muted);
  font-size: 12px;
  font-weight: 800;
  padding: 8px 12px;
}

.kc-cart-list {
  display: grid;
}

.kc-cart-item {
  align-items: center;
  display: grid;
  gap: 18px;
  grid-template-columns: 126px minmax(180px, 1fr) 115px 136px 126px 40px;
  padding: 22px 24px;
}

.kc-cart-item + .kc-cart-item {
  border-top: 1px solid var(--ui-line);
}

.kc-cart-item__media {
  align-items: center;
  aspect-ratio: 1 / 1;
  background: #f1f3f6;
  border-radius: 6px;
  display: flex;
  justify-content: center;
  overflow: hidden;
  padding: 12px;
}

.kc-cart-item__media img {
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.kc-cart-item__details {
  min-width: 0;
}

.kc-cart-item__title {
  color: var(--ui-ink);
  display: inline-block;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.35;
}

.kc-cart-item__title:hover {
  color: var(--ui-primary-dark);
}

.kc-cart-item__meta {
  color: var(--ui-muted);
  display: flex;
  flex-wrap: wrap;
  font-size: 12px;
  font-weight: 700;
  gap: 10px;
  margin-top: 10px;
}

.kc-cart-item__meta strong {
  color: var(--ui-ink);
}

.kc-cart-swatch-row {
  align-items: center;
  display: inline-flex;
  gap: 6px;
}

.kc-cart-swatch {
  border: 1px solid var(--ui-line);
  border-radius: 999px;
  display: inline-block;
  height: 14px;
  width: 14px;
}

.kc-cart-item__price,
.kc-cart-item__quantity,
.kc-cart-item__subtotal {
  display: grid;
  gap: 8px;
}

.kc-cart-item__price span,
.kc-cart-item__quantity > span,
.kc-cart-item__subtotal span {
  color: var(--ui-muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.kc-cart-item__price strong,
.kc-cart-item__quantity strong,
.kc-cart-item__subtotal strong {
  color: var(--ui-ink);
  font-size: 14px;
  font-weight: 900;
}

.kc-cart-item__subtotal small {
  color: var(--ui-danger);
  font-size: 12px;
  font-weight: 800;
}

.kc-cart-item__mobile-price {
  display: none;
}

.kc-quantity-control {
  align-items: center;
  background: #fff;
  border: 1px solid var(--ui-line);
  border-radius: 999px;
  display: inline-flex;
  height: 40px;
  justify-content: space-between;
  max-width: 124px;
  overflow: hidden;
}

.kc-quantity-control .cart-quantity-btn {
  align-items: center;
  background: transparent;
  border: 0;
  color: var(--ui-ink);
  display: flex;
  font-size: 16px;
  font-weight: 900;
  height: 40px;
  justify-content: center;
  padding: 0;
  width: 38px;
}

.kc-quantity-control .cart-quantity-btn:hover {
  background: var(--ui-soft);
}

.kc-quantity-input {
  border: 0 !important;
  color: var(--ui-ink);
  font-size: 14px;
  font-weight: 900;
  height: 38px;
  padding: 0;
  text-align: center;
  width: 42px;
}

.kc-cart-remove {
  align-items: center;
  background: #fff;
  border: 1px solid var(--ui-line);
  border-radius: 999px;
  color: var(--ui-muted);
  display: flex;
  height: 38px;
  justify-content: center;
  width: 38px;
}

.kc-cart-remove:hover {
  background: rgba(244, 67, 54, .08);
  border-color: rgba(244, 67, 54, .24);
  color: var(--ui-danger);
}

.kc-cart-summary {
  position: sticky;
  top: 18px;
}

.kc-cart-summary__panel {
  padding: 24px;
}

.kc-summary-lines {
  border-bottom: 1px solid var(--ui-line);
  border-top: 1px solid var(--ui-line);
  display: grid;
  gap: 14px;
  margin: 22px 0;
  padding: 18px 0;
}

.kc-summary-line,
.kc-summary-total {
  align-items: center;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.kc-summary-line span,
.kc-summary-total span {
  color: var(--ui-muted);
  font-size: 14px;
  font-weight: 700;
}

.kc-summary-line small {
  color: var(--ui-muted);
}

.kc-summary-line strong {
  color: var(--ui-ink);
  font-size: 14px;
  font-weight: 900;
}

.kc-cart-coupon {
  display: grid;
  gap: 9px;
}

.kc-cart-coupon label {
  color: var(--ui-ink);
  font-size: 12px;
  font-weight: 900;
  margin: 0;
  text-transform: uppercase;
}

.kc-cart-coupon__control {
  display: grid;
  gap: 8px;
  grid-template-columns: minmax(0, 1fr) auto;
}

.kc-cart-coupon__control input {
  background: #fff;
  border: 1px solid var(--ui-line);
  color: var(--ui-ink);
  height: 44px;
  padding: 0 14px;
  width: 100%;
}

.kc-cart-coupon__control button {
  background: #fff;
  border: 1px solid var(--ui-ink);
  border-radius: 6px;
  color: var(--ui-ink);
  font-size: 13px;
  font-weight: 900;
  height: 44px;
  padding: 0 18px;
}

.kc-cart-coupon__control button:hover {
  background: var(--ui-ink);
  color: #fff;
}

.kc-summary-total {
  border-top: 1px solid var(--ui-line);
  margin-top: 22px;
  padding-top: 20px;
}

.kc-summary-total strong {
  color: var(--ui-ink);
  font-size: 22px;
  font-weight: 900;
}

.kc-cart-checkout {
  align-items: center;
  display: flex;
  height: 48px;
  justify-content: center;
  margin-top: 22px;
  width: 100%;
}

.kc-cart-empty {
  margin: 0 auto;
  max-width: 560px;
  padding: 54px 24px;
  text-align: center;
}

.kc-cart-empty__icon {
  align-items: center;
  background: var(--ui-soft);
  border-radius: 999px;
  color: var(--ui-ink);
  display: inline-flex;
  height: 58px;
  justify-content: center;
  margin-bottom: 18px;
  width: 58px;
}

.kc-cart-empty h2 {
  color: var(--ui-ink);
  font-size: 28px;
  font-weight: 900;
  margin: 0 0 8px;
}

.kc-cart-empty p {
  color: var(--ui-muted);
  margin: 0 auto 22px;
  max-width: 340px;
}

.kc-auth-page {
  background: var(--ui-soft);
  padding: 72px 0;
}

.kc-auth-card {
  background: #fff;
  border: 1px solid var(--ui-line);
  border-radius: 8px;
  box-shadow: var(--ui-shadow);
  margin: 0 auto;
  max-width: 520px;
  padding: 34px;
}

.kc-auth-card h1 {
  color: var(--ui-ink);
  font-size: 32px;
  font-weight: 900;
  margin: 8px 0 10px;
}

.kc-auth-card p,
.twofa-panel p {
  color: var(--ui-muted);
}

.kc-auth-form,
.twofa-form {
  display: grid;
  gap: 12px;
}

.kc-auth-form label,
.twofa-form label {
  color: var(--ui-ink);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.kc-auth-form input,
.twofa-form input {
  border: 1px solid var(--ui-line);
  height: 48px;
  padding: 0 14px;
}

.twofa-panel {
  background: #fff;
  border: 1px solid var(--ui-line);
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(16, 24, 40, .06);
  padding: 26px;
}

.twofa-panel__header {
  align-items: flex-start;
  border-bottom: 1px solid var(--ui-line);
  display: flex;
  gap: 18px;
  justify-content: space-between;
  margin-bottom: 22px;
  padding-bottom: 20px;
}

.twofa-panel__header h2,
.twofa-card h3 {
  color: var(--ui-ink);
  font-weight: 900;
  margin: 0 0 8px;
}

.twofa-status {
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  padding: 8px 12px;
}

.twofa-status.is-enabled {
  background: rgba(18, 183, 106, .12);
  color: #067647;
}

.twofa-status.is-disabled {
  background: rgba(201, 37, 32, .1);
  color: var(--ui-danger);
}

.twofa-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 320px minmax(0, 1fr);
}

.twofa-card {
  background: var(--ui-soft);
  border: 1px solid var(--ui-line);
  border-radius: 8px;
  padding: 22px;
}

.twofa-qr {
  background: #fff;
  border: 1px solid var(--ui-line);
  border-radius: 8px;
  display: inline-flex;
  margin: 12px 0 16px;
  padding: 14px;
}

.twofa-qr svg {
  display: block;
  height: 220px;
  max-width: 100%;
  width: 220px;
}

.twofa-setup-card label {
  color: var(--ui-muted);
  display: block;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.twofa-secret {
  background: #fff;
  border: 1px dashed var(--ui-line);
  border-radius: 6px;
  color: var(--ui-ink);
  font-family: Consolas, Monaco, monospace;
  font-weight: 900;
  overflow-wrap: anywhere;
  padding: 12px;
}

.twofa-danger-btn {
  background: var(--ui-danger) !important;
  border-color: var(--ui-danger) !important;
}

.gs-breadcrumb-section {
  background-position: center;
  background-size: cover;
  border-bottom: 1px solid var(--ui-line);
  min-height: auto;
  padding: 38px 0;
}

.gs-breadcrumb-section .content-wrapper {
  min-height: 0;
}

.bread-menu,
.product-breadcrumb,
.product-stocks-wraper ul,
.variation-wrapper ul,
.attribute-wrapper ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.bread-menu,
.product-breadcrumb {
  align-items: center;
  color: var(--ui-muted);
  display: flex;
  flex-wrap: wrap;
  font-size: 13px;
  font-weight: 800;
  gap: 9px;
}

.bread-menu li + li::before,
.product-breadcrumb li + li::before {
  color: #98a2b3;
  content: "/";
  margin-right: 9px;
}

.single-product-details-content-wrapper {
  padding: 52px 0 70px;
}

.single-product-details-content-wrapper > .container > .row {
  align-items: flex-start;
}

.gs-product-details-gallery-wrapper {
  display: grid;
  gap: 14px;
  min-width: 0;
  position: sticky;
  top: 112px;
}

.product-main-slider {
  background: #f4f6f8;
  border: 1px solid var(--ui-line);
  border-radius: 8px;
  display: flex;
  min-height: 520px;
  overflow: hidden;
}

.product-main-slider .slick-list,
.product-main-slider .slick-track {
  min-height: 520px;
  width: 100%;
}

.product-main-slider .main-img {
  aspect-ratio: 1 / 1;
  height: 520px;
  object-fit: contain;
  padding: 28px;
  width: 100%;
}

.product-nav-slider {
  display: flex;
  gap: 10px;
  min-width: 0;
}

.product-nav-slider .slick-track {
  display: flex;
  gap: 10px;
}

.product-nav-slider .nav-img {
  background: #fff;
  border: 1px solid var(--ui-line);
  border-radius: 6px;
  cursor: pointer;
  height: 86px;
  object-fit: contain;
  padding: 8px;
  width: 86px !important;
}

.product-nav-slider .slick-current .nav-img,
.product-nav-slider .nav-img:hover {
  border-color: var(--ui-primary);
}

.product-info-wrapper h3 {
  color: var(--ui-ink);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 900;
  line-height: 1.08;
  margin: 0 0 18px;
}

.price-wrapper {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}

.price-wrapper h5 {
  margin: 0;
}

#sizeprice {
  color: var(--ui-ink);
  font-size: 28px;
  font-weight: 900;
}

#previousprice {
  color: var(--ui-muted);
  font-size: 16px;
  font-weight: 700;
}

.product-badge {
  position: static;
}

.rating-wrapper {
  align-items: center;
  color: var(--ui-muted);
  display: flex;
  font-size: 14px;
  font-weight: 800;
  gap: 8px;
}

.single-product-details-content-wrapper hr {
  border: 0;
  border-top: 1px solid var(--ui-line);
  margin: 22px 0;
}

.product-stocks-wraper ul {
  display: grid;
  gap: 9px;
}

.product-stocks-wraper li,
.attribute-wrapper,
.variation-wrapper,
.add-qty-wrapper {
  color: var(--ui-muted);
  font-size: 14px;
  font-weight: 700;
}

.stock-availability,
.out-stock {
  color: var(--ui-danger);
  display: inline-flex;
  font-weight: 900;
}

.attribute-wrapper,
.variation-wrapper,
.add-qty-wrapper {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.attribute-title,
.varition-title {
  color: var(--ui-ink);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.attribute-wrapper ul,
.variation-sizes ul,
.variation-colors ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.gs-radio-wrapper {
  align-items: center;
  background: #fff;
  border: 1px solid var(--ui-line);
  border-radius: 999px;
  display: inline-flex;
  gap: 8px;
  min-height: 42px;
  padding: 8px 12px;
}

.gs-radio-wrapper input,
.variation-wrapper input {
  accent-color: var(--ui-primary);
}

.variation-sizes li {
  position: relative;
}

.variation-sizes input,
.variation-colors input {
  height: 1px;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  width: 1px;
}

.variation-sizes label {
  align-items: center;
  background: #fff;
  border: 1px solid var(--ui-line);
  border-radius: 999px;
  color: var(--ui-ink);
  cursor: pointer;
  display: inline-flex;
  font-size: 13px;
  font-weight: 900;
  min-height: 42px;
  padding: 0 16px;
}

.variation-sizes li.active label,
.variation-sizes input:checked + label {
  background: var(--ui-ink);
  border-color: var(--ui-ink);
  color: #fff;
}

.variation-colors label {
  background: var(--color, #fff);
  border: 2px solid #fff;
  border-radius: 999px;
  box-shadow: 0 0 0 1px var(--ui-line);
  cursor: pointer;
  display: block;
  height: 34px;
  width: 34px;
}

.variation-colors li.active label,
.variation-colors input:checked + label {
  box-shadow: 0 0 0 2px var(--ui-ink);
}

.product-input-wrapper {
  align-items: center;
  border: 1px solid var(--ui-line);
  border-radius: 999px;
  display: inline-flex;
  height: 44px;
  overflow: hidden;
  width: max-content;
}

.product-input-wrapper .action-btn {
  align-items: center;
  background: #fff;
  border: 0;
  color: var(--ui-ink);
  display: flex;
  font-size: 18px;
  font-weight: 900;
  height: 44px;
  justify-content: center;
  padding: 0;
  width: 44px;
}

.product-input-wrapper .action-btn:hover {
  background: var(--ui-soft);
}

.product-input-wrapper .qty-input {
  border: 0 !important;
  color: var(--ui-ink);
  font-weight: 900;
  height: 42px;
  padding: 0;
  text-align: center;
  width: 48px;
}

.single-product-details-content-wrapper .template-btn {
  align-items: center;
  display: inline-flex;
  justify-content: center;
  min-height: 48px;
  text-transform: capitalize;
}

.dark-btn {
  background: var(--ui-accent) !important;
  border-color: var(--ui-accent) !important;
}

.wish-compare-report-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 18px 0;
}

.wish-compare-report-wrapper .link {
  align-items: center;
  border: 1px solid var(--ui-line);
  border-radius: 999px;
  color: var(--ui-ink);
  display: inline-flex;
  font-size: 13px;
  font-weight: 900;
  gap: 8px;
  min-height: 42px;
  padding: 0 14px;
}

.wish-compare-report-wrapper svg {
  height: 18px;
  width: 18px;
}

.share-links {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.share-links h4 {
  color: var(--ui-ink);
  font-size: 13px;
  font-weight: 900;
  margin: 0;
  text-transform: uppercase;
}

.share-links-wrapper {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.nav-tabs,
.my-tab,
.tab-menu,
.description-tab-menu {
  border-bottom: 1px solid var(--ui-line);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  margin: 42px 0 22px;
  padding: 0;
}

.tab-content,
.tab-pane,
.description-tab-content,
.review-area,
.write-comment-area {
  min-width: 0;
}

.checkout {
  background: #f7f8fa;
  min-height: 100vh;
  padding: 48px 0 72px;
}

.checkout .checkout-area,
.checkout .order-box,
.checkout .payment-information,
.checkout .pay-area,
.checkout .cupon-box,
.checkout .cart-summary,
.checkout .card {
  background: #fff;
  border: 1px solid var(--ui-line);
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(16, 24, 40, .06);
}

.checkout .checkout-area,
.checkout .order-box {
  padding: 0;
}

.checkout .content-box,
.checkout .payment-information,
.checkout .pay-area,
.checkout .cupon-box,
.checkout .cart-summary {
  padding: 22px;
}

.checkout .title {
  color: var(--ui-ink);
  font-size: 22px;
  font-weight: 900;
  margin: 0 0 18px;
}

.checkout .nav {
  display: grid;
  gap: 10px;
}

.checkout .nav-link.payment {
  align-items: center;
  border: 1px solid var(--ui-line);
  border-radius: 8px;
  color: var(--ui-ink);
  display: flex;
  gap: 12px;
  padding: 14px;
}

.checkout .nav-link.payment.active,
.checkout .nav-link.payment:hover {
  border-color: var(--ui-accent);
  box-shadow: 0 0 0 3px rgba(66, 200, 183, .12);
}

.checkout .payment .icon {
  align-items: center;
  border: 1px solid var(--ui-line);
  border-radius: 999px;
  display: flex;
  height: 22px;
  justify-content: center;
  width: 22px;
}

.checkout .payment .radio {
  background: var(--ui-accent);
  border-radius: 999px;
  display: block;
  height: 10px;
  opacity: 0;
  width: 10px;
}

.checkout .payment.active .radio {
  opacity: 1;
}

.checkout .payment p {
  color: var(--ui-ink);
  font-weight: 900;
  margin: 0;
}

.checkout .payment small {
  color: var(--ui-muted);
  display: block;
  font-size: 12px;
  font-weight: 700;
  margin-top: 4px;
}

.checkout input,
.checkout select,
.checkout textarea {
  background: #fff;
  border: 1px solid var(--ui-line) !important;
  border-radius: 8px !important;
  min-height: 44px;
  padding: 0 12px;
  width: 100%;
}

.checkout textarea {
  min-height: 110px;
  padding-top: 12px;
}

.kc-checkout-page {
  background: #fff;
  color: var(--ui-ink);
}

.kc-checkout-hero {
  background: #f5f7fa;
  border-bottom: 1px solid var(--ui-line);
  padding: 34px 0 26px;
}

.kc-checkout-hero .kc-breadcrumb {
  margin-bottom: 24px;
}

.kc-checkout-hero__head {
  align-items: end;
  display: flex;
  gap: 20px;
  justify-content: space-between;
}

.kc-checkout-hero h1 {
  color: var(--ui-ink);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 900;
  line-height: 1;
  margin: 0;
}

.kc-checkout-return {
  align-items: center;
  background: #fff;
  border: 1px solid var(--ui-line);
  border-radius: 999px;
  color: var(--ui-ink);
  display: inline-flex;
  font-size: 13px;
  font-weight: 900;
  min-height: 40px;
  padding: 0 16px;
}

.kc-checkout-stepper {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  list-style: none;
  margin: 30px 0 0;
  padding: 0;
}

.kc-checkout-stepper li {
  align-items: center;
  background: #fff;
  border: 1px solid var(--ui-line);
  border-radius: 999px;
  color: var(--ui-muted);
  display: flex;
  gap: 10px;
  min-height: 42px;
  padding: 6px 12px 6px 7px;
}

.kc-checkout-stepper span {
  align-items: center;
  background: var(--ui-soft);
  border-radius: 999px;
  color: var(--ui-muted);
  display: flex;
  flex: 0 0 auto;
  font-size: 12px;
  font-weight: 900;
  height: 28px;
  justify-content: center;
  width: 28px;
}

.kc-checkout-stepper strong {
  font-size: 13px;
  font-weight: 900;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.kc-checkout-stepper .is-active {
  background: var(--ui-ink);
  border-color: var(--ui-ink);
  color: #fff;
}

.kc-checkout-stepper .is-active span,
.kc-checkout-stepper .is-complete span {
  background: var(--ui-accent);
  color: #fff;
}

.kc-checkout-stepper .is-complete {
  border-color: rgba(66, 200, 183, .45);
  color: var(--ui-ink);
}

.kc-checkout-legacy > .gs-breadcrumb-section {
  display: none;
}

.kc-checkout-legacy .gs-checkout-wrapper {
  padding: 42px 0 72px;
}

.kc-checkout-legacy .checkout-step-wrapper,
.kc-checkout-legacy .gs-checkout-wrapper > .container > .row.justify-content-center:first-child {
  display: none;
}

.kc-checkout-legacy .address-wrapper > .row {
  align-items: start;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1fr) 360px;
  margin: 0;
}

.kc-checkout-legacy .address-wrapper > .row > [class*="col-"] {
  padding: 0;
  width: auto;
}

.kc-checkout-legacy input[type="hidden"] {
  display: none !important;
}

.kc-checkout-legacy .address-wrapper > .row > input[type="hidden"] {
  grid-column: 1 / -1;
}

.kc-checkout-legacy .form-title,
.kc-checkout-legacy .select-payment-list-wrapper .title {
  color: var(--ui-ink);
  font-size: 22px;
  font-weight: 900;
  line-height: 1.2;
  margin: 0 0 18px;
}

.kc-checkout-legacy .mb-40,
.kc-checkout-legacy .shipping-billing-address-wrapper,
.kc-checkout-legacy .product-infos-wrapper,
.kc-checkout-legacy .select-payment-list-wrapper,
.kc-checkout-legacy .summary-box,
.kc-checkout-legacy .single-addres {
  background: #fff;
  border: 1px solid var(--ui-line);
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(16, 24, 40, .06);
  padding: 24px;
}

.kc-checkout-legacy .mb-40 + .mb-40,
.kc-checkout-legacy .shipping-billing-address-wrapper + .product-infos-wrapper,
.kc-checkout-legacy .product-infos-wrapper + .product-infos-wrapper {
  margin-top: 20px;
}

.kc-checkout-legacy .row.g-4,
.kc-checkout-legacy .row.gy-4 {
  row-gap: 16px;
}

.kc-checkout-legacy .input-wrapper {
  display: grid;
  gap: 7px;
}

.kc-checkout-legacy .label-cls,
.kc-checkout-legacy label {
  color: #344054;
  font-size: 12px;
  font-weight: 900;
  margin: 0;
}

.kc-checkout-legacy .input-cls,
.kc-checkout-legacy input:not([type="checkbox"]):not([type="radio"]):not([type="hidden"]),
.kc-checkout-legacy select,
.kc-checkout-legacy textarea,
.kc-checkout-legacy .nice-select {
  background: #fff;
  border: 1px solid var(--ui-line) !important;
  border-radius: 6px !important;
  color: var(--ui-ink);
  font-size: 14px;
  font-weight: 700;
  min-height: 46px;
  padding: 0 13px;
  width: 100%;
}

.kc-checkout-legacy textarea {
  min-height: 120px;
  padding-top: 12px;
}

.kc-checkout-legacy .gs-checkbox-wrapper {
  align-items: center;
  color: var(--ui-ink);
  display: flex;
  gap: 9px;
  min-height: 30px;
}

.kc-checkout-legacy input[type="checkbox"],
.kc-checkout-legacy input[type="radio"] {
  accent-color: var(--ui-ink);
  height: 16px;
  width: 16px;
}

.kc-checkout-legacy .icon-label svg {
  display: none;
}

.kc-checkout-legacy .summary-box {
  display: grid;
  gap: 18px;
  padding: 22px;
  position: sticky;
  top: 112px;
}

.kc-checkout-legacy .summary-box .form-title {
  margin: 0;
}

.kc-checkout-legacy .summary-inner-box {
  display: grid;
  gap: 12px;
}

.kc-checkout-legacy .summary-title {
  color: var(--ui-ink);
  font-size: 13px;
  font-weight: 900;
  margin: 0;
  text-transform: uppercase;
}

.kc-checkout-legacy .details-wrapper {
  display: grid;
  gap: 11px;
}

.kc-checkout-legacy .price-details,
.kc-checkout-legacy .final-price {
  align-items: center;
  color: var(--ui-muted);
  display: flex;
  font-size: 14px;
  font-weight: 700;
  gap: 14px;
  justify-content: space-between;
}

.kc-checkout-legacy .price-details .right-side,
.kc-checkout-legacy .final-price .total-amount {
  color: var(--ui-ink);
  font-weight: 900;
  text-align: right;
}

.kc-checkout-legacy .final-price {
  border-top: 1px solid var(--ui-line);
  color: var(--ui-ink);
  font-size: 16px;
  font-weight: 900;
  padding-top: 16px;
}

.kc-checkout-legacy .final-price .total-amount {
  font-size: 22px;
}

.kc-checkout-legacy .summary-inner-box hr {
  display: none;
}

.kc-checkout-legacy .coupon-wrapper {
  display: grid;
  gap: 8px;
  grid-template-columns: minmax(0, 1fr) auto;
}

.kc-checkout-legacy .coupon-wrapper button,
.kc-checkout-legacy .template-btn,
.kc-checkout-legacy button[type="submit"] {
  align-items: center;
  background: var(--ui-ink);
  border: 1px solid var(--ui-ink);
  border-radius: 6px;
  color: #fff;
  display: inline-flex;
  font-size: 14px;
  font-weight: 900;
  gap: 8px;
  justify-content: center;
  min-height: 46px;
  padding: 0 16px;
}

.kc-checkout-legacy .template-btn svg {
  height: 18px;
  width: 18px;
}

.kc-checkout-legacy .dark-outline {
  background: #fff;
  border-color: var(--ui-line);
  color: var(--ui-ink);
}

.kc-checkout-legacy .dark-outline path {
  fill: currentColor;
}

.kc-checkout-legacy .btn-wrappers {
  display: grid;
  gap: 10px;
}

.kc-checkout-legacy .single-addres {
  box-shadow: none;
}

.kc-checkout-legacy .single-addres + .single-addres {
  margin-top: 16px;
}

.kc-checkout-legacy .single-addres ul,
.kc-checkout-legacy .product-list,
.kc-checkout-legacy .inputs-wrapper,
.kc-checkout-legacy .list-wrapper {
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.kc-checkout-legacy .single-addres li {
  align-items: center;
  color: var(--ui-muted);
  display: flex;
  font-size: 14px;
  font-weight: 800;
  gap: 10px;
}

.kc-checkout-legacy .single-addres svg {
  display: none;
}

.kc-checkout-legacy .title-wrapper {
  align-items: center;
  border-bottom: 1px solid var(--ui-line);
  display: flex;
  justify-content: space-between;
  margin-bottom: 14px;
  padding-bottom: 14px;
}

.kc-checkout-legacy .title-wrapper h5 {
  color: var(--ui-ink);
  font-size: 16px;
  font-weight: 900;
  margin: 0;
}

.kc-checkout-legacy .edit-btn {
  color: var(--ui-accent);
  font-size: 12px;
  font-weight: 900;
}

.kc-checkout-legacy .checkout-single-product {
  align-items: center;
  border: 1px solid var(--ui-line);
  border-radius: 8px;
  display: grid;
  gap: 16px;
  grid-template-columns: 104px minmax(0, 1fr);
  padding: 14px;
}

.kc-checkout-legacy .checkout-single-product .img-wrapper {
  align-items: center;
  aspect-ratio: 1;
  background: var(--ui-soft);
  border-radius: 6px;
  display: flex;
  justify-content: center;
  overflow: hidden;
  padding: 8px;
}

.kc-checkout-legacy .checkout-single-product img {
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.kc-checkout-legacy .product-title {
  color: var(--ui-ink);
  display: inline-block;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.35;
  margin-bottom: 8px;
}

.kc-checkout-legacy .content-wrapper ul {
  color: var(--ui-muted);
  font-size: 12px;
  font-weight: 700;
  list-style: none;
  margin: 0;
  padding: 0;
}

.kc-checkout-legacy .gs-radio-wrapper {
  align-items: center;
  border: 1px solid var(--ui-line);
  border-radius: 999px;
  display: inline-flex;
  gap: 8px;
  min-height: 42px;
  padding: 8px 12px;
}

.kc-checkout-legacy .inputs-wrapper,
.kc-checkout-legacy .list-wrapper {
  align-items: start;
  display: flex;
  flex-wrap: wrap;
}

.kc-checkout-legacy .payment {
  border-radius: 8px;
  cursor: pointer;
  min-height: 56px;
}

.kc-checkout-legacy .payment.active,
.kc-checkout-legacy .payment:has(input:checked),
.kc-checkout-legacy .gs-radio-wrapper:hover {
  border-color: var(--ui-accent);
  box-shadow: 0 0 0 3px rgba(66, 200, 183, .12);
}

.kc-checkout-legacy .label-wrapper {
  display: grid;
  gap: 3px;
}

.kc-checkout-legacy .label-title {
  color: var(--ui-ink);
  font-size: 14px;
  font-weight: 900;
}

.kc-checkout-legacy .label-subtitle,
.kc-checkout-legacy .gs-radio-wrapper small {
  color: var(--ui-muted);
  display: block;
  font-size: 12px;
  font-weight: 700;
}

.kc-checkout-legacy .pay-area {
  border-top: 1px solid var(--ui-line);
  margin-top: 20px;
  padding-top: 20px;
}

@media (max-width: 991.98px) {
  .kc-checkout-hero__head {
    align-items: flex-start;
    flex-direction: column;
  }

  .kc-checkout-stepper {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .kc-checkout-legacy .address-wrapper > .row {
    grid-template-columns: 1fr;
  }

  .kc-checkout-legacy .summary-box {
    position: static;
  }
}

@media (max-width: 575.98px) {
  .kc-checkout-hero {
    padding: 26px 0 22px;
  }

  .kc-checkout-stepper {
    gap: 8px;
    grid-template-columns: 1fr 1fr;
  }

  .kc-checkout-stepper li {
    min-height: 38px;
    padding-right: 8px;
  }

  .kc-checkout-stepper strong {
    font-size: 12px;
  }

  .kc-checkout-legacy .gs-checkout-wrapper {
    padding: 28px 0 48px;
  }

  .kc-checkout-legacy .mb-40,
  .kc-checkout-legacy .shipping-billing-address-wrapper,
  .kc-checkout-legacy .product-infos-wrapper,
  .kc-checkout-legacy .select-payment-list-wrapper,
  .kc-checkout-legacy .summary-box,
  .kc-checkout-legacy .single-addres {
    padding: 18px;
  }

  .kc-checkout-legacy .coupon-wrapper,
  .kc-checkout-legacy .checkout-single-product {
    grid-template-columns: 1fr;
  }

  .kc-checkout-legacy .checkout-single-product .img-wrapper {
    max-width: 140px;
  }

  .kc-checkout-legacy .coupon-wrapper button,
  .kc-checkout-legacy .template-btn,
  .kc-checkout-legacy button[type="submit"],
  .kc-checkout-return {
    width: 100%;
  }

  .kc-checkout-legacy .inputs-wrapper,
  .kc-checkout-legacy .list-wrapper,
  .kc-checkout-legacy .gs-radio-wrapper {
    width: 100%;
  }
}

@media (max-width: 991.98px) {
  .kc-topbar__inner {
    justify-content: center;
    text-align: center;
  }

  .kc-topbar__links {
    display: none;
  }

  .kc-nav {
    flex-wrap: wrap;
    gap: 14px;
    min-height: auto;
    padding-bottom: 14px;
    padding-top: 14px;
  }

  .kc-menu {
    flex: 1 1 100%;
    justify-content: flex-start;
    order: 4;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .kc-search {
    flex: 1 1 260px;
    min-width: 0;
  }

  .kc-hero__grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .kc-hero__visual {
    min-height: 360px;
  }

  .kc-category-grid,
  .kc-promo__grid,
  .kc-editorial__panel,
  .kc-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .kc-listing-layout {
    grid-template-columns: 1fr;
  }

  .kc-filter-panel {
    position: static;
  }

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

  .kc-listing-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .kc-newsletter {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .kc-cart-summary {
    position: static;
  }

  .kc-cart-item {
    grid-template-columns: 104px minmax(0, 1fr) 118px;
  }

  .kc-cart-item__price {
    display: none;
  }

  .kc-cart-item__mobile-price {
    color: var(--ui-ink);
    display: block;
    font-size: 13px;
    font-weight: 900;
    margin-top: 10px;
  }

  .kc-cart-item__subtotal {
    grid-column: 2 / 3;
  }

  .kc-cart-remove {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
    justify-self: end;
  }

  .gs-product-details-gallery-wrapper {
    position: static;
  }

  .product-main-slider,
  .product-main-slider .slick-list,
  .product-main-slider .slick-track {
    min-height: 420px;
  }

  .product-main-slider .main-img {
    height: 420px;
  }

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

  .header-top {
    padding: 10px 0;
  }

  .nav-center {
    display: none;
  }

  .ui-product-card__actions {
    opacity: 1;
    position: static;
    transform: none;
    padding-top: 10px;
  }

  .ui-product-card__media {
    aspect-ratio: 1 / .8;
  }
}

@media (max-width: 575.98px) {
  .kc-actions {
    margin-left: auto;
  }

  .kc-search {
    flex-basis: 100%;
    order: 3;
  }

  .kc-hero h1 {
    font-size: 40px;
  }

  .kc-hero__grid {
    padding-bottom: 34px;
    padding-top: 34px;
  }

  .kc-section {
    padding: 52px 0;
  }

  .kc-section__head {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .kc-category-grid,
  .kc-promo__grid,
  .kc-editorial__panel,
  .kc-mini-products,
  .kc-footer__grid {
    grid-template-columns: 1fr;
  }

  .kc-listing-hero__content,
  .kc-sort-controls {
    align-items: flex-start;
    flex-direction: column;
  }

  .kc-listing-hero__content p {
    white-space: normal;
  }

  .kc-price-filter__inputs,
  .kc-product-grid {
    grid-template-columns: 1fr;
  }

  .kc-sort-controls,
  .kc-sort-controls select {
    width: 100%;
  }

  .kc-newsletter form {
    flex-direction: column;
    min-width: 100%;
  }

  .kc-cart-hero {
    padding: 24px 0 34px;
  }

  .kc-cart-hero h1 {
    font-size: 34px;
  }

  .kc-cart-section {
    padding: 34px 0 54px;
  }

  .kc-cart-panel__head {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    padding: 18px;
  }

  .kc-cart-item {
    gap: 14px;
    grid-template-columns: 92px minmax(0, 1fr) 38px;
    padding: 18px;
  }

  .kc-cart-item__media {
    padding: 9px;
  }

  .kc-cart-item__quantity,
  .kc-cart-item__subtotal {
    grid-column: 1 / -1;
  }

  .kc-cart-item__quantity {
    align-items: center;
    display: flex;
    justify-content: space-between;
  }

  .kc-cart-item__subtotal {
    align-items: center;
    display: flex;
    justify-content: space-between;
  }

  .kc-cart-summary__panel {
    padding: 20px;
  }

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

  .single-product-details-content-wrapper {
    padding: 34px 0 52px;
  }

  .product-main-slider,
  .product-main-slider .slick-list,
  .product-main-slider .slick-track {
    min-height: 320px;
  }

  .product-main-slider .main-img {
    height: 320px;
    padding: 18px;
  }

  .product-nav-slider {
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .product-info-wrapper h3 {
    font-size: 30px;
  }

  .single-product-details-content-wrapper .row-cols-2 > * {
    width: 100%;
  }

  .single-product-details-content-wrapper .row-cols-2 {
    gap: 10px;
  }

  .wish-compare-report-wrapper .link,
  .single-product-details-content-wrapper .template-btn {
    width: 100%;
  }

  .twofa-panel__header {
    flex-direction: column;
  }

  .kc-auth-card,
  .twofa-panel,
  .twofa-card {
    padding: 20px;
  }

  .container,
  .custom-containerr {
    padding-left: 16px;
    padding-right: 16px;
  }

  .ui-product-card__body {
    padding: 12px;
  }

  .ui-product-card__cart {
    min-width: 112px;
  }
}

@media (min-width: 768px) and (max-width: 1199.98px) {
  .kc-catalog-page .kc-product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 767.98px) {
  .kc-catalog-page .kc-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 479.98px) {
  .kc-catalog-page .kc-product-grid {
    grid-template-columns: 1fr;
  }
}
