/*
Theme Name: N2G Store
Theme URI: https://dienmayn2g.com.vn
Author: N2G
Description: Giao dien ban le dien may hien dai, toi uu cho WooCommerce.
Version: 1.0.24
Requires at least: 6.6
Requires PHP: 8.1
Text Domain: n2g-store
*/

:root {
  --n2g-green: #0b7654;
  --n2g-green-dark: #07533d;
  --n2g-green-soft: #eaf7f1;
  --n2g-yellow: #ffd43b;
  --n2g-red: #d92d20;
  --n2g-ink: #17211d;
  --n2g-muted: #66736d;
  --n2g-line: #dfe6e2;
  --n2g-surface: #ffffff;
  --n2g-canvas: #f3f6f4;
  --n2g-shadow: 0 8px 24px rgba(20, 46, 35, 0.09);
  --n2g-radius: 8px;
  --n2g-shell: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--n2g-ink);
  background: var(--n2g-canvas);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
}

body.n2g-menu-open {
  overflow: hidden;
}

button,
input,
select,
textarea {
  font: inherit;
  letter-spacing: 0;
}

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

img {
  display: block;
  max-width: 100%;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.n2g-shell {
  width: min(calc(100% - 32px), var(--n2g-shell));
  margin-inline: auto;
}

.n2g-topbar {
  min-height: 34px;
  color: #ffffff;
  background: var(--n2g-green-dark);
}

.n2g-topbar__inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 13px;
}

.n2g-topbar__items,
.n2g-header__actions {
  display: flex;
  align-items: center;
}

.n2g-topbar__items {
  gap: 22px;
}

.n2g-inline-icon {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.n2g-inline-icon svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
}

.n2g-site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--n2g-green);
  box-shadow: 0 2px 10px rgba(7, 55, 39, 0.14);
}

.admin-bar .n2g-site-header {
  top: 32px;
}

.n2g-header__main {
  min-height: 76px;
  display: grid;
  grid-template-columns: auto auto minmax(260px, 1fr) auto;
  align-items: center;
  gap: 16px;
}

.n2g-brand {
  min-width: 178px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
}

.n2g-brand__mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--n2g-green-dark);
  background: var(--n2g-yellow);
  border-radius: 50%;
}

.n2g-brand__mark svg {
  width: 23px;
  height: 23px;
  stroke-width: 2.5;
}

.n2g-brand__copy {
  display: grid;
  line-height: 1.02;
}

.n2g-brand__name {
  font-size: 22px;
  font-weight: 800;
}

.n2g-brand__tagline {
  margin-top: 5px;
  color: #d5eee4;
  font-size: 11px;
  font-weight: 600;
}

.n2g-catalog {
  position: relative;
}

.n2g-catalog__trigger {
  width: 158px;
  height: 46px;
  padding: 0 13px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--n2g-ink);
  background: #ffffff;
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 750;
}

.n2g-catalog__trigger > svg:first-child {
  width: 19px;
  height: 19px;
  color: var(--n2g-green);
}

.n2g-catalog__trigger span {
  flex: 1;
  text-align: left;
}

.n2g-catalog__chevron {
  width: 16px;
  height: 16px;
  transition: transform 160ms ease;
}

.n2g-catalog.is-open .n2g-catalog__chevron {
  transform: rotate(180deg);
}

.n2g-catalog__dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  z-index: 90;
  width: min(680px, calc(100vw - 32px));
  min-height: 342px;
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  color: var(--n2g-ink);
  background: #ffffff;
  border: 1px solid var(--n2g-line);
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(8, 41, 30, 0.2);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 150ms ease, transform 150ms ease, visibility 150ms ease;
  overflow: hidden;
}

.n2g-catalog.is-open .n2g-catalog__dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.n2g-catalog__parents {
  padding: 10px;
  background: #f5f8f6;
  border-right: 1px solid var(--n2g-line);
}

.n2g-catalog__all,
.n2g-catalog__parent {
  min-height: 40px;
  padding: 0 10px;
  display: flex;
  align-items: center;
  gap: 9px;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 650;
}

.n2g-catalog__all {
  margin-bottom: 7px;
  color: var(--n2g-green-dark);
  background: var(--n2g-green-soft);
}

.n2g-catalog__all span,
.n2g-catalog__parent span {
  flex: 1;
}

.n2g-catalog__all svg,
.n2g-catalog__parent svg {
  width: 17px;
  height: 17px;
}

.n2g-catalog__parent:hover,
.n2g-catalog__parent:focus-visible,
.n2g-catalog__parent.is-active {
  color: #ffffff;
  background: var(--n2g-green);
}

.n2g-catalog__parent-arrow {
  width: 14px !important;
  height: 14px !important;
}

.n2g-catalog__content {
  padding: 22px;
}

.n2g-catalog__heading {
  padding-bottom: 18px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--n2g-line);
}

.n2g-catalog__heading-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--n2g-green);
  background: var(--n2g-green-soft);
  border-radius: 50%;
}

.n2g-catalog__heading-icon svg {
  width: 21px;
  height: 21px;
}

.n2g-catalog__heading div {
  display: grid;
}

.n2g-catalog__heading small {
  color: var(--n2g-muted);
  font-size: 11px;
}

.n2g-catalog__heading strong {
  font-size: 17px;
}

.n2g-catalog__heading > a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--n2g-green);
  font-size: 12px;
  font-weight: 700;
}

.n2g-catalog__heading > a svg {
  width: 14px;
  height: 14px;
}

.n2g-catalog__children ul {
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 18px;
  list-style: none;
}

.n2g-catalog__children li a {
  min-height: 38px;
  padding: 0 10px;
  display: flex;
  align-items: center;
  gap: 7px;
  border: 1px solid transparent;
  border-radius: 5px;
  font-size: 13px;
}

.n2g-catalog__children li a span {
  flex: 1;
}

.n2g-catalog__children li a svg {
  width: 14px;
  height: 14px;
  color: var(--n2g-muted);
}

.n2g-catalog__children li a:hover,
.n2g-catalog__children li a:focus-visible {
  color: var(--n2g-green-dark);
  background: var(--n2g-green-soft);
  border-color: #b9dacd;
}

.n2g-search {
  min-width: 0;
  display: flex;
  align-items: stretch;
  height: 46px;
  background: #ffffff;
  border: 2px solid transparent;
  border-radius: 6px;
  overflow: hidden;
}

.n2g-search:focus-within {
  border-color: var(--n2g-yellow);
}

.n2g-search input[type="search"] {
  width: 100%;
  min-width: 0;
  padding: 0 16px;
  color: var(--n2g-ink);
  background: transparent;
  border: 0;
  outline: 0;
}

.n2g-search button {
  width: 52px;
  display: grid;
  place-items: center;
  color: var(--n2g-green-dark);
  background: var(--n2g-yellow);
  border: 0;
  cursor: pointer;
}

.n2g-search button svg {
  width: 21px;
  height: 21px;
}

.n2g-header__actions {
  gap: 6px;
}

