.nm-products-grid,
.nm-shop-main ul.products {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.nm-product-card,
.nm-shop-main ul.products li.product {
  background: var(--nm-card);
  border: 1px solid var(--nm-border);
  border-radius: var(--nm-radius-md);
  box-shadow: var(--nm-shadow-sm);
  overflow: hidden;
  min-width: 0;
  transition: transform .16s ease, box-shadow .16s ease;
}

.nm-product-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--nm-shadow-md);
}

.nm-product-card__media {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  background: #fafafa;
  overflow: hidden;
}

.nm-product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: .75rem;
  transition: transform .18s ease;
}

.nm-product-card:hover .nm-product-card__media img {
  transform: scale(1.04);
}

.nm-product-badge {
  position: absolute;
  z-index: 2;
  top: .65rem;
  left: .65rem;
  border-radius: var(--nm-radius-sm);
  padding: .25rem .45rem;
  color: #fff;
  font-size: .75rem;
  font-weight: 800;
}

.nm-product-badge--sale {
  background: var(--nm-danger);
}

.nm-product-badge--stock {
  background: var(--nm-dark);
}

.nm-product-card__body {
  padding: .8rem .85rem .55rem;
}

.nm-product-card__cats {
  min-height: 1.1rem;
  color: var(--nm-muted);
  font-size: .75rem;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.nm-product-card__title {
  font-size: .95rem;
  line-height: 1.35;
  min-height: 2.6em;
  margin: .25rem 0 .4rem;
}

.nm-product-card__title a {
  color: var(--nm-text);
}

.nm-product-card__rating {
  min-height: 1.25rem;
  display: flex;
  align-items: center;
  gap: .25rem;
  color: var(--nm-muted);
  font-size: .75rem;
}

.nm-product-card__price {
  margin-top: .35rem;
  color: var(--nm-primary-dark);
  font-size: 1.1rem;
  font-weight: 900;
}

.nm-product-card__price del {
  color: var(--nm-muted);
  font-size: .82rem;
  font-weight: 500;
}

.nm-product-card__actions {
  display: grid;
  grid-template-columns: 1fr 44px;
  gap: .45rem;
  padding: 0 .85rem .85rem;
}

.nm-product-card__actions .button {
  width: 100%;
  min-height: 42px;
  padding: .55rem .65rem;
  font-size: .85rem;
}

.nm-wishlist,
.nm-wishlist-fallback {
  min-width: 44px;
  min-height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--nm-border);
  border-radius: var(--nm-radius-sm);
  background: #fff;
}

.nm-shop-page {
  padding: 1.2rem 0 2rem;
}

.nm-shop-header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: start;
  margin: 0 0 1rem;
}

.nm-shop-header h1 {
  margin: 0 0 .35rem;
  font-size: 1.7rem;
}

.nm-shop-return-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: .55rem;
  margin-left: auto;
}

.nm-shop-return-actions__link {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .55rem .9rem;
  border: 1px solid #f0dfcf;
  border-radius: 999px;
  background: #fff8f2;
  color: #d95700;
  font-size: .84rem;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

.nm-shop-return-actions__link:hover,
.nm-shop-return-actions__link:focus-visible {
  border-color: #ffb678;
  background: #fff0e3;
  color: #a63b00;
  outline: none;
}

.nm-shop-return-actions__link--primary {
  border-color: #ff6b00;
  background: #ff6b00;
  color: #fff;
  box-shadow: 0 12px 26px rgba(255, 107, 0, .18);
}

.nm-shop-return-actions__link--primary:hover,
.nm-shop-return-actions__link--primary:focus-visible {
  background: #221814;
  border-color: #221814;
  color: #fff;
}

.nm-shop-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
}

.nm-shop-sidebar {
  background: #fff;
  border: 1px solid var(--nm-border);
  border-radius: var(--nm-radius-md);
  box-shadow: var(--nm-shadow-sm);
  padding: 1rem;
  position: sticky;
  top: 156px;
}

.nm-filter-head {
  display: none;
}

.nm-filter-widget {
  border-bottom: 1px solid var(--nm-border);
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}

.nm-filter-widget:last-child {
  border-bottom: 0;
}

.nm-filter-title {
  font-size: .98rem;
  margin: 0 0 .7rem;
}

