:root {
  --header-height: 75px;
  --width-content: 1280px;
  --primary: hsla(6, 84.7%, 51.4%, 1);
  --primary-active: hsla(6, 84%, 45%, 1);
  --text-on-primary: hsla(46, 0%, 100%, 1);
  --secondary: hsla(27, 100%, 50%, 1);
  --secondary: hsl(230, 55%, 18%);
  --secondary-active: hsla(27, 100%, 45%, 1);
  --text-on-secondary: hsla(46, 0%, 100%, 1);
  --base: hsla(231, 24%, 26%, 1);
  --text-on-base: hsla(46, 0%, 100%, 1);
  --bg: hsla(0, 0%, 98%, 1);
  --bg-l-1: hsla(0, 0%, 100%, 1);
  --bg-d-1: hsla(0, 0%, 94%, 1);
  --heading: hsla(0, 0%, 16%, 1);
  --text: hsla(0, 0%, 23.9%, 1);
  --white: #ffffff;
  --black: hsla(0, 0%, 0%, 1);
  --accent: hsla(60, 100%, 50%, 1);
  --success: hsla(123, 38.2%, 54.3%, 1);
  --success-active: hsla(122, 39.4%, 49.2%, 1);
  --border: hsla(0, 0%, 80%, 1);
  --primary: #e72a2a;
}
::selection {
  background-color: var(--primary);
  color: var(--text-on-primary);
}
body {
  font-family: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  color: var(--text);
  line-height: var(--lh-p);
  font-size: var(--p);
  background-color: var(--bg);
}
.nm-page-wrap, .nm-single-product-bg {
  background-color: var(--bg) !important;
}
#main-content {
  padding-left: var(--section-padding-x);
  padding-right: var(--section-padding-x);
}
h1, h2, h3, h4, h5, h6 {
  color: var(--heading);
  font-weight: 700;
}
h1 {
  font-size: var(--h1);
  line-height: var(--lh-h1);
}
h2 {
  font-size: var(--h2);
  line-height: var(--lh-h2);
}
h3 {
  font-size: var(--h3);
  line-height: var(--lh-h3);
}
h4 {
  font-size: var(--h4);
  line-height: var(--lh-h4);
}
h5 {
  font-size: var(--h5);
  line-height: var(--lh-h5);
}
h6 {
  font-size: var(--h6);
  line-height: var(--lh-h6);
}
.page-heading {
  color: var(--text);
  width: 100%;
  text-align: center;
  align-self: center;
  font-weight: 700;
  text-transform: uppercase;
}
.button, .btn {
  transition: 0.3s ease all;
  border-radius: var(--btn-radius);
  padding-top: 0.6rem;
  padding-right: 1.8rem;
  padding-bottom: 0.6rem;
  padding-left: 1.8rem;
  font-size: var(--text-s);
  font-weight: 600;
  line-height: 1.7;
  border: none;
  cursor: pointer;
}
.button.sm, .btn.sm {
  padding-top: 0.4rem;
  padding-right: 1.4rem;
  padding-bottom: 0.4rem;
  padding-left: 1.4rem;
  font-size: var(--text-xs);
}
.button.md, .btn.md {
  padding-top: 0.8rem;
  padding-right: 2.2rem;
  padding-bottom: 0.8rem;
  padding-left: 2.2rem;
  font-size: var(--text-m);
}
.button.lg, .btn.lg {
  padding-top: 1rem;
  padding-right: 2.6rem;
  padding-bottom: 1rem;
  padding-left: 2.6rem;
  font-size: var(--text-l);
  font-weight: 600;
}
.button.xl, .btn.xl {
  padding-top: 1rem;
  padding-right: 3rem;
  padding-bottom: 1rem;
  padding-left: 3rem;
  font-size: var(--text-xl);
}
@media (max-width: 991px) {
  .button.lg, .btn.lg {
    font-size: var(--text-m);
  }
}
.button:has(.icon), .btn:has(.icon) {
  display: inline-flex;
  width: fit-content;
  gap: 0.5em;
  align-items: center;
}
.button .icon, .btn .icon {
  width: 1.3em;
  height: 1.3em;
}
.button-primary, .btn-primary {
  background-color: var(--primary);
  color: var(--text-on-primary);
}
.button-primary:hover, .btn-primary:hover {
  background-color: var(--primary-active);
}
.button-success, .btn-success {
  background-color: var(--success);
  color: #fff;
}
.button-success:hover, .btn-success:hover {
  background-color: var(--success-active);
}
.button.rounded, .btn.rounded {
  border-radius: 100rem;
}
input[type=submit]:hover, .button:hover {
  opacity: 1;
  background-color: var(--primary-active);
}
section.section {
  display: flex;
  flex-direction: column;
}
ul.list {
  list-style: initial;
  padding-left: 2.4rem;
}
ul.list li {
  list-style: initial;
  margin-bottom: 0.6rem;
}
ul.list li:last-child {
  margin-bottom: 0;
}
ul.list > li > ul {
  margin: 0.2rem 0;
  margin-left: 1em;
}
ul.list > li > ul li {
  margin-bottom: 0.2rem;
  list-style: inherit;
}
.product-list {
  display: grid;
  align-items: initial;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: var(--space-l);
  justify-items: stretch;
  justify-content: stretch;
}
@media (max-width: 991px) {
  .product-list {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .product-list {
    grid-template-columns: 1fr;
  }
}
.product-list li {
  display: flex;
  justify-content: center;
}
.product-card {
  display: grid;
  align-items: initial;
  justify-items: center;
  grid-gap: var(--space-s);
  max-width: 500px;
  width: 100%;
  margin: 0 auto;
}
.product-card__image {
  transform: scale(1.01);
  transition: transform 0.5s ease;
}
.product-card:hover .product-card__image {
  transform: scale(1.05);
}
.product-card .product-card__link {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  row-gap: var(--space-xs);
  height: fit-content;
  width: 100%;
  align-self: stretch !important;
  align-items: center;
}
.product-card__image-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  border: 1px solid var(--border);
  overflow: hidden;
  margin-bottom: var(--space-xs);
}
.product-card__image {
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  object-fit: cover;
}
.product-card__heading {
  text-align: center;
  font-size: 16px;
  min-height: 65px;
}
.product-card__price {
  font-size: var(--h3);
  font-weight: 700;
  color: var(--primary);
}
.product-card__button {
  background-color: var(--primary);
  color: var(--text-on-primary);
  min-width: 140px;
}
.woocommerce-product-gallery__image {
  border-radius: 8px;
  border: 1px solid var(--border);
  overflow: hidden;
}
.woocommerce-product-gallery__image img {
  transform: scale(1.01);
}
.product .summary {
  padding-left: 65px;
}
.product .summary .product_title {
  font-size: var(--h2);
}
.product .summary .price .amount {
  font-size: var(--h3);
  font-weight: 700;
  color: var(--primary);
}
.product .summary .button {
  z-index: 1;
  position: relative;
  padding: 10px;
}
.nm-quantity-wrap {
  border-radius: var(--btn-radius) var(--btn-radius) 0 0;
  margin-bottom: -3px;
  background: white;
  padding-bottom: 3px;
}
.home-slider .splide__slide {
  aspect-ratio: 1.4;
  cursor: grab;
}
.splide__slide img {
  pointer-events: none;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-notice {
  padding-bottom: var(--section-space-m);
}
.page-notice__inner {
  background-color: var(--bg-d-1);
  padding-top: var(--space-m);
  padding-right: var(--space-m);
  padding-bottom: var(--space-m);
  padding-left: var(--space-m);
}
.page-notice__heading {
  color: var(--primary-active);
  font-size: var(--h2);
}
.page-notice__text {
  font-size: 1.5rem;
}
.accordion__item {
  overflow: hidden;
}
.accordion__trigger {
  width: 100%;
  padding: 3rem 1.5rem;
  padding-bottom: 2rem;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.2s ease;
  font-size: var(--h5);
  font-weight: 600;
  color: var(--text);
}
.accordion__trigger-icon {
  min-width: 2.4rem;
  min-height: 2.4rem;
  transition: transform 0.3s ease;
}
.accordion__content {
  height: 0;
  overflow: visible !important;
  transition: height 0.3s ease-out;
  padding-bottom: 1rem;
}
.accordion__content-inner {
  padding: 2rem 1.5rem;
  padding-top: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.accordion__item.is-open .accordion__trigger-icon {
  transform: scale(-1);
}
.accordion__item.is-open .accordion__content-inner {
  opacity: 1;
}
.accordion__item:not(:last-child) {
  border-bottom: 1px solid var(--border);
}
.faqs__container {
  max-width: 900px;
}
.blog-posts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-m);
}
@media (max-width: 1200px) {
  .blog-posts {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .blog-posts {
    grid-template-columns: 1fr;
  }
}
.blog-post {
  display: flex;
  flex-direction: column;
}
.blog-post__thumbnail {
  aspect-ratio: 1.5;
  display: flex;
  justify-content: stretch;
  align-items: stretch;
  border-radius: 1rem;
  overflow: hidden;
  margin-bottom: var(--space-s);
}
.blog-post__thumbnail img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.blog-post__meta {
  font-size: 1.4rem;
  color: #666;
  font-weight: 600;
  line-height: 1.2;
}
.blog-post__title {
  margin-bottom: var(--space-xs);
  font-weight: 700;
  font-size: var(--h3);
}
.blog-post__excerpt {
  font-size: 1.4rem;
  line-height: 1.6;
}
.blog-post__excerpt p {
  margin: 0;
}