.n2g-action {
  min-width: 66px;
  min-height: 50px;
  padding: 5px 8px;
  display: grid;
  place-items: center;
  gap: 2px;
  color: #ffffff;
  border-radius: 6px;
  font-size: 11px;
  text-align: center;
}

.n2g-action:hover,
.n2g-action:focus-visible {
  background: rgba(255, 255, 255, 0.12);
}

.n2g-action svg {
  width: 21px;
  height: 21px;
}

.n2g-action--cart {
  position: relative;
}

.n2g-cart-count {
  position: absolute;
  top: 1px;
  right: 7px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  display: grid;
  place-items: center;
  color: var(--n2g-green-dark);
  background: var(--n2g-yellow);
  border: 2px solid var(--n2g-green);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
}

.n2g-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  color: #ffffff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 6px;
  cursor: pointer;
}

.n2g-mobile-panel {
  display: none;
}

.n2g-main {
  min-height: 60vh;
}

.n2g-hero-wrap {
  padding-top: 18px;
}

.n2g-hero {
  position: relative;
  min-height: 316px;
  display: grid;
  align-items: center;
  overflow: hidden;
  border-radius: var(--n2g-radius);
  background-color: #20362d;
  background-position: center;
  background-size: cover;
}

.n2g-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 38, 29, 0.9) 0%, rgba(8, 38, 29, 0.73) 42%, rgba(8, 38, 29, 0.12) 78%);
}

.n2g-hero__content {
  position: relative;
  z-index: 1;
  width: min(590px, 62%);
  padding: 34px 42px;
  color: #ffffff;
}

.n2g-eyebrow {
  margin: 0 0 9px;
  color: var(--n2g-yellow);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.n2g-hero h1 {
  margin: 0;
  font-size: 42px;
  line-height: 1.08;
  letter-spacing: 0;
}

.n2g-hero__lead {
  max-width: 520px;
  margin: 14px 0 0;
  color: #e7f2ed;
  font-size: 17px;
}

.n2g-hero__actions {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.n2g-button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.wp-element-button {
  min-height: 44px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #ffffff;
  background: var(--n2g-green);
  border: 1px solid var(--n2g-green);
  border-radius: 6px;
  font-weight: 750;
  cursor: pointer;
}

.n2g-button:hover,
.n2g-button:focus-visible,
.woocommerce a.button:hover,
.woocommerce button.button:hover {
  color: #ffffff;
  background: var(--n2g-green-dark);
  border-color: var(--n2g-green-dark);
}

.n2g-button--yellow {
  color: var(--n2g-green-dark);
  background: var(--n2g-yellow);
  border-color: var(--n2g-yellow);
}

.n2g-button--yellow:hover,
.n2g-button--yellow:focus-visible {
  color: var(--n2g-green-dark);
  background: #ffe170;
  border-color: #ffe170;
}

.n2g-button--ghost {
  color: #ffffff;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.7);
}

.n2g-trust-strip {
  min-height: 54px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  margin-top: 10px;
  color: var(--n2g-green-dark);
  background: #ffffff;
  border: 1px solid var(--n2g-line);
  border-radius: 6px;
}

.n2g-trust-item {
  min-height: 34px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-right: 1px solid var(--n2g-line);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.n2g-trust-item:last-child {
  border-right: 0;
}

.n2g-trust-item svg {
  width: 18px;
  height: 18px;
}

.n2g-section {
  padding: 30px 0;
}

.n2g-section + .n2g-section {
  padding-top: 12px;
}

.n2g-section-heading {
  margin-bottom: 16px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.n2g-section-heading h2 {
  margin: 0;
  font-size: 25px;
  line-height: 1.2;
  letter-spacing: 0;
}

.n2g-section-heading p {
  margin: 5px 0 0;
  color: var(--n2g-muted);
  font-size: 14px;
}

.n2g-section-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--n2g-green);
  font-size: 14px;
  font-weight: 750;
  white-space: nowrap;
}

.n2g-section-link svg {
  width: 17px;
  height: 17px;
}

.n2g-categories {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 10px;
}

.n2g-category {
  min-height: 116px;
  padding: 15px 8px 12px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 9px;
  color: var(--n2g-ink);
  background: #ffffff;
  border: 1px solid var(--n2g-line);
  border-radius: 6px;
  text-align: center;
}

.n2g-category:hover,
.n2g-category:focus-visible {
  color: var(--n2g-green-dark);
  border-color: #7bbda4;
  box-shadow: var(--n2g-shadow);
  transform: translateY(-2px);
}

.n2g-category__icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--n2g-green);
  background: var(--n2g-green-soft);
  border-radius: 50%;
}

.n2g-category__icon svg {
  width: 25px;
  height: 25px;
}

.n2g-category strong {
  font-size: 13px;
  line-height: 1.25;
}

.n2g-deal-band {
  padding: 22px;
  background: var(--n2g-yellow);
  border-radius: var(--n2g-radius);
}

.n2g-deal-head {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.n2g-deal-title {
  display: flex;
  align-items: center;
  gap: 10px;
}

.n2g-deal-title h2 {
  margin: 0;
  color: var(--n2g-green-dark);
  font-size: 25px;
  letter-spacing: 0;
}

.n2g-deal-title svg {
  width: 26px;
  height: 26px;
  color: var(--n2g-red);
  fill: currentColor;
}

.n2g-countdown {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--n2g-green-dark);
  font-size: 13px;
  font-weight: 700;
}

.n2g-countdown__time {
  min-width: 88px;
  padding: 6px 9px;
  color: #ffffff;
  background: var(--n2g-green-dark);
  border-radius: 4px;
  font-variant-numeric: tabular-nums;
  text-align: center;
}

.n2g-product-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.n2g-deal-band .n2g-product__visual {
  background: #ffffff;
}

.n2g-product-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.n2g-product-list .n2g-product {
  border-color: var(--n2g-line);
}

.n2g-product {
  min-width: 0;
  padding: 12px;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid transparent;
  border-radius: 6px;
  overflow: hidden;
}

.n2g-product:hover {
  border-color: #afd2c2;
  box-shadow: var(--n2g-shadow);
}

.n2g-product__visual {
  position: relative;
  aspect-ratio: 1 / 1;
  padding: 6px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #f4f6f5;
  border-radius: 4px;
}

.n2g-product__visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 180ms ease;
}

.n2g-product:hover .n2g-product__visual img {
  transform: scale(1.035);
}

.n2g-badge {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  padding: 4px 7px;
  color: #ffffff;
  background: var(--n2g-red);
  border-radius: 0 0 4px 0;
  font-size: 11px;
  font-weight: 800;
}