.nm-shop-toolbar {
  background: #fff;
  border: 1px solid var(--nm-border);
  border-radius: var(--nm-radius-md);
  padding: .75rem 1rem;
  margin-bottom: 1rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.nm-filter-toggle {
  display: none;
  min-height: 44px;
  border: 1px solid var(--nm-border);
  background: #fff;
  border-radius: var(--nm-radius-sm);
  padding: 0 1rem;
  font-weight: 800;
}

.nm-product-legal,
.nm-delivery-box {
  background: #fff7ef;
  border: 1px solid #ffd9ba;
  border-radius: var(--nm-radius-md);
  padding: .9rem;
  margin: .85rem 0;
}

.nm-product-legal p {
  margin: .25rem 0 0;
}

.nm-delivery-box {
  display: grid;
  gap: .35rem;
  background: #f7fbf8;
  border-color: #d5eadc;
}

body.nm-site.single-product .site-content {
  overflow-x: clip;
}

body.nm-site.single-product .nm-product-wayfinder {
  width: min(1180px, calc(100vw - 32px));
  margin: 1rem auto 0;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto;
  gap: 1rem;
  align-items: center;
  padding: .85rem;
  border: 1px solid rgba(217, 87, 0, .16);
  border-radius: 18px;
  background: linear-gradient(135deg, #fff 0%, #fff8f2 100%);
  box-shadow: 0 14px 34px rgba(30, 24, 19, .07);
}

body.nm-site.single-product .nm-product-wayfinder__copy {
  min-width: 0;
  display: grid;
  gap: .18rem;
}

body.nm-site.single-product .nm-product-wayfinder__copy span {
  width: fit-content;
  padding: .23rem .52rem;
  border-radius: 999px;
  background: #231b16;
  color: #fff;
  font-size: .72rem;
  font-weight: 900;
  line-height: 1;
}

body.nm-site.single-product .nm-product-wayfinder__copy strong {
  color: #241a15;
  font-size: .96rem;
  font-weight: 950;
  line-height: 1.2;
}

body.nm-site.single-product .nm-product-wayfinder__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: .5rem;
}

body.nm-site.single-product .nm-product-wayfinder__link {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .35rem;
  padding: .62rem .86rem;
  border: 1px solid rgba(30, 24, 19, .1);
  border-radius: 999px;
  background: #fff;
  color: #332820 !important;
  font-size: .84rem;
  font-weight: 900;
  line-height: 1;
  text-decoration: none !important;
  white-space: nowrap;
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease, background .16s ease;
}

body.nm-site.single-product .nm-product-wayfinder__link:hover,
body.nm-site.single-product .nm-product-wayfinder__link:focus-visible {
  border-color: rgba(217, 87, 0, .28);
  box-shadow: 0 10px 22px rgba(30, 24, 19, .08);
  transform: translateY(-1px);
}

body.nm-site.single-product .nm-product-wayfinder__link--primary {
  border-color: var(--nm-primary);
  background: var(--nm-primary);
  color: #fff !important;
}

body.nm-site.single-product .nm-product-wayfinder__link--back span {
  width: 1.15rem;
  height: 1.15rem;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: #fff3e8;
  color: var(--nm-primary-dark);
  font-size: 1.15rem;
  line-height: .8;
}

body.nm-site.single-product div.product {
  max-width: min(1180px, calc(100vw - 32px));
  margin: 1.5rem auto 2.5rem;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(360px, 1.05fr);
  gap: 1.5rem;
  align-items: start;
  overflow: visible;
}

body.nm-site.single-product div.product .woocommerce-product-gallery {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 1rem;
  float: none !important;
  overflow: hidden !important;
  opacity: 1 !important;
  border: 1px solid rgba(30, 24, 19, .08);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(30, 24, 19, .08);
}

body.nm-site.single-product div.product .woocommerce-product-gallery__wrapper,
body.nm-site.single-product div.product .electro-wc-product-gallery__wrapper {
  max-width: 100% !important;
  overflow: hidden !important;
}

body.nm-site.single-product div.product .woocommerce-product-gallery__wrapper {
  display: block !important;
  margin: 0 !important;
}

body.nm-site.single-product div.product .woocommerce-product-gallery__wrapper > .woocommerce-product-gallery__image {
  display: none !important;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
}

body.nm-site.single-product div.product .woocommerce-product-gallery__wrapper > .woocommerce-product-gallery__image:first-child {
  display: block !important;
}

body.nm-site.single-product div.product .woocommerce-product-gallery__image a {
  display: grid;
  place-items: center;
  min-height: clamp(300px, 42vw, 540px);
  border-radius: 14px;
  background: #fbfaf8;
}

body.nm-site.single-product div.product .woocommerce-product-gallery img {
  width: 100%;
  max-height: 520px;
  height: auto;
  object-fit: contain;
}

body.nm-site.single-product div.product .electro-wc-product-gallery {
  display: none !important;
}

body.nm-site.single-product div.product .summary,
body.nm-site.single-product div.product .entry-summary {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 1.25rem;
  float: none !important;
  border: 1px solid rgba(30, 24, 19, .08);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(30, 24, 19, .08);
}

body.nm-site.single-product div.product .woocommerce-product-details__short-description {
  max-height: 220px;
  margin: .85rem 0 1rem;
  padding: .9rem;
  overflow: auto;
  border: 1px solid rgba(217, 87, 0, .14);
  border-radius: 16px;
  background: linear-gradient(135deg, #fffaf5 0%, #fff 100%);
  color: #554a42;
  font-size: .9rem;
  font-weight: 650;
  line-height: 1.55;
}

body.nm-site.single-product div.product .woocommerce-product-details__short-description * {
  color: inherit !important;
}

body.nm-site.single-product div.product .woocommerce-product-details__short-description p {
  margin: 0 0 .6rem;
}

body.nm-site.single-product div.product .woocommerce-product-details__short-description ul {
  margin: .45rem 0 .6rem;
  padding-left: 1.1rem;
}

body.nm-site.single-product div.product .woocommerce-product-details__short-description li {
  margin: .22rem 0;
}

body.nm-site.single-product div.product .woocommerce-product-details__short-description strong {
  color: #241a15 !important;
  font-weight: 950;
}

body.nm-site.single-product div.product .woocommerce-product-details__short-description a {
  color: var(--nm-primary-dark) !important;
  font-weight: 950;
  text-decoration: none;
}

body.nm-site.single-product div.product .woocommerce-product-details__short-description {
  display: none !important;
}

body.nm-site.single-product .single-product-wrapper {
  align-items: start;
}

body.nm-site.single-product div.product .summary,
body.nm-site.single-product div.product .entry-summary,
body.nm-site.single-product div.product .woocommerce-product-gallery,
body.nm-site.single-product div.product .related.products {
  border-color: rgba(61, 42, 31, .1);
  border-radius: 24px;
  box-shadow: 0 20px 54px rgba(28, 20, 15, .09);
}

body.nm-site.single-product div.product .summary,
body.nm-site.single-product div.product .entry-summary {
  background:
    linear-gradient(135deg, #fff 0%, #fff9f4 100%);
}

body.nm-site.single-product div.product .product_title {
  color: #1d1511;
  font-size: clamp(1.9rem, 3vw, 3rem);
  font-weight: 950;
  line-height: 1.04;
}

body.nm-site.single-product div.product .price {
  color: var(--nm-primary-dark);
  font-size: clamp(1.65rem, 3vw, 2.6rem);
  font-weight: 950;
}

body.nm-site.single-product .nm-product-premium-brief {
  margin: 1rem 0;
  padding: 1rem;
  border: 1px solid rgba(217, 87, 0, .16);
  border-radius: 18px;
  background: #fff;
}

body.nm-site.single-product .nm-product-premium-brief span {
  display: inline-flex;
  margin-bottom: .45rem;
  padding: .28rem .62rem;
  border-radius: 999px;
  background: #211814;
  color: #fff;
  font-size: .74rem;
  font-weight: 950;
}

body.nm-site.single-product .nm-product-premium-brief p {
  margin: 0 0 .75rem;
  color: #655950;
  font-size: .94rem;
  line-height: 1.55;
}

body.nm-site.single-product .nm-product-premium-brief ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .5rem .7rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

body.nm-site.single-product .nm-product-premium-brief li {
  position: relative;
  padding-left: 1.15rem;
  color: #2c211b;
  font-size: .84rem;
  font-weight: 800;
}

body.nm-site.single-product .nm-product-premium-brief li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .42rem;
  width: .42rem;
  height: .42rem;
  border-radius: 999px;
  background: var(--nm-primary);
  box-shadow: 0 0 0 4px rgba(255, 107, 0, .12);
}

body.nm-site.single-product table.variations {
  margin-top: .75rem;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
}

body.nm-site.single-product div.product form.cart .button,
body.nm-site.single-product div.product .single_add_to_cart_button {
  min-height: 50px;
  border-radius: 14px;
  background: linear-gradient(135deg, #ff781f, #d95700);
  box-shadow: 0 16px 30px rgba(217, 87, 0, .24);
}

body.nm-site.single-product div.product .woocommerce-tabs {
  padding: 1rem;
  border: 1px solid rgba(61, 42, 31, .1);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 20px 54px rgba(28, 20, 15, .07);
}

body.nm-site.single-product div.product .woocommerce-tabs ul.tabs {
  display: flex;
  gap: .5rem;
  margin: 0 0 1rem;
  padding: 0;
  overflow-x: auto;
  list-style: none;
}

body.nm-site.single-product div.product .woocommerce-tabs ul.tabs li {
  margin: 0;
}

body.nm-site.single-product div.product .woocommerce-tabs ul.tabs a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: .6rem .9rem;
  border-radius: 999px;
  background: #f6eee7;
  color: #2c211b;
  font-size: .84rem;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

body.nm-site.single-product div.product .woocommerce-tabs ul.tabs li.active a {
  background: #211814;
  color: #fff;
}

body.nm-site.single-product div.product .woocommerce-tabs,
body.nm-site.single-product div.product .related,
body.nm-site.single-product div.product .upsells {
  grid-column: 1 / -1;
  min-width: 0;
}

body.nm-site.single-product .nm-product-legal {
  display: none !important;
}

body.nm-site.single-product .nm-delivery-box {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .75rem;
  margin: 1rem 0;
  padding: .75rem;
  border: 1px solid rgba(30, 24, 19, .08);
  border-radius: 16px;
  background: linear-gradient(135deg, #fff 0%, #fff7ef 100%);
  box-shadow: none;
}

body.nm-site.single-product .nm-delivery-box span {
  position: relative;
  min-height: 74px;
  display: grid;
  align-content: center;
  gap: .22rem;
  padding: .7rem .7rem .7rem 2.4rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, .82);
}

body.nm-site.single-product .nm-delivery-box span::before {
  content: "";
  position: absolute;
  left: .75rem;
  top: 50%;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: var(--nm-primary);
  box-shadow: 0 0 0 5px rgba(217, 87, 0, .12);
  transform: translateY(-50%);
}

body.nm-site.single-product .nm-delivery-box strong {
  color: #231b16;
  font-size: .84rem;
  font-weight: 900;
  line-height: 1.1;
}

body.nm-site.single-product .nm-delivery-box small {
  color: #766b63;
  font-size: .72rem;
  font-weight: 700;
  line-height: 1.3;
}

body.nm-site.single-product div.product .action-buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .6rem;
  margin: .85rem 0 1rem;
}

body.nm-site.single-product div.product .action-buttons .yith-add-to-wishlist-button-block--single,
body.nm-site.single-product div.product .action-buttons .yith-wcwl-add-to-wishlist-button {
  margin: 0 !important;
}

body.nm-site.single-product div.product .action-buttons .yith-wcwl-add-to-wishlist-button {
  width: 46px !important;
  min-width: 46px !important;
  height: 46px !important;
  min-height: 46px !important;
  display: grid !important;
  place-items: center !important;
  padding: 0 !important;
  border: 1px solid rgba(30, 24, 19, .12) !important;
  border-radius: 14px !important;
  background: #fff7ef !important;
  color: var(--nm-primary-dark) !important;
  box-shadow: none !important;
  text-decoration: none !important;
}

body.nm-site.single-product div.product .action-buttons .yith-wcwl-add-to-wishlist-button:hover,
body.nm-site.single-product div.product .action-buttons .yith-wcwl-add-to-wishlist-button:focus-visible {
  border-color: rgba(217, 87, 0, .32) !important;
  background: #fff !important;
  color: var(--nm-primary) !important;
  transform: translateY(-1px);
}

body.nm-site.single-product div.product .action-buttons .yith-wcwl-icon,
body.nm-site.single-product div.product .action-buttons .yith-wcwl-add-to-wishlist-button-icon {
  width: 22px !important;
  height: 22px !important;
  margin: 0 !important;
}

body.nm-site.single-product div.product .action-buttons .yith-wcwl-add-to-wishlist-button__label {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

body.nm-site.single-product div.product .action-buttons .nm-add-to-compare-link,
body.nm-site.single-product div.product .action-buttons .add-to-compare-link {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  padding: .7rem 1rem;
  border: 1px solid rgba(30, 24, 19, .12);
  border-radius: 14px;
  background: #231b16;
  color: #fff !important;
  box-shadow: 0 12px 26px rgba(30, 24, 19, .14);
  font-size: .88rem;
  font-weight: 950;
  line-height: 1;
  text-decoration: none !important;
}

body.nm-site.single-product div.product .action-buttons .nm-add-to-compare-link::before,
body.nm-site.single-product div.product .action-buttons .add-to-compare-link::before {
  content: "";
  width: 1rem;
  height: 1rem;
  border: 2px solid currentColor;
  border-radius: 5px;
  box-shadow: .22rem .22rem 0 -1px currentColor;
}

body.nm-site.single-product div.product .action-buttons .nm-add-to-compare-link:hover,
body.nm-site.single-product div.product .action-buttons .nm-add-to-compare-link:focus-visible,
body.nm-site.single-product div.product .action-buttons .nm-add-to-compare-link.added,
body.nm-site.single-product div.product .action-buttons .add-to-compare-link:hover,
body.nm-site.single-product div.product .action-buttons .add-to-compare-link:focus-visible,
body.nm-site.single-product div.product .action-buttons .add-to-compare-link.added {
  background: var(--nm-primary);
  border-color: var(--nm-primary);
  color: #fff !important;
  transform: translateY(-1px);
}

body.nm-site.single-product div.product .action-buttons .nm-compare-hint {
  flex: 1 0 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .45rem .6rem;
  margin-top: .1rem;
  padding: .72rem .82rem;
  border: 1px solid rgba(217, 87, 0, .16);
  border-radius: 14px;
  background: #fff7ef;
  color: #6b6159;
  font-size: .82rem;
  font-weight: 750;
  line-height: 1.35;
}

body.nm-site.single-product div.product .action-buttons .nm-compare-hint strong {
  color: #231b16;
  font-weight: 950;
}

body.nm-site.single-product div.product .action-buttons .nm-compare-hint a {
  color: var(--nm-primary-dark);
  font-weight: 950;
  text-decoration: none;
}

body.nm-site.single-product div.product {
  display: block;
}

body.nm-site.single-product div.product .single-product-wrapper {
  width: 100%;
  max-width: 100%;
  margin: 0 !important;
  display: grid !important;
  grid-template-columns: minmax(0, .96fr) minmax(380px, 1.04fr);
  gap: 1.5rem;
  align-items: start;
}

body.nm-site.single-product div.product .product-images-wrapper,
body.nm-site.single-product div.product .single-product-wrapper > .summary,
body.nm-site.single-product div.product .single-product-wrapper > .entry-summary {
  width: 100% !important;
  max-width: 100% !important;
  flex: none !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin: 0 !important;
}

body.nm-site.single-product div.product .product-images-wrapper {
  min-width: 0;
}

body.nm-site.single-product div.product .related.products {
  width: 100%;
  max-width: 100%;
  clear: both;
  margin: 2rem 0 0;
  padding: 1rem;
  overflow: hidden;
  border: 1px solid rgba(30, 24, 19, .08);
  border-radius: 18px;
  background: linear-gradient(180deg, #fffaf5 0%, #fff 36%);
  box-shadow: 0 18px 42px rgba(30, 24, 19, .08);
}

body.nm-site.single-product div.product .related.products > h2 {
  margin: 0 0 1rem;
  color: #241a15;
  font-size: 1.35rem;
  font-weight: 950;
  line-height: 1.15;
}

body.nm-site.single-product div.product .related.products ul.products {
  width: 100% !important;
  max-width: 100% !important;
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 1rem !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: visible !important;
}

body.nm-site.single-product div.product .related.products ul.products li.product,
body.nm-site.single-product div.product .related.products .nm-product-card {
  width: auto !important;
  min-width: 0;
  margin: 0 !important;
}

body.nm-site.single-product div.product .related.products .nm-product-card__media {
  height: auto !important;
  aspect-ratio: 1 / 1;
  margin: 0 .75rem;
  border-radius: 8px;
  background: #fbf8f4 !important;
}

body.nm-site.single-product div.product .related.products .nm-product-card__media img {
  width: 100% !important;
  height: 100% !important;
  display: block;
  padding: .5rem !important;
  object-fit: contain !important;
  object-position: center center !important;
}

body.nm-site.single-product div.product .related.products .nm-product-card__actions {
  grid-template-columns: 1fr;
  gap: .45rem;
}

body.nm-site.single-product div.product .related.products .nm-product-card__button,
body.nm-site.single-product div.product .related.products .nm-product-card__actions .button,
body.nm-site.single-product div.product .related.products .nm-product-card__actions a.button,
body.nm-site.single-product div.product .related.products .nm-product-card__details,
body.nm-site.single-product div.product .related.products .nm-added-continue {
  width: 100% !important;
  min-width: 0 !important;
  min-height: 38px !important;
  padding: .62rem .7rem !important;
  white-space: normal;
  line-height: 1.12 !important;
}

body.nm-site.single-product div.product .related.products .nm-product-card__details {
  background: #fff7ef;
  color: var(--nm-primary-dark);
}

.nm-page .woocommerce-cart-form,
.nm-page .cart-collaterals,
.nm-page form.checkout,
.nm-page .woocommerce-checkout-review-order,
.nm-page .woocommerce-MyAccount-navigation,
.nm-page .woocommerce-MyAccount-content {
  background: #fff;
  border: 1px solid var(--nm-border);
  border-radius: var(--nm-radius-md);
  box-shadow: var(--nm-shadow-sm);
  padding: 1rem;
}

.nm-age-checkout {
  background: #fff7ef;
  border: 1px solid #ffd9ba;
  border-radius: var(--nm-radius-sm);
  padding: .8rem;
}

body.woocommerce-checkout,
body.woocommerce-checkout .site-content,
body.woocommerce-checkout .content-area,
body.woocommerce-checkout article.page {
  background: #f6f4f1 !important;
  color: #201b17;
}

body.woocommerce-checkout .site-content .container,
body.woocommerce-checkout .nm-page {
  max-width: 1240px;
}

body.woocommerce-checkout .entry-title,
body.woocommerce-checkout .page-title,
body.woocommerce-checkout .woocommerce-breadcrumb {
  display: none !important;
}

body.woocommerce-checkout .woocommerce-notices-wrapper,
body.woocommerce-checkout .woocommerce-form-coupon-toggle,
body.woocommerce-checkout .checkout_coupon {
  width: min(1170px, calc(100vw - 32px));
  margin-inline: auto !important;
}

body.woocommerce-checkout .woocommerce-form-coupon-toggle .woocommerce-info {
  margin: 1rem 0 !important;
  padding: .95rem 1.1rem !important;
  border: 1px solid rgba(217, 87, 0, .16) !important;
  border-radius: 16px !important;
  background: #fff7ef !important;
  color: #4f453e !important;
  box-shadow: 0 14px 34px rgba(30, 24, 19, .06);
  font-weight: 800;
}

.nm-checkout-page {
  width: min(1170px, calc(100vw - 32px));
  margin: 1rem auto 2.5rem;
  color: #201b17;
}

.nm-checkout-hero {
  min-height: 150px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
  padding: 1.35rem;
  border: 1px solid rgba(30, 24, 19, .08);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255, 247, 239, .96), rgba(255, 255, 255, .98)),
    #fff;
  box-shadow: 0 20px 52px rgba(30, 24, 19, .08);
}

.nm-checkout-hero span,
.nm-checkout-summary__head span {
  display: inline-flex;
  width: fit-content;
  margin-bottom: .42rem;
  padding: .27rem .68rem;
  border-radius: 999px;
  background: #231b16;
  color: #fff;
  font-size: .74rem;
  font-weight: 950;
}

.nm-checkout-hero h1,
.nm-checkout-summary__head h2 {
  margin: 0;
  color: #201b17;
  font-size: clamp(1.8rem, 4vw, 2.45rem);
  font-weight: 950;
  line-height: 1.05;
}

.nm-checkout-hero p {
  max-width: 580px;
  margin: .5rem 0 0;
  color: #6d625a;
  font-weight: 750;
}

.nm-checkout-hero__badges {
  display: grid;
  gap: .48rem;
  width: min(270px, 100%);
  min-width: 248px;
}

.nm-checkout-hero__badges .nm-checkout-benefit {
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: .78rem;
  padding: .4rem .68rem;
  border: 1px solid #ecd9ca;
  border-radius: 12px;
  background: #fff;
  color: #201b17;
}

.nm-checkout-hero__badges .nm-checkout-benefit img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  flex: none;
}

.nm-checkout-hero__badges .nm-checkout-benefit strong {
  color: #201b17;
  font-size: .84rem;
  font-weight: 800;
  line-height: 1.25;
}

.nm-checkout-guest {
  display: flex;
  align-items: center;
  gap: .9rem;
  margin: 0 0 1rem;
  padding: .85rem 1rem;
  border: 1px solid rgba(217, 87, 0, .2);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(30, 24, 19, .05);
}

.nm-checkout-guest__mark {
  width: 42px;
  height: 42px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff1e5;
  color: var(--nm-primary-dark);
  font-size: 1.15rem;
  font-weight: 950;
}

.nm-checkout-guest__copy {
  min-width: 0;
  flex: 1;
}

.nm-checkout-guest__copy strong {
  display: block;
  margin-bottom: .18rem;
  color: #201b17;
  font-size: .96rem;
  font-weight: 950;
}

.nm-checkout-guest__copy p {
  margin: 0;
  color: #6d625a;
  font-size: .82rem;
  font-weight: 700;
  line-height: 1.4;
}

.nm-checkout-guest__action {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
  padding: 0 1.15rem;
  border-radius: 999px;
  background: var(--nm-primary);
  color: #fff;
  font-size: .84rem;
  font-weight: 900;
  text-decoration: none;
  transition: background .16s ease, transform .16s ease;
}

.nm-checkout-guest__action:hover,
.nm-checkout-guest__action:focus-visible {
  background: var(--nm-primary-dark);
  color: #fff;
  transform: translateY(-1px);
}

.nm-checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 420px);
  gap: 1.1rem;
  align-items: start;
}

.nm-checkout-details,
.nm-checkout-summary {
  min-width: 0;
}

.nm-checkout-customer,
.woocommerce-checkout .col2-set.nm-checkout-customer {
  width: 100% !important;
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 1rem;
  float: none !important;
}

.nm-checkout-panel,
.woocommerce-checkout .nm-checkout-panel,
.nm-checkout-summary {
  width: 100% !important;
  float: none !important;
  margin: 0 !important;
  padding: 1.15rem !important;
  border: 1px solid rgba(30, 24, 19, .08) !important;
  border-radius: 20px !important;
  background: #fff !important;
  box-shadow: 0 18px 46px rgba(30, 24, 19, .08) !important;
}

.nm-checkout-summary {
  position: sticky;
  top: 1rem;
}

.nm-checkout-panel h3,
.nm-checkout-payment h3 {
  margin: 0 0 1rem;
  padding-bottom: .85rem;
  border-bottom: 1px solid rgba(30, 24, 19, .08);
  color: #201b17;
  font-size: 1.28rem;
  font-weight: 950;
  line-height: 1.15;
}

.nm-checkout-panel h3::after,
.nm-checkout-payment h3::after,
.nm-checkout-summary__head h2::after {
  content: "";
  display: block;
  width: 62px;
  height: 3px;
  margin-top: .65rem;
  border-radius: 999px;
  background: var(--nm-primary);
}

.nm-checkout-form .form-row {
  margin: 0 0 .9rem !important;
}

.nm-checkout-form .form-row label {
  margin-bottom: .35rem;
  color: #4f453e;
  font-size: .84rem;
  font-weight: 900;
  line-height: 1.2;
}

.nm-checkout-form input.input-text,
.nm-checkout-form textarea,
.nm-checkout-form select,
.nm-checkout-form .select2-container .select2-selection--single {
  min-height: 48px !important;
  border: 1px solid rgba(30, 24, 19, .1) !important;
  border-radius: 14px !important;
  background: #faf8f5 !important;
  color: #201b17 !important;
  box-shadow: none !important;
  font-weight: 750;
}

.nm-checkout-form textarea {
  min-height: 110px !important;
  padding: .85rem 1rem !important;
}

.nm-checkout-form input.input-text,
.nm-checkout-form select {
  padding: 0 1rem !important;
}

.nm-checkout-form .select2-container .select2-selection--single .select2-selection__rendered {
  padding-left: 1rem !important;
  color: #201b17 !important;
  line-height: 48px !important;
}

.nm-checkout-form .select2-container .select2-selection--single .select2-selection__arrow {
  height: 48px !important;
  right: .6rem !important;
}

.nm-checkout-form input:focus,
.nm-checkout-form textarea:focus,
.nm-checkout-form select:focus,
.nm-checkout-form .select2-container--open .select2-selection--single {
  border-color: rgba(217, 87, 0, .42) !important;
  background: #fff !important;
  outline: 0 !important;
  box-shadow: 0 0 0 4px rgba(217, 87, 0, .1) !important;
}

.nm-checkout-form .form-row-first,
.nm-checkout-form .form-row-last {
  width: calc(50% - .45rem) !important;
}

.nm-checkout-form .form-row-first {
  margin-right: .9rem !important;
}