.n2g-product__meta {
  min-height: 19px;
  margin-top: 10px;
  color: var(--n2g-green);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.n2g-product h3 {
  min-height: 43px;
  margin: 5px 0 0;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0;
}

.n2g-product__price {
  margin-top: 9px;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 5px 8px;
}

.n2g-price-current {
  color: var(--n2g-red);
  font-size: 17px;
  font-weight: 850;
}

.n2g-price-old {
  color: #909a95;
  font-size: 12px;
  text-decoration: line-through;
}

.n2g-product__note {
  min-height: 38px;
  margin: 8px 0 0;
  color: var(--n2g-muted);
  font-size: 12px;
}

.n2g-rating {
  margin: 9px 0;
  display: flex;
  align-items: center;
  gap: 5px;
  color: #8b6410;
  font-size: 12px;
}

.n2g-rating svg {
  width: 15px;
  height: 15px;
  fill: var(--n2g-yellow);
  stroke: #a87912;
}

.n2g-product__action {
  width: 100%;
  min-height: 38px;
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: var(--n2g-green-dark);
  background: var(--n2g-green-soft);
  border: 1px solid #b8dccd;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 750;
}

.n2g-product__action:hover,
.n2g-product__action:focus-visible {
  color: #ffffff;
  background: var(--n2g-green);
  border-color: var(--n2g-green);
}

.n2g-product__action svg {
  width: 16px;
  height: 16px;
}

.n2g-category-showcases {
  padding-top: 10px;
}

.n2g-category-showcase-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: 14px;
}

.n2g-category-showcase {
  --n2g-showcase-accent: #08765a;
  --n2g-showcase-dark: #055742;
  overflow: hidden;
  border: 1px solid #d9e4df;
  border-radius: 7px;
  background: #ffffff;
}

.n2g-category-showcase--tone-2 {
  --n2g-showcase-accent: #087ca0;
  --n2g-showcase-dark: #075b76;
}

.n2g-category-showcase--tone-3 {
  --n2g-showcase-accent: #bd3f35;
  --n2g-showcase-dark: #913028;
}

.n2g-category-showcase--tone-4 {
  --n2g-showcase-accent: #536b2d;
  --n2g-showcase-dark: #3f5221;
}

.n2g-category-showcase__header {
  min-height: 64px;
  padding: 11px 12px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px 10px;
  color: #ffffff;
  background: var(--n2g-showcase-accent);
}

.n2g-category-showcase__title,
.n2g-category-showcase__all {
  color: inherit;
}

.n2g-category-showcase__title {
  grid-column: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.n2g-category-showcase__title svg {
  width: 27px;
  height: 27px;
  flex: 0 0 auto;
}

.n2g-category-showcase__title h3 {
  margin: 0;
  overflow-wrap: anywhere;
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: 0;
}

.n2g-category-showcase__children {
  grid-column: 1 / -1;
  grid-row: 2;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 7px;
  overflow-x: auto;
  scrollbar-width: thin;
}

.n2g-category-showcase__children a {
  padding: 5px 7px;
  flex: 0 0 auto;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
}

.n2g-category-showcase__children a:hover,
.n2g-category-showcase__children a:focus-visible {
  color: var(--n2g-showcase-dark);
  background: #ffffff;
}

.n2g-category-showcase__all {
  grid-column: 2;
  min-height: 32px;
  padding-left: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border-left: 1px solid rgba(255, 255, 255, 0.38);
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.n2g-category-showcase__all svg {
  width: 16px;
  height: 16px;
}

.n2g-category-showcase__products {
  padding: 1px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: #e3e8e6;
}

.n2g-category-card {
  min-width: 0;
  min-height: 408px;
  display: flex;
  flex-direction: column;
  background: #ffffff;
}

.n2g-category-card__visual {
  position: relative;
  aspect-ratio: 1 / 1;
  padding: 6px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #f7f9f8;
}

.n2g-category-card__visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 180ms ease;
}

.n2g-category-card:hover .n2g-category-card__visual img {
  transform: scale(1.035);
}

.n2g-category-card__sale {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  padding: 5px 7px;
  color: #ffffff;
  background: var(--n2g-red);
  border-radius: 0 0 4px 0;
  font-size: 12px;
  font-weight: 850;
}

.n2g-category-card__body {
  min-height: 0;
  padding: 13px 13px 14px;
  display: flex;
  flex: 1;
  flex-direction: column;
}

.n2g-category-card h4 {
  min-height: 43px;
  margin: 0;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0;
}

.n2g-category-card h4 a {
  color: var(--n2g-ink);
}

.n2g-category-card__chips {
  min-height: 27px;
  margin-top: 8px;
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  gap: 5px;
}

.n2g-category-card__chips span {
  max-width: 100%;
  padding: 3px 6px;
  overflow: hidden;
  color: #246b55;
  border: 1px solid #88bca9;
  border-radius: 3px;
  font-size: 11px;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.n2g-category-card__price {
  min-height: 46px;
  margin-top: 8px;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px 8px;
  color: var(--n2g-red);
  font-size: 18px;
  font-weight: 850;
}

.n2g-category-card__price ins {
  order: -1;
  color: var(--n2g-red);
  background: transparent;
  text-decoration: none;
}

.n2g-category-card__price del {
  color: #8b9691;
  font-size: 12px;
  font-weight: 500;
}

.n2g-category-card__service {
  min-height: 36px;
  margin: 2px 0 10px;
  display: flex;
  align-items: flex-start;
  gap: 5px;
  color: var(--n2g-muted);
  font-size: 12px;
}

.n2g-category-card__service svg {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  color: var(--n2g-green);
}

.n2g-category-card__buy {
  width: 100%;
  min-height: 38px;
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: var(--n2g-red);
  border: 1px solid var(--n2g-red);
  border-radius: 4px;
  font-size: 13px;
  font-weight: 800;
}

.n2g-category-card__buy:hover,
.n2g-category-card__buy:focus-visible {
  color: #ffffff;
  background: #b7241a;
  border-color: #b7241a;
}

.n2g-feature-band {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 16px;
}

.n2g-feature-primary,
.n2g-feature-secondary {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  border-radius: var(--n2g-radius);
  background: #dce9e3;
}

.n2g-feature-primary img,
.n2g-feature-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.n2g-feature-primary::after,
.n2g-feature-secondary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 35, 27, 0.82), rgba(8, 35, 27, 0.08));
}

.n2g-feature-copy {
  position: absolute;
  z-index: 1;
  left: 28px;
  bottom: 28px;
  max-width: 58%;
  color: #ffffff;
}

.n2g-feature-copy h2,
.n2g-feature-copy h3 {
  margin: 0;
  font-size: 26px;
  line-height: 1.15;
  letter-spacing: 0;
}

.n2g-feature-copy p {
  margin: 8px 0 0;
  color: #e4eee9;
  font-size: 14px;
}

.n2g-brand-strip {
  min-height: 76px;
  padding: 15px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #44514b;
  background: #ffffff;
  border-block: 1px solid var(--n2g-line);
  overflow-x: auto;
}

.n2g-brand-strip span {
  font-size: 17px;
  font-weight: 800;
  white-space: nowrap;
}

.n2g-services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--n2g-line);
  border: 1px solid var(--n2g-line);
  border-radius: 6px;
  overflow: hidden;
}

.n2g-service {
  min-height: 118px;
  padding: 20px;
  display: grid;
  grid-template-columns: 40px 1fr;
  align-content: center;
  gap: 4px 12px;
  background: #ffffff;
}

.n2g-service svg {
  grid-row: 1 / span 2;
  width: 32px;
  height: 32px;
  color: var(--n2g-green);
}