.nm-checkout-summary__head {
  margin-bottom: 1rem;
}

.nm-checkout-summary__head h2 {
  font-size: 1.55rem;
}

.nm-review-order__items {
  display: grid;
  gap: .7rem;
  margin-bottom: 1rem;
}

.nm-review-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: .8rem;
  align-items: start;
  padding: .8rem;
  border: 1px solid rgba(30, 24, 19, .08);
  border-radius: 16px;
  background: #faf8f5;
}

.nm-review-item__meta {
  min-width: 0;
}

.nm-review-item__meta strong {
  display: block;
  color: #201b17;
  font-size: .94rem;
  font-weight: 950;
  line-height: 1.25;
}

.nm-review-item__meta span,
.nm-review-item__meta .variation {
  display: block;
  margin-top: .25rem;
  color: #746a63;
  font-size: .78rem;
  font-weight: 800;
  line-height: 1.35;
}

.nm-review-item__total {
  color: #201b17;
  font-weight: 950;
  white-space: nowrap;
}

.nm-review-order__totals {
  display: grid;
  gap: .75rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(30, 24, 19, .08);
}

.nm-review-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: #4f453e;
  font-size: .9rem;
  font-weight: 850;
}

.nm-review-row strong {
  color: #201b17;
  font-weight: 950;
  text-align: right;
}

.nm-review-row--total {
  margin-top: .2rem;
  padding-top: .9rem;
  border-top: 2px solid rgba(30, 24, 19, .16);
  color: var(--nm-primary-dark);
  font-size: 1.08rem;
  font-weight: 950;
}

.nm-review-row--total strong {
  color: var(--nm-primary-dark);
}

.nm-review-shipping {
  display: grid;
  gap: .45rem;
  padding: .8rem;
  border: 1px solid rgba(30, 24, 19, .08);
  border-radius: 16px;
  background: #faf8f5;
}

.nm-review-shipping > span {
  color: #4f453e;
  font-size: .86rem;
  font-weight: 950;
}

.nm-review-shipping table,
.nm-review-shipping tbody,
.nm-review-shipping tr,
.nm-review-shipping th,
.nm-review-shipping td {
  display: block !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
}

.nm-review-shipping th {
  display: none !important;
}

.nm-review-shipping .nm-shipping-card {
  padding: 0;
  border: 0;
  background: transparent;
}

.nm-checkout-payment {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(30, 24, 19, .08);
}

.nm-checkout-payment .wc_payment_methods {
  margin: 0 0 1rem !important;
  padding: 0 !important;
  border: 0 !important;
  list-style: none;
}

.nm-checkout-payment .wc_payment_method {
  margin: 0 0 .65rem !important;
  padding: .8rem !important;
  border: 1px solid rgba(30, 24, 19, .08);
  border-radius: 16px;
  background: #faf8f5;
}

.nm-checkout-payment .payment_box {
  margin: .65rem 0 0 !important;
  padding: .75rem !important;
  border-radius: 12px !important;
  background: #fff !important;
  color: #6d625a !important;
  font-size: .84rem;
  line-height: 1.45;
}

.nm-place-order {
  margin: 0 !important;
  padding: 0 !important;
}

.nm-place-order .woocommerce-privacy-policy-text {
  margin: 0 0 .72rem;
  padding: .72rem .78rem;
  border: 1px solid #ead9cd;
  border-radius: 12px;
  background: #faf7f4;
  color: #62554c;
  font-size: .79rem;
  line-height: 1.48;
}

.nm-place-order .woocommerce-privacy-policy-text p {
  margin: 0;
}

.nm-place-order .woocommerce-privacy-policy-text a,
.nm-place-order .woocommerce-terms-and-conditions-checkbox-text a {
  color: var(--nm-primary-dark);
  font-weight: 750;
}

.nm-place-order .nm-checkout-terms {
  margin: 0 0 .72rem;
  padding: .9rem .88rem;
  border: 1px solid #ead9cd;
  border-radius: 12px;
  background: #fff;
  color: #51453d;
  font-size: .79rem;
  line-height: 1.52;
}

.nm-place-order .nm-checkout-terms h3 {
  margin: 0 0 .65rem;
  color: #201b17;
  font-size: .98rem;
}

.nm-place-order .nm-checkout-terms p {
  margin: 0 0 .62rem;
}

.nm-place-order .nm-checkout-terms__links {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  padding-top: .25rem;
}

.nm-place-order .nm-checkout-terms__links a {
  padding: .42rem .55rem;
  border-radius: 8px;
  color: var(--nm-primary-dark);
  background: #fff2e8;
  font-weight: 750;
}

.nm-place-order .woocommerce-terms-and-conditions-wrapper > .form-row {
  margin: 0 0 .8rem !important;
  padding: .72rem .78rem !important;
  border: 1px solid #eddbcf;
  border-radius: 12px;
  background: #fff7ef;
  color: #3d332d;
  font-size: .8rem;
  line-height: 1.45;
}

.nm-place-order .nm-age-checkout {
  margin: 0 0 .8rem !important;
  border-radius: 14px;
  background: #fff7ef;
}

.nm-place-order #place_order {
  width: 100%;
  min-height: 54px;
  border: 0 !important;
  border-radius: 999px !important;
  background: var(--nm-primary) !important;
  color: #fff !important;
  box-shadow: 0 14px 30px rgba(217, 87, 0, .24);
  font-size: .95rem;
  font-weight: 950;
}

.nm-place-order #place_order:hover,
.nm-place-order #place_order:focus-visible {
  background: var(--nm-primary-dark) !important;
  color: #fff !important;
}

body.nm-site.woocommerce-cart {
  background: #f6f4f1;
}

body.nm-site.woocommerce-cart .site-content,
body.nm-site.woocommerce-cart .content-area,
body.nm-site.woocommerce-cart .hentry,
body.nm-site.woocommerce-cart article.page {
  background: #f6f4f1 !important;
}

body.nm-site.woocommerce-cart .site-content .container,
body.nm-site.woocommerce-cart .nm-page {
  max-width: 1240px;
}

body.nm-site .nm-header-support-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  color: inherit;
  text-decoration: none !important;
}

body.nm-site .nm-header-support-whatsapp:hover,
body.nm-site .nm-header-support-whatsapp:focus-visible {
  color: #0d7a3a;
}

.nm-cart-page {
  padding: 1.5rem 0 2.5rem;
  color: #201b17;
}

.nm-cart-hero {
  min-height: 136px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
  padding: 1.25rem;
  border: 1px solid rgba(30, 24, 19, .08);
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(255, 247, 239, .94), rgba(255, 255, 255, .96)),
    #fff;
  box-shadow: 0 20px 52px rgba(30, 24, 19, .08);
}

.nm-cart-hero span,
.nm-cart-totals__head span {
  display: inline-flex;
  width: fit-content;
  margin-bottom: .35rem;
  padding: .25rem .62rem;
  border-radius: 999px;
  background: #231b16;
  color: #fff;
  font-size: .72rem;
  font-weight: 900;
}

.nm-cart-hero h1,
.nm-cart-totals__head h2 {
  margin: 0;
  color: #201b17;
  font-size: 1.75rem;
  font-weight: 950;
  line-height: 1.1;
}

.nm-cart-hero p {
  max-width: 560px;
  margin: .4rem 0 0;
  color: #6d625a;
  font-weight: 700;
}

.nm-cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 410px);
  gap: 1.25rem;
  align-items: start;
}

.nm-cart-card,
.nm-cart-summary,
.nm-cart-totals {
  border: 1px solid rgba(30, 24, 19, .08) !important;
  border-radius: 20px !important;
  background: #fff !important;
  box-shadow: 0 18px 46px rgba(30, 24, 19, .08) !important;
}

body.nm-site.woocommerce-cart .nm-cart-card,
body.nm-site.woocommerce-cart .nm-cart-summary,
body.nm-site.woocommerce-cart .nm-cart-summary .cart_totals {
  float: none !important;
  clear: none !important;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  margin: 0 !important;
}

.woocommerce-cart .nm-cart-card,
.woocommerce-cart .nm-cart-summary,
.woocommerce-cart .cart-collaterals.nm-cart-summary,
.woocommerce-cart .cart-collaterals.nm-cart-summary .cart_totals,
.woocommerce-cart .cart-collaterals .cart_totals.nm-cart-totals,
.woocommerce-cart .nm-cart-summary .nm-cart-totals {
  float: none !important;
  clear: none !important;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  margin: 0 !important;
}

.woocommerce-cart .cart-collaterals.nm-cart-summary {
  display: block !important;
}

.nm-cart-card {
  padding: 1rem;
}

.nm-cart-summary,
.nm-cart-totals {
  padding: 1rem;
}

.nm-cart-table__head,
.nm-cart-item {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) 120px 120px 130px;
  gap: 1rem;
  align-items: center;
}

.nm-cart-table__head {
  padding: .35rem .5rem .85rem;
  border-bottom: 1px solid rgba(30, 24, 19, .08);
  color: #7b716a;
  font-size: .78rem;
  font-weight: 900;
}

.nm-cart-item {
  padding: 1rem .5rem;
  border-bottom: 1px solid rgba(30, 24, 19, .08);
}

.nm-cart-item:last-child {
  border-bottom: 0;
}

.nm-cart-item__product {
  min-width: 0;
  display: grid;
  grid-template-columns: 34px 88px minmax(0, 1fr);
  gap: .8rem;
  align-items: center;
}

.nm-cart-item__remove {
  width: 30px;
  height: 30px;
  display: grid !important;
  place-items: center;
  border-radius: 50%;
  background: #fff2ed;
  color: #b23b20 !important;
  font-size: 1.3rem;
  font-weight: 700;
  text-decoration: none !important;
}

.nm-cart-item__image {
  width: 88px;
  height: 88px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(30, 24, 19, .08);
  border-radius: 14px;
  background: #f7f4f0;
  overflow: hidden;
}

.nm-cart-item__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: .35rem;
}

.nm-cart-item__info strong,
.nm-cart-item__info a {
  color: #201b17;
  font-size: .95rem;
  font-weight: 950;
  line-height: 1.25;
  text-decoration: none !important;
}

.nm-cart-item__info .variation,
.nm-cart-item__info .backorder_notification {
  margin: .35rem 0 0;
  color: #7c726b;
  font-size: .78rem;
  font-weight: 700;
}

.nm-cart-item__price,
.nm-cart-item__subtotal {
  color: #201b17;
  font-weight: 950;
}

.nm-cart-item__quantity .quantity {
  width: 128px;
  margin: 0;
}

.nm-cart-item__quantity input.qty {
  width: 48px !important;
  min-width: 48px !important;
  height: 42px !important;
  min-height: 42px !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: #fff !important;
  color: #201b17 !important;
  box-shadow: none !important;
  text-align: center !important;
  font-size: .98rem !important;
  font-weight: 950 !important;
  line-height: 42px !important;
  opacity: 1 !important;
  -moz-appearance: textfield;
}

.nm-cart-item__quantity input.qty::-webkit-outer-spin-button,
.nm-cart-item__quantity input.qty::-webkit-inner-spin-button {
  margin: 0;
  -webkit-appearance: none;
}

.nm-qty-stepper {
  width: 128px;
  height: 46px;
  display: grid;
  grid-template-columns: 40px 48px 40px;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(30, 24, 19, .1);
  border-radius: 999px;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .65);
}

.nm-qty-stepper__button {
  width: 40px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 0;
  background: #f4f1ee;
  color: #201b17;
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 950;
  line-height: 1;
}

.nm-qty-stepper__button:hover,
.nm-qty-stepper__button:focus-visible {
  background: #fff1e4;
  color: var(--nm-primary-dark);
}

.woocommerce-cart-form.nm-cart-is-updating {
  position: relative;
}

.woocommerce-cart-form.nm-cart-is-updating::after {
  content: "Sepet güncelleniyor...";
  position: absolute;
  right: 1rem;
  bottom: .75rem;
  z-index: 2;
  padding: .48rem .75rem;
  border-radius: 999px;
  background: #231b16;
  color: #fff;
  box-shadow: 0 12px 26px rgba(30, 24, 19, .16);
  font-size: .78rem;
  font-weight: 900;
}

.nm-cart-actions {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(0, 520px);
  gap: 1rem;
  align-items: center;
  padding-top: 1rem;
}

.nm-cart-coupon {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  max-width: 520px;
  overflow: hidden;
  border: 1px solid rgba(30, 24, 19, .08);
  border-radius: 999px;
  background: #f4f1ee;
}

.nm-cart-coupon input {
  min-height: 48px;
  border: 0 !important;
  background: transparent !important;
  padding: 0 1rem !important;
}

.nm-cart-coupon button,
.nm-cart-actions__buttons .button,
.nm-cart-checkout-actions a,
.nm-cart-hero__continue {
  min-height: 46px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  padding: .75rem 1rem !important;
  border: 0 !important;
  border-radius: 999px !important;
  font-size: .86rem !important;
  font-weight: 950 !important;
  line-height: 1 !important;
  text-align: center;
  text-decoration: none !important;
}

.nm-cart-coupon button,
.nm-cart-update {
  background: #2f3f4d !important;
  color: #fff !important;
}

.nm-cart-continue,
.nm-cart-hero__continue {
  background: #fff7ef !important;
  color: var(--nm-primary-dark) !important;
  border: 1px solid rgba(217, 87, 0, .18) !important;
}

.nm-cart-actions__buttons {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .6rem;
  align-items: stretch;
}

.nm-cart-actions__buttons .checkout-button {
  background: var(--nm-primary) !important;
  color: #fff !important;
  box-shadow: 0 12px 26px rgba(217, 87, 0, .22);
}

.nm-cart-actions__buttons .button,
.nm-cart-actions__buttons .checkout-button {
  width: 100%;
  min-width: 0;
  white-space: normal !important;
  line-height: 1.12 !important;
}

.nm-cart-totals__head {
  margin-bottom: 1rem;
}

.nm-cart-totals table {
  width: 100%;
  margin: 0 0 1rem !important;
  border: 0 !important;
  table-layout: auto !important;
}

.nm-cart-totals,
.nm-cart-totals * {
  word-break: normal !important;
  overflow-wrap: normal !important;
}

.nm-cart-totals table,
.nm-cart-totals tbody,
.nm-cart-totals tr {
  display: block;
}

.nm-cart-totals table tr {
  padding: .78rem 0;
  border-bottom: 1px solid rgba(30, 24, 19, .08);
}

.nm-cart-totals table th,
.nm-cart-totals table td {
  display: flex;
  width: 100% !important;
  padding: 0 !important;
  border: 0 !important;
  color: #4f453e;
  font-weight: 850;
}

.nm-cart-totals table th {
  margin-bottom: .3rem;
}

.nm-cart-totals table td {
  justify-content: flex-end;
  text-align: right;
  color: #201b17;
}

.nm-cart-totals .shop_table_responsive tr td::before {
  content: none !important;
  display: none !important;
}

.nm-cart-totals .shipping td {
  justify-content: flex-start;
  text-align: left;
}

.nm-cart-totals .woocommerce-shipping-methods,
.nm-cart-totals #shipping_method {
  width: 100%;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none;
}

.nm-cart-totals .woocommerce-shipping-methods li,
.nm-cart-totals #shipping_method li {
  display: grid;
  grid-template-columns: 18px minmax(220px, 1fr);
  gap: .5rem;
  align-items: start;
  margin: 0 0 .45rem !important;
  color: #4f453e;
  line-height: 1.35;
}

.nm-cart-totals .woocommerce-shipping-methods label,
.nm-cart-totals #shipping_method label {
  min-width: 0;
  white-space: normal !important;
}

.nm-cart-totals .woocommerce-shipping-destination,
.nm-cart-totals .woocommerce-shipping-calculator {
  width: 100%;
  margin: .55rem 0 0 !important;
  color: #6d625a;
  font-size: .84rem;
  line-height: 1.45;
}

.nm-cart-totals .nm-shipping-card {
  width: 100%;
  display: grid;
  gap: .7rem;
  padding: .75rem;
  border: 1px solid rgba(30, 24, 19, .08);
  border-radius: 16px;
  background: #faf8f5;
}

.nm-cart-totals .nm-shipping-methods,
.nm-cart-totals .nm-shipping-methods li {
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.nm-cart-totals .nm-shipping-method {
  display: block !important;
  color: #201b17;
}

.nm-cart-totals .nm-shipping-method input[type="hidden"] {
  display: none !important;
}

.nm-cart-totals .nm-shipping-method label {
  width: 100%;
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: 0 !important;
  color: #4f453e;
  font-size: .9rem;
  font-weight: 850;
  line-height: 1.35;
}

.nm-cart-totals .nm-shipping-method label .woocommerce-Price-amount {
  margin-left: auto;
  color: #201b17;
  font-weight: 950;
  white-space: nowrap;
}

.nm-cart-totals .nm-shipping-destination {
  display: grid;
  gap: .22rem;
  padding-top: .7rem;
  border-top: 1px solid rgba(30, 24, 19, .08);
  color: #6d625a;
  font-size: .84rem;
  line-height: 1.35;
}

.nm-cart-totals .nm-shipping-destination span {
  color: #7b716a;
  font-size: .76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.nm-cart-totals .nm-shipping-destination strong {
  color: #201b17;
  font-size: .9rem;
  font-weight: 950;
}

.nm-cart-totals .nm-shipping-calculator {
  margin-top: 0;
}

.nm-cart-totals .nm-shipping-calculator .shipping-calculator-button {
  width: fit-content;
  min-height: 36px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  padding: .55rem .78rem;
  border: 1px solid rgba(217, 87, 0, .18);
  border-radius: 999px;
  background: #fff7ef;
  color: var(--nm-primary-dark) !important;
  font-size: .78rem;
  font-weight: 900;
  line-height: 1;
  text-decoration: none !important;
}

.nm-cart-totals .nm-shipping-calculator .shipping-calculator-form {
  margin-top: .75rem;
  padding: .75rem;
  border: 1px solid rgba(30, 24, 19, .08);
  border-radius: 14px;
  background: #fff;
}

.nm-cart-totals .nm-shipping-contents,
.nm-cart-totals .nm-shipping-message {
  margin: 0;
  color: #6d625a;
  font-size: .82rem;
  line-height: 1.4;
}

.nm-cart-totals .order-total th,
.nm-cart-totals .order-total td {
  color: var(--nm-primary-dark);
  font-size: 1.08rem;
  font-weight: 950;
}

.nm-cart-checkout-actions {
  display: grid !important;
  gap: .6rem;
  padding: 0 !important;
}

.nm-cart-checkout-actions .checkout-button {
  width: 100%;
  min-height: 54px;
  background: var(--nm-primary) !important;
  color: #fff !important;
  box-shadow: 0 12px 26px rgba(217, 87, 0, .22);
  white-space: normal !important;
  line-height: 1.12 !important;
}

.nm-cart-checkout-actions .nm-cart-continue {
  width: 100%;
  min-height: 50px;
  white-space: normal !important;
  line-height: 1.12 !important;
}

.nm-cart-assurance {
  display: grid;
  gap: .5rem;
  margin-top: .9rem;
}

.nm-cart-assurance span {
  position: relative;
  padding-left: 1.45rem;
  color: #6b6159;
  font-size: .78rem;
  font-weight: 800;
}

.nm-cart-assurance span::before {
  content: "";
  position: absolute;
  left: .18rem;
  top: .22rem;
  width: .7rem;
  height: .7rem;
  border-radius: 50%;
  background: #1f9d55;
  box-shadow: 0 0 0 4px rgba(31, 157, 85, .12);
}

.nm-cart-empty {
  display: grid;
  place-items: center;
  min-height: 420px;
}

.nm-cart-empty__panel {
  width: min(680px, 100%);
  padding: 2rem;
  border: 1px solid rgba(30, 24, 19, .08);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255, 247, 239, .95), rgba(255, 255, 255, .98)),
    #fff;
  box-shadow: 0 20px 52px rgba(30, 24, 19, .08);
  text-align: center;
}

.nm-cart-empty__panel span {
  display: inline-flex;
  margin-bottom: .55rem;
  padding: .26rem .68rem;
  border-radius: 999px;
  background: #231b16;
  color: #fff;
  font-size: .74rem;
  font-weight: 900;
}

.nm-cart-empty__panel h1 {
  margin: 0;
  color: #201b17;
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  font-weight: 950;
  line-height: 1.1;
}

.nm-cart-empty__panel p {
  max-width: 460px;
  margin: .65rem auto 1.2rem;
  color: #6d625a;
  font-weight: 750;
}

.nm-cart-empty__panel .cart-empty,
.nm-cart-empty__panel .wc-empty-cart-message {
  display: none !important;
}

.nm-cart-empty__button {
  min-height: 48px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  padding: .82rem 1.35rem !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: var(--nm-primary) !important;
  color: #fff !important;
  box-shadow: 0 12px 26px rgba(217, 87, 0, .22);
  font-weight: 950 !important;
  text-decoration: none !important;
}

.nm-empty-page,
.nm-search-results {
  padding: 2rem 0;
}

.nm-empty-state,
.nm-empty-page .nm-container {
  background: #fff;
  border-radius: var(--nm-radius-md);
  padding: 2rem;
  box-shadow: var(--nm-shadow-sm);
}

.woocommerce-breadcrumb {
  margin-bottom: 1rem;
  color: var(--nm-muted);
}

.woocommerce-pagination {
  margin-top: 1.5rem;
}

.woocommerce-pagination ul {
  display: flex;
  gap: .4rem;
  justify-content: center;
  list-style: none;
  padding: 0;
}

.woocommerce-pagination a,
.woocommerce-pagination span {
  min-width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: var(--nm-radius-sm);
  background: #fff;
  border: 1px solid var(--nm-border);
}

.woocommerce-pagination .current {
  background: var(--nm-primary);
  color: #fff;
}

/* Compact marketplace product card rebuild. */
body.nm-site .nm-products-grid,
body.nm-site .nm-shop-main ul.products {
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: .6rem;
}

body.nm-site .nm-product-card,
body.nm-site .nm-shop-main ul.products li.product {
  display: flex;
  flex-direction: column;
  min-width: 0;
  border: 1px solid #ead8c8;
  border-radius: 10px;
  background: #fff;
  box-shadow: none;
  overflow: hidden;
  transition: border-color .16s ease, box-shadow .16s ease, transform .16s ease;
}

body.nm-site .nm-product-card:hover {
  transform: translateY(-2px);
  border-color: #ffc38f;
  box-shadow: 0 10px 24px rgba(31,31,31,.1);
}

body.nm-site .nm-product-card__media-wrap {
  position: relative;
  margin: .38rem .38rem 0;
}

body.nm-site .nm-product-card__media {
  aspect-ratio: 1 / .72;
  display: grid;
  place-items: center;
  margin: 0;
  border-radius: 8px;
  background: #f8f6f3;
  overflow: hidden;
}

body.nm-site .nm-product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: .45rem;
  transition: transform .18s ease;
}

body.nm-site .nm-product-card:hover .nm-product-card__media img {
  transform: scale(1.035);
}

body.nm-site .nm-product-card__badges {
  position: absolute;
  top: .32rem;
  left: .32rem;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: .25rem;
  max-width: calc(100% - 2.4rem);
}

body.nm-site .nm-product-badge {
  position: static;
  padding: .16rem .38rem;
  border-radius: 999px;
  color: #fff;
  font-size: .64rem;
  font-weight: 900;
  line-height: 1.2;
}

body.nm-site .nm-product-badge--new {
  background: var(--nm-success);
}

body.nm-site .nm-product-card__media-wrap .nm-wishlist,
body.nm-site .nm-product-card__media-wrap .nm-wishlist-fallback {
  position: absolute;
  top: .3rem;
  right: .3rem;
  z-index: 3;
  width: 30px;
  min-width: 30px;
  height: 30px;
  min-height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(234,216,200,.9);
  border-radius: 999px;
  background: rgba(255,255,255,.96);
  color: var(--nm-primary-dark);
  box-shadow: 0 5px 14px rgba(31,31,31,.12);
  overflow: hidden;
}

body.nm-site .nm-product-card__media-wrap .yith-wcwl-add-to-wishlist {
  margin: 0;
}

body.nm-site .nm-product-card__media-wrap .yith-wcwl-add-button a,
body.nm-site .nm-product-card__media-wrap .yith-wcwl-wishlistaddedbrowse a,
body.nm-site .nm-product-card__media-wrap .yith-wcwl-wishlistexistsbrowse a {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  padding: 0;
  font-size: 0;
}

body.nm-site .nm-product-card__media-wrap .yith-wcwl-add-button a::before,
body.nm-site .nm-product-card__media-wrap .yith-wcwl-wishlistaddedbrowse a::before,
body.nm-site .nm-product-card__media-wrap .yith-wcwl-wishlistexistsbrowse a::before {
  content: "\2661";
  font-family: Arial, sans-serif;
  font-size: 1.15rem;
  line-height: 1;
}

body.nm-site .nm-product-card__body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  min-width: 0;
  padding: .48rem .55rem .55rem;
}