.n2g-service strong {
  font-size: 14px;
}

.n2g-service span {
  color: var(--n2g-muted);
  font-size: 12px;
}

.n2g-content-shell {
  width: min(calc(100% - 32px), 980px);
  min-height: 54vh;
  margin: 28px auto;
  padding: 28px;
  background: #ffffff;
  border: 1px solid var(--n2g-line);
  border-radius: var(--n2g-radius);
}

.n2g-content-shell h1 {
  margin-top: 0;
  font-size: 32px;
  letter-spacing: 0;
}

.n2g-site-footer {
  margin-top: 28px;
  color: #dbe8e2;
  background: #102d23;
}

.n2g-footer-grid {
  padding: 38px 0;
  display: grid;
  grid-template-columns: 1.35fr repeat(3, 1fr);
  gap: 36px;
}

.n2g-footer-brand {
  max-width: 290px;
}

.n2g-footer-brand .n2g-brand {
  min-width: 0;
}

.n2g-footer-brand p {
  margin: 15px 0 0;
  color: #a9bcb3;
  font-size: 13px;
}

.n2g-footer-addresses {
  margin-top: 15px;
  display: grid;
  gap: 8px;
}

.n2g-footer-brand .n2g-footer-address {
  margin: 0;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.55;
}

.n2g-footer-address svg {
  width: 17px;
  height: 17px;
  margin-top: 2px;
  flex: 0 0 auto;
  color: var(--n2g-yellow);
}

.n2g-footer-address strong {
  color: #ffffff;
}

.n2g-footer-col h2 {
  margin: 0 0 13px;
  color: #ffffff;
  font-size: 15px;
  letter-spacing: 0;
}

.n2g-footer-col ul {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
  list-style: none;
}

.n2g-footer-col a,
.n2g-footer-col li {
  color: #b9cbc3;
  font-size: 13px;
}

.n2g-footer-col a:hover {
  color: var(--n2g-yellow);
}

.n2g-footer-bottom {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #90a79d;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 12px;
}

.n2g-phone-float {
  position: fixed;
  right: 18px;
  bottom: 20px;
  z-index: 50;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  color: var(--n2g-green-dark);
  background: var(--n2g-yellow);
  border: 2px solid #ffffff;
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
}

.n2g-phone-float svg {
  width: 23px;
  height: 23px;
}

/* WooCommerce */
.woocommerce .woocommerce-breadcrumb,
.woocommerce .woocommerce-result-count,
.woocommerce .woocommerce-ordering {
  color: var(--n2g-muted);
  font-size: 13px;
}

.woocommerce ul.products {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
  display: none;
}

.woocommerce ul.products li.product {
  width: auto !important;
  margin: 0 !important;
  padding: 14px;
  background: #ffffff;
  border: 1px solid var(--n2g-line);
  border-radius: 6px;
}

.woocommerce ul.products li.product img {
  aspect-ratio: 1 / 0.88;
  object-fit: contain;
  background: #f5f7f6;
  border-radius: 4px;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  color: var(--n2g-ink);
  font-size: 14px;
}

.woocommerce ul.products li.product .price,
.woocommerce div.product p.price,
.woocommerce div.product span.price {
  color: var(--n2g-red);
  font-weight: 800;
}

.woocommerce div.product,
.woocommerce-cart-form,
.woocommerce-checkout,
.woocommerce-account .woocommerce {
  padding: 24px;
  background: #ffffff;
  border: 1px solid var(--n2g-line);
  border-radius: var(--n2g-radius);
}

.woocommerce-message,
.woocommerce-info {
  border-top-color: var(--n2g-green);
}

.woocommerce-message::before,
.woocommerce-info::before {
  color: var(--n2g-green);
}

/* Account login */
.n2g-account-shell {
  width: min(calc(100% - 32px), var(--n2g-shell));
  min-height: 58vh;
  margin: 26px auto 44px;
}

.woocommerce-account:not(.logged-in) .n2g-account-shell .woocommerce {
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.n2g-account-login,
.n2g-register-page {
  min-height: 590px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  background: #ffffff;
  border: 1px solid var(--n2g-line);
  border-radius: 8px;
  box-shadow: var(--n2g-shadow);
  overflow: hidden;
}

.n2g-account-login__intro {
  padding: 48px 38px;
  display: flex;
  flex-direction: column;
  color: #ffffff;
  background: var(--n2g-green-dark);
}

.n2g-account-login__eyebrow {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--n2g-yellow);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.n2g-account-login__eyebrow svg {
  width: 17px;
  height: 17px;
}

.n2g-account-login__intro h1 {
  max-width: 390px;
  margin: 22px 0 0;
  color: #ffffff;
  font-size: 32px;
  line-height: 1.2;
  letter-spacing: 0;
}

.n2g-account-login__lead {
  max-width: 420px;
  margin: 16px 0 0;
  color: #cfe2da;
  font-size: 15px;
}

.n2g-account-login__intro ul {
  margin: 30px 0 0;
  padding: 0;
  display: grid;
  gap: 17px;
  list-style: none;
}

.n2g-account-login__intro li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #edf6f2;
  font-size: 14px;
  font-weight: 650;
}

.n2g-account-login__intro li svg {
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
  color: var(--n2g-yellow);
}

.n2g-account-login__support {
  margin-top: auto;
  padding-top: 22px;
  display: flex;
  align-items: center;
  gap: 11px;
  color: #ffffff;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.n2g-account-login__support > svg {
  width: 25px;
  height: 25px;
  color: var(--n2g-yellow);
}

.n2g-account-login__support span {
  display: grid;
}

.n2g-account-login__support small {
  color: #b7d0c6;
  font-size: 11px;
}

.n2g-account-login__support strong {
  font-size: 15px;
}

.n2g-account-login__form-panel,
.n2g-register-page__form-panel {
  min-width: 0;
  padding: 48px 58px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.n2g-account-login__heading {
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 13px;
}

.n2g-account-login__heading > span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--n2g-green);
  background: var(--n2g-green-soft);
  border-radius: 50%;
}

.n2g-account-login__heading > span svg {
  width: 23px;
  height: 23px;
}

.n2g-account-login__heading > div {
  display: grid;
}

.n2g-account-login__heading small {
  color: var(--n2g-muted);
  font-size: 12px;
}

.n2g-account-login__heading h2 {
  margin: 2px 0 0;
  font-size: 25px;
  line-height: 1.25;
}

.n2g-account-login__form-panel > h2 {
  display: none;
}

.n2g-account-login__form-panel .n2g-account-login__heading,
.woocommerce .n2g-account-login__form-panel .woocommerce-form-login,
.n2g-account-login__register-prompt,
.n2g-register-page__form-panel .n2g-account-login__heading,
.woocommerce .n2g-register-page__form-panel .woocommerce-form-register,
.n2g-register-page__login-link {
  width: 100%;
  max-width: 520px;
  margin-inline: auto;
}

.n2g-account-login__form-panel #customer_login {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.n2g-account-login__form-panel #customer_login::before,
.n2g-account-login__form-panel #customer_login::after {
  display: none;
}