body.nm-site .nm-product-card__cat {
  width: fit-content;
  max-width: 100%;
  margin-bottom: .18rem;
  color: #9b5a26;
  font-size: .62rem;
  font-weight: 900;
  line-height: 1.2;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

body.nm-site .nm-product-card__title {
  min-height: 2.28em;
  margin: 0 0 .24rem;
  color: var(--nm-text);
  font-size: .76rem;
  font-weight: 750;
  line-height: 1.22;
}

body.nm-site .nm-product-card__title a {
  display: -webkit-box;
  color: inherit;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

body.nm-site .nm-product-card__meta {
  min-height: 1rem;
  display: flex;
  align-items: center;
  gap: .25rem;
  color: var(--nm-muted);
  font-size: .62rem;
  font-weight: 750;
}

body.nm-site .nm-product-card__stars {
  color: #f6a400;
  font-weight: 900;
}

body.nm-site .nm-product-card__price {
  margin-top: .26rem;
  color: var(--nm-primary-dark);
  font-size: .94rem;
  font-weight: 950;
  line-height: 1.16;
}

body.nm-site .nm-product-card__price del {
  display: block;
  margin: 0 0 .08rem;
  color: #9a928c;
  font-size: .68rem;
  font-weight: 700;
}

body.nm-site .nm-product-card__price ins {
  text-decoration: none;
}

body.nm-site .nm-product-card__actions {
  display: block;
  margin-top: auto;
  padding: .42rem 0 0;
}

body.nm-site .nm-product-card__actions .button,
body.nm-site .nm-product-card__actions a.button,
body.nm-site .nm-product-card__actions .added_to_cart {
  width: 100%;
  min-height: 32px;
  padding: .38rem .45rem;
  border-radius: 8px;
  font-size: .7rem;
  font-weight: 900;
  line-height: 1.1;
}

/* Final product-card direction: 5-column, compact, marketplace style. */
body.nm-site .nm-products-grid,
body.nm-site .nm-shop-main ul.products {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: .9rem;
}

body.nm-site .nm-product-card,
body.nm-site .nm-shop-main ul.products li.product {
  border: 1px solid #e8d8c9;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 6px 18px rgba(31, 31, 31, .055);
}

body.nm-site .nm-product-card:hover {
  transform: translateY(-3px);
  border-color: #ffbf84;
  box-shadow: 0 16px 34px rgba(31, 31, 31, .12);
}

body.nm-site .nm-product-card__media-wrap {
  position: relative;
  margin: .6rem .6rem 0;
}

body.nm-site .nm-product-card__media {
  width: 100%;
  aspect-ratio: 1 / 1;
  display: block;
  border-radius: 12px;
  background:
    radial-gradient(circle at 50% 18%, rgba(255,255,255,.95), transparent 28%),
    linear-gradient(145deg, #faf7f3, #f1e8df);
  overflow: hidden;
}

body.nm-site .nm-product-card__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  padding: .7rem;
}

body.nm-site .nm-product-card__badges {
  top: .45rem;
  left: .45rem;
}

body.nm-site .nm-product-badge {
  padding: .2rem .48rem;
  border-radius: 999px;
  font-size: .7rem;
  box-shadow: 0 6px 14px rgba(31,31,31,.12);
}

body.nm-site .nm-product-card__media-wrap .nm-wishlist,
body.nm-site .nm-product-card__media-wrap .nm-wishlist-fallback {
  top: .45rem;
  right: .45rem;
  left: auto;
  bottom: auto;
  width: 36px;
  min-width: 36px;
  height: 36px;
  min-height: 36px;
  padding: 0;
  border: 1px solid rgba(255,255,255,.92);
  border-radius: 999px;
  background: rgba(255,255,255,.96);
  color: var(--nm-primary-dark);
  font-size: 1.25rem;
  line-height: 1;
  box-shadow: 0 8px 20px rgba(31,31,31,.14);
}

body.nm-site .nm-product-card__media-wrap .nm-wishlist *,
body.nm-site .nm-product-card__media-wrap .nm-wishlist-fallback * {
  line-height: 1;
}

body.nm-site .nm-product-card__body {
  padding: .72rem .78rem .82rem;
}

body.nm-site .nm-product-card__cat {
  max-width: 100%;
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  margin-bottom: .42rem;
  padding: .25rem .55rem;
  border: 1px solid #ffd2ad;
  border-radius: 999px;
  background: #fff3e8;
  color: var(--nm-primary-dark);
  font-size: .68rem;
  font-weight: 900;
}

body.nm-site .nm-product-card__title {
  min-height: 2.7em;
  margin-bottom: .42rem;
  color: #211915;
  font-size: .92rem;
  font-weight: 850;
  line-height: 1.35;
}

body.nm-site .nm-product-card__title a:hover {
  color: var(--nm-primary-dark);
}

body.nm-site .nm-product-card__meta {
  min-height: 1.1rem;
  margin-bottom: .45rem;
  color: #857b73;
  font-size: .7rem;
}

body.nm-site .nm-product-card__price {
  min-height: 2.2rem;
  margin-top: .1rem;
  color: var(--nm-primary-dark);
  font-size: 1.24rem;
  font-weight: 950;
  letter-spacing: 0;
}

body.nm-site .nm-product-card__price del {
  display: inline-block;
  margin-right: .35rem;
  color: #9b918a;
  font-size: .78rem;
  font-weight: 750;
  vertical-align: middle;
}

body.nm-site .nm-product-card__price ins {
  color: var(--nm-primary-dark);
  text-decoration: none;
}

body.nm-site .nm-product-card__actions {
  padding-top: .7rem;
}

body.nm-site .nm-product-card__actions .nm-product-card__button,
body.nm-site .nm-product-card__actions .button,
body.nm-site .nm-product-card__actions a.button,
body.nm-site .nm-product-card__actions .added_to_cart {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  border-radius: 12px;
  background: var(--nm-primary);
  color: #fff;
  font-size: .86rem;
  font-weight: 950;
  box-shadow: 0 8px 18px rgba(255, 107, 0, .2);
}

body.nm-site .nm-product-card__actions .nm-product-card__button:hover,
body.nm-site .nm-product-card__actions .button:hover,
body.nm-site .nm-product-card__actions a.button:hover,
body.nm-site .nm-product-card__actions .added_to_cart:hover {
  background: var(--nm-primary-dark);
  color: #fff;
}

/* Product card reset: clean, borderless, fixed visual rhythm. */
body.nm-site .nm-products-grid,
body.nm-site .nm-shop-main ul.products,
body.nm-site.woocommerce ul.products {
  display: grid !important;
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  gap: 1rem !important;
}

body.nm-site .nm-product-card,
body.nm-site .nm-shop-main ul.products li.product,
body.nm-site.woocommerce ul.products li.product {
  width: auto !important;
  float: none !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 16px !important;
  background: #fff !important;
  box-shadow: 0 8px 24px rgba(28, 22, 18, .08) !important;
  overflow: hidden !important;
}

body.nm-site .nm-product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(28, 22, 18, .14) !important;
}

body.nm-site .nm-product-card__media-wrap {
  position: relative;
  margin: 0;
  padding: .75rem .75rem 0;
}

body.nm-site .nm-product-card__media {
  height: 178px;
  aspect-ratio: auto;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: #f5f2ee;
  overflow: hidden;
}

body.nm-site .nm-product-card__media img {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: contain;
  padding: .7rem;
}

body.nm-site .nm-product-card__media-wrap .nm-wishlist,
body.nm-site .nm-product-card__media-wrap .nm-wishlist-fallback {
  top: 1rem;
  right: 1rem;
  width: 34px;
  min-width: 34px;
  height: 34px;
  min-height: 34px;
  border: 0 !important;
  background: rgba(255,255,255,.96) !important;
  box-shadow: 0 8px 20px rgba(28,22,18,.16);
}

body.nm-site .nm-product-card__body {
  padding: .72rem .82rem .9rem;
}

body.nm-site .nm-product-card__cat {
  min-height: 22px;
  margin-bottom: .45rem;
  padding: .22rem .58rem;
  border: 0;
  border-radius: 999px;
  background: #fff2e7;
  color: #b64a00;
  font-size: .68rem;
  font-weight: 900;
}

body.nm-site .nm-product-card__title {
  min-height: 2.6em;
  margin: 0 0 .5rem;
  color: #1f1f1f;
  font-size: .92rem;
  font-weight: 850;
  line-height: 1.3;
}

body.nm-site .nm-product-card__meta {
  display: none;
}

body.nm-site .nm-product-card__price {
  min-height: 2.3rem;
  margin: .1rem 0 .72rem;
  color: #e25b00;
  font-size: 1.22rem;
  font-weight: 950;
}

body.nm-site .nm-product-card__price del {
  display: block;
  margin: 0 0 .1rem;
  color: #9b928b;
  font-size: .76rem;
  font-weight: 750;
}

body.nm-site .nm-product-card__actions {
  padding: 0;
}

body.nm-site .nm-product-card__button {
  width: 100%;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: #1f1f1f;
  color: #fff !important;
  font-size: .86rem;
  font-weight: 950;
  line-height: 1;
  text-align: center;
}

body.nm-site .nm-product-card__button:hover,
body.nm-site .nm-product-card__button:focus-visible {
  background: var(--nm-primary);
  color: #fff !important;
}

/* Final clean card override: no dark outline, bare wishlist icon. */
body.nm-site .nm-product-card,
body.nm-site .nm-product-card:hover,
body.nm-site .nm-shop-main ul.products li.product,
body.nm-site.woocommerce ul.products li.product {
  border: 0 !important;
  box-shadow: none !important;
}

body.nm-site .nm-product-card__media-wrap .nm-wishlist,
body.nm-site .nm-product-card__media-wrap .nm-wishlist:hover,
body.nm-site .nm-product-card__media-wrap .nm-wishlist-fallback,
body.nm-site .nm-product-card__media-wrap .nm-wishlist-fallback:hover {
  width: auto !important;
  min-width: 0 !important;
  height: auto !important;
  min-height: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: var(--nm-primary-dark) !important;
}

body.nm-site .nm-product-card__media-wrap .yith-wcwl-add-to-wishlist,
body.nm-site .nm-product-card__media-wrap .yith-wcwl-add-button,
body.nm-site .nm-product-card__media-wrap .yith-wcwl-wishlistaddedbrowse,
body.nm-site .nm-product-card__media-wrap .yith-wcwl-wishlistexistsbrowse {
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

body.nm-site .nm-product-card__media-wrap .yith-wcwl-add-button a,
body.nm-site .nm-product-card__media-wrap .yith-wcwl-wishlistaddedbrowse a,
body.nm-site .nm-product-card__media-wrap .yith-wcwl-wishlistexistsbrowse a {
  width: auto !important;
  height: auto !important;
  min-width: 0 !important;
  min-height: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

/* Modern product card polish. */
body.nm-site .nm-product-card::before,
body.nm-site .nm-product-card::after,
body.nm-site .nm-shop-main ul.products li.product::before,
body.nm-site .nm-shop-main ul.products li.product::after,
body.nm-site.woocommerce ul.products li.product::before,
body.nm-site.woocommerce ul.products li.product::after {
  content: none !important;
  display: none !important;
}

body.nm-site .nm-product-card,
body.nm-site .nm-shop-main ul.products li.product,
body.nm-site.woocommerce ul.products li.product {
  border: 1px solid rgba(30, 24, 19, .08) !important;
  background: #fff !important;
  box-shadow: 0 14px 34px rgba(30, 24, 19, .08) !important;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

body.nm-site .nm-product-card:hover,
body.nm-site .nm-shop-main ul.products li.product:hover,
body.nm-site.woocommerce ul.products li.product:hover {
  border-color: rgba(217, 87, 0, .16) !important;
  box-shadow: 0 20px 46px rgba(30, 24, 19, .13) !important;
}

body.nm-site .nm-product-card__media-wrap .nm-wishlist,
body.nm-site .nm-product-card__media-wrap .nm-wishlist:hover,
body.nm-site .nm-product-card__media-wrap .nm-wishlist-fallback,
body.nm-site .nm-product-card__media-wrap .nm-wishlist-fallback:hover {
  position: absolute !important;
  top: 1rem !important;
  right: 1rem !important;
  left: auto !important;
  z-index: 5;
  width: 38px !important;
  min-width: 38px !important;
  height: 38px !important;
  min-height: 38px !important;
  display: grid !important;
  place-items: center !important;
  border: 1px solid rgba(30, 24, 19, .08) !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, .94) !important;
  color: #2a211c !important;
  box-shadow: 0 10px 26px rgba(30, 24, 19, .16) !important;
  backdrop-filter: blur(10px);
}

body.nm-site .nm-product-card__media-wrap .nm-wishlist:hover,
body.nm-site .nm-product-card__media-wrap .nm-wishlist-fallback:hover {
  color: var(--nm-primary) !important;
  transform: translateY(-1px);
}

body.nm-site .nm-product-card__media-wrap .yith-add-to-wishlist-button-block,
body.nm-site .nm-product-card__media-wrap .yith-wcwl-add-to-wishlist,
body.nm-site .nm-product-card__media-wrap .yith-wcwl-add-button,
body.nm-site .nm-product-card__media-wrap .yith-wcwl-wishlistaddedbrowse,
body.nm-site .nm-product-card__media-wrap .yith-wcwl-wishlistexistsbrowse {
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  display: grid !important;
  place-items: center !important;
  background: transparent !important;
  box-shadow: none !important;
}

body.nm-site .nm-product-card__media-wrap .yith-wcwl-add-to-wishlist-button,
body.nm-site .nm-product-card__media-wrap .yith-wcwl-add-button a,
body.nm-site .nm-product-card__media-wrap .yith-wcwl-wishlistaddedbrowse a,
body.nm-site .nm-product-card__media-wrap .yith-wcwl-wishlistexistsbrowse a {
  width: 100% !important;
  min-width: 100% !important;
  height: 100% !important;
  min-height: 100% !important;
  padding: 0 !important;
  display: grid !important;
  place-items: center !important;
  border: 0 !important;
  border-radius: 50% !important;
  background: transparent !important;
  color: inherit !important;
  box-shadow: none !important;
  font-size: 0 !important;
  line-height: 1 !important;
}

body.nm-site .nm-product-card__media-wrap .yith-wcwl-icon,
body.nm-site .nm-product-card__media-wrap .yith-wcwl-add-to-wishlist-button-icon {
  width: 20px !important;
  height: 20px !important;
  margin: 0 !important;
  color: currentColor !important;
  stroke-width: 1.8 !important;
}

body.nm-site .nm-product-card__media-wrap .yith-wcwl-add-to-wishlist-button__label,
body.nm-site .nm-product-card__media-wrap .yith-wcwl-add-button .separator,
body.nm-site .nm-product-card__media-wrap .yith-wcwl-add-button .view-wishlist {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

body.nm-site .nm-product-card__actions {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: .55rem;
  padding: 0 !important;
}

body.nm-site .nm-product-card__button,
body.nm-site .nm-product-card__actions .button,
body.nm-site .nm-product-card__actions a.button {
  width: 100% !important;
  min-height: 42px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: .35rem;
  padding: .72rem .9rem !important;
  border: 0 !important;
  border-radius: 12px !important;
  background: var(--nm-primary) !important;
  color: #fff !important;
  box-shadow: 0 10px 22px rgba(217, 87, 0, .22) !important;
  font-size: .84rem !important;
  font-weight: 900 !important;
  line-height: 1.05 !important;
  text-align: center !important;
  white-space: nowrap;
}

body.nm-site .nm-product-card__button:hover,
body.nm-site .nm-product-card__button:focus-visible,
body.nm-site .nm-product-card__actions .button:hover,
body.nm-site .nm-product-card__actions a.button:hover {
  background: var(--nm-primary-dark) !important;
  color: #fff !important;
  transform: translateY(-1px);
}

body.nm-site .nm-product-card__button--options {
  background: #1f1f1f !important;
  box-shadow: 0 10px 22px rgba(31, 31, 31, .14) !important;
}

body.nm-site .nm-product-card__button--disabled {
  background: #b8b0aa !important;
  box-shadow: none !important;
  cursor: not-allowed;
}

body.nm-site .nm-product-card__details {
  min-width: 50px;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .65rem .75rem;
  border: 1px solid rgba(30, 24, 19, .1);
  border-radius: 12px;
  background: #fff;
  color: #4b403a;
  font-size: .78rem;
  font-weight: 850;
  line-height: 1;
  text-decoration: none !important;
}

body.nm-site .nm-product-card__details:hover,
body.nm-site .nm-product-card__details:focus-visible {
  border-color: rgba(217, 87, 0, .25);
  color: var(--nm-primary-dark);
  background: #fff7ef;
}

body.nm-site .nm-product-card__actions .added_to_cart {
  grid-column: 1 / -1;
  min-height: auto !important;
  padding: .35rem 0 0 !important;
  background: transparent !important;
  color: var(--nm-primary-dark) !important;
  box-shadow: none !important;
  font-size: .78rem !important;
  font-weight: 850 !important;
  text-align: center;
}

/* Shop archive cards: keep action labels readable in narrow product grids. */
body.nm-site .nm-shop-main ul.products,
body.nm-site.woocommerce ul.products {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 1rem !important;
}

body.nm-site .nm-shop-main .nm-product-card__actions,
body.nm-site.woocommerce ul.products .nm-product-card__actions {
  grid-template-columns: 1fr !important;
  gap: .45rem !important;
  align-items: stretch;
}

body.nm-site .nm-shop-main .nm-product-card__button,
body.nm-site .nm-shop-main .nm-product-card__actions .button,
body.nm-site .nm-shop-main .nm-product-card__actions a.button,
body.nm-site .nm-shop-main .nm-product-card__details,
body.nm-site.woocommerce ul.products .nm-product-card__button,
body.nm-site.woocommerce ul.products .nm-product-card__actions .button,
body.nm-site.woocommerce ul.products .nm-product-card__actions a.button,
body.nm-site.woocommerce ul.products .nm-product-card__details {
  width: 100% !important;
  min-width: 0 !important;
  min-height: 40px !important;
  padding: .68rem .78rem !important;
  white-space: normal !important;
  overflow: visible !important;
  text-overflow: clip !important;
  line-height: 1.12 !important;
}

body.nm-site .nm-shop-main .nm-product-card__details,
body.nm-site.woocommerce ul.products .nm-product-card__details {
  background: #fff7ef;
  color: var(--nm-primary-dark);
  border-color: rgba(217, 87, 0, .16);
  font-weight: 900;
}

body.nm-site .nm-shop-main .nm-product-card__actions .added_to_cart,
body.nm-site.woocommerce ul.products .nm-product-card__actions .added_to_cart {
  min-height: 38px !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  padding: .6rem .72rem !important;
  border-radius: 11px;
  background: #fff7ef !important;
}

/* Home page product showcases: fixed editorial row counts. */
body.nm-site .nm-home .nm-product-section--seven .nm-products-grid {
  grid-template-columns: repeat(7, minmax(0, 1fr)) !important;
  gap: .58rem !important;
}

body.nm-site .nm-home .nm-product-section--six .nm-products-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
}

body.nm-site .nm-home .nm-product-section--five .nm-products-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
}

body.nm-site .nm-home .nm-product-section--seven .nm-product-card__media {
  aspect-ratio: 1 / .82;
}

body.nm-site .nm-home .nm-product-section--seven .nm-product-card__title {
  font-size: .95rem;
  min-height: 2.35em;
}

body.nm-site .nm-home .nm-product-section--seven .nm-product-card__price {
  font-size: .98rem;
}

body.nm-site .nm-home .nm-product-section--seven .nm-product-card__actions {
  grid-template-columns: 1fr !important;
  gap: .42rem !important;
}

body.nm-site .nm-home .nm-product-section--seven .nm-product-card__button,
body.nm-site .nm-home .nm-product-section--seven .nm-product-card__details {
  width: 100% !important;
  min-height: 36px !important;
  padding: .58rem .5rem !important;
  font-size: .72rem !important;
}

body.nm-site .compare,
body.nm-site .add-to-compare-link,
body.nm-site .nm-add-to-compare-link,
body.nm-site .yith-woocompare-widget,
body.nm-site.single-product div.product .action-buttons .compare,
body.nm-site.single-product div.product .action-buttons .add-to-compare-link,
body.nm-site.single-product div.product .action-buttons .nm-add-to-compare-link,
body.nm-site.single-product div.product .action-buttons .nm-compare-hint {
  display: none !important;
}

body.nm-site .nm-product-card,
body.nm-site.woocommerce ul.products li.product {
  cursor: pointer;
  touch-action: manipulation;
}

body.nm-site .nm-product-card a,
body.nm-site.woocommerce ul.products li.product a,
body.nm-site button,
body.nm-site .button {
  touch-action: manipulation;
}

body.nm-site .nm-product-card:focus-within,
body.nm-site.woocommerce ul.products li.product:focus-within {
  outline: 2px solid rgba(255, 107, 0, .36);
  outline-offset: 3px;
}

body.nm-site.single-product div.product .woocommerce-product-gallery__wrapper {
  display: grid !important;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: .58rem;
}

body.nm-site.single-product div.product .woocommerce-product-gallery__wrapper > .woocommerce-product-gallery__image,
body.nm-site.single-product div.product .woocommerce-product-gallery__wrapper > .woocommerce-product-gallery__image:first-child {
  display: block !important;
}

body.nm-site.single-product div.product .woocommerce-product-gallery__wrapper > .woocommerce-product-gallery__image:first-child {
  grid-column: 1 / -1;
}

body.nm-site.single-product div.product .woocommerce-product-gallery__wrapper > .woocommerce-product-gallery__image:not(:first-child) a {
  min-height: 72px;
  border: 1px solid rgba(30, 24, 19, .08);
  border-radius: 10px;
  background: #fffaf6;
}

body.nm-site.single-product div.product .woocommerce-product-gallery__wrapper > .woocommerce-product-gallery__image:not(:first-child) img {
  max-height: 72px;
  padding: .25rem;
}

/* Product card favorite action: keep the heart out of the product photo. */
body.nm-site .nm-product-card__media-wrap,
body.nm-site .nm-shop-main ul.products li.product .nm-product-card__media-wrap,
body.nm-site.woocommerce ul.products li.product .nm-product-card__media-wrap {
  position: relative !important;
  padding-top: 42px !important;
}

body.nm-site .nm-product-card__media,
body.nm-site .nm-shop-main ul.products li.product .nm-product-card__media,
body.nm-site.woocommerce ul.products li.product .nm-product-card__media {
  background: linear-gradient(180deg, #fffdfb 0%, #f7f3ef 100%) !important;
}

body.nm-site .nm-product-card__badges,
body.nm-site .nm-shop-main ul.products li.product .nm-product-card__badges,
body.nm-site.woocommerce ul.products li.product .nm-product-card__badges {
  top: 8px !important;
  left: 10px !important;
  max-width: calc(100% - 62px) !important;
}

body.nm-site .nm-product-card__media-wrap .nm-wishlist,
body.nm-site .nm-product-card__media-wrap .nm-wishlist:hover,
body.nm-site .nm-product-card__media-wrap .nm-wishlist-fallback,
body.nm-site .nm-product-card__media-wrap .nm-wishlist-fallback:hover,
body.nm-site .nm-shop-main ul.products li.product .nm-product-card__media-wrap .nm-wishlist,
body.nm-site.woocommerce ul.products li.product .nm-product-card__media-wrap .nm-wishlist {
  top: 5px !important;
  right: 8px !important;
  width: 34px !important;
  min-width: 34px !important;
  height: 34px !important;
  min-height: 34px !important;
  background: linear-gradient(180deg, #fff8f1 0%, #fff 100%) !important;
  border: 1px solid rgba(217, 87, 0, .32) !important;
  color: #d95700 !important;
  box-shadow: 0 8px 18px rgba(217, 87, 0, .16) !important;
}

body.nm-site .nm-product-card__media-wrap .nm-wishlist:hover,
body.nm-site .nm-product-card__media-wrap .nm-wishlist:focus-within,
body.nm-site .nm-product-card__media-wrap .nm-wishlist-fallback:hover,
body.nm-site .nm-product-card__media-wrap .nm-wishlist-fallback:focus-visible {
  background: var(--nm-primary) !important;
  border-color: var(--nm-primary) !important;
  color: #fff !important;
  box-shadow: 0 12px 24px rgba(217, 87, 0, .26) !important;
}

body.nm-site .nm-product-card__media-wrap .yith-wcwl-add-button a::before,
body.nm-site .nm-product-card__media-wrap .yith-wcwl-wishlistaddedbrowse a::before,
body.nm-site .nm-product-card__media-wrap .yith-wcwl-wishlistexistsbrowse a::before {
  color: currentColor !important;
}

body.nm-site .nm-product-card__media-wrap .nm-wishlist-button {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  border-radius: inherit;
  color: inherit !important;
  text-decoration: none !important;
}

body.nm-site .nm-product-card__media-wrap .nm-wishlist-button .nm-icon-heart {
  width: 20px;
  height: 20px;
  color: inherit;
}

body.nm-site .nm-product-card__media-wrap .nm-wishlist-button .nm-icon-heart::before {
  inset: -4px 0 0;
  color: inherit;
  font-family: Arial, sans-serif;
  font-size: 1.5rem;
}

body.nm-site .nm-product-card__media-wrap .nm-wishlist-button.is-active .nm-icon-heart::before {
  content: "\2665";
}

body.nm-site .nm-product-card__media-wrap .yith-wcwl-icon,
body.nm-site .nm-product-card__media-wrap .yith-wcwl-add-to-wishlist-button-icon {
  width: 18px !important;
  height: 18px !important;
}

@media (max-width: 767px) {
  body.nm-site .nm-product-card__media-wrap,
  body.nm-site .nm-shop-main ul.products li.product .nm-product-card__media-wrap,
  body.nm-site.woocommerce ul.products li.product .nm-product-card__media-wrap {
    padding-top: 38px !important;
  }

  body.nm-site .nm-product-card__media-wrap .nm-wishlist,
  body.nm-site .nm-product-card__media-wrap .nm-wishlist-fallback {
    width: 32px !important;
    min-width: 32px !important;
    height: 32px !important;
    min-height: 32px !important;
  }
}

/* Variable products: clear, touch-friendly option selection. */
body.nm-site.single-product form.cart.nm-variant-form table.variations {
  display: block;
  margin: 1.1rem 0 .85rem;
  padding: 0;
  overflow: visible;
  border: 0;
  background: transparent;
}

body.nm-site.single-product form.cart.nm-variant-form table.variations tbody,
body.nm-site.single-product form.cart.nm-variant-form table.variations tr,
body.nm-site.single-product form.cart.nm-variant-form table.variations td.value {
  display: block;
  width: 100%;
}

body.nm-site.single-product form.cart.nm-variant-form table.variations th.label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

body.nm-site.single-product form.cart.nm-variant-form .nm-variation-native {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip-path: inset(50%) !important;
  border: 0 !important;
  white-space: nowrap !important;
}

body.nm-site.single-product .nm-variation-picker {
  padding: 1rem;
  border: 1px solid #edddd1;
  border-radius: 8px;
  background: #fff;
}

body.nm-site.single-product .nm-selected-price-card {
  display: flex;
  align-items: center;
  min-height: 92px;
  margin: 0 0 .7rem;
  padding: 1rem 1.05rem;
  border: 1px solid #edddd1;
  border-radius: 8px;
  background: linear-gradient(135deg, #fff 0%, #fff7ef 100%);
  box-shadow: 0 8px 22px rgba(53, 36, 26, .04);
}

body.nm-site.single-product .nm-selected-price-card__label {
  display: block;
  margin-bottom: .32rem;
  color: #18814c;
  font-size: .76rem;
  font-weight: 850;
  line-height: 1;
  text-transform: uppercase;
}

body.nm-site.single-product .nm-selected-price-card__amount {
  min-height: 2.18rem;
  color: #c84f00;
  font-size: clamp(1.7rem, 2.8vw, 2.15rem);
  font-weight: 900;
  line-height: 1.08;
}

body.nm-site.single-product .nm-selected-price-card:not(.has-price) .nm-selected-price-card__amount {
  color: #3c332e;
  font-size: 1.15rem;
}

body.nm-site.single-product .nm-selected-price-card__amount .price,
body.nm-site.single-product .nm-selected-price-card__amount .amount {
  color: inherit !important;
  font-size: inherit !important;
  font-weight: inherit !important;
  line-height: inherit !important;
}

body.nm-site.single-product .nm-selected-price-card__amount del {
  margin-right: .45rem;
  color: #8b817a;
  font-size: .65em;
  font-weight: 700;
}

body.nm-site.single-product .nm-selected-price-card__amount ins {
  color: #c84f00;
  text-decoration: none;
}

body.nm-site.single-product .nm-selected-price-card__note {
  display: block;
  margin-top: .28rem;
  color: #70655e;
  font-size: .76rem;
  font-weight: 650;
}

body.nm-site.single-product .nm-variation-picker__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  margin-bottom: .78rem;
}

body.nm-site.single-product .nm-variation-picker__head strong {
  color: #251c17;
  font-size: .92rem;
  font-weight: 850;
}

body.nm-site.single-product .nm-variation-picker__current {
  padding: .25rem .55rem;
  border-radius: 999px;
  color: #76685f;
  background: #f6f2ee;
  font-size: .76rem;
  font-weight: 750;
}

body.nm-site.single-product .nm-variation-picker__current.has-selection {
  color: #c44e00;
  background: #fff1e6;
}

body.nm-site.single-product .nm-variation-picker__choices {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(92px, 1fr));
  gap: .55rem;
}

body.nm-site.single-product .nm-variation-picker__option {
  min-width: 0;
  min-height: 50px;
  padding: .72rem .6rem;
  border: 1px solid #ddd5cf;
  border-radius: 8px;
  color: #30251f !important;
  background: #fff !important;
  font-size: .88rem;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  transition: border-color .16s ease, background .16s ease, box-shadow .16s ease, color .16s ease;
}

body.nm-site.single-product .nm-variation-picker__option:hover:not(:disabled),
body.nm-site.single-product .nm-variation-picker__option:focus-visible:not(:disabled) {
  border-color: #e46512 !important;
  background: #fff7f0 !important;
  box-shadow: 0 0 0 3px rgba(228, 101, 18, .12);
}

body.nm-site.single-product .nm-variation-picker__option.is-selected {
  border-color: #e25b00 !important;
  color: #fff !important;
  background: #e25b00 !important;
  box-shadow: 0 10px 20px rgba(217, 87, 0, .2);
}

body.nm-site.single-product .nm-variation-picker__option.is-unavailable,
body.nm-site.single-product .nm-variation-picker__option:disabled {
  color: #bbb2ac !important;
  border-color: #ede8e4 !important;
  background: #f8f6f4 !important;
  cursor: not-allowed;
  box-shadow: none;
}

body.nm-site.single-product form.cart.nm-variant-form .reset_variations {
  display: inline-flex !important;
  margin-top: .65rem;
  color: #776b64;
  font-size: .78rem;
  font-weight: 750;
  text-decoration: none;
}

body.nm-site.single-product form.cart.nm-variant-form .reset_variations:hover {
  color: #c44e00;
}

body.nm-site.single-product form.cart.nm-variant-form .single_variation_wrap {
  padding-top: .2rem;
}

body.nm-site.single-product form.cart.nm-variant-form .woocommerce-variation-price {
  margin: .55rem 0 .8rem;
}

body.nm-site.single-product form.cart.nm-variant-form .woocommerce-variation-add-to-cart {
  display: grid;
  grid-template-columns: minmax(80px, 105px) minmax(170px, 1fr);
  gap: .65rem;
  align-items: stretch;
}

body.nm-site.single-product form.cart.nm-variant-form .quantity,
body.nm-site.single-product form.cart.nm-variant-form .quantity .qty {
  width: 100%;
  min-height: 52px;
}

body.nm-site.single-product form.cart.nm-variant-form .quantity .qty {
  border: 1px solid #e7d9cf;
  border-radius: 8px;
  background: #fff;
  color: #261d18;
  font-weight: 800;
}

body.nm-site.single-product form.cart.nm-variant-form .single_add_to_cart_button {
  width: 100%;
  min-height: 52px;
  border-radius: 8px;
}

/* Product detail heading and pricing: quiet premium hierarchy. */
body.nm-site.single-product div.product .summary > .loop-product-categories,
body.nm-site.single-product div.product .summary > .availability,
body.nm-site.single-product div.product .summary > .single-product-title-divider {
  display: none !important;
}

body.nm-site.single-product div.product .product_title {
  margin: 0 0 1rem !important;
}

body.nm-site.single-product div.product.product-type-variable .summary > p.price {
  display: none !important;
}

body.nm-site.single-product div.product.product-type-simple .summary > p.price,
body.nm-site.single-product div.product.product-type-external .summary > p.price {
  width: 100%;
  display: flex !important;
  flex-direction: column;
  align-items: flex-start;
  gap: .35rem;
  margin: 1rem 0 1.05rem;
  padding: .95rem 1rem;
  border: 1px solid #edddd1;
  border-radius: 8px;
  background: linear-gradient(135deg, #fff 0%, #fff8f1 100%);
}

body.nm-site.single-product div.product.product-type-simple .summary > p.price::before,
body.nm-site.single-product div.product.product-type-external .summary > p.price::before {
  content: "Fiyat";
  color: #72665f;
  font-size: .76rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

body.nm-site.single-product div.product.product-type-simple .summary > p.price,
body.nm-site.single-product div.product.product-type-external .summary > p.price,
body.nm-site.single-product div.product .single_variation .price {
  color: #c84f00 !important;
  font-size: clamp(1.65rem, 2.6vw, 2.05rem) !important;
  font-weight: 900 !important;
  line-height: 1.15 !important;
}

body.nm-site.single-product form.cart.nm-variant-form .single_variation {
  margin: 0 !important;
}

body.nm-site.single-product form.cart.nm-variant-form .woocommerce-variation-price {
  display: none !important;
}

body.nm-site.single-product div.product .single_variation .price {
  display: block;
  margin: 0 !important;
}

body.nm-site.single-product div.product .single_variation .woocommerce-variation-availability .in-stock {
  display: none !important;
}

/* Shop refinements: restrained filtering panel and consistent cart icon treatment. */
body.nm-site .nm-shop-main .nm-product-card__button--cart::before,
body.nm-site.woocommerce ul.products .nm-product-card__button--cart::before,
body.nm-site .nm-shop-main .nm-product-card__button--cart:hover::before,
body.nm-site.woocommerce ul.products .nm-product-card__button--cart:hover::before {
  position: static !important;
  width: auto !important;
  height: auto !important;
  display: inline-flex !important;
  align-items: center;
  margin: 0 .1rem 0 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: #fff !important;
  box-shadow: none !important;
  transform: none !important;
}

body.nm-site .nm-shop-sidebar {
  padding: 1.15rem;
  border: 1px solid #eaded5;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(32, 25, 20, .06);
}

body.nm-site .nm-shop-sidebar::before {
  content: "Filtreler";
  display: block;
  margin: 0 0 1rem;
  padding-bottom: .8rem;
  border-bottom: 1px solid #ede4dc;
  color: #211914;
  font-size: 1.05rem;
  font-weight: 900;
  line-height: 1;
}

body.nm-site .nm-shop-sidebar .widget {
  margin: 0 0 1.15rem;
  padding: 0 0 1.15rem;
  border-bottom: 1px solid #ede4dc;
}

body.nm-site .nm-shop-sidebar .widget:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

body.nm-site .nm-shop-sidebar .widget-title {
  margin: 0 0 .75rem;
  color: #2a211c;
  font-size: .92rem;
  font-weight: 850;
  line-height: 1.2;
}

body.nm-site .nm-shop-sidebar .woocommerce-widget-layered-nav-list {
  display: grid;
  gap: .4rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

body.nm-site .nm-shop-sidebar .woocommerce-widget-layered-nav-list__item {
  margin: 0;
  padding: 0;
}

body.nm-site .nm-shop-sidebar .woocommerce-widget-layered-nav-list__item a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  color: #4d433d;
  font-size: .83rem;
  font-weight: 750;
  text-decoration: none;
}

body.nm-site .nm-shop-sidebar .woocommerce-widget-layered-nav-list__item a::before {
  content: "";
  width: 17px;
  height: 17px;
  margin-right: .55rem;
  border: 1px solid #d9cec5;
  border-radius: 5px;
  background: #fff;
  transition: border-color .15s ease, background .15s ease;
}

body.nm-site .nm-shop-sidebar .woocommerce-widget-layered-nav-list__item a:hover,
body.nm-site .nm-shop-sidebar .woocommerce-widget-layered-nav-list__item.chosen a {
  color: #c84f00;
}

body.nm-site .nm-shop-sidebar .woocommerce-widget-layered-nav-list__item a:hover::before,
body.nm-site .nm-shop-sidebar .woocommerce-widget-layered-nav-list__item.chosen a::before {
  border-color: #e25b00;
  background: #e25b00;
  box-shadow: inset 0 0 0 4px #fff;
}

body.nm-site .nm-shop-sidebar .woocommerce-widget-layered-nav-list__item .count {
  color: #8c837d;
  font-size: .78rem;
  font-weight: 650;
}

body.nm-site .nm-shop-sidebar .nm-filter-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .65rem;
  margin-bottom: .65rem;
}

body.nm-site .nm-shop-sidebar .nm-filter-title-row .nm-filter-title {
  margin: 0;
  color: #2a211c;
  font-size: .92rem;
  font-weight: 850;
}

body.nm-site .nm-shop-sidebar .nm-filter-reset {
  border-radius: 999px;
  padding: .3rem .58rem;
  background: #fff3e9;
  color: #d45600;
  font-size: .72rem;
  font-weight: 800;
  text-decoration: none;
}

body.nm-site .nm-shop-sidebar .nm-filter-reset:hover,
body.nm-site .nm-shop-sidebar .nm-filter-reset:focus-visible {
  background: #e25b00;
  color: #fff;
}

body.nm-site .nm-shop-sidebar .nm-gram-filter__list {
  gap: .32rem;
}

body.nm-site .nm-shop-sidebar .nm-gram-filter__list .woocommerce-widget-layered-nav-list__item a {
  width: 100%;
  min-height: 41px;
  padding: 0 .62rem;
  border: 1px solid transparent;
  border-radius: 8px;
  transition: border-color .15s ease, background .15s ease, color .15s ease;
}

body.nm-site .nm-shop-sidebar .nm-gram-filter__list .woocommerce-widget-layered-nav-list__item a:hover,
body.nm-site .nm-shop-sidebar .nm-gram-filter__list .woocommerce-widget-layered-nav-list__item.chosen a {
  border-color: #f1d2bb;
  background: #fff7f0;
}

body.nm-site .nm-shop-sidebar .nm-gram-filter__name {
  flex: 1;
}

body.nm-site .nm-shop-sidebar .nm-gram-filter__list .count {
  margin-left: .35rem;
}

body.nm-site .nm-shop-sidebar .widget_price_filter .price_slider_wrapper {
  padding-top: .15rem;
}

body.nm-site .nm-shop-sidebar .widget_price_filter .price_slider {
  height: 4px !important;
  margin: .65rem .48rem 1.15rem !important;
  border: 0 !important;
  border-radius: 999px;
  background: #e8ded6 !important;
}

body.nm-site .nm-shop-sidebar .widget_price_filter .ui-slider-range {
  height: 4px !important;
  border: 0 !important;
  border-radius: 999px;
  background: #e25b00 !important;
}

body.nm-site .nm-shop-sidebar .widget_price_filter .ui-slider-handle {
  top: -7px !important;
  width: 18px !important;
  height: 18px !important;
  border: 2px solid #e25b00 !important;
  border-radius: 50%;
  background: #fff !important;
  box-shadow: 0 3px 9px rgba(226, 91, 0, .18);
}

body.nm-site .nm-shop-sidebar .widget_price_filter #min_price,
body.nm-site .nm-shop-sidebar .widget_price_filter #max_price {
  display: none !important;
}

body.nm-site .nm-shop-sidebar .widget_price_filter .price_slider_amount {
  display: flex;
  flex-direction: column;
  gap: .7rem;
  text-align: left;
}

body.nm-site .nm-shop-sidebar .widget_price_filter .price_label {
  order: 1;
  width: 100%;
  display: block !important;
  padding: .62rem .72rem;
  border: 1px solid #ede4dc;
  border-radius: 8px;
  background: #faf8f6;
  color: #51473f;
  font-size: .8rem;
  font-weight: 750;
}

body.nm-site .nm-shop-sidebar .widget_price_filter .button {
  order: 2;
  width: 100%;
  min-height: 42px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  border: 0 !important;
  border-radius: 8px !important;
  background: #211914 !important;
  color: #fff !important;
  font-size: .84rem;
  font-weight: 850 !important;
}

body.nm-site .nm-shop-sidebar .widget_price_filter .button:hover,
body.nm-site .nm-shop-sidebar .widget_price_filter .button:focus-visible {
  background: #e25b00 !important;
  color: #fff !important;
}

body.nm-site .nm-shop-sidebar .widget_price_filter .clear {
  display: none;
}

/* Home showcase actions: keep compact cards readable and visually aligned. */
body.nm-site .nm-home .nm-product-card__button--cart::before,
body.nm-site .nm-home .nm-product-card__button--cart:hover::before,
body.nm-site .nm-home .nm-product-card__button--cart:focus-visible::before {
  position: static !important;
  width: auto !important;
  height: auto !important;
  display: inline-flex !important;
  align-items: center;
  margin: 0 .12rem 0 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: #fff !important;
  box-shadow: none !important;
  transform: none !important;
}

body.nm-site .nm-home .nm-product-section--six .nm-product-card__actions {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: .45rem !important;
  align-items: stretch;
}

body.nm-site .nm-home .nm-product-section--six .nm-product-card__button,
body.nm-site .nm-home .nm-product-section--six .nm-product-card__actions .button,
body.nm-site .nm-home .nm-product-section--six .nm-product-card__details {
  width: 100% !important;
  min-width: 0 !important;
  min-height: 40px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: .65rem .72rem !important;
  white-space: normal !important;
  line-height: 1.1 !important;
}

body.nm-site .nm-home .nm-product-section--six .nm-product-card__details {
  border-color: rgba(217, 87, 0, .16);
  background: #fff7ef;
  color: var(--nm-primary-dark);
  font-weight: 900;
}

/* Product gallery: compact marketplace-style viewer with visible thumbnails. */
body.nm-site.single-product div.product .woocommerce-product-gallery.nm-product-gallery {
  position: relative;
  padding: .8rem;
  border-radius: 16px;
}

body.nm-site.single-product div.product .woocommerce-product-gallery.nm-product-gallery .flex-viewport {
  height: clamp(286px, 27vw, 365px) !important;
  margin: 0 0 .72rem;
  overflow: hidden !important;
  border: 1px solid rgba(42, 28, 20, .08);
  border-radius: 11px;
  background: #fffdfb;
}

body.nm-site.single-product div.product .woocommerce-product-gallery.nm-product-gallery .flex-viewport .woocommerce-product-gallery__wrapper {
  display: block !important;
  height: 100%;
}

body.nm-site.single-product div.product .woocommerce-product-gallery.nm-product-gallery .flex-viewport .woocommerce-product-gallery__image,
body.nm-site.single-product div.product .woocommerce-product-gallery.nm-product-gallery .flex-viewport .woocommerce-product-gallery__image:first-child {
  height: 100% !important;
  display: block !important;
}

body.nm-site.single-product div.product .woocommerce-product-gallery.nm-product-gallery .flex-viewport .woocommerce-product-gallery__image a {
  height: clamp(286px, 27vw, 365px);
  min-height: 0;
  padding: .55rem;
  border-radius: 0;
  background: #fffdfb;
}

body.nm-site.single-product div.product .woocommerce-product-gallery.nm-product-gallery .flex-viewport .woocommerce-product-gallery__image img:not(.zoomImg) {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: contain;
}

body.nm-site.single-product div.product .woocommerce-product-gallery.nm-product-gallery .flex-control-thumbs {
  display: flex !important;
  align-items: center;
  flex-wrap: nowrap !important;
  gap: .55rem;
  margin: 0 !important;
  padding: .05rem .1rem .08rem !important;
  overflow-x: auto;
  overflow-y: hidden;
  list-style: none;
  scrollbar-width: thin;
  scrollbar-color: rgba(217, 87, 0, .38) transparent;
}

body.nm-site.single-product div.product .woocommerce-product-gallery.nm-product-gallery .flex-control-thumbs li {
  width: 68px !important;
  flex: 0 0 68px;
  margin: 0 !important;
}

body.nm-site.single-product div.product .woocommerce-product-gallery.nm-product-gallery .flex-control-thumbs img {
  display: block;
  width: 68px !important;
  height: 68px !important;
  padding: .22rem;
  object-fit: contain;
  cursor: pointer;
  opacity: 1;
  border: 1px solid #e8ded5;
  border-radius: 8px;
  background: #fff;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

body.nm-site.single-product div.product .woocommerce-product-gallery.nm-product-gallery .flex-control-thumbs img:hover,
body.nm-site.single-product div.product .woocommerce-product-gallery.nm-product-gallery .flex-control-thumbs img.flex-active {
  border-color: var(--nm-primary);
  box-shadow: 0 5px 16px rgba(217, 87, 0, .15);
}

body.nm-site.single-product div.product .woocommerce-product-gallery.nm-product-gallery .flex-control-thumbs img.flex-active {
  transform: translateY(-1px);
}

body.nm-site.single-product div.product .nm-product-gallery__controls {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
}

body.nm-site.single-product div.product .nm-product-gallery__arrow {
  position: absolute;
  top: calc(.8rem + (clamp(286px, 27vw, 365px) / 2) - 21px);
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  padding: 0;
  pointer-events: auto;
  border: 1px solid rgba(31, 23, 18, .1);
  border-radius: 50%;
  background: rgba(255, 255, 255, .96);
  color: #281e18;
  box-shadow: 0 8px 20px rgba(31, 23, 18, .13);
  transition: color .18s ease, border-color .18s ease, transform .18s ease;
}

body.nm-site.single-product div.product .nm-product-gallery__arrow span {
  display: block;
  margin-top: -3px;
  font-size: 2rem;
  line-height: 1;
}

body.nm-site.single-product div.product .nm-product-gallery__arrow:hover,
body.nm-site.single-product div.product .nm-product-gallery__arrow:focus-visible {
  border-color: var(--nm-primary);
  color: var(--nm-primary);
  transform: scale(1.04);
}

body.nm-site.single-product div.product .nm-product-gallery__arrow--previous {
  left: 1.15rem;
}

body.nm-site.single-product div.product .nm-product-gallery__arrow--next {
  right: 1.15rem;
}

/* Product information: present customer-facing copy only. */
body.nm-site.single-product .woocommerce-tabs li.specification_tab,
body.nm-site.single-product .woocommerce-tabs li.additional_information_tab,
body.nm-site.single-product .electro-description .product_meta {
  display: none !important;
}

body.nm-site.single-product .woocommerce-tabs,
body.nm-site.single-product .woocommerce-tabs .wc-tab,
body.nm-site.single-product .woocommerce-Tabs-panel {
  border-radius: 16px;
}

body.nm-site.single-product .woocommerce-Tabs-panel--description .nm-product-description {
  max-width: 900px;
  padding: 0;
  color: #514840;
  font-size: .98rem;
  line-height: 1.72;
}

body.nm-site.single-product .woocommerce-Tabs-panel--description .nm-product-description p {
  margin: 0 0 .9rem !important;
}

body.nm-site.single-product .woocommerce-Tabs-panel--description .nm-product-description p:last-child {
  margin-bottom: 0 !important;
}

body.nm-site.single-product .woocommerce-Tabs-panel--description .nm-product-description h1,
body.nm-site.single-product .woocommerce-Tabs-panel--description .nm-product-description h2,
body.nm-site.single-product .woocommerce-Tabs-panel--description .nm-product-description h3 {
  margin: 1rem 0 .65rem;
  color: #241a15;
  font-size: 1.02rem;
  font-weight: 900;
  line-height: 1.3;
}

body.nm-site.single-product div.product .woocommerce-product-gallery.nm-product-gallery .woocommerce-product-gallery__trigger {
  display: none !important;
}

body.nm-site.single-product .woocommerce-Tabs-panel--description {
  padding: 1.2rem 1.35rem !important;
}

body.nm-site.single-product .nm-description-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .48rem 1.3rem;
  margin: 0 0 .9rem;
  padding: 0;
  list-style: none;
}

body.nm-site.single-product .nm-description-list li {
  position: relative;
  margin: 0;
  padding-left: .88rem;
  color: #514840;
}

body.nm-site.single-product .nm-description-list li::before {
  content: "";
  position: absolute;
  top: .63em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--nm-primary);
}

/* Stable custom product gallery: keep the loaded image visible while navigating. */
body.nm-site.single-product div.product .woocommerce-product-gallery.nm-product-gallery--custom > .flex-viewport,
body.nm-site.single-product div.product .woocommerce-product-gallery.nm-product-gallery--custom > .flex-control-thumbs,
body.nm-site.single-product div.product .woocommerce-product-gallery.nm-product-gallery--custom > .woocommerce-product-gallery__trigger,
body.nm-site.single-product div.product .woocommerce-product-gallery.nm-product-gallery--custom > .nm-product-gallery__controls {
  display: none !important;
}

body.nm-site.single-product div.product .woocommerce-product-gallery.nm-product-gallery--custom {
  padding: .75rem;
  background: #fff;
  border: 1px solid #eee4dc;
  box-shadow: 0 10px 28px rgba(34, 25, 20, .06);
}

body.nm-site.single-product .nm-gallery-viewer {
  display: grid;
  gap: .72rem;
}

body.nm-site.single-product .nm-gallery-viewer__stage {
  position: relative;
  width: 100%;
  height: clamp(318px, 31vw, 452px);
  display: grid;
  place-items: center;
  margin: 0;
  padding: .55rem;
  overflow: hidden;
  border: 1px solid #f0e9e3;
  border-radius: 12px;
  background: #fff;
  cursor: zoom-in;
}

body.nm-site.single-product .nm-gallery-viewer__image {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain !important;
  object-position: center;
}

body.nm-site.single-product .nm-gallery-viewer__arrow {
  position: absolute;
  top: calc(clamp(318px, 31vw, 452px) / 2);
  z-index: 2;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(35, 26, 20, .12);
  border-radius: 50%;
  background: rgba(255, 255, 255, .96);
  color: #251b16;
  box-shadow: 0 8px 22px rgba(35, 26, 20, .12);
  transform: translateY(-50%);
  transition: border-color .18s ease, color .18s ease, background .18s ease;
}

body.nm-site.single-product .nm-gallery-viewer__arrow:hover,
body.nm-site.single-product .nm-gallery-viewer__arrow:focus-visible {
  color: var(--nm-primary);
  border-color: var(--nm-primary);
  background: #fff8f3;
}

body.nm-site.single-product .nm-gallery-viewer__arrow span,
body.nm-site.single-product .nm-gallery-modal__arrow span {
  display: block;
  margin-top: -3px;
  font-size: 2rem;
  line-height: 1;
}

body.nm-site.single-product .nm-gallery-viewer__arrow--previous {
  left: 1rem;
}

body.nm-site.single-product .nm-gallery-viewer__arrow--next {
  right: 1rem;
}

body.nm-site.single-product .nm-gallery-viewer__thumbs {
  display: flex;
  gap: .52rem;
  overflow-x: auto;
  overflow-y: hidden;
  padding: .05rem .05rem .12rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 107, 0, .32) transparent;
}

body.nm-site.single-product .nm-gallery-viewer__thumb {
  width: 67px;
  height: 67px;
  flex: 0 0 67px;
  display: grid;
  place-items: center;
  padding: .22rem;
  border: 1px solid #e5d9ce;
  border-radius: 8px;
  background: #fff;
  transition: border-color .18s ease, box-shadow .18s ease;
}

body.nm-site.single-product .nm-gallery-viewer__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

body.nm-site.single-product .nm-gallery-viewer__thumb.is-active,
body.nm-site.single-product .nm-gallery-viewer__thumb:hover,
body.nm-site.single-product .nm-gallery-viewer__thumb:focus-visible {
  border-color: var(--nm-primary);
  box-shadow: 0 5px 14px rgba(255, 107, 0, .14);
}

body.nm-gallery-modal-open {
  overflow: hidden;
}

.nm-gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 4vw, 2.5rem);
  background: rgba(26, 19, 15, .68);
  backdrop-filter: blur(3px);
}