.n2g-account-login__form-panel #customer_login .u-column1,
.n2g-account-login__form-panel #customer_login .u-column2 {
  width: auto;
  min-width: 0;
  padding: 25px;
  float: none;
  background: #ffffff;
  border: 1px solid var(--n2g-line);
  border-radius: 6px;
}

.n2g-account-login__form-panel #customer_login .u-column2 {
  background: #f6fbf8;
  border-color: #b9dacd;
}

.n2g-account-login__form-panel #customer_login h2 {
  margin: 0 0 21px;
  font-size: 20px;
  line-height: 1.3;
}

.n2g-account-login__form-panel #customer_login .u-column1 h2::before,
.n2g-account-login__form-panel #customer_login .u-column2 h2::before {
  width: 30px;
  height: 30px;
  margin-right: 8px;
  display: inline-grid;
  place-items: center;
  color: #ffffff;
  background: var(--n2g-green);
  border-radius: 50%;
  font-size: 13px;
  vertical-align: 2px;
}

.n2g-account-login__form-panel #customer_login .u-column1 h2::before {
  content: "1";
}

.n2g-account-login__form-panel #customer_login .u-column2 h2::before {
  content: "2";
}

.woocommerce .n2g-account-login__form-panel .woocommerce-form-login,
.woocommerce .n2g-account-login__form-panel .woocommerce-form-register {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

.woocommerce .n2g-account-login__form-panel .form-row {
  margin: 0 0 18px;
  padding: 0;
}

.woocommerce .n2g-account-login__form-panel .form-row > label:not(.woocommerce-form-login__rememberme) {
  margin-bottom: 7px;
  display: block;
  color: var(--n2g-ink);
  font-size: 13px;
  font-weight: 700;
}

.woocommerce .n2g-account-login__form-panel .input-text {
  width: 100%;
  height: 52px;
  padding: 0 14px;
  color: var(--n2g-ink);
  background: #ffffff;
  border: 1px solid #cbd5d0;
  border-radius: 5px;
  outline: 0;
}

.woocommerce .n2g-account-login__form-panel .input-text:focus {
  border-color: var(--n2g-green);
  box-shadow: 0 0 0 3px rgba(11, 118, 84, 0.12);
}

.woocommerce .n2g-account-login__form-panel .password-input {
  width: 100%;
  display: block;
}

.woocommerce .n2g-account-login__form-panel .show-password-input {
  top: 1em;
  right: 1em;
}

.n2g-account-login__form-panel .woocommerce-form-login__rememberme {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--n2g-muted);
  font-size: 13px;
}

.n2g-account-login__form-panel .woocommerce-form-login__rememberme input {
  width: 17px;
  height: 17px;
  accent-color: var(--n2g-green);
}

.woocommerce .n2g-account-login__form-panel .woocommerce-form-login__submit,
.woocommerce .n2g-account-login__form-panel .woocommerce-form-register__submit {
  width: 100%;
  min-height: 50px;
  margin: 15px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  float: none;
  color: #ffffff;
  background: var(--n2g-green);
  border-radius: 5px;
  font-size: 15px;
  font-weight: 800;
}

.woocommerce .n2g-account-login__form-panel .woocommerce-form-login__submit:hover,
.woocommerce .n2g-account-login__form-panel .woocommerce-form-login__submit:focus-visible,
.woocommerce .n2g-account-login__form-panel .woocommerce-form-register__submit:hover,
.woocommerce .n2g-account-login__form-panel .woocommerce-form-register__submit:focus-visible {
  color: #ffffff;
  background: var(--n2g-green-dark);
}

.n2g-account-login__form-panel .woocommerce-LostPassword {
  margin: 18px 0 0;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
}

.n2g-account-login__form-panel .woocommerce-LostPassword a {
  color: var(--n2g-green);
}

.n2g-account-login__form-panel .woocommerce-form-register p:not(.form-row),
.n2g-account-login__form-panel .woocommerce-privacy-policy-text {
  color: var(--n2g-muted);
  font-size: 12px;
  line-height: 1.55;
}

.n2g-account-login__form-panel .woocommerce-privacy-policy-text a {
  color: var(--n2g-green);
  font-weight: 700;
}

body.woocommerce-account .woocommerce .n2g-account-login__form-panel input.input-text,
body .woocommerce .n2g-register-page__form-panel input.input-text {
  width: 100%;
  height: 52px;
  padding: 0 14px;
  color: var(--n2g-ink);
  background: #ffffff;
  border: 1px solid #cbd5d0;
  border-radius: 5px;
  outline: 0;
}

body.woocommerce-account .woocommerce .n2g-account-login__form-panel input.input-text:focus,
body .woocommerce .n2g-register-page__form-panel input.input-text:focus {
  border-color: var(--n2g-green);
  box-shadow: 0 0 0 3px rgba(11, 118, 84, 0.12);
}

.woocommerce .n2g-register-page__form-panel .password-input {
  width: 100%;
  display: block;
}

.n2g-account-login__register-prompt,
.n2g-register-page__login-link {
  margin-top: 22px;
  padding-top: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 7px;
  color: var(--n2g-muted);
  border-top: 1px solid var(--n2g-line);
  font-size: 13px;
}

.n2g-account-login__register-prompt a,
.n2g-register-page__login-link a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--n2g-green);
  font-weight: 800;
}

.n2g-account-login__register-prompt svg,
.n2g-register-page__login-link svg {
  width: 15px;
  height: 15px;
}

.woocommerce .n2g-register-page__form-panel .woocommerce-form-register {
  margin: 0 auto;
  padding: 0;
  background: transparent;
  border: 0;
}

.n2g-register-page__form-panel {
  padding-block: 26px;
}

.n2g-register-page__form-panel .n2g-account-login__heading {
  margin-bottom: 20px;
}

.woocommerce .n2g-register-page__form-panel .form-row {
  margin: 0 0 12px;
  padding: 0;
}

.woocommerce .n2g-register-page__form-panel .form-row > label {
  margin-bottom: 7px;
  display: block;
  color: var(--n2g-ink);
  font-size: 13px;
  font-weight: 700;
}

.n2g-register-page__note {
  margin: 0 0 12px;
  padding: 9px 12px;
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: var(--n2g-green-dark);
  background: var(--n2g-green-soft);
  border-left: 3px solid var(--n2g-green);
  font-size: 12px;
  line-height: 1.5;
}

.n2g-register-page__note svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.n2g-register-page__form-panel .woocommerce-privacy-policy-text {
  color: var(--n2g-muted);
  font-size: 12px;
  line-height: 1.55;
}

.n2g-register-page__login-link {
  margin-top: 14px;
  padding-top: 12px;
}

.n2g-register-page__form-panel .woocommerce-privacy-policy-text a {
  color: var(--n2g-green);
  font-weight: 700;
}

.woocommerce .n2g-register-page__form-panel .woocommerce-form-register__submit {
  width: 100%;
  min-height: 50px;
  margin: 4px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  float: none;
  color: #ffffff;
  background: var(--n2g-green);
  border-radius: 5px;
  font-size: 15px;
  font-weight: 800;
}

.woocommerce .n2g-register-page__form-panel .woocommerce-form-register__submit:hover,
.woocommerce .n2g-register-page__form-panel .woocommerce-form-register__submit:focus-visible {
  color: #ffffff;
  background: var(--n2g-green-dark);
}

.woocommerce-account:not(.logged-in) .woocommerce-error,
.woocommerce-account:not(.logged-in) .woocommerce-message,
.woocommerce-account:not(.logged-in) .woocommerce-info {
  margin-bottom: 16px;
}

/* Product detail */
.n2g-product-page {
  padding: 16px 0 42px;
  background: #ffffff;
}

.single-product .n2g-phone-float {
  display: none;
}

.n2g-product-breadcrumb {
  min-height: 34px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
  color: var(--n2g-muted);
  font-size: 12px;
}

.n2g-product-breadcrumb a:hover,
.n2g-product-breadcrumb a:focus-visible {
  color: var(--n2g-green);
}

.single-product .n2g-product-page div.product {
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.single-product .n2g-product-page div.product .woocommerce-product-gallery {
  width: 47%;
  margin: 0 4% 34px 0;
  padding: 24px;
  background: #f8faf9;
  border: 1px solid var(--n2g-line);
  border-radius: 6px;
}

.single-product .n2g-product-page .woocommerce-product-gallery__wrapper,
.single-product .n2g-product-page .woocommerce-product-gallery__image a {
  display: block;
}

.single-product .n2g-product-page .woocommerce-product-gallery__image img {
  width: 100%;
  max-height: 510px;
  object-fit: contain;
}

.single-product .n2g-product-page div.product .woocommerce-product-gallery__trigger {
  top: 16px;
  right: 16px;
}

.single-product .n2g-product-page div.product > .onsale {
  top: 14px;
  left: 14px;
  min-width: 0;
  min-height: 0;
  padding: 7px 10px;
  background: var(--n2g-red);
  border-radius: 4px;
  line-height: 1;
}

.single-product .n2g-product-page div.product .summary {
  width: 49%;
  margin: 0 0 34px;
}

.single-product .n2g-product-page .product_title {
  margin: 9px 0 0;
  font-size: 28px;
  line-height: 1.25;
  letter-spacing: 0;
}

.n2g-product-status {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.n2g-product-status span {
  min-height: 28px;
  padding: 0 9px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--n2g-green-dark);
  background: var(--n2g-green-soft);
  border-radius: 4px;
  font-size: 11px;
  font-weight: 750;
}

.n2g-product-status span.is-out-of-stock {
  color: #8a2b23;
  background: #fff0ee;
}

.n2g-product-status svg {
  width: 15px;
  height: 15px;
}

.single-product .n2g-product-page div.product p.price {
  margin: 16px 0;
  padding: 14px 16px;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px;
  background: #fff8df;
  border-left: 4px solid var(--n2g-yellow);
  border-radius: 4px;
  font-size: 26px;
}

.single-product .n2g-product-page div.product p.price del {
  color: #8b9691;
  font-size: 15px;
  font-weight: 500;
}

.single-product .n2g-product-page div.product p.price ins {
  color: var(--n2g-red);
  text-decoration: none;
}

.single-product .n2g-product-page .woocommerce-product-details__short-description {
  color: var(--n2g-muted);
  font-size: 14px;
}

.n2g-product-promotions {
  margin: 16px 0;
  border: 1px solid #ecd77d;
  border-radius: 6px;
  overflow: hidden;
}

.n2g-product-promotions h2 {
  min-height: 42px;
  margin: 0;
  padding: 0 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--n2g-green-dark);
  background: #fff8df;
  font-size: 14px;
}

.n2g-product-promotions h2 svg {
  width: 18px;
  height: 18px;
  color: #a66a00;
}

.n2g-product-promotions ul {
  margin: 0;
  padding: 12px 14px;
  display: grid;
  gap: 8px;
  list-style: none;
}

.n2g-product-promotions li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: #47534e;
  font-size: 13px;
}

.n2g-product-promotions li svg {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  flex: 0 0 auto;
  color: var(--n2g-green);
}

.single-product .n2g-product-page div.product form.cart {
  margin: 16px 0 12px;
  padding: 14px;
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 10px;
  background: #f5f8f6;
  border: 1px solid var(--n2g-line);
  border-radius: 6px;
}

.single-product .n2g-product-page div.product form.cart .quantity {
  grid-column: 1;
  grid-row: 1;
  float: none;
  margin: 0;
}

.single-product .n2g-product-page div.product form.cart .qty {
  width: 100%;
  height: 50px;
  padding: 0 8px;
  color: var(--n2g-ink);
  background: #ffffff;
  border: 1px solid #cbd5d0;
  border-radius: 5px;
}

.single-product .n2g-product-page div.product form.cart .single_add_to_cart_button {
  width: 100%;
  min-height: 50px;
  grid-column: 2;
  grid-row: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  float: none;
  color: #ffffff;
  background: var(--n2g-green);
  border-radius: 5px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
}

.single-product .n2g-product-page div.product form.cart .single_add_to_cart_button:hover,
.single-product .n2g-product-page div.product form.cart .single_add_to_cart_button:focus-visible {
  background: var(--n2g-green-dark);
}

.n2g-product-support-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.n2g-product-support-actions > a {
  min-height: 58px;
  padding: 9px 11px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--n2g-line);
  border-radius: 5px;
}

.n2g-product-support-actions > a:hover,
.n2g-product-support-actions > a:focus-visible {
  border-color: #80bfa8;
  background: var(--n2g-green-soft);
}

.n2g-product-support-actions > a > svg {
  width: 23px;
  height: 23px;
  flex: 0 0 auto;
  color: var(--n2g-green);
}

.n2g-product-support-actions span {
  min-width: 0;
  display: grid;
}

.n2g-product-support-actions small {
  color: var(--n2g-muted);
  font-size: 11px;
}

.n2g-product-support-actions strong {
  font-size: 13px;
}

.single-product .n2g-product-page .product_meta {
  margin-top: 16px;
  padding-top: 13px;
  color: var(--n2g-muted);
  border-top: 1px solid var(--n2g-line);
  font-size: 12px;
}

.single-product .n2g-product-page .product_meta a {
  color: var(--n2g-green);
}

.n2g-product-assurance {
  clear: both;
  margin: 0 0 26px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-block: 1px solid var(--n2g-line);
}

.n2g-product-assurance > div {
  min-height: 92px;
  padding: 15px;
  display: flex;
  align-items: center;
  gap: 11px;
  border-right: 1px solid var(--n2g-line);
}

.n2g-product-assurance > div:last-child {
  border-right: 0;
}

.n2g-product-assurance > div > svg {
  width: 27px;
  height: 27px;
  flex: 0 0 auto;
  color: var(--n2g-green);
}

.n2g-product-assurance span {
  display: grid;
}

.n2g-product-assurance strong {
  font-size: 13px;
}

.n2g-product-assurance small {
  margin-top: 3px;
  color: var(--n2g-muted);
  font-size: 11px;
  line-height: 1.35;
}