.nm-gallery-modal[hidden] {
  display: none !important;
}

.nm-gallery-modal__dialog {
  position: relative;
  width: min(760px, calc(100vw - 32px));
  height: min(72vh, 690px);
  display: grid;
  place-items: center;
  padding: 1.15rem;
  overflow: hidden;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 22px 60px rgba(0, 0, 0, .24);
}

.nm-gallery-modal__image {
  position: absolute;
  inset: 1.15rem;
  display: block;
  width: calc(100% - 2.3rem) !important;
  height: calc(100% - 2.3rem) !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
  object-position: center !important;
}

.nm-gallery-modal__close,
.nm-gallery-modal__arrow {
  position: absolute;
  z-index: 1;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid #eadfd6;
  border-radius: 50%;
  background: rgba(255, 255, 255, .96);
  color: #241a15;
  box-shadow: 0 8px 20px rgba(31, 23, 18, .13);
}

.nm-gallery-modal__close {
  top: .72rem;
  right: .72rem;
  font-size: 1.6rem;
  line-height: 1;
}

.nm-gallery-modal__arrow {
  top: 50%;
  transform: translateY(-50%);
}

.nm-gallery-modal__arrow--previous {
  left: .72rem;
}

.nm-gallery-modal__arrow--next {
  right: .72rem;
}