.single-product .n2g-product-page div.product .woocommerce-tabs {
  clear: both;
  margin: 0;
  padding-top: 8px;
  scroll-margin-top: 130px;
}

.single-product .n2g-product-page div.product .woocommerce-tabs ul.tabs {
  margin: 0;
  padding: 0;
  display: flex;
  gap: 24px;
  border-bottom: 1px solid var(--n2g-line);
}

.single-product .n2g-product-page div.product .woocommerce-tabs ul.tabs::before,
.single-product .n2g-product-page div.product .woocommerce-tabs ul.tabs li::before,
.single-product .n2g-product-page div.product .woocommerce-tabs ul.tabs li::after {
  display: none;
}

.single-product .n2g-product-page div.product .woocommerce-tabs ul.tabs li {
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.single-product .n2g-product-page div.product .woocommerce-tabs ul.tabs li a {
  min-height: 46px;
  padding: 0 2px;
  display: flex;
  align-items: center;
  color: var(--n2g-muted);
  border-bottom: 3px solid transparent;
  font-size: 14px;
}

.single-product .n2g-product-page div.product .woocommerce-tabs ul.tabs li.active a {
  color: var(--n2g-green-dark);
  border-bottom-color: var(--n2g-green);
}

.single-product .n2g-product-page div.product .woocommerce-tabs .panel {
  margin: 0;
  padding: 24px 0 8px;
}

.single-product .n2g-product-page div.product .woocommerce-tabs .panel > h2:first-child {
  margin-top: 0;
  font-size: 22px;
}

.n2g-product-policy {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.n2g-product-policy > div {
  padding: 18px;
  background: #f7faf8;
  border-left: 3px solid var(--n2g-green);
}

.n2g-product-policy svg {
  width: 24px;
  height: 24px;
  color: var(--n2g-green);
}

.n2g-product-policy h3 {
  margin: 10px 0 5px;
  font-size: 15px;
}

.n2g-product-policy p {
  margin: 0;
  color: var(--n2g-muted);
  font-size: 13px;
}

.single-product .n2g-product-page .related.products,
.single-product .n2g-product-page .upsells.products {
  margin-top: 34px;
}

.single-product .n2g-product-page .related.products > h2,
.single-product .n2g-product-page .upsells.products > h2 {
  font-size: 24px;
  text-align: left;
}

@media (max-width: 1080px) {
  .n2g-header__main {
    grid-template-columns: auto auto minmax(180px, 1fr) auto;
    gap: 10px;
  }

  .n2g-brand {
    min-width: 150px;
  }

  .n2g-catalog__trigger {
    width: 145px;
  }

  .n2g-brand__tagline,
  .n2g-action span {
    display: none;
  }

  .n2g-action {
    min-width: 44px;
  }

  .n2g-categories {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

  .n2g-product-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .n2g-category-showcase-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .n2g-product-grid > :nth-child(5) {
    display: none;
  }

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

  .n2g-account-login__form-panel #customer_login {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .admin-bar .n2g-site-header {
    top: 46px;
  }

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

  .n2g-topbar__items,
  .n2g-topbar__inner > :last-child {
    display: none;
  }

  .n2g-header__main {
    min-height: 68px;
    grid-template-columns: auto 1fr auto;
    gap: 10px;
  }

  .n2g-site-header {
    padding-bottom: 52px;
  }

  .n2g-catalog {
    display: none;
  }

  .n2g-brand {
    min-width: 0;
  }

  .n2g-brand__mark {
    width: 34px;
    height: 34px;
  }

  .n2g-brand__name {
    font-size: 18px;
  }

  .n2g-header__main > .n2g-search {
    position: absolute;
    top: 68px;
    left: 16px;
    right: 16px;
    height: 44px;
    box-shadow: 0 8px 18px rgba(8, 41, 30, 0.18);
  }

  .n2g-header__actions .n2g-action--account {
    display: none;
  }

  .n2g-menu-toggle {
    display: grid;
  }

  .n2g-mobile-panel {
    position: fixed;
    inset: 0 0 0 auto;
    z-index: 80;
    width: min(86vw, 340px);
    padding: 20px;
    display: block;
    color: var(--n2g-ink);
    background: #ffffff;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.2);
    overflow-y: auto;
    transform: translateX(105%);
    transition: transform 180ms ease;
  }

  .n2g-menu-open .n2g-mobile-panel {
    transform: translateX(0);
  }

  .n2g-mobile-panel__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .n2g-mobile-panel__close {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    background: #f2f5f3;
    border: 0;
    border-radius: 50%;
  }

  .n2g-mobile-panel .n2g-mobile-categories {
    margin: 24px 0 0;
    padding: 0;
    display: grid;
    list-style: none;
  }

  .n2g-mobile-categories__all > a,
  .n2g-mobile-categories__account > a {
    min-height: 46px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--n2g-line);
    font-weight: 650;
  }

  .n2g-mobile-categories__all > a,
  .n2g-mobile-categories__account > a,
  .n2g-mobile-category summary > span {
    gap: 10px;
  }

  .n2g-mobile-categories svg {
    width: 18px;
    height: 18px;
  }

  .n2g-mobile-category details {
    border-bottom: 1px solid var(--n2g-line);
  }

  .n2g-mobile-category summary {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    cursor: pointer;
    font-weight: 650;
    list-style: none;
  }

  .n2g-mobile-category summary::-webkit-details-marker {
    display: none;
  }

  .n2g-mobile-category summary > span {
    display: inline-flex;
    align-items: center;
  }

  .n2g-mobile-category__chevron {
    width: 16px !important;
    height: 16px !important;
    transition: transform 160ms ease;
  }

  .n2g-mobile-category details[open] .n2g-mobile-category__chevron {
    transform: rotate(180deg);
  }

  .n2g-mobile-category__children {
    padding: 0 0 9px 28px;
    display: grid;
  }

  .n2g-mobile-category__children a {
    min-height: 36px;
    display: flex;
    align-items: center;
    color: var(--n2g-muted);
    font-size: 13px;
  }

  .n2g-mobile-category__children a:first-child {
    color: var(--n2g-green);
    font-weight: 700;
  }

  .n2g-mobile-scrim {
    position: fixed;
    inset: 0;
    z-index: 70;
    display: none;
    background: rgba(5, 20, 15, 0.5);
  }

  .n2g-menu-open .n2g-mobile-scrim {
    display: block;
  }

  .n2g-hero__content {
    width: 74%;
  }

  .n2g-hero h1 {
    font-size: 36px;
  }

  .n2g-trust-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .n2g-trust-item:nth-child(2) {
    border-right: 0;
  }

  .n2g-trust-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--n2g-line);
  }

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

  .n2g-product-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .n2g-category-showcase-list {
    grid-template-columns: 1fr;
  }

  .n2g-category-showcase__header {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .n2g-category-showcase__title {
    grid-column: 1;
  }

  .n2g-category-showcase__all {
    grid-column: 2;
  }

  .n2g-category-showcase__children {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
  }

  .n2g-category-showcase__products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .n2g-product-grid > :nth-child(4) {
    display: none;
  }

  .n2g-feature-band {
    grid-template-columns: 1fr;
  }

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

  .woocommerce ul.products {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .single-product .n2g-product-page div.product .woocommerce-product-gallery,
  .single-product .n2g-product-page div.product .summary {
    width: 100%;
    float: none;
  }

  .single-product .n2g-product-page div.product .woocommerce-product-gallery {
    margin: 0 0 24px;
  }

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

  .n2g-product-assurance > div:nth-child(2) {
    border-right: 0;
  }

  .n2g-product-assurance > div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--n2g-line);
  }

  .n2g-account-login,
  .n2g-register-page {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .n2g-account-login__intro {
    min-height: 390px;
    padding: 38px 34px;
  }

  .n2g-account-login__support {
    margin-top: 34px;
  }

  .n2g-account-login__form-panel,
  .n2g-register-page__form-panel {
    padding: 42px 34px;
  }
}