.nm-gallery-modal__close:hover,
.nm-gallery-modal__arrow:hover,
.nm-gallery-modal__close:focus-visible,
.nm-gallery-modal__arrow:focus-visible {
  color: var(--nm-primary);
  border-color: var(--nm-primary);
}

/* Product detail lower area: remove legacy sidebar and use a balanced content width. */
body.nm-site.single-product #sidebar,
body.nm-site.single-product #secondary {
  display: none !important;
}

body.nm-site.single-product #primary.content-area,
body.nm-site.single-product #main.site-main {
  width: 100% !important;
  max-width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  float: none !important;
}

body.nm-site.single-product div.product .woocommerce-tabs,
body.nm-site.single-product div.product .related.products,
body.nm-site.single-product div.product .upsells.products {
  width: min(1180px, calc(100vw - 32px));
  margin-left: auto;
  margin-right: auto;
}

body.nm-site.single-product div.product .woocommerce-tabs ul.tabs li.reviews_tab {
  display: none !important;
}

/* Order confirmation and order detail screens. */
body.nm-site .woocommerce-order {
  width: min(1088px, calc(100vw - 32px));
  margin: 1.35rem auto 2.5rem;
  color: #211914;
}

body.nm-site .woocommerce-order p,
body.nm-site .woocommerce-order li,
body.nm-site .woocommerce-order td,
body.nm-site .woocommerce-order th,
body.nm-site .woocommerce-order address {
  color: #342923 !important;
}