@media (max-width: 600px) {
  .n2g-shell {
    width: min(calc(100% - 20px), var(--n2g-shell));
  }

  .n2g-topbar__inner {
    font-size: 12px;
  }

  .n2g-brand__copy {
    display: none;
  }

  .n2g-header__main > .n2g-search {
    left: 10px;
    right: 10px;
  }

  .n2g-hero-wrap {
    padding-top: 10px;
  }

  .n2g-hero {
    min-height: 350px;
    background-position: 62% center;
  }

  .n2g-hero::before {
    background: linear-gradient(90deg, rgba(7, 35, 27, 0.91), rgba(7, 35, 27, 0.63) 70%, rgba(7, 35, 27, 0.22));
  }

  .n2g-hero__content {
    width: 100%;
    padding: 28px 22px;
  }

  .n2g-hero h1 {
    max-width: 310px;
    font-size: 32px;
  }

  .n2g-hero__lead {
    max-width: 330px;
    font-size: 15px;
  }

  .n2g-button {
    padding-inline: 14px;
    font-size: 13px;
  }

  .n2g-trust-strip {
    min-height: 0;
  }

  .n2g-trust-item {
    min-height: 52px;
    padding: 8px;
    font-size: 11px;
  }

  .n2g-section {
    padding: 24px 0;
  }

  .n2g-section-heading {
    align-items: center;
  }

  .n2g-section-heading h2,
  .n2g-deal-title h2 {
    font-size: 21px;
  }

  .n2g-section-heading p {
    display: none;
  }

  .n2g-categories {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 7px;
  }

  .n2g-category {
    min-height: 100px;
    padding: 10px 4px;
  }

  .n2g-category__icon {
    width: 40px;
    height: 40px;
  }

  .n2g-category strong {
    font-size: 11px;
  }

  .n2g-deal-band {
    margin-inline: -10px;
    padding: 17px 10px 14px;
    border-radius: 0;
  }

  .n2g-deal-head {
    align-items: flex-start;
  }

  .n2g-countdown {
    display: grid;
    justify-items: end;
    gap: 3px;
    font-size: 10px;
  }

  .n2g-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .n2g-product-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .n2g-category-showcase-list {
    gap: 18px;
  }

  .n2g-category-showcase__header {
    min-height: 0;
    padding: 12px;
    gap: 10px;
  }

  .n2g-category-showcase__title h3 {
    font-size: 18px;
  }

  .n2g-category-showcase__title svg {
    width: 26px;
    height: 26px;
  }

  .n2g-category-showcase__all {
    padding-left: 10px;
    font-size: 12px;
  }

  .n2g-category-showcase__children a {
    padding: 6px 8px;
    font-size: 11px;
  }

  .n2g-category-showcase__products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .n2g-category-card {
    min-height: 358px;
  }

  .n2g-category-card__visual {
    padding: 5px;
  }

  .n2g-category-card__body {
    padding: 10px;
  }

  .n2g-category-card h4 {
    min-height: 40px;
    font-size: 13px;
  }

  .n2g-category-card__price {
    min-height: 42px;
    font-size: 15px;
  }

  .n2g-category-card__service {
    font-size: 11px;
  }

  .n2g-product-grid > :nth-child(4) {
    display: flex;
  }

  .n2g-product {
    padding: 9px;
  }

  .n2g-product h3 {
    min-height: 42px;
    font-size: 13px;
  }

  .n2g-price-current {
    font-size: 15px;
  }

  .n2g-product__note {
    min-height: 36px;
    font-size: 11px;
  }

  .n2g-feature-primary,
  .n2g-feature-secondary {
    min-height: 230px;
  }

  .n2g-feature-copy {
    left: 20px;
    bottom: 20px;
    max-width: 72%;
  }

  .n2g-feature-copy h2,
  .n2g-feature-copy h3 {
    font-size: 22px;
  }

  .n2g-services {
    grid-template-columns: 1fr;
  }

  .n2g-service {
    min-height: 92px;
  }

  .n2g-footer-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .n2g-footer-bottom {
    padding: 14px 0;
    display: grid;
  }

  .woocommerce ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .n2g-product-page {
    padding-top: 10px;
  }

  .n2g-product-breadcrumb {
    flex-wrap: nowrap;
    overflow-x: auto;
    white-space: nowrap;
  }

  .single-product .n2g-product-page div.product .woocommerce-product-gallery {
    padding: 14px;
  }

  .single-product .n2g-product-page .woocommerce-product-gallery__image img {
    max-height: 350px;
  }

  .single-product .n2g-product-page .product_title {
    font-size: 23px;
  }

  .single-product .n2g-product-page div.product p.price {
    font-size: 23px;
  }

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

  .n2g-product-assurance > div {
    min-height: 84px;
    padding: 11px 8px;
    align-items: flex-start;
  }

  .n2g-product-assurance > div > svg {
    width: 23px;
    height: 23px;
  }

  .single-product .n2g-product-page div.product .woocommerce-tabs ul.tabs {
    gap: 18px;
    overflow-x: auto;
    white-space: nowrap;
  }

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

  .n2g-account-shell {
    width: min(calc(100% - 20px), var(--n2g-shell));
    margin: 16px auto 30px;
  }

  .n2g-account-login__intro {
    min-height: 350px;
    padding: 30px 22px;
  }

  .n2g-account-login__intro h1 {
    font-size: 28px;
  }

  .n2g-account-login__lead {
    font-size: 14px;
  }

  .n2g-account-login__intro ul {
    margin-top: 26px;
    gap: 14px;
  }

  .n2g-account-login__form-panel,
  .n2g-register-page__form-panel {
    padding: 32px 22px;
  }

  .n2g-account-login__heading {
    margin-bottom: 24px;
  }

  .n2g-account-login__heading h2 {
    font-size: 22px;
  }

  .n2g-account-login__form-panel #customer_login .u-column1,
  .n2g-account-login__form-panel #customer_login .u-column2 {
    padding: 21px 18px;
  }

  .woocommerce div.product,
  .woocommerce-cart-form,
  .woocommerce-checkout,
  .woocommerce-account .woocommerce,
  .n2g-content-shell {
    padding: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