body.nm-site .woocommerce-order .woocommerce-notice,
body.nm-site .woocommerce-order .woocommerce-thankyou-order-received {
  margin: 0 0 1rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(36, 154, 84, .2);
  border-radius: 14px;
  background: #f2fbf5;
  color: #145a32 !important;
  font-size: 1rem;
  font-weight: 850;
  line-height: 1.45;
}

body.nm-site .woocommerce-order ul.order_details,
body.nm-site .woocommerce-order .woocommerce-order-overview {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .72rem;
  margin: 0 0 1.1rem !important;
  padding: 0 !important;
  list-style: none !important;
}

body.nm-site .woocommerce-order ul.order_details li,
body.nm-site .woocommerce-order .woocommerce-order-overview li {
  min-height: 72px;
  display: grid;
  align-content: center;
  gap: .28rem;
  margin: 0 !important;
  padding: .86rem .95rem !important;
  border: 1px solid #eadfd7;
  border-radius: 14px;
  background: #fff;
  color: #74675f !important;
  font-size: .78rem;
  font-weight: 800;
  line-height: 1.2;
  text-transform: none;
  box-shadow: 0 12px 28px rgba(32, 23, 18, .06);
}

body.nm-site .woocommerce-order ul.order_details li strong,
body.nm-site .woocommerce-order .woocommerce-order-overview li strong {
  display: block;
  color: #201712 !important;
  font-size: .95rem;
  font-weight: 950;
  line-height: 1.25;
}

body.nm-site .woocommerce-order > p:not(.woocommerce-notice),
body.nm-site .woocommerce-order .woocommerce-bacs-bank-details,
body.nm-site .woocommerce-order .woocommerce-customer-details,
body.nm-site .woocommerce-order .woocommerce-order-details {
  margin-top: 1rem;
}

body.nm-site .woocommerce-order > p:not(.woocommerce-notice) {
  padding: .95rem 1.05rem;
  border: 1px solid #eadfd7;
  border-radius: 14px;
  background: #fffaf6;
  color: #3b3029 !important;
  font-size: .94rem;
  line-height: 1.55;
}

body.nm-site .woocommerce-order h2,
body.nm-site .woocommerce-order .woocommerce-order-details__title,
body.nm-site .woocommerce-order .woocommerce-column__title {
  margin: 1.4rem 0 .75rem;
  padding-bottom: .58rem;
  border-bottom: 2px solid rgba(255, 107, 0, .22);
  color: #17110d !important;
  font-size: clamp(1.25rem, 2.3vw, 1.7rem);
  font-weight: 950;
  line-height: 1.2;
}

body.nm-site .woocommerce-order table.shop_table,
body.nm-site .woocommerce-order table.woocommerce-table {
  width: 100%;
  margin: 0 0 1.1rem !important;
  overflow: hidden;
  border: 1px solid #e8ddd5 !important;
  border-collapse: separate !important;
  border-spacing: 0 !important;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 16px 36px rgba(32, 23, 18, .07);
}

body.nm-site .woocommerce-order table.shop_table thead th,
body.nm-site .woocommerce-order table.woocommerce-table thead th {
  padding: .92rem 1rem !important;
  border: 0 !important;
  border-bottom: 1px solid #eadfd7 !important;
  background: #fff7ef;
  color: #6b4a31 !important;
  font-size: .84rem;
  font-weight: 950;
  line-height: 1.25;
}

body.nm-site .woocommerce-order table.shop_table tbody td,
body.nm-site .woocommerce-order table.woocommerce-table tbody td,
body.nm-site .woocommerce-order table.shop_table tfoot th,
body.nm-site .woocommerce-order table.shop_table tfoot td,
body.nm-site .woocommerce-order table.woocommerce-table tfoot th,
body.nm-site .woocommerce-order table.woocommerce-table tfoot td {
  padding: .9rem 1rem !important;
  border: 0 !important;
  border-bottom: 1px solid #efe6df !important;
  background: #fff;
  color: #352a23 !important;
  font-size: .9rem;
  font-weight: 750;
  line-height: 1.45;
  vertical-align: top;
}

body.nm-site .woocommerce-order table.shop_table tfoot tr:last-child th,
body.nm-site .woocommerce-order table.shop_table tfoot tr:last-child td,
body.nm-site .woocommerce-order table.woocommerce-table tfoot tr:last-child th,
body.nm-site .woocommerce-order table.woocommerce-table tfoot tr:last-child td {
  border-bottom: 0 !important;
  color: #17110d !important;
  font-weight: 950;
}

body.nm-site .woocommerce-order table.shop_table a,
body.nm-site .woocommerce-order table.woocommerce-table a {
  color: #201712 !important;
  font-weight: 900;
  text-decoration: none;
}

body.nm-site .woocommerce-order table.shop_table a:hover,
body.nm-site .woocommerce-order table.woocommerce-table a:hover {
  color: var(--nm-primary-dark) !important;
}

body.nm-site .woocommerce-order .wc-item-meta,
body.nm-site .woocommerce-order .wc-item-meta li,
body.nm-site .woocommerce-order .woocommerce-table__line-item .wc-item-meta {
  margin: .35rem 0 0 !important;
  padding: 0 !important;
  color: #6b5f57 !important;
  font-size: .82rem;
  list-style: none !important;
}

body.nm-site .woocommerce-order .wc-item-meta p,
body.nm-site .woocommerce-order .wc-item-meta strong {
  display: inline;
  margin: 0;
  color: #6b5f57 !important;
  font-weight: 800;
}

body.nm-site .woocommerce-order .woocommerce-button,
body.nm-site .woocommerce-order a.button,
body.nm-site .woocommerce-order .button {
  min-height: 42px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  padding: .75rem 1rem !important;
  border: 0 !important;
  border-radius: 10px !important;
  background: #fff2e8 !important;
  color: #b84c00 !important;
  font-size: .86rem;
  font-weight: 950;
  text-decoration: none !important;
}

body.nm-site .woocommerce-order .woocommerce-customer-details address {
  padding: 1rem 1.05rem;
  border: 1px solid #eadfd7;
  border-radius: 14px;
  background: #fff;
  font-style: normal;
  line-height: 1.6;
  box-shadow: 0 12px 28px rgba(32, 23, 18, .05);
}

@media (max-width: 1023px) {
  body.nm-site .woocommerce-order {
    width: min(100% - 24px, 760px);
    margin-top: 1rem;
  }

  body.nm-site .woocommerce-order ul.order_details,
  body.nm-site .woocommerce-order .woocommerce-order-overview {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .55rem;
  }

  body.nm-site .woocommerce-order ul.order_details li,
  body.nm-site .woocommerce-order .woocommerce-order-overview li {
    min-height: 64px;
    padding: .72rem .78rem !important;
    font-size: .72rem;
  }

  body.nm-site .woocommerce-order ul.order_details li strong,
  body.nm-site .woocommerce-order .woocommerce-order-overview li strong {
    font-size: .86rem;
  }

  body.nm-site .woocommerce-order table.shop_table thead,
  body.nm-site .woocommerce-order table.woocommerce-table thead {
    display: none;
  }

  body.nm-site .woocommerce-order table.shop_table,
  body.nm-site .woocommerce-order table.shop_table tbody,
  body.nm-site .woocommerce-order table.shop_table tfoot,
  body.nm-site .woocommerce-order table.shop_table tr,
  body.nm-site .woocommerce-order table.shop_table th,
  body.nm-site .woocommerce-order table.shop_table td,
  body.nm-site .woocommerce-order table.woocommerce-table,
  body.nm-site .woocommerce-order table.woocommerce-table tbody,
  body.nm-site .woocommerce-order table.woocommerce-table tfoot,
  body.nm-site .woocommerce-order table.woocommerce-table tr,
  body.nm-site .woocommerce-order table.woocommerce-table th,
  body.nm-site .woocommerce-order table.woocommerce-table td {
    display: block;
    width: 100% !important;
  }

  body.nm-site .woocommerce-order table.shop_table tbody tr,
  body.nm-site .woocommerce-order table.woocommerce-table tbody tr,
  body.nm-site .woocommerce-order table.shop_table tfoot tr,
  body.nm-site .woocommerce-order table.woocommerce-table tfoot tr {
    padding: .78rem .85rem;
    border-bottom: 1px solid #efe6df;
  }

  body.nm-site .woocommerce-order table.shop_table tbody td,
  body.nm-site .woocommerce-order table.woocommerce-table tbody td,
  body.nm-site .woocommerce-order table.shop_table tfoot th,
  body.nm-site .woocommerce-order table.shop_table tfoot td,
  body.nm-site .woocommerce-order table.woocommerce-table tfoot th,
  body.nm-site .woocommerce-order table.woocommerce-table tfoot td {
    padding: .18rem 0 !important;
    border: 0 !important;
    background: transparent;
  }

  body.nm-site .woocommerce-order table.shop_table tfoot tr,
  body.nm-site .woocommerce-order table.woocommerce-table tfoot tr {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: .75rem;
    align-items: start;
  }
}

@media (max-width: 767px) {
  body.nm-site .woocommerce-order {
    width: calc(100% - 20px);
    margin-bottom: 1.35rem;
  }

  body.nm-site .woocommerce-order .woocommerce-notice,
  body.nm-site .woocommerce-order .woocommerce-thankyou-order-received,
  body.nm-site .woocommerce-order > p:not(.woocommerce-notice) {
    padding: .82rem .85rem;
    border-radius: 12px;
    font-size: .84rem;
  }

  body.nm-site .woocommerce-order ul.order_details,
  body.nm-site .woocommerce-order .woocommerce-order-overview {
    grid-template-columns: 1fr;
  }

  body.nm-site .woocommerce-order h2,
  body.nm-site .woocommerce-order .woocommerce-order-details__title,
  body.nm-site .woocommerce-order .woocommerce-column__title {
    margin-top: 1rem;
    font-size: 1.12rem;
  }

  body.nm-site .woocommerce-order table.shop_table,
  body.nm-site .woocommerce-order table.woocommerce-table {
    border-radius: 12px;
  }

  body.nm-site .woocommerce-order table.shop_table tfoot tr,
  body.nm-site .woocommerce-order table.woocommerce-table tfoot tr {
    grid-template-columns: 1fr;
    gap: .15rem;
  }

  body.nm-site .woocommerce-order .woocommerce-button,
  body.nm-site .woocommerce-order a.button,
  body.nm-site .woocommerce-order .button {
    width: 100%;
  }
}
